|
Kmods SIG |
8b815c |
From 28a941ffc1404b66d67228cbe8392bbadb94af0d Mon Sep 17 00:00:00 2001
|
|
Kmods SIG |
8b815c |
From: Kari Argillander <kari.argillander@gmail.com>
|
|
Kmods SIG |
8b815c |
Date: Tue, 7 Sep 2021 18:35:56 +0300
|
|
Kmods SIG |
8b815c |
Subject: [Backport 28a941ffc140] src: Rename mount option no_acs_rules >
|
|
Kmods SIG |
8b815c |
(no)acsrules
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
Rename mount option no_acs_rules to (no)acsrules. This allow us to use
|
|
Kmods SIG |
8b815c |
possibility to mount with options noaclrules or aclrules.
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
Acked-by: Christian Brauner <christian.brauner@ubuntu.com>
|
|
Kmods SIG |
8b815c |
Reviewed-by: Christoph Hellwig <hch@lst.de>
|
|
Kmods SIG |
8b815c |
Signed-off-by: Kari Argillander <kari.argillander@gmail.com>
|
|
Kmods SIG |
8b815c |
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
|
|
Kmods SIG |
8b815c |
---
|
|
Kmods SIG |
8b815c |
src/file.c | 2 +-
|
|
Kmods SIG |
8b815c |
src/ntfs_fs.h | 2 +-
|
|
Kmods SIG |
8b815c |
src/super.c | 12 ++++++------
|
|
Kmods SIG |
8b815c |
src/xattr.c | 2 +-
|
|
Kmods SIG |
8b815c |
4 files changed, 9 insertions(+), 9 deletions(-)
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
diff --git a/src/file.c b/src/file.c
|
|
Kmods SIG |
8b815c |
index fef57141b161747101d6898b8da774a372de5cbf..0743d806c567409dd2845b6577f2ae3adf92b383 100644
|
|
Kmods SIG |
8b815c |
--- a/src/file.c
|
|
Kmods SIG |
8b815c |
+++ b/src/file.c
|
|
Kmods SIG |
8b815c |
@@ -737,7 +737,7 @@ int ntfs3_setattr(struct user_namespace *mnt_userns, struct dentry *dentry,
|
|
Kmods SIG |
8b815c |
umode_t mode = inode->i_mode;
|
|
Kmods SIG |
8b815c |
int err;
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
- if (sbi->options->no_acs_rules) {
|
|
Kmods SIG |
8b815c |
+ if (sbi->options->noacsrules) {
|
|
Kmods SIG |
8b815c |
/* "No access rules" - Force any changes of time etc. */
|
|
Kmods SIG |
8b815c |
attr->ia_valid |= ATTR_FORCE;
|
|
Kmods SIG |
8b815c |
/* and disable for editing some attributes. */
|
|
Kmods SIG |
8b815c |
diff --git a/src/ntfs_fs.h b/src/ntfs_fs.h
|
|
Kmods SIG |
8b815c |
index aa18f12b7096e2ecd7e6db365aaa0152d4fb2327..15bab48bc1ad13a9bc93d365ce92c8978635ec2b 100644
|
|
Kmods SIG |
8b815c |
--- a/src/ntfs_fs.h
|
|
Kmods SIG |
8b815c |
+++ b/src/ntfs_fs.h
|
|
Kmods SIG |
8b815c |
@@ -70,7 +70,7 @@ struct ntfs_mount_options {
|
|
Kmods SIG |
8b815c |
showmeta : 1, /* Show meta files. */
|
|
Kmods SIG |
8b815c |
nohidden : 1, /* Do not show hidden files. */
|
|
Kmods SIG |
8b815c |
force : 1, /* Rw mount dirty volume. */
|
|
Kmods SIG |
8b815c |
- no_acs_rules : 1, /*Exclude acs rules. */
|
|
Kmods SIG |
8b815c |
+ noacsrules : 1, /*Exclude acs rules. */
|
|
Kmods SIG |
8b815c |
prealloc : 1 /* Preallocate space when file is growing. */
|
|
Kmods SIG |
8b815c |
;
|
|
Kmods SIG |
8b815c |
};
|
|
Kmods SIG |
8b815c |
diff --git a/src/super.c b/src/super.c
|
|
Kmods SIG |
8b815c |
index 503e2e23f711e9c66ede31dde62ac64ca3c44f76..0690e7e4f00de4e6c89cacebdb4862bbb8f00bc6 100644
|
|
Kmods SIG |
8b815c |
--- a/src/super.c
|
|
Kmods SIG |
8b815c |
+++ b/src/super.c
|
|
Kmods SIG |
8b815c |
@@ -228,7 +228,7 @@ enum Opt {
|
|
Kmods SIG |
8b815c |
Opt_acl,
|
|
Kmods SIG |
8b815c |
Opt_iocharset,
|
|
Kmods SIG |
8b815c |
Opt_prealloc,
|
|
Kmods SIG |
8b815c |
- Opt_no_acs_rules,
|
|
Kmods SIG |
8b815c |
+ Opt_noacsrules,
|
|
Kmods SIG |
8b815c |
Opt_err,
|
|
Kmods SIG |
8b815c |
};
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
@@ -246,7 +246,7 @@ static const struct fs_parameter_spec ntfs_fs_parameters[] = {
|
|
Kmods SIG |
8b815c |
fsparam_flag_no("acl", Opt_acl),
|
|
Kmods SIG |
8b815c |
fsparam_flag_no("showmeta", Opt_showmeta),
|
|
Kmods SIG |
8b815c |
fsparam_flag_no("prealloc", Opt_prealloc),
|
|
Kmods SIG |
8b815c |
- fsparam_flag("no_acs_rules", Opt_no_acs_rules),
|
|
Kmods SIG |
8b815c |
+ fsparam_flag_no("acsrules", Opt_noacsrules),
|
|
Kmods SIG |
8b815c |
fsparam_string("iocharset", Opt_iocharset),
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
__fsparam(fs_param_is_string,
|
|
Kmods SIG |
8b815c |
@@ -358,8 +358,8 @@ static int ntfs_fs_parse_param(struct fs_context *fc,
|
|
Kmods SIG |
8b815c |
case Opt_prealloc:
|
|
Kmods SIG |
8b815c |
opts->prealloc = result.negated ? 0 : 1;
|
|
Kmods SIG |
8b815c |
break;
|
|
Kmods SIG |
8b815c |
- case Opt_no_acs_rules:
|
|
Kmods SIG |
8b815c |
- opts->no_acs_rules = 1;
|
|
Kmods SIG |
8b815c |
+ case Opt_noacsrules:
|
|
Kmods SIG |
8b815c |
+ opts->noacsrules = result.negated ? 1 : 0;
|
|
Kmods SIG |
8b815c |
break;
|
|
Kmods SIG |
8b815c |
default:
|
|
Kmods SIG |
8b815c |
/* Should not be here unless we forget add case. */
|
|
Kmods SIG |
8b815c |
@@ -547,8 +547,8 @@ static int ntfs_show_options(struct seq_file *m, struct dentry *root)
|
|
Kmods SIG |
8b815c |
seq_puts(m, ",nohidden");
|
|
Kmods SIG |
8b815c |
if (opts->force)
|
|
Kmods SIG |
8b815c |
seq_puts(m, ",force");
|
|
Kmods SIG |
8b815c |
- if (opts->no_acs_rules)
|
|
Kmods SIG |
8b815c |
- seq_puts(m, ",no_acs_rules");
|
|
Kmods SIG |
8b815c |
+ if (opts->noacsrules)
|
|
Kmods SIG |
8b815c |
+ seq_puts(m, ",noacsrules");
|
|
Kmods SIG |
8b815c |
if (opts->prealloc)
|
|
Kmods SIG |
8b815c |
seq_puts(m, ",prealloc");
|
|
Kmods SIG |
8b815c |
if (sb->s_flags & SB_POSIXACL)
|
|
Kmods SIG |
8b815c |
diff --git a/src/xattr.c b/src/xattr.c
|
|
Kmods SIG |
8b815c |
index ac4b37bf8832a51b9e32b7c4feb6f1c762d5b271..6f88cb77a17f666fc7cdcdcdcd44b032ceca1c07 100644
|
|
Kmods SIG |
8b815c |
--- a/src/xattr.c
|
|
Kmods SIG |
8b815c |
+++ b/src/xattr.c
|
|
Kmods SIG |
8b815c |
@@ -769,7 +769,7 @@ int ntfs_acl_chmod(struct user_namespace *mnt_userns, struct inode *inode)
|
|
Kmods SIG |
8b815c |
int ntfs_permission(struct user_namespace *mnt_userns, struct inode *inode,
|
|
Kmods SIG |
8b815c |
int mask)
|
|
Kmods SIG |
8b815c |
{
|
|
Kmods SIG |
8b815c |
- if (ntfs_sb(inode->i_sb)->options->no_acs_rules) {
|
|
Kmods SIG |
8b815c |
+ if (ntfs_sb(inode->i_sb)->options->noacsrules) {
|
|
Kmods SIG |
8b815c |
/* "No access rules" mode - Allow all changes. */
|
|
Kmods SIG |
8b815c |
return 0;
|
|
Kmods SIG |
8b815c |
}
|
|
Kmods SIG |
8b815c |
--
|
|
Kmods SIG |
8b815c |
2.31.1
|
|
Kmods SIG |
8b815c |
|