Now that we have two different views of filesystem ids (the filesystem view and the kernel view), we have a problem in that current_fsuid/fsgid() return the kernel view but are sometimes used in filesystem code where the filesystem view shoud be used. This patch introduces helpers to produce the filesystem view of current fsuid and fsgid. Signed-off-by: James Bottomley <James.Bottomley@xxxxxxxxxxxxxxxxxxxxx> diff --git a/include/linux/cred.h b/include/linux/cred.h index f0e70a1..18e9c41 100644 --- a/include/linux/cred.h +++ b/include/linux/cred.h @@ -399,4 +399,9 @@ do { \ *(_fsgid) = __cred->fsgid; \ } while(0) +/* return the current id in the filesystem view */ +#define i_fsuid(i) from_kuid((i)->i_sb->s_user_ns, current_fsuid()) +#define i_fsgid(i) from_kgid((i)->i_sb->s_user_ns, current_fsgid()) + + #endif /* _LINUX_CRED_H */ -- To unsubscribe from this list: send the line "unsubscribe linux-xfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html