]> Git Repo - linux.git/commitdiff
fs: add i_user_ns() helper
authorChristian Brauner <[email protected]>
Fri, 3 Dec 2021 11:17:06 +0000 (12:17 +0100)
committerChristian Brauner <[email protected]>
Sun, 5 Dec 2021 09:28:57 +0000 (10:28 +0100)
Since we'll be passing the filesystem's idmapping in even more places in
the following patches and we do already dereference struct inode to get
to the filesystem's idmapping multiple times add a tiny helper.

Link: https://lore.kernel.org/r/[email protected]
Link: https://lore.kernel.org/r/[email protected]
Link: https://lore.kernel.org/r/[email protected]
Cc: Seth Forshee <[email protected]>
Cc: Christoph Hellwig <[email protected]>
Cc: Al Viro <[email protected]>
CC: [email protected]
Reviewed-by: Amir Goldstein <[email protected]>
Reviewed-by: Seth Forshee <[email protected]>
Signed-off-by: Christian Brauner <[email protected]>
include/linux/fs.h

index e1f28f757f1bfa601482b62c67f4a0d470175d36..3d6d514943ab991b16072d5071493303b9102b52 100644 (file)
@@ -1600,6 +1600,11 @@ struct super_block {
        struct list_head        s_inodes_wb;    /* writeback inodes */
 } __randomize_layout;
 
+static inline struct user_namespace *i_user_ns(const struct inode *inode)
+{
+       return inode->i_sb->s_user_ns;
+}
+
 /* Helper functions so that in most cases filesystems will
  * not need to deal directly with kuid_t and kgid_t and can
  * instead deal with the raw numeric values that are stored
@@ -1607,22 +1612,22 @@ struct super_block {
  */
 static inline uid_t i_uid_read(const struct inode *inode)
 {
-       return from_kuid(inode->i_sb->s_user_ns, inode->i_uid);
+       return from_kuid(i_user_ns(inode), inode->i_uid);
 }
 
 static inline gid_t i_gid_read(const struct inode *inode)
 {
-       return from_kgid(inode->i_sb->s_user_ns, inode->i_gid);
+       return from_kgid(i_user_ns(inode), inode->i_gid);
 }
 
 static inline void i_uid_write(struct inode *inode, uid_t uid)
 {
-       inode->i_uid = make_kuid(inode->i_sb->s_user_ns, uid);
+       inode->i_uid = make_kuid(i_user_ns(inode), uid);
 }
 
 static inline void i_gid_write(struct inode *inode, gid_t gid)
 {
-       inode->i_gid = make_kgid(inode->i_sb->s_user_ns, gid);
+       inode->i_gid = make_kgid(i_user_ns(inode), gid);
 }
 
 /**
This page took 0.059446 seconds and 4 git commands to generate.