blob: a6cbb2104667d22e6b64ffa34718f8ed1f50ef0e [file] [log] [blame]
Tom Tucker1d8206b92007-12-30 21:07:15 -06001/*
2 * linux/net/sunrpc/svc_xprt.c
3 *
4 * Author: Tom Tucker <tom@opengridcomputing.com>
5 */
6
7#include <linux/sched.h>
8#include <linux/errno.h>
Tom Tucker1d8206b92007-12-30 21:07:15 -06009#include <linux/freezer.h>
Jeff Layton70867212008-02-07 16:34:54 -050010#include <linux/kthread.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/slab.h>
Tom Tucker1d8206b92007-12-30 21:07:15 -060012#include <net/sock.h>
Tom Tucker1d8206b92007-12-30 21:07:15 -060013#include <linux/sunrpc/stats.h>
14#include <linux/sunrpc/svc_xprt.h>
H Hartley Sweetendcf1a352009-04-22 20:18:19 -040015#include <linux/sunrpc/svcsock.h>
J. Bruce Fields99de8ea2010-12-08 12:45:44 -050016#include <linux/sunrpc/xprt.h>
Paul Gortmaker3a9a2312011-05-27 09:12:25 -040017#include <linux/module.h>
Jeff Layton860a0d92014-10-28 14:24:12 -040018#include <trace/events/sunrpc.h>
Tom Tucker1d8206b92007-12-30 21:07:15 -060019
20#define RPCDBG_FACILITY RPCDBG_SVCXPRT
21
Tom Tucker0f0257e2007-12-30 21:08:27 -060022static struct svc_deferred_req *svc_deferred_dequeue(struct svc_xprt *xprt);
23static int svc_deferred_recv(struct svc_rqst *rqstp);
24static struct cache_deferred_req *svc_defer(struct cache_req *req);
25static void svc_age_temp_xprts(unsigned long closure);
J. Bruce Fields7710ec32011-11-25 18:44:05 -050026static void svc_delete_xprt(struct svc_xprt *xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -060027
28/* apparently the "standard" is that clients close
29 * idle connections after 5 minutes, servers after
30 * 6 minutes
31 * http://www.connectathon.org/talks96/nfstcp.pdf
32 */
33static int svc_conn_age_period = 6*60;
34
Tom Tucker1d8206b92007-12-30 21:07:15 -060035/* List of registered transport classes */
36static DEFINE_SPINLOCK(svc_xprt_class_lock);
37static LIST_HEAD(svc_xprt_class_list);
38
Tom Tucker0f0257e2007-12-30 21:08:27 -060039/* SMP locking strategy:
40 *
41 * svc_pool->sp_lock protects most of the fields of that pool.
42 * svc_serv->sv_lock protects sv_tempsocks, sv_permsocks, sv_tmpcnt.
43 * when both need to be taken (rare), svc_serv->sv_lock is first.
Jeff Layton3c519912015-01-22 08:19:32 -050044 * The "service mutex" protects svc_serv->sv_nrthread.
Tom Tucker0f0257e2007-12-30 21:08:27 -060045 * svc_sock->sk_lock protects the svc_sock->sk_deferred list
46 * and the ->sk_info_authunix cache.
47 *
48 * The XPT_BUSY bit in xprt->xpt_flags prevents a transport being
49 * enqueued multiply. During normal transport processing this bit
50 * is set by svc_xprt_enqueue and cleared by svc_xprt_received.
51 * Providers should not manipulate this bit directly.
52 *
53 * Some flags can be set to certain values at any time
54 * providing that certain rules are followed:
55 *
56 * XPT_CONN, XPT_DATA:
57 * - Can be set or cleared at any time.
58 * - After a set, svc_xprt_enqueue must be called to enqueue
59 * the transport for processing.
60 * - After a clear, the transport must be read/accepted.
61 * If this succeeds, it must be set again.
62 * XPT_CLOSE:
63 * - Can set at any time. It is never cleared.
64 * XPT_DEAD:
65 * - Can only be set while XPT_BUSY is held which ensures
66 * that no other thread will be using the transport or will
67 * try to set XPT_DEAD.
68 */
Tom Tucker1d8206b92007-12-30 21:07:15 -060069int svc_reg_xprt_class(struct svc_xprt_class *xcl)
70{
71 struct svc_xprt_class *cl;
72 int res = -EEXIST;
73
74 dprintk("svc: Adding svc transport class '%s'\n", xcl->xcl_name);
75
76 INIT_LIST_HEAD(&xcl->xcl_list);
77 spin_lock(&svc_xprt_class_lock);
78 /* Make sure there isn't already a class with the same name */
79 list_for_each_entry(cl, &svc_xprt_class_list, xcl_list) {
80 if (strcmp(xcl->xcl_name, cl->xcl_name) == 0)
81 goto out;
82 }
83 list_add_tail(&xcl->xcl_list, &svc_xprt_class_list);
84 res = 0;
85out:
86 spin_unlock(&svc_xprt_class_lock);
87 return res;
88}
89EXPORT_SYMBOL_GPL(svc_reg_xprt_class);
90
91void svc_unreg_xprt_class(struct svc_xprt_class *xcl)
92{
93 dprintk("svc: Removing svc transport class '%s'\n", xcl->xcl_name);
94 spin_lock(&svc_xprt_class_lock);
95 list_del_init(&xcl->xcl_list);
96 spin_unlock(&svc_xprt_class_lock);
97}
98EXPORT_SYMBOL_GPL(svc_unreg_xprt_class);
99
Tom Tuckerdc9a16e2007-12-30 21:08:31 -0600100/*
101 * Format the transport list for printing
102 */
103int svc_print_xprts(char *buf, int maxlen)
104{
Pavel Emelyanov8f3a6de2010-10-05 23:30:19 +0400105 struct svc_xprt_class *xcl;
Tom Tuckerdc9a16e2007-12-30 21:08:31 -0600106 char tmpstr[80];
107 int len = 0;
108 buf[0] = '\0';
109
110 spin_lock(&svc_xprt_class_lock);
Pavel Emelyanov8f3a6de2010-10-05 23:30:19 +0400111 list_for_each_entry(xcl, &svc_xprt_class_list, xcl_list) {
Tom Tuckerdc9a16e2007-12-30 21:08:31 -0600112 int slen;
Tom Tuckerdc9a16e2007-12-30 21:08:31 -0600113
114 sprintf(tmpstr, "%s %d\n", xcl->xcl_name, xcl->xcl_max_payload);
115 slen = strlen(tmpstr);
116 if (len + slen > maxlen)
117 break;
118 len += slen;
119 strcat(buf, tmpstr);
120 }
121 spin_unlock(&svc_xprt_class_lock);
122
123 return len;
124}
125
Tom Tuckere1b31572007-12-30 21:07:46 -0600126static void svc_xprt_free(struct kref *kref)
127{
128 struct svc_xprt *xprt =
129 container_of(kref, struct svc_xprt, xpt_ref);
130 struct module *owner = xprt->xpt_class->xcl_owner;
Pavel Emelyanove3bfca02010-09-27 13:58:42 +0400131 if (test_bit(XPT_CACHE_AUTH, &xprt->xpt_flags))
132 svcauth_unix_info_release(xprt);
Pavel Emelyanov4fb85182010-09-27 14:00:49 +0400133 put_net(xprt->xpt_net);
J. Bruce Fields99de8ea2010-12-08 12:45:44 -0500134 /* See comment on corresponding get in xs_setup_bc_tcp(): */
135 if (xprt->xpt_bc_xprt)
136 xprt_put(xprt->xpt_bc_xprt);
Tom Tuckere1b31572007-12-30 21:07:46 -0600137 xprt->xpt_ops->xpo_free(xprt);
138 module_put(owner);
139}
140
141void svc_xprt_put(struct svc_xprt *xprt)
142{
143 kref_put(&xprt->xpt_ref, svc_xprt_free);
144}
145EXPORT_SYMBOL_GPL(svc_xprt_put);
146
Tom Tucker1d8206b92007-12-30 21:07:15 -0600147/*
148 * Called by transport drivers to initialize the transport independent
149 * portion of the transport instance.
150 */
Stanislav Kinsburskybd4620d2011-12-06 14:19:10 +0300151void svc_xprt_init(struct net *net, struct svc_xprt_class *xcl,
152 struct svc_xprt *xprt, struct svc_serv *serv)
Tom Tucker1d8206b92007-12-30 21:07:15 -0600153{
154 memset(xprt, 0, sizeof(*xprt));
155 xprt->xpt_class = xcl;
156 xprt->xpt_ops = xcl->xcl_ops;
Tom Tuckere1b31572007-12-30 21:07:46 -0600157 kref_init(&xprt->xpt_ref);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600158 xprt->xpt_server = serv;
Tom Tucker7a182082007-12-30 21:07:53 -0600159 INIT_LIST_HEAD(&xprt->xpt_list);
160 INIT_LIST_HEAD(&xprt->xpt_ready);
Tom Tucker8c7b0172007-12-30 21:08:10 -0600161 INIT_LIST_HEAD(&xprt->xpt_deferred);
J. Bruce Fieldsedc7a892010-03-22 15:37:17 -0400162 INIT_LIST_HEAD(&xprt->xpt_users);
Tom Tuckera50fea22007-12-30 21:07:59 -0600163 mutex_init(&xprt->xpt_mutex);
Tom Tuckerdef13d72007-12-30 21:08:08 -0600164 spin_lock_init(&xprt->xpt_lock);
Tom Tucker4e5caaa2007-12-30 21:08:20 -0600165 set_bit(XPT_BUSY, &xprt->xpt_flags);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300166 rpc_init_wait_queue(&xprt->xpt_bc_pending, "xpt_bc_pending");
Stanislav Kinsburskybd4620d2011-12-06 14:19:10 +0300167 xprt->xpt_net = get_net(net);
Tom Tucker1d8206b92007-12-30 21:07:15 -0600168}
169EXPORT_SYMBOL_GPL(svc_xprt_init);
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600170
Chuck Lever5dd248f2008-06-30 18:45:37 -0400171static struct svc_xprt *__svc_xpo_create(struct svc_xprt_class *xcl,
172 struct svc_serv *serv,
Pavel Emelyanov62832c02010-09-29 16:04:18 +0400173 struct net *net,
Chuck Lever9652ada2009-03-18 20:46:21 -0400174 const int family,
175 const unsigned short port,
176 int flags)
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600177{
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600178 struct sockaddr_in sin = {
179 .sin_family = AF_INET,
Al Viroe6f1ceb2008-03-17 22:44:53 -0700180 .sin_addr.s_addr = htonl(INADDR_ANY),
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600181 .sin_port = htons(port),
182 };
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000183#if IS_ENABLED(CONFIG_IPV6)
Chuck Lever5dd248f2008-06-30 18:45:37 -0400184 struct sockaddr_in6 sin6 = {
185 .sin6_family = AF_INET6,
186 .sin6_addr = IN6ADDR_ANY_INIT,
187 .sin6_port = htons(port),
188 };
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000189#endif
Chuck Lever5dd248f2008-06-30 18:45:37 -0400190 struct sockaddr *sap;
191 size_t len;
192
Chuck Lever9652ada2009-03-18 20:46:21 -0400193 switch (family) {
194 case PF_INET:
Chuck Lever5dd248f2008-06-30 18:45:37 -0400195 sap = (struct sockaddr *)&sin;
196 len = sizeof(sin);
197 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000198#if IS_ENABLED(CONFIG_IPV6)
Chuck Lever9652ada2009-03-18 20:46:21 -0400199 case PF_INET6:
Chuck Lever5dd248f2008-06-30 18:45:37 -0400200 sap = (struct sockaddr *)&sin6;
201 len = sizeof(sin6);
202 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000203#endif
Chuck Lever5dd248f2008-06-30 18:45:37 -0400204 default:
205 return ERR_PTR(-EAFNOSUPPORT);
206 }
207
Pavel Emelyanov62832c02010-09-29 16:04:18 +0400208 return xcl->xcl_ops->xpo_create(serv, net, sap, len, flags);
Chuck Lever5dd248f2008-06-30 18:45:37 -0400209}
210
J. Bruce Fields67410192012-08-17 22:12:19 -0400211/*
212 * svc_xprt_received conditionally queues the transport for processing
213 * by another thread. The caller must hold the XPT_BUSY bit and must
214 * not thereafter touch transport data.
215 *
216 * Note: XPT_DATA only gets cleared when a read-attempt finds no (or
217 * insufficient) data.
218 */
219static void svc_xprt_received(struct svc_xprt *xprt)
220{
Jeff Laytonacf06a72014-12-01 13:45:24 -0500221 if (!test_bit(XPT_BUSY, &xprt->xpt_flags)) {
222 WARN_ONCE(1, "xprt=0x%p already busy!", xprt);
Weston Andros Adamsonff1fdb92012-10-23 10:43:40 -0400223 return;
Jeff Laytonacf06a72014-12-01 13:45:24 -0500224 }
225
J. Bruce Fields67410192012-08-17 22:12:19 -0400226 /* As soon as we clear busy, the xprt could be closed and
Jeff Laytonb9e13cd2015-06-08 12:06:51 -0700227 * 'put', so we need a reference to call svc_enqueue_xprt with:
J. Bruce Fields67410192012-08-17 22:12:19 -0400228 */
229 svc_xprt_get(xprt);
Trond Myklebust09713742014-07-24 23:59:31 -0400230 smp_mb__before_atomic();
J. Bruce Fields67410192012-08-17 22:12:19 -0400231 clear_bit(XPT_BUSY, &xprt->xpt_flags);
Jeff Laytonb9e13cd2015-06-08 12:06:51 -0700232 xprt->xpt_server->sv_ops->svo_enqueue_xprt(xprt);
J. Bruce Fields67410192012-08-17 22:12:19 -0400233 svc_xprt_put(xprt);
234}
235
J. Bruce Fields39b55302012-08-14 15:50:34 -0400236void svc_add_new_perm_xprt(struct svc_serv *serv, struct svc_xprt *new)
237{
238 clear_bit(XPT_TEMP, &new->xpt_flags);
239 spin_lock_bh(&serv->sv_lock);
240 list_add(&new->xpt_list, &serv->sv_permsocks);
241 spin_unlock_bh(&serv->sv_lock);
242 svc_xprt_received(new);
243}
244
Chuck Lever9652ada2009-03-18 20:46:21 -0400245int svc_create_xprt(struct svc_serv *serv, const char *xprt_name,
Pavel Emelyanovfc5d00b2010-09-29 16:03:50 +0400246 struct net *net, const int family,
247 const unsigned short port, int flags)
Chuck Lever5dd248f2008-06-30 18:45:37 -0400248{
249 struct svc_xprt_class *xcl;
250
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600251 dprintk("svc: creating transport %s[%d]\n", xprt_name, port);
252 spin_lock(&svc_xprt_class_lock);
253 list_for_each_entry(xcl, &svc_xprt_class_list, xcl_list) {
Tom Tucker4e5caaa2007-12-30 21:08:20 -0600254 struct svc_xprt *newxprt;
NeilBrowned2849d2010-11-16 16:55:19 +1100255 unsigned short newport;
Tom Tucker4e5caaa2007-12-30 21:08:20 -0600256
257 if (strcmp(xprt_name, xcl->xcl_name))
258 continue;
259
260 if (!try_module_get(xcl->xcl_owner))
261 goto err;
262
263 spin_unlock(&svc_xprt_class_lock);
Pavel Emelyanov62832c02010-09-29 16:04:18 +0400264 newxprt = __svc_xpo_create(xcl, serv, net, family, port, flags);
Tom Tucker4e5caaa2007-12-30 21:08:20 -0600265 if (IS_ERR(newxprt)) {
266 module_put(xcl->xcl_owner);
267 return PTR_ERR(newxprt);
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600268 }
J. Bruce Fields39b55302012-08-14 15:50:34 -0400269 svc_add_new_perm_xprt(serv, newxprt);
NeilBrowned2849d2010-11-16 16:55:19 +1100270 newport = svc_xprt_local_port(newxprt);
NeilBrowned2849d2010-11-16 16:55:19 +1100271 return newport;
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600272 }
Tom Tucker4e5caaa2007-12-30 21:08:20 -0600273 err:
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600274 spin_unlock(&svc_xprt_class_lock);
275 dprintk("svc: transport %s not found\n", xprt_name);
Chuck Lever68717902010-01-26 14:04:13 -0500276
277 /* This errno is exposed to user space. Provide a reasonable
278 * perror msg for a bad transport. */
279 return -EPROTONOSUPPORT;
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600280}
281EXPORT_SYMBOL_GPL(svc_create_xprt);
Tom Tucker9dbc2402007-12-30 21:08:12 -0600282
283/*
284 * Copy the local and remote xprt addresses to the rqstp structure
285 */
286void svc_xprt_copy_addrs(struct svc_rqst *rqstp, struct svc_xprt *xprt)
287{
Tom Tucker9dbc2402007-12-30 21:08:12 -0600288 memcpy(&rqstp->rq_addr, &xprt->xpt_remote, xprt->xpt_remotelen);
289 rqstp->rq_addrlen = xprt->xpt_remotelen;
290
291 /*
292 * Destination address in request is needed for binding the
293 * source address in RPC replies/callbacks later.
294 */
Mi Jinlong849a1cf2011-08-30 17:18:41 +0800295 memcpy(&rqstp->rq_daddr, &xprt->xpt_local, xprt->xpt_locallen);
296 rqstp->rq_daddrlen = xprt->xpt_locallen;
Tom Tucker9dbc2402007-12-30 21:08:12 -0600297}
298EXPORT_SYMBOL_GPL(svc_xprt_copy_addrs);
299
Tom Tucker0f0257e2007-12-30 21:08:27 -0600300/**
301 * svc_print_addr - Format rq_addr field for printing
302 * @rqstp: svc_rqst struct containing address to print
303 * @buf: target buffer for formatted address
304 * @len: length of target buffer
305 *
306 */
307char *svc_print_addr(struct svc_rqst *rqstp, char *buf, size_t len)
308{
309 return __svc_print_addr(svc_addr(rqstp), buf, len);
310}
311EXPORT_SYMBOL_GPL(svc_print_addr);
312
J. Bruce Fields9c335c02010-10-26 11:32:03 -0400313static bool svc_xprt_has_something_to_do(struct svc_xprt *xprt)
314{
315 if (xprt->xpt_flags & ((1<<XPT_CONN)|(1<<XPT_CLOSE)))
316 return true;
317 if (xprt->xpt_flags & ((1<<XPT_DATA)|(1<<XPT_DEFERRED)))
318 return xprt->xpt_ops->xpo_has_wspace(xprt);
319 return false;
320}
321
Jeff Laytonb9e13cd2015-06-08 12:06:51 -0700322void svc_xprt_do_enqueue(struct svc_xprt *xprt)
Tom Tucker0f0257e2007-12-30 21:08:27 -0600323{
Tom Tucker0f0257e2007-12-30 21:08:27 -0600324 struct svc_pool *pool;
Jeff Layton83a712e2014-11-21 14:19:31 -0500325 struct svc_rqst *rqstp = NULL;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600326 int cpu;
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500327 bool queued = false;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600328
J. Bruce Fields9c335c02010-10-26 11:32:03 -0400329 if (!svc_xprt_has_something_to_do(xprt))
Jeff Layton83a712e2014-11-21 14:19:31 -0500330 goto out;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600331
Tom Tucker0f0257e2007-12-30 21:08:27 -0600332 /* Mark transport as busy. It will remain in this state until
333 * the provider calls svc_xprt_received. We update XPT_BUSY
334 * atomically because it also guards against trying to enqueue
335 * the transport twice.
336 */
337 if (test_and_set_bit(XPT_BUSY, &xprt->xpt_flags)) {
338 /* Don't enqueue transport while already enqueued */
339 dprintk("svc: transport %p busy, not enqueued\n", xprt);
Jeff Layton83a712e2014-11-21 14:19:31 -0500340 goto out;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600341 }
Tom Tucker0f0257e2007-12-30 21:08:27 -0600342
Trond Myklebust0c0746d2014-08-03 13:03:12 -0400343 cpu = get_cpu();
344 pool = svc_pool_for_cpu(xprt->xpt_server, cpu);
Trond Myklebust0c0746d2014-08-03 13:03:12 -0400345
Jeff Layton403c7b42014-11-21 14:19:29 -0500346 atomic_long_inc(&pool->sp_stats.packets);
Trond Myklebust0c0746d2014-08-03 13:03:12 -0400347
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500348redo_search:
349 /* find a thread for this xprt */
350 rcu_read_lock();
351 list_for_each_entry_rcu(rqstp, &pool->sp_all_threads, rq_all) {
352 /* Do a lockless check first */
353 if (test_bit(RQ_BUSY, &rqstp->rq_flags))
354 continue;
355
356 /*
357 * Once the xprt has been queued, it can only be dequeued by
358 * the task that intends to service it. All we can do at that
359 * point is to try to wake this thread back up so that it can
360 * do so.
Trond Myklebust983c6842014-08-03 13:03:10 -0400361 */
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500362 if (!queued) {
363 spin_lock_bh(&rqstp->rq_lock);
364 if (test_and_set_bit(RQ_BUSY, &rqstp->rq_flags)) {
365 /* already busy, move on... */
366 spin_unlock_bh(&rqstp->rq_lock);
367 continue;
368 }
369
370 /* this one will do */
371 rqstp->rq_xprt = xprt;
372 svc_xprt_get(xprt);
373 spin_unlock_bh(&rqstp->rq_lock);
374 }
375 rcu_read_unlock();
376
Jeff Layton403c7b42014-11-21 14:19:29 -0500377 atomic_long_inc(&pool->sp_stats.threads_woken);
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500378 wake_up_process(rqstp->rq_task);
379 put_cpu();
Jeff Layton83a712e2014-11-21 14:19:31 -0500380 goto out;
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500381 }
382 rcu_read_unlock();
383
384 /*
385 * We didn't find an idle thread to use, so we need to queue the xprt.
386 * Do so and then search again. If we find one, we can't hook this one
387 * up to it directly but we can wake the thread up in the hopes that it
388 * will pick it up once it searches for a xprt to service.
389 */
390 if (!queued) {
391 queued = true;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600392 dprintk("svc: transport %p put into queue\n", xprt);
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500393 spin_lock_bh(&pool->sp_lock);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600394 list_add_tail(&xprt->xpt_ready, &pool->sp_sockets);
Greg Banks03cf6c92009-01-13 21:26:36 +1100395 pool->sp_stats.sockets_queued++;
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500396 spin_unlock_bh(&pool->sp_lock);
397 goto redo_search;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600398 }
Jeff Layton83a712e2014-11-21 14:19:31 -0500399 rqstp = NULL;
Trond Myklebust983c6842014-08-03 13:03:10 -0400400 put_cpu();
Jeff Layton83a712e2014-11-21 14:19:31 -0500401out:
402 trace_svc_xprt_do_enqueue(xprt, rqstp);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600403}
Jeff Laytonb9e13cd2015-06-08 12:06:51 -0700404EXPORT_SYMBOL_GPL(svc_xprt_do_enqueue);
Trond Myklebust09713742014-07-24 23:59:31 -0400405
406/*
407 * Queue up a transport with data pending. If there are idle nfsd
408 * processes, wake 'em up.
409 *
410 */
411void svc_xprt_enqueue(struct svc_xprt *xprt)
412{
413 if (test_bit(XPT_BUSY, &xprt->xpt_flags))
414 return;
Jeff Laytonb9e13cd2015-06-08 12:06:51 -0700415 xprt->xpt_server->sv_ops->svo_enqueue_xprt(xprt);
Trond Myklebust09713742014-07-24 23:59:31 -0400416}
Tom Tucker0f0257e2007-12-30 21:08:27 -0600417EXPORT_SYMBOL_GPL(svc_xprt_enqueue);
418
419/*
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500420 * Dequeue the first transport, if there is one.
Tom Tucker0f0257e2007-12-30 21:08:27 -0600421 */
422static struct svc_xprt *svc_xprt_dequeue(struct svc_pool *pool)
423{
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500424 struct svc_xprt *xprt = NULL;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600425
426 if (list_empty(&pool->sp_sockets))
Jeff Layton83a712e2014-11-21 14:19:31 -0500427 goto out;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600428
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500429 spin_lock_bh(&pool->sp_lock);
430 if (likely(!list_empty(&pool->sp_sockets))) {
431 xprt = list_first_entry(&pool->sp_sockets,
432 struct svc_xprt, xpt_ready);
433 list_del_init(&xprt->xpt_ready);
434 svc_xprt_get(xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600435
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500436 dprintk("svc: transport %p dequeued, inuse=%d\n",
437 xprt, atomic_read(&xprt->xpt_ref.refcount));
438 }
439 spin_unlock_bh(&pool->sp_lock);
Jeff Layton83a712e2014-11-21 14:19:31 -0500440out:
441 trace_svc_xprt_dequeue(xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600442 return xprt;
443}
444
Tom Tucker0f0257e2007-12-30 21:08:27 -0600445/**
446 * svc_reserve - change the space reserved for the reply to a request.
447 * @rqstp: The request in question
448 * @space: new max space to reserve
449 *
450 * Each request reserves some space on the output queue of the transport
451 * to make sure the reply fits. This function reduces that reserved
452 * space to be the amount of space used already, plus @space.
453 *
454 */
455void svc_reserve(struct svc_rqst *rqstp, int space)
456{
457 space += rqstp->rq_res.head[0].iov_len;
458
459 if (space < rqstp->rq_reserved) {
460 struct svc_xprt *xprt = rqstp->rq_xprt;
461 atomic_sub((rqstp->rq_reserved - space), &xprt->xpt_reserved);
462 rqstp->rq_reserved = space;
463
Trond Myklebust51877682014-07-24 23:59:33 -0400464 if (xprt->xpt_ops->xpo_adjust_wspace)
465 xprt->xpt_ops->xpo_adjust_wspace(xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600466 svc_xprt_enqueue(xprt);
467 }
468}
Trond Myklebust24c37672008-12-23 16:30:12 -0500469EXPORT_SYMBOL_GPL(svc_reserve);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600470
471static void svc_xprt_release(struct svc_rqst *rqstp)
472{
473 struct svc_xprt *xprt = rqstp->rq_xprt;
474
475 rqstp->rq_xprt->xpt_ops->xpo_release_rqst(rqstp);
476
Tom Tucker2779e3a2009-01-05 11:12:52 -0600477 kfree(rqstp->rq_deferred);
478 rqstp->rq_deferred = NULL;
479
Tom Tucker0f0257e2007-12-30 21:08:27 -0600480 svc_free_res_pages(rqstp);
481 rqstp->rq_res.page_len = 0;
482 rqstp->rq_res.page_base = 0;
483
484 /* Reset response buffer and release
485 * the reservation.
486 * But first, check that enough space was reserved
487 * for the reply, otherwise we have a bug!
488 */
489 if ((rqstp->rq_res.len) > rqstp->rq_reserved)
490 printk(KERN_ERR "RPC request reserved %d but used %d\n",
491 rqstp->rq_reserved,
492 rqstp->rq_res.len);
493
494 rqstp->rq_res.head[0].iov_len = 0;
495 svc_reserve(rqstp, 0);
496 rqstp->rq_xprt = NULL;
497
498 svc_xprt_put(xprt);
499}
500
501/*
Jeff Laytonceff7392014-11-19 07:51:21 -0500502 * Some svc_serv's will have occasional work to do, even when a xprt is not
503 * waiting to be serviced. This function is there to "kick" a task in one of
504 * those services so that it can wake up and do that work. Note that we only
505 * bother with pool 0 as we don't need to wake up more than one thread for
506 * this purpose.
Tom Tucker0f0257e2007-12-30 21:08:27 -0600507 */
508void svc_wake_up(struct svc_serv *serv)
509{
510 struct svc_rqst *rqstp;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600511 struct svc_pool *pool;
512
Jeff Laytonceff7392014-11-19 07:51:21 -0500513 pool = &serv->sv_pools[0];
Tom Tucker0f0257e2007-12-30 21:08:27 -0600514
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500515 rcu_read_lock();
516 list_for_each_entry_rcu(rqstp, &pool->sp_all_threads, rq_all) {
517 /* skip any that aren't queued */
518 if (test_bit(RQ_BUSY, &rqstp->rq_flags))
519 continue;
520 rcu_read_unlock();
Jeff Laytonceff7392014-11-19 07:51:21 -0500521 dprintk("svc: daemon %p woken up.\n", rqstp);
522 wake_up_process(rqstp->rq_task);
Jeff Layton83a712e2014-11-21 14:19:31 -0500523 trace_svc_wake_up(rqstp->rq_task->pid);
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500524 return;
525 }
526 rcu_read_unlock();
527
528 /* No free entries available */
529 set_bit(SP_TASK_PENDING, &pool->sp_flags);
530 smp_wmb();
Jeff Layton83a712e2014-11-21 14:19:31 -0500531 trace_svc_wake_up(0);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600532}
Trond Myklebust24c37672008-12-23 16:30:12 -0500533EXPORT_SYMBOL_GPL(svc_wake_up);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600534
535int svc_port_is_privileged(struct sockaddr *sin)
536{
537 switch (sin->sa_family) {
538 case AF_INET:
539 return ntohs(((struct sockaddr_in *)sin)->sin_port)
540 < PROT_SOCK;
541 case AF_INET6:
542 return ntohs(((struct sockaddr_in6 *)sin)->sin6_port)
543 < PROT_SOCK;
544 default:
545 return 0;
546 }
547}
548
549/*
Jeff Laytonc9233eb2008-10-20 11:51:57 -0400550 * Make sure that we don't have too many active connections. If we have,
551 * something must be dropped. It's not clear what will happen if we allow
552 * "too many" connections, but when dealing with network-facing software,
553 * we have to code defensively. Here we do that by imposing hard limits.
Tom Tucker0f0257e2007-12-30 21:08:27 -0600554 *
555 * There's no point in trying to do random drop here for DoS
556 * prevention. The NFS clients does 1 reconnect in 15 seconds. An
557 * attacker can easily beat that.
558 *
559 * The only somewhat efficient mechanism would be if drop old
560 * connections from the same IP first. But right now we don't even
561 * record the client IP in svc_sock.
Jeff Laytonc9233eb2008-10-20 11:51:57 -0400562 *
563 * single-threaded services that expect a lot of clients will probably
564 * need to set sv_maxconn to override the default value which is based
565 * on the number of threads
Tom Tucker0f0257e2007-12-30 21:08:27 -0600566 */
567static void svc_check_conn_limits(struct svc_serv *serv)
568{
Jeff Laytonc9233eb2008-10-20 11:51:57 -0400569 unsigned int limit = serv->sv_maxconn ? serv->sv_maxconn :
570 (serv->sv_nrthreads+3) * 20;
571
572 if (serv->sv_tmpcnt > limit) {
Tom Tucker0f0257e2007-12-30 21:08:27 -0600573 struct svc_xprt *xprt = NULL;
574 spin_lock_bh(&serv->sv_lock);
575 if (!list_empty(&serv->sv_tempsocks)) {
Joe Perchese87cc472012-05-13 21:56:26 +0000576 /* Try to help the admin */
577 net_notice_ratelimited("%s: too many open connections, consider increasing the %s\n",
578 serv->sv_name, serv->sv_maxconn ?
579 "max number of connections" :
580 "number of threads");
Tom Tucker0f0257e2007-12-30 21:08:27 -0600581 /*
582 * Always select the oldest connection. It's not fair,
583 * but so is life
584 */
585 xprt = list_entry(serv->sv_tempsocks.prev,
586 struct svc_xprt,
587 xpt_list);
588 set_bit(XPT_CLOSE, &xprt->xpt_flags);
589 svc_xprt_get(xprt);
590 }
591 spin_unlock_bh(&serv->sv_lock);
592
593 if (xprt) {
594 svc_xprt_enqueue(xprt);
595 svc_xprt_put(xprt);
596 }
597 }
598}
599
Rashika Kheriae1d83ee2014-02-09 22:33:03 +0530600static int svc_alloc_arg(struct svc_rqst *rqstp)
Tom Tucker0f0257e2007-12-30 21:08:27 -0600601{
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400602 struct svc_serv *serv = rqstp->rq_server;
603 struct xdr_buf *arg;
604 int pages;
605 int i;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600606
607 /* now allocate needed pages. If we get a failure, sleep briefly */
608 pages = (serv->sv_max_mesg + PAGE_SIZE) / PAGE_SIZE;
Weston Andros Adamsonb25cd052012-10-23 10:43:41 -0400609 WARN_ON_ONCE(pages >= RPCSVC_MAXPAGES);
610 if (pages >= RPCSVC_MAXPAGES)
611 /* use as many pages as possible */
612 pages = RPCSVC_MAXPAGES - 1;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600613 for (i = 0; i < pages ; i++)
614 while (rqstp->rq_pages[i] == NULL) {
615 struct page *p = alloc_page(GFP_KERNEL);
616 if (!p) {
Jeff Layton7b54fe62008-02-12 11:47:24 -0500617 set_current_state(TASK_INTERRUPTIBLE);
618 if (signalled() || kthread_should_stop()) {
619 set_current_state(TASK_RUNNING);
Jeff Layton70867212008-02-07 16:34:54 -0500620 return -EINTR;
Jeff Layton7b54fe62008-02-12 11:47:24 -0500621 }
622 schedule_timeout(msecs_to_jiffies(500));
Tom Tucker0f0257e2007-12-30 21:08:27 -0600623 }
624 rqstp->rq_pages[i] = p;
625 }
J. Bruce Fields2825a7f2013-08-26 16:04:46 -0400626 rqstp->rq_page_end = &rqstp->rq_pages[i];
Tom Tucker0f0257e2007-12-30 21:08:27 -0600627 rqstp->rq_pages[i++] = NULL; /* this might be seen in nfs_read_actor */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600628
629 /* Make arg->head point to first page and arg->pages point to rest */
630 arg = &rqstp->rq_arg;
631 arg->head[0].iov_base = page_address(rqstp->rq_pages[0]);
632 arg->head[0].iov_len = PAGE_SIZE;
633 arg->pages = rqstp->rq_pages + 1;
634 arg->page_base = 0;
635 /* save at least one page for response */
636 arg->page_len = (pages-2)*PAGE_SIZE;
637 arg->len = (pages-1)*PAGE_SIZE;
638 arg->tail[0].iov_len = 0;
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400639 return 0;
640}
Tom Tucker0f0257e2007-12-30 21:08:27 -0600641
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500642static bool
643rqst_should_sleep(struct svc_rqst *rqstp)
644{
645 struct svc_pool *pool = rqstp->rq_pool;
646
647 /* did someone call svc_wake_up? */
648 if (test_and_clear_bit(SP_TASK_PENDING, &pool->sp_flags))
649 return false;
650
651 /* was a socket queued? */
652 if (!list_empty(&pool->sp_sockets))
653 return false;
654
655 /* are we shutting down? */
656 if (signalled() || kthread_should_stop())
657 return false;
658
659 /* are we freezing? */
660 if (freezing(current))
661 return false;
662
663 return true;
664}
665
Rashika Kheriae1d83ee2014-02-09 22:33:03 +0530666static struct svc_xprt *svc_get_next_xprt(struct svc_rqst *rqstp, long timeout)
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400667{
668 struct svc_xprt *xprt;
669 struct svc_pool *pool = rqstp->rq_pool;
Trond Myklebusta4aa8052014-08-03 13:03:11 -0400670 long time_left = 0;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600671
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500672 /* rq_xprt should be clear on entry */
673 WARN_ON_ONCE(rqstp->rq_xprt);
674
NeilBrownf16b6e82010-08-12 17:04:06 +1000675 /* Normally we will wait up to 5 seconds for any required
676 * cache information to be provided.
677 */
678 rqstp->rq_chandle.thread_wait = 5*HZ;
679
Tom Tucker0f0257e2007-12-30 21:08:27 -0600680 xprt = svc_xprt_dequeue(pool);
681 if (xprt) {
682 rqstp->rq_xprt = xprt;
NeilBrownf16b6e82010-08-12 17:04:06 +1000683
684 /* As there is a shortage of threads and this request
J. Bruce Fields6610f722010-08-26 13:19:52 -0400685 * had to be queued, don't allow the thread to wait so
NeilBrownf16b6e82010-08-12 17:04:06 +1000686 * long for cache updates.
687 */
688 rqstp->rq_chandle.thread_wait = 1*HZ;
Jeff Layton4d5db3f2014-11-19 07:51:20 -0500689 clear_bit(SP_TASK_PENDING, &pool->sp_flags);
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500690 return xprt;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600691 }
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500692
693 /*
694 * We have to be able to interrupt this wait
695 * to bring down the daemons ...
696 */
697 set_current_state(TASK_INTERRUPTIBLE);
698 clear_bit(RQ_BUSY, &rqstp->rq_flags);
699 smp_mb();
700
701 if (likely(rqst_should_sleep(rqstp)))
702 time_left = schedule_timeout(timeout);
703 else
704 __set_current_state(TASK_RUNNING);
705
706 try_to_freeze();
707
708 spin_lock_bh(&rqstp->rq_lock);
709 set_bit(RQ_BUSY, &rqstp->rq_flags);
710 spin_unlock_bh(&rqstp->rq_lock);
711
712 xprt = rqstp->rq_xprt;
713 if (xprt != NULL)
714 return xprt;
715
716 if (!time_left)
717 atomic_long_inc(&pool->sp_stats.threads_timedout);
718
719 if (signalled() || kthread_should_stop())
720 return ERR_PTR(-EINTR);
721 return ERR_PTR(-EAGAIN);
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400722}
Tom Tucker0f0257e2007-12-30 21:08:27 -0600723
Rashika Kheriae1d83ee2014-02-09 22:33:03 +0530724static void svc_add_new_temp_xprt(struct svc_serv *serv, struct svc_xprt *newxpt)
J. Bruce Fields65b2e662012-08-18 15:44:33 -0400725{
726 spin_lock_bh(&serv->sv_lock);
727 set_bit(XPT_TEMP, &newxpt->xpt_flags);
728 list_add(&newxpt->xpt_list, &serv->sv_tempsocks);
729 serv->sv_tmpcnt++;
730 if (serv->sv_temptimer.function == NULL) {
731 /* setup timer to age temp transports */
732 setup_timer(&serv->sv_temptimer, svc_age_temp_xprts,
733 (unsigned long)serv);
734 mod_timer(&serv->sv_temptimer,
735 jiffies + svc_conn_age_period * HZ);
736 }
737 spin_unlock_bh(&serv->sv_lock);
738 svc_xprt_received(newxpt);
739}
740
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400741static int svc_handle_xprt(struct svc_rqst *rqstp, struct svc_xprt *xprt)
742{
743 struct svc_serv *serv = rqstp->rq_server;
744 int len = 0;
745
J. Bruce Fields1b644b62010-02-28 16:33:31 -0500746 if (test_bit(XPT_CLOSE, &xprt->xpt_flags)) {
747 dprintk("svc_recv: found XPT_CLOSE\n");
748 svc_delete_xprt(xprt);
J. Bruce Fieldsca7896c2010-10-25 14:12:40 -0400749 /* Leave XPT_BUSY set on the dead xprt: */
Jeff Layton83a712e2014-11-21 14:19:31 -0500750 goto out;
J. Bruce Fieldsca7896c2010-10-25 14:12:40 -0400751 }
752 if (test_bit(XPT_LISTENER, &xprt->xpt_flags)) {
Tom Tucker0f0257e2007-12-30 21:08:27 -0600753 struct svc_xprt *newxpt;
J. Bruce Fields65b2e662012-08-18 15:44:33 -0400754 /*
755 * We know this module_get will succeed because the
756 * listener holds a reference too
757 */
758 __module_get(xprt->xpt_class->xcl_owner);
759 svc_check_conn_limits(xprt->xpt_server);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600760 newxpt = xprt->xpt_ops->xpo_accept(xprt);
J. Bruce Fields65b2e662012-08-18 15:44:33 -0400761 if (newxpt)
762 svc_add_new_temp_xprt(serv, newxpt);
Trond Myklebustc7891022014-05-18 14:05:22 -0400763 else
764 module_put(xprt->xpt_class->xcl_owner);
Trond Myklebust9e5b2082014-08-03 13:03:06 -0400765 } else {
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400766 /* XPT_DATA|XPT_DEFERRED case: */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600767 dprintk("svc: server %p, pool %u, transport %p, inuse=%d\n",
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400768 rqstp, rqstp->rq_pool->sp_id, xprt,
Tom Tucker0f0257e2007-12-30 21:08:27 -0600769 atomic_read(&xprt->xpt_ref.refcount));
770 rqstp->rq_deferred = svc_deferred_dequeue(xprt);
J. Bruce Fieldsca7896c2010-10-25 14:12:40 -0400771 if (rqstp->rq_deferred)
Tom Tucker0f0257e2007-12-30 21:08:27 -0600772 len = svc_deferred_recv(rqstp);
J. Bruce Fieldsca7896c2010-10-25 14:12:40 -0400773 else
Tom Tucker0f0257e2007-12-30 21:08:27 -0600774 len = xprt->xpt_ops->xpo_recvfrom(rqstp);
775 dprintk("svc: got len=%d\n", len);
J. Bruce Fieldsd10f27a2012-08-17 17:31:53 -0400776 rqstp->rq_reserved = serv->sv_max_mesg;
777 atomic_add(rqstp->rq_reserved, &xprt->xpt_reserved);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600778 }
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400779 /* clear XPT_BUSY: */
J. Bruce Fieldsca7896c2010-10-25 14:12:40 -0400780 svc_xprt_received(xprt);
Jeff Layton83a712e2014-11-21 14:19:31 -0500781out:
782 trace_svc_handle_xprt(xprt, len);
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400783 return len;
784}
785
786/*
787 * Receive the next request on any transport. This code is carefully
788 * organised not to touch any cachelines in the shared svc_serv
789 * structure, only cachelines in the local svc_pool.
790 */
791int svc_recv(struct svc_rqst *rqstp, long timeout)
792{
793 struct svc_xprt *xprt = NULL;
794 struct svc_serv *serv = rqstp->rq_server;
795 int len, err;
796
797 dprintk("svc: server %p waiting for data (to = %ld)\n",
798 rqstp, timeout);
799
800 if (rqstp->rq_xprt)
801 printk(KERN_ERR
802 "svc_recv: service %p, transport not NULL!\n",
803 rqstp);
Trond Myklebust983c6842014-08-03 13:03:10 -0400804
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400805 err = svc_alloc_arg(rqstp);
806 if (err)
Jeff Layton860a0d92014-10-28 14:24:12 -0400807 goto out;
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400808
809 try_to_freeze();
810 cond_resched();
Jeff Layton860a0d92014-10-28 14:24:12 -0400811 err = -EINTR;
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400812 if (signalled() || kthread_should_stop())
Jeff Layton860a0d92014-10-28 14:24:12 -0400813 goto out;
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400814
815 xprt = svc_get_next_xprt(rqstp, timeout);
Jeff Layton860a0d92014-10-28 14:24:12 -0400816 if (IS_ERR(xprt)) {
817 err = PTR_ERR(xprt);
818 goto out;
819 }
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400820
821 len = svc_handle_xprt(rqstp, xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600822
823 /* No data, incomplete (TCP) read, or accept() */
Jeff Layton860a0d92014-10-28 14:24:12 -0400824 err = -EAGAIN;
J. Bruce Fields9f9d2eb2012-08-17 21:35:24 -0400825 if (len <= 0)
Jeff Layton860a0d92014-10-28 14:24:12 -0400826 goto out_release;
J. Bruce Fieldsca7896c2010-10-25 14:12:40 -0400827
Tom Tucker0f0257e2007-12-30 21:08:27 -0600828 clear_bit(XPT_OLD, &xprt->xpt_flags);
829
Jeff Layton4d152e22014-11-19 07:51:14 -0500830 if (xprt->xpt_ops->xpo_secure_port(rqstp))
831 set_bit(RQ_SECURE, &rqstp->rq_flags);
832 else
833 clear_bit(RQ_SECURE, &rqstp->rq_flags);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600834 rqstp->rq_chandle.defer = svc_defer;
Jeff Layton860a0d92014-10-28 14:24:12 -0400835 rqstp->rq_xid = svc_getu32(&rqstp->rq_arg.head[0]);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600836
837 if (serv->sv_stats)
838 serv->sv_stats->netcnt++;
Jeff Layton860a0d92014-10-28 14:24:12 -0400839 trace_svc_recv(rqstp, len);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600840 return len;
Jeff Layton860a0d92014-10-28 14:24:12 -0400841out_release:
J. Bruce Fieldsca7896c2010-10-25 14:12:40 -0400842 rqstp->rq_res.len = 0;
843 svc_xprt_release(rqstp);
Jeff Layton860a0d92014-10-28 14:24:12 -0400844out:
845 trace_svc_recv(rqstp, err);
846 return err;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600847}
Trond Myklebust24c37672008-12-23 16:30:12 -0500848EXPORT_SYMBOL_GPL(svc_recv);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600849
850/*
851 * Drop request
852 */
853void svc_drop(struct svc_rqst *rqstp)
854{
855 dprintk("svc: xprt %p dropped request\n", rqstp->rq_xprt);
856 svc_xprt_release(rqstp);
857}
Trond Myklebust24c37672008-12-23 16:30:12 -0500858EXPORT_SYMBOL_GPL(svc_drop);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600859
860/*
861 * Return reply to client.
862 */
863int svc_send(struct svc_rqst *rqstp)
864{
865 struct svc_xprt *xprt;
Jeff Layton860a0d92014-10-28 14:24:12 -0400866 int len = -EFAULT;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600867 struct xdr_buf *xb;
868
869 xprt = rqstp->rq_xprt;
870 if (!xprt)
Jeff Layton860a0d92014-10-28 14:24:12 -0400871 goto out;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600872
873 /* release the receive skb before sending the reply */
874 rqstp->rq_xprt->xpt_ops->xpo_release_rqst(rqstp);
875
876 /* calculate over-all length */
877 xb = &rqstp->rq_res;
878 xb->len = xb->head[0].iov_len +
879 xb->page_len +
880 xb->tail[0].iov_len;
881
882 /* Grab mutex to serialize outgoing data. */
883 mutex_lock(&xprt->xpt_mutex);
J. Bruce Fieldsf06f00a2012-08-20 16:04:40 -0400884 if (test_bit(XPT_DEAD, &xprt->xpt_flags)
885 || test_bit(XPT_CLOSE, &xprt->xpt_flags))
Tom Tucker0f0257e2007-12-30 21:08:27 -0600886 len = -ENOTCONN;
887 else
888 len = xprt->xpt_ops->xpo_sendto(rqstp);
889 mutex_unlock(&xprt->xpt_mutex);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300890 rpc_wake_up(&xprt->xpt_bc_pending);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600891 svc_xprt_release(rqstp);
892
893 if (len == -ECONNREFUSED || len == -ENOTCONN || len == -EAGAIN)
Jeff Layton860a0d92014-10-28 14:24:12 -0400894 len = 0;
895out:
896 trace_svc_send(rqstp, len);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600897 return len;
898}
899
900/*
901 * Timer function to close old temporary transports, using
902 * a mark-and-sweep algorithm.
903 */
904static void svc_age_temp_xprts(unsigned long closure)
905{
906 struct svc_serv *serv = (struct svc_serv *)closure;
907 struct svc_xprt *xprt;
908 struct list_head *le, *next;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600909
910 dprintk("svc_age_temp_xprts\n");
911
912 if (!spin_trylock_bh(&serv->sv_lock)) {
913 /* busy, try again 1 sec later */
914 dprintk("svc_age_temp_xprts: busy\n");
915 mod_timer(&serv->sv_temptimer, jiffies + HZ);
916 return;
917 }
918
919 list_for_each_safe(le, next, &serv->sv_tempsocks) {
920 xprt = list_entry(le, struct svc_xprt, xpt_list);
921
922 /* First time through, just mark it OLD. Second time
923 * through, close it. */
924 if (!test_and_set_bit(XPT_OLD, &xprt->xpt_flags))
925 continue;
Joe Perchesf64f9e72009-11-29 16:55:45 -0800926 if (atomic_read(&xprt->xpt_ref.refcount) > 1 ||
927 test_bit(XPT_BUSY, &xprt->xpt_flags))
Tom Tucker0f0257e2007-12-30 21:08:27 -0600928 continue;
J. Bruce Fieldse75bafb2013-02-10 11:33:48 -0500929 list_del_init(le);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600930 set_bit(XPT_CLOSE, &xprt->xpt_flags);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600931 dprintk("queuing xprt %p for closing\n", xprt);
932
933 /* a thread will dequeue and close it soon */
934 svc_xprt_enqueue(xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600935 }
J. Bruce Fieldse75bafb2013-02-10 11:33:48 -0500936 spin_unlock_bh(&serv->sv_lock);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600937
938 mod_timer(&serv->sv_temptimer, jiffies + svc_conn_age_period * HZ);
939}
940
J. Bruce Fieldsedc7a892010-03-22 15:37:17 -0400941static void call_xpt_users(struct svc_xprt *xprt)
942{
943 struct svc_xpt_user *u;
944
945 spin_lock(&xprt->xpt_lock);
946 while (!list_empty(&xprt->xpt_users)) {
947 u = list_first_entry(&xprt->xpt_users, struct svc_xpt_user, list);
948 list_del(&u->list);
949 u->callback(u);
950 }
951 spin_unlock(&xprt->xpt_lock);
952}
953
Tom Tucker0f0257e2007-12-30 21:08:27 -0600954/*
955 * Remove a dead transport
956 */
J. Bruce Fields7710ec32011-11-25 18:44:05 -0500957static void svc_delete_xprt(struct svc_xprt *xprt)
Tom Tucker0f0257e2007-12-30 21:08:27 -0600958{
959 struct svc_serv *serv = xprt->xpt_server;
Tom Tucker22945e42009-01-05 15:21:19 -0600960 struct svc_deferred_req *dr;
961
962 /* Only do this once */
963 if (test_and_set_bit(XPT_DEAD, &xprt->xpt_flags))
J. Bruce Fieldsac9303e2010-10-23 11:16:10 -0400964 BUG();
Tom Tucker0f0257e2007-12-30 21:08:27 -0600965
966 dprintk("svc: svc_delete_xprt(%p)\n", xprt);
967 xprt->xpt_ops->xpo_detach(xprt);
968
969 spin_lock_bh(&serv->sv_lock);
Jeff Layton8d65ef72014-11-17 17:02:57 -0500970 list_del_init(&xprt->xpt_list);
Weston Andros Adamson01047292012-10-23 10:43:48 -0400971 WARN_ON_ONCE(!list_empty(&xprt->xpt_ready));
Tom Tucker22945e42009-01-05 15:21:19 -0600972 if (test_bit(XPT_TEMP, &xprt->xpt_flags))
973 serv->sv_tmpcnt--;
J. Bruce Fields788e69e2010-03-29 21:02:31 -0400974 spin_unlock_bh(&serv->sv_lock);
Tom Tucker22945e42009-01-05 15:21:19 -0600975
Neil Brownab1b18f2010-02-27 09:33:40 +1100976 while ((dr = svc_deferred_dequeue(xprt)) != NULL)
Tom Tucker22945e42009-01-05 15:21:19 -0600977 kfree(dr);
Tom Tucker22945e42009-01-05 15:21:19 -0600978
J. Bruce Fieldsedc7a892010-03-22 15:37:17 -0400979 call_xpt_users(xprt);
Tom Tucker22945e42009-01-05 15:21:19 -0600980 svc_xprt_put(xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600981}
982
983void svc_close_xprt(struct svc_xprt *xprt)
984{
985 set_bit(XPT_CLOSE, &xprt->xpt_flags);
986 if (test_and_set_bit(XPT_BUSY, &xprt->xpt_flags))
987 /* someone else will have to effect the close */
988 return;
J. Bruce Fieldsb1763312010-10-25 20:24:48 -0400989 /*
990 * We expect svc_close_xprt() to work even when no threads are
991 * running (e.g., while configuring the server before starting
992 * any threads), so if the transport isn't busy, we delete
993 * it ourself:
994 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600995 svc_delete_xprt(xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600996}
Tom Tuckera2178132007-12-30 21:08:35 -0600997EXPORT_SYMBOL_GPL(svc_close_xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600998
J. Bruce Fieldscc630d92013-02-10 16:08:11 -0500999static int svc_close_list(struct svc_serv *serv, struct list_head *xprt_list, struct net *net)
Tom Tucker0f0257e2007-12-30 21:08:27 -06001000{
1001 struct svc_xprt *xprt;
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001002 int ret = 0;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001003
J. Bruce Fields719f8bc2012-08-13 17:03:00 -04001004 spin_lock(&serv->sv_lock);
J. Bruce Fieldsb4f36f82011-11-29 17:00:26 -05001005 list_for_each_entry(xprt, xprt_list, xpt_list) {
Stanislav Kinsbursky7b147f12012-01-31 14:09:17 +04001006 if (xprt->xpt_net != net)
1007 continue;
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001008 ret++;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001009 set_bit(XPT_CLOSE, &xprt->xpt_flags);
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001010 svc_xprt_enqueue(xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001011 }
J. Bruce Fields719f8bc2012-08-13 17:03:00 -04001012 spin_unlock(&serv->sv_lock);
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001013 return ret;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001014}
1015
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001016static struct svc_xprt *svc_dequeue_net(struct svc_serv *serv, struct net *net)
J. Bruce Fields2fefb8a2011-11-29 11:35:35 -05001017{
J. Bruce Fieldsb4f36f82011-11-29 17:00:26 -05001018 struct svc_pool *pool;
1019 struct svc_xprt *xprt;
1020 struct svc_xprt *tmp;
1021 int i;
1022
J. Bruce Fieldsb4f36f82011-11-29 17:00:26 -05001023 for (i = 0; i < serv->sv_nrpools; i++) {
1024 pool = &serv->sv_pools[i];
1025
1026 spin_lock_bh(&pool->sp_lock);
Stanislav Kinsbursky6f513362012-01-31 14:09:00 +04001027 list_for_each_entry_safe(xprt, tmp, &pool->sp_sockets, xpt_ready) {
Stanislav Kinsbursky7b147f12012-01-31 14:09:17 +04001028 if (xprt->xpt_net != net)
1029 continue;
J. Bruce Fieldsb4f36f82011-11-29 17:00:26 -05001030 list_del_init(&xprt->xpt_ready);
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001031 spin_unlock_bh(&pool->sp_lock);
1032 return xprt;
J. Bruce Fieldsb4f36f82011-11-29 17:00:26 -05001033 }
1034 spin_unlock_bh(&pool->sp_lock);
1035 }
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001036 return NULL;
Stanislav Kinsbursky6f513362012-01-31 14:09:00 +04001037}
1038
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001039static void svc_clean_up_xprts(struct svc_serv *serv, struct net *net)
Stanislav Kinsbursky6f513362012-01-31 14:09:00 +04001040{
1041 struct svc_xprt *xprt;
Stanislav Kinsbursky6f513362012-01-31 14:09:00 +04001042
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001043 while ((xprt = svc_dequeue_net(serv, net))) {
1044 set_bit(XPT_CLOSE, &xprt->xpt_flags);
J. Bruce Fields719f8bc2012-08-13 17:03:00 -04001045 svc_delete_xprt(xprt);
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001046 }
Stanislav Kinsbursky3a22bf52012-01-31 14:09:08 +04001047}
1048
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001049/*
1050 * Server threads may still be running (especially in the case where the
1051 * service is still running in other network namespaces).
1052 *
1053 * So we shut down sockets the same way we would on a running server, by
1054 * setting XPT_CLOSE, enqueuing, and letting a thread pick it up to do
1055 * the close. In the case there are no such other threads,
1056 * threads running, svc_clean_up_xprts() does a simple version of a
1057 * server's main event loop, and in the case where there are other
1058 * threads, we may need to wait a little while and then check again to
1059 * see if they're done.
1060 */
Stanislav Kinsbursky7b147f12012-01-31 14:09:17 +04001061void svc_close_net(struct svc_serv *serv, struct net *net)
Stanislav Kinsbursky3a22bf52012-01-31 14:09:08 +04001062{
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001063 int delay = 0;
Stanislav Kinsbursky6f513362012-01-31 14:09:00 +04001064
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001065 while (svc_close_list(serv, &serv->sv_permsocks, net) +
1066 svc_close_list(serv, &serv->sv_tempsocks, net)) {
1067
1068 svc_clean_up_xprts(serv, net);
1069 msleep(delay++);
1070 }
J. Bruce Fields2fefb8a2011-11-29 11:35:35 -05001071}
1072
Tom Tucker0f0257e2007-12-30 21:08:27 -06001073/*
1074 * Handle defer and revisit of requests
1075 */
1076
1077static void svc_revisit(struct cache_deferred_req *dreq, int too_many)
1078{
1079 struct svc_deferred_req *dr =
1080 container_of(dreq, struct svc_deferred_req, handle);
1081 struct svc_xprt *xprt = dr->xprt;
1082
Tom Tucker22945e42009-01-05 15:21:19 -06001083 spin_lock(&xprt->xpt_lock);
1084 set_bit(XPT_DEFERRED, &xprt->xpt_flags);
1085 if (too_many || test_bit(XPT_DEAD, &xprt->xpt_flags)) {
1086 spin_unlock(&xprt->xpt_lock);
1087 dprintk("revisit canceled\n");
Tom Tucker0f0257e2007-12-30 21:08:27 -06001088 svc_xprt_put(xprt);
1089 kfree(dr);
1090 return;
1091 }
1092 dprintk("revisit queued\n");
1093 dr->xprt = NULL;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001094 list_add(&dr->handle.recent, &xprt->xpt_deferred);
1095 spin_unlock(&xprt->xpt_lock);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001096 svc_xprt_enqueue(xprt);
1097 svc_xprt_put(xprt);
1098}
1099
Tom Tucker260c1d12007-12-30 21:08:29 -06001100/*
1101 * Save the request off for later processing. The request buffer looks
1102 * like this:
1103 *
1104 * <xprt-header><rpc-header><rpc-pagelist><rpc-tail>
1105 *
1106 * This code can only handle requests that consist of an xprt-header
1107 * and rpc-header.
1108 */
Tom Tucker0f0257e2007-12-30 21:08:27 -06001109static struct cache_deferred_req *svc_defer(struct cache_req *req)
1110{
1111 struct svc_rqst *rqstp = container_of(req, struct svc_rqst, rq_chandle);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001112 struct svc_deferred_req *dr;
1113
Jeff Layton30660e04b2014-11-19 07:51:16 -05001114 if (rqstp->rq_arg.page_len || !test_bit(RQ_USEDEFERRAL, &rqstp->rq_flags))
Tom Tucker0f0257e2007-12-30 21:08:27 -06001115 return NULL; /* if more than a page, give up FIXME */
1116 if (rqstp->rq_deferred) {
1117 dr = rqstp->rq_deferred;
1118 rqstp->rq_deferred = NULL;
1119 } else {
Tom Tucker260c1d12007-12-30 21:08:29 -06001120 size_t skip;
1121 size_t size;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001122 /* FIXME maybe discard if size too large */
Tom Tucker260c1d12007-12-30 21:08:29 -06001123 size = sizeof(struct svc_deferred_req) + rqstp->rq_arg.len;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001124 dr = kmalloc(size, GFP_KERNEL);
1125 if (dr == NULL)
1126 return NULL;
1127
1128 dr->handle.owner = rqstp->rq_server;
1129 dr->prot = rqstp->rq_prot;
1130 memcpy(&dr->addr, &rqstp->rq_addr, rqstp->rq_addrlen);
1131 dr->addrlen = rqstp->rq_addrlen;
1132 dr->daddr = rqstp->rq_daddr;
1133 dr->argslen = rqstp->rq_arg.len >> 2;
Tom Tucker260c1d12007-12-30 21:08:29 -06001134 dr->xprt_hlen = rqstp->rq_xprt_hlen;
1135
1136 /* back up head to the start of the buffer and copy */
1137 skip = rqstp->rq_arg.len - rqstp->rq_arg.head[0].iov_len;
1138 memcpy(dr->args, rqstp->rq_arg.head[0].iov_base - skip,
1139 dr->argslen << 2);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001140 }
1141 svc_xprt_get(rqstp->rq_xprt);
1142 dr->xprt = rqstp->rq_xprt;
Jeff Layton78b65eb2014-11-19 07:51:17 -05001143 set_bit(RQ_DROPME, &rqstp->rq_flags);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001144
1145 dr->handle.revisit = svc_revisit;
1146 return &dr->handle;
1147}
1148
1149/*
1150 * recv data from a deferred request into an active one
1151 */
1152static int svc_deferred_recv(struct svc_rqst *rqstp)
1153{
1154 struct svc_deferred_req *dr = rqstp->rq_deferred;
1155
Tom Tucker260c1d12007-12-30 21:08:29 -06001156 /* setup iov_base past transport header */
1157 rqstp->rq_arg.head[0].iov_base = dr->args + (dr->xprt_hlen>>2);
1158 /* The iov_len does not include the transport header bytes */
1159 rqstp->rq_arg.head[0].iov_len = (dr->argslen<<2) - dr->xprt_hlen;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001160 rqstp->rq_arg.page_len = 0;
Tom Tucker260c1d12007-12-30 21:08:29 -06001161 /* The rq_arg.len includes the transport header bytes */
1162 rqstp->rq_arg.len = dr->argslen<<2;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001163 rqstp->rq_prot = dr->prot;
1164 memcpy(&rqstp->rq_addr, &dr->addr, dr->addrlen);
1165 rqstp->rq_addrlen = dr->addrlen;
Tom Tucker260c1d12007-12-30 21:08:29 -06001166 /* Save off transport header len in case we get deferred again */
1167 rqstp->rq_xprt_hlen = dr->xprt_hlen;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001168 rqstp->rq_daddr = dr->daddr;
1169 rqstp->rq_respages = rqstp->rq_pages;
Tom Tucker260c1d12007-12-30 21:08:29 -06001170 return (dr->argslen<<2) - dr->xprt_hlen;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001171}
1172
1173
1174static struct svc_deferred_req *svc_deferred_dequeue(struct svc_xprt *xprt)
1175{
1176 struct svc_deferred_req *dr = NULL;
1177
1178 if (!test_bit(XPT_DEFERRED, &xprt->xpt_flags))
1179 return NULL;
1180 spin_lock(&xprt->xpt_lock);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001181 if (!list_empty(&xprt->xpt_deferred)) {
1182 dr = list_entry(xprt->xpt_deferred.next,
1183 struct svc_deferred_req,
1184 handle.recent);
1185 list_del_init(&dr->handle.recent);
J. Bruce Fields62bac4a2010-10-25 12:50:15 -04001186 } else
1187 clear_bit(XPT_DEFERRED, &xprt->xpt_flags);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001188 spin_unlock(&xprt->xpt_lock);
1189 return dr;
1190}
Tom Tucker7fcb98d2007-12-30 21:08:33 -06001191
Chuck Lever156e6202009-03-18 20:45:58 -04001192/**
1193 * svc_find_xprt - find an RPC transport instance
1194 * @serv: pointer to svc_serv to search
1195 * @xcl_name: C string containing transport's class name
Stanislav Kinsbursky4cb54ca2012-01-20 16:50:53 +04001196 * @net: owner net pointer
Chuck Lever156e6202009-03-18 20:45:58 -04001197 * @af: Address family of transport's local address
1198 * @port: transport's IP port number
1199 *
Tom Tucker7fcb98d2007-12-30 21:08:33 -06001200 * Return the transport instance pointer for the endpoint accepting
1201 * connections/peer traffic from the specified transport class,
1202 * address family and port.
1203 *
1204 * Specifying 0 for the address family or port is effectively a
1205 * wild-card, and will result in matching the first transport in the
1206 * service's list that has a matching class name.
1207 */
Chuck Lever156e6202009-03-18 20:45:58 -04001208struct svc_xprt *svc_find_xprt(struct svc_serv *serv, const char *xcl_name,
Stanislav Kinsbursky4cb54ca2012-01-20 16:50:53 +04001209 struct net *net, const sa_family_t af,
1210 const unsigned short port)
Tom Tucker7fcb98d2007-12-30 21:08:33 -06001211{
1212 struct svc_xprt *xprt;
1213 struct svc_xprt *found = NULL;
1214
1215 /* Sanity check the args */
Chuck Lever156e6202009-03-18 20:45:58 -04001216 if (serv == NULL || xcl_name == NULL)
Tom Tucker7fcb98d2007-12-30 21:08:33 -06001217 return found;
1218
1219 spin_lock_bh(&serv->sv_lock);
1220 list_for_each_entry(xprt, &serv->sv_permsocks, xpt_list) {
Stanislav Kinsbursky4cb54ca2012-01-20 16:50:53 +04001221 if (xprt->xpt_net != net)
1222 continue;
Tom Tucker7fcb98d2007-12-30 21:08:33 -06001223 if (strcmp(xprt->xpt_class->xcl_name, xcl_name))
1224 continue;
1225 if (af != AF_UNSPEC && af != xprt->xpt_local.ss_family)
1226 continue;
Chuck Lever156e6202009-03-18 20:45:58 -04001227 if (port != 0 && port != svc_xprt_local_port(xprt))
Tom Tucker7fcb98d2007-12-30 21:08:33 -06001228 continue;
1229 found = xprt;
Tom Tuckera2178132007-12-30 21:08:35 -06001230 svc_xprt_get(xprt);
Tom Tucker7fcb98d2007-12-30 21:08:33 -06001231 break;
1232 }
1233 spin_unlock_bh(&serv->sv_lock);
1234 return found;
1235}
1236EXPORT_SYMBOL_GPL(svc_find_xprt);
Tom Tucker9571af12007-12-30 21:08:37 -06001237
Chuck Lever335c54b2009-04-23 19:32:25 -04001238static int svc_one_xprt_name(const struct svc_xprt *xprt,
1239 char *pos, int remaining)
1240{
1241 int len;
1242
1243 len = snprintf(pos, remaining, "%s %u\n",
1244 xprt->xpt_class->xcl_name,
1245 svc_xprt_local_port(xprt));
1246 if (len >= remaining)
1247 return -ENAMETOOLONG;
1248 return len;
1249}
1250
1251/**
1252 * svc_xprt_names - format a buffer with a list of transport names
1253 * @serv: pointer to an RPC service
1254 * @buf: pointer to a buffer to be filled in
1255 * @buflen: length of buffer to be filled in
1256 *
1257 * Fills in @buf with a string containing a list of transport names,
1258 * each name terminated with '\n'.
1259 *
1260 * Returns positive length of the filled-in string on success; otherwise
1261 * a negative errno value is returned if an error occurs.
Tom Tucker9571af12007-12-30 21:08:37 -06001262 */
Chuck Lever335c54b2009-04-23 19:32:25 -04001263int svc_xprt_names(struct svc_serv *serv, char *buf, const int buflen)
Tom Tucker9571af12007-12-30 21:08:37 -06001264{
1265 struct svc_xprt *xprt;
Chuck Lever335c54b2009-04-23 19:32:25 -04001266 int len, totlen;
1267 char *pos;
Tom Tucker9571af12007-12-30 21:08:37 -06001268
1269 /* Sanity check args */
1270 if (!serv)
1271 return 0;
1272
1273 spin_lock_bh(&serv->sv_lock);
Chuck Lever335c54b2009-04-23 19:32:25 -04001274
1275 pos = buf;
1276 totlen = 0;
Tom Tucker9571af12007-12-30 21:08:37 -06001277 list_for_each_entry(xprt, &serv->sv_permsocks, xpt_list) {
Chuck Lever335c54b2009-04-23 19:32:25 -04001278 len = svc_one_xprt_name(xprt, pos, buflen - totlen);
1279 if (len < 0) {
1280 *buf = '\0';
1281 totlen = len;
1282 }
1283 if (len <= 0)
Tom Tucker9571af12007-12-30 21:08:37 -06001284 break;
Chuck Lever335c54b2009-04-23 19:32:25 -04001285
1286 pos += len;
Tom Tucker9571af12007-12-30 21:08:37 -06001287 totlen += len;
1288 }
Chuck Lever335c54b2009-04-23 19:32:25 -04001289
Tom Tucker9571af12007-12-30 21:08:37 -06001290 spin_unlock_bh(&serv->sv_lock);
1291 return totlen;
1292}
1293EXPORT_SYMBOL_GPL(svc_xprt_names);
Greg Banks03cf6c92009-01-13 21:26:36 +11001294
1295
1296/*----------------------------------------------------------------------------*/
1297
1298static void *svc_pool_stats_start(struct seq_file *m, loff_t *pos)
1299{
1300 unsigned int pidx = (unsigned int)*pos;
1301 struct svc_serv *serv = m->private;
1302
1303 dprintk("svc_pool_stats_start, *pidx=%u\n", pidx);
1304
Greg Banks03cf6c92009-01-13 21:26:36 +11001305 if (!pidx)
1306 return SEQ_START_TOKEN;
1307 return (pidx > serv->sv_nrpools ? NULL : &serv->sv_pools[pidx-1]);
1308}
1309
1310static void *svc_pool_stats_next(struct seq_file *m, void *p, loff_t *pos)
1311{
1312 struct svc_pool *pool = p;
1313 struct svc_serv *serv = m->private;
1314
1315 dprintk("svc_pool_stats_next, *pos=%llu\n", *pos);
1316
1317 if (p == SEQ_START_TOKEN) {
1318 pool = &serv->sv_pools[0];
1319 } else {
1320 unsigned int pidx = (pool - &serv->sv_pools[0]);
1321 if (pidx < serv->sv_nrpools-1)
1322 pool = &serv->sv_pools[pidx+1];
1323 else
1324 pool = NULL;
1325 }
1326 ++*pos;
1327 return pool;
1328}
1329
1330static void svc_pool_stats_stop(struct seq_file *m, void *p)
1331{
Greg Banks03cf6c92009-01-13 21:26:36 +11001332}
1333
1334static int svc_pool_stats_show(struct seq_file *m, void *p)
1335{
1336 struct svc_pool *pool = p;
1337
1338 if (p == SEQ_START_TOKEN) {
J. Bruce Fields78c210e2009-08-06 15:41:34 -04001339 seq_puts(m, "# pool packets-arrived sockets-enqueued threads-woken threads-timedout\n");
Greg Banks03cf6c92009-01-13 21:26:36 +11001340 return 0;
1341 }
1342
J. Bruce Fields78c210e2009-08-06 15:41:34 -04001343 seq_printf(m, "%u %lu %lu %lu %lu\n",
Greg Banks03cf6c92009-01-13 21:26:36 +11001344 pool->sp_id,
Jeff Layton403c7b42014-11-21 14:19:29 -05001345 (unsigned long)atomic_long_read(&pool->sp_stats.packets),
Greg Banks03cf6c92009-01-13 21:26:36 +11001346 pool->sp_stats.sockets_queued,
Jeff Layton403c7b42014-11-21 14:19:29 -05001347 (unsigned long)atomic_long_read(&pool->sp_stats.threads_woken),
1348 (unsigned long)atomic_long_read(&pool->sp_stats.threads_timedout));
Greg Banks03cf6c92009-01-13 21:26:36 +11001349
1350 return 0;
1351}
1352
1353static const struct seq_operations svc_pool_stats_seq_ops = {
1354 .start = svc_pool_stats_start,
1355 .next = svc_pool_stats_next,
1356 .stop = svc_pool_stats_stop,
1357 .show = svc_pool_stats_show,
1358};
1359
1360int svc_pool_stats_open(struct svc_serv *serv, struct file *file)
1361{
1362 int err;
1363
1364 err = seq_open(file, &svc_pool_stats_seq_ops);
1365 if (!err)
1366 ((struct seq_file *) file->private_data)->private = serv;
1367 return err;
1368}
1369EXPORT_SYMBOL(svc_pool_stats_open);
1370
1371/*----------------------------------------------------------------------------*/