mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-01 00:36:40 +09:00
hfs: add sanity check for file name length
commit bc5b8a9003 upstream.
On a corrupted file system the ->len field could be wrong leading to
a buffer overflow.
Reported-and-acked-by: Clement LECIGNE <clement.lecigne@netasq.com>
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
d18c0efc9b
commit
b8988229c7
@@ -40,6 +40,8 @@ int hfs_mac2asc(struct super_block *sb, char *out, const struct hfs_name *in)
|
||||
|
||||
src = in->name;
|
||||
srclen = in->len;
|
||||
if (srclen > HFS_NAMELEN)
|
||||
srclen = HFS_NAMELEN;
|
||||
dst = out;
|
||||
dstlen = HFS_MAX_NAMELEN;
|
||||
if (nls_io) {
|
||||
|
||||
Reference in New Issue
Block a user