staticvoid svc_unregister(conststruct svc_serv *serv, struct net *net);
#define SVC_POOL_DEFAULT SVC_POOL_GLOBAL
/* * Mode for mapping cpus to pools.
*/ enum {
SVC_POOL_AUTO = -1, /* choose one of the others */
SVC_POOL_GLOBAL, /* no mapping, just a single global pool
* (legacy & UP mode) */
SVC_POOL_PERCPU, /* one pool per cpu */
SVC_POOL_PERNODE /* one pool per numa node */
};
/* * Structure for mapping cpus to pools and vice versa. * Setup once during sunrpc initialisation.
*/
struct svc_pool_map { int count; /* How many svc_servs use us */ int mode; /* Note: int not enum to avoid * warnings about "enumeration value
* not handled in switch" */ unsignedint npools; unsignedint *pool_to; /* maps pool id to cpu or node */ unsignedint *to_pool; /* maps cpu or node to pool id */
};
int sunrpc_set_pool_mode(constchar *val)
{ return __param_set_pool_mode(val, &svc_pool_map);
}
EXPORT_SYMBOL(sunrpc_set_pool_mode);
/** * sunrpc_get_pool_mode - get the current pool_mode for the host * @buf: where to write the current pool_mode * @size: size of @buf * * Grab the current pool_mode from the svc_pool_map and write * the resulting string to @buf. Returns the number of characters * written to @buf (a'la snprintf()).
*/ int
sunrpc_get_pool_mode(char *buf, size_t size)
{ struct svc_pool_map *m = &svc_pool_map;
switch (m->mode)
{ case SVC_POOL_AUTO: return snprintf(buf, size, "auto"); case SVC_POOL_GLOBAL: return snprintf(buf, size, "global"); case SVC_POOL_PERCPU: return snprintf(buf, size, "percpu"); case SVC_POOL_PERNODE: return snprintf(buf, size, "pernode"); default: return snprintf(buf, size, "%d", m->mode);
}
}
EXPORT_SYMBOL(sunrpc_get_pool_mode);
/* * Detect best pool mapping mode heuristically, * according to the machine's topology.
*/ staticint
svc_pool_map_choose_mode(void)
{ unsignedint node;
if (nr_online_nodes > 1) { /* * Actually have multiple NUMA nodes, * so split pools on NUMA node boundaries
*/ return SVC_POOL_PERNODE;
}
node = first_online_node; if (nr_cpus_node(node) > 2) { /* * Non-trivial SMP, or CONFIG_NUMA on * non-NUMA hardware, e.g. with a generic * x86_64 kernel on Xeons. In this case we * want to divide the pools on cpu boundaries.
*/ return SVC_POOL_PERCPU;
}
/* default: one global pool */ return SVC_POOL_GLOBAL;
}
/* * Allocate the to_pool[] and pool_to[] arrays. * Returns 0 on success or an errno.
*/ staticint
svc_pool_map_alloc_arrays(struct svc_pool_map *m, unsignedint maxpools)
{
m->to_pool = kcalloc(maxpools, sizeof(unsignedint), GFP_KERNEL); if (!m->to_pool) goto fail;
m->pool_to = kcalloc(maxpools, sizeof(unsignedint), GFP_KERNEL); if (!m->pool_to) goto fail_free;
/* * Initialise the pool map for SVC_POOL_PERCPU mode. * Returns number of pools or <0 on error.
*/ staticint
svc_pool_map_init_percpu(struct svc_pool_map *m)
{ unsignedint maxpools = nr_cpu_ids; unsignedint pidx = 0; unsignedint cpu; int err;
err = svc_pool_map_alloc_arrays(m, maxpools); if (err) return err;
for_each_online_cpu(cpu) {
BUG_ON(pidx >= maxpools);
m->to_pool[cpu] = pidx;
m->pool_to[pidx] = cpu;
pidx++;
} /* cpus brought online later all get mapped to pool0, sorry */
return pidx;
};
/* * Initialise the pool map for SVC_POOL_PERNODE mode. * Returns number of pools or <0 on error.
*/ staticint
svc_pool_map_init_pernode(struct svc_pool_map *m)
{ unsignedint maxpools = nr_node_ids; unsignedint pidx = 0; unsignedint node; int err;
err = svc_pool_map_alloc_arrays(m, maxpools); if (err) return err;
for_each_node_with_cpus(node) { /* some architectures (e.g. SN2) have cpuless nodes */
BUG_ON(pidx > maxpools);
m->to_pool[node] = pidx;
m->pool_to[pidx] = node;
pidx++;
} /* nodes brought online later all get mapped to pool0, sorry */
return pidx;
}
/* * Add a reference to the global map of cpus to pools (and * vice versa) if pools are in use. * Initialise the map if we're the first user. * Returns the number of pools. If this is '1', no reference * was taken.
*/ staticunsignedint
svc_pool_map_get(void)
{ struct svc_pool_map *m = &svc_pool_map; int npools = -1;
mutex_lock(&svc_pool_map_mutex); if (m->count++) {
mutex_unlock(&svc_pool_map_mutex); return m->npools;
}
if (m->mode == SVC_POOL_AUTO)
m->mode = svc_pool_map_choose_mode();
switch (m->mode) { case SVC_POOL_PERCPU:
npools = svc_pool_map_init_percpu(m); break; case SVC_POOL_PERNODE:
npools = svc_pool_map_init_pernode(m); break;
}
/* * Drop a reference to the global map of cpus to pools. * When the last reference is dropped, the map data is * freed; this allows the sysadmin to change the pool.
*/ staticvoid
svc_pool_map_put(void)
{ struct svc_pool_map *m = &svc_pool_map;
if (m->count) { if (m->mode == SVC_POOL_PERCPU) return cpu_to_node(m->pool_to[pidx]); if (m->mode == SVC_POOL_PERNODE) return m->pool_to[pidx];
} return NUMA_NO_NODE;
} /* * Set the given thread's cpus_allowed mask so that it * will only run on cpus in the given pool.
*/ staticinlinevoid
svc_pool_map_set_cpumask(struct task_struct *task, unsignedint pidx)
{ struct svc_pool_map *m = &svc_pool_map; unsignedint node = m->pool_to[pidx];
/* * The caller checks for sv_nrpools > 1, which * implies that we've been initialized.
*/
WARN_ON_ONCE(m->count == 0); if (m->count == 0) return;
switch (m->mode) { case SVC_POOL_PERCPU:
{
set_cpus_allowed_ptr(task, cpumask_of(node)); break;
} case SVC_POOL_PERNODE:
{
set_cpus_allowed_ptr(task, cpumask_of_node(node)); break;
}
}
}
/** * svc_pool_for_cpu - Select pool to run a thread on this cpu * @serv: An RPC service * * Use the active CPU and the svc_pool_map's mode setting to * select the svc thread pool to use. Once initialized, the * svc_pool_map does not change. * * Return value: * A pointer to an svc_pool
*/ struct svc_pool *svc_pool_for_cpu(struct svc_serv *serv)
{ struct svc_pool_map *m = &svc_pool_map; int cpu = raw_smp_processor_id(); unsignedint pidx = 0;
if (serv->sv_nrpools <= 1) return serv->sv_pools;
switch (m->mode) { case SVC_POOL_PERCPU:
pidx = m->to_pool[cpu]; break; case SVC_POOL_PERNODE:
pidx = m->to_pool[cpu_to_node(cpu)]; break;
}
/** * svc_create - Create an RPC service * @prog: the RPC program the new service will handle * @bufsize: maximum message size for @prog * @threadfn: a function to service RPC requests for @prog * * Returns an instantiated struct svc_serv object or NULL.
*/ struct svc_serv *svc_create(struct svc_program *prog, unsignedint bufsize, int (*threadfn)(void *data))
{ return __svc_create(prog, 1, NULL, bufsize, 1, threadfn);
}
EXPORT_SYMBOL_GPL(svc_create);
/** * svc_create_pooled - Create an RPC service with pooled threads * @prog: Array of RPC programs the new service will handle * @nprogs: Number of programs in the array * @stats: the stats struct if desired * @bufsize: maximum message size for @prog * @threadfn: a function to service RPC requests for @prog * * Returns an instantiated struct svc_serv object or NULL.
*/ struct svc_serv *svc_create_pooled(struct svc_program *prog, unsignedint nprogs, struct svc_stat *stats, unsignedint bufsize, int (*threadfn)(void *data))
{ struct svc_serv *serv; unsignedint npools = svc_pool_map_get();
/* * Destroy an RPC service. Should be called with appropriate locking to * protect sv_permsocks and sv_tempsocks.
*/ void
svc_destroy(struct svc_serv **servp)
{ struct svc_serv *serv = *servp; unsignedint i;
/* * Remaining transports at this point are not expected.
*/
WARN_ONCE(!list_empty(&serv->sv_permsocks), "SVC: permsocks remain for %s\n", serv->sv_programs->pg_name);
WARN_ONCE(!list_empty(&serv->sv_tempsocks), "SVC: tempsocks remain for %s\n", serv->sv_programs->pg_name);
cache_clean_deferred(serv);
if (serv->sv_is_pooled)
svc_pool_map_put();
for (i = 0; i < serv->sv_nrpools; i++) { struct svc_pool *pool = &serv->sv_pools[i];
/* Protected by whatever lock the service uses when calling * svc_set_num_threads()
*/
list_add_rcu(&rqstp->rq_all, &pool->sp_all_threads);
return rqstp;
out_enomem:
svc_rqst_free(rqstp); return NULL;
}
/** * svc_pool_wake_idle_thread - Awaken an idle thread in @pool * @pool: service thread pool * * Can be called from soft IRQ or process context. Finding an idle * service thread and marking it BUSY is atomic with respect to * other calls to svc_pool_wake_idle_thread(). *
*/ void svc_pool_wake_idle_thread(struct svc_pool *pool)
{ struct svc_rqst *rqstp; struct llist_node *ln;
wait_var_event(&rqstp->rq_err, rqstp->rq_err != -EAGAIN);
err = rqstp->rq_err; if (err) {
svc_exit_thread(rqstp); return err;
}
} while (nrservs > 0);
return 0;
}
staticint
svc_stop_kthreads(struct svc_serv *serv, struct svc_pool *pool, int nrservs)
{ unsignedint state = serv->sv_nrthreads-1; struct svc_pool *victim;
do {
victim = svc_pool_victim(serv, pool, &state); if (!victim) break;
svc_pool_wake_idle_thread(victim);
wait_on_bit(&victim->sp_flags, SP_VICTIM_REMAINS,
TASK_IDLE);
nrservs++;
} while (nrservs < 0); return 0;
}
/** * svc_set_num_threads - adjust number of threads per RPC service * @serv: RPC service to adjust * @pool: Specific pool from which to choose threads, or NULL * @nrservs: New number of threads for @serv (0 or less means kill all threads) * * Create or destroy threads to make the number of threads for @serv the * given number. If @pool is non-NULL, change only threads in that pool; * otherwise, round-robin between all pools for @serv. @serv's * sv_nrthreads is adjusted for each thread created or destroyed. * * Caller must ensure mutual exclusion between this and server startup or * shutdown. * * Returns zero on success or a negative errno if an error occurred while * starting a thread.
*/ int
svc_set_num_threads(struct svc_serv *serv, struct svc_pool *pool, int nrservs)
{ if (!pool)
nrservs -= serv->sv_nrthreads; else
nrservs -= pool->sp_nrthreads;
if (nrservs > 0) return svc_start_kthreads(serv, pool, nrservs); if (nrservs < 0) return svc_stop_kthreads(serv, pool, nrservs); return 0;
}
EXPORT_SYMBOL_GPL(svc_set_num_threads);
/** * svc_rqst_replace_page - Replace one page in rq_pages[] * @rqstp: svc_rqst with pages to replace * @page: replacement page * * When replacing a page in rq_pages, batch the release of the * replaced pages to avoid hammering the page allocator. * * Return values: * %true: page replaced * %false: array bounds checking failed
*/ bool svc_rqst_replace_page(struct svc_rqst *rqstp, struct page *page)
{ struct page **begin = rqstp->rq_pages; struct page **end = &rqstp->rq_pages[rqstp->rq_maxpages];
if (unlikely(rqstp->rq_next_page < begin || rqstp->rq_next_page > end)) {
trace_svc_replace_page_err(rqstp); returnfalse;
}
if (*rqstp->rq_next_page) { if (!folio_batch_add(&rqstp->rq_fbatch,
page_folio(*rqstp->rq_next_page)))
__folio_batch_release(&rqstp->rq_fbatch);
}
/** * svc_rqst_release_pages - Release Reply buffer pages * @rqstp: RPC transaction context * * Release response pages that might still be in flight after * svc_send, and any spliced filesystem-owned pages.
*/ void svc_rqst_release_pages(struct svc_rqst *rqstp)
{ int i, count = rqstp->rq_next_page - rqstp->rq_respages;
if (count) {
release_pages(rqstp->rq_respages, count); for (i = 0; i < count; i++)
rqstp->rq_respages[i] = NULL;
}
}
/** * svc_exit_thread - finalise the termination of a sunrpc server thread * @rqstp: the svc_rqst which represents the thread. * * When a thread started with svc_new_thread() exits it must call * svc_exit_thread() as its last act. This must be done with the * service mutex held. Normally this is held by a DIFFERENT thread, the * one that is calling svc_set_num_threads() and which will wait for * SP_VICTIM_REMAINS to be cleared before dropping the mutex. If the * thread exits for any reason other than svc_thread_should_stop() * returning %true (which indicated that svc_set_num_threads() is * waiting for it to exit), then it must take the service mutex itself, * which can only safely be done using mutex_try_lock().
*/ void
svc_exit_thread(struct svc_rqst *rqstp)
{ struct svc_serv *serv = rqstp->rq_server; struct svc_pool *pool = rqstp->rq_pool;
/* * Register an "inet" protocol family netid with the local * rpcbind daemon via an rpcbind v4 SET request. * * No netconfig infrastructure is available in the kernel, so * we map IP_ protocol numbers to netids by hand. * * Returns zero on success; a negative errno value is returned * if any error occurs.
*/ staticint __svc_rpcb_register4(struct net *net, const u32 program, const u32 version, constunsignedshort protocol, constunsignedshort port)
{ conststruct sockaddr_in sin = {
.sin_family = AF_INET,
.sin_addr.s_addr = htonl(INADDR_ANY),
.sin_port = htons(port),
}; constchar *netid; int error;
switch (protocol) { case IPPROTO_UDP:
netid = RPCBIND_NETID_UDP; break; case IPPROTO_TCP:
netid = RPCBIND_NETID_TCP; break; default: return -ENOPROTOOPT;
}
/* * User space didn't support rpcbind v4, so retry this * registration request with the legacy rpcbind v2 protocol.
*/ if (error == -EPROTONOSUPPORT)
error = rpcb_register(net, program, version, protocol, port);
return error;
}
#if IS_ENABLED(CONFIG_IPV6) /* * Register an "inet6" protocol family netid with the local * rpcbind daemon via an rpcbind v4 SET request. * * No netconfig infrastructure is available in the kernel, so * we map IP_ protocol numbers to netids by hand. * * Returns zero on success; a negative errno value is returned * if any error occurs.
*/ staticint __svc_rpcb_register6(struct net *net, const u32 program, const u32 version, constunsignedshort protocol, constunsignedshort port)
{ conststruct sockaddr_in6 sin6 = {
.sin6_family = AF_INET6,
.sin6_addr = IN6ADDR_ANY_INIT,
.sin6_port = htons(port),
}; constchar *netid; int error;
switch (protocol) { case IPPROTO_UDP:
netid = RPCBIND_NETID_UDP6; break; case IPPROTO_TCP:
netid = RPCBIND_NETID_TCP6; break; default: return -ENOPROTOOPT;
}
/* * Register a kernel RPC service via rpcbind version 4. * * Returns zero on success; a negative errno value is returned * if any error occurs.
*/ staticint __svc_register(struct net *net, constchar *progname, const u32 program, const u32 version, constint family, constunsignedshort protocol, constunsignedshort port)
{ int error = -EAFNOSUPPORT;
static int svc_rpcbind_set_version(struct net *net, conststruct svc_program *progp,
u32 version, int family, unsignedshort proto, unsignedshort port)
{ return __svc_register(net, progp->pg_name, progp->pg_prog,
version, family, proto, port);
}
int svc_generic_rpcbind_set(struct net *net, conststruct svc_program *progp,
u32 version, int family, unsignedshort proto, unsignedshort port)
{ conststruct svc_version *vers = progp->pg_vers[version]; int error;
if (vers == NULL) return 0;
if (vers->vs_hidden) {
trace_svc_noregister(progp->pg_name, version, proto,
port, family, 0); return 0;
}
/* * Don't register a UDP port if we need congestion * control.
*/ if (vers->vs_need_cong_ctrl && proto == IPPROTO_UDP) return 0;
error = svc_rpcbind_set_version(net, progp, version,
family, proto, port);
/** * svc_register - register an RPC service with the local portmapper * @serv: svc_serv struct for the service to register * @net: net namespace for the service to register * @family: protocol family of service's listener socket * @proto: transport protocol number to advertise * @port: port to advertise * * Service is registered for any address in the passed-in protocol family
*/ int svc_register(conststruct svc_serv *serv, struct net *net, constint family, constunsignedshort proto, constunsignedshort port)
{ unsignedint p, i; int error = 0;
WARN_ON_ONCE(proto == 0 && port == 0); if (proto == 0 && port == 0) return -EINVAL;
for (p = 0; p < serv->sv_nprogs; p++) { struct svc_program *progp = &serv->sv_programs[p];
for (i = 0; i < progp->pg_nvers; i++) {
error = progp->pg_rpcbind_set(net, progp, i,
family, proto, port); if (error < 0) {
printk(KERN_WARNING "svc: failed to register " "%sv%u RPC service (errno %d).\n",
progp->pg_name, i, -error); break;
}
}
}
return error;
}
/* * If user space is running rpcbind, it should take the v4 UNSET * and clear everything for this [program, version]. If user space * is running portmap, it will reject the v4 UNSET, but won't have * any "inet6" entries anyway. So a PMAP_UNSET should be sufficient * in this case to clear all existing entries for [program, version].
*/ staticvoid __svc_unregister(struct net *net, const u32 program, const u32 version, constchar *progname)
{ int error;
/* * User space didn't support rpcbind v4, so retry this * request with the legacy rpcbind v2 protocol.
*/ if (error == -EPROTONOSUPPORT)
error = rpcb_register(net, program, version, 0, 0);
trace_svc_unregister(progname, version, error);
}
/* * All netids, bind addresses and ports registered for [program, version] * are removed from the local rpcbind database (if the service is not * hidden) to make way for a new instance of the service. * * The result of unregistration is reported via dprintk for those who want * verification of the result, but is otherwise not important.
*/ staticvoid svc_unregister(conststruct svc_serv *serv, struct net *net)
{ struct sighand_struct *sighand; unsignedlong flags; unsignedint p, i;
clear_thread_flag(TIF_SIGPENDING);
for (p = 0; p < serv->sv_nprogs; p++) { struct svc_program *progp = &serv->sv_programs[p];
for (i = 0; i < progp->pg_nvers; i++) { if (progp->pg_vers[i] == NULL) continue; if (progp->pg_vers[i]->vs_hidden) continue;
__svc_unregister(net, progp->pg_prog, i, progp->pg_name);
}
}
/* * dprintk the given error with the address of the client that caused it.
*/ #if IS_ENABLED(CONFIG_SUNRPC_DEBUG) static __printf(2, 3) void svc_printk(struct svc_rqst *rqstp, constchar *fmt, ...)
{ struct va_format vaf;
va_list args; char buf[RPC_MAX_ADDRBUFLEN];
if (rqstp->rq_vers >= progp->pg_nvers ) goto err_bad_vers;
versp = progp->pg_vers[rqstp->rq_vers]; if (!versp) goto err_bad_vers;
/* * Some protocol versions (namely NFSv4) require some form of * congestion control. (See RFC 7530 section 3.1 paragraph 2) * In other words, UDP is not allowed. We mark those when setting * up the svc_xprt, and verify that here. * * The spec is not very clear about what error should be returned * when someone tries to access a server that is listening on UDP * for lower versions. RPC_PROG_MISMATCH seems to be the closest * fit.
*/ if (versp->vs_need_cong_ctrl && rqstp->rq_xprt &&
!test_bit(XPT_CONG_CTRL, &rqstp->rq_xprt->xpt_flags)) goto err_bad_vers;
/* Reset the accept_stat for the RPC */
rqstp->rq_accept_statp = NULL;
/* Will be turned off only when NFSv4 Sessions are used */
set_bit(RQ_USEDEFERRAL, &rqstp->rq_flags);
clear_bit(RQ_DROPME, &rqstp->rq_flags);
/* Construct the first words of the reply: */
svcxdr_init_encode(rqstp);
xdr_stream_encode_be32(xdr, rqstp->rq_xid);
xdr_stream_encode_be32(xdr, rpc_reply);
p = xdr_inline_decode(&rqstp->rq_arg_stream, XDR_UNIT * 4); if (unlikely(!p)) goto err_short_len; if (*p++ != cpu_to_be32(RPC_VERSION)) goto err_bad_rpc;
for (pr = 0; pr < serv->sv_nprogs; pr++) if (rqstp->rq_prog == serv->sv_programs[pr].pg_prog)
progp = &serv->sv_programs[pr];
/* * Decode auth data, and add verifier to reply buffer. * We do this before anything else in order to get a decent * auth verifier.
*/
auth_res = svc_authenticate(rqstp); /* Also give the program a chance to reject this call: */ if (auth_res == SVC_OK && progp)
auth_res = progp->pg_authenticate(rqstp);
trace_svc_authenticate(rqstp, auth_res); switch (auth_res) { case SVC_OK: break; case SVC_GARBAGE:
rqstp->rq_auth_stat = rpc_autherr_badcred; goto err_bad_auth; case SVC_DENIED: goto err_bad_auth; case SVC_CLOSE: goto close; case SVC_DROP: goto dropit; case SVC_COMPLETE: goto sendit; default:
pr_warn_once("Unexpected svc_auth_status (%d)\n", auth_res);
rqstp->rq_auth_stat = rpc_autherr_failed; goto err_bad_auth;
}
if (progp == NULL) goto err_bad_prog;
switch (progp->pg_init_request(rqstp, progp, &process)) { case rpc_success: break; case rpc_prog_unavail: goto err_bad_prog; case rpc_prog_mismatch: goto err_bad_vers; case rpc_proc_unavail: goto err_bad_proc;
}
procp = rqstp->rq_procinfo; /* Should this check go into the dispatcher? */ if (!procp || !procp->pc_func) goto err_bad_proc;
/* Syntactic check complete */ if (serv->sv_stats)
serv->sv_stats->rpccnt++;
trace_svc_process(rqstp, progp->pg_name);
aoffset = xdr_stream_pos(xdr);
/* un-reserve some of the out-queue now that we have a * better idea of reply size
*/ if (procp->pc_xdrressize)
svc_reserve_auth(rqstp, procp->pc_xdrressize<<2);
/* Call the function that processes the request. */
rc = process.dispatch(rqstp); if (procp->pc_release)
procp->pc_release(rqstp);
xdr_finish_decode(xdr);
if (!rc) goto dropit; if (rqstp->rq_auth_stat != rpc_auth_ok) goto err_bad_auth;
if (*rqstp->rq_accept_statp != rpc_success)
xdr_truncate_encode(xdr, aoffset);
if (procp->pc_encode == NULL) goto dropit;
sendit: if (svc_authorise(rqstp)) goto close_xprt; return 1; /* Caller can now send it */
dropit:
svc_authorise(rqstp); /* doesn't hurt to call this twice */
dprintk("svc: svc_process dropit\n"); return 0;
err_bad_prog:
dprintk("svc: unknown program %d\n", rqstp->rq_prog); if (serv->sv_stats)
serv->sv_stats->rpcbadfmt++;
*rqstp->rq_accept_statp = rpc_prog_unavail; goto sendit;
err_bad_vers:
svc_printk(rqstp, "unknown version (%d for prog %d, %s)\n",
rqstp->rq_vers, rqstp->rq_prog, progp->pg_name);
if (serv->sv_stats)
serv->sv_stats->rpcbadfmt++;
*rqstp->rq_accept_statp = rpc_prog_mismatch;
/* * svc_authenticate() has already added the verifier and * advanced the stream just past rq_accept_statp.
*/
xdr_stream_encode_u32(xdr, process.mismatch.lovers);
xdr_stream_encode_u32(xdr, process.mismatch.hivers); goto sendit;
svcxdr_init_decode(rqstp);
p = xdr_inline_decode(&rqstp->rq_arg_stream, XDR_UNIT * 2); if (unlikely(!p)) goto out_drop;
rqstp->rq_xid = *p++; if (unlikely(*p != rpc_call)) goto out_baddir;
if (!svc_process_common(rqstp)) goto out_drop;
svc_send(rqstp); return;
out_baddir:
svc_printk(rqstp, "bad direction 0x%08x, dropping request\n",
be32_to_cpu(*p)); if (rqstp->rq_server->sv_stats)
rqstp->rq_server->sv_stats->rpcbadfmt++;
out_drop:
svc_drop(rqstp);
}
#ifdefined(CONFIG_SUNRPC_BACKCHANNEL) /** * svc_process_bc - process a reverse-direction RPC request * @req: RPC request to be used for client-side processing * @rqstp: server-side execution context *
*/ void svc_process_bc(struct rpc_rqst *req, struct svc_rqst *rqstp)
{ struct rpc_timeout timeout = {
.to_increment = 0,
}; struct rpc_task *task; int proc_error;
/* Build the svc_rqst used by the common processing routine */
rqstp->rq_xid = req->rq_xid;
rqstp->rq_prot = req->rq_xprt->prot;
rqstp->rq_bc_net = req->rq_xprt->xprt_net;
/* Reset the response buffer */
rqstp->rq_res.head[0].iov_len = 0;
/* * Skip the XID and calldir fields because they've already * been processed by the caller.
*/
svcxdr_init_decode(rqstp); if (!xdr_inline_decode(&rqstp->rq_arg_stream, XDR_UNIT * 2)) return;
/* Parse and execute the bc call */
proc_error = svc_process_common(rqstp);
/** * svc_max_payload - Return transport-specific limit on the RPC payload * @rqstp: RPC transaction context * * Returns the maximum number of payload bytes the current transport * allows.
*/
u32 svc_max_payload(conststruct svc_rqst *rqstp)
{
u32 max = rqstp->rq_xprt->xpt_class->xcl_max_payload;
if (rqstp->rq_server->sv_max_payload < max)
max = rqstp->rq_server->sv_max_payload; return max;
}
EXPORT_SYMBOL_GPL(svc_max_payload);
/** * svc_proc_name - Return RPC procedure name in string form * @rqstp: svc_rqst to operate on * * Return value: * Pointer to a NUL-terminated string
*/ constchar *svc_proc_name(conststruct svc_rqst *rqstp)
{ if (rqstp && rqstp->rq_procinfo) return rqstp->rq_procinfo->pc_name; return"unknown";
}
/** * svc_encode_result_payload - mark a range of bytes as a result payload * @rqstp: svc_rqst to operate on * @offset: payload's byte offset in rqstp->rq_res * @length: size of payload, in bytes * * Returns zero on success, or a negative errno if a permanent * error occurred.
*/ int svc_encode_result_payload(struct svc_rqst *rqstp, unsignedint offset, unsignedint length)
{ return rqstp->rq_xprt->xpt_ops->xpo_result_payload(rqstp, offset,
length);
}
EXPORT_SYMBOL_GPL(svc_encode_result_payload);
/** * svc_fill_symlink_pathname - Construct pathname argument for VFS symlink call * @rqstp: svc_rqst to operate on * @first: buffer containing first section of pathname * @p: buffer containing remaining section of pathname * @total: total length of the pathname argument * * The VFS symlink API demands a NUL-terminated pathname in mapped memory. * Returns pointer to a NUL-terminated string, or an ERR_PTR. Caller must free * the returned string.
*/ char *svc_fill_symlink_pathname(struct svc_rqst *rqstp, struct kvec *first, void *p, size_t total)
{
size_t len, remaining; char *result, *dst;
result = kmalloc(total + 1, GFP_KERNEL); if (!result) return ERR_PTR(-ESERVERFAULT);
dst = result;
remaining = total;
len = min_t(size_t, total, first->iov_len); if (len) {
memcpy(dst, first->iov_base, len);
dst += len;
remaining -= len;
}
if (remaining) {
len = min_t(size_t, remaining, PAGE_SIZE);
memcpy(dst, p, len);
dst += len;
}
*dst = '\0';
/* Sanity check: Linux doesn't allow the pathname argument to * contain a NUL byte.
*/ if (strlen(result) != total) {
kfree(result); return ERR_PTR(-EINVAL);
} return result;
}
EXPORT_SYMBOL_GPL(svc_fill_symlink_pathname);
Messung V0.5
¤ Dauer der Verarbeitung: 0.40 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.