[PATCH] xfsprogs/quota: fix NULL pointer dereference in report_f
Eric Sandeen
sandeen at sandeen.net
Fri Jul 11 20:39:45 CDT 2014
On 11/14/13, 3:49 AM, Jeff Liu wrote:
> From: Jie Liu <jeff.liu at oracle.com>
>
> Run xfs_quota report against an invalid XFS path without desired quota
> limitation is enabled will hit SEGSEGV as fs_path is uninitialized, e.g.
>
> # xfs_quota -xc 'report -up' /invalid_path
> xfs_quota: cannot setup path for mount /invalid_path: No such file or directory
> Segmentation fault (core dumped)
>
> (gdb) r -xc 'report -up' /invalid_path
> xfs_quota: cannot setup path for mount /invalid_path: No such file or directory
>
> Program received signal SIGSEGV, Segmentation fault.
> 0x0000000000408b4d in report_f (argc=2, argv=0x105ea70) at report.c:627
> 627 else if (fs_path->fs_flags & FS_MOUNT_POINT)
>
> This patch fix report_f() to only do report if the fs_path is initialized.
>
> Signed-off-by: Jie Liu <jeff.liu at oracle.com>
Reviewed-by: Eric Sandeen <sandeen at redhat.com>
I know hch had grand plans to make this all nicer, but based on Jeff's
followup emails, it looks like this is the only spot needed to simply
resolve the problems w/ nonexistent paths in quota, and is a small,
contained change we can easily make before the next point release.
Thanks,
-Eric
> ---
> quota/report.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/quota/report.c b/quota/report.c
> index 70894a2..8e3316e 100644
> --- a/quota/report.c
> +++ b/quota/report.c
> @@ -624,7 +624,7 @@ report_f(
> if (flags & ALL_MOUNTS_FLAG)
> report_any_type(fp, form, type, NULL,
> lower, upper, flags);
> - else if (fs_path->fs_flags & FS_MOUNT_POINT)
> + else if (fs_path && (fs_path->fs_flags & FS_MOUNT_POINT))
> report_any_type(fp, form, type, fs_path->fs_dir,
> lower, upper, flags);
> } else while (argc > optind) {
>
More information about the xfs
mailing list