From: Alexander Larsson <alexl@redhat.com> Date: Tue, 15 Aug 2023 07:33:44 +0000 (+0200) Subject: ovl: Add OVL_XATTR_TRUSTED/USER_PREFIX_LEN macros X-Git-Tag: v6.7-rc1~49^2~7 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=d431e652600bf2708f5a5ca3b46fa1b53606d1cf;p=users%2Fdwmw2%2Flinux.git ovl: Add OVL_XATTR_TRUSTED/USER_PREFIX_LEN macros These match the ones for e.g. XATTR_TRUSTED_PREFIX_LEN. Signed-off-by: Alexander Larsson <alexl@redhat.com> Reviewed-by: Amir Goldstein <amir73il@gmail.com> Signed-off-by: Amir Goldstein <amir73il@gmail.com> --- diff --git a/fs/overlayfs/overlayfs.h b/fs/overlayfs/overlayfs.h index 59ee6ba79ee88..1c0ad84646e86 100644 --- a/fs/overlayfs/overlayfs.h +++ b/fs/overlayfs/overlayfs.h @@ -28,7 +28,9 @@ enum ovl_path_type { #define OVL_XATTR_NAMESPACE "overlay." #define OVL_XATTR_TRUSTED_PREFIX XATTR_TRUSTED_PREFIX OVL_XATTR_NAMESPACE +#define OVL_XATTR_TRUSTED_PREFIX_LEN (sizeof(OVL_XATTR_TRUSTED_PREFIX) - 1) #define OVL_XATTR_USER_PREFIX XATTR_USER_PREFIX OVL_XATTR_NAMESPACE +#define OVL_XATTR_USER_PREFIX_LEN (sizeof(OVL_XATTR_USER_PREFIX) - 1) enum ovl_xattr { OVL_XATTR_OPAQUE, diff --git a/fs/overlayfs/xattrs.c b/fs/overlayfs/xattrs.c index 8e7e4ca62448b..d20032f8a5373 100644 --- a/fs/overlayfs/xattrs.c +++ b/fs/overlayfs/xattrs.c @@ -10,10 +10,10 @@ bool ovl_is_private_xattr(struct super_block *sb, const char *name) if (ofs->config.userxattr) return strncmp(name, OVL_XATTR_USER_PREFIX, - sizeof(OVL_XATTR_USER_PREFIX) - 1) == 0; + OVL_XATTR_USER_PREFIX_LEN) == 0; else return strncmp(name, OVL_XATTR_TRUSTED_PREFIX, - sizeof(OVL_XATTR_TRUSTED_PREFIX) - 1) == 0; + OVL_XATTR_TRUSTED_PREFIX_LEN) == 0; } static int ovl_xattr_set(struct dentry *dentry, struct inode *inode, const char *name,