summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorMathias Krause <minipli@googlemail.com>2012-07-12 08:46:55 +0200
committerWilly Tarreau <w@1wt.eu>2013-06-10 11:43:18 +0200
commit78d630bd79019250a11ea4aae6ab4ecadf1da68e (patch)
tree61cba49ceea7f705665060f7085224966b6a9644 /fs
parent5ece3559d5d7264dc62ef35df87c92e5c342fd24 (diff)
udf: avoid info leak on export
commit 0143fc5e9f6f5aad4764801015bc8d4b4a278200 upstream. For type 0x51 the udf.parent_partref member in struct fid gets copied uninitialized to userland. Fix this by initializing it to 0. Signed-off-by: Mathias Krause <minipli@googlemail.com> Signed-off-by: Jan Kara <jack@suse.cz> Cc: Ben Hutchings <ben@decadent.org.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Willy Tarreau <w@1wt.eu>
Diffstat (limited to 'fs')
-rw-r--r--fs/udf/namei.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/udf/namei.c b/fs/udf/namei.c
index 21dad8c608f9..b75415112b48 100644
--- a/fs/udf/namei.c
+++ b/fs/udf/namei.c
@@ -1331,6 +1331,7 @@ static int udf_encode_fh(struct dentry *de, __u32 *fh, int *lenp,
*lenp = 3;
fid->udf.block = location.logicalBlockNum;
fid->udf.partref = location.partitionReferenceNum;
+ fid->udf.parent_partref = 0;
fid->udf.generation = inode->i_generation;
if (connectable && !S_ISDIR(inode->i_mode)) {