亚洲免费在线-亚洲免费在线播放-亚洲免费在线观看-亚洲免费在线观看视频-亚洲免费在线看-亚洲免费在线视频

Linux C/C++ 內存泄漏檢測工具:Valgrind - 張

系統 3092 0

Linux C/C++ 內存泄漏檢測工具:Valgrind - 張宴的博客 - Web系統架構與底層研發

Valgrind 是一款 Linux下(支持 x86、x86_64和ppc32)程序的內存調試工具,它可以對編譯后的二進制程序進行內存使用監測(C語言中的malloc和free,以及C++中的new和delete),找出內存泄漏問題。

Valgrind 中包含的 Memcheck 工具可以檢查以下的程序錯誤:

使用未初始化的內存 (Use of uninitialised memory)
使用已經釋放了的內存 (Reading/writing memory after it has been free’d)
使用超過malloc分配的內存空間(Reading/writing off the end of malloc’d blocks)
對堆棧的非法訪問 (Reading/writing inappropriate areas on the stack)
申請的空間是否有釋放 (Memory leaks – where pointers to malloc’d blocks are lost forever)
malloc/free/new/delete申請和釋放內存的匹配(Mismatched use of malloc/new/new [] vs free/delete/delete [])
src和dst的重疊(Overlapping src and dst pointers in memcpy() and related functions)
重復free

1、編譯安裝 Valgrind:

wget http://valgrind.org/downloads/valgrind-3.4.1.tar.bz2
tar xvf valgrind-3.4.1.tar.bz2
cd valgrind-3.4.1/
./configure --prefix=/usr/local/webserver/valgrind
make
make install



2、使用示例:對“ls”程序進程檢查,返回結果中的“definitely lost: 0 bytes in 0 blocks.”表示沒有內存泄漏。

[root@xoyo42 /]# /usr/local/webserver/valgrind/bin/valgrind --tool=memcheck --leak-check=full ls /
==1157== Memcheck, a memory error detector.
==1157== Copyright (C) 2002-2008, and GNU GPL'd, by Julian Seward et al.
==1157== Using LibVEX rev 1884, a library for dynamic binary translation.
==1157== Copyright (C) 2004-2008, and GNU GPL'd, by OpenWorks LLP.
==1157== Using valgrind-3.4.1, a dynamic binary instrumentation framework.
==1157== Copyright (C) 2000-2008, and GNU GPL'd, by Julian Seward et al.
==1157== For more details, rerun with: -v
==1157==
bin?? data0??dev??home??lib64?????? media??mnt??opt?? root??selinux??sys?????? tcsql.db.idx.pkey.dec??ttserver.pid??var
boot??data1??etc??lib?? lost+found??misc?? net??proc??sbin??srv??????tcsql.db??tmp????????????????????usr
==1157==
==1157== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 5 from 1)
==1157== malloc/free: in use at exit: 28,471 bytes in 36 blocks.
==1157== malloc/free: 166 allocs, 130 frees, 51,377 bytes allocated.
==1157== For counts of detected errors, rerun with: -v
==1157== searching for pointers to 36 not-freed blocks.
==1157== checked 174,640 bytes.
==1157==
==1157== LEAK SUMMARY:
==1157==???? definitely lost: 0 bytes in 0 blocks.
==1157==??????possibly lost: 0 bytes in 0 blocks.
==1157==????still reachable: 28,471 bytes in 36 blocks.
==1157==???????? suppressed: 0 bytes in 0 blocks.
==1157== Reachable blocks (those to which a pointer was found) are not shown.
==1157== To see them, rerun with: --leak-check=full --show-reachable=yes



3、使用示例:對一個使用libevent庫編寫的“httptest”程序進程檢查,返回結果中的“definitely lost: 255 bytes in 5 blocks.”表示發生內存泄漏。

