Commit c4d0c3b097f7584772316ee4d64a09fe0e4ddfca
Committed by
Alex Elder
1 parent
9681153b46
Exists in
master
and in
7 other branches
xfs: prevent leaking uninitialized stack memory in FSGEOMETRY_V1
The FSGEOMETRY_V1 ioctl (and its compat equivalent) calls out to xfs_fs_geometry() with a version number of 3. This code path does not fill in the logsunit member of the passed xfs_fsop_geom_t, leading to the leaking of four bytes of uninitialized stack data to potentially unprivileged callers. v2 switches to memset() to avoid future issues if structure members change, on suggestion of Dave Chinner. Signed-off-by: Dan Rosenberg <drosenberg@vsecurity.com> Reviewed-by: Eugene Teo <eugeneteo@kernel.org> Signed-off-by: Alex Elder <aelder@sgi.com>
Showing 1 changed file with 3 additions and 0 deletions Side-by-side Diff
fs/xfs/xfs_fsops.c