udf: Ignore [ug]id=ignore mount options
Currently uid=ignore and gid=ignore make no sense without uid=<number>
and gid=<number> respectively as they result in all files having invalid
uid / gid which then doesn't allow even root to modify files and thus
causes confusion. And since commit ca76d2d803
"UDF: fix UID and GID
mount option ignorance" (from over 10 years ago) uid=<number> overrides
all uids on disk as uid=ignore does. So just silently ignore uid=ignore
mount option.
Reviewed-by: Pali Rohár <pali.rohar@gmail.com>
Signed-off-by: Jan Kara <jack@suse.cz>
This commit is contained in:
@@ -348,12 +348,8 @@ static int udf_show_options(struct seq_file *seq, struct dentry *root)
|
||||
seq_puts(seq, ",shortad");
|
||||
if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_FORGET))
|
||||
seq_puts(seq, ",uid=forget");
|
||||
if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_IGNORE))
|
||||
seq_puts(seq, ",uid=ignore");
|
||||
if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_FORGET))
|
||||
seq_puts(seq, ",gid=forget");
|
||||
if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_IGNORE))
|
||||
seq_puts(seq, ",gid=ignore");
|
||||
if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_SET))
|
||||
seq_printf(seq, ",uid=%u", from_kuid(&init_user_ns, sbi->s_uid));
|
||||
if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_SET))
|
||||
@@ -609,14 +605,12 @@ static int udf_parse_options(char *options, struct udf_options *uopt,
|
||||
uopt->flags |= (1 << UDF_FLAG_NLS_MAP);
|
||||
break;
|
||||
#endif
|
||||
case Opt_uignore:
|
||||
uopt->flags |= (1 << UDF_FLAG_UID_IGNORE);
|
||||
break;
|
||||
case Opt_uforget:
|
||||
uopt->flags |= (1 << UDF_FLAG_UID_FORGET);
|
||||
break;
|
||||
case Opt_uignore:
|
||||
case Opt_gignore:
|
||||
uopt->flags |= (1 << UDF_FLAG_GID_IGNORE);
|
||||
/* These options are superseeded by uid=<number> */
|
||||
break;
|
||||
case Opt_gforget:
|
||||
uopt->flags |= (1 << UDF_FLAG_GID_FORGET);
|
||||
|
Reference in New Issue
Block a user