public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug nis/10203] New: NIS setpwent/getpwent/endpwent  memory leak
@ 2009-05-26 21:07 jlanders at vmware dot com
  2009-05-26 21:08 ` [Bug nis/10203] " jlanders at vmware dot com
  2009-06-16  0:39 ` drepper at redhat dot com
  0 siblings, 2 replies; 3+ messages in thread
From: jlanders at vmware dot com @ 2009-05-26 21:07 UTC (permalink / raw)
  To: glibc-bugs

When the name server switch gets configured for NIS:

passwd: nis files

and the password map is larger than MINSIZE, _nis_saveit in
nis/nss_nis/nis-pwd.c allocates linked blocks with intern.start pointing at the
first block. internal_nis_setpwent() initially sets intern.next to intern.start.
Currently, internal_nis_endpwent() uses intern.next as the starting block to
iterate over the chain when free'ing blocks.

When getpwent() gets called, however, intern.next can be reset to another block
in the chain. As a result, the following program will cause allocated blocks to
be never be free'd since in this case intern.next points at the last block and
the "next" pointer on this block is set to NULL.

#include <stdio.h>
#include <malloc.h>
#include <sys/types.h>
#include <pwd.h>
#include <unistd.h>

int
main(int argc, char *argv[])
{
   struct passwd *entry;

   setpwent();

   entry = getpwent();
   while (entry != NULL) {
      entry = getpwent();
   }

   endpwent();

   return 0;
}

After internal_nis_endpwent(), sets intern.next and intern.start to NULL, the
other allocated blocks on the chain are irretrievably lost. This issue exists in
other releases prior to glibc-2.10, including glibc-2.5 on RHEL 5.3.

The easiest fix is to make internal_nis_endpwent() use intern.start directly
instead of intern.next.

diff -urNp a/nis/nss_nis/nis-pwd.c b/nis/nss_nis/nis-pwd.c
--- a/nis/nss_nis/nis-pwd.c     2006-05-01 15:31:15.000000000 -0700
+++ b/nis/nss_nis/nis-pwd.c     2009-05-26 12:55:09.000000000 -0700
@@ -116,7 +116,7 @@ internal_nis_endpwent (void)
       oldkeylen = 0;
     }
 
-  struct response_t *curr = intern.next;
+  struct response_t *curr = intern.start;
 
   while (curr != NULL)
     {

Thanks,

Joe

-- 
           Summary: NIS setpwent/getpwent/endpwent  memory leak
           Product: glibc
           Version: 2.10
            Status: NEW
          Severity: normal
          Priority: P2
         Component: nis
        AssignedTo: kukuk at suse dot de
        ReportedBy: jlanders at vmware dot com
                CC: glibc-bugs at sources dot redhat dot com
 GCC build triplet: x86_64-linuxnptl
  GCC host triplet: x86_64-linuxnptl
GCC target triplet: x86_64-linuxnptl


http://sourceware.org/bugzilla/show_bug.cgi?id=10203

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Bug nis/10203] NIS setpwent/getpwent/endpwent  memory leak
  2009-05-26 21:07 [Bug nis/10203] New: NIS setpwent/getpwent/endpwent memory leak jlanders at vmware dot com
@ 2009-05-26 21:08 ` jlanders at vmware dot com
  2009-06-16  0:39 ` drepper at redhat dot com
  1 sibling, 0 replies; 3+ messages in thread
From: jlanders at vmware dot com @ 2009-05-26 21:08 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From jlanders at vmware dot com  2009-05-26 21:08 -------
Created an attachment (id=3966)
 --> (http://sourceware.org/bugzilla/attachment.cgi?id=3966&action=view)
proposed patch

Attached proposed patch.

-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=10203

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Bug nis/10203] NIS setpwent/getpwent/endpwent  memory leak
  2009-05-26 21:07 [Bug nis/10203] New: NIS setpwent/getpwent/endpwent memory leak jlanders at vmware dot com
  2009-05-26 21:08 ` [Bug nis/10203] " jlanders at vmware dot com
@ 2009-06-16  0:39 ` drepper at redhat dot com
  1 sibling, 0 replies; 3+ messages in thread
From: drepper at redhat dot com @ 2009-06-16  0:39 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From drepper at redhat dot com  2009-06-16 00:38 -------
Fixed in git.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED
            Summary|NIS                         |NIS
                   |setpwent/getpwent/endpwent  |setpwent/getpwent/endpwent
                   |memory leak                 |memory leak


http://sourceware.org/bugzilla/show_bug.cgi?id=10203

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-06-16  0:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-05-26 21:07 [Bug nis/10203] New: NIS setpwent/getpwent/endpwent memory leak jlanders at vmware dot com
2009-05-26 21:08 ` [Bug nis/10203] " jlanders at vmware dot com
2009-06-16  0:39 ` drepper at redhat dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).