1 /* Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de> */
3 #include <linux/sched.h>
4 #include <linux/user_namespace.h>
8 int nfsexp_flags(struct svc_rqst
*rqstp
, struct svc_export
*exp
)
10 struct exp_flavor_info
*f
;
11 struct exp_flavor_info
*end
= exp
->ex_flavors
+ exp
->ex_nflavors
;
13 for (f
= exp
->ex_flavors
; f
< end
; f
++) {
14 if (f
->pseudoflavor
== rqstp
->rq_cred
.cr_flavor
)
21 int nfsd_setuser(struct svc_rqst
*rqstp
, struct svc_export
*exp
)
23 struct group_info
*rqgi
;
24 struct group_info
*gi
;
27 int flags
= nfsexp_flags(rqstp
, exp
);
30 validate_process_creds();
32 /* discard any old override before preparing the new set */
33 revert_creds(get_cred(current
->real_cred
));
34 new = prepare_creds();
38 new->fsuid
= rqstp
->rq_cred
.cr_uid
;
39 new->fsgid
= rqstp
->rq_cred
.cr_gid
;
41 rqgi
= rqstp
->rq_cred
.cr_group_info
;
43 if (flags
& NFSEXP_ALLSQUASH
) {
44 new->fsuid
= exp
->ex_anon_uid
;
45 new->fsgid
= exp
->ex_anon_gid
;
49 } else if (flags
& NFSEXP_ROOTSQUASH
) {
51 new->fsuid
= exp
->ex_anon_uid
;
53 new->fsgid
= exp
->ex_anon_gid
;
55 gi
= groups_alloc(rqgi
->ngroups
);
59 for (i
= 0; i
< rqgi
->ngroups
; i
++) {
60 if (gid_eq(GLOBAL_ROOT_GID
, GROUP_AT(rqgi
, i
)))
61 GROUP_AT(gi
, i
) = make_kgid(&init_user_ns
, exp
->ex_anon_gid
);
63 GROUP_AT(gi
, i
) = GROUP_AT(rqgi
, i
);
66 gi
= get_group_info(rqgi
);
69 if (new->fsuid
== (uid_t
) -1)
70 new->fsuid
= exp
->ex_anon_uid
;
71 if (new->fsgid
== (gid_t
) -1)
72 new->fsgid
= exp
->ex_anon_gid
;
74 ret
= set_groups(new, gi
);
80 new->cap_effective
= cap_drop_nfsd_set(new->cap_effective
);
82 new->cap_effective
= cap_raise_nfsd_set(new->cap_effective
,
84 validate_process_creds();
85 put_cred(override_creds(new));
87 validate_process_creds();