7

メモリリークを検出するためにvalgrindを試しています。ヒープ リーク (malloc または new からのメモリ割り当て) でうまく機能します。ただし、Linux でのチェック mmap リークはサポートされますか?

ありがとうチャン

4

2 に答える 2

6

直接ではありませんが、デバッグするのは非常に困難です。valgrind.hをご覧ください。

   VALGRIND_MALLOCLIKE_BLOCK should be put immediately after the point where a
   heap block -- that will be used by the client program -- is allocated.
   It's best to put it at the outermost level of the allocator if possible;
   for example, if you have a function my_alloc() which calls
   internal_alloc(), and the client request is put inside internal_alloc(),
   stack traces relating to the heap block will contain entries for both
   my_alloc() and internal_alloc(), which is probably not what you want.

   For Memcheck users: if you use VALGRIND_MALLOCLIKE_BLOCK to carve out
   custom blocks from within a heap block, B, that has been allocated with
   malloc/calloc/new/etc, then block B will be *ignored* during leak-checking
   -- the custom blocks will take precedence.

   VALGRIND_FREELIKE_BLOCK is the partner to VALGRIND_MALLOCLIKE_BLOCK.  For
   Memcheck, it does two things:

   - It records that the block has been deallocated.  This assumes that the
     block was annotated as having been allocated via
     VALGRIND_MALLOCLIKE_BLOCK.  Otherwise, an error will be issued.

   - It marks the block as being unaddressable.

   VALGRIND_FREELIKE_BLOCK should be put immediately after the point where a
   heap block is deallocated.
于 2013-03-11T09:34:40.310 に答える
2

悲しいことに、valgrind の memcheck は mmap 追跡をサポートしていません (少なくともそのままでは) が、望みはあります。

最近、mmap メモリ アクセスと割り当てをトレースするための valgrind フォークである valgrind-mmtに出会いました: https://nouveau.freedesktop.org/wiki/Valgrind-mmt

envytoolsによって開発されており、主にグラフィックドライバーの開発に使用されているようです。

mmap トレース ツールでmmtある は、ロードとストアを含む、mmap されたメモリへのすべてのアクセスを詳細にトレースします。これは、リークしている mmap メモリを見つける作業には多すぎる可能性があり、ツールの出力を処理して分析する必要がありますが、慎重に作業すれば、mmap リークのシナリオを検出するのに役立つ場合があります。個人的には、私はそれを使用して部分的にしか成功していませんが、おそらく他の人はもっと幸運になるでしょう.

匿名の mmap 割り当てには適していない可能性があることに注意してください。


はじめに:

  • envytools/envytools リポジトリのクローンを作成してビルドします
  • envytools/valgrind リポジトリのクローンを作成してビルドします
  • 次のパラメーターを指定して valgrind を実行します。

    /usr/local/bin/valgrind --tool=mmt --mmt-trace-file=[mmapped-file-to-be-traced] --log-file=mmt-log.bin

  • mmt 出力をデコードします。demmt -l mmt-log.bin > mmt-log.txt

于 2018-12-31T07:23:13.350 に答える