mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-14 14:55:41 +00:00
The socket code upcalls into the NFS server using the so_upcall
mechanism so that early processing on mbufs can be performed before a context switch to the NFS server threads. Because of this, if the socket code is running without Giant, the NFS server also needs to be able to run the upcall code without relying on the presence on Giant. This change modifies the NFS server to run using a "giant code lock" covering operation of the whole subsystem. Work is in progress to move to data-based locking as part of the NFSv4 server changes. Introduce an NFS server subsystem lock, 'nfsd_mtx', and a set of macros to operate on the lock: NFSD_LOCK_ASSERT() Assert nfsd_mtx owned by current thread NFSD_UNLOCK_ASSERT() Assert nfsd_mtx not owned by current thread NFSD_LOCK_DONTCARE() Advisory: this function doesn't care NFSD_LOCK() Lock nfsd_mtx NFSD_UNLOCK() Unlock nfsd_mtx Constify a number of global variables/structures in the NFS server code, as they are not modified and contain constants only: nfsrvv2_procid nfsrv_nfsv3_procid nonidempotent nfsv2_repstat nfsv2_type nfsrv_nfsv3_procid nfsrvv2_procid nfsrv_v2errmap nfsv3err_null nfsv3err_getattr nfsv3err_setattr nfsv3err_lookup nfsv3err_access nfsv3err_readlink nfsv3err_read nfsv3err_write nfsv3err_create nfsv3err_mkdir nfsv3err_symlink nfsv3err_mknod nfsv3err_remove nfsv3err_rmdir nfsv3err_rename nfsv3err_link nfsv3err_readdir nfsv3err_readdirplus nfsv3err_fsstat nfsv3err_fsinfo nfsv3err_pathconf nfsv3err_commit nfsrv_v3errmap There are additional structures that should be constified but due to their being passed into general purpose functions without const arguments, I have not yet converted. In general, acquire nfsd_mtx when accessing any of the global NFS structures, including struct nfssvc_sock, struct nfsd, struct nfsrv_descript. Release nfsd_mtx whenever calling into VFS, and acquire Giant for calls into VFS. Giant is not required for any part of the operation of the NFS server with the exception of calls into VFS. Giant will never by acquired in the upcall code path. However, it may operate entirely covered by Giant, or not. If debug.mpsafenet is set to 0, the system calls will acquire Giant across all operations, and the upcall will assert Giant. As such, by default, this enables locking and allows us to test assertions, but should not cause any substantial new amount of code to be run without Giant. Bugs should manifest in the form of lock assertion failures for now. This approach is similar (but not identical) to modifications to the BSD/OS NFS server code snapshot provided by BSDi as part of their SMPng snapshot. The strategy is almost the same (single lock over the NFS server), but differs in the following ways: - Our NFS client and server code bases don't overlap, which means both fewer bugs and easier locking (thanks Peter!). Also means NFSD_*() as opposed to NFS_*(). - We make broad use of assertions, whereas the BSD/OS code does not. - Made slightly different choices about how to handle macros building packets but operating with side effects. - We acquire Giant only when entering VFS from the NFS server daemon threads. - Serious bugs in BSD/OS implementation corrected -- the snapshot we received was clearly a work in progress. Based on ideas from: BSDi SMPng Snapshot Reviewed by: rick@snowhite.cis.uoguelph.ca Extensive testing by: kris
This commit is contained in:
parent
966efcc767
commit
1ee624b31d
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=129639
@ -116,6 +116,13 @@ struct nfsd_args {
|
||||
|
||||
#ifdef _KERNEL
|
||||
|
||||
extern struct mtx nfsd_mtx;
|
||||
#define NFSD_LOCK_ASSERT() mtx_assert(&nfsd_mtx, MA_OWNED)
|
||||
#define NFSD_UNLOCK_ASSERT() mtx_assert(&nfsd_mtx, MA_NOTOWNED)
|
||||
#define NFSD_LOCK_DONTCARE()
|
||||
#define NFSD_LOCK() mtx_lock(&nfsd_mtx)
|
||||
#define NFSD_UNLOCK() mtx_unlock(&nfsd_mtx)
|
||||
|
||||
#ifdef MALLOC_DECLARE
|
||||
MALLOC_DECLARE(M_NFSRVDESC);
|
||||
MALLOC_DECLARE(M_NFSD);
|
||||
@ -145,8 +152,8 @@ extern u_int32_t nfsrv_rpc_auth_unix, nfsrv_rpc_msgaccepted, nfsrv_rpc_call,
|
||||
nfsrv_rpc_autherr;
|
||||
|
||||
/* Procedure table data */
|
||||
extern int nfsrvv2_procid[NFS_NPROCS];
|
||||
extern int nfsrv_nfsv3_procid[NFS_NPROCS];
|
||||
extern const int nfsrvv2_procid[NFS_NPROCS];
|
||||
extern const int nfsrv_nfsv3_procid[NFS_NPROCS];
|
||||
extern int32_t (*nfsrv3_procs[NFS_NPROCS])(struct nfsrv_descript *nd,
|
||||
struct nfssvc_sock *slp, struct thread *td,
|
||||
struct mbuf **mreqp);
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -44,7 +44,9 @@ __FBSDID("$FreeBSD$");
|
||||
#include <sys/malloc.h>
|
||||
#include <sys/mount.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/lock.h>
|
||||
#include <sys/mbuf.h>
|
||||
#include <sys/mutex.h>
|
||||
#include <sys/socket.h>
|
||||
#include <sys/socketvar.h> /* for sodupsockaddr */
|
||||
|
||||
@ -72,7 +74,7 @@ static u_long nfsrvhash;
|
||||
/*
|
||||
* Static array that defines which nfs rpc's are nonidempotent
|
||||
*/
|
||||
static int nonidempotent[NFS_NPROCS] = {
|
||||
static const int nonidempotent[NFS_NPROCS] = {
|
||||
FALSE,
|
||||
FALSE,
|
||||
TRUE,
|
||||
@ -99,7 +101,7 @@ static int nonidempotent[NFS_NPROCS] = {
|
||||
};
|
||||
|
||||
/* True iff the rpc reply is an nfs status ONLY! */
|
||||
static int nfsv2_repstat[NFS_NPROCS] = {
|
||||
static const int nfsv2_repstat[NFS_NPROCS] = {
|
||||
FALSE,
|
||||
FALSE,
|
||||
FALSE,
|
||||
@ -154,6 +156,8 @@ nfsrv_getcache(struct nfsrv_descript *nd, struct mbuf **repp)
|
||||
caddr_t bpos;
|
||||
int ret;
|
||||
|
||||
NFSD_LOCK_ASSERT();
|
||||
|
||||
/*
|
||||
* Don't cache recent requests for reliable transport protocols.
|
||||
* (Maybe we should for the case of a reconnect, but..)
|
||||
@ -167,7 +171,8 @@ nfsrv_getcache(struct nfsrv_descript *nd, struct mbuf **repp)
|
||||
NFS_DPF(RC, ("H%03x", rp->rc_xid & 0xfff));
|
||||
if ((rp->rc_flag & RC_LOCKED) != 0) {
|
||||
rp->rc_flag |= RC_WANTED;
|
||||
(void) tsleep(rp, PZERO-1, "nfsrc", 0);
|
||||
(void) msleep(rp, &nfsd_mtx, PZERO-1,
|
||||
"nfsrc", 0);
|
||||
goto loop;
|
||||
}
|
||||
rp->rc_flag |= RC_LOCKED;
|
||||
@ -188,8 +193,10 @@ nfsrv_getcache(struct nfsrv_descript *nd, struct mbuf **repp)
|
||||
ret = RC_REPLY;
|
||||
} else if (rp->rc_flag & RC_REPMBUF) {
|
||||
nfsrvstats.srvcache_nonidemdonehits++;
|
||||
NFSD_UNLOCK();
|
||||
*repp = m_copym(rp->rc_reply, 0, M_COPYALL,
|
||||
M_TRYWAIT);
|
||||
NFSD_LOCK();
|
||||
ret = RC_REPLY;
|
||||
} else {
|
||||
nfsrvstats.srvcache_idemdonehits++;
|
||||
@ -207,15 +214,17 @@ nfsrv_getcache(struct nfsrv_descript *nd, struct mbuf **repp)
|
||||
nfsrvstats.srvcache_misses++;
|
||||
NFS_DPF(RC, ("M%03x", nd->nd_retxid & 0xfff));
|
||||
if (numnfsrvcache < desirednfsrvcache) {
|
||||
NFSD_UNLOCK();
|
||||
rp = (struct nfsrvcache *)malloc((u_long)sizeof *rp,
|
||||
M_NFSD, M_WAITOK | M_ZERO);
|
||||
NFSD_LOCK();
|
||||
numnfsrvcache++;
|
||||
rp->rc_flag = RC_LOCKED;
|
||||
} else {
|
||||
rp = TAILQ_FIRST(&nfsrvlruhead);
|
||||
while ((rp->rc_flag & RC_LOCKED) != 0) {
|
||||
rp->rc_flag |= RC_WANTED;
|
||||
(void) tsleep(rp, PZERO-1, "nfsrc", 0);
|
||||
(void) msleep(rp, &nfsd_mtx, PZERO-1, "nfsrc", 0);
|
||||
rp = TAILQ_FIRST(&nfsrvlruhead);
|
||||
}
|
||||
rp->rc_flag |= RC_LOCKED;
|
||||
@ -261,6 +270,8 @@ nfsrv_updatecache(struct nfsrv_descript *nd, int repvalid, struct mbuf *repmbuf)
|
||||
{
|
||||
struct nfsrvcache *rp;
|
||||
|
||||
NFSD_LOCK_ASSERT();
|
||||
|
||||
if (!nd->nd_nam2)
|
||||
return;
|
||||
loop:
|
||||
@ -270,7 +281,8 @@ nfsrv_updatecache(struct nfsrv_descript *nd, int repvalid, struct mbuf *repmbuf)
|
||||
NFS_DPF(RC, ("U%03x", rp->rc_xid & 0xfff));
|
||||
if ((rp->rc_flag & RC_LOCKED) != 0) {
|
||||
rp->rc_flag |= RC_WANTED;
|
||||
(void) tsleep(rp, PZERO-1, "nfsrc", 0);
|
||||
(void) msleep(rp, &nfsd_mtx, PZERO-1,
|
||||
"nfsrc", 0);
|
||||
goto loop;
|
||||
}
|
||||
rp->rc_flag |= RC_LOCKED;
|
||||
@ -298,8 +310,10 @@ nfsrv_updatecache(struct nfsrv_descript *nd, int repvalid, struct mbuf *repmbuf)
|
||||
rp->rc_status = nd->nd_repstat;
|
||||
rp->rc_flag |= RC_REPSTATUS;
|
||||
} else {
|
||||
NFSD_UNLOCK();
|
||||
rp->rc_reply = m_copym(repmbuf,
|
||||
0, M_COPYALL, M_TRYWAIT);
|
||||
NFSD_LOCK();
|
||||
rp->rc_flag |= RC_REPMBUF;
|
||||
}
|
||||
}
|
||||
@ -322,6 +336,8 @@ nfsrv_cleancache(void)
|
||||
{
|
||||
struct nfsrvcache *rp, *nextrp;
|
||||
|
||||
NFSD_LOCK_ASSERT();
|
||||
|
||||
for (rp = TAILQ_FIRST(&nfsrvlruhead); rp != 0; rp = nextrp) {
|
||||
nextrp = TAILQ_NEXT(rp, rc_lru);
|
||||
LIST_REMOVE(rp, rc_hash);
|
||||
|
@ -97,7 +97,7 @@ struct callout nfsrv_callout;
|
||||
static void nfs_realign(struct mbuf **pm, int hsiz); /* XXX SHARED */
|
||||
static int nfsrv_getstream(struct nfssvc_sock *, int);
|
||||
|
||||
int (*nfsrv3_procs[NFS_NPROCS])(struct nfsrv_descript *nd,
|
||||
int32_t (*nfsrv3_procs[NFS_NPROCS])(struct nfsrv_descript *nd,
|
||||
struct nfssvc_sock *slp,
|
||||
struct thread *td,
|
||||
struct mbuf **mreqp) = {
|
||||
@ -140,9 +140,13 @@ nfs_rephead(int siz, struct nfsrv_descript *nd, int err,
|
||||
caddr_t bpos;
|
||||
struct mbuf *mb;
|
||||
|
||||
/* XXXRW: not 100% clear the lock is needed here. */
|
||||
NFSD_LOCK_ASSERT();
|
||||
|
||||
nd->nd_repstat = err;
|
||||
if (err && (nd->nd_flag & ND_NFSV3) == 0) /* XXX recheck */
|
||||
siz = 0;
|
||||
NFSD_UNLOCK();
|
||||
MGETHDR(mreq, M_TRYWAIT, MT_DATA);
|
||||
mb = mreq;
|
||||
/*
|
||||
@ -155,6 +159,7 @@ nfs_rephead(int siz, struct nfsrv_descript *nd, int err,
|
||||
MCLGET(mreq, M_TRYWAIT);
|
||||
} else
|
||||
mreq->m_data += min(max_hdr, M_TRAILINGSPACE(mreq));
|
||||
NFSD_LOCK();
|
||||
tl = mtod(mreq, u_int32_t *);
|
||||
bpos = ((caddr_t)tl) + mreq->m_len;
|
||||
*tl++ = txdr_unsigned(nd->nd_retxid);
|
||||
@ -236,13 +241,18 @@ nfs_realign(struct mbuf **pm, int hsiz) /* XXX COMMON */
|
||||
struct mbuf *n = NULL;
|
||||
int off = 0;
|
||||
|
||||
/* XXXRW: may not need lock? */
|
||||
NFSD_LOCK_ASSERT();
|
||||
|
||||
++nfs_realign_test;
|
||||
while ((m = *pm) != NULL) {
|
||||
if ((m->m_len & 0x3) || (mtod(m, intptr_t) & 0x3)) {
|
||||
NFSD_UNLOCK();
|
||||
MGET(n, M_TRYWAIT, MT_DATA);
|
||||
if (m->m_len >= MINCLSIZE) {
|
||||
MCLGET(n, M_TRYWAIT);
|
||||
}
|
||||
NFSD_LOCK();
|
||||
n->m_len = 0;
|
||||
break;
|
||||
}
|
||||
@ -281,6 +291,8 @@ nfs_getreq(struct nfsrv_descript *nd, struct nfsd *nfsd, int has_header)
|
||||
int error = 0;
|
||||
struct mbuf *mrep, *md;
|
||||
|
||||
NFSD_LOCK_ASSERT();
|
||||
|
||||
mrep = nd->nd_mrep;
|
||||
md = nd->nd_md;
|
||||
dpos = nd->nd_dpos;
|
||||
@ -410,6 +422,15 @@ nfsrv_rcv(struct socket *so, void *arg, int waitflag)
|
||||
struct uio auio;
|
||||
int flags, error;
|
||||
|
||||
/*
|
||||
* XXXRW: For now, assert Giant here since the NFS server upcall
|
||||
* will perform socket operations requiring Giant in a non-mpsafe
|
||||
* kernel.
|
||||
*/
|
||||
NET_ASSERT_GIANT();
|
||||
NFSD_UNLOCK_ASSERT();
|
||||
|
||||
/* XXXRW: Unlocked read. */
|
||||
if ((slp->ns_flag & SLP_VALID) == 0)
|
||||
return;
|
||||
#ifdef notdef
|
||||
@ -417,12 +438,13 @@ nfsrv_rcv(struct socket *so, void *arg, int waitflag)
|
||||
* Define this to test for nfsds handling this under heavy load.
|
||||
*/
|
||||
if (waitflag == M_DONTWAIT) {
|
||||
NFSD_LOCK();
|
||||
slp->ns_flag |= SLP_NEEDQ;
|
||||
goto dorecs;
|
||||
}
|
||||
#endif
|
||||
GIANT_REQUIRED; /* XXX until socket locking is done */
|
||||
|
||||
NFSD_LOCK();
|
||||
auio.uio_td = NULL;
|
||||
if (so->so_type == SOCK_STREAM) {
|
||||
/*
|
||||
@ -441,8 +463,10 @@ nfsrv_rcv(struct socket *so, void *arg, int waitflag)
|
||||
*/
|
||||
auio.uio_resid = 1000000000;
|
||||
flags = MSG_DONTWAIT;
|
||||
NFSD_UNLOCK();
|
||||
error = so->so_proto->pr_usrreqs->pru_soreceive
|
||||
(so, &nam, &auio, &mp, NULL, &flags);
|
||||
NFSD_LOCK();
|
||||
if (error || mp == NULL) {
|
||||
if (error == EWOULDBLOCK)
|
||||
slp->ns_flag |= SLP_NEEDQ;
|
||||
@ -476,6 +500,7 @@ nfsrv_rcv(struct socket *so, void *arg, int waitflag)
|
||||
do {
|
||||
auio.uio_resid = 1000000000;
|
||||
flags = MSG_DONTWAIT;
|
||||
NFSD_UNLOCK();
|
||||
error = so->so_proto->pr_usrreqs->pru_soreceive
|
||||
(so, &nam, &auio, &mp, NULL, &flags);
|
||||
if (mp) {
|
||||
@ -487,13 +512,16 @@ nfsrv_rcv(struct socket *so, void *arg, int waitflag)
|
||||
if (nam)
|
||||
FREE(nam, M_SONAME);
|
||||
m_freem(mp);
|
||||
NFSD_LOCK();
|
||||
continue;
|
||||
}
|
||||
NFSD_LOCK();
|
||||
nfs_realign(&mp, 10 * NFSX_UNSIGNED);
|
||||
rec->nr_address = nam;
|
||||
rec->nr_packet = mp;
|
||||
STAILQ_INSERT_TAIL(&slp->ns_rec, rec, nr_link);
|
||||
}
|
||||
} else
|
||||
NFSD_LOCK();
|
||||
if (error) {
|
||||
if ((so->so_proto->pr_flags & PR_CONNREQUIRED)
|
||||
&& error != EWOULDBLOCK) {
|
||||
@ -512,6 +540,7 @@ nfsrv_rcv(struct socket *so, void *arg, int waitflag)
|
||||
(STAILQ_FIRST(&slp->ns_rec) != NULL ||
|
||||
(slp->ns_flag & (SLP_NEEDQ | SLP_DISCONN))))
|
||||
nfsrv_wakenfsd(slp);
|
||||
NFSD_UNLOCK();
|
||||
}
|
||||
|
||||
/*
|
||||
@ -528,6 +557,8 @@ nfsrv_getstream(struct nfssvc_sock *slp, int waitflag)
|
||||
struct mbuf *om, *m2, *recm;
|
||||
u_int32_t recmark;
|
||||
|
||||
NFSD_LOCK_ASSERT();
|
||||
|
||||
if (slp->ns_flag & SLP_GETSTREAM)
|
||||
panic("nfs getstream");
|
||||
slp->ns_flag |= SLP_GETSTREAM;
|
||||
@ -586,8 +617,10 @@ nfsrv_getstream(struct nfssvc_sock *slp, int waitflag)
|
||||
|
||||
while (len < slp->ns_reclen) {
|
||||
if ((len + m->m_len) > slp->ns_reclen) {
|
||||
NFSD_UNLOCK();
|
||||
m2 = m_copym(m, 0, slp->ns_reclen - len,
|
||||
waitflag);
|
||||
NFSD_LOCK();
|
||||
if (m2) {
|
||||
if (om) {
|
||||
om->m_next = m2;
|
||||
@ -630,8 +663,10 @@ nfsrv_getstream(struct nfssvc_sock *slp, int waitflag)
|
||||
*mpp = recm;
|
||||
if (slp->ns_flag & SLP_LASTFRAG) {
|
||||
struct nfsrv_rec *rec;
|
||||
NFSD_UNLOCK();
|
||||
rec = malloc(sizeof(struct nfsrv_rec), M_NFSRVDESC,
|
||||
waitflag == M_DONTWAIT ? M_NOWAIT : M_WAITOK);
|
||||
NFSD_LOCK();
|
||||
if (!rec) {
|
||||
m_freem(slp->ns_frag);
|
||||
} else {
|
||||
@ -658,6 +693,8 @@ nfsrv_dorec(struct nfssvc_sock *slp, struct nfsd *nfsd,
|
||||
struct nfsrv_descript *nd;
|
||||
int error;
|
||||
|
||||
NFSD_LOCK_ASSERT();
|
||||
|
||||
*ndp = NULL;
|
||||
if ((slp->ns_flag & SLP_VALID) == 0 ||
|
||||
STAILQ_FIRST(&slp->ns_rec) == NULL)
|
||||
@ -667,8 +704,10 @@ nfsrv_dorec(struct nfssvc_sock *slp, struct nfsd *nfsd,
|
||||
nam = rec->nr_address;
|
||||
m = rec->nr_packet;
|
||||
free(rec, M_NFSRVDESC);
|
||||
NFSD_UNLOCK();
|
||||
MALLOC(nd, struct nfsrv_descript *, sizeof (struct nfsrv_descript),
|
||||
M_NFSRVDESC, M_WAITOK);
|
||||
NFSD_LOCK();
|
||||
nd->nd_md = nd->nd_mrep = m;
|
||||
nd->nd_nam2 = nam;
|
||||
nd->nd_dpos = mtod(m, caddr_t);
|
||||
@ -695,6 +734,8 @@ nfsrv_wakenfsd(struct nfssvc_sock *slp)
|
||||
{
|
||||
struct nfsd *nd;
|
||||
|
||||
NFSD_LOCK_ASSERT();
|
||||
|
||||
if ((slp->ns_flag & SLP_VALID) == 0)
|
||||
return;
|
||||
TAILQ_FOREACH(nd, &nfsd_head, nfsd_chain) {
|
||||
@ -725,7 +766,8 @@ nfsrv_send(struct socket *so, struct sockaddr *nam, struct mbuf *top)
|
||||
struct sockaddr *sendnam;
|
||||
int error, soflags, flags;
|
||||
|
||||
GIANT_REQUIRED; /* XXX until socket locking is done */
|
||||
NET_ASSERT_GIANT();
|
||||
NFSD_UNLOCK_ASSERT();
|
||||
|
||||
soflags = so->so_proto->pr_flags;
|
||||
if ((soflags & PR_CONNREQUIRED) || (so->so_state & SS_ISCONNECTED))
|
||||
@ -766,6 +808,7 @@ nfsrv_timer(void *arg)
|
||||
u_quad_t cur_usec;
|
||||
|
||||
s = splnet();
|
||||
NFSD_LOCK();
|
||||
/*
|
||||
* Scan the write gathering queues for writes that need to be
|
||||
* completed now.
|
||||
@ -776,6 +819,7 @@ nfsrv_timer(void *arg)
|
||||
LIST_FIRST(&slp->ns_tq)->nd_time <= cur_usec)
|
||||
nfsrv_wakenfsd(slp);
|
||||
}
|
||||
NFSD_UNLOCK();
|
||||
splx(s);
|
||||
callout_reset(&nfsrv_callout, nfsrv_ticks, nfsrv_timer, NULL);
|
||||
}
|
||||
|
@ -85,8 +85,8 @@ u_int32_t nfsrv_rpc_call, nfsrv_rpc_vers, nfsrv_rpc_reply,
|
||||
u_int32_t nfsrv_nfs_prog, nfsrv_nfs_true, nfsrv_nfs_false;
|
||||
|
||||
/* And other global data */
|
||||
static nfstype nfsv2_type[9] = { NFNON, NFREG, NFDIR, NFBLK, NFCHR, NFLNK,
|
||||
NFNON, NFCHR, NFNON };
|
||||
static const nfstype nfsv2_type[9] = { NFNON, NFREG, NFDIR, NFBLK, NFCHR,
|
||||
NFLNK, NFNON, NFCHR, NFNON };
|
||||
#define vtonfsv2_type(a) txdr_unsigned(nfsv2_type[((int32_t)(a))])
|
||||
#define vtonfsv3_mode(m) txdr_unsigned((m) & ALLPERMS)
|
||||
|
||||
@ -100,10 +100,12 @@ int nfsd_head_flag;
|
||||
static int nfs_prev_nfssvc_sy_narg;
|
||||
static sy_call_t *nfs_prev_nfssvc_sy_call;
|
||||
|
||||
struct mtx nfsd_mtx;
|
||||
|
||||
/*
|
||||
* Mapping of old NFS Version 2 RPC numbers to generic numbers.
|
||||
*/
|
||||
int nfsrv_nfsv3_procid[NFS_NPROCS] = {
|
||||
const int nfsrv_nfsv3_procid[NFS_NPROCS] = {
|
||||
NFSPROC_NULL,
|
||||
NFSPROC_GETATTR,
|
||||
NFSPROC_SETATTR,
|
||||
@ -132,7 +134,7 @@ int nfsrv_nfsv3_procid[NFS_NPROCS] = {
|
||||
/*
|
||||
* and the reverse mapping from generic to Version 2 procedure numbers
|
||||
*/
|
||||
int nfsrvv2_procid[NFS_NPROCS] = {
|
||||
const int nfsrvv2_procid[NFS_NPROCS] = {
|
||||
NFSV2PROC_NULL,
|
||||
NFSV2PROC_GETATTR,
|
||||
NFSV2PROC_SETATTR,
|
||||
@ -163,7 +165,7 @@ int nfsrvv2_procid[NFS_NPROCS] = {
|
||||
* Use 0 (which gets converted to NFSERR_IO) as the catch all for ones not
|
||||
* specifically defined in RFC 1094.
|
||||
*/
|
||||
static u_char nfsrv_v2errmap[ELAST] = {
|
||||
static const u_char nfsrv_v2errmap[ELAST] = {
|
||||
NFSERR_PERM, NFSERR_NOENT, 0, 0, 0,
|
||||
NFSERR_NXIO, 0, 0, 0, 0,
|
||||
0, 0, NFSERR_ACCES, 0, 0,
|
||||
@ -192,12 +194,12 @@ static u_char nfsrv_v2errmap[ELAST] = {
|
||||
* The first entry is the default error return and the rest are the valid
|
||||
* errors for that RPC in increasing numeric order.
|
||||
*/
|
||||
static short nfsv3err_null[] = {
|
||||
static const short nfsv3err_null[] = {
|
||||
0,
|
||||
0,
|
||||
};
|
||||
|
||||
static short nfsv3err_getattr[] = {
|
||||
static const short nfsv3err_getattr[] = {
|
||||
NFSERR_IO,
|
||||
NFSERR_IO,
|
||||
NFSERR_STALE,
|
||||
@ -206,7 +208,7 @@ static short nfsv3err_getattr[] = {
|
||||
0,
|
||||
};
|
||||
|
||||
static short nfsv3err_setattr[] = {
|
||||
static const short nfsv3err_setattr[] = {
|
||||
NFSERR_IO,
|
||||
NFSERR_PERM,
|
||||
NFSERR_IO,
|
||||
@ -222,7 +224,7 @@ static short nfsv3err_setattr[] = {
|
||||
0,
|
||||
};
|
||||
|
||||
static short nfsv3err_lookup[] = {
|
||||
static const short nfsv3err_lookup[] = {
|
||||
NFSERR_IO,
|
||||
NFSERR_NOENT,
|
||||
NFSERR_IO,
|
||||
@ -235,7 +237,7 @@ static short nfsv3err_lookup[] = {
|
||||
0,
|
||||
};
|
||||
|
||||
static short nfsv3err_access[] = {
|
||||
static const short nfsv3err_access[] = {
|
||||
NFSERR_IO,
|
||||
NFSERR_IO,
|
||||
NFSERR_STALE,
|
||||
@ -244,7 +246,7 @@ static short nfsv3err_access[] = {
|
||||
0,
|
||||
};
|
||||
|
||||
static short nfsv3err_readlink[] = {
|
||||
static const short nfsv3err_readlink[] = {
|
||||
NFSERR_IO,
|
||||
NFSERR_IO,
|
||||
NFSERR_ACCES,
|
||||
@ -256,7 +258,7 @@ static short nfsv3err_readlink[] = {
|
||||
0,
|
||||
};
|
||||
|
||||
static short nfsv3err_read[] = {
|
||||
static const short nfsv3err_read[] = {
|
||||
NFSERR_IO,
|
||||
NFSERR_IO,
|
||||
NFSERR_NXIO,
|
||||
@ -268,7 +270,7 @@ static short nfsv3err_read[] = {
|
||||
0,
|
||||
};
|
||||
|
||||
static short nfsv3err_write[] = {
|
||||
static const short nfsv3err_write[] = {
|
||||
NFSERR_IO,
|
||||
NFSERR_IO,
|
||||
NFSERR_ACCES,
|
||||
@ -283,7 +285,7 @@ static short nfsv3err_write[] = {
|
||||
0,
|
||||
};
|
||||
|
||||
static short nfsv3err_create[] = {
|
||||
static const short nfsv3err_create[] = {
|
||||
NFSERR_IO,
|
||||
NFSERR_IO,
|
||||
NFSERR_ACCES,
|
||||
@ -300,7 +302,7 @@ static short nfsv3err_create[] = {
|
||||
0,
|
||||
};
|
||||
|
||||
static short nfsv3err_mkdir[] = {
|
||||
static const short nfsv3err_mkdir[] = {
|
||||
NFSERR_IO,
|
||||
NFSERR_IO,
|
||||
NFSERR_ACCES,
|
||||
@ -317,7 +319,7 @@ static short nfsv3err_mkdir[] = {
|
||||
0,
|
||||
};
|
||||
|
||||
static short nfsv3err_symlink[] = {
|
||||
static const short nfsv3err_symlink[] = {
|
||||
NFSERR_IO,
|
||||
NFSERR_IO,
|
||||
NFSERR_ACCES,
|
||||
@ -334,7 +336,7 @@ static short nfsv3err_symlink[] = {
|
||||
0,
|
||||
};
|
||||
|
||||
static short nfsv3err_mknod[] = {
|
||||
static const short nfsv3err_mknod[] = {
|
||||
NFSERR_IO,
|
||||
NFSERR_IO,
|
||||
NFSERR_ACCES,
|
||||
@ -352,7 +354,7 @@ static short nfsv3err_mknod[] = {
|
||||
0,
|
||||
};
|
||||
|
||||
static short nfsv3err_remove[] = {
|
||||
static const short nfsv3err_remove[] = {
|
||||
NFSERR_IO,
|
||||
NFSERR_NOENT,
|
||||
NFSERR_IO,
|
||||
@ -366,7 +368,7 @@ static short nfsv3err_remove[] = {
|
||||
0,
|
||||
};
|
||||
|
||||
static short nfsv3err_rmdir[] = {
|
||||
static const short nfsv3err_rmdir[] = {
|
||||
NFSERR_IO,
|
||||
NFSERR_NOENT,
|
||||
NFSERR_IO,
|
||||
@ -384,7 +386,7 @@ static short nfsv3err_rmdir[] = {
|
||||
0,
|
||||
};
|
||||
|
||||
static short nfsv3err_rename[] = {
|
||||
static const short nfsv3err_rename[] = {
|
||||
NFSERR_IO,
|
||||
NFSERR_NOENT,
|
||||
NFSERR_IO,
|
||||
@ -407,7 +409,7 @@ static short nfsv3err_rename[] = {
|
||||
0,
|
||||
};
|
||||
|
||||
static short nfsv3err_link[] = {
|
||||
static const short nfsv3err_link[] = {
|
||||
NFSERR_IO,
|
||||
NFSERR_IO,
|
||||
NFSERR_ACCES,
|
||||
@ -427,7 +429,7 @@ static short nfsv3err_link[] = {
|
||||
0,
|
||||
};
|
||||
|
||||
static short nfsv3err_readdir[] = {
|
||||
static const short nfsv3err_readdir[] = {
|
||||
NFSERR_IO,
|
||||
NFSERR_IO,
|
||||
NFSERR_ACCES,
|
||||
@ -440,7 +442,7 @@ static short nfsv3err_readdir[] = {
|
||||
0,
|
||||
};
|
||||
|
||||
static short nfsv3err_readdirplus[] = {
|
||||
static const short nfsv3err_readdirplus[] = {
|
||||
NFSERR_IO,
|
||||
NFSERR_IO,
|
||||
NFSERR_ACCES,
|
||||
@ -454,7 +456,7 @@ static short nfsv3err_readdirplus[] = {
|
||||
0,
|
||||
};
|
||||
|
||||
static short nfsv3err_fsstat[] = {
|
||||
static const short nfsv3err_fsstat[] = {
|
||||
NFSERR_IO,
|
||||
NFSERR_IO,
|
||||
NFSERR_STALE,
|
||||
@ -463,7 +465,7 @@ static short nfsv3err_fsstat[] = {
|
||||
0,
|
||||
};
|
||||
|
||||
static short nfsv3err_fsinfo[] = {
|
||||
static const short nfsv3err_fsinfo[] = {
|
||||
NFSERR_STALE,
|
||||
NFSERR_STALE,
|
||||
NFSERR_BADHANDLE,
|
||||
@ -471,7 +473,7 @@ static short nfsv3err_fsinfo[] = {
|
||||
0,
|
||||
};
|
||||
|
||||
static short nfsv3err_pathconf[] = {
|
||||
static const short nfsv3err_pathconf[] = {
|
||||
NFSERR_STALE,
|
||||
NFSERR_STALE,
|
||||
NFSERR_BADHANDLE,
|
||||
@ -479,7 +481,7 @@ static short nfsv3err_pathconf[] = {
|
||||
0,
|
||||
};
|
||||
|
||||
static short nfsv3err_commit[] = {
|
||||
static const short nfsv3err_commit[] = {
|
||||
NFSERR_IO,
|
||||
NFSERR_IO,
|
||||
NFSERR_STALE,
|
||||
@ -488,7 +490,7 @@ static short nfsv3err_commit[] = {
|
||||
0,
|
||||
};
|
||||
|
||||
static short *nfsrv_v3errmap[] = {
|
||||
static const short *nfsrv_v3errmap[] = {
|
||||
nfsv3err_null,
|
||||
nfsv3err_getattr,
|
||||
nfsv3err_setattr,
|
||||
@ -520,8 +522,11 @@ static int
|
||||
nfsrv_modevent(module_t mod, int type, void *data)
|
||||
{
|
||||
|
||||
NET_LOCK_GIANT();
|
||||
|
||||
switch (type) {
|
||||
case MOD_LOAD:
|
||||
mtx_init(&nfsd_mtx, "nfsd_mtx", NULL, MTX_DEF);
|
||||
nfsrv_rpc_vers = txdr_unsigned(RPC_VER2);
|
||||
nfsrv_rpc_call = txdr_unsigned(RPC_CALL);
|
||||
nfsrv_rpc_reply = txdr_unsigned(RPC_REPLY);
|
||||
@ -538,10 +543,11 @@ nfsrv_modevent(module_t mod, int type, void *data)
|
||||
if (nfsrv_ticks < 1)
|
||||
nfsrv_ticks = 1;
|
||||
|
||||
nfsrv_init(0); /* Init server data structures */
|
||||
nfsrv_initcache(); /* Init the server request cache */
|
||||
|
||||
NFSD_LOCK();
|
||||
nfsrv_init(0); /* Init server data structures */
|
||||
callout_init(&nfsrv_callout, 0);
|
||||
NFSD_UNLOCK();
|
||||
nfsrv_timer(0);
|
||||
|
||||
nfs_prev_nfssvc_sy_narg = sysent[SYS_nfssvc].sy_narg;
|
||||
@ -557,8 +563,10 @@ nfsrv_modevent(module_t mod, int type, void *data)
|
||||
callout_stop(&nfsrv_callout);
|
||||
sysent[SYS_nfssvc].sy_narg = nfs_prev_nfssvc_sy_narg;
|
||||
sysent[SYS_nfssvc].sy_call = nfs_prev_nfssvc_sy_call;
|
||||
mtx_destroy(&nfsd_mtx);
|
||||
break;
|
||||
}
|
||||
NET_UNLOCK_GIANT();
|
||||
return 0;
|
||||
}
|
||||
static moduledata_t nfsserver_mod = {
|
||||
@ -603,6 +611,10 @@ nfs_namei(struct nameidata *ndp, fhandle_t *fhp, int len,
|
||||
struct componentname *cnp = &ndp->ni_cnd;
|
||||
int lockleaf = (cnp->cn_flags & LOCKLEAF) != 0;
|
||||
|
||||
NFSD_LOCK_ASSERT();
|
||||
NFSD_UNLOCK();
|
||||
mtx_lock(&Giant); /* VFS */
|
||||
|
||||
*retdirp = NULL;
|
||||
cnp->cn_flags |= NOMACCHECK;
|
||||
cnp->cn_pnbuf = uma_zalloc(namei_zone, M_WAITOK);
|
||||
@ -646,8 +658,12 @@ nfs_namei(struct nameidata *ndp, fhandle_t *fhp, int len,
|
||||
/*
|
||||
* Extract and set starting directory.
|
||||
*/
|
||||
mtx_unlock(&Giant); /* VFS */
|
||||
NFSD_LOCK();
|
||||
error = nfsrv_fhtovp(fhp, FALSE, &dp, ndp->ni_cnd.cn_cred, slp,
|
||||
nam, &rdonly, pubflag);
|
||||
NFSD_UNLOCK();
|
||||
mtx_lock(&Giant); /* VFS */
|
||||
if (error)
|
||||
goto out;
|
||||
if (dp->v_type != VDIR) {
|
||||
@ -868,6 +884,8 @@ nfs_namei(struct nameidata *ndp, fhandle_t *fhp, int len,
|
||||
} else if ((ndp->ni_cnd.cn_flags & (WANTPARENT|LOCKPARENT)) == 0) {
|
||||
ndp->ni_dvp = NULL;
|
||||
}
|
||||
mtx_unlock(&Giant); /* VFS */
|
||||
NFSD_LOCK();
|
||||
return (error);
|
||||
}
|
||||
|
||||
@ -882,6 +900,8 @@ nfsm_adj(struct mbuf *mp, int len, int nul)
|
||||
int count, i;
|
||||
char *cp;
|
||||
|
||||
NFSD_LOCK_DONTCARE();
|
||||
|
||||
/*
|
||||
* Trim from tail. Scan the mbuf chain,
|
||||
* calculating its length and finding the last mbuf.
|
||||
@ -1043,6 +1063,8 @@ nfsrv_fhtovp(fhandle_t *fhp, int lockflag, struct vnode **vpp,
|
||||
struct sockaddr_int *saddr;
|
||||
#endif
|
||||
|
||||
NFSD_LOCK_ASSERT();
|
||||
|
||||
*vpp = NULL;
|
||||
|
||||
if (nfs_ispublicfh(fhp)) {
|
||||
@ -1054,12 +1076,14 @@ nfsrv_fhtovp(fhandle_t *fhp, int lockflag, struct vnode **vpp,
|
||||
mp = vfs_getvfs(&fhp->fh_fsid);
|
||||
if (!mp)
|
||||
return (ESTALE);
|
||||
NFSD_UNLOCK();
|
||||
mtx_lock(&Giant); /* VFS */
|
||||
error = VFS_CHECKEXP(mp, nam, &exflags, &credanon);
|
||||
if (error)
|
||||
return (error);
|
||||
goto out;
|
||||
error = VFS_FHTOVP(mp, &fhp->fh_fid, vpp);
|
||||
if (error)
|
||||
return (error);
|
||||
goto out;
|
||||
#ifdef MNT_EXNORESPORT
|
||||
if (!(exflags & (MNT_EXNORESPORT|MNT_EXPUBLIC))) {
|
||||
saddr = (struct sockaddr_in *)nam;
|
||||
@ -1069,7 +1093,7 @@ nfsrv_fhtovp(fhandle_t *fhp, int lockflag, struct vnode **vpp,
|
||||
ntohs(saddr->sin_port) >= IPPORT_RESERVED) {
|
||||
vput(*vpp);
|
||||
*vpp = NULL;
|
||||
return (NFSERR_AUTHERR | AUTH_TOOWEAK);
|
||||
error = NFSERR_AUTHERR | AUTH_TOOWEAK;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
@ -1091,7 +1115,10 @@ nfsrv_fhtovp(fhandle_t *fhp, int lockflag, struct vnode **vpp,
|
||||
|
||||
if (!lockflag)
|
||||
VOP_UNLOCK(*vpp, 0, td);
|
||||
return (0);
|
||||
out:
|
||||
mtx_unlock(&Giant); /* VFS */
|
||||
NFSD_LOCK();
|
||||
return (error);
|
||||
}
|
||||
|
||||
|
||||
@ -1106,6 +1133,8 @@ nfs_ispublicfh(fhandle_t *fhp)
|
||||
char *cp = (char *)fhp;
|
||||
int i;
|
||||
|
||||
NFSD_LOCK_DONTCARE();
|
||||
|
||||
for (i = 0; i < NFSX_V3FH; i++)
|
||||
if (*cp++ != 0)
|
||||
return (FALSE);
|
||||
@ -1124,6 +1153,8 @@ netaddr_match(int family, union nethostaddr *haddr, struct sockaddr *nam)
|
||||
{
|
||||
struct sockaddr_in *inetaddr;
|
||||
|
||||
NFSD_LOCK_DONTCARE();
|
||||
|
||||
switch (family) {
|
||||
case AF_INET:
|
||||
inetaddr = (struct sockaddr_in *)nam;
|
||||
@ -1159,9 +1190,11 @@ netaddr_match(int family, union nethostaddr *haddr, struct sockaddr *nam)
|
||||
int
|
||||
nfsrv_errmap(struct nfsrv_descript *nd, int err)
|
||||
{
|
||||
short *defaulterrp, *errp;
|
||||
const short *defaulterrp, *errp;
|
||||
int e;
|
||||
|
||||
NFSD_LOCK_DONTCARE();
|
||||
|
||||
if (nd->nd_flag & ND_NFSV3) {
|
||||
if (nd->nd_procnum <= NFSPROC_COMMIT) {
|
||||
errp = defaulterrp = nfsrv_v3errmap[nd->nd_procnum];
|
||||
@ -1187,6 +1220,9 @@ int
|
||||
nfsrv_object_create(struct vnode *vp)
|
||||
{
|
||||
|
||||
GIANT_REQUIRED;
|
||||
NFSD_UNLOCK_ASSERT();
|
||||
|
||||
if (vp == NULL || vp->v_type != VREG)
|
||||
return (1);
|
||||
return (vfs_object_create(vp, curthread, curthread->td_ucred));
|
||||
@ -1203,6 +1239,8 @@ nfsrvw_sort(gid_t *list, int num)
|
||||
int i, j;
|
||||
gid_t v;
|
||||
|
||||
NFSD_LOCK_DONTCARE();
|
||||
|
||||
/* Insertion sort. */
|
||||
for (i = 1; i < num; i++) {
|
||||
v = list[i];
|
||||
@ -1221,6 +1259,8 @@ nfsrv_setcred(struct ucred *incred, struct ucred *outcred)
|
||||
{
|
||||
int i;
|
||||
|
||||
NFSD_LOCK_DONTCARE();
|
||||
|
||||
bzero((caddr_t)outcred, sizeof (struct ucred));
|
||||
outcred->cr_ref = 1;
|
||||
outcred->cr_uid = incred->cr_uid;
|
||||
@ -1239,6 +1279,8 @@ nfsm_srvfhtom_xx(fhandle_t *f, int v3, struct mbuf **mb, caddr_t *bpos)
|
||||
{
|
||||
u_int32_t *tl;
|
||||
|
||||
NFSD_LOCK_DONTCARE();
|
||||
|
||||
if (v3) {
|
||||
tl = nfsm_build_xx(NFSX_UNSIGNED + NFSX_V3FH, mb, bpos);
|
||||
*tl++ = txdr_unsigned(NFSX_V3FH);
|
||||
@ -1265,6 +1307,8 @@ nfsm_srvstrsiz_xx(int *s, int m, struct mbuf **md, caddr_t *dpos)
|
||||
{
|
||||
u_int32_t *tl;
|
||||
|
||||
NFSD_LOCK_DONTCARE();
|
||||
|
||||
tl = nfsm_dissect_xx(NFSX_UNSIGNED, md, dpos);
|
||||
if (tl == NULL)
|
||||
return EBADRPC;
|
||||
@ -1279,6 +1323,8 @@ nfsm_srvnamesiz_xx(int *s, int m, struct mbuf **md, caddr_t *dpos)
|
||||
{
|
||||
u_int32_t *tl;
|
||||
|
||||
NFSD_LOCK_DONTCARE();
|
||||
|
||||
tl = nfsm_dissect_xx(NFSX_UNSIGNED, md, dpos);
|
||||
if (tl == NULL)
|
||||
return EBADRPC;
|
||||
@ -1292,15 +1338,26 @@ nfsm_srvnamesiz_xx(int *s, int m, struct mbuf **md, caddr_t *dpos)
|
||||
|
||||
void
|
||||
nfsm_clget_xx(u_int32_t **tl, struct mbuf *mb, struct mbuf **mp,
|
||||
char **bp, char **be, caddr_t bpos)
|
||||
char **bp, char **be, caddr_t bpos, int droplock)
|
||||
{
|
||||
struct mbuf *nmp;
|
||||
|
||||
NFSD_LOCK_DONTCARE();
|
||||
|
||||
if (droplock)
|
||||
NFSD_LOCK_ASSERT();
|
||||
else
|
||||
NFSD_UNLOCK_ASSERT();
|
||||
|
||||
if (*bp >= *be) {
|
||||
if (*mp == mb)
|
||||
(*mp)->m_len += *bp - bpos;
|
||||
if (droplock)
|
||||
NFSD_UNLOCK();
|
||||
MGET(nmp, M_TRYWAIT, MT_DATA);
|
||||
MCLGET(nmp, M_TRYWAIT);
|
||||
if (droplock)
|
||||
NFSD_LOCK();
|
||||
nmp->m_len = NFSMSIZ(nmp);
|
||||
(*mp)->m_next = nmp;
|
||||
*mp = nmp;
|
||||
@ -1317,6 +1374,8 @@ nfsm_srvmtofh_xx(fhandle_t *f, struct nfsrv_descript *nfsd, struct mbuf **md,
|
||||
u_int32_t *tl;
|
||||
int fhlen;
|
||||
|
||||
NFSD_LOCK_DONTCARE();
|
||||
|
||||
if (nfsd->nd_flag & ND_NFSV3) {
|
||||
tl = nfsm_dissect_xx(NFSX_UNSIGNED, md, dpos);
|
||||
if (tl == NULL)
|
||||
@ -1343,6 +1402,8 @@ nfsm_srvsattr_xx(struct vattr *a, struct mbuf **md, caddr_t *dpos)
|
||||
{
|
||||
u_int32_t *tl;
|
||||
|
||||
NFSD_LOCK_DONTCARE();
|
||||
|
||||
tl = nfsm_dissect_xx(NFSX_UNSIGNED, md, dpos);
|
||||
if (tl == NULL)
|
||||
return EBADRPC;
|
||||
|
@ -142,11 +142,14 @@ nfssvc(struct thread *td, struct nfssvc_args *uap)
|
||||
error = suser(td);
|
||||
if (error)
|
||||
return (error);
|
||||
mtx_lock(&Giant);
|
||||
NET_LOCK_GIANT();
|
||||
NFSD_LOCK();
|
||||
while (nfssvc_sockhead_flag & SLP_INIT) {
|
||||
nfssvc_sockhead_flag |= SLP_WANTINIT;
|
||||
(void) tsleep(&nfssvc_sockhead, PSOCK, "nfsd init", 0);
|
||||
(void) msleep(&nfssvc_sockhead, &nfsd_mtx, PSOCK,
|
||||
"nfsd init", 0);
|
||||
}
|
||||
NFSD_UNLOCK();
|
||||
if (uap->flag & NFSSVC_ADDSOCK) {
|
||||
error = copyin(uap->argp, (caddr_t)&nfsdarg, sizeof(nfsdarg));
|
||||
if (error)
|
||||
@ -180,7 +183,7 @@ nfssvc(struct thread *td, struct nfssvc_args *uap)
|
||||
if (error == EINTR || error == ERESTART)
|
||||
error = 0;
|
||||
done2:
|
||||
mtx_unlock(&Giant);
|
||||
NET_UNLOCK_GIANT();
|
||||
return (error);
|
||||
}
|
||||
|
||||
@ -195,10 +198,14 @@ nfssvc_addsock(struct file *fp, struct sockaddr *mynam, struct thread *td)
|
||||
struct socket *so;
|
||||
int error, s;
|
||||
|
||||
GIANT_REQUIRED; /* XXX until socket locking done */
|
||||
NET_ASSERT_GIANT();
|
||||
|
||||
so = fp->f_data;
|
||||
#if 0
|
||||
/*
|
||||
* XXXRW: If this code is ever enabled, there's a race when running
|
||||
* MPSAFE.
|
||||
*/
|
||||
tslp = NULL;
|
||||
/*
|
||||
* Add it to the list, as required.
|
||||
@ -263,12 +270,16 @@ nfssvc_addsock(struct file *fp, struct sockaddr *mynam, struct thread *td)
|
||||
malloc(sizeof (struct nfssvc_sock), M_NFSSVC,
|
||||
M_WAITOK | M_ZERO);
|
||||
STAILQ_INIT(&slp->ns_rec);
|
||||
NFSD_LOCK();
|
||||
TAILQ_INSERT_TAIL(&nfssvc_sockhead, slp, ns_chain);
|
||||
|
||||
slp->ns_so = so;
|
||||
slp->ns_nam = mynam;
|
||||
fhold(fp);
|
||||
slp->ns_fp = fp;
|
||||
/*
|
||||
* XXXRW: Socket locking here?
|
||||
*/
|
||||
s = splnet();
|
||||
so->so_upcallarg = (caddr_t)slp;
|
||||
so->so_upcall = nfsrv_rcv;
|
||||
@ -276,6 +287,7 @@ nfssvc_addsock(struct file *fp, struct sockaddr *mynam, struct thread *td)
|
||||
slp->ns_flag = (SLP_VALID | SLP_NEEDQ);
|
||||
nfsrv_wakenfsd(slp);
|
||||
splx(s);
|
||||
NFSD_UNLOCK();
|
||||
return (0);
|
||||
}
|
||||
|
||||
@ -295,6 +307,8 @@ nfssvc_nfsd(struct thread *td)
|
||||
int procrastinate;
|
||||
u_quad_t cur_usec;
|
||||
|
||||
NET_ASSERT_GIANT();
|
||||
|
||||
#ifndef nolint
|
||||
cacherep = RC_DOIT;
|
||||
writes_todo = 0;
|
||||
@ -302,6 +316,8 @@ nfssvc_nfsd(struct thread *td)
|
||||
nfsd = (struct nfsd *)
|
||||
malloc(sizeof (struct nfsd), M_NFSD, M_WAITOK | M_ZERO);
|
||||
s = splnet();
|
||||
NFSD_LOCK();
|
||||
|
||||
nfsd->nfsd_td = td;
|
||||
TAILQ_INSERT_TAIL(&nfsd_head, nfsd, nfsd_chain);
|
||||
nfsrv_numnfsd++;
|
||||
@ -315,8 +331,8 @@ nfssvc_nfsd(struct thread *td)
|
||||
(nfsd_head_flag & NFSD_CHECKSLP) == 0) {
|
||||
nfsd->nfsd_flag |= NFSD_WAITING;
|
||||
nfsd_waiting++;
|
||||
error = tsleep(nfsd, PSOCK | PCATCH,
|
||||
"-", 0);
|
||||
error = msleep(nfsd, &nfsd_mtx,
|
||||
PSOCK | PCATCH, "-", 0);
|
||||
nfsd_waiting--;
|
||||
if (error)
|
||||
goto done;
|
||||
@ -343,8 +359,10 @@ nfssvc_nfsd(struct thread *td)
|
||||
else if (slp->ns_flag & SLP_NEEDQ) {
|
||||
slp->ns_flag &= ~SLP_NEEDQ;
|
||||
(void) nfs_slplock(slp, 1);
|
||||
NFSD_UNLOCK();
|
||||
nfsrv_rcv(slp->ns_so, (caddr_t)slp,
|
||||
M_TRYWAIT);
|
||||
NFSD_LOCK();
|
||||
nfs_slpunlock(slp);
|
||||
}
|
||||
error = nfsrv_dorec(slp, nfsd, &nd);
|
||||
@ -458,6 +476,7 @@ nfssvc_nfsd(struct thread *td)
|
||||
nd->nd_mrep = NULL;
|
||||
/* FALLTHROUGH */
|
||||
case RC_REPLY:
|
||||
NFSD_UNLOCK();
|
||||
siz = m_length(mreq, NULL);
|
||||
if (siz <= 0 || siz > NFS_MAXPACKET) {
|
||||
printf("mbuf siz=%d\n",siz);
|
||||
@ -474,11 +493,16 @@ nfssvc_nfsd(struct thread *td)
|
||||
M_PREPEND(m, NFSX_UNSIGNED, M_TRYWAIT);
|
||||
*mtod(m, u_int32_t *) = htonl(0x80000000 | siz);
|
||||
}
|
||||
NFSD_LOCK();
|
||||
if (slp->ns_so->so_proto->pr_flags & PR_CONNREQUIRED)
|
||||
(void) nfs_slplock(slp, 1);
|
||||
if (slp->ns_flag & SLP_VALID)
|
||||
if (slp->ns_flag & SLP_VALID) {
|
||||
NFSD_UNLOCK();
|
||||
NET_LOCK_GIANT();
|
||||
error = nfsrv_send(slp->ns_so, nd->nd_nam2, m);
|
||||
else {
|
||||
NET_UNLOCK_GIANT();
|
||||
NFSD_LOCK();
|
||||
} else {
|
||||
error = EPIPE;
|
||||
m_freem(m);
|
||||
}
|
||||
@ -535,6 +559,7 @@ nfssvc_nfsd(struct thread *td)
|
||||
free((caddr_t)nfsd, M_NFSD);
|
||||
if (--nfsrv_numnfsd == 0)
|
||||
nfsrv_init(TRUE); /* Reinitialize everything */
|
||||
NFSD_UNLOCK();
|
||||
return (error);
|
||||
}
|
||||
|
||||
@ -554,9 +579,18 @@ nfsrv_zapsock(struct nfssvc_sock *slp)
|
||||
struct nfsrv_rec *rec;
|
||||
int s;
|
||||
|
||||
NET_ASSERT_GIANT();
|
||||
NFSD_LOCK_ASSERT();
|
||||
|
||||
/*
|
||||
* XXXRW: By clearing all flags, other threads/etc should ignore
|
||||
* this slp and we can safely release nfsd_mtx so we can clean
|
||||
* up the slp safely.
|
||||
*/
|
||||
slp->ns_flag &= ~SLP_ALLFLAGS;
|
||||
fp = slp->ns_fp;
|
||||
if (fp) {
|
||||
NFSD_UNLOCK();
|
||||
slp->ns_fp = NULL;
|
||||
so = slp->ns_so;
|
||||
so->so_rcv.sb_flags &= ~SB_UPCALL;
|
||||
@ -564,6 +598,7 @@ nfsrv_zapsock(struct nfssvc_sock *slp)
|
||||
so->so_upcallarg = NULL;
|
||||
soshutdown(so, SHUT_RDWR);
|
||||
closef(fp, NULL);
|
||||
NFSD_LOCK();
|
||||
if (slp->ns_nam)
|
||||
FREE(slp->ns_nam, M_SONAME);
|
||||
m_freem(slp->ns_raw);
|
||||
@ -593,6 +628,8 @@ void
|
||||
nfsrv_slpderef(struct nfssvc_sock *slp)
|
||||
{
|
||||
|
||||
NFSD_LOCK_ASSERT();
|
||||
|
||||
if (--(slp->ns_sref) == 0 && (slp->ns_flag & SLP_VALID) == 0) {
|
||||
TAILQ_REMOVE(&nfssvc_sockhead, slp, ns_chain);
|
||||
free((caddr_t)slp, M_NFSSVC);
|
||||
@ -601,17 +638,22 @@ nfsrv_slpderef(struct nfssvc_sock *slp)
|
||||
|
||||
/*
|
||||
* Lock a socket against others.
|
||||
*
|
||||
* XXXRW: Wait argument is always 1 in the caller. Replace with a real
|
||||
* sleep lock?
|
||||
*/
|
||||
int
|
||||
nfs_slplock(struct nfssvc_sock *slp, int wait)
|
||||
{
|
||||
int *statep = &slp->ns_solock;
|
||||
|
||||
NFSD_LOCK_ASSERT();
|
||||
|
||||
if (!wait && (*statep & NFSRV_SNDLOCK))
|
||||
return(0); /* already locked, fail */
|
||||
while (*statep & NFSRV_SNDLOCK) {
|
||||
*statep |= NFSRV_WANTSND;
|
||||
(void) tsleep(statep, PZERO - 1, "nfsslplck", 0);
|
||||
(void) msleep(statep, &nfsd_mtx, PZERO - 1, "nfsslplck", 0);
|
||||
}
|
||||
*statep |= NFSRV_SNDLOCK;
|
||||
return (1);
|
||||
@ -625,6 +667,8 @@ nfs_slpunlock(struct nfssvc_sock *slp)
|
||||
{
|
||||
int *statep = &slp->ns_solock;
|
||||
|
||||
NFSD_LOCK_ASSERT();
|
||||
|
||||
if ((*statep & NFSRV_SNDLOCK) == 0)
|
||||
panic("nfs slpunlock");
|
||||
*statep &= ~NFSRV_SNDLOCK;
|
||||
@ -644,6 +688,9 @@ nfsrv_init(int terminating)
|
||||
{
|
||||
struct nfssvc_sock *slp, *nslp;
|
||||
|
||||
NET_ASSERT_GIANT();
|
||||
NFSD_LOCK_ASSERT();
|
||||
|
||||
if (nfssvc_sockhead_flag & SLP_INIT)
|
||||
panic("nfsd init");
|
||||
nfssvc_sockhead_flag |= SLP_INIT;
|
||||
|
@ -160,7 +160,7 @@ void nfsm_srvfhtom_xx(fhandle_t *f, int v3, struct mbuf **mb,
|
||||
caddr_t *bpos);
|
||||
void nfsm_srvpostop_fh_xx(fhandle_t *f, struct mbuf **mb, caddr_t *bpos);
|
||||
void nfsm_clget_xx(u_int32_t **tl, struct mbuf *mb, struct mbuf **mp,
|
||||
char **bp, char **be, caddr_t bpos);
|
||||
char **bp, char **be, caddr_t bpos, int droplock);
|
||||
|
||||
#define nfsm_srvfhtom(f, v3) \
|
||||
nfsm_srvfhtom_xx((f), (v3), &mb, &bpos)
|
||||
@ -178,6 +178,9 @@ void nfsm_clget_xx(u_int32_t **tl, struct mbuf *mb, struct mbuf **mp,
|
||||
nfsm_srvfattr(nfsd, (a), (f))
|
||||
|
||||
#define nfsm_clget \
|
||||
nfsm_clget_xx(&tl, mb, &mp, &bp, &be, bpos)
|
||||
nfsm_clget_xx(&tl, mb, &mp, &bp, &be, bpos, 1)
|
||||
|
||||
#define nfsm_clget_nolock \
|
||||
nfsm_clget_xx(&tl, mb, &mp, &bp, &be, bpos, 0)
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user