4 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
7 #include <linux/types.h>
8 #include <linux/sched.h>
9 #include <linux/sunrpc/svc.h>
10 #include <linux/sunrpc/svcauth.h>
11 #include <linux/nfsd/nfsd.h>
12 #include <linux/nfsd/export.h>
15 int nfsexp_flags(struct svc_rqst
*rqstp
, struct svc_export
*exp
)
17 struct exp_flavor_info
*f
;
18 struct exp_flavor_info
*end
= exp
->ex_flavors
+ exp
->ex_nflavors
;
20 for (f
= exp
->ex_flavors
; f
< end
; f
++) {
21 if (f
->pseudoflavor
== rqstp
->rq_flavor
)
28 int nfsd_setuser(struct svc_rqst
*rqstp
, struct svc_export
*exp
)
30 struct group_info
*rqgi
;
31 struct group_info
*gi
;
34 int flags
= nfsexp_flags(rqstp
, exp
);
37 /* discard any old override before preparing the new set */
38 revert_creds(get_cred(current
->real_cred
));
39 new = prepare_creds();
43 new->fsuid
= rqstp
->rq_cred
.cr_uid
;
44 new->fsgid
= rqstp
->rq_cred
.cr_gid
;
46 rqgi
= rqstp
->rq_cred
.cr_group_info
;
48 if (flags
& NFSEXP_ALLSQUASH
) {
49 new->fsuid
= exp
->ex_anon_uid
;
50 new->fsgid
= exp
->ex_anon_gid
;
52 } else if (flags
& NFSEXP_ROOTSQUASH
) {
54 new->fsuid
= exp
->ex_anon_uid
;
56 new->fsgid
= exp
->ex_anon_gid
;
58 gi
= groups_alloc(rqgi
->ngroups
);
62 for (i
= 0; i
< rqgi
->ngroups
; i
++) {
63 if (!GROUP_AT(rqgi
, i
))
64 GROUP_AT(gi
, i
) = exp
->ex_anon_gid
;
66 GROUP_AT(gi
, i
) = GROUP_AT(rqgi
, i
);
69 gi
= get_group_info(rqgi
);
72 if (new->fsuid
== (uid_t
) -1)
73 new->fsuid
= exp
->ex_anon_uid
;
74 if (new->fsgid
== (gid_t
) -1)
75 new->fsgid
= exp
->ex_anon_gid
;
77 ret
= set_groups(new, gi
);
83 new->cap_effective
= cap_drop_nfsd_set(new->cap_effective
);
85 new->cap_effective
= cap_raise_nfsd_set(new->cap_effective
,
87 put_cred(override_creds(new));