aboutsummaryrefslogtreecommitdiffstats
path: root/lib/debugobjects.c
diff options
context:
space:
mode:
authorJeff Layton <[email protected]>2011-08-23 11:21:28 +0000
committerSteve French <[email protected]>2011-09-20 02:14:40 +0000
commit9438fabb73eb48055b58b89fc51e0bc4db22fabd (patch)
treed8cb3ac7c9e9e3ead5e57b9e362bd2a7084781a4 /lib/debugobjects.c
parentMerge branch 'irq-fixes-for-linus' of git://tesla.tglx.de/git/linux-2.6-tip (diff)
downloadkernel-9438fabb73eb48055b58b89fc51e0bc4db22fabd.tar.gz
kernel-9438fabb73eb48055b58b89fc51e0bc4db22fabd.zip
cifs: fix possible memory corruption in CIFSFindNext
The name_len variable in CIFSFindNext is a signed int that gets set to the resume_name_len in the cifs_search_info. The resume_name_len however is unsigned and for some infolevels is populated directly from a 32 bit value sent by the server. If the server sends a very large value for this, then that value could look negative when converted to a signed int. That would make that value pass the PATH_MAX check later in CIFSFindNext. The name_len would then be used as a length value for a memcpy. It would then be treated as unsigned again, and the memcpy scribbles over a ton of memory. Fix this by making the name_len an unsigned value in CIFSFindNext. Cc: <[email protected]> Reported-by: Darren Lavender <[email protected]> Signed-off-by: Jeff Layton <[email protected]> Signed-off-by: Steve French <[email protected]>
Diffstat (limited to 'lib/debugobjects.c')
0 files changed, 0 insertions, 0 deletions