aboutsummaryrefslogtreecommitdiff
path: root/sys/nfsserver
diff options
context:
space:
mode:
authorKenneth D. Merry <ken@FreeBSD.org>2013-04-17 21:00:22 +0000
committerKenneth D. Merry <ken@FreeBSD.org>2013-04-17 21:00:22 +0000
commitd96b98a360cf04d0c9fe927d8411e83eb133cacd (patch)
treef48cf0345399896740206e7b67430a17c8fdc737 /sys/nfsserver
parent6272779b2f1bce36f5dba57fdc5f7743bd5d50d7 (diff)
Notes
Diffstat (limited to 'sys/nfsserver')
-rw-r--r--sys/nfsserver/nfs_fha.c314
-rw-r--r--sys/nfsserver/nfs_fha.h86
-rw-r--r--sys/nfsserver/nfs_fha_old.c241
-rw-r--r--sys/nfsserver/nfs_fha_old.h38
-rw-r--r--sys/nfsserver/nfs_srvkrpc.c3
5 files changed, 500 insertions, 182 deletions
diff --git a/sys/nfsserver/nfs_fha.c b/sys/nfsserver/nfs_fha.c
index 2dd20c131cd65..08f2c8f0b7f67 100644
--- a/sys/nfsserver/nfs_fha.c
+++ b/sys/nfsserver/nfs_fha.c
@@ -38,134 +38,103 @@ __FBSDID("$FreeBSD$");
#include <sys/sbuf.h>
#include <rpc/rpc.h>
-#include <nfs/xdr_subs.h>
-#include <nfs/nfsproto.h>
-#include <nfsserver/nfs.h>
-#include <nfsserver/nfsm_subs.h>
#include <nfsserver/nfs_fha.h>
static MALLOC_DEFINE(M_NFS_FHA, "NFS FHA", "NFS FHA");
-/* Sysctl defaults. */
-#define DEF_BIN_SHIFT 18 /* 256k */
-#define DEF_MAX_NFSDS_PER_FH 8
-#define DEF_MAX_REQS_PER_NFSD 4
-
-struct fha_ctls {
- u_int32_t bin_shift;
- u_int32_t max_nfsds_per_fh;
- u_int32_t max_reqs_per_nfsd;
-} fha_ctls;
-
-struct sysctl_ctx_list fha_clist;
-
-SYSCTL_DECL(_vfs_nfsrv);
-SYSCTL_DECL(_vfs_nfsrv_fha);
-
-/* Static sysctl node for the fha from the top-level vfs_nfsrv node. */
-SYSCTL_NODE(_vfs_nfsrv, OID_AUTO, fha, CTLFLAG_RD, 0, "fha node");
-
-/* This is the global structure that represents the state of the fha system. */
-static struct fha_global {
- struct fha_hash_entry_list *hashtable;
- u_long hashmask;
-} g_fha;
-
/*
- * These are the entries in the filehandle hash. They talk about a specific
- * file, requests against which are being handled by one or more nfsds. We
- * keep a chain of nfsds against the file. We only have more than one if reads
- * are ongoing, and then only if the reads affect disparate regions of the
- * file.
- *
- * In general, we want to assign a new request to an existing nfsd if it is
- * going to contend with work happening already on that nfsd, or if the
- * operation is a read and the nfsd is already handling a proximate read. We
- * do this to avoid jumping around in the read stream unnecessarily, and to
- * avoid contention between threads over single files.
+ * XXX need to commonize definitions between old and new NFS code. Define
+ * this here so we don't include one nfsproto.h over the other.
*/
-struct fha_hash_entry {
- LIST_ENTRY(fha_hash_entry) link;
- u_int64_t fh;
- u_int16_t num_reads;
- u_int16_t num_writes;
- u_int8_t num_threads;
- struct svcthread_list threads;
-};
-LIST_HEAD(fha_hash_entry_list, fha_hash_entry);
-
-/* A structure used for passing around data internally. */
-struct fha_info {
- u_int64_t fh;
- off_t offset;
- int locktype;
-};
-
-static int fhe_stats_sysctl(SYSCTL_HANDLER_ARGS);
+#define NFS_PROG 100003
-static void
-nfs_fha_init(void *foo)
+void
+fha_init(struct fha_params *softc)
{
+ char tmpstr[128];
/*
* A small hash table to map filehandles to fha_hash_entry
* structures.
*/
- g_fha.hashtable = hashinit(256, M_NFS_FHA, &g_fha.hashmask);
+ softc->g_fha.hashtable = hashinit(256, M_NFS_FHA,
+ &softc->g_fha.hashmask);
/*
- * Initialize the sysctl context list for the fha module.
+ * Set the default tuning parameters.
*/
- sysctl_ctx_init(&fha_clist);
+ softc->ctls.enable = FHA_DEF_ENABLE;
+ softc->ctls.bin_shift = FHA_DEF_BIN_SHIFT;
+ softc->ctls.max_nfsds_per_fh = FHA_DEF_MAX_NFSDS_PER_FH;
+ softc->ctls.max_reqs_per_nfsd = FHA_DEF_MAX_REQS_PER_NFSD;
- fha_ctls.bin_shift = DEF_BIN_SHIFT;
- fha_ctls.max_nfsds_per_fh = DEF_MAX_NFSDS_PER_FH;
- fha_ctls.max_reqs_per_nfsd = DEF_MAX_REQS_PER_NFSD;
+ /*
+ * Allow the user to override the defaults at boot time with
+ * tunables.
+ */
+ snprintf(tmpstr, sizeof(tmpstr), "vfs.%s.fha.enable",
+ softc->server_name);
+ TUNABLE_INT_FETCH(tmpstr, &softc->ctls.enable);
+ snprintf(tmpstr, sizeof(tmpstr), "vfs.%s.fha.bin_shift",
+ softc->server_name);
+ TUNABLE_INT_FETCH(tmpstr, &softc->ctls.bin_shift);
+ snprintf(tmpstr, sizeof(tmpstr), "vfs.%s.fha.max_nfsds_per_fh",
+ softc->server_name);
+ TUNABLE_INT_FETCH(tmpstr, &softc->ctls.max_nfsds_per_fh);
+ snprintf(tmpstr, sizeof(tmpstr), "vfs.%s.fha.max_reqs_per_nfsd",
+ softc->server_name);
+ TUNABLE_INT_FETCH(tmpstr, &softc->ctls.max_reqs_per_nfsd);
+
+ /*
+ * Add sysctls so the user can change the tuning parameters at
+ * runtime.
+ */
+ SYSCTL_ADD_UINT(&softc->sysctl_ctx, SYSCTL_CHILDREN(softc->sysctl_tree),
+ OID_AUTO, "enable", CTLFLAG_RW,
+ &softc->ctls.enable, 0, "Enable NFS File Handle Affinity (FHA)");
- SYSCTL_ADD_UINT(&fha_clist, SYSCTL_STATIC_CHILDREN(_vfs_nfsrv_fha),
+ SYSCTL_ADD_UINT(&softc->sysctl_ctx, SYSCTL_CHILDREN(softc->sysctl_tree),
OID_AUTO, "bin_shift", CTLFLAG_RW,
- &fha_ctls.bin_shift, 0, "For FHA reads, no two requests will "
+ &softc->ctls.bin_shift, 0, "For FHA reads, no two requests will "
"contend if they're 2^(bin_shift) bytes apart");
- SYSCTL_ADD_UINT(&fha_clist, SYSCTL_STATIC_CHILDREN(_vfs_nfsrv_fha),
+ SYSCTL_ADD_UINT(&softc->sysctl_ctx, SYSCTL_CHILDREN(softc->sysctl_tree),
OID_AUTO, "max_nfsds_per_fh", CTLFLAG_RW,
- &fha_ctls.max_nfsds_per_fh, 0, "Maximum nfsd threads that "
+ &softc->ctls.max_nfsds_per_fh, 0, "Maximum nfsd threads that "
"should be working on requests for the same file handle");
- SYSCTL_ADD_UINT(&fha_clist, SYSCTL_STATIC_CHILDREN(_vfs_nfsrv_fha),
+ SYSCTL_ADD_UINT(&softc->sysctl_ctx, SYSCTL_CHILDREN(softc->sysctl_tree),
OID_AUTO, "max_reqs_per_nfsd", CTLFLAG_RW,
- &fha_ctls.max_reqs_per_nfsd, 0, "Maximum requests that "
+ &softc->ctls.max_reqs_per_nfsd, 0, "Maximum requests that "
"single nfsd thread should be working on at any time");
- SYSCTL_ADD_OID(&fha_clist, SYSCTL_STATIC_CHILDREN(_vfs_nfsrv_fha),
+ SYSCTL_ADD_OID(&softc->sysctl_ctx, SYSCTL_CHILDREN(softc->sysctl_tree),
OID_AUTO, "fhe_stats", CTLTYPE_STRING | CTLFLAG_RD, 0, 0,
- fhe_stats_sysctl, "A", "");
+ softc->callbacks.fhe_stats_sysctl, "A", "");
+
}
-static void
-nfs_fha_uninit(void *foo)
+void
+fha_uninit(struct fha_params *softc)
{
-
- hashdestroy(g_fha.hashtable, M_NFS_FHA, g_fha.hashmask);
+ sysctl_ctx_free(&softc->sysctl_ctx);
+ hashdestroy(softc->g_fha.hashtable, M_NFS_FHA, softc->g_fha.hashmask);
}
-SYSINIT(nfs_fha, SI_SUB_ROOT_CONF, SI_ORDER_ANY, nfs_fha_init, NULL);
-SYSUNINIT(nfs_fha, SI_SUB_ROOT_CONF, SI_ORDER_ANY, nfs_fha_uninit, NULL);
-
/*
* This just specifies that offsets should obey affinity when within
* the same 1Mbyte (1<<20) chunk for the file (reads only for now).
*/
static void
-fha_extract_info(struct svc_req *req, struct fha_info *i)
+fha_extract_info(struct svc_req *req, struct fha_info *i,
+ struct fha_callbacks *cb)
{
struct mbuf *md;
- nfsfh_t fh;
+ fhandle_t fh;
caddr_t dpos;
static u_int64_t random_fh = 0;
int error;
int v3 = (req->rq_vers == 3);
- u_int32_t *tl;
rpcproc_t procnum;
/*
@@ -184,9 +153,12 @@ fha_extract_info(struct svc_req *req, struct fha_info *i)
*/
procnum = req->rq_proc;
if (!v3) {
- if (procnum > NFSV2PROC_STATFS)
+ rpcproc_t tmp_procnum;
+
+ tmp_procnum = cb->get_procnum(procnum);
+ if (tmp_procnum == -1)
goto out;
- procnum = nfsrv_nfsv3_procid[procnum];
+ procnum = tmp_procnum;
}
/*
@@ -195,71 +167,28 @@ fha_extract_info(struct svc_req *req, struct fha_info *i)
* only do this for reads today, but this may change when IFS supports
* efficient concurrent writes.
*/
- if (procnum == NFSPROC_FSSTAT ||
- procnum == NFSPROC_FSINFO ||
- procnum == NFSPROC_PATHCONF ||
- procnum == NFSPROC_NOOP ||
- procnum == NFSPROC_NULL)
+ if (cb->no_offset(procnum))
goto out;
- error = nfs_realign(&req->rq_args, M_NOWAIT);
+ error = cb->realign(&req->rq_args, M_NOWAIT);
if (error)
goto out;
md = req->rq_args;
dpos = mtod(md, caddr_t);
/* Grab the filehandle. */
- error = nfsm_srvmtofh_xx(&fh.fh_generic, v3, &md, &dpos);
+ error = cb->get_fh(&fh, v3, &md, &dpos);
if (error)
goto out;
- bcopy(fh.fh_generic.fh_fid.fid_data, &i->fh, sizeof(i->fh));
+ bcopy(fh.fh_fid.fid_data, &i->fh, sizeof(i->fh));
/* Content ourselves with zero offset for all but reads. */
- if (procnum != NFSPROC_READ)
- goto out;
+ if (cb->is_read(procnum) || cb->is_write(procnum))
+ cb->get_offset(&md, &dpos, v3, i);
- if (v3) {
- tl = nfsm_dissect_xx_nonblock(2 * NFSX_UNSIGNED, &md, &dpos);
- if (tl == NULL)
- goto out;
- i->offset = fxdr_hyper(tl);
- } else {
- tl = nfsm_dissect_xx_nonblock(NFSX_UNSIGNED, &md, &dpos);
- if (tl == NULL)
- goto out;
- i->offset = fxdr_unsigned(u_int32_t, *tl);
- }
- out:
- switch (procnum) {
- case NFSPROC_NULL:
- case NFSPROC_GETATTR:
- case NFSPROC_LOOKUP:
- case NFSPROC_ACCESS:
- case NFSPROC_READLINK:
- case NFSPROC_READ:
- case NFSPROC_READDIR:
- case NFSPROC_READDIRPLUS:
- i->locktype = LK_SHARED;
- break;
- case NFSPROC_SETATTR:
- case NFSPROC_WRITE:
- case NFSPROC_CREATE:
- case NFSPROC_MKDIR:
- case NFSPROC_SYMLINK:
- case NFSPROC_MKNOD:
- case NFSPROC_REMOVE:
- case NFSPROC_RMDIR:
- case NFSPROC_RENAME:
- case NFSPROC_LINK:
- case NFSPROC_FSSTAT:
- case NFSPROC_FSINFO:
- case NFSPROC_PATHCONF:
- case NFSPROC_COMMIT:
- case NFSPROC_NOOP:
- i->locktype = LK_EXCLUSIVE;
- break;
- }
+out:
+ cb->set_locktype(procnum, i);
}
static struct fha_hash_entry *
@@ -269,8 +198,8 @@ fha_hash_entry_new(u_int64_t fh)
e = malloc(sizeof(*e), M_NFS_FHA, M_WAITOK);
e->fh = fh;
- e->num_reads = 0;
- e->num_writes = 0;
+ e->num_rw = 0;
+ e->num_exclusive = 0;
e->num_threads = 0;
LIST_INIT(&e->threads);
@@ -281,7 +210,7 @@ static void
fha_hash_entry_destroy(struct fha_hash_entry *e)
{
- if (e->num_reads + e->num_writes)
+ if (e->num_rw + e->num_exclusive)
panic("nonempty fhe");
free(e, M_NFS_FHA);
}
@@ -295,11 +224,16 @@ fha_hash_entry_remove(struct fha_hash_entry *e)
}
static struct fha_hash_entry *
-fha_hash_entry_lookup(SVCPOOL *pool, u_int64_t fh)
+fha_hash_entry_lookup(struct fha_params *softc, u_int64_t fh)
{
+ SVCPOOL *pool;
+
+ pool = *softc->pool;
+
struct fha_hash_entry *fhe, *new_fhe;
- LIST_FOREACH(fhe, &g_fha.hashtable[fh % g_fha.hashmask], link)
+ LIST_FOREACH(fhe, &softc->g_fha.hashtable[fh % softc->g_fha.hashmask],
+ link)
if (fhe->fh == fh)
break;
@@ -310,12 +244,14 @@ fha_hash_entry_lookup(SVCPOOL *pool, u_int64_t fh)
mtx_lock(&pool->sp_lock);
/* Double-check to make sure we still need the new entry. */
- LIST_FOREACH(fhe, &g_fha.hashtable[fh % g_fha.hashmask], link)
+ LIST_FOREACH(fhe,
+ &softc->g_fha.hashtable[fh % softc->g_fha.hashmask], link)
if (fhe->fh == fh)
break;
if (!fhe) {
fhe = new_fhe;
- LIST_INSERT_HEAD(&g_fha.hashtable[fh % g_fha.hashmask],
+ LIST_INSERT_HEAD(
+ &softc->g_fha.hashtable[fh % softc->g_fha.hashmask],
fhe, link);
} else
fha_hash_entry_destroy(new_fhe);
@@ -348,9 +284,9 @@ fha_hash_entry_add_op(struct fha_hash_entry *fhe, int locktype, int count)
{
if (LK_EXCLUSIVE == locktype)
- fhe->num_writes += count;
+ fhe->num_exclusive += count;
else
- fhe->num_reads += count;
+ fhe->num_rw += count;
}
static SVCTHREAD *
@@ -371,22 +307,25 @@ get_idle_thread(SVCPOOL *pool)
* appropriate to handle this operation.
*/
SVCTHREAD *
-fha_hash_entry_choose_thread(SVCPOOL *pool, struct fha_hash_entry *fhe,
- struct fha_info *i, SVCTHREAD *this_thread);
+fha_hash_entry_choose_thread(struct fha_params *softc,
+ struct fha_hash_entry *fhe, struct fha_info *i, SVCTHREAD *this_thread);
SVCTHREAD *
-fha_hash_entry_choose_thread(SVCPOOL *pool, struct fha_hash_entry *fhe,
- struct fha_info *i, SVCTHREAD *this_thread)
+fha_hash_entry_choose_thread(struct fha_params *softc,
+ struct fha_hash_entry *fhe, struct fha_info *i, SVCTHREAD *this_thread)
{
SVCTHREAD *thread, *min_thread = NULL;
+ SVCPOOL *pool;
int req_count, min_count = 0;
off_t offset1, offset2;
+ pool = *softc->pool;
+
LIST_FOREACH(thread, &fhe->threads, st_alink) {
req_count = thread->st_reqcount;
/* If there are any writes in progress, use the first thread. */
- if (fhe->num_writes) {
+ if (fhe->num_exclusive) {
#if 0
ITRACE_CURPROC(ITRACE_NFS, ITRACE_INFO,
"fha: %p(%d)w", thread, req_count);
@@ -398,12 +337,15 @@ fha_hash_entry_choose_thread(SVCPOOL *pool, struct fha_hash_entry *fhe,
* Check for read locality, making sure that we won't
* exceed our per-thread load limit in the process.
*/
- offset1 = i->offset >> fha_ctls.bin_shift;
- offset2 = STAILQ_FIRST(&thread->st_reqs)->rq_p3
- >> fha_ctls.bin_shift;
- if (offset1 == offset2) {
- if ((fha_ctls.max_reqs_per_nfsd == 0) ||
- (req_count < fha_ctls.max_reqs_per_nfsd)) {
+ offset1 = i->offset;
+ offset2 = STAILQ_FIRST(&thread->st_reqs)->rq_p3;
+
+ if (((offset1 >= offset2)
+ && ((offset1 - offset2) < (1 << softc->ctls.bin_shift)))
+ || ((offset2 > offset1)
+ && ((offset2 - offset1) < (1 << softc->ctls.bin_shift)))) {
+ if ((softc->ctls.max_reqs_per_nfsd == 0) ||
+ (req_count < softc->ctls.max_reqs_per_nfsd)) {
#if 0
ITRACE_CURPROC(ITRACE_NFS, ITRACE_INFO,
"fha: %p(%d)r", thread, req_count);
@@ -432,8 +374,8 @@ fha_hash_entry_choose_thread(SVCPOOL *pool, struct fha_hash_entry *fhe,
* We didn't find a good match yet. See if we can add
* a new thread to this file handle entry's thread list.
*/
- if ((fha_ctls.max_nfsds_per_fh == 0) ||
- (fhe->num_threads < fha_ctls.max_nfsds_per_fh)) {
+ if ((softc->ctls.max_nfsds_per_fh == 0) ||
+ (fhe->num_threads < softc->ctls.max_nfsds_per_fh)) {
/*
* We can add a new thread, so try for an idle thread
* first, and fall back to this_thread if none are idle.
@@ -473,12 +415,20 @@ fha_hash_entry_choose_thread(SVCPOOL *pool, struct fha_hash_entry *fhe,
* handle it ourselves.
*/
SVCTHREAD *
-fha_assign(SVCTHREAD *this_thread, struct svc_req *req)
+fha_assign(SVCTHREAD *this_thread, struct svc_req *req,
+ struct fha_params *softc)
{
SVCPOOL *pool;
SVCTHREAD *thread;
struct fha_info i;
struct fha_hash_entry *fhe;
+ struct fha_callbacks *cb;
+
+ cb = &softc->callbacks;
+
+ /* Check to see whether we're enabled. */
+ if (softc->ctls.enable == 0)
+ return (this_thread);
/*
* Only do placement if this is an NFS request.
@@ -490,13 +440,13 @@ fha_assign(SVCTHREAD *this_thread, struct svc_req *req)
return (this_thread);
pool = req->rq_xprt->xp_pool;
- fha_extract_info(req, &i);
+ fha_extract_info(req, &i, cb);
/*
* We save the offset associated with this request for later
* nfsd matching.
*/
- fhe = fha_hash_entry_lookup(pool, i.fh);
+ fhe = fha_hash_entry_lookup(softc, i.fh);
req->rq_p1 = fhe;
req->rq_p2 = i.locktype;
req->rq_p3 = i.offset;
@@ -505,7 +455,7 @@ fha_assign(SVCTHREAD *this_thread, struct svc_req *req)
* Choose a thread, taking into consideration locality, thread load,
* and the number of threads already working on this file.
*/
- thread = fha_hash_entry_choose_thread(pool, fhe, &i, this_thread);
+ thread = fha_hash_entry_choose_thread(softc, fhe, &i, this_thread);
KASSERT(thread, ("fha_assign: NULL thread!"));
fha_hash_entry_add_op(fhe, i.locktype, 1);
@@ -532,33 +482,35 @@ fha_nd_complete(SVCTHREAD *thread, struct svc_req *req)
if (thread->st_reqcount == 0) {
fha_hash_entry_remove_thread(fhe, thread);
- if (0 == fhe->num_reads + fhe->num_writes)
+ if (0 == fhe->num_rw + fhe->num_exclusive)
fha_hash_entry_remove(fhe);
}
}
-extern SVCPOOL *nfsrv_pool;
-
-static int
-fhe_stats_sysctl(SYSCTL_HANDLER_ARGS)
+int
+fhe_stats_sysctl(SYSCTL_HANDLER_ARGS, struct fha_params *softc)
{
int error, count, i;
struct sbuf sb;
struct fha_hash_entry *fhe;
bool_t first = TRUE;
SVCTHREAD *thread;
+ SVCPOOL *pool;
sbuf_new(&sb, NULL, 4096, SBUF_FIXEDLEN);
- if (!nfsrv_pool) {
+ pool = NULL;
+
+ if (!*softc->pool) {
sbuf_printf(&sb, "NFSD not running\n");
goto out;
}
+ pool = *softc->pool;
- mtx_lock(&nfsrv_pool->sp_lock);
+ mtx_lock(&pool->sp_lock);
count = 0;
- for (i = 0; i <= g_fha.hashmask; i++)
- if (!LIST_EMPTY(&g_fha.hashtable[i]))
+ for (i = 0; i <= softc->g_fha.hashmask; i++)
+ if (!LIST_EMPTY(&softc->g_fha.hashtable[i]))
count++;
if (count == 0) {
@@ -566,18 +518,20 @@ fhe_stats_sysctl(SYSCTL_HANDLER_ARGS)
goto out;
}
- for (i = 0; i <= g_fha.hashmask; i++) {
- LIST_FOREACH(fhe, &g_fha.hashtable[i], link) {
+ for (i = 0; i <= softc->g_fha.hashmask; i++) {
+ LIST_FOREACH(fhe, &softc->g_fha.hashtable[i], link) {
sbuf_printf(&sb, "%sfhe %p: {\n", first ? "" : ", ", fhe);
sbuf_printf(&sb, " fh: %ju\n", (uintmax_t) fhe->fh);
- sbuf_printf(&sb, " num_reads: %d\n", fhe->num_reads);
- sbuf_printf(&sb, " num_writes: %d\n", fhe->num_writes);
+ sbuf_printf(&sb, " num_rw: %d\n", fhe->num_rw);
+ sbuf_printf(&sb, " num_exclusive: %d\n", fhe->num_exclusive);
sbuf_printf(&sb, " num_threads: %d\n", fhe->num_threads);
LIST_FOREACH(thread, &fhe->threads, st_alink) {
- sbuf_printf(&sb, " thread %p (count %d)\n",
- thread, thread->st_reqcount);
+ sbuf_printf(&sb, " thread %p offset %ju "
+ "(count %d)\n", thread,
+ STAILQ_FIRST(&thread->st_reqs)->rq_p3,
+ thread->st_reqcount);
}
sbuf_printf(&sb, "}");
@@ -592,8 +546,8 @@ fhe_stats_sysctl(SYSCTL_HANDLER_ARGS)
}
out:
- if (nfsrv_pool)
- mtx_unlock(&nfsrv_pool->sp_lock);
+ if (pool)
+ mtx_unlock(&pool->sp_lock);
sbuf_trim(&sb);
sbuf_finish(&sb);
error = sysctl_handle_string(oidp, sbuf_data(&sb), sbuf_len(&sb), req);
diff --git a/sys/nfsserver/nfs_fha.h b/sys/nfsserver/nfs_fha.h
index e7344ed121f71..ef5ada0f1df91 100644
--- a/sys/nfsserver/nfs_fha.h
+++ b/sys/nfsserver/nfs_fha.h
@@ -24,5 +24,89 @@
*/
/* $FreeBSD$ */
+#ifndef _NFS_FHA_H
+#define _NFS_FHA_H 1
+
+#ifdef _KERNEL
+
+/* Sysctl defaults. */
+#define FHA_DEF_ENABLE 1
+#define FHA_DEF_BIN_SHIFT 22 /* 4MB */
+#define FHA_DEF_MAX_NFSDS_PER_FH 8
+#define FHA_DEF_MAX_REQS_PER_NFSD 0 /* Unlimited */
+
+/* This is the global structure that represents the state of the fha system. */
+struct fha_global {
+ struct fha_hash_entry_list *hashtable;
+ u_long hashmask;
+};
+
+struct fha_ctls {
+ int enable;
+ uint32_t bin_shift;
+ uint32_t max_nfsds_per_fh;
+ uint32_t max_reqs_per_nfsd;
+};
+
+/*
+ * These are the entries in the filehandle hash. They talk about a specific
+ * file, requests against which are being handled by one or more nfsds. We
+ * keep a chain of nfsds against the file. We only have more than one if reads
+ * are ongoing, and then only if the reads affect disparate regions of the
+ * file.
+ *
+ * In general, we want to assign a new request to an existing nfsd if it is
+ * going to contend with work happening already on that nfsd, or if the
+ * operation is a read and the nfsd is already handling a proximate read. We
+ * do this to avoid jumping around in the read stream unnecessarily, and to
+ * avoid contention between threads over single files.
+ */
+struct fha_hash_entry {
+ LIST_ENTRY(fha_hash_entry) link;
+ u_int64_t fh;
+ u_int32_t num_rw;
+ u_int32_t num_exclusive;
+ u_int8_t num_threads;
+ struct svcthread_list threads;
+};
+
+LIST_HEAD(fha_hash_entry_list, fha_hash_entry);
+
+/* A structure used for passing around data internally. */
+struct fha_info {
+ u_int64_t fh;
+ off_t offset;
+ int locktype;
+};
+
+struct fha_callbacks {
+ rpcproc_t (*get_procnum)(rpcproc_t procnum);
+ int (*realign)(struct mbuf **mb, int malloc_flags);
+ int (*get_fh)(fhandle_t *fh, int v3, struct mbuf **md, caddr_t *dpos);
+ int (*is_read)(rpcproc_t procnum);
+ int (*is_write)(rpcproc_t procnum);
+ int (*get_offset)(struct mbuf **md, caddr_t *dpos, int v3, struct
+ fha_info *info);
+ int (*no_offset)(rpcproc_t procnum);
+ void (*set_locktype)(rpcproc_t procnum, struct fha_info *info);
+ int (*fhe_stats_sysctl)(SYSCTL_HANDLER_ARGS);
+};
+
+struct fha_params {
+ struct fha_global g_fha;
+ struct sysctl_ctx_list sysctl_ctx;
+ struct sysctl_oid *sysctl_tree;
+ struct fha_ctls ctls;
+ struct fha_callbacks callbacks;
+ char server_name[32];
+ SVCPOOL **pool;
+};
+
void fha_nd_complete(SVCTHREAD *, struct svc_req *);
-SVCTHREAD *fha_assign(SVCTHREAD *, struct svc_req *);
+SVCTHREAD *fha_assign(SVCTHREAD *, struct svc_req *, struct fha_params *);
+void fha_init(struct fha_params *softc);
+void fha_uninit(struct fha_params *softc);
+int fhe_stats_sysctl(SYSCTL_HANDLER_ARGS, struct fha_params *softc);
+
+#endif /* _KERNEL */
+#endif /* _NFS_FHA_H_ */
diff --git a/sys/nfsserver/nfs_fha_old.c b/sys/nfsserver/nfs_fha_old.c
new file mode 100644
index 0000000000000..4161b609da3cd
--- /dev/null
+++ b/sys/nfsserver/nfs_fha_old.c
@@ -0,0 +1,241 @@
+/*-
+ * Copyright (c) 2008 Isilon Inc http://www.isilon.com/
+ * Copyright (c) 2013 Spectra Logic Corporation
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ */
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
+#include <sys/param.h>
+#include <sys/systm.h>
+#include <sys/sysproto.h>
+#include <sys/kernel.h>
+#include <sys/vnode.h>
+#include <sys/malloc.h>
+#include <sys/mount.h>
+#include <sys/mbuf.h>
+#include <sys/sysctl.h>
+
+#include <rpc/rpc.h>
+#include <nfs/xdr_subs.h>
+#include <nfs/nfsproto.h>
+#include <nfsserver/nfs.h>
+#include <nfsserver/nfsm_subs.h>
+#include <nfsserver/nfs_fha.h>
+#include <nfsserver/nfs_fha_old.h>
+
+static void fhaold_init(void *foo);
+static void fhaold_uninit(void *foo);
+rpcproc_t fhaold_get_procnum(rpcproc_t procnum);
+int fhaold_realign(struct mbuf **mb, int malloc_flags);
+int fhaold_get_fh(fhandle_t *fh, int v3, struct mbuf **md, caddr_t *dpos);
+int fhaold_is_read(rpcproc_t procnum);
+int fhaold_is_write(rpcproc_t procnum);
+int fhaold_get_offset(struct mbuf **md, caddr_t *dpos, int v3,
+ struct fha_info *info);
+int fhaold_no_offset(rpcproc_t procnum);
+void fhaold_set_locktype(rpcproc_t procnum, struct fha_info *info);
+static int fheold_stats_sysctl(SYSCTL_HANDLER_ARGS);
+
+static struct fha_params fhaold_softc;
+
+SYSCTL_DECL(_vfs_nfsrv);
+
+extern SVCPOOL *nfsrv_pool;
+
+SYSINIT(nfs_fhaold, SI_SUB_ROOT_CONF, SI_ORDER_ANY, fhaold_init, NULL);
+SYSUNINIT(nfs_fhaold, SI_SUB_ROOT_CONF, SI_ORDER_ANY, fhaold_uninit, NULL);
+
+static void
+fhaold_init(void *foo)
+{
+ struct fha_params *softc;
+
+ softc = &fhaold_softc;
+
+ bzero(softc, sizeof(*softc));
+
+ /*
+ * Setup the callbacks for this FHA personality.
+ */
+ softc->callbacks.get_procnum = fhaold_get_procnum;
+ softc->callbacks.realign = fhaold_realign;
+ softc->callbacks.get_fh = fhaold_get_fh;
+ softc->callbacks.is_read = fhaold_is_read;
+ softc->callbacks.is_write = fhaold_is_write;
+ softc->callbacks.get_offset = fhaold_get_offset;
+ softc->callbacks.no_offset = fhaold_no_offset;
+ softc->callbacks.set_locktype = fhaold_set_locktype;
+ softc->callbacks.fhe_stats_sysctl = fheold_stats_sysctl;
+
+ snprintf(softc->server_name, sizeof(softc->server_name),
+ FHAOLD_SERVER_NAME);
+
+ softc->pool = &nfsrv_pool;
+
+ /*
+ * Initialize the sysctl context list for the fha module.
+ */
+ sysctl_ctx_init(&softc->sysctl_ctx);
+ softc->sysctl_tree = SYSCTL_ADD_NODE(&softc->sysctl_ctx,
+ SYSCTL_STATIC_CHILDREN(_vfs_nfsrv), OID_AUTO, "fha", CTLFLAG_RD,
+ 0, "fha node");
+ if (softc->sysctl_tree == NULL) {
+ printf("%s: unable to allocate sysctl tree\n", __func__);
+ return;
+ }
+ fha_init(softc);
+}
+
+static void
+fhaold_uninit(void *foo)
+{
+ struct fha_params *softc;
+
+ softc = &fhaold_softc;
+
+ fha_uninit(softc);
+}
+
+
+rpcproc_t
+fhaold_get_procnum(rpcproc_t procnum)
+{
+ if (procnum > NFSV2PROC_STATFS)
+ return (-1);
+
+ return (nfsrv_nfsv3_procid[procnum]);
+}
+
+int
+fhaold_realign(struct mbuf **mb, int malloc_flags)
+{
+ return (nfs_realign(mb, malloc_flags));
+}
+
+int
+fhaold_get_fh(fhandle_t *fh, int v3, struct mbuf **md, caddr_t *dpos)
+{
+ return (nfsm_srvmtofh_xx(fh, v3, md, dpos));
+}
+
+int
+fhaold_is_read(rpcproc_t procnum)
+{
+ if (procnum == NFSPROC_READ)
+ return (1);
+ else
+ return (0);
+}
+
+int
+fhaold_is_write(rpcproc_t procnum)
+{
+ if (procnum == NFSPROC_WRITE)
+ return (1);
+ else
+ return (0);
+}
+
+int
+fhaold_get_offset(struct mbuf **md, caddr_t *dpos, int v3,
+ struct fha_info *info)
+{
+ uint32_t *tl;
+
+ if (v3) {
+ tl = nfsm_dissect_xx_nonblock(2 * NFSX_UNSIGNED, md, dpos);
+ if (tl == NULL)
+ goto out;
+ info->offset = fxdr_hyper(tl);
+ } else {
+ tl = nfsm_dissect_xx_nonblock(NFSX_UNSIGNED, md, dpos);
+ if (tl == NULL)
+ goto out;
+ info->offset = fxdr_unsigned(uint32_t, *tl);
+ }
+
+ return (0);
+out:
+ return (-1);
+}
+
+int
+fhaold_no_offset(rpcproc_t procnum)
+{
+ if (procnum == NFSPROC_FSSTAT ||
+ procnum == NFSPROC_FSINFO ||
+ procnum == NFSPROC_PATHCONF ||
+ procnum == NFSPROC_NOOP ||
+ procnum == NFSPROC_NULL)
+ return (1);
+ else
+ return (0);
+}
+
+void
+fhaold_set_locktype(rpcproc_t procnum, struct fha_info *info)
+{
+ switch (procnum) {
+ case NFSPROC_NULL:
+ case NFSPROC_GETATTR:
+ case NFSPROC_LOOKUP:
+ case NFSPROC_ACCESS:
+ case NFSPROC_READLINK:
+ case NFSPROC_READ:
+ case NFSPROC_READDIR:
+ case NFSPROC_READDIRPLUS:
+ case NFSPROC_WRITE:
+ info->locktype = LK_SHARED;
+ break;
+ case NFSPROC_SETATTR:
+ case NFSPROC_CREATE:
+ case NFSPROC_MKDIR:
+ case NFSPROC_SYMLINK:
+ case NFSPROC_MKNOD:
+ case NFSPROC_REMOVE:
+ case NFSPROC_RMDIR:
+ case NFSPROC_RENAME:
+ case NFSPROC_LINK:
+ case NFSPROC_FSSTAT:
+ case NFSPROC_FSINFO:
+ case NFSPROC_PATHCONF:
+ case NFSPROC_COMMIT:
+ case NFSPROC_NOOP:
+ info->locktype = LK_EXCLUSIVE;
+ break;
+ }
+}
+
+static int
+fheold_stats_sysctl(SYSCTL_HANDLER_ARGS)
+{
+ return (fhe_stats_sysctl(oidp, arg1, arg2, req, &fhaold_softc));
+}
+
+SVCTHREAD *
+fhaold_assign(SVCTHREAD *this_thread, struct svc_req *req)
+{
+ return (fha_assign(this_thread, req, &fhaold_softc));
+}
diff --git a/sys/nfsserver/nfs_fha_old.h b/sys/nfsserver/nfs_fha_old.h
new file mode 100644
index 0000000000000..d14295453056f
--- /dev/null
+++ b/sys/nfsserver/nfs_fha_old.h
@@ -0,0 +1,38 @@
+/*-
+ * Copyright (c) 2008 Isilon Inc http://www.isilon.com/
+ * Copyright (c) 2013 Spectra Logic Corporation
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ */
+/* $FreeBSD$ */
+
+#ifndef _NFS_FHA_OLD_H
+#define _NFS_FHA_OLD_H 1
+
+#ifdef _KERNEL
+
+#define FHAOLD_SERVER_NAME "nfsrv"
+
+SVCTHREAD *fhaold_assign(SVCTHREAD *this_thread, struct svc_req *req);
+#endif /* _KERNEL */
+
+#endif /* _NFS_FHA_OLD_H */
diff --git a/sys/nfsserver/nfs_srvkrpc.c b/sys/nfsserver/nfs_srvkrpc.c
index 6b3a6b7c70fbb..8d566b99d990f 100644
--- a/sys/nfsserver/nfs_srvkrpc.c
+++ b/sys/nfsserver/nfs_srvkrpc.c
@@ -81,6 +81,7 @@ __FBSDID("$FreeBSD$");
#include <nfsserver/nfsm_subs.h>
#include <nfsserver/nfsrvcache.h>
#include <nfsserver/nfs_fha.h>
+#include <nfsserver/nfs_fha_old.h>
#include <security/mac/mac_framework.h>
@@ -532,7 +533,7 @@ nfsrv_init(int terminating)
nfsrv_pool = svcpool_create("nfsd", SYSCTL_STATIC_CHILDREN(_vfs_nfsrv));
nfsrv_pool->sp_rcache = replay_newcache(nfsrv_replay_size());
- nfsrv_pool->sp_assign = fha_assign;
+ nfsrv_pool->sp_assign = fhaold_assign;
nfsrv_pool->sp_done = fha_nd_complete;
nfsrv_nmbclusters_tag = EVENTHANDLER_REGISTER(nmbclusters_change,
nfsrv_nmbclusters_change, NULL, EVENTHANDLER_PRI_FIRST);