Click here to Skip to main content
Licence CPOL
First Posted 27 Jun 2007
Views 36,723
Downloads 546
Bookmarked 31 times

Memory Leak Detection in C

By | 27 Jun 2007 | Article
A simple yet effective solution to memory leak detection in C code

Introduction

Memory leak has always been a part of bugs in C code where a programmer allocates memory in run time (in heap) and fails to deallocate it. And most programmers use some third party software to detect memory leak in their code.

But we can write very simple code to detect memory leak in our program.

Usually we allocate memory in C using malloc() and calloc() in run time and deallocate the reserved memory using free(). Sometimes we don't free the reserved memory which causes memory leak.

The below method is a very simple one and helps to detect memory leak in your program.

Using the Code

Let's assume you have allocated some memory in your code using malloc() and calloc() and haven't deallocated it and your code looks like below.

test.c

#include<malloc.h>
int main() 
{
    char * ptr1 = (char *) malloc (10); // allocating 10 bytes
    int * ptr2 = (int *) calloc (10, sizeof(int)); 	// allocating 40 bytes 
						// let sizeof int =  4 bytes)
    float * ptr3 = (float *) calloc (15, sizeof(float)); // allocating 60 bytes
    ............
    ............
    ............
    free(ptr2);
    return 0;
}
    
</malloc.h>

Steps to Detect Memory Leak

(I have tested the code in a Linux machine using GCC. You can test the same code in Windows as well.)

Step 1

Now to test memory leak, just add the leak_detector_c.h file to the test file and add one line to the start of main function.

Now the test code should look like below:

test.c

#include<malloc.h>
#include "leak_detector_c.h"

int main() 
{
    char * ptr1; 
    int * ptr2; 
    float * ptr3;

    atexit(report_mem_leak);

    ptr1 = (char *) malloc (10); // allocating 10 bytes        
    ptr2 = (int *) calloc (10, sizeof(int)); 	// allocating 40 bytes 
					// let sizeof int =  4 bytes)
    ptr3 = (float *) calloc (15, sizeof(float)); // allocating 60 bytes
    ............
    ............
    ............
    free(ptr2);
    return 0;
}
    
</malloc.h>

Step 2

Now compile the code and run the program:

# gcc -c leak_detector_.c
# gcc -c test.c
# gcc -o memtest leak_detctor_c.o test.o
# ./memtest
# cat /home/leak_info.txt    

Now you will get output as shown below:

Memory Leak Summary
-----------------------------------
address : 140668936
size    : 10 bytes
file    : test.c
line    : 5
-----------------------------------
address : 140669560
size    : 60 bytes
file    : test.c
line    : 7
-----------------------------------

The output shows the file name and line number which causes the memory leak and now you can free the unallocated memory. If you have multiple source files, you can add the header file in all the files where you want to detect possible memory leak and compile the program as above.

Now let's have a look into the code and see how it works.

The leak_detctor_c.h file contains some macros and the preprocessor replaces the call of malloc, calloc and free functions with xmalloc, xcalloc and xfree respectively .

While calling malloc(), our xmalloc() is called and we keep all information of the allocated memory (like the address, size, file name and line number) in a linked list. While the code calls the free() function, it actually calls our xfree() and we manage to do the cleanup task (remove the entry of the allocated memory from the list and free up the allocated memory).

At the end of the program, we can get the unallocated memory references from the list.

The line "atexit(report_mem_leak)" registers the report_mem_leak() function to be called at the end of the program and this function writes the memory leak summary into the leak_info.txt file. You can also use #pragma exit directive instead of atexit().

History

  • 27th June, 2007: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Rabinarayan Biswal

Web Developer

India India

Member

working as a software engineer in mindfiresolutions (http://www.mindfiresolutions.com), Bhubaneswar, a growing IT company of India .
I like solving cryptic codes of C/C++ and spend my leisure in writing poems and reading books.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 Pinmembermanoj kumar choubey18:02 28 Feb '12  
GeneralMy vote of 5 PinmemberTapeshmittal1:45 7 Mar '11  
Answergcc 64-bit support, and output file never closed Pinmemberx87Bliss17:46 21 Feb '10  
QuestionIs there a bug? Pinmemberlindamon17:10 11 Dec '09  
GeneralMy vote of 1 PinmemberFrank Heimes23:25 13 Jan '09  
QuestionWhat about realloc? Pinmemberinnqubus20:43 15 Jul '08  
QuestionHow to track the memory leak in when we call a library function (say delivered by some 3rd party) PinmemberRaghu Joshi7:19 23 Jun '08  
GeneralSimple but yet powerful memory leak detector PinmemberArvind Bharti23:24 11 Jul '07  
GeneralRe: Simple but yet powerful memory leak detector PinmemberNarain123420:18 28 Aug '11  
QuestionIs it great article??? PinmemberAlexander Naumov3:05 3 Jul '07  
AnswerRe: Is it great article??? PinmemberKandjar10:38 4 Jul '07  
AnswerRe: Is it great article??? Pinmemberkesselhaus13:49 7 Jul '07  
AnswerRe: Is it great article??? PinmemberMeNot4:30 9 Jul '08  
QuestionWill it work in C++? PinmemberMichael A. Rusakov0:17 3 Jul '07  
AnswerRe: Will it work in C++? PinmemberRabinarayan Biswal20:20 3 Jul '07  
GeneralRe: Will it work in C++? PinmemberRaghu Joshi7:22 23 Jun '08  
Generalyes gr8 PinmemberMarkandey_Dawn21:16 2 Jul '07  
GeneralGreat Article...see _CRTDBG_MAP_ALLOC on windows PinmemberAnandChavali21:28 27 Jun '07  
GeneralRe: Great Article...see _CRTDBG_MAP_ALLOC on windows PinmemberRabinarayan Biswal23:27 27 Jun '07  
GeneralRe: Great Article...see _CRTDBG_MAP_ALLOC on windows PinmemberWes Aday6:25 28 Jun '07  
GeneralRe: Great Article...see _CRTDBG_MAP_ALLOC on windows PinmemberJonathan [Darka]21:33 28 Jun '07  
GeneralRe: Great Article...see _CRTDBG_MAP_ALLOC on windows Pinmembergiladg220:10 3 Jul '07  
GeneralRe: Great Article...see _CRTDBG_MAP_ALLOC on windows PinmemberMeNot4:47 9 Jul '08  
Questionvalgrind? PinmemberDaniel Persson8:29 27 Jun '07  
AnswerRe: valgrind? PinmemberRabinarayan Biswal23:21 27 Jun '07  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 27 Jun 2007
Article Copyright 2007 by Rabinarayan Biswal
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid