cregit-Linux how code gets into the kernel

Release 4.11 fs/nfsd/auth.c

Directory: fs/nfsd
/* Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de> */

#include <linux/sched.h>
#include "nfsd.h"
#include "auth.h"


int nfsexp_flags(struct svc_rqst *rqstp, struct svc_export *exp) { struct exp_flavor_info *f; struct exp_flavor_info *end = exp->ex_flavors + exp->ex_nflavors; for (f = exp->ex_flavors; f < end; f++) { if (f->pseudoflavor == rqstp->rq_cred.cr_flavor) return f->flags; } return exp->ex_flags; }

Contributors

PersonTokensPropCommitsCommitProp
J. Bruce Fields72100.00%2100.00%
Total72100.00%2100.00%


int nfsd_setuser(struct svc_rqst *rqstp, struct svc_export *exp) { struct group_info *rqgi; struct group_info *gi; struct cred *new; int i; int flags = nfsexp_flags(rqstp, exp); validate_process_creds(); /* discard any old override before preparing the new set */ revert_creds(get_cred(current_real_cred())); new = prepare_creds(); if (!new) return -ENOMEM; new->fsuid = rqstp->rq_cred.cr_uid; new->fsgid = rqstp->rq_cred.cr_gid; rqgi = rqstp->rq_cred.cr_group_info; if (flags & NFSEXP_ALLSQUASH) { new->fsuid = exp->ex_anon_uid; new->fsgid = exp->ex_anon_gid; gi = groups_alloc(0); if (!gi) goto oom; } else if (flags & NFSEXP_ROOTSQUASH) { if (uid_eq(new->fsuid, GLOBAL_ROOT_UID)) new->fsuid = exp->ex_anon_uid; if (gid_eq(new->fsgid, GLOBAL_ROOT_GID)) new->fsgid = exp->ex_anon_gid; gi = groups_alloc(rqgi->ngroups); if (!gi) goto oom; for (i = 0; i < rqgi->ngroups; i++) { if (gid_eq(GLOBAL_ROOT_GID, rqgi->gid[i])) gi->gid[i] = exp->ex_anon_gid; else gi->gid[i] = rqgi->gid[i]; } } else { gi = get_group_info(rqgi); } if (uid_eq(new->fsuid, INVALID_UID)) new->fsuid = exp->ex_anon_uid; if (gid_eq(new->fsgid, INVALID_GID)) new->fsgid = exp->ex_anon_gid; set_groups(new, gi); put_group_info(gi); if (!uid_eq(new->fsuid, GLOBAL_ROOT_UID)) new->cap_effective = cap_drop_nfsd_set(new->cap_effective); else new->cap_effective = cap_raise_nfsd_set(new->cap_effective, new->cap_permitted); validate_process_creds(); put_cred(override_creds(new)); put_cred(new); validate_process_creds(); return 0; oom: abort_creds(new); return -ENOMEM; }

Contributors

PersonTokensPropCommitsCommitProp
David Howells14336.67%523.81%
Linus Torvalds (pre-git)11930.51%314.29%
Andrew Morton348.72%314.29%
Eric W. Biedermann317.95%29.52%
J. Bruce Fields246.15%314.29%
Alexey Dobriyan164.10%14.76%
Andrew G. Morgan102.56%14.76%
Neil Brown92.31%14.76%
Kinglong Mee20.51%14.76%
Jeff Layton20.51%14.76%
Total390100.00%21100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
David Howells14330.30%519.23%
Linus Torvalds (pre-git)12426.27%311.54%
J. Bruce Fields9920.97%623.08%
Andrew Morton347.20%311.54%
Eric W. Biedermann316.57%27.69%
Alexey Dobriyan163.39%13.85%
Andrew G. Morgan102.12%13.85%
Neil Brown91.91%13.85%
Kinglong Mee20.42%13.85%
Jeff Layton20.42%13.85%
Harvey Harrison10.21%13.85%
Boaz Harrosh10.21%13.85%
Total472100.00%26100.00%
Directory: fs/nfsd
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.