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