[root@xoyo42 tcsql-0.1]# /usr/local/webserver/valgrind/bin/valgrind --tool=memcheck --leak-check=full ./httptest
==1274== Memcheck, a memory error detector.
==1274== Copyright (C) 2002-2008, and GNU GPL'd, by Julian Seward et al.
==1274== Using LibVEX rev 1884, a library for dynamic binary translation.
==1274== Copyright (C) 2004-2008, and GNU GPL'd, by OpenWorks LLP.
==1274== Using valgrind-3.4.1, a dynamic binary instrumentation framework.
==1274== Copyright (C) 2000-2008, and GNU GPL'd, by Julian Seward et al.
==1274== For more details, rerun with: -v
==1274==
==1274== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 1005 from 2)
==1274== malloc/free: in use at exit: 402,291 bytes in 74 blocks.
==1274== malloc/free: 15,939 allocs, 15,865 frees, 6,281,523 bytes allocated.
==1274== For counts of detected errors, rerun with: -v
==1274== searching for pointers to 74 not-freed blocks.
==1274== checked 682,468,160 bytes.
==1274==
==1274== 255 bytes in 5 blocks are definitely lost in loss record 17 of 32
==1274==????at 0x4A05FBB: malloc (vg_replace_malloc.c:207)
==1274==????by 0x3C1D809BC6: evhttp_decode_uri (http.c:2105)
==1274==????by 0x401C75: tcsql_handler (in /data0/tcsql/cankao/tcsql-0.1/tcsql)
==1274==????by 0x3C1D80C88F: evhttp_get_body (http.c:1582)
==1274==????by 0x3C1D8065F7: event_base_loop (event.c:392)
==1274==????by 0x403E2F: main (in /data0/tcsql/cankao/tcsql-0.1/tcsql)
==1274==
==1274== LEAK SUMMARY:
==1274==???? definitely lost: 255 bytes in 5 blocks.
==1274==??????possibly lost: 0 bytes in 0 blocks.
==1274==????still reachable: 402,036 bytes in 69 blocks.
==1274==???????? suppressed: 0 bytes in 0 blocks.
==1274== Reachable blocks (those to which a pointer was found) are not shown.
==1274== To see them, rerun with: --leak-check=full --show-reachable=yes



檢查httptest程序,發現有一處“char *decode_uri = evhttp_decode_uri(evhttp_request_uri(req));”中的“decode_uri”沒有被free,再程序處理完成后加上“free(decode_uri);”后,再使用Valgrind檢查,結果已經是“definitely lost: 0 bytes in 0 blocks.”。

Linux C/C++ 內存泄漏檢測工具:Valgrind - 張宴的博客 - Web系統架構與底層研發


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦?。?!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 国产亚洲综合视频 | 精品小视频在线 | 曰本女人视频69xxx | 911免费视频 | 精品日韩二区三区精品视频 | 久久国产麻豆 | 久热re国产手机在线观看 | 神马老子不卡视频在线 | 99精品高清不卡在线观看 | 曰韩一级片 | 日日躁夜夜躁狠狠天天 | 综合久久久久6亚洲综合 | 成人不卡在线 | 日韩在线一区二区 | 香蕉人精品视频多人免费永久视频 | 色中文字幕 | 久久99热久久精品23 | 亚洲欧洲免费视频 | 一级毛片直接看 | 亚洲视频观看 | 久草综合在线观看 | 一 级 黄 色 片生活片 | 欧美一级毛片片aa视频 | 亚洲 欧美 视频 | 99久久精品国产综合一区 | 国产精品视频一区麻豆 | 一级毛片在线免费观看 | 国产亚洲精aa在线观看香蕉 | 国产成人精品免费午夜 | 波多野结衣与公中出中文字幕 | 天天看片夜夜爽 | 午夜网站在线观看免费网址免费 | 久久影院在线观看 | 免费亚洲视频 | 91色综合综合热五月激情 | 国产日韩欧美精品一区 | 久久国产网 | 牛牛色婷婷在线视频播放 | 狠狠色丁香婷婷综合久久来 | 成人免费一级片 | 亚洲精品影院一区二区 |