From: Jonathan Geisler Date: Wed, 24 Mar 2010 23:02:15 +0000 (-0700) Subject: calls to cuserid() can result in buffer overruns and/or overflows X-Git-Tag: fedora/glibc-2.11.90-17~2^2~50 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd8ccb0427569ffdfbb70c8828029122f3459160;p=thirdparty%2Fglibc.git calls to cuserid() can result in buffer overruns and/or overflows --- diff --git a/ChangeLog b/ChangeLog index 7a7e46ca686..0e606dd5d5d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2010-03-24 Ulrich Drepper + [BZ #11397] + * sysdeps/posix/cuserid.c (cuserid): Make sure the returned string + is NUL terminated. + Patch by Jonathan Geisler . + * sysdeps/unix/sysv/linux/mmap64.c: Allow variable shift values. 2010-03-24 H.J. Lu diff --git a/sysdeps/posix/cuserid.c b/sysdeps/posix/cuserid.c index 11c827a6868..f30c20e3f88 100644 --- a/sysdeps/posix/cuserid.c +++ b/sysdeps/posix/cuserid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1996, 1998, 1999, 2001 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1996, 1998, 1999, 2001, 2010 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -44,5 +44,6 @@ cuserid (s) if (s == NULL) s = name; - return strncpy (s, pwptr->pw_name, L_cuserid); + s[L_userid - 1] = '\0'; + return strncpy (s, pwptr->pw_name, L_cuserid - 1); }