public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libc/13337] New: load_shobj(): Fix readlink() buffer termination handling
@ 2011-10-24 15:04 thomas.jarosch at intra2net dot com
  2011-10-24 15:13 ` [Bug libc/13337] " thomas.jarosch at intra2net dot com
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: thomas.jarosch at intra2net dot com @ 2011-10-24 15:04 UTC (permalink / raw)
  To: glibc-bugs

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

             Bug #: 13337
           Summary: load_shobj(): Fix readlink() buffer termination
                    handling
           Product: glibc
           Version: unspecified
            Status: NEW
          Severity: normal
          Priority: P2
         Component: libc
        AssignedTo: drepper.fsp@gmail.com
        ReportedBy: thomas.jarosch@intra2net.com
    Classification: Unclassified


Created attachment 6029
  --> http://sourceware.org/bugzilla/attachment.cgi?id=6029
Patch to fix the issue

>From the patch:

load_shobj(): Fix readlink() buffer termination handling

readlink() never zero terminates the buffer.
load_shobj() calls readlink() like this:

   "if (readlink (origprocname, origlink, PATH_MAX) == -1)"

It tried to compensate for the missing zero termination
with this line of code:

    origlink[PATH_MAX] = '\0';

This is wrong as the content of the 'origlink' buffer
will probably be shorter than PATH_MAX and therefore
contains an unterminated string + garbage.

Fix it by terminating the string properly. Also lower
the buffer size to PATH_MAX, that should be more than enough.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


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

end of thread, other threads:[~2014-06-27 11:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-10-24 15:04 [Bug libc/13337] New: load_shobj(): Fix readlink() buffer termination handling thomas.jarosch at intra2net dot com
2011-10-24 15:13 ` [Bug libc/13337] " thomas.jarosch at intra2net dot com
2011-10-29 16:53 ` drepper.fsp at gmail dot com
2014-06-27 11:49 ` fweimer 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).