当前位置: 首页 > news >正文

网站开发 flex全国最大的外发加工网

网站开发 flex,全国最大的外发加工网,大连网站建设企业,东莞设计展某数据下载程序#xff0c;相同版本的代码#xff0c;在64位系统中运行正常#xff0c;但在32位系统中概率性出现断言错误。一旦出现#xff0c;程序无法正常继续#xff0c;即使重启亦不行。从年前会上领导提出要追到根#xff0c;跟到底#xff0c;到年后的今天#…某数据下载程序相同版本的代码在64位系统中运行正常但在32位系统中概率性出现断言错误。一旦出现程序无法正常继续即使重启亦不行。从年前会上领导提出要追到根跟到底到年后的今天经过排查、自测、试点算是告一段落了。文中没有很难的技术问题但过程还是值得记录的。本文从后来者角度总结一下解决问题的过程同时给出相关测试代码。 由于本文没有技术含量请谨慎按需阅读。 起因 当运维人员把出错的截图发给我时我回想起1年半前的那个夏天那天下午运维人员将同一个错误截图给我后来回退版本了再也没出现了。这次运维人员上报给了领导。会上我也答不出来为什么在32位系统上会报错而在64位系统中却不行也回答不了为什么回退版本又可以。下面这个错误在笔记里躺了很久现在又要翻出来一点也没变化 ath.c:193: _gcry_ath_mutex_lock: Assertion *lock ((ath_mutex_t) 0) failed.这是某个动态库报的断言错误不是业务程序直接提示的。虚拟机模拟不出问题现场机器没有gdb也无法生成coredump也没有pstrace只能靠头脑分析排查了。 排查及解决 动态库定位 报错信息关键信息为ath.c、_gcry_ath_mutex_lock、ath_mutex_t。 经搜索得到了一些有用的信息。 在libssh2官方网站上找到一篇关于FIPS兼容性的帖子FIPS Compliance提问者的错误是用sftp通过libcurl下载文件时产生的。路线和所遇问题几乎一样出现断言错误的库为libgcrypt。在stackoverflow网站上找到这个帖子帖子回答者提到 Obviously you are using libgcrypt in there, either directly or through some library (liboauth?). Multithreaded use of gcrypt requires initialization, as documented at gnupg.org/documentation/manuals/gcrypt/Multi_002dThreading.html - either you forgot it, or one of the maintainers of libraries you used did. Check the documentation… – DevSolar Dec 13, 2011 at 17:00 The problem was that more than one thread tries to get a http request at the same time. That’s not possible. So I used mutexes to avoid that. 使用libgcrypt时在多线程中要初始化至于初始化什么怎么初始化谁初始化由于涉及libcurl-libssh2-libgcrypt等库路径较深鞭长莫及代码人一声叹气。 关于ath.c断言语句的跟踪记录 前面定位到了libgcrypt库在32位系统上用strings命令查找出错关键字 strings /lib/i386-linux-gnu/libgcrypt.so.11.7.0 | grep *lock *lock ((ath_mutex_t) 0) *lock ((ath_mutex_t) 1)strings /lib/i386-linux-gnu/libgcrypt.so.11.7.0 | grep _gcry_ath_mutex_lock _gcry_ath_mutex_lock是这个库无疑了。但11.7.0版本找不到ath.c文件。再在64位系统上查 strings /lib64/libgcrypt.so.11.8.2 | grep *lock *lock ((ath_mutex_t) 0) *lock ((ath_mutex_t) 1)strings /lib64/libgcrypt.so.11.8.2 | grep _gcry_ath_mutex_lock _gcry_ath_mutex_lockfind /usr/ -name libgcrypt* /usr/lib64/libgcrypt.so.11.8.2 /usr/lib64/libgcrypt.so.11 /usr/share/doc/libgcrypt-1.5.3从信息中猜测可能的版本是1.5.3。下载该版本解压得到ath.c关键语句 第193行正是这多天魂牵梦萦想看到的语句。 但是这只是知道了出错的地方而已还不知道如何出错。 问题定位 从错误信息上看和锁有关进而推断和多线程有关。分析业务代码的确有多线程下载。起初跟踪线程内部的curl变量但没有出现越界使用情况都在相同内部线程完成了每次下载都用curl_easy_init初始化最后用curl_easy_cleanup清理通过打印跟踪可以确认这一点。 回到业务程序上。既然是多线程下载出错就将多线程改成单线程或者加上互斥锁不让他们同时运行。这份代码比大锤的年龄还大有一定的历史沉淀且有较多名称相近的函数类似于北湖北路北湖南路北湖东路等不好改动。于是加上锁再测试没有发现问题。 解决方法 但依然没有找到原因。 访问libcurl官方示例页面找到多线程例子但参考价值不大于是搭建sftp服务器写了测试程序。经摸索发现在一线程下载过程的同时另一线程也下载则必然出错。开始时下载的文件小很快下载完毕下载大文件时问题即刻暴露了。 回查业务代码在两线程启动时人工加了10秒的延时当数据量较多大了前一线程未下载完毕后一线程启动因此报错了。之前相安无事应该是两线程下载的数据量并非都大前一线程较快完成了下载。 但无论如何在两线程之间加锁的确能解决问题。 反馈 在试点跑了3天暂时没有收到问题反馈。应该大概的确解决了这个问题。 小结 至于为何libcurl无法多线程下载为何偏偏在32位系统上出现其实还没有找到根本问题所在。多方测试64位系统的确未发现有。于是在业务代码中通过宏定义限定只在32位系统才加锁。 附自测程序 源码 #include stdio.h #include errno.h #include string.h #include unistd.h #include pthread.h #include curl/curl.h#define DOWNLOAD_LOCKstatic pthread_mutex_t connlock;void init_locks(void) {pthread_mutex_init(connlock, NULL); }void kill_locks(void) {pthread_mutex_destroy(connlock); }void my_locks(void) { #ifdef DOWNLOAD_LOCKpthread_mutex_lock(connlock); #endif } void my_unlocks(void) { #ifdef DOWNLOAD_LOCKpthread_mutex_unlock(connlock); #endif }//lldebug LoginStr aftp:123456 RemoteFile: sftp://192.168.168.88/DataStorary/Server/MyData/BigFile.dat LocalFile: /tmp/data/download/BigFile.datstatic size_t my_write(void *buffer, size_t size, size_t nmemb, void *stream) {/* not interested in the downloaded bytes, return the size */ (void)buffer; /* unused */ (void)stream; /* unused */ return (size_t)(size * nmemb); }void downloadFile(CURL *curl, const char *LoginStr, const char * RemoteFile, const char *LocalFile) {//CURL *curl InitCurl();if(curl NULL){return;}curl_easy_setopt(curl, CURLOPT_USERPWD, LoginStr);curl_easy_setopt(curl, CURLOPT_URL, RemoteFile);curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, my_write);printf(lldebug %s().%d before curl_easy_perform ptr: %p\n, __func__, __LINE__, curl);CURLcode code curl_easy_perform(curl);if(CURLE_OK ! code){printf(curl_easy_perform failed, %d: %s\n, code, curl_easy_strerror(code));} }static void *download_1(void *url) {CURL *curl;const char* loginStr aftp:123456;//const char* rfile sftp://192.168.168.88/DataStorary/Server/MyData/smallfile.txt;const char* rfile sftp://192.168.168.88/DataStorary/Server/MyData/BigFile.dat;const char* lfile /tmp/file_1.txt;my_locks();printf(lldebug %s().%d begin\n, __func__, __LINE__);curl curl_easy_init();printf(lldebug %s().%d init curl ptr: %p\n, __func__, __LINE__, curl);downloadFile(curl, loginStr, rfile, lfile);printf(lldebug %s().%d download done curl ptr: %p\n, __func__, __LINE__, curl);curl_easy_cleanup(curl);printf(lldebug %s().%d end\n, __func__, __LINE__);my_unlocks(); }static void *download_2(void *url) {CURL *curl;const char* loginStr aftp:123456;const char* rfile sftp://192.168.168.88/DataStorary/Server/MyData/smallfile.txt;const char* lfile /tmp/file_2.txt;my_locks();printf(lldebug %s().%d begin------------------\n, __func__, __LINE__);curl curl_easy_init();printf(lldebug %s().%d init curl ptr: %p\n, __func__, __LINE__, curl);downloadFile(curl, loginStr, rfile, lfile);printf(lldebug %s().%d download done curl ptr: %p\n, __func__, __LINE__, curl);curl_easy_cleanup(curl);printf(lldebug %s().%d end------------------\n, __func__, __LINE__);my_unlocks(); }int main(int argc, char **argv) {pthread_t tid1;pthread_t tid2;init_locks();curl_global_init(CURL_GLOBAL_ALL);pthread_create(tid1, NULL, download_1, NULL);usleep(1000);pthread_create(tid2, NULL, download_2, NULL);pthread_join(tid1, NULL);pthread_join(tid2, NULL);kill_locks();curl_global_cleanup();return 0; }编译 g test_thread.cpp -I/usr/local/curl/include -I/usr/include -lcurl加锁情况下运行结果 lldebug download_1().78 begin lldebug download_1().82 init curl ptr: 0x9216340 lldebug downloadFile().57 before curl_easy_perform ptr: 0x9216340 lldebug download_1().86 download done curl ptr: 0x9216340 lldebug download_1().91 end lldebug download_2().105 begin------------------ lldebug download_2().110 init curl ptr: 0x9216340 lldebug downloadFile().57 before curl_easy_perform ptr: 0x9216340 lldebug download_2().114 download done curl ptr: 0x9216340 lldebug download_2().118 end------------------不加锁情况下运行结果 lldebug download_1().78 begin lldebug download_1().82 init curl ptr: 0x9d37340 lldebug downloadFile().57 before curl_easy_perform ptr: 0x9d37340 lldebug download_2().105 begin------------------ lldebug download_2().110 init curl ptr: 0x9d4de18 lldebug downloadFile().57 before curl_easy_perform ptr: 0x9d4de18 a.out: ath.c:193: _gcry_ath_mutex_lock: Assertion *lock ((ath_mutex_t) 0) failed. Aborted用gdb调试过程 (gdb) r Starting program: /home/latelee/libcurl_test/a.out [Thread debugging using libthread_db enabled] Using host libthread_db library /lib/i386-linux-gnu/i686/cmov/libthread_db.so.1. [New Thread 0xb769eb70 (LWP 7680)] lldebug download_1().101 begin lldebug download_1().105 init curl ptr: 0x805a340 lldebug downloadFile().80 before curl_easy_perform ptr: 0x805a340 [New Thread 0xb6e9db70 (LWP 7681)] lldebug download_2().128 begin------------------ lldebug download_2().133 init curl ptr: 0x8070e18 lldebug downloadFile().80 before curl_easy_perform ptr: 0x8070e18 a.out: ath.c:193: _gcry_ath_mutex_lock: Assertion *lock ((ath_mutex_t) 0) failed.Program received signal SIGABRT, Aborted. [Switching to Thread 0xb6e9db70 (LWP 7681)] 0xb7fe1424 in __kernel_vsyscall () (gdb) bt #0 0xb7fe1424 in __kernel_vsyscall () #1 0xb7cf5941 in *__GI_raise (sig6) at ../nptl/sysdeps/unix/sysv/linux/raise.c:64 #2 0xb7cf8d72 in *__GI_abort () at abort.c:92 #3 0xb7ceeb58 in *__GI___assert_fail (assertion0xb7938626 *lock ((ath_mutex_t) 0), file0xb7938620 ath.c, line193, function0xb7938674 _gcry_ath_mutex_lock) at assert.c:81 #4 0xb78e9605 in ?? () from /lib/i386-linux-gnu/libgcrypt.so.11 #5 0xb792b02d in ?? () from /lib/i386-linux-gnu/libgcrypt.so.11 #6 0xb792c889 in ?? () from /lib/i386-linux-gnu/libgcrypt.so.11 #7 0xb792ae7d in ?? () from /lib/i386-linux-gnu/libgcrypt.so.11 #8 0xb78f82d9 in ?? () from /lib/i386-linux-gnu/libgcrypt.so.11 #9 0xb78f8a14 in ?? () from /lib/i386-linux-gnu/libgcrypt.so.11 #10 0xb78e078c in gcry_md_open () from /lib/i386-linux-gnu/libgcrypt.so.11 #11 0xb7c603b6 in ?? () from /usr/lib/i386-linux-gnu/libssh2.so.1 #12 0xb7c6f154 in ?? () from /usr/lib/i386-linux-gnu/libssh2.so.1 #13 0xb7c5a2c8 in ?? () from /usr/lib/i386-linux-gnu/libssh2.so.1 #14 0xb7c67108 in ?? () from /usr/lib/i386-linux-gnu/libssh2.so.1 #15 0xb7c67489 in ?? () from /usr/lib/i386-linux-gnu/libssh2.so.1 #16 0xb7c680db in libssh2_sftp_init () from /usr/lib/i386-linux-gnu/libssh2.so.1 #17 0xb7fa0688 in ?? () from /usr/lib/i386-linux-gnu/libcurl.so.4 #18 0xb7fa3f63 in ?? () from /usr/lib/i386-linux-gnu/libcurl.so.4 #19 0xb7fa4595 in ?? () from /usr/lib/i386-linux-gnu/libcurl.so.4 #20 0xb7f80380 in ?? () from /usr/lib/i386-linux-gnu/libcurl.so.4 #21 0xb7f8067a in ?? () from /usr/lib/i386-linux-gnu/libcurl.so.4 #22 0xb7f80732 in ?? () from /usr/lib/i386-linux-gnu/libcurl.so.4 #23 0xb7f8d255 in ?? () from /usr/lib/i386-linux-gnu/libcurl.so.4 #24 0xb7f8e033 in curl_easy_perform () from /usr/lib/i386-linux-gnu/libcurl.so.4 #25 0x08048acf in downloadFile(void*, char const*, char const*, char const*) () #26 0x08048c60 in download_2(void*) () #27 0xb7cb7c39 in start_thread (arg0xb6e9db70) at pthread_create.c:304 #28 0xb7da1d4e in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:130 (gdb)
http://www.hkea.cn/news/14397476/

