diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2006-11-03 14:42:43 +1100 |
---|---|---|
committer | Chris Wright <chrisw@sous-sol.org> | 2006-11-18 19:27:58 -0800 |
commit | d8b789ca13e5bccc3167d0cfa6cec3ff4b541891 (patch) | |
tree | fa0fb3a1ac247ca2c55de19e62489a96947a5b1e /Documentation | |
parent | fbce4d7fea4bd2a3e54be9c1c29440d5b4dfc600 (diff) |
[PATCH] Fix sys_move_pages when a NULL node list is passed.
sys_move_pages() uses vmalloc() to allocate an array of structures
that is fills with information passed from user mode and then passes to
do_stat_pages() (in the case the node list is NULL). do_stat_pages()
depends on a marker in the node field of the structure to decide how large
the array is and this marker is correctly inserted into the last element
of the array. However, vmalloc() doesn't zero the memory it allocates
and if the user passes NULL for the node list, then the node fields are
not filled in (except for the end marker). If the memory the vmalloc()
returned happend to have a word with the marker value in it in just the
right place, do_pages_stat will fail to fill the status field of part
of the array and we will return (random) kernel data to user mode.
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Acked-by: Christoph Lameter <clameter@sgi.com>
Signed-off-by: Chris Wright <chrisw@sous-sol.org>
Diffstat (limited to 'Documentation')
0 files changed, 0 insertions, 0 deletions