54cceebb67
In addition to setting the processes filesystem id's, nfsd_setuser also modifies the value of the rq_cred which stores the id's that originally came from the rpc call, for example to reflect root squashing. There's no real reason to do that--the only case where rqstp->rq_cred is actually used later on is in the NFSv4 SETCLIENTID/SETCLIENTID_CONFIRM operations, and there the results are the opposite of what we want--those two operations don't deal with the filesystem at all, they only record the credentials used with the rpc call for later reference (so that we may require the same credentials be used on later operations), and the credentials shouldn't vary just because there was or wasn't a previous operation in the compound that referred to some export This fixes a bug which caused mounts from Solaris clients to fail. Signed-off-by: Andy Adamson <andros@citi.umich.edu> Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu> Signed-off-by: Neil Brown <neilb@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
63 lines
1.6 KiB
C
63 lines
1.6 KiB
C
/*
|
|
* linux/fs/nfsd/auth.c
|
|
*
|
|
* Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
|
|
*/
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/sched.h>
|
|
#include <linux/sunrpc/svc.h>
|
|
#include <linux/sunrpc/svcauth.h>
|
|
#include <linux/nfsd/nfsd.h>
|
|
|
|
#define CAP_NFSD_MASK (CAP_FS_MASK|CAP_TO_MASK(CAP_SYS_RESOURCE))
|
|
|
|
int nfsd_setuser(struct svc_rqst *rqstp, struct svc_export *exp)
|
|
{
|
|
struct svc_cred cred = rqstp->rq_cred;
|
|
int i;
|
|
int ret;
|
|
|
|
if (exp->ex_flags & NFSEXP_ALLSQUASH) {
|
|
cred.cr_uid = exp->ex_anon_uid;
|
|
cred.cr_gid = exp->ex_anon_gid;
|
|
cred.cr_group_info = groups_alloc(0);
|
|
} else if (exp->ex_flags & NFSEXP_ROOTSQUASH) {
|
|
struct group_info *gi;
|
|
if (!cred.cr_uid)
|
|
cred.cr_uid = exp->ex_anon_uid;
|
|
if (!cred.cr_gid)
|
|
cred.cr_gid = exp->ex_anon_gid;
|
|
gi = groups_alloc(cred.cr_group_info->ngroups);
|
|
if (gi)
|
|
for (i = 0; i < cred.cr_group_info->ngroups; i++) {
|
|
if (!GROUP_AT(cred.cr_group_info, i))
|
|
GROUP_AT(gi, i) = exp->ex_anon_gid;
|
|
else
|
|
GROUP_AT(gi, i) = GROUP_AT(cred.cr_group_info, i);
|
|
}
|
|
cred.cr_group_info = gi;
|
|
} else
|
|
get_group_info(cred.cr_group_info);
|
|
|
|
if (cred.cr_uid != (uid_t) -1)
|
|
current->fsuid = cred.cr_uid;
|
|
else
|
|
current->fsuid = exp->ex_anon_uid;
|
|
if (cred.cr_gid != (gid_t) -1)
|
|
current->fsgid = cred.cr_gid;
|
|
else
|
|
current->fsgid = exp->ex_anon_gid;
|
|
|
|
if (!cred.cr_group_info)
|
|
return -ENOMEM;
|
|
ret = set_current_groups(cred.cr_group_info);
|
|
put_group_info(cred.cr_group_info);
|
|
if ((cred.cr_uid)) {
|
|
cap_t(current->cap_effective) &= ~CAP_NFSD_MASK;
|
|
} else {
|
|
cap_t(current->cap_effective) |= (CAP_NFSD_MASK &
|
|
current->cap_permitted);
|
|
}
|
|
return ret;
|
|
}
|