blob: 73d40bd1839a38f05cf4a5ecad4b874a99a5e77a [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
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
Trond Myklebust09713742014-07-24 23:59:31 -0400322static void 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}
Trond Myklebust09713742014-07-24 23:59:31 -0400404
405/*
406 * Queue up a transport with data pending. If there are idle nfsd
407 * processes, wake 'em up.
408 *
409 */
410void svc_xprt_enqueue(struct svc_xprt *xprt)
411{
412 if (test_bit(XPT_BUSY, &xprt->xpt_flags))
413 return;
414 svc_xprt_do_enqueue(xprt);
415}
Tom Tucker0f0257e2007-12-30 21:08:27 -0600416EXPORT_SYMBOL_GPL(svc_xprt_enqueue);
417
418/*
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500419 * Dequeue the first transport, if there is one.
Tom Tucker0f0257e2007-12-30 21:08:27 -0600420 */
421static struct svc_xprt *svc_xprt_dequeue(struct svc_pool *pool)
422{
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500423 struct svc_xprt *xprt = NULL;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600424
425 if (list_empty(&pool->sp_sockets))
Jeff Layton83a712e2014-11-21 14:19:31 -0500426 goto out;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600427
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500428 spin_lock_bh(&pool->sp_lock);
429 if (likely(!list_empty(&pool->sp_sockets))) {
430 xprt = list_first_entry(&pool->sp_sockets,
431 struct svc_xprt, xpt_ready);
432 list_del_init(&xprt->xpt_ready);
433 svc_xprt_get(xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600434
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500435 dprintk("svc: transport %p dequeued, inuse=%d\n",
436 xprt, atomic_read(&xprt->xpt_ref.refcount));
437 }
438 spin_unlock_bh(&pool->sp_lock);
Jeff Layton83a712e2014-11-21 14:19:31 -0500439out:
440 trace_svc_xprt_dequeue(xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600441 return xprt;
442}
443
Tom Tucker0f0257e2007-12-30 21:08:27 -0600444/**
445 * svc_reserve - change the space reserved for the reply to a request.
446 * @rqstp: The request in question
447 * @space: new max space to reserve
448 *
449 * Each request reserves some space on the output queue of the transport
450 * to make sure the reply fits. This function reduces that reserved
451 * space to be the amount of space used already, plus @space.
452 *
453 */
454void svc_reserve(struct svc_rqst *rqstp, int space)
455{
456 space += rqstp->rq_res.head[0].iov_len;
457
458 if (space < rqstp->rq_reserved) {
459 struct svc_xprt *xprt = rqstp->rq_xprt;
460 atomic_sub((rqstp->rq_reserved - space), &xprt->xpt_reserved);
461 rqstp->rq_reserved = space;
462
Trond Myklebust51877682014-07-24 23:59:33 -0400463 if (xprt->xpt_ops->xpo_adjust_wspace)
464 xprt->xpt_ops->xpo_adjust_wspace(xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600465 svc_xprt_enqueue(xprt);
466 }
467}
Trond Myklebust24c37672008-12-23 16:30:12 -0500468EXPORT_SYMBOL_GPL(svc_reserve);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600469
470static void svc_xprt_release(struct svc_rqst *rqstp)
471{
472 struct svc_xprt *xprt = rqstp->rq_xprt;
473
474 rqstp->rq_xprt->xpt_ops->xpo_release_rqst(rqstp);
475
Tom Tucker2779e3a2009-01-05 11:12:52 -0600476 kfree(rqstp->rq_deferred);
477 rqstp->rq_deferred = NULL;
478
Tom Tucker0f0257e2007-12-30 21:08:27 -0600479 svc_free_res_pages(rqstp);
480 rqstp->rq_res.page_len = 0;
481 rqstp->rq_res.page_base = 0;
482
483 /* Reset response buffer and release
484 * the reservation.
485 * But first, check that enough space was reserved
486 * for the reply, otherwise we have a bug!
487 */
488 if ((rqstp->rq_res.len) > rqstp->rq_reserved)
489 printk(KERN_ERR "RPC request reserved %d but used %d\n",
490 rqstp->rq_reserved,
491 rqstp->rq_res.len);
492
493 rqstp->rq_res.head[0].iov_len = 0;
494 svc_reserve(rqstp, 0);
495 rqstp->rq_xprt = NULL;
496
497 svc_xprt_put(xprt);
498}
499
500/*
Jeff Laytonceff7392014-11-19 07:51:21 -0500501 * Some svc_serv's will have occasional work to do, even when a xprt is not
502 * waiting to be serviced. This function is there to "kick" a task in one of
503 * those services so that it can wake up and do that work. Note that we only
504 * bother with pool 0 as we don't need to wake up more than one thread for
505 * this purpose.
Tom Tucker0f0257e2007-12-30 21:08:27 -0600506 */
507void svc_wake_up(struct svc_serv *serv)
508{
509 struct svc_rqst *rqstp;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600510 struct svc_pool *pool;
511
Jeff Laytonceff7392014-11-19 07:51:21 -0500512 pool = &serv->sv_pools[0];
Tom Tucker0f0257e2007-12-30 21:08:27 -0600513
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500514 rcu_read_lock();
515 list_for_each_entry_rcu(rqstp, &pool->sp_all_threads, rq_all) {
516 /* skip any that aren't queued */
517 if (test_bit(RQ_BUSY, &rqstp->rq_flags))
518 continue;
519 rcu_read_unlock();
Jeff Laytonceff7392014-11-19 07:51:21 -0500520 dprintk("svc: daemon %p woken up.\n", rqstp);
521 wake_up_process(rqstp->rq_task);
Jeff Layton83a712e2014-11-21 14:19:31 -0500522 trace_svc_wake_up(rqstp->rq_task->pid);
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500523 return;
524 }
525 rcu_read_unlock();
526
527 /* No free entries available */
528 set_bit(SP_TASK_PENDING, &pool->sp_flags);
529 smp_wmb();
Jeff Layton83a712e2014-11-21 14:19:31 -0500530 trace_svc_wake_up(0);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600531}
Trond Myklebust24c37672008-12-23 16:30:12 -0500532EXPORT_SYMBOL_GPL(svc_wake_up);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600533
534int svc_port_is_privileged(struct sockaddr *sin)
535{
536 switch (sin->sa_family) {
537 case AF_INET:
538 return ntohs(((struct sockaddr_in *)sin)->sin_port)
539 < PROT_SOCK;
540 case AF_INET6:
541 return ntohs(((struct sockaddr_in6 *)sin)->sin6_port)
542 < PROT_SOCK;
543 default:
544 return 0;
545 }
546}
547
548/*
Jeff Laytonc9233eb2008-10-20 11:51:57 -0400549 * Make sure that we don't have too many active connections. If we have,
550 * something must be dropped. It's not clear what will happen if we allow
551 * "too many" connections, but when dealing with network-facing software,
552 * we have to code defensively. Here we do that by imposing hard limits.
Tom Tucker0f0257e2007-12-30 21:08:27 -0600553 *
554 * There's no point in trying to do random drop here for DoS
555 * prevention. The NFS clients does 1 reconnect in 15 seconds. An
556 * attacker can easily beat that.
557 *
558 * The only somewhat efficient mechanism would be if drop old
559 * connections from the same IP first. But right now we don't even
560 * record the client IP in svc_sock.
Jeff Laytonc9233eb2008-10-20 11:51:57 -0400561 *
562 * single-threaded services that expect a lot of clients will probably
563 * need to set sv_maxconn to override the default value which is based
564 * on the number of threads
Tom Tucker0f0257e2007-12-30 21:08:27 -0600565 */
566static void svc_check_conn_limits(struct svc_serv *serv)
567{
Jeff Laytonc9233eb2008-10-20 11:51:57 -0400568 unsigned int limit = serv->sv_maxconn ? serv->sv_maxconn :
569 (serv->sv_nrthreads+3) * 20;
570
571 if (serv->sv_tmpcnt > limit) {
Tom Tucker0f0257e2007-12-30 21:08:27 -0600572 struct svc_xprt *xprt = NULL;
573 spin_lock_bh(&serv->sv_lock);
574 if (!list_empty(&serv->sv_tempsocks)) {
Joe Perchese87cc472012-05-13 21:56:26 +0000575 /* Try to help the admin */
576 net_notice_ratelimited("%s: too many open connections, consider increasing the %s\n",
577 serv->sv_name, serv->sv_maxconn ?
578 "max number of connections" :
579 "number of threads");
Tom Tucker0f0257e2007-12-30 21:08:27 -0600580 /*
581 * Always select the oldest connection. It's not fair,
582 * but so is life
583 */
584 xprt = list_entry(serv->sv_tempsocks.prev,
585 struct svc_xprt,
586 xpt_list);
587 set_bit(XPT_CLOSE, &xprt->xpt_flags);
588 svc_xprt_get(xprt);
589 }
590 spin_unlock_bh(&serv->sv_lock);
591
592 if (xprt) {
593 svc_xprt_enqueue(xprt);
594 svc_xprt_put(xprt);
595 }
596 }
597}
598
Rashika Kheriae1d83ee2014-02-09 22:33:03 +0530599static int svc_alloc_arg(struct svc_rqst *rqstp)
Tom Tucker0f0257e2007-12-30 21:08:27 -0600600{
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400601 struct svc_serv *serv = rqstp->rq_server;
602 struct xdr_buf *arg;
603 int pages;
604 int i;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600605
606 /* now allocate needed pages. If we get a failure, sleep briefly */
607 pages = (serv->sv_max_mesg + PAGE_SIZE) / PAGE_SIZE;
Weston Andros Adamsonb25cd052012-10-23 10:43:41 -0400608 WARN_ON_ONCE(pages >= RPCSVC_MAXPAGES);
609 if (pages >= RPCSVC_MAXPAGES)
610 /* use as many pages as possible */
611 pages = RPCSVC_MAXPAGES - 1;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600612 for (i = 0; i < pages ; i++)
613 while (rqstp->rq_pages[i] == NULL) {
614 struct page *p = alloc_page(GFP_KERNEL);
615 if (!p) {
Jeff Layton7b54fe62008-02-12 11:47:24 -0500616 set_current_state(TASK_INTERRUPTIBLE);
617 if (signalled() || kthread_should_stop()) {
618 set_current_state(TASK_RUNNING);
Jeff Layton70867212008-02-07 16:34:54 -0500619 return -EINTR;
Jeff Layton7b54fe62008-02-12 11:47:24 -0500620 }
621 schedule_timeout(msecs_to_jiffies(500));
Tom Tucker0f0257e2007-12-30 21:08:27 -0600622 }
623 rqstp->rq_pages[i] = p;
624 }
J. Bruce Fields2825a7f2013-08-26 16:04:46 -0400625 rqstp->rq_page_end = &rqstp->rq_pages[i];
Tom Tucker0f0257e2007-12-30 21:08:27 -0600626 rqstp->rq_pages[i++] = NULL; /* this might be seen in nfs_read_actor */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600627
628 /* Make arg->head point to first page and arg->pages point to rest */
629 arg = &rqstp->rq_arg;
630 arg->head[0].iov_base = page_address(rqstp->rq_pages[0]);
631 arg->head[0].iov_len = PAGE_SIZE;
632 arg->pages = rqstp->rq_pages + 1;
633 arg->page_base = 0;
634 /* save at least one page for response */
635 arg->page_len = (pages-2)*PAGE_SIZE;
636 arg->len = (pages-1)*PAGE_SIZE;
637 arg->tail[0].iov_len = 0;
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400638 return 0;
639}
Tom Tucker0f0257e2007-12-30 21:08:27 -0600640
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500641static bool
642rqst_should_sleep(struct svc_rqst *rqstp)
643{
644 struct svc_pool *pool = rqstp->rq_pool;
645
646 /* did someone call svc_wake_up? */
647 if (test_and_clear_bit(SP_TASK_PENDING, &pool->sp_flags))
648 return false;
649
650 /* was a socket queued? */
651 if (!list_empty(&pool->sp_sockets))
652 return false;
653
654 /* are we shutting down? */
655 if (signalled() || kthread_should_stop())
656 return false;
657
658 /* are we freezing? */
659 if (freezing(current))
660 return false;
661
662 return true;
663}
664
Rashika Kheriae1d83ee2014-02-09 22:33:03 +0530665static struct svc_xprt *svc_get_next_xprt(struct svc_rqst *rqstp, long timeout)
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400666{
667 struct svc_xprt *xprt;
668 struct svc_pool *pool = rqstp->rq_pool;
Trond Myklebusta4aa8052014-08-03 13:03:11 -0400669 long time_left = 0;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600670
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500671 /* rq_xprt should be clear on entry */
672 WARN_ON_ONCE(rqstp->rq_xprt);
673
NeilBrownf16b6e82010-08-12 17:04:06 +1000674 /* Normally we will wait up to 5 seconds for any required
675 * cache information to be provided.
676 */
677 rqstp->rq_chandle.thread_wait = 5*HZ;
678
Tom Tucker0f0257e2007-12-30 21:08:27 -0600679 xprt = svc_xprt_dequeue(pool);
680 if (xprt) {
681 rqstp->rq_xprt = xprt;
NeilBrownf16b6e82010-08-12 17:04:06 +1000682
683 /* As there is a shortage of threads and this request
J. Bruce Fields6610f722010-08-26 13:19:52 -0400684 * had to be queued, don't allow the thread to wait so
NeilBrownf16b6e82010-08-12 17:04:06 +1000685 * long for cache updates.
686 */
687 rqstp->rq_chandle.thread_wait = 1*HZ;
Jeff Layton4d5db3f2014-11-19 07:51:20 -0500688 clear_bit(SP_TASK_PENDING, &pool->sp_flags);
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500689 return xprt;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600690 }
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500691
692 /*
693 * We have to be able to interrupt this wait
694 * to bring down the daemons ...
695 */
696 set_current_state(TASK_INTERRUPTIBLE);
697 clear_bit(RQ_BUSY, &rqstp->rq_flags);
698 smp_mb();
699
700 if (likely(rqst_should_sleep(rqstp)))
701 time_left = schedule_timeout(timeout);
702 else
703 __set_current_state(TASK_RUNNING);
704
705 try_to_freeze();
706
707 spin_lock_bh(&rqstp->rq_lock);
708 set_bit(RQ_BUSY, &rqstp->rq_flags);
709 spin_unlock_bh(&rqstp->rq_lock);
710
711 xprt = rqstp->rq_xprt;
712 if (xprt != NULL)
713 return xprt;
714
715 if (!time_left)
716 atomic_long_inc(&pool->sp_stats.threads_timedout);
717
718 if (signalled() || kthread_should_stop())
719 return ERR_PTR(-EINTR);
720 return ERR_PTR(-EAGAIN);
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400721}
Tom Tucker0f0257e2007-12-30 21:08:27 -0600722
Rashika Kheriae1d83ee2014-02-09 22:33:03 +0530723static void svc_add_new_temp_xprt(struct svc_serv *serv, struct svc_xprt *newxpt)
J. Bruce Fields65b2e662012-08-18 15:44:33 -0400724{
725 spin_lock_bh(&serv->sv_lock);
726 set_bit(XPT_TEMP, &newxpt->xpt_flags);
727 list_add(&newxpt->xpt_list, &serv->sv_tempsocks);
728 serv->sv_tmpcnt++;
729 if (serv->sv_temptimer.function == NULL) {
730 /* setup timer to age temp transports */
731 setup_timer(&serv->sv_temptimer, svc_age_temp_xprts,
732 (unsigned long)serv);
733 mod_timer(&serv->sv_temptimer,
734 jiffies + svc_conn_age_period * HZ);
735 }
736 spin_unlock_bh(&serv->sv_lock);
737 svc_xprt_received(newxpt);
738}
739
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400740static int svc_handle_xprt(struct svc_rqst *rqstp, struct svc_xprt *xprt)
741{
742 struct svc_serv *serv = rqstp->rq_server;
743 int len = 0;
744
J. Bruce Fields1b644b62010-02-28 16:33:31 -0500745 if (test_bit(XPT_CLOSE, &xprt->xpt_flags)) {
746 dprintk("svc_recv: found XPT_CLOSE\n");
747 svc_delete_xprt(xprt);
J. Bruce Fieldsca7896c2010-10-25 14:12:40 -0400748 /* Leave XPT_BUSY set on the dead xprt: */
Jeff Layton83a712e2014-11-21 14:19:31 -0500749 goto out;
J. Bruce Fieldsca7896c2010-10-25 14:12:40 -0400750 }
751 if (test_bit(XPT_LISTENER, &xprt->xpt_flags)) {
Tom Tucker0f0257e2007-12-30 21:08:27 -0600752 struct svc_xprt *newxpt;
J. Bruce Fields65b2e662012-08-18 15:44:33 -0400753 /*
754 * We know this module_get will succeed because the
755 * listener holds a reference too
756 */
757 __module_get(xprt->xpt_class->xcl_owner);
758 svc_check_conn_limits(xprt->xpt_server);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600759 newxpt = xprt->xpt_ops->xpo_accept(xprt);
J. Bruce Fields65b2e662012-08-18 15:44:33 -0400760 if (newxpt)
761 svc_add_new_temp_xprt(serv, newxpt);
Trond Myklebustc7891022014-05-18 14:05:22 -0400762 else
763 module_put(xprt->xpt_class->xcl_owner);
Trond Myklebust9e5b2082014-08-03 13:03:06 -0400764 } else {
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400765 /* XPT_DATA|XPT_DEFERRED case: */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600766 dprintk("svc: server %p, pool %u, transport %p, inuse=%d\n",
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400767 rqstp, rqstp->rq_pool->sp_id, xprt,
Tom Tucker0f0257e2007-12-30 21:08:27 -0600768 atomic_read(&xprt->xpt_ref.refcount));
769 rqstp->rq_deferred = svc_deferred_dequeue(xprt);
J. Bruce Fieldsca7896c2010-10-25 14:12:40 -0400770 if (rqstp->rq_deferred)
Tom Tucker0f0257e2007-12-30 21:08:27 -0600771 len = svc_deferred_recv(rqstp);
J. Bruce Fieldsca7896c2010-10-25 14:12:40 -0400772 else
Tom Tucker0f0257e2007-12-30 21:08:27 -0600773 len = xprt->xpt_ops->xpo_recvfrom(rqstp);
774 dprintk("svc: got len=%d\n", len);
J. Bruce Fieldsd10f27a2012-08-17 17:31:53 -0400775 rqstp->rq_reserved = serv->sv_max_mesg;
776 atomic_add(rqstp->rq_reserved, &xprt->xpt_reserved);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600777 }
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400778 /* clear XPT_BUSY: */
J. Bruce Fieldsca7896c2010-10-25 14:12:40 -0400779 svc_xprt_received(xprt);
Jeff Layton83a712e2014-11-21 14:19:31 -0500780out:
781 trace_svc_handle_xprt(xprt, len);
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400782 return len;
783}
784
785/*
786 * Receive the next request on any transport. This code is carefully
787 * organised not to touch any cachelines in the shared svc_serv
788 * structure, only cachelines in the local svc_pool.
789 */
790int svc_recv(struct svc_rqst *rqstp, long timeout)
791{
792 struct svc_xprt *xprt = NULL;
793 struct svc_serv *serv = rqstp->rq_server;
794 int len, err;
795
796 dprintk("svc: server %p waiting for data (to = %ld)\n",
797 rqstp, timeout);
798
799 if (rqstp->rq_xprt)
800 printk(KERN_ERR
801 "svc_recv: service %p, transport not NULL!\n",
802 rqstp);
Trond Myklebust983c6842014-08-03 13:03:10 -0400803
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400804 err = svc_alloc_arg(rqstp);
805 if (err)
Jeff Layton860a0d92014-10-28 14:24:12 -0400806 goto out;
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400807
808 try_to_freeze();
809 cond_resched();
Jeff Layton860a0d92014-10-28 14:24:12 -0400810 err = -EINTR;
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400811 if (signalled() || kthread_should_stop())
Jeff Layton860a0d92014-10-28 14:24:12 -0400812 goto out;
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400813
814 xprt = svc_get_next_xprt(rqstp, timeout);
Jeff Layton860a0d92014-10-28 14:24:12 -0400815 if (IS_ERR(xprt)) {
816 err = PTR_ERR(xprt);
817 goto out;
818 }
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400819
820 len = svc_handle_xprt(rqstp, xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600821
822 /* No data, incomplete (TCP) read, or accept() */
Jeff Layton860a0d92014-10-28 14:24:12 -0400823 err = -EAGAIN;
J. Bruce Fields9f9d2eb2012-08-17 21:35:24 -0400824 if (len <= 0)
Jeff Layton860a0d92014-10-28 14:24:12 -0400825 goto out_release;
J. Bruce Fieldsca7896c2010-10-25 14:12:40 -0400826
Tom Tucker0f0257e2007-12-30 21:08:27 -0600827 clear_bit(XPT_OLD, &xprt->xpt_flags);
828
Jeff Layton4d152e22014-11-19 07:51:14 -0500829 if (xprt->xpt_ops->xpo_secure_port(rqstp))
830 set_bit(RQ_SECURE, &rqstp->rq_flags);
831 else
832 clear_bit(RQ_SECURE, &rqstp->rq_flags);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600833 rqstp->rq_chandle.defer = svc_defer;
Jeff Layton860a0d92014-10-28 14:24:12 -0400834 rqstp->rq_xid = svc_getu32(&rqstp->rq_arg.head[0]);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600835
836 if (serv->sv_stats)
837 serv->sv_stats->netcnt++;
Jeff Layton860a0d92014-10-28 14:24:12 -0400838 trace_svc_recv(rqstp, len);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600839 return len;
Jeff Layton860a0d92014-10-28 14:24:12 -0400840out_release:
J. Bruce Fieldsca7896c2010-10-25 14:12:40 -0400841 rqstp->rq_res.len = 0;
842 svc_xprt_release(rqstp);
Jeff Layton860a0d92014-10-28 14:24:12 -0400843out:
844 trace_svc_recv(rqstp, err);
845 return err;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600846}
Trond Myklebust24c37672008-12-23 16:30:12 -0500847EXPORT_SYMBOL_GPL(svc_recv);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600848
849/*
850 * Drop request
851 */
852void svc_drop(struct svc_rqst *rqstp)
853{
854 dprintk("svc: xprt %p dropped request\n", rqstp->rq_xprt);
855 svc_xprt_release(rqstp);
856}
Trond Myklebust24c37672008-12-23 16:30:12 -0500857EXPORT_SYMBOL_GPL(svc_drop);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600858
859/*
860 * Return reply to client.
861 */
862int svc_send(struct svc_rqst *rqstp)
863{
864 struct svc_xprt *xprt;
Jeff Layton860a0d92014-10-28 14:24:12 -0400865 int len = -EFAULT;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600866 struct xdr_buf *xb;
867
868 xprt = rqstp->rq_xprt;
869 if (!xprt)
Jeff Layton860a0d92014-10-28 14:24:12 -0400870 goto out;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600871
872 /* release the receive skb before sending the reply */
873 rqstp->rq_xprt->xpt_ops->xpo_release_rqst(rqstp);
874
875 /* calculate over-all length */
876 xb = &rqstp->rq_res;
877 xb->len = xb->head[0].iov_len +
878 xb->page_len +
879 xb->tail[0].iov_len;
880
881 /* Grab mutex to serialize outgoing data. */
882 mutex_lock(&xprt->xpt_mutex);
J. Bruce Fieldsf06f00a2012-08-20 16:04:40 -0400883 if (test_bit(XPT_DEAD, &xprt->xpt_flags)
884 || test_bit(XPT_CLOSE, &xprt->xpt_flags))
Tom Tucker0f0257e2007-12-30 21:08:27 -0600885 len = -ENOTCONN;
886 else
887 len = xprt->xpt_ops->xpo_sendto(rqstp);
888 mutex_unlock(&xprt->xpt_mutex);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300889 rpc_wake_up(&xprt->xpt_bc_pending);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600890 svc_xprt_release(rqstp);
891
892 if (len == -ECONNREFUSED || len == -ENOTCONN || len == -EAGAIN)
Jeff Layton860a0d92014-10-28 14:24:12 -0400893 len = 0;
894out:
895 trace_svc_send(rqstp, len);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600896 return len;
897}
898
899/*
900 * Timer function to close old temporary transports, using
901 * a mark-and-sweep algorithm.
902 */
903static void svc_age_temp_xprts(unsigned long closure)
904{
905 struct svc_serv *serv = (struct svc_serv *)closure;
906 struct svc_xprt *xprt;
907 struct list_head *le, *next;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600908
909 dprintk("svc_age_temp_xprts\n");
910
911 if (!spin_trylock_bh(&serv->sv_lock)) {
912 /* busy, try again 1 sec later */
913 dprintk("svc_age_temp_xprts: busy\n");
914 mod_timer(&serv->sv_temptimer, jiffies + HZ);
915 return;
916 }
917
918 list_for_each_safe(le, next, &serv->sv_tempsocks) {
919 xprt = list_entry(le, struct svc_xprt, xpt_list);
920
921 /* First time through, just mark it OLD. Second time
922 * through, close it. */
923 if (!test_and_set_bit(XPT_OLD, &xprt->xpt_flags))
924 continue;
Joe Perchesf64f9e72009-11-29 16:55:45 -0800925 if (atomic_read(&xprt->xpt_ref.refcount) > 1 ||
926 test_bit(XPT_BUSY, &xprt->xpt_flags))
Tom Tucker0f0257e2007-12-30 21:08:27 -0600927 continue;
J. Bruce Fieldse75bafb2013-02-10 11:33:48 -0500928 list_del_init(le);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600929 set_bit(XPT_CLOSE, &xprt->xpt_flags);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600930 dprintk("queuing xprt %p for closing\n", xprt);
931
932 /* a thread will dequeue and close it soon */
933 svc_xprt_enqueue(xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600934 }
J. Bruce Fieldse75bafb2013-02-10 11:33:48 -0500935 spin_unlock_bh(&serv->sv_lock);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600936
937 mod_timer(&serv->sv_temptimer, jiffies + svc_conn_age_period * HZ);
938}
939
J. Bruce Fieldsedc7a892010-03-22 15:37:17 -0400940static void call_xpt_users(struct svc_xprt *xprt)
941{
942 struct svc_xpt_user *u;
943
944 spin_lock(&xprt->xpt_lock);
945 while (!list_empty(&xprt->xpt_users)) {
946 u = list_first_entry(&xprt->xpt_users, struct svc_xpt_user, list);
947 list_del(&u->list);
948 u->callback(u);
949 }
950 spin_unlock(&xprt->xpt_lock);
951}
952
Tom Tucker0f0257e2007-12-30 21:08:27 -0600953/*
954 * Remove a dead transport
955 */
J. Bruce Fields7710ec32011-11-25 18:44:05 -0500956static void svc_delete_xprt(struct svc_xprt *xprt)
Tom Tucker0f0257e2007-12-30 21:08:27 -0600957{
958 struct svc_serv *serv = xprt->xpt_server;
Tom Tucker22945e42009-01-05 15:21:19 -0600959 struct svc_deferred_req *dr;
960
961 /* Only do this once */
962 if (test_and_set_bit(XPT_DEAD, &xprt->xpt_flags))
J. Bruce Fieldsac9303e2010-10-23 11:16:10 -0400963 BUG();
Tom Tucker0f0257e2007-12-30 21:08:27 -0600964
965 dprintk("svc: svc_delete_xprt(%p)\n", xprt);
966 xprt->xpt_ops->xpo_detach(xprt);
967
968 spin_lock_bh(&serv->sv_lock);
Jeff Layton8d65ef72014-11-17 17:02:57 -0500969 list_del_init(&xprt->xpt_list);
Weston Andros Adamson01047292012-10-23 10:43:48 -0400970 WARN_ON_ONCE(!list_empty(&xprt->xpt_ready));
Tom Tucker22945e42009-01-05 15:21:19 -0600971 if (test_bit(XPT_TEMP, &xprt->xpt_flags))
972 serv->sv_tmpcnt--;
J. Bruce Fields788e69e2010-03-29 21:02:31 -0400973 spin_unlock_bh(&serv->sv_lock);
Tom Tucker22945e42009-01-05 15:21:19 -0600974
Neil Brownab1b18f2010-02-27 09:33:40 +1100975 while ((dr = svc_deferred_dequeue(xprt)) != NULL)
Tom Tucker22945e42009-01-05 15:21:19 -0600976 kfree(dr);
Tom Tucker22945e42009-01-05 15:21:19 -0600977
J. Bruce Fieldsedc7a892010-03-22 15:37:17 -0400978 call_xpt_users(xprt);
Tom Tucker22945e42009-01-05 15:21:19 -0600979 svc_xprt_put(xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600980}
981
982void svc_close_xprt(struct svc_xprt *xprt)
983{
984 set_bit(XPT_CLOSE, &xprt->xpt_flags);
985 if (test_and_set_bit(XPT_BUSY, &xprt->xpt_flags))
986 /* someone else will have to effect the close */
987 return;
J. Bruce Fieldsb1763312010-10-25 20:24:48 -0400988 /*
989 * We expect svc_close_xprt() to work even when no threads are
990 * running (e.g., while configuring the server before starting
991 * any threads), so if the transport isn't busy, we delete
992 * it ourself:
993 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600994 svc_delete_xprt(xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600995}
Tom Tuckera2178132007-12-30 21:08:35 -0600996EXPORT_SYMBOL_GPL(svc_close_xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600997
J. Bruce Fieldscc630d92013-02-10 16:08:11 -0500998static int svc_close_list(struct svc_serv *serv, struct list_head *xprt_list, struct net *net)
Tom Tucker0f0257e2007-12-30 21:08:27 -0600999{
1000 struct svc_xprt *xprt;
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001001 int ret = 0;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001002
J. Bruce Fields719f8bc2012-08-13 17:03:00 -04001003 spin_lock(&serv->sv_lock);
J. Bruce Fieldsb4f36f82011-11-29 17:00:26 -05001004 list_for_each_entry(xprt, xprt_list, xpt_list) {
Stanislav Kinsbursky7b147f12012-01-31 14:09:17 +04001005 if (xprt->xpt_net != net)
1006 continue;
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001007 ret++;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001008 set_bit(XPT_CLOSE, &xprt->xpt_flags);
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001009 svc_xprt_enqueue(xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001010 }
J. Bruce Fields719f8bc2012-08-13 17:03:00 -04001011 spin_unlock(&serv->sv_lock);
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001012 return ret;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001013}
1014
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001015static struct svc_xprt *svc_dequeue_net(struct svc_serv *serv, struct net *net)
J. Bruce Fields2fefb8a2011-11-29 11:35:35 -05001016{
J. Bruce Fieldsb4f36f82011-11-29 17:00:26 -05001017 struct svc_pool *pool;
1018 struct svc_xprt *xprt;
1019 struct svc_xprt *tmp;
1020 int i;
1021
J. Bruce Fieldsb4f36f82011-11-29 17:00:26 -05001022 for (i = 0; i < serv->sv_nrpools; i++) {
1023 pool = &serv->sv_pools[i];
1024
1025 spin_lock_bh(&pool->sp_lock);
Stanislav Kinsbursky6f513362012-01-31 14:09:00 +04001026 list_for_each_entry_safe(xprt, tmp, &pool->sp_sockets, xpt_ready) {
Stanislav Kinsbursky7b147f12012-01-31 14:09:17 +04001027 if (xprt->xpt_net != net)
1028 continue;
J. Bruce Fieldsb4f36f82011-11-29 17:00:26 -05001029 list_del_init(&xprt->xpt_ready);
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001030 spin_unlock_bh(&pool->sp_lock);
1031 return xprt;
J. Bruce Fieldsb4f36f82011-11-29 17:00:26 -05001032 }
1033 spin_unlock_bh(&pool->sp_lock);
1034 }
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001035 return NULL;
Stanislav Kinsbursky6f513362012-01-31 14:09:00 +04001036}
1037
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001038static void svc_clean_up_xprts(struct svc_serv *serv, struct net *net)
Stanislav Kinsbursky6f513362012-01-31 14:09:00 +04001039{
1040 struct svc_xprt *xprt;
Stanislav Kinsbursky6f513362012-01-31 14:09:00 +04001041
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001042 while ((xprt = svc_dequeue_net(serv, net))) {
1043 set_bit(XPT_CLOSE, &xprt->xpt_flags);
J. Bruce Fields719f8bc2012-08-13 17:03:00 -04001044 svc_delete_xprt(xprt);
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001045 }
Stanislav Kinsbursky3a22bf52012-01-31 14:09:08 +04001046}
1047
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001048/*
1049 * Server threads may still be running (especially in the case where the
1050 * service is still running in other network namespaces).
1051 *
1052 * So we shut down sockets the same way we would on a running server, by
1053 * setting XPT_CLOSE, enqueuing, and letting a thread pick it up to do
1054 * the close. In the case there are no such other threads,
1055 * threads running, svc_clean_up_xprts() does a simple version of a
1056 * server's main event loop, and in the case where there are other
1057 * threads, we may need to wait a little while and then check again to
1058 * see if they're done.
1059 */
Stanislav Kinsbursky7b147f12012-01-31 14:09:17 +04001060void svc_close_net(struct svc_serv *serv, struct net *net)
Stanislav Kinsbursky3a22bf52012-01-31 14:09:08 +04001061{
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001062 int delay = 0;
Stanislav Kinsbursky6f513362012-01-31 14:09:00 +04001063
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001064 while (svc_close_list(serv, &serv->sv_permsocks, net) +
1065 svc_close_list(serv, &serv->sv_tempsocks, net)) {
1066
1067 svc_clean_up_xprts(serv, net);
1068 msleep(delay++);
1069 }
J. Bruce Fields2fefb8a2011-11-29 11:35:35 -05001070}
1071
Tom Tucker0f0257e2007-12-30 21:08:27 -06001072/*
1073 * Handle defer and revisit of requests
1074 */
1075
1076static void svc_revisit(struct cache_deferred_req *dreq, int too_many)
1077{
1078 struct svc_deferred_req *dr =
1079 container_of(dreq, struct svc_deferred_req, handle);
1080 struct svc_xprt *xprt = dr->xprt;
1081
Tom Tucker22945e42009-01-05 15:21:19 -06001082 spin_lock(&xprt->xpt_lock);
1083 set_bit(XPT_DEFERRED, &xprt->xpt_flags);
1084 if (too_many || test_bit(XPT_DEAD, &xprt->xpt_flags)) {
1085 spin_unlock(&xprt->xpt_lock);
1086 dprintk("revisit canceled\n");
Tom Tucker0f0257e2007-12-30 21:08:27 -06001087 svc_xprt_put(xprt);
1088 kfree(dr);
1089 return;
1090 }
1091 dprintk("revisit queued\n");
1092 dr->xprt = NULL;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001093 list_add(&dr->handle.recent, &xprt->xpt_deferred);
1094 spin_unlock(&xprt->xpt_lock);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001095 svc_xprt_enqueue(xprt);
1096 svc_xprt_put(xprt);
1097}
1098
Tom Tucker260c1d12007-12-30 21:08:29 -06001099/*
1100 * Save the request off for later processing. The request buffer looks
1101 * like this:
1102 *
1103 * <xprt-header><rpc-header><rpc-pagelist><rpc-tail>
1104 *
1105 * This code can only handle requests that consist of an xprt-header
1106 * and rpc-header.
1107 */
Tom Tucker0f0257e2007-12-30 21:08:27 -06001108static struct cache_deferred_req *svc_defer(struct cache_req *req)
1109{
1110 struct svc_rqst *rqstp = container_of(req, struct svc_rqst, rq_chandle);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001111 struct svc_deferred_req *dr;
1112
Jeff Layton30660e04b2014-11-19 07:51:16 -05001113 if (rqstp->rq_arg.page_len || !test_bit(RQ_USEDEFERRAL, &rqstp->rq_flags))
Tom Tucker0f0257e2007-12-30 21:08:27 -06001114 return NULL; /* if more than a page, give up FIXME */
1115 if (rqstp->rq_deferred) {
1116 dr = rqstp->rq_deferred;
1117 rqstp->rq_deferred = NULL;
1118 } else {
Tom Tucker260c1d12007-12-30 21:08:29 -06001119 size_t skip;
1120 size_t size;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001121 /* FIXME maybe discard if size too large */
Tom Tucker260c1d12007-12-30 21:08:29 -06001122 size = sizeof(struct svc_deferred_req) + rqstp->rq_arg.len;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001123 dr = kmalloc(size, GFP_KERNEL);
1124 if (dr == NULL)
1125 return NULL;
1126
1127 dr->handle.owner = rqstp->rq_server;
1128 dr->prot = rqstp->rq_prot;
1129 memcpy(&dr->addr, &rqstp->rq_addr, rqstp->rq_addrlen);
1130 dr->addrlen = rqstp->rq_addrlen;
1131 dr->daddr = rqstp->rq_daddr;
1132 dr->argslen = rqstp->rq_arg.len >> 2;
Tom Tucker260c1d12007-12-30 21:08:29 -06001133 dr->xprt_hlen = rqstp->rq_xprt_hlen;
1134
1135 /* back up head to the start of the buffer and copy */
1136 skip = rqstp->rq_arg.len - rqstp->rq_arg.head[0].iov_len;
1137 memcpy(dr->args, rqstp->rq_arg.head[0].iov_base - skip,
1138 dr->argslen << 2);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001139 }
1140 svc_xprt_get(rqstp->rq_xprt);
1141 dr->xprt = rqstp->rq_xprt;
Jeff Layton78b65eb2014-11-19 07:51:17 -05001142 set_bit(RQ_DROPME, &rqstp->rq_flags);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001143
1144 dr->handle.revisit = svc_revisit;
1145 return &dr->handle;
1146}
1147
1148/*
1149 * recv data from a deferred request into an active one
1150 */
1151static int svc_deferred_recv(struct svc_rqst *rqstp)
1152{
1153 struct svc_deferred_req *dr = rqstp->rq_deferred;
1154
Tom Tucker260c1d12007-12-30 21:08:29 -06001155 /* setup iov_base past transport header */
1156 rqstp->rq_arg.head[0].iov_base = dr->args + (dr->xprt_hlen>>2);
1157 /* The iov_len does not include the transport header bytes */
1158 rqstp->rq_arg.head[0].iov_len = (dr->argslen<<2) - dr->xprt_hlen;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001159 rqstp->rq_arg.page_len = 0;
Tom Tucker260c1d12007-12-30 21:08:29 -06001160 /* The rq_arg.len includes the transport header bytes */
1161 rqstp->rq_arg.len = dr->argslen<<2;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001162 rqstp->rq_prot = dr->prot;
1163 memcpy(&rqstp->rq_addr, &dr->addr, dr->addrlen);
1164 rqstp->rq_addrlen = dr->addrlen;
Tom Tucker260c1d12007-12-30 21:08:29 -06001165 /* Save off transport header len in case we get deferred again */
1166 rqstp->rq_xprt_hlen = dr->xprt_hlen;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001167 rqstp->rq_daddr = dr->daddr;
1168 rqstp->rq_respages = rqstp->rq_pages;
Tom Tucker260c1d12007-12-30 21:08:29 -06001169 return (dr->argslen<<2) - dr->xprt_hlen;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001170}
1171
1172
1173static struct svc_deferred_req *svc_deferred_dequeue(struct svc_xprt *xprt)
1174{
1175 struct svc_deferred_req *dr = NULL;
1176
1177 if (!test_bit(XPT_DEFERRED, &xprt->xpt_flags))
1178 return NULL;
1179 spin_lock(&xprt->xpt_lock);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001180 if (!list_empty(&xprt->xpt_deferred)) {
1181 dr = list_entry(xprt->xpt_deferred.next,
1182 struct svc_deferred_req,
1183 handle.recent);
1184 list_del_init(&dr->handle.recent);
J. Bruce Fields62bac4a2010-10-25 12:50:15 -04001185 } else
1186 clear_bit(XPT_DEFERRED, &xprt->xpt_flags);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001187 spin_unlock(&xprt->xpt_lock);
1188 return dr;
1189}
Tom Tucker7fcb98d2007-12-30 21:08:33 -06001190
Chuck Lever156e6202009-03-18 20:45:58 -04001191/**
1192 * svc_find_xprt - find an RPC transport instance
1193 * @serv: pointer to svc_serv to search
1194 * @xcl_name: C string containing transport's class name
Stanislav Kinsbursky4cb54ca2012-01-20 16:50:53 +04001195 * @net: owner net pointer
Chuck Lever156e6202009-03-18 20:45:58 -04001196 * @af: Address family of transport's local address
1197 * @port: transport's IP port number
1198 *
Tom Tucker7fcb98d2007-12-30 21:08:33 -06001199 * Return the transport instance pointer for the endpoint accepting
1200 * connections/peer traffic from the specified transport class,
1201 * address family and port.
1202 *
1203 * Specifying 0 for the address family or port is effectively a
1204 * wild-card, and will result in matching the first transport in the
1205 * service's list that has a matching class name.
1206 */
Chuck Lever156e6202009-03-18 20:45:58 -04001207struct svc_xprt *svc_find_xprt(struct svc_serv *serv, const char *xcl_name,
Stanislav Kinsbursky4cb54ca2012-01-20 16:50:53 +04001208 struct net *net, const sa_family_t af,
1209 const unsigned short port)
Tom Tucker7fcb98d2007-12-30 21:08:33 -06001210{
1211 struct svc_xprt *xprt;
1212 struct svc_xprt *found = NULL;
1213
1214 /* Sanity check the args */
Chuck Lever156e6202009-03-18 20:45:58 -04001215 if (serv == NULL || xcl_name == NULL)
Tom Tucker7fcb98d2007-12-30 21:08:33 -06001216 return found;
1217
1218 spin_lock_bh(&serv->sv_lock);
1219 list_for_each_entry(xprt, &serv->sv_permsocks, xpt_list) {
Stanislav Kinsbursky4cb54ca2012-01-20 16:50:53 +04001220 if (xprt->xpt_net != net)
1221 continue;
Tom Tucker7fcb98d2007-12-30 21:08:33 -06001222 if (strcmp(xprt->xpt_class->xcl_name, xcl_name))
1223 continue;
1224 if (af != AF_UNSPEC && af != xprt->xpt_local.ss_family)
1225 continue;
Chuck Lever156e6202009-03-18 20:45:58 -04001226 if (port != 0 && port != svc_xprt_local_port(xprt))
Tom Tucker7fcb98d2007-12-30 21:08:33 -06001227 continue;
1228 found = xprt;
Tom Tuckera2178132007-12-30 21:08:35 -06001229 svc_xprt_get(xprt);
Tom Tucker7fcb98d2007-12-30 21:08:33 -06001230 break;
1231 }
1232 spin_unlock_bh(&serv->sv_lock);
1233 return found;
1234}
1235EXPORT_SYMBOL_GPL(svc_find_xprt);
Tom Tucker9571af12007-12-30 21:08:37 -06001236
Chuck Lever335c54b2009-04-23 19:32:25 -04001237static int svc_one_xprt_name(const struct svc_xprt *xprt,
1238 char *pos, int remaining)
1239{
1240 int len;
1241
1242 len = snprintf(pos, remaining, "%s %u\n",
1243 xprt->xpt_class->xcl_name,
1244 svc_xprt_local_port(xprt));
1245 if (len >= remaining)
1246 return -ENAMETOOLONG;
1247 return len;
1248}
1249
1250/**
1251 * svc_xprt_names - format a buffer with a list of transport names
1252 * @serv: pointer to an RPC service
1253 * @buf: pointer to a buffer to be filled in
1254 * @buflen: length of buffer to be filled in
1255 *
1256 * Fills in @buf with a string containing a list of transport names,
1257 * each name terminated with '\n'.
1258 *
1259 * Returns positive length of the filled-in string on success; otherwise
1260 * a negative errno value is returned if an error occurs.
Tom Tucker9571af12007-12-30 21:08:37 -06001261 */
Chuck Lever335c54b2009-04-23 19:32:25 -04001262int svc_xprt_names(struct svc_serv *serv, char *buf, const int buflen)
Tom Tucker9571af12007-12-30 21:08:37 -06001263{
1264 struct svc_xprt *xprt;
Chuck Lever335c54b2009-04-23 19:32:25 -04001265 int len, totlen;
1266 char *pos;
Tom Tucker9571af12007-12-30 21:08:37 -06001267
1268 /* Sanity check args */
1269 if (!serv)
1270 return 0;
1271
1272 spin_lock_bh(&serv->sv_lock);
Chuck Lever335c54b2009-04-23 19:32:25 -04001273
1274 pos = buf;
1275 totlen = 0;
Tom Tucker9571af12007-12-30 21:08:37 -06001276 list_for_each_entry(xprt, &serv->sv_permsocks, xpt_list) {
Chuck Lever335c54b2009-04-23 19:32:25 -04001277 len = svc_one_xprt_name(xprt, pos, buflen - totlen);
1278 if (len < 0) {
1279 *buf = '\0';
1280 totlen = len;
1281 }
1282 if (len <= 0)
Tom Tucker9571af12007-12-30 21:08:37 -06001283 break;
Chuck Lever335c54b2009-04-23 19:32:25 -04001284
1285 pos += len;
Tom Tucker9571af12007-12-30 21:08:37 -06001286 totlen += len;
1287 }
Chuck Lever335c54b2009-04-23 19:32:25 -04001288
Tom Tucker9571af12007-12-30 21:08:37 -06001289 spin_unlock_bh(&serv->sv_lock);
1290 return totlen;
1291}
1292EXPORT_SYMBOL_GPL(svc_xprt_names);
Greg Banks03cf6c92009-01-13 21:26:36 +11001293
1294
1295/*----------------------------------------------------------------------------*/
1296
1297static void *svc_pool_stats_start(struct seq_file *m, loff_t *pos)
1298{
1299 unsigned int pidx = (unsigned int)*pos;
1300 struct svc_serv *serv = m->private;
1301
1302 dprintk("svc_pool_stats_start, *pidx=%u\n", pidx);
1303
Greg Banks03cf6c92009-01-13 21:26:36 +11001304 if (!pidx)
1305 return SEQ_START_TOKEN;
1306 return (pidx > serv->sv_nrpools ? NULL : &serv->sv_pools[pidx-1]);
1307}
1308
1309static void *svc_pool_stats_next(struct seq_file *m, void *p, loff_t *pos)
1310{
1311 struct svc_pool *pool = p;
1312 struct svc_serv *serv = m->private;
1313
1314 dprintk("svc_pool_stats_next, *pos=%llu\n", *pos);
1315
1316 if (p == SEQ_START_TOKEN) {
1317 pool = &serv->sv_pools[0];
1318 } else {
1319 unsigned int pidx = (pool - &serv->sv_pools[0]);
1320 if (pidx < serv->sv_nrpools-1)
1321 pool = &serv->sv_pools[pidx+1];
1322 else
1323 pool = NULL;
1324 }
1325 ++*pos;
1326 return pool;
1327}
1328
1329static void svc_pool_stats_stop(struct seq_file *m, void *p)
1330{
Greg Banks03cf6c92009-01-13 21:26:36 +11001331}
1332
1333static int svc_pool_stats_show(struct seq_file *m, void *p)
1334{
1335 struct svc_pool *pool = p;
1336
1337 if (p == SEQ_START_TOKEN) {
J. Bruce Fields78c210e2009-08-06 15:41:34 -04001338 seq_puts(m, "# pool packets-arrived sockets-enqueued threads-woken threads-timedout\n");
Greg Banks03cf6c92009-01-13 21:26:36 +11001339 return 0;
1340 }
1341
J. Bruce Fields78c210e2009-08-06 15:41:34 -04001342 seq_printf(m, "%u %lu %lu %lu %lu\n",
Greg Banks03cf6c92009-01-13 21:26:36 +11001343 pool->sp_id,
Jeff Layton403c7b42014-11-21 14:19:29 -05001344 (unsigned long)atomic_long_read(&pool->sp_stats.packets),
Greg Banks03cf6c92009-01-13 21:26:36 +11001345 pool->sp_stats.sockets_queued,
Jeff Layton403c7b42014-11-21 14:19:29 -05001346 (unsigned long)atomic_long_read(&pool->sp_stats.threads_woken),
1347 (unsigned long)atomic_long_read(&pool->sp_stats.threads_timedout));
Greg Banks03cf6c92009-01-13 21:26:36 +11001348
1349 return 0;
1350}
1351
1352static const struct seq_operations svc_pool_stats_seq_ops = {
1353 .start = svc_pool_stats_start,
1354 .next = svc_pool_stats_next,
1355 .stop = svc_pool_stats_stop,
1356 .show = svc_pool_stats_show,
1357};
1358
1359int svc_pool_stats_open(struct svc_serv *serv, struct file *file)
1360{
1361 int err;
1362
1363 err = seq_open(file, &svc_pool_stats_seq_ops);
1364 if (!err)
1365 ((struct seq_file *) file->private_data)->private = serv;
1366 return err;
1367}
1368EXPORT_SYMBOL(svc_pool_stats_open);
1369
1370/*----------------------------------------------------------------------------*/