public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libc/6919] posix_spawnattr_getschedparam overwrites unrelated memory
  2008-09-27 18:34 [Bug libc/6919] New: posix_spawnattr_getschedparam overwrites unrelated memory bruno at clisp dot org
@ 2008-09-27 18:34 ` bruno at clisp dot org
  2008-09-27 18:41 ` bruno at clisp dot org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: bruno at clisp dot org @ 2008-09-27 18:34 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From bruno at clisp dot org  2008-09-27 18:33 -------
Created an attachment (id=2964)
 --> (http://sourceware.org/bugzilla/attachment.cgi?id=2964&action=view)
test case


-- 


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

------- 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] 5+ messages in thread

* [Bug libc/6919] New: posix_spawnattr_getschedparam overwrites unrelated memory
@ 2008-09-27 18:34 bruno at clisp dot org
  2008-09-27 18:34 ` [Bug libc/6919] " bruno at clisp dot org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: bruno at clisp dot org @ 2008-09-27 18:34 UTC (permalink / raw)
  To: glibc-bugs

The posix_spawnattr_getschedparam function overwrites memory beyond the given
output parameter.

The attached testcase prints
$ gcc -O -Wall bug.c -o bug
$ ./bug
value was 66 and is now 0
Aborted

-- 
           Summary: posix_spawnattr_getschedparam overwrites unrelated
                    memory
           Product: glibc
           Version: 2.8
            Status: NEW
          Severity: normal
          Priority: P2
         Component: libc
        AssignedTo: drepper at redhat dot com
        ReportedBy: bruno at clisp dot org
                CC: glibc-bugs at sources dot redhat dot com
 GCC build triplet: i586-suse-linux
  GCC host triplet: i586-suse-linux
GCC target triplet: i586-suse-linux


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

------- 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] 5+ messages in thread

* [Bug libc/6919] posix_spawnattr_getschedparam overwrites unrelated memory
  2008-09-27 18:34 [Bug libc/6919] New: posix_spawnattr_getschedparam overwrites unrelated memory bruno at clisp dot org
  2008-09-27 18:34 ` [Bug libc/6919] " bruno at clisp dot org
@ 2008-09-27 18:41 ` bruno at clisp dot org
  2008-10-31 18:52 ` drepper at redhat dot com
  2008-11-02  0:56 ` bruno at clisp dot org
  3 siblings, 0 replies; 5+ messages in thread
From: bruno at clisp dot org @ 2008-09-27 18:41 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From bruno at clisp dot org  2008-09-27 18:40 -------
Created an attachment (id=2965)
 --> (http://sourceware.org/bugzilla/attachment.cgi?id=2965&action=view)
a fix

Attached is a fix. Like in the file spawnattr_setschedparam.c, a simple
assignment is sufficient - no need for memcpy at all.

Btw, you can also remove the include <string.h> from spawnattr_setschedparam.c.


-- 


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

------- 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] 5+ messages in thread

* [Bug libc/6919] posix_spawnattr_getschedparam overwrites unrelated memory
  2008-09-27 18:34 [Bug libc/6919] New: posix_spawnattr_getschedparam overwrites unrelated memory bruno at clisp dot org
  2008-09-27 18:34 ` [Bug libc/6919] " bruno at clisp dot org
  2008-09-27 18:41 ` bruno at clisp dot org
@ 2008-10-31 18:52 ` drepper at redhat dot com
  2008-11-02  0:56 ` bruno at clisp dot org
  3 siblings, 0 replies; 5+ messages in thread
From: drepper at redhat dot com @ 2008-10-31 18:52 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From drepper at redhat dot com  2008-10-31 18:51 -------
I fixed the code bug by leaving the memcpy.  The compiler is smart enough.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED


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

------- 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] 5+ messages in thread

* [Bug libc/6919] posix_spawnattr_getschedparam overwrites unrelated memory
  2008-09-27 18:34 [Bug libc/6919] New: posix_spawnattr_getschedparam overwrites unrelated memory bruno at clisp dot org
                   ` (2 preceding siblings ...)
  2008-10-31 18:52 ` drepper at redhat dot com
@ 2008-11-02  0:56 ` bruno at clisp dot org
  3 siblings, 0 replies; 5+ messages in thread
From: bruno at clisp dot org @ 2008-11-02  0:56 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From bruno at clisp dot org  2008-11-02 00:55 -------
> I fixed the code bug by leaving the memcpy.  The compiler is smart enough.

The point about using an assignment rather than memcpy is that the compiler
would have reported this bug as an error already.
When you use an assignment, the compiler verifies that the source type and the
target type are the same. When you use memcpy, it doesn't.

Even excellent programmers occasionally make mistakes, like in this case. The
compiler can prevent you from making this kind of mistake.


-- 


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

------- 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] 5+ messages in thread

end of thread, other threads:[~2008-11-02  0:56 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-09-27 18:34 [Bug libc/6919] New: posix_spawnattr_getschedparam overwrites unrelated memory bruno at clisp dot org
2008-09-27 18:34 ` [Bug libc/6919] " bruno at clisp dot org
2008-09-27 18:41 ` bruno at clisp dot org
2008-10-31 18:52 ` drepper at redhat dot com
2008-11-02  0:56 ` bruno at clisp dot org

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).