blob: eaa9263c2d28475724f6b831083ed7faedbe584c [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);
Trond Myklebust09713742014-07-24 23:59:31 -040027static void svc_xprt_do_enqueue(struct svc_xprt *xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -060028
29/* apparently the "standard" is that clients close
30 * idle connections after 5 minutes, servers after
31 * 6 minutes
32 * http://www.connectathon.org/talks96/nfstcp.pdf
33 */
34static int svc_conn_age_period = 6*60;
35
Tom Tucker1d8206b92007-12-30 21:07:15 -060036/* List of registered transport classes */
37static DEFINE_SPINLOCK(svc_xprt_class_lock);
38static LIST_HEAD(svc_xprt_class_list);
39
Tom Tucker0f0257e2007-12-30 21:08:27 -060040/* SMP locking strategy:
41 *
42 * svc_pool->sp_lock protects most of the fields of that pool.
43 * svc_serv->sv_lock protects sv_tempsocks, sv_permsocks, sv_tmpcnt.
44 * when both need to be taken (rare), svc_serv->sv_lock is first.
45 * BKL protects svc_serv->sv_nrthread.
46 * svc_sock->sk_lock protects the svc_sock->sk_deferred list
47 * and the ->sk_info_authunix cache.
48 *
49 * The XPT_BUSY bit in xprt->xpt_flags prevents a transport being
50 * enqueued multiply. During normal transport processing this bit
51 * is set by svc_xprt_enqueue and cleared by svc_xprt_received.
52 * Providers should not manipulate this bit directly.
53 *
54 * Some flags can be set to certain values at any time
55 * providing that certain rules are followed:
56 *
57 * XPT_CONN, XPT_DATA:
58 * - Can be set or cleared at any time.
59 * - After a set, svc_xprt_enqueue must be called to enqueue
60 * the transport for processing.
61 * - After a clear, the transport must be read/accepted.
62 * If this succeeds, it must be set again.
63 * XPT_CLOSE:
64 * - Can set at any time. It is never cleared.
65 * XPT_DEAD:
66 * - Can only be set while XPT_BUSY is held which ensures
67 * that no other thread will be using the transport or will
68 * try to set XPT_DEAD.
69 */
70
Tom Tucker1d8206b92007-12-30 21:07:15 -060071int svc_reg_xprt_class(struct svc_xprt_class *xcl)
72{
73 struct svc_xprt_class *cl;
74 int res = -EEXIST;
75
76 dprintk("svc: Adding svc transport class '%s'\n", xcl->xcl_name);
77
78 INIT_LIST_HEAD(&xcl->xcl_list);
79 spin_lock(&svc_xprt_class_lock);
80 /* Make sure there isn't already a class with the same name */
81 list_for_each_entry(cl, &svc_xprt_class_list, xcl_list) {
82 if (strcmp(xcl->xcl_name, cl->xcl_name) == 0)
83 goto out;
84 }
85 list_add_tail(&xcl->xcl_list, &svc_xprt_class_list);
86 res = 0;
87out:
88 spin_unlock(&svc_xprt_class_lock);
89 return res;
90}
91EXPORT_SYMBOL_GPL(svc_reg_xprt_class);
92
93void svc_unreg_xprt_class(struct svc_xprt_class *xcl)
94{
95 dprintk("svc: Removing svc transport class '%s'\n", xcl->xcl_name);
96 spin_lock(&svc_xprt_class_lock);
97 list_del_init(&xcl->xcl_list);
98 spin_unlock(&svc_xprt_class_lock);
99}
100EXPORT_SYMBOL_GPL(svc_unreg_xprt_class);
101
Tom Tuckerdc9a16e2007-12-30 21:08:31 -0600102/*
103 * Format the transport list for printing
104 */
105int svc_print_xprts(char *buf, int maxlen)
106{
Pavel Emelyanov8f3a6de2010-10-05 23:30:19 +0400107 struct svc_xprt_class *xcl;
Tom Tuckerdc9a16e2007-12-30 21:08:31 -0600108 char tmpstr[80];
109 int len = 0;
110 buf[0] = '\0';
111
112 spin_lock(&svc_xprt_class_lock);
Pavel Emelyanov8f3a6de2010-10-05 23:30:19 +0400113 list_for_each_entry(xcl, &svc_xprt_class_list, xcl_list) {
Tom Tuckerdc9a16e2007-12-30 21:08:31 -0600114 int slen;
Tom Tuckerdc9a16e2007-12-30 21:08:31 -0600115
116 sprintf(tmpstr, "%s %d\n", xcl->xcl_name, xcl->xcl_max_payload);
117 slen = strlen(tmpstr);
118 if (len + slen > maxlen)
119 break;
120 len += slen;
121 strcat(buf, tmpstr);
122 }
123 spin_unlock(&svc_xprt_class_lock);
124
125 return len;
126}
127
Tom Tuckere1b31572007-12-30 21:07:46 -0600128static void svc_xprt_free(struct kref *kref)
129{
130 struct svc_xprt *xprt =
131 container_of(kref, struct svc_xprt, xpt_ref);
132 struct module *owner = xprt->xpt_class->xcl_owner;
Pavel Emelyanove3bfca02010-09-27 13:58:42 +0400133 if (test_bit(XPT_CACHE_AUTH, &xprt->xpt_flags))
134 svcauth_unix_info_release(xprt);
Pavel Emelyanov4fb85182010-09-27 14:00:49 +0400135 put_net(xprt->xpt_net);
J. Bruce Fields99de8ea2010-12-08 12:45:44 -0500136 /* See comment on corresponding get in xs_setup_bc_tcp(): */
137 if (xprt->xpt_bc_xprt)
138 xprt_put(xprt->xpt_bc_xprt);
Tom Tuckere1b31572007-12-30 21:07:46 -0600139 xprt->xpt_ops->xpo_free(xprt);
140 module_put(owner);
141}
142
143void svc_xprt_put(struct svc_xprt *xprt)
144{
145 kref_put(&xprt->xpt_ref, svc_xprt_free);
146}
147EXPORT_SYMBOL_GPL(svc_xprt_put);
148
Tom Tucker1d8206b92007-12-30 21:07:15 -0600149/*
150 * Called by transport drivers to initialize the transport independent
151 * portion of the transport instance.
152 */
Stanislav Kinsburskybd4620d2011-12-06 14:19:10 +0300153void svc_xprt_init(struct net *net, struct svc_xprt_class *xcl,
154 struct svc_xprt *xprt, struct svc_serv *serv)
Tom Tucker1d8206b92007-12-30 21:07:15 -0600155{
156 memset(xprt, 0, sizeof(*xprt));
157 xprt->xpt_class = xcl;
158 xprt->xpt_ops = xcl->xcl_ops;
Tom Tuckere1b31572007-12-30 21:07:46 -0600159 kref_init(&xprt->xpt_ref);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600160 xprt->xpt_server = serv;
Tom Tucker7a182082007-12-30 21:07:53 -0600161 INIT_LIST_HEAD(&xprt->xpt_list);
162 INIT_LIST_HEAD(&xprt->xpt_ready);
Tom Tucker8c7b0172007-12-30 21:08:10 -0600163 INIT_LIST_HEAD(&xprt->xpt_deferred);
J. Bruce Fieldsedc7a892010-03-22 15:37:17 -0400164 INIT_LIST_HEAD(&xprt->xpt_users);
Tom Tuckera50fea22007-12-30 21:07:59 -0600165 mutex_init(&xprt->xpt_mutex);
Tom Tuckerdef13d72007-12-30 21:08:08 -0600166 spin_lock_init(&xprt->xpt_lock);
Tom Tucker4e5caaa2007-12-30 21:08:20 -0600167 set_bit(XPT_BUSY, &xprt->xpt_flags);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300168 rpc_init_wait_queue(&xprt->xpt_bc_pending, "xpt_bc_pending");
Stanislav Kinsburskybd4620d2011-12-06 14:19:10 +0300169 xprt->xpt_net = get_net(net);
Tom Tucker1d8206b92007-12-30 21:07:15 -0600170}
171EXPORT_SYMBOL_GPL(svc_xprt_init);
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600172
Chuck Lever5dd248f2008-06-30 18:45:37 -0400173static struct svc_xprt *__svc_xpo_create(struct svc_xprt_class *xcl,
174 struct svc_serv *serv,
Pavel Emelyanov62832c02010-09-29 16:04:18 +0400175 struct net *net,
Chuck Lever9652ada2009-03-18 20:46:21 -0400176 const int family,
177 const unsigned short port,
178 int flags)
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600179{
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600180 struct sockaddr_in sin = {
181 .sin_family = AF_INET,
Al Viroe6f1ceb2008-03-17 22:44:53 -0700182 .sin_addr.s_addr = htonl(INADDR_ANY),
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600183 .sin_port = htons(port),
184 };
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000185#if IS_ENABLED(CONFIG_IPV6)
Chuck Lever5dd248f2008-06-30 18:45:37 -0400186 struct sockaddr_in6 sin6 = {
187 .sin6_family = AF_INET6,
188 .sin6_addr = IN6ADDR_ANY_INIT,
189 .sin6_port = htons(port),
190 };
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000191#endif
Chuck Lever5dd248f2008-06-30 18:45:37 -0400192 struct sockaddr *sap;
193 size_t len;
194
Chuck Lever9652ada2009-03-18 20:46:21 -0400195 switch (family) {
196 case PF_INET:
Chuck Lever5dd248f2008-06-30 18:45:37 -0400197 sap = (struct sockaddr *)&sin;
198 len = sizeof(sin);
199 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000200#if IS_ENABLED(CONFIG_IPV6)
Chuck Lever9652ada2009-03-18 20:46:21 -0400201 case PF_INET6:
Chuck Lever5dd248f2008-06-30 18:45:37 -0400202 sap = (struct sockaddr *)&sin6;
203 len = sizeof(sin6);
204 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000205#endif
Chuck Lever5dd248f2008-06-30 18:45:37 -0400206 default:
207 return ERR_PTR(-EAFNOSUPPORT);
208 }
209
Pavel Emelyanov62832c02010-09-29 16:04:18 +0400210 return xcl->xcl_ops->xpo_create(serv, net, sap, len, flags);
Chuck Lever5dd248f2008-06-30 18:45:37 -0400211}
212
J. Bruce Fields67410192012-08-17 22:12:19 -0400213/*
214 * svc_xprt_received conditionally queues the transport for processing
215 * by another thread. The caller must hold the XPT_BUSY bit and must
216 * not thereafter touch transport data.
217 *
218 * Note: XPT_DATA only gets cleared when a read-attempt finds no (or
219 * insufficient) data.
220 */
221static void svc_xprt_received(struct svc_xprt *xprt)
222{
Weston Andros Adamsonff1fdb92012-10-23 10:43:40 -0400223 WARN_ON_ONCE(!test_bit(XPT_BUSY, &xprt->xpt_flags));
224 if (!test_bit(XPT_BUSY, &xprt->xpt_flags))
225 return;
J. Bruce Fields67410192012-08-17 22:12:19 -0400226 /* As soon as we clear busy, the xprt could be closed and
Trond Myklebust09713742014-07-24 23:59:31 -0400227 * 'put', so we need a reference to call svc_xprt_do_enqueue 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);
Trond Myklebust09713742014-07-24 23:59:31 -0400232 svc_xprt_do_enqueue(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
313/*
314 * Queue up an idle server thread. Must have pool->sp_lock held.
315 * Note: this is really a stack rather than a queue, so that we only
316 * use as many different threads as we need, and the rest don't pollute
317 * the cache.
318 */
319static void svc_thread_enqueue(struct svc_pool *pool, struct svc_rqst *rqstp)
320{
321 list_add(&rqstp->rq_list, &pool->sp_threads);
322}
323
324/*
325 * Dequeue an nfsd thread. Must have pool->sp_lock held.
326 */
327static void svc_thread_dequeue(struct svc_pool *pool, struct svc_rqst *rqstp)
328{
329 list_del(&rqstp->rq_list);
330}
331
J. Bruce Fields9c335c02010-10-26 11:32:03 -0400332static bool svc_xprt_has_something_to_do(struct svc_xprt *xprt)
333{
334 if (xprt->xpt_flags & ((1<<XPT_CONN)|(1<<XPT_CLOSE)))
335 return true;
336 if (xprt->xpt_flags & ((1<<XPT_DATA)|(1<<XPT_DEFERRED)))
337 return xprt->xpt_ops->xpo_has_wspace(xprt);
338 return false;
339}
340
Trond Myklebust09713742014-07-24 23:59:31 -0400341static void svc_xprt_do_enqueue(struct svc_xprt *xprt)
Tom Tucker0f0257e2007-12-30 21:08:27 -0600342{
Tom Tucker0f0257e2007-12-30 21:08:27 -0600343 struct svc_pool *pool;
344 struct svc_rqst *rqstp;
345 int cpu;
346
J. Bruce Fields9c335c02010-10-26 11:32:03 -0400347 if (!svc_xprt_has_something_to_do(xprt))
Tom Tucker0f0257e2007-12-30 21:08:27 -0600348 return;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600349
Tom Tucker0f0257e2007-12-30 21:08:27 -0600350 /* Mark transport as busy. It will remain in this state until
351 * the provider calls svc_xprt_received. We update XPT_BUSY
352 * atomically because it also guards against trying to enqueue
353 * the transport twice.
354 */
355 if (test_and_set_bit(XPT_BUSY, &xprt->xpt_flags)) {
356 /* Don't enqueue transport while already enqueued */
357 dprintk("svc: transport %p busy, not enqueued\n", xprt);
Trond Myklebust0c0746d2014-08-03 13:03:12 -0400358 return;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600359 }
Tom Tucker0f0257e2007-12-30 21:08:27 -0600360
Trond Myklebust0c0746d2014-08-03 13:03:12 -0400361 cpu = get_cpu();
362 pool = svc_pool_for_cpu(xprt->xpt_server, cpu);
363 spin_lock_bh(&pool->sp_lock);
364
365 pool->sp_stats.packets++;
366
J. Bruce Fields78c210e2009-08-06 15:41:34 -0400367 if (!list_empty(&pool->sp_threads)) {
Tom Tucker0f0257e2007-12-30 21:08:27 -0600368 rqstp = list_entry(pool->sp_threads.next,
369 struct svc_rqst,
370 rq_list);
371 dprintk("svc: transport %p served by daemon %p\n",
372 xprt, rqstp);
373 svc_thread_dequeue(pool, rqstp);
374 if (rqstp->rq_xprt)
375 printk(KERN_ERR
376 "svc_xprt_enqueue: server %p, rq_xprt=%p!\n",
377 rqstp, rqstp->rq_xprt);
Trond Myklebust983c6842014-08-03 13:03:10 -0400378 /* Note the order of the following 3 lines:
379 * We want to assign xprt to rqstp->rq_xprt only _after_
380 * we've woken up the process, so that we don't race with
381 * the lockless check in svc_get_next_xprt().
382 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600383 svc_xprt_get(xprt);
Trond Myklebust983c6842014-08-03 13:03:10 -0400384 wake_up_process(rqstp->rq_task);
385 rqstp->rq_xprt = xprt;
Greg Banks03cf6c92009-01-13 21:26:36 +1100386 pool->sp_stats.threads_woken++;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600387 } else {
388 dprintk("svc: transport %p put into queue\n", xprt);
389 list_add_tail(&xprt->xpt_ready, &pool->sp_sockets);
Greg Banks03cf6c92009-01-13 21:26:36 +1100390 pool->sp_stats.sockets_queued++;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600391 }
392
Tom Tucker0f0257e2007-12-30 21:08:27 -0600393 spin_unlock_bh(&pool->sp_lock);
Trond Myklebust983c6842014-08-03 13:03:10 -0400394 put_cpu();
Tom Tucker0f0257e2007-12-30 21:08:27 -0600395}
Trond Myklebust09713742014-07-24 23:59:31 -0400396
397/*
398 * Queue up a transport with data pending. If there are idle nfsd
399 * processes, wake 'em up.
400 *
401 */
402void svc_xprt_enqueue(struct svc_xprt *xprt)
403{
404 if (test_bit(XPT_BUSY, &xprt->xpt_flags))
405 return;
406 svc_xprt_do_enqueue(xprt);
407}
Tom Tucker0f0257e2007-12-30 21:08:27 -0600408EXPORT_SYMBOL_GPL(svc_xprt_enqueue);
409
410/*
411 * Dequeue the first transport. Must be called with the pool->sp_lock held.
412 */
413static struct svc_xprt *svc_xprt_dequeue(struct svc_pool *pool)
414{
415 struct svc_xprt *xprt;
416
417 if (list_empty(&pool->sp_sockets))
418 return NULL;
419
420 xprt = list_entry(pool->sp_sockets.next,
421 struct svc_xprt, xpt_ready);
422 list_del_init(&xprt->xpt_ready);
423
424 dprintk("svc: transport %p dequeued, inuse=%d\n",
425 xprt, atomic_read(&xprt->xpt_ref.refcount));
426
427 return xprt;
428}
429
Tom Tucker0f0257e2007-12-30 21:08:27 -0600430/**
431 * svc_reserve - change the space reserved for the reply to a request.
432 * @rqstp: The request in question
433 * @space: new max space to reserve
434 *
435 * Each request reserves some space on the output queue of the transport
436 * to make sure the reply fits. This function reduces that reserved
437 * space to be the amount of space used already, plus @space.
438 *
439 */
440void svc_reserve(struct svc_rqst *rqstp, int space)
441{
442 space += rqstp->rq_res.head[0].iov_len;
443
444 if (space < rqstp->rq_reserved) {
445 struct svc_xprt *xprt = rqstp->rq_xprt;
446 atomic_sub((rqstp->rq_reserved - space), &xprt->xpt_reserved);
447 rqstp->rq_reserved = space;
448
Trond Myklebust51877682014-07-24 23:59:33 -0400449 if (xprt->xpt_ops->xpo_adjust_wspace)
450 xprt->xpt_ops->xpo_adjust_wspace(xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600451 svc_xprt_enqueue(xprt);
452 }
453}
Trond Myklebust24c37672008-12-23 16:30:12 -0500454EXPORT_SYMBOL_GPL(svc_reserve);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600455
456static void svc_xprt_release(struct svc_rqst *rqstp)
457{
458 struct svc_xprt *xprt = rqstp->rq_xprt;
459
460 rqstp->rq_xprt->xpt_ops->xpo_release_rqst(rqstp);
461
Tom Tucker2779e3a2009-01-05 11:12:52 -0600462 kfree(rqstp->rq_deferred);
463 rqstp->rq_deferred = NULL;
464
Tom Tucker0f0257e2007-12-30 21:08:27 -0600465 svc_free_res_pages(rqstp);
466 rqstp->rq_res.page_len = 0;
467 rqstp->rq_res.page_base = 0;
468
469 /* Reset response buffer and release
470 * the reservation.
471 * But first, check that enough space was reserved
472 * for the reply, otherwise we have a bug!
473 */
474 if ((rqstp->rq_res.len) > rqstp->rq_reserved)
475 printk(KERN_ERR "RPC request reserved %d but used %d\n",
476 rqstp->rq_reserved,
477 rqstp->rq_res.len);
478
479 rqstp->rq_res.head[0].iov_len = 0;
480 svc_reserve(rqstp, 0);
481 rqstp->rq_xprt = NULL;
482
483 svc_xprt_put(xprt);
484}
485
486/*
487 * External function to wake up a server waiting for data
488 * This really only makes sense for services like lockd
489 * which have exactly one thread anyway.
490 */
491void svc_wake_up(struct svc_serv *serv)
492{
493 struct svc_rqst *rqstp;
494 unsigned int i;
495 struct svc_pool *pool;
496
497 for (i = 0; i < serv->sv_nrpools; i++) {
498 pool = &serv->sv_pools[i];
499
500 spin_lock_bh(&pool->sp_lock);
501 if (!list_empty(&pool->sp_threads)) {
502 rqstp = list_entry(pool->sp_threads.next,
503 struct svc_rqst,
504 rq_list);
505 dprintk("svc: daemon %p woken up.\n", rqstp);
506 /*
507 svc_thread_dequeue(pool, rqstp);
508 rqstp->rq_xprt = NULL;
509 */
Trond Myklebust983c6842014-08-03 13:03:10 -0400510 wake_up_process(rqstp->rq_task);
Andriy Skulysh35525b72013-01-07 00:12:15 +0200511 } else
512 pool->sp_task_pending = 1;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600513 spin_unlock_bh(&pool->sp_lock);
514 }
515}
Trond Myklebust24c37672008-12-23 16:30:12 -0500516EXPORT_SYMBOL_GPL(svc_wake_up);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600517
518int svc_port_is_privileged(struct sockaddr *sin)
519{
520 switch (sin->sa_family) {
521 case AF_INET:
522 return ntohs(((struct sockaddr_in *)sin)->sin_port)
523 < PROT_SOCK;
524 case AF_INET6:
525 return ntohs(((struct sockaddr_in6 *)sin)->sin6_port)
526 < PROT_SOCK;
527 default:
528 return 0;
529 }
530}
531
532/*
Jeff Laytonc9233eb2008-10-20 11:51:57 -0400533 * Make sure that we don't have too many active connections. If we have,
534 * something must be dropped. It's not clear what will happen if we allow
535 * "too many" connections, but when dealing with network-facing software,
536 * we have to code defensively. Here we do that by imposing hard limits.
Tom Tucker0f0257e2007-12-30 21:08:27 -0600537 *
538 * There's no point in trying to do random drop here for DoS
539 * prevention. The NFS clients does 1 reconnect in 15 seconds. An
540 * attacker can easily beat that.
541 *
542 * The only somewhat efficient mechanism would be if drop old
543 * connections from the same IP first. But right now we don't even
544 * record the client IP in svc_sock.
Jeff Laytonc9233eb2008-10-20 11:51:57 -0400545 *
546 * single-threaded services that expect a lot of clients will probably
547 * need to set sv_maxconn to override the default value which is based
548 * on the number of threads
Tom Tucker0f0257e2007-12-30 21:08:27 -0600549 */
550static void svc_check_conn_limits(struct svc_serv *serv)
551{
Jeff Laytonc9233eb2008-10-20 11:51:57 -0400552 unsigned int limit = serv->sv_maxconn ? serv->sv_maxconn :
553 (serv->sv_nrthreads+3) * 20;
554
555 if (serv->sv_tmpcnt > limit) {
Tom Tucker0f0257e2007-12-30 21:08:27 -0600556 struct svc_xprt *xprt = NULL;
557 spin_lock_bh(&serv->sv_lock);
558 if (!list_empty(&serv->sv_tempsocks)) {
Joe Perchese87cc472012-05-13 21:56:26 +0000559 /* Try to help the admin */
560 net_notice_ratelimited("%s: too many open connections, consider increasing the %s\n",
561 serv->sv_name, serv->sv_maxconn ?
562 "max number of connections" :
563 "number of threads");
Tom Tucker0f0257e2007-12-30 21:08:27 -0600564 /*
565 * Always select the oldest connection. It's not fair,
566 * but so is life
567 */
568 xprt = list_entry(serv->sv_tempsocks.prev,
569 struct svc_xprt,
570 xpt_list);
571 set_bit(XPT_CLOSE, &xprt->xpt_flags);
572 svc_xprt_get(xprt);
573 }
574 spin_unlock_bh(&serv->sv_lock);
575
576 if (xprt) {
577 svc_xprt_enqueue(xprt);
578 svc_xprt_put(xprt);
579 }
580 }
581}
582
Rashika Kheriae1d83ee2014-02-09 22:33:03 +0530583static int svc_alloc_arg(struct svc_rqst *rqstp)
Tom Tucker0f0257e2007-12-30 21:08:27 -0600584{
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400585 struct svc_serv *serv = rqstp->rq_server;
586 struct xdr_buf *arg;
587 int pages;
588 int i;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600589
590 /* now allocate needed pages. If we get a failure, sleep briefly */
591 pages = (serv->sv_max_mesg + PAGE_SIZE) / PAGE_SIZE;
Weston Andros Adamsonb25cd052012-10-23 10:43:41 -0400592 WARN_ON_ONCE(pages >= RPCSVC_MAXPAGES);
593 if (pages >= RPCSVC_MAXPAGES)
594 /* use as many pages as possible */
595 pages = RPCSVC_MAXPAGES - 1;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600596 for (i = 0; i < pages ; i++)
597 while (rqstp->rq_pages[i] == NULL) {
598 struct page *p = alloc_page(GFP_KERNEL);
599 if (!p) {
Jeff Layton7b54fe62008-02-12 11:47:24 -0500600 set_current_state(TASK_INTERRUPTIBLE);
601 if (signalled() || kthread_should_stop()) {
602 set_current_state(TASK_RUNNING);
Jeff Layton70867212008-02-07 16:34:54 -0500603 return -EINTR;
Jeff Layton7b54fe62008-02-12 11:47:24 -0500604 }
605 schedule_timeout(msecs_to_jiffies(500));
Tom Tucker0f0257e2007-12-30 21:08:27 -0600606 }
607 rqstp->rq_pages[i] = p;
608 }
J. Bruce Fields2825a7f2013-08-26 16:04:46 -0400609 rqstp->rq_page_end = &rqstp->rq_pages[i];
Tom Tucker0f0257e2007-12-30 21:08:27 -0600610 rqstp->rq_pages[i++] = NULL; /* this might be seen in nfs_read_actor */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600611
612 /* Make arg->head point to first page and arg->pages point to rest */
613 arg = &rqstp->rq_arg;
614 arg->head[0].iov_base = page_address(rqstp->rq_pages[0]);
615 arg->head[0].iov_len = PAGE_SIZE;
616 arg->pages = rqstp->rq_pages + 1;
617 arg->page_base = 0;
618 /* save at least one page for response */
619 arg->page_len = (pages-2)*PAGE_SIZE;
620 arg->len = (pages-1)*PAGE_SIZE;
621 arg->tail[0].iov_len = 0;
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400622 return 0;
623}
Tom Tucker0f0257e2007-12-30 21:08:27 -0600624
Rashika Kheriae1d83ee2014-02-09 22:33:03 +0530625static struct svc_xprt *svc_get_next_xprt(struct svc_rqst *rqstp, long timeout)
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400626{
627 struct svc_xprt *xprt;
628 struct svc_pool *pool = rqstp->rq_pool;
Trond Myklebusta4aa8052014-08-03 13:03:11 -0400629 long time_left = 0;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600630
NeilBrownf16b6e82010-08-12 17:04:06 +1000631 /* Normally we will wait up to 5 seconds for any required
632 * cache information to be provided.
633 */
634 rqstp->rq_chandle.thread_wait = 5*HZ;
635
Tom Tucker0f0257e2007-12-30 21:08:27 -0600636 spin_lock_bh(&pool->sp_lock);
637 xprt = svc_xprt_dequeue(pool);
638 if (xprt) {
639 rqstp->rq_xprt = xprt;
640 svc_xprt_get(xprt);
NeilBrownf16b6e82010-08-12 17:04:06 +1000641
642 /* As there is a shortage of threads and this request
J. Bruce Fields6610f722010-08-26 13:19:52 -0400643 * had to be queued, don't allow the thread to wait so
NeilBrownf16b6e82010-08-12 17:04:06 +1000644 * long for cache updates.
645 */
646 rqstp->rq_chandle.thread_wait = 1*HZ;
Andriy Skulysh35525b72013-01-07 00:12:15 +0200647 pool->sp_task_pending = 0;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600648 } else {
Andriy Skulysh35525b72013-01-07 00:12:15 +0200649 if (pool->sp_task_pending) {
650 pool->sp_task_pending = 0;
Trond Myklebust106f3592014-08-03 13:03:09 -0400651 xprt = ERR_PTR(-EAGAIN);
652 goto out;
Andriy Skulysh35525b72013-01-07 00:12:15 +0200653 }
Tom Tucker0f0257e2007-12-30 21:08:27 -0600654 /*
655 * We have to be able to interrupt this wait
656 * to bring down the daemons ...
657 */
658 set_current_state(TASK_INTERRUPTIBLE);
Jeff Layton70867212008-02-07 16:34:54 -0500659
Trond Myklebust983c6842014-08-03 13:03:10 -0400660 /* No data pending. Go to sleep */
661 svc_thread_enqueue(pool, rqstp);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600662 spin_unlock_bh(&pool->sp_lock);
663
Trond Myklebusta4aa8052014-08-03 13:03:11 -0400664 if (!(signalled() || kthread_should_stop())) {
665 time_left = schedule_timeout(timeout);
666 __set_current_state(TASK_RUNNING);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600667
Trond Myklebusta4aa8052014-08-03 13:03:11 -0400668 try_to_freeze();
Tom Tucker0f0257e2007-12-30 21:08:27 -0600669
Trond Myklebusta4aa8052014-08-03 13:03:11 -0400670 xprt = rqstp->rq_xprt;
671 if (xprt != NULL)
672 return xprt;
673 } else
674 __set_current_state(TASK_RUNNING);
Trond Myklebust106f3592014-08-03 13:03:09 -0400675
676 spin_lock_bh(&pool->sp_lock);
Greg Banks03cf6c92009-01-13 21:26:36 +1100677 if (!time_left)
678 pool->sp_stats.threads_timedout++;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600679
680 xprt = rqstp->rq_xprt;
681 if (!xprt) {
682 svc_thread_dequeue(pool, rqstp);
683 spin_unlock_bh(&pool->sp_lock);
684 dprintk("svc: server %p, no data yet\n", rqstp);
Jeff Layton70867212008-02-07 16:34:54 -0500685 if (signalled() || kthread_should_stop())
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400686 return ERR_PTR(-EINTR);
Jeff Layton70867212008-02-07 16:34:54 -0500687 else
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400688 return ERR_PTR(-EAGAIN);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600689 }
690 }
Trond Myklebust106f3592014-08-03 13:03:09 -0400691out:
Tom Tucker0f0257e2007-12-30 21:08:27 -0600692 spin_unlock_bh(&pool->sp_lock);
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400693 return xprt;
694}
Tom Tucker0f0257e2007-12-30 21:08:27 -0600695
Rashika Kheriae1d83ee2014-02-09 22:33:03 +0530696static void svc_add_new_temp_xprt(struct svc_serv *serv, struct svc_xprt *newxpt)
J. Bruce Fields65b2e662012-08-18 15:44:33 -0400697{
698 spin_lock_bh(&serv->sv_lock);
699 set_bit(XPT_TEMP, &newxpt->xpt_flags);
700 list_add(&newxpt->xpt_list, &serv->sv_tempsocks);
701 serv->sv_tmpcnt++;
702 if (serv->sv_temptimer.function == NULL) {
703 /* setup timer to age temp transports */
704 setup_timer(&serv->sv_temptimer, svc_age_temp_xprts,
705 (unsigned long)serv);
706 mod_timer(&serv->sv_temptimer,
707 jiffies + svc_conn_age_period * HZ);
708 }
709 spin_unlock_bh(&serv->sv_lock);
710 svc_xprt_received(newxpt);
711}
712
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400713static int svc_handle_xprt(struct svc_rqst *rqstp, struct svc_xprt *xprt)
714{
715 struct svc_serv *serv = rqstp->rq_server;
716 int len = 0;
717
J. Bruce Fields1b644b62010-02-28 16:33:31 -0500718 if (test_bit(XPT_CLOSE, &xprt->xpt_flags)) {
719 dprintk("svc_recv: found XPT_CLOSE\n");
720 svc_delete_xprt(xprt);
J. Bruce Fieldsca7896c2010-10-25 14:12:40 -0400721 /* Leave XPT_BUSY set on the dead xprt: */
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400722 return 0;
J. Bruce Fieldsca7896c2010-10-25 14:12:40 -0400723 }
724 if (test_bit(XPT_LISTENER, &xprt->xpt_flags)) {
Tom Tucker0f0257e2007-12-30 21:08:27 -0600725 struct svc_xprt *newxpt;
J. Bruce Fields65b2e662012-08-18 15:44:33 -0400726 /*
727 * We know this module_get will succeed because the
728 * listener holds a reference too
729 */
730 __module_get(xprt->xpt_class->xcl_owner);
731 svc_check_conn_limits(xprt->xpt_server);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600732 newxpt = xprt->xpt_ops->xpo_accept(xprt);
J. Bruce Fields65b2e662012-08-18 15:44:33 -0400733 if (newxpt)
734 svc_add_new_temp_xprt(serv, newxpt);
Trond Myklebustc7891022014-05-18 14:05:22 -0400735 else
736 module_put(xprt->xpt_class->xcl_owner);
Trond Myklebust9e5b2082014-08-03 13:03:06 -0400737 } else {
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400738 /* XPT_DATA|XPT_DEFERRED case: */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600739 dprintk("svc: server %p, pool %u, transport %p, inuse=%d\n",
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400740 rqstp, rqstp->rq_pool->sp_id, xprt,
Tom Tucker0f0257e2007-12-30 21:08:27 -0600741 atomic_read(&xprt->xpt_ref.refcount));
742 rqstp->rq_deferred = svc_deferred_dequeue(xprt);
J. Bruce Fieldsca7896c2010-10-25 14:12:40 -0400743 if (rqstp->rq_deferred)
Tom Tucker0f0257e2007-12-30 21:08:27 -0600744 len = svc_deferred_recv(rqstp);
J. Bruce Fieldsca7896c2010-10-25 14:12:40 -0400745 else
Tom Tucker0f0257e2007-12-30 21:08:27 -0600746 len = xprt->xpt_ops->xpo_recvfrom(rqstp);
747 dprintk("svc: got len=%d\n", len);
J. Bruce Fieldsd10f27a2012-08-17 17:31:53 -0400748 rqstp->rq_reserved = serv->sv_max_mesg;
749 atomic_add(rqstp->rq_reserved, &xprt->xpt_reserved);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600750 }
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400751 /* clear XPT_BUSY: */
J. Bruce Fieldsca7896c2010-10-25 14:12:40 -0400752 svc_xprt_received(xprt);
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400753 return len;
754}
755
756/*
757 * Receive the next request on any transport. This code is carefully
758 * organised not to touch any cachelines in the shared svc_serv
759 * structure, only cachelines in the local svc_pool.
760 */
761int svc_recv(struct svc_rqst *rqstp, long timeout)
762{
763 struct svc_xprt *xprt = NULL;
764 struct svc_serv *serv = rqstp->rq_server;
765 int len, err;
766
767 dprintk("svc: server %p waiting for data (to = %ld)\n",
768 rqstp, timeout);
769
770 if (rqstp->rq_xprt)
771 printk(KERN_ERR
772 "svc_recv: service %p, transport not NULL!\n",
773 rqstp);
Trond Myklebust983c6842014-08-03 13:03:10 -0400774
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400775 err = svc_alloc_arg(rqstp);
776 if (err)
Jeff Layton860a0d92014-10-28 14:24:12 -0400777 goto out;
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400778
779 try_to_freeze();
780 cond_resched();
Jeff Layton860a0d92014-10-28 14:24:12 -0400781 err = -EINTR;
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400782 if (signalled() || kthread_should_stop())
Jeff Layton860a0d92014-10-28 14:24:12 -0400783 goto out;
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400784
785 xprt = svc_get_next_xprt(rqstp, timeout);
Jeff Layton860a0d92014-10-28 14:24:12 -0400786 if (IS_ERR(xprt)) {
787 err = PTR_ERR(xprt);
788 goto out;
789 }
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400790
791 len = svc_handle_xprt(rqstp, xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600792
793 /* No data, incomplete (TCP) read, or accept() */
Jeff Layton860a0d92014-10-28 14:24:12 -0400794 err = -EAGAIN;
J. Bruce Fields9f9d2eb2012-08-17 21:35:24 -0400795 if (len <= 0)
Jeff Layton860a0d92014-10-28 14:24:12 -0400796 goto out_release;
J. Bruce Fieldsca7896c2010-10-25 14:12:40 -0400797
Tom Tucker0f0257e2007-12-30 21:08:27 -0600798 clear_bit(XPT_OLD, &xprt->xpt_flags);
799
Jeff Layton4d152e22014-11-19 07:51:14 -0500800 if (xprt->xpt_ops->xpo_secure_port(rqstp))
801 set_bit(RQ_SECURE, &rqstp->rq_flags);
802 else
803 clear_bit(RQ_SECURE, &rqstp->rq_flags);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600804 rqstp->rq_chandle.defer = svc_defer;
Jeff Layton860a0d92014-10-28 14:24:12 -0400805 rqstp->rq_xid = svc_getu32(&rqstp->rq_arg.head[0]);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600806
807 if (serv->sv_stats)
808 serv->sv_stats->netcnt++;
Jeff Layton860a0d92014-10-28 14:24:12 -0400809 trace_svc_recv(rqstp, len);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600810 return len;
Jeff Layton860a0d92014-10-28 14:24:12 -0400811out_release:
J. Bruce Fieldsca7896c2010-10-25 14:12:40 -0400812 rqstp->rq_res.len = 0;
813 svc_xprt_release(rqstp);
Jeff Layton860a0d92014-10-28 14:24:12 -0400814out:
815 trace_svc_recv(rqstp, err);
816 return err;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600817}
Trond Myklebust24c37672008-12-23 16:30:12 -0500818EXPORT_SYMBOL_GPL(svc_recv);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600819
820/*
821 * Drop request
822 */
823void svc_drop(struct svc_rqst *rqstp)
824{
825 dprintk("svc: xprt %p dropped request\n", rqstp->rq_xprt);
826 svc_xprt_release(rqstp);
827}
Trond Myklebust24c37672008-12-23 16:30:12 -0500828EXPORT_SYMBOL_GPL(svc_drop);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600829
830/*
831 * Return reply to client.
832 */
833int svc_send(struct svc_rqst *rqstp)
834{
835 struct svc_xprt *xprt;
Jeff Layton860a0d92014-10-28 14:24:12 -0400836 int len = -EFAULT;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600837 struct xdr_buf *xb;
838
839 xprt = rqstp->rq_xprt;
840 if (!xprt)
Jeff Layton860a0d92014-10-28 14:24:12 -0400841 goto out;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600842
843 /* release the receive skb before sending the reply */
844 rqstp->rq_xprt->xpt_ops->xpo_release_rqst(rqstp);
845
846 /* calculate over-all length */
847 xb = &rqstp->rq_res;
848 xb->len = xb->head[0].iov_len +
849 xb->page_len +
850 xb->tail[0].iov_len;
851
852 /* Grab mutex to serialize outgoing data. */
853 mutex_lock(&xprt->xpt_mutex);
J. Bruce Fieldsf06f00a2012-08-20 16:04:40 -0400854 if (test_bit(XPT_DEAD, &xprt->xpt_flags)
855 || test_bit(XPT_CLOSE, &xprt->xpt_flags))
Tom Tucker0f0257e2007-12-30 21:08:27 -0600856 len = -ENOTCONN;
857 else
858 len = xprt->xpt_ops->xpo_sendto(rqstp);
859 mutex_unlock(&xprt->xpt_mutex);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300860 rpc_wake_up(&xprt->xpt_bc_pending);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600861 svc_xprt_release(rqstp);
862
863 if (len == -ECONNREFUSED || len == -ENOTCONN || len == -EAGAIN)
Jeff Layton860a0d92014-10-28 14:24:12 -0400864 len = 0;
865out:
866 trace_svc_send(rqstp, len);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600867 return len;
868}
869
870/*
871 * Timer function to close old temporary transports, using
872 * a mark-and-sweep algorithm.
873 */
874static void svc_age_temp_xprts(unsigned long closure)
875{
876 struct svc_serv *serv = (struct svc_serv *)closure;
877 struct svc_xprt *xprt;
878 struct list_head *le, *next;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600879
880 dprintk("svc_age_temp_xprts\n");
881
882 if (!spin_trylock_bh(&serv->sv_lock)) {
883 /* busy, try again 1 sec later */
884 dprintk("svc_age_temp_xprts: busy\n");
885 mod_timer(&serv->sv_temptimer, jiffies + HZ);
886 return;
887 }
888
889 list_for_each_safe(le, next, &serv->sv_tempsocks) {
890 xprt = list_entry(le, struct svc_xprt, xpt_list);
891
892 /* First time through, just mark it OLD. Second time
893 * through, close it. */
894 if (!test_and_set_bit(XPT_OLD, &xprt->xpt_flags))
895 continue;
Joe Perchesf64f9e72009-11-29 16:55:45 -0800896 if (atomic_read(&xprt->xpt_ref.refcount) > 1 ||
897 test_bit(XPT_BUSY, &xprt->xpt_flags))
Tom Tucker0f0257e2007-12-30 21:08:27 -0600898 continue;
J. Bruce Fieldse75bafb2013-02-10 11:33:48 -0500899 list_del_init(le);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600900 set_bit(XPT_CLOSE, &xprt->xpt_flags);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600901 dprintk("queuing xprt %p for closing\n", xprt);
902
903 /* a thread will dequeue and close it soon */
904 svc_xprt_enqueue(xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600905 }
J. Bruce Fieldse75bafb2013-02-10 11:33:48 -0500906 spin_unlock_bh(&serv->sv_lock);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600907
908 mod_timer(&serv->sv_temptimer, jiffies + svc_conn_age_period * HZ);
909}
910
J. Bruce Fieldsedc7a892010-03-22 15:37:17 -0400911static void call_xpt_users(struct svc_xprt *xprt)
912{
913 struct svc_xpt_user *u;
914
915 spin_lock(&xprt->xpt_lock);
916 while (!list_empty(&xprt->xpt_users)) {
917 u = list_first_entry(&xprt->xpt_users, struct svc_xpt_user, list);
918 list_del(&u->list);
919 u->callback(u);
920 }
921 spin_unlock(&xprt->xpt_lock);
922}
923
Tom Tucker0f0257e2007-12-30 21:08:27 -0600924/*
925 * Remove a dead transport
926 */
J. Bruce Fields7710ec32011-11-25 18:44:05 -0500927static void svc_delete_xprt(struct svc_xprt *xprt)
Tom Tucker0f0257e2007-12-30 21:08:27 -0600928{
929 struct svc_serv *serv = xprt->xpt_server;
Tom Tucker22945e42009-01-05 15:21:19 -0600930 struct svc_deferred_req *dr;
931
932 /* Only do this once */
933 if (test_and_set_bit(XPT_DEAD, &xprt->xpt_flags))
J. Bruce Fieldsac9303e2010-10-23 11:16:10 -0400934 BUG();
Tom Tucker0f0257e2007-12-30 21:08:27 -0600935
936 dprintk("svc: svc_delete_xprt(%p)\n", xprt);
937 xprt->xpt_ops->xpo_detach(xprt);
938
939 spin_lock_bh(&serv->sv_lock);
Jeff Layton8d65ef72014-11-17 17:02:57 -0500940 list_del_init(&xprt->xpt_list);
Weston Andros Adamson01047292012-10-23 10:43:48 -0400941 WARN_ON_ONCE(!list_empty(&xprt->xpt_ready));
Tom Tucker22945e42009-01-05 15:21:19 -0600942 if (test_bit(XPT_TEMP, &xprt->xpt_flags))
943 serv->sv_tmpcnt--;
J. Bruce Fields788e69e2010-03-29 21:02:31 -0400944 spin_unlock_bh(&serv->sv_lock);
Tom Tucker22945e42009-01-05 15:21:19 -0600945
Neil Brownab1b18f2010-02-27 09:33:40 +1100946 while ((dr = svc_deferred_dequeue(xprt)) != NULL)
Tom Tucker22945e42009-01-05 15:21:19 -0600947 kfree(dr);
Tom Tucker22945e42009-01-05 15:21:19 -0600948
J. Bruce Fieldsedc7a892010-03-22 15:37:17 -0400949 call_xpt_users(xprt);
Tom Tucker22945e42009-01-05 15:21:19 -0600950 svc_xprt_put(xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600951}
952
953void svc_close_xprt(struct svc_xprt *xprt)
954{
955 set_bit(XPT_CLOSE, &xprt->xpt_flags);
956 if (test_and_set_bit(XPT_BUSY, &xprt->xpt_flags))
957 /* someone else will have to effect the close */
958 return;
J. Bruce Fieldsb1763312010-10-25 20:24:48 -0400959 /*
960 * We expect svc_close_xprt() to work even when no threads are
961 * running (e.g., while configuring the server before starting
962 * any threads), so if the transport isn't busy, we delete
963 * it ourself:
964 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600965 svc_delete_xprt(xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600966}
Tom Tuckera2178132007-12-30 21:08:35 -0600967EXPORT_SYMBOL_GPL(svc_close_xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600968
J. Bruce Fieldscc630d92013-02-10 16:08:11 -0500969static int svc_close_list(struct svc_serv *serv, struct list_head *xprt_list, struct net *net)
Tom Tucker0f0257e2007-12-30 21:08:27 -0600970{
971 struct svc_xprt *xprt;
J. Bruce Fieldscc630d92013-02-10 16:08:11 -0500972 int ret = 0;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600973
J. Bruce Fields719f8bc2012-08-13 17:03:00 -0400974 spin_lock(&serv->sv_lock);
J. Bruce Fieldsb4f36f82011-11-29 17:00:26 -0500975 list_for_each_entry(xprt, xprt_list, xpt_list) {
Stanislav Kinsbursky7b147f12012-01-31 14:09:17 +0400976 if (xprt->xpt_net != net)
977 continue;
J. Bruce Fieldscc630d92013-02-10 16:08:11 -0500978 ret++;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600979 set_bit(XPT_CLOSE, &xprt->xpt_flags);
J. Bruce Fieldscc630d92013-02-10 16:08:11 -0500980 svc_xprt_enqueue(xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600981 }
J. Bruce Fields719f8bc2012-08-13 17:03:00 -0400982 spin_unlock(&serv->sv_lock);
J. Bruce Fieldscc630d92013-02-10 16:08:11 -0500983 return ret;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600984}
985
J. Bruce Fieldscc630d92013-02-10 16:08:11 -0500986static struct svc_xprt *svc_dequeue_net(struct svc_serv *serv, struct net *net)
J. Bruce Fields2fefb8a2011-11-29 11:35:35 -0500987{
J. Bruce Fieldsb4f36f82011-11-29 17:00:26 -0500988 struct svc_pool *pool;
989 struct svc_xprt *xprt;
990 struct svc_xprt *tmp;
991 int i;
992
J. Bruce Fieldsb4f36f82011-11-29 17:00:26 -0500993 for (i = 0; i < serv->sv_nrpools; i++) {
994 pool = &serv->sv_pools[i];
995
996 spin_lock_bh(&pool->sp_lock);
Stanislav Kinsbursky6f513362012-01-31 14:09:00 +0400997 list_for_each_entry_safe(xprt, tmp, &pool->sp_sockets, xpt_ready) {
Stanislav Kinsbursky7b147f12012-01-31 14:09:17 +0400998 if (xprt->xpt_net != net)
999 continue;
J. Bruce Fieldsb4f36f82011-11-29 17:00:26 -05001000 list_del_init(&xprt->xpt_ready);
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001001 spin_unlock_bh(&pool->sp_lock);
1002 return xprt;
J. Bruce Fieldsb4f36f82011-11-29 17:00:26 -05001003 }
1004 spin_unlock_bh(&pool->sp_lock);
1005 }
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001006 return NULL;
Stanislav Kinsbursky6f513362012-01-31 14:09:00 +04001007}
1008
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001009static void svc_clean_up_xprts(struct svc_serv *serv, struct net *net)
Stanislav Kinsbursky6f513362012-01-31 14:09:00 +04001010{
1011 struct svc_xprt *xprt;
Stanislav Kinsbursky6f513362012-01-31 14:09:00 +04001012
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001013 while ((xprt = svc_dequeue_net(serv, net))) {
1014 set_bit(XPT_CLOSE, &xprt->xpt_flags);
J. Bruce Fields719f8bc2012-08-13 17:03:00 -04001015 svc_delete_xprt(xprt);
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001016 }
Stanislav Kinsbursky3a22bf52012-01-31 14:09:08 +04001017}
1018
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001019/*
1020 * Server threads may still be running (especially in the case where the
1021 * service is still running in other network namespaces).
1022 *
1023 * So we shut down sockets the same way we would on a running server, by
1024 * setting XPT_CLOSE, enqueuing, and letting a thread pick it up to do
1025 * the close. In the case there are no such other threads,
1026 * threads running, svc_clean_up_xprts() does a simple version of a
1027 * server's main event loop, and in the case where there are other
1028 * threads, we may need to wait a little while and then check again to
1029 * see if they're done.
1030 */
Stanislav Kinsbursky7b147f12012-01-31 14:09:17 +04001031void svc_close_net(struct svc_serv *serv, struct net *net)
Stanislav Kinsbursky3a22bf52012-01-31 14:09:08 +04001032{
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001033 int delay = 0;
Stanislav Kinsbursky6f513362012-01-31 14:09:00 +04001034
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001035 while (svc_close_list(serv, &serv->sv_permsocks, net) +
1036 svc_close_list(serv, &serv->sv_tempsocks, net)) {
1037
1038 svc_clean_up_xprts(serv, net);
1039 msleep(delay++);
1040 }
J. Bruce Fields2fefb8a2011-11-29 11:35:35 -05001041}
1042
Tom Tucker0f0257e2007-12-30 21:08:27 -06001043/*
1044 * Handle defer and revisit of requests
1045 */
1046
1047static void svc_revisit(struct cache_deferred_req *dreq, int too_many)
1048{
1049 struct svc_deferred_req *dr =
1050 container_of(dreq, struct svc_deferred_req, handle);
1051 struct svc_xprt *xprt = dr->xprt;
1052
Tom Tucker22945e42009-01-05 15:21:19 -06001053 spin_lock(&xprt->xpt_lock);
1054 set_bit(XPT_DEFERRED, &xprt->xpt_flags);
1055 if (too_many || test_bit(XPT_DEAD, &xprt->xpt_flags)) {
1056 spin_unlock(&xprt->xpt_lock);
1057 dprintk("revisit canceled\n");
Tom Tucker0f0257e2007-12-30 21:08:27 -06001058 svc_xprt_put(xprt);
1059 kfree(dr);
1060 return;
1061 }
1062 dprintk("revisit queued\n");
1063 dr->xprt = NULL;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001064 list_add(&dr->handle.recent, &xprt->xpt_deferred);
1065 spin_unlock(&xprt->xpt_lock);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001066 svc_xprt_enqueue(xprt);
1067 svc_xprt_put(xprt);
1068}
1069
Tom Tucker260c1d12007-12-30 21:08:29 -06001070/*
1071 * Save the request off for later processing. The request buffer looks
1072 * like this:
1073 *
1074 * <xprt-header><rpc-header><rpc-pagelist><rpc-tail>
1075 *
1076 * This code can only handle requests that consist of an xprt-header
1077 * and rpc-header.
1078 */
Tom Tucker0f0257e2007-12-30 21:08:27 -06001079static struct cache_deferred_req *svc_defer(struct cache_req *req)
1080{
1081 struct svc_rqst *rqstp = container_of(req, struct svc_rqst, rq_chandle);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001082 struct svc_deferred_req *dr;
1083
Andy Adamson2f425872009-04-03 08:27:32 +03001084 if (rqstp->rq_arg.page_len || !rqstp->rq_usedeferral)
Tom Tucker0f0257e2007-12-30 21:08:27 -06001085 return NULL; /* if more than a page, give up FIXME */
1086 if (rqstp->rq_deferred) {
1087 dr = rqstp->rq_deferred;
1088 rqstp->rq_deferred = NULL;
1089 } else {
Tom Tucker260c1d12007-12-30 21:08:29 -06001090 size_t skip;
1091 size_t size;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001092 /* FIXME maybe discard if size too large */
Tom Tucker260c1d12007-12-30 21:08:29 -06001093 size = sizeof(struct svc_deferred_req) + rqstp->rq_arg.len;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001094 dr = kmalloc(size, GFP_KERNEL);
1095 if (dr == NULL)
1096 return NULL;
1097
1098 dr->handle.owner = rqstp->rq_server;
1099 dr->prot = rqstp->rq_prot;
1100 memcpy(&dr->addr, &rqstp->rq_addr, rqstp->rq_addrlen);
1101 dr->addrlen = rqstp->rq_addrlen;
1102 dr->daddr = rqstp->rq_daddr;
1103 dr->argslen = rqstp->rq_arg.len >> 2;
Tom Tucker260c1d12007-12-30 21:08:29 -06001104 dr->xprt_hlen = rqstp->rq_xprt_hlen;
1105
1106 /* back up head to the start of the buffer and copy */
1107 skip = rqstp->rq_arg.len - rqstp->rq_arg.head[0].iov_len;
1108 memcpy(dr->args, rqstp->rq_arg.head[0].iov_base - skip,
1109 dr->argslen << 2);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001110 }
1111 svc_xprt_get(rqstp->rq_xprt);
1112 dr->xprt = rqstp->rq_xprt;
J. Bruce Fields9e701c62011-01-02 21:56:36 -05001113 rqstp->rq_dropme = true;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001114
1115 dr->handle.revisit = svc_revisit;
1116 return &dr->handle;
1117}
1118
1119/*
1120 * recv data from a deferred request into an active one
1121 */
1122static int svc_deferred_recv(struct svc_rqst *rqstp)
1123{
1124 struct svc_deferred_req *dr = rqstp->rq_deferred;
1125
Tom Tucker260c1d12007-12-30 21:08:29 -06001126 /* setup iov_base past transport header */
1127 rqstp->rq_arg.head[0].iov_base = dr->args + (dr->xprt_hlen>>2);
1128 /* The iov_len does not include the transport header bytes */
1129 rqstp->rq_arg.head[0].iov_len = (dr->argslen<<2) - dr->xprt_hlen;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001130 rqstp->rq_arg.page_len = 0;
Tom Tucker260c1d12007-12-30 21:08:29 -06001131 /* The rq_arg.len includes the transport header bytes */
1132 rqstp->rq_arg.len = dr->argslen<<2;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001133 rqstp->rq_prot = dr->prot;
1134 memcpy(&rqstp->rq_addr, &dr->addr, dr->addrlen);
1135 rqstp->rq_addrlen = dr->addrlen;
Tom Tucker260c1d12007-12-30 21:08:29 -06001136 /* Save off transport header len in case we get deferred again */
1137 rqstp->rq_xprt_hlen = dr->xprt_hlen;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001138 rqstp->rq_daddr = dr->daddr;
1139 rqstp->rq_respages = rqstp->rq_pages;
Tom Tucker260c1d12007-12-30 21:08:29 -06001140 return (dr->argslen<<2) - dr->xprt_hlen;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001141}
1142
1143
1144static struct svc_deferred_req *svc_deferred_dequeue(struct svc_xprt *xprt)
1145{
1146 struct svc_deferred_req *dr = NULL;
1147
1148 if (!test_bit(XPT_DEFERRED, &xprt->xpt_flags))
1149 return NULL;
1150 spin_lock(&xprt->xpt_lock);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001151 if (!list_empty(&xprt->xpt_deferred)) {
1152 dr = list_entry(xprt->xpt_deferred.next,
1153 struct svc_deferred_req,
1154 handle.recent);
1155 list_del_init(&dr->handle.recent);
J. Bruce Fields62bac4a2010-10-25 12:50:15 -04001156 } else
1157 clear_bit(XPT_DEFERRED, &xprt->xpt_flags);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001158 spin_unlock(&xprt->xpt_lock);
1159 return dr;
1160}
Tom Tucker7fcb98d2007-12-30 21:08:33 -06001161
Chuck Lever156e6202009-03-18 20:45:58 -04001162/**
1163 * svc_find_xprt - find an RPC transport instance
1164 * @serv: pointer to svc_serv to search
1165 * @xcl_name: C string containing transport's class name
Stanislav Kinsbursky4cb54ca2012-01-20 16:50:53 +04001166 * @net: owner net pointer
Chuck Lever156e6202009-03-18 20:45:58 -04001167 * @af: Address family of transport's local address
1168 * @port: transport's IP port number
1169 *
Tom Tucker7fcb98d2007-12-30 21:08:33 -06001170 * Return the transport instance pointer for the endpoint accepting
1171 * connections/peer traffic from the specified transport class,
1172 * address family and port.
1173 *
1174 * Specifying 0 for the address family or port is effectively a
1175 * wild-card, and will result in matching the first transport in the
1176 * service's list that has a matching class name.
1177 */
Chuck Lever156e6202009-03-18 20:45:58 -04001178struct svc_xprt *svc_find_xprt(struct svc_serv *serv, const char *xcl_name,
Stanislav Kinsbursky4cb54ca2012-01-20 16:50:53 +04001179 struct net *net, const sa_family_t af,
1180 const unsigned short port)
Tom Tucker7fcb98d2007-12-30 21:08:33 -06001181{
1182 struct svc_xprt *xprt;
1183 struct svc_xprt *found = NULL;
1184
1185 /* Sanity check the args */
Chuck Lever156e6202009-03-18 20:45:58 -04001186 if (serv == NULL || xcl_name == NULL)
Tom Tucker7fcb98d2007-12-30 21:08:33 -06001187 return found;
1188
1189 spin_lock_bh(&serv->sv_lock);
1190 list_for_each_entry(xprt, &serv->sv_permsocks, xpt_list) {
Stanislav Kinsbursky4cb54ca2012-01-20 16:50:53 +04001191 if (xprt->xpt_net != net)
1192 continue;
Tom Tucker7fcb98d2007-12-30 21:08:33 -06001193 if (strcmp(xprt->xpt_class->xcl_name, xcl_name))
1194 continue;
1195 if (af != AF_UNSPEC && af != xprt->xpt_local.ss_family)
1196 continue;
Chuck Lever156e6202009-03-18 20:45:58 -04001197 if (port != 0 && port != svc_xprt_local_port(xprt))
Tom Tucker7fcb98d2007-12-30 21:08:33 -06001198 continue;
1199 found = xprt;
Tom Tuckera2178132007-12-30 21:08:35 -06001200 svc_xprt_get(xprt);
Tom Tucker7fcb98d2007-12-30 21:08:33 -06001201 break;
1202 }
1203 spin_unlock_bh(&serv->sv_lock);
1204 return found;
1205}
1206EXPORT_SYMBOL_GPL(svc_find_xprt);
Tom Tucker9571af12007-12-30 21:08:37 -06001207
Chuck Lever335c54b2009-04-23 19:32:25 -04001208static int svc_one_xprt_name(const struct svc_xprt *xprt,
1209 char *pos, int remaining)
1210{
1211 int len;
1212
1213 len = snprintf(pos, remaining, "%s %u\n",
1214 xprt->xpt_class->xcl_name,
1215 svc_xprt_local_port(xprt));
1216 if (len >= remaining)
1217 return -ENAMETOOLONG;
1218 return len;
1219}
1220
1221/**
1222 * svc_xprt_names - format a buffer with a list of transport names
1223 * @serv: pointer to an RPC service
1224 * @buf: pointer to a buffer to be filled in
1225 * @buflen: length of buffer to be filled in
1226 *
1227 * Fills in @buf with a string containing a list of transport names,
1228 * each name terminated with '\n'.
1229 *
1230 * Returns positive length of the filled-in string on success; otherwise
1231 * a negative errno value is returned if an error occurs.
Tom Tucker9571af12007-12-30 21:08:37 -06001232 */
Chuck Lever335c54b2009-04-23 19:32:25 -04001233int svc_xprt_names(struct svc_serv *serv, char *buf, const int buflen)
Tom Tucker9571af12007-12-30 21:08:37 -06001234{
1235 struct svc_xprt *xprt;
Chuck Lever335c54b2009-04-23 19:32:25 -04001236 int len, totlen;
1237 char *pos;
Tom Tucker9571af12007-12-30 21:08:37 -06001238
1239 /* Sanity check args */
1240 if (!serv)
1241 return 0;
1242
1243 spin_lock_bh(&serv->sv_lock);
Chuck Lever335c54b2009-04-23 19:32:25 -04001244
1245 pos = buf;
1246 totlen = 0;
Tom Tucker9571af12007-12-30 21:08:37 -06001247 list_for_each_entry(xprt, &serv->sv_permsocks, xpt_list) {
Chuck Lever335c54b2009-04-23 19:32:25 -04001248 len = svc_one_xprt_name(xprt, pos, buflen - totlen);
1249 if (len < 0) {
1250 *buf = '\0';
1251 totlen = len;
1252 }
1253 if (len <= 0)
Tom Tucker9571af12007-12-30 21:08:37 -06001254 break;
Chuck Lever335c54b2009-04-23 19:32:25 -04001255
1256 pos += len;
Tom Tucker9571af12007-12-30 21:08:37 -06001257 totlen += len;
1258 }
Chuck Lever335c54b2009-04-23 19:32:25 -04001259
Tom Tucker9571af12007-12-30 21:08:37 -06001260 spin_unlock_bh(&serv->sv_lock);
1261 return totlen;
1262}
1263EXPORT_SYMBOL_GPL(svc_xprt_names);
Greg Banks03cf6c92009-01-13 21:26:36 +11001264
1265
1266/*----------------------------------------------------------------------------*/
1267
1268static void *svc_pool_stats_start(struct seq_file *m, loff_t *pos)
1269{
1270 unsigned int pidx = (unsigned int)*pos;
1271 struct svc_serv *serv = m->private;
1272
1273 dprintk("svc_pool_stats_start, *pidx=%u\n", pidx);
1274
Greg Banks03cf6c92009-01-13 21:26:36 +11001275 if (!pidx)
1276 return SEQ_START_TOKEN;
1277 return (pidx > serv->sv_nrpools ? NULL : &serv->sv_pools[pidx-1]);
1278}
1279
1280static void *svc_pool_stats_next(struct seq_file *m, void *p, loff_t *pos)
1281{
1282 struct svc_pool *pool = p;
1283 struct svc_serv *serv = m->private;
1284
1285 dprintk("svc_pool_stats_next, *pos=%llu\n", *pos);
1286
1287 if (p == SEQ_START_TOKEN) {
1288 pool = &serv->sv_pools[0];
1289 } else {
1290 unsigned int pidx = (pool - &serv->sv_pools[0]);
1291 if (pidx < serv->sv_nrpools-1)
1292 pool = &serv->sv_pools[pidx+1];
1293 else
1294 pool = NULL;
1295 }
1296 ++*pos;
1297 return pool;
1298}
1299
1300static void svc_pool_stats_stop(struct seq_file *m, void *p)
1301{
Greg Banks03cf6c92009-01-13 21:26:36 +11001302}
1303
1304static int svc_pool_stats_show(struct seq_file *m, void *p)
1305{
1306 struct svc_pool *pool = p;
1307
1308 if (p == SEQ_START_TOKEN) {
J. Bruce Fields78c210e2009-08-06 15:41:34 -04001309 seq_puts(m, "# pool packets-arrived sockets-enqueued threads-woken threads-timedout\n");
Greg Banks03cf6c92009-01-13 21:26:36 +11001310 return 0;
1311 }
1312
J. Bruce Fields78c210e2009-08-06 15:41:34 -04001313 seq_printf(m, "%u %lu %lu %lu %lu\n",
Greg Banks03cf6c92009-01-13 21:26:36 +11001314 pool->sp_id,
1315 pool->sp_stats.packets,
1316 pool->sp_stats.sockets_queued,
1317 pool->sp_stats.threads_woken,
Greg Banks03cf6c92009-01-13 21:26:36 +11001318 pool->sp_stats.threads_timedout);
1319
1320 return 0;
1321}
1322
1323static const struct seq_operations svc_pool_stats_seq_ops = {
1324 .start = svc_pool_stats_start,
1325 .next = svc_pool_stats_next,
1326 .stop = svc_pool_stats_stop,
1327 .show = svc_pool_stats_show,
1328};
1329
1330int svc_pool_stats_open(struct svc_serv *serv, struct file *file)
1331{
1332 int err;
1333
1334 err = seq_open(file, &svc_pool_stats_seq_ops);
1335 if (!err)
1336 ((struct seq_file *) file->private_data)->private = serv;
1337 return err;
1338}
1339EXPORT_SYMBOL(svc_pool_stats_open);
1340
1341/*----------------------------------------------------------------------------*/