相关文章:

  • 有高级感的公司名字seo网站seo
  • 建企业网站需要哪些资料百度大数据查询
  • 如何做发卡网站小红书搜索优化
  • 卖主机网站哪个网站适合 做红本抵押
  • 青岛李沧区城乡建设局网站四川城乡与建设厅网站
  • 网站建设丩金手指排名壹陆淘宝的网站建设情况
  • 公司建设网站费用吗东莞海边网站建设工作室
  • 网站搭建周期微信平台微商城
  • 网站开发及服务合同模板苏州市建设工程建设中心网站
  • 重庆建网站诚选快忻科技悉心网站做目录中
  • 网站平台怎么做的好网页制作模板秋季
  • 东莞建网站公司品牌flash可以做网站
  • 专业做网站app的公司哪家好一个企业官网多个营销型网站
  • 想把自己做的网站放到网上企业信息公示系统全国官网
  • 第一推是谁做的网站为什么建设旅游网站
  • 网站建设费的会计分录邢台市信都区
  • 如何做好电商网站平面设计免费行情软件app合集
  • 大型移动网站开发wordpress出现的常见问题
  • 网站后台上传表格wordpress 流量管理系统
  • 建设网站怎么提需求wordpress页面立体效果
  • 建个网站的流程一个用vue做的网站
  • 网站建设全包wordpress 音乐播放器插件
  • 国际物流网站网站增加一体化建设功能的好处
  • 泰州网站制作维护微信公众号微网站开发类型
  • 个人网站怎么做详情页山西手机响应式网站建设
  • 如何建个网站网站关键词优化价格
  • 郑州做网站哪家便宜淄博中企动力怎么样
  • 成都网站制作售后洛可可设计公司logo
  • 国外自适应网站模版深圳移动官网网站建设
  • 纺织行业网站怎么做吸引人微信嵌入手机网站