blob: 5185efb9027b7da153cb7a6d430d096a6c3cefde [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>
Scott Mayhewc3d48792015-12-11 16:45:58 -050013#include <linux/sunrpc/addr.h>
Tom Tucker1d8206b92007-12-30 21:07:15 -060014#include <linux/sunrpc/stats.h>
15#include <linux/sunrpc/svc_xprt.h>
H Hartley Sweetendcf1a352009-04-22 20:18:19 -040016#include <linux/sunrpc/svcsock.h>
J. Bruce Fields99de8ea2010-12-08 12:45:44 -050017#include <linux/sunrpc/xprt.h>
Paul Gortmaker3a9a2312011-05-27 09:12:25 -040018#include <linux/module.h>
Scott Mayhewc3d48792015-12-11 16:45:58 -050019#include <linux/netdevice.h>
Jeff Layton860a0d92014-10-28 14:24:12 -040020#include <trace/events/sunrpc.h>
Tom Tucker1d8206b92007-12-30 21:07:15 -060021
22#define RPCDBG_FACILITY RPCDBG_SVCXPRT
23
Trond Myklebustff3ac5c2016-06-24 10:55:50 -040024static unsigned int svc_rpc_per_connection_limit __read_mostly;
25module_param(svc_rpc_per_connection_limit, uint, 0644);
26
27
Tom Tucker0f0257e2007-12-30 21:08:27 -060028static struct svc_deferred_req *svc_deferred_dequeue(struct svc_xprt *xprt);
29static int svc_deferred_recv(struct svc_rqst *rqstp);
30static struct cache_deferred_req *svc_defer(struct cache_req *req);
Kees Cookff861c42017-10-16 17:29:42 -070031static void svc_age_temp_xprts(struct timer_list *t);
J. Bruce Fields7710ec32011-11-25 18:44:05 -050032static void svc_delete_xprt(struct svc_xprt *xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -060033
34/* apparently the "standard" is that clients close
35 * idle connections after 5 minutes, servers after
36 * 6 minutes
37 * http://www.connectathon.org/talks96/nfstcp.pdf
38 */
39static int svc_conn_age_period = 6*60;
40
Tom Tucker1d8206b92007-12-30 21:07:15 -060041/* List of registered transport classes */
42static DEFINE_SPINLOCK(svc_xprt_class_lock);
43static LIST_HEAD(svc_xprt_class_list);
44
Tom Tucker0f0257e2007-12-30 21:08:27 -060045/* SMP locking strategy:
46 *
47 * svc_pool->sp_lock protects most of the fields of that pool.
48 * svc_serv->sv_lock protects sv_tempsocks, sv_permsocks, sv_tmpcnt.
49 * when both need to be taken (rare), svc_serv->sv_lock is first.
Jeff Layton3c519912015-01-22 08:19:32 -050050 * The "service mutex" protects svc_serv->sv_nrthread.
Tom Tucker0f0257e2007-12-30 21:08:27 -060051 * svc_sock->sk_lock protects the svc_sock->sk_deferred list
52 * and the ->sk_info_authunix cache.
53 *
54 * The XPT_BUSY bit in xprt->xpt_flags prevents a transport being
55 * enqueued multiply. During normal transport processing this bit
56 * is set by svc_xprt_enqueue and cleared by svc_xprt_received.
57 * Providers should not manipulate this bit directly.
58 *
59 * Some flags can be set to certain values at any time
60 * providing that certain rules are followed:
61 *
62 * XPT_CONN, XPT_DATA:
63 * - Can be set or cleared at any time.
64 * - After a set, svc_xprt_enqueue must be called to enqueue
65 * the transport for processing.
66 * - After a clear, the transport must be read/accepted.
67 * If this succeeds, it must be set again.
68 * XPT_CLOSE:
69 * - Can set at any time. It is never cleared.
70 * XPT_DEAD:
71 * - Can only be set while XPT_BUSY is held which ensures
72 * that no other thread will be using the transport or will
73 * try to set XPT_DEAD.
74 */
Tom Tucker1d8206b92007-12-30 21:07:15 -060075int svc_reg_xprt_class(struct svc_xprt_class *xcl)
76{
77 struct svc_xprt_class *cl;
78 int res = -EEXIST;
79
80 dprintk("svc: Adding svc transport class '%s'\n", xcl->xcl_name);
81
82 INIT_LIST_HEAD(&xcl->xcl_list);
83 spin_lock(&svc_xprt_class_lock);
84 /* Make sure there isn't already a class with the same name */
85 list_for_each_entry(cl, &svc_xprt_class_list, xcl_list) {
86 if (strcmp(xcl->xcl_name, cl->xcl_name) == 0)
87 goto out;
88 }
89 list_add_tail(&xcl->xcl_list, &svc_xprt_class_list);
90 res = 0;
91out:
92 spin_unlock(&svc_xprt_class_lock);
93 return res;
94}
95EXPORT_SYMBOL_GPL(svc_reg_xprt_class);
96
97void svc_unreg_xprt_class(struct svc_xprt_class *xcl)
98{
99 dprintk("svc: Removing svc transport class '%s'\n", xcl->xcl_name);
100 spin_lock(&svc_xprt_class_lock);
101 list_del_init(&xcl->xcl_list);
102 spin_unlock(&svc_xprt_class_lock);
103}
104EXPORT_SYMBOL_GPL(svc_unreg_xprt_class);
105
Tom Tuckerdc9a16e2007-12-30 21:08:31 -0600106/*
107 * Format the transport list for printing
108 */
109int svc_print_xprts(char *buf, int maxlen)
110{
Pavel Emelyanov8f3a6de2010-10-05 23:30:19 +0400111 struct svc_xprt_class *xcl;
Tom Tuckerdc9a16e2007-12-30 21:08:31 -0600112 char tmpstr[80];
113 int len = 0;
114 buf[0] = '\0';
115
116 spin_lock(&svc_xprt_class_lock);
Pavel Emelyanov8f3a6de2010-10-05 23:30:19 +0400117 list_for_each_entry(xcl, &svc_xprt_class_list, xcl_list) {
Tom Tuckerdc9a16e2007-12-30 21:08:31 -0600118 int slen;
Tom Tuckerdc9a16e2007-12-30 21:08:31 -0600119
120 sprintf(tmpstr, "%s %d\n", xcl->xcl_name, xcl->xcl_max_payload);
121 slen = strlen(tmpstr);
122 if (len + slen > maxlen)
123 break;
124 len += slen;
125 strcat(buf, tmpstr);
126 }
127 spin_unlock(&svc_xprt_class_lock);
128
129 return len;
130}
131
Tom Tuckere1b31572007-12-30 21:07:46 -0600132static void svc_xprt_free(struct kref *kref)
133{
134 struct svc_xprt *xprt =
135 container_of(kref, struct svc_xprt, xpt_ref);
136 struct module *owner = xprt->xpt_class->xcl_owner;
Pavel Emelyanove3bfca02010-09-27 13:58:42 +0400137 if (test_bit(XPT_CACHE_AUTH, &xprt->xpt_flags))
138 svcauth_unix_info_release(xprt);
Pavel Emelyanov4fb85182010-09-27 14:00:49 +0400139 put_net(xprt->xpt_net);
J. Bruce Fields99de8ea2010-12-08 12:45:44 -0500140 /* See comment on corresponding get in xs_setup_bc_tcp(): */
141 if (xprt->xpt_bc_xprt)
142 xprt_put(xprt->xpt_bc_xprt);
J. Bruce Fields39a9bea2016-05-17 12:38:21 -0400143 if (xprt->xpt_bc_xps)
144 xprt_switch_put(xprt->xpt_bc_xps);
Tom Tuckere1b31572007-12-30 21:07:46 -0600145 xprt->xpt_ops->xpo_free(xprt);
146 module_put(owner);
147}
148
149void svc_xprt_put(struct svc_xprt *xprt)
150{
151 kref_put(&xprt->xpt_ref, svc_xprt_free);
152}
153EXPORT_SYMBOL_GPL(svc_xprt_put);
154
Tom Tucker1d8206b92007-12-30 21:07:15 -0600155/*
156 * Called by transport drivers to initialize the transport independent
157 * portion of the transport instance.
158 */
Stanislav Kinsburskybd4620d2011-12-06 14:19:10 +0300159void svc_xprt_init(struct net *net, struct svc_xprt_class *xcl,
160 struct svc_xprt *xprt, struct svc_serv *serv)
Tom Tucker1d8206b92007-12-30 21:07:15 -0600161{
162 memset(xprt, 0, sizeof(*xprt));
163 xprt->xpt_class = xcl;
164 xprt->xpt_ops = xcl->xcl_ops;
Tom Tuckere1b31572007-12-30 21:07:46 -0600165 kref_init(&xprt->xpt_ref);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600166 xprt->xpt_server = serv;
Tom Tucker7a182082007-12-30 21:07:53 -0600167 INIT_LIST_HEAD(&xprt->xpt_list);
168 INIT_LIST_HEAD(&xprt->xpt_ready);
Tom Tucker8c7b0172007-12-30 21:08:10 -0600169 INIT_LIST_HEAD(&xprt->xpt_deferred);
J. Bruce Fieldsedc7a892010-03-22 15:37:17 -0400170 INIT_LIST_HEAD(&xprt->xpt_users);
Tom Tuckera50fea22007-12-30 21:07:59 -0600171 mutex_init(&xprt->xpt_mutex);
Tom Tuckerdef13d72007-12-30 21:08:08 -0600172 spin_lock_init(&xprt->xpt_lock);
Tom Tucker4e5caaa2007-12-30 21:08:20 -0600173 set_bit(XPT_BUSY, &xprt->xpt_flags);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300174 rpc_init_wait_queue(&xprt->xpt_bc_pending, "xpt_bc_pending");
Stanislav Kinsburskybd4620d2011-12-06 14:19:10 +0300175 xprt->xpt_net = get_net(net);
Chuck Leverece200d2018-03-27 10:51:00 -0400176 strcpy(xprt->xpt_remotebuf, "uninitialized");
Tom Tucker1d8206b92007-12-30 21:07:15 -0600177}
178EXPORT_SYMBOL_GPL(svc_xprt_init);
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600179
Chuck Lever5dd248f2008-06-30 18:45:37 -0400180static struct svc_xprt *__svc_xpo_create(struct svc_xprt_class *xcl,
181 struct svc_serv *serv,
Pavel Emelyanov62832c02010-09-29 16:04:18 +0400182 struct net *net,
Chuck Lever9652ada2009-03-18 20:46:21 -0400183 const int family,
184 const unsigned short port,
185 int flags)
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600186{
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600187 struct sockaddr_in sin = {
188 .sin_family = AF_INET,
Al Viroe6f1ceb2008-03-17 22:44:53 -0700189 .sin_addr.s_addr = htonl(INADDR_ANY),
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600190 .sin_port = htons(port),
191 };
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000192#if IS_ENABLED(CONFIG_IPV6)
Chuck Lever5dd248f2008-06-30 18:45:37 -0400193 struct sockaddr_in6 sin6 = {
194 .sin6_family = AF_INET6,
195 .sin6_addr = IN6ADDR_ANY_INIT,
196 .sin6_port = htons(port),
197 };
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000198#endif
Chuck Lever5dd248f2008-06-30 18:45:37 -0400199 struct sockaddr *sap;
200 size_t len;
201
Chuck Lever9652ada2009-03-18 20:46:21 -0400202 switch (family) {
203 case PF_INET:
Chuck Lever5dd248f2008-06-30 18:45:37 -0400204 sap = (struct sockaddr *)&sin;
205 len = sizeof(sin);
206 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000207#if IS_ENABLED(CONFIG_IPV6)
Chuck Lever9652ada2009-03-18 20:46:21 -0400208 case PF_INET6:
Chuck Lever5dd248f2008-06-30 18:45:37 -0400209 sap = (struct sockaddr *)&sin6;
210 len = sizeof(sin6);
211 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000212#endif
Chuck Lever5dd248f2008-06-30 18:45:37 -0400213 default:
214 return ERR_PTR(-EAFNOSUPPORT);
215 }
216
Pavel Emelyanov62832c02010-09-29 16:04:18 +0400217 return xcl->xcl_ops->xpo_create(serv, net, sap, len, flags);
Chuck Lever5dd248f2008-06-30 18:45:37 -0400218}
219
J. Bruce Fields67410192012-08-17 22:12:19 -0400220/*
221 * svc_xprt_received conditionally queues the transport for processing
222 * by another thread. The caller must hold the XPT_BUSY bit and must
223 * not thereafter touch transport data.
224 *
225 * Note: XPT_DATA only gets cleared when a read-attempt finds no (or
226 * insufficient) data.
227 */
228static void svc_xprt_received(struct svc_xprt *xprt)
229{
Jeff Laytonacf06a72014-12-01 13:45:24 -0500230 if (!test_bit(XPT_BUSY, &xprt->xpt_flags)) {
231 WARN_ONCE(1, "xprt=0x%p already busy!", xprt);
Weston Andros Adamsonff1fdb92012-10-23 10:43:40 -0400232 return;
Jeff Laytonacf06a72014-12-01 13:45:24 -0500233 }
234
J. Bruce Fields67410192012-08-17 22:12:19 -0400235 /* As soon as we clear busy, the xprt could be closed and
Jeff Laytonb9e13cd2015-06-08 12:06:51 -0700236 * 'put', so we need a reference to call svc_enqueue_xprt with:
J. Bruce Fields67410192012-08-17 22:12:19 -0400237 */
238 svc_xprt_get(xprt);
Trond Myklebust09713742014-07-24 23:59:31 -0400239 smp_mb__before_atomic();
J. Bruce Fields67410192012-08-17 22:12:19 -0400240 clear_bit(XPT_BUSY, &xprt->xpt_flags);
Jeff Laytonb9e13cd2015-06-08 12:06:51 -0700241 xprt->xpt_server->sv_ops->svo_enqueue_xprt(xprt);
J. Bruce Fields67410192012-08-17 22:12:19 -0400242 svc_xprt_put(xprt);
243}
244
J. Bruce Fields39b55302012-08-14 15:50:34 -0400245void svc_add_new_perm_xprt(struct svc_serv *serv, struct svc_xprt *new)
246{
247 clear_bit(XPT_TEMP, &new->xpt_flags);
248 spin_lock_bh(&serv->sv_lock);
249 list_add(&new->xpt_list, &serv->sv_permsocks);
250 spin_unlock_bh(&serv->sv_lock);
251 svc_xprt_received(new);
252}
253
Colin Ian Kingda36e6d2017-10-16 14:40:21 +0100254static int _svc_create_xprt(struct svc_serv *serv, const char *xprt_name,
255 struct net *net, const int family,
256 const unsigned short port, int flags)
Chuck Lever5dd248f2008-06-30 18:45:37 -0400257{
258 struct svc_xprt_class *xcl;
259
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600260 spin_lock(&svc_xprt_class_lock);
261 list_for_each_entry(xcl, &svc_xprt_class_list, xcl_list) {
Tom Tucker4e5caaa2007-12-30 21:08:20 -0600262 struct svc_xprt *newxprt;
NeilBrowned2849d2010-11-16 16:55:19 +1100263 unsigned short newport;
Tom Tucker4e5caaa2007-12-30 21:08:20 -0600264
265 if (strcmp(xprt_name, xcl->xcl_name))
266 continue;
267
268 if (!try_module_get(xcl->xcl_owner))
269 goto err;
270
271 spin_unlock(&svc_xprt_class_lock);
Pavel Emelyanov62832c02010-09-29 16:04:18 +0400272 newxprt = __svc_xpo_create(xcl, serv, net, family, port, flags);
Tom Tucker4e5caaa2007-12-30 21:08:20 -0600273 if (IS_ERR(newxprt)) {
274 module_put(xcl->xcl_owner);
275 return PTR_ERR(newxprt);
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600276 }
J. Bruce Fields39b55302012-08-14 15:50:34 -0400277 svc_add_new_perm_xprt(serv, newxprt);
NeilBrowned2849d2010-11-16 16:55:19 +1100278 newport = svc_xprt_local_port(newxprt);
NeilBrowned2849d2010-11-16 16:55:19 +1100279 return newport;
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600280 }
Tom Tucker4e5caaa2007-12-30 21:08:20 -0600281 err:
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600282 spin_unlock(&svc_xprt_class_lock);
Chuck Lever68717902010-01-26 14:04:13 -0500283 /* This errno is exposed to user space. Provide a reasonable
284 * perror msg for a bad transport. */
285 return -EPROTONOSUPPORT;
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600286}
J. Bruce Fieldsd96b9c92016-05-18 14:50:14 -0400287
288int svc_create_xprt(struct svc_serv *serv, const char *xprt_name,
289 struct net *net, const int family,
290 const unsigned short port, int flags)
291{
292 int err;
293
294 dprintk("svc: creating transport %s[%d]\n", xprt_name, port);
295 err = _svc_create_xprt(serv, xprt_name, net, family, port, flags);
296 if (err == -EPROTONOSUPPORT) {
297 request_module("svc%s", xprt_name);
298 err = _svc_create_xprt(serv, xprt_name, net, family, port, flags);
299 }
300 if (err)
301 dprintk("svc: transport %s not found, err %d\n",
302 xprt_name, err);
303 return err;
304}
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600305EXPORT_SYMBOL_GPL(svc_create_xprt);
Tom Tucker9dbc2402007-12-30 21:08:12 -0600306
307/*
308 * Copy the local and remote xprt addresses to the rqstp structure
309 */
310void svc_xprt_copy_addrs(struct svc_rqst *rqstp, struct svc_xprt *xprt)
311{
Tom Tucker9dbc2402007-12-30 21:08:12 -0600312 memcpy(&rqstp->rq_addr, &xprt->xpt_remote, xprt->xpt_remotelen);
313 rqstp->rq_addrlen = xprt->xpt_remotelen;
314
315 /*
316 * Destination address in request is needed for binding the
317 * source address in RPC replies/callbacks later.
318 */
Mi Jinlong849a1cf2011-08-30 17:18:41 +0800319 memcpy(&rqstp->rq_daddr, &xprt->xpt_local, xprt->xpt_locallen);
320 rqstp->rq_daddrlen = xprt->xpt_locallen;
Tom Tucker9dbc2402007-12-30 21:08:12 -0600321}
322EXPORT_SYMBOL_GPL(svc_xprt_copy_addrs);
323
Tom Tucker0f0257e2007-12-30 21:08:27 -0600324/**
325 * svc_print_addr - Format rq_addr field for printing
326 * @rqstp: svc_rqst struct containing address to print
327 * @buf: target buffer for formatted address
328 * @len: length of target buffer
329 *
330 */
331char *svc_print_addr(struct svc_rqst *rqstp, char *buf, size_t len)
332{
333 return __svc_print_addr(svc_addr(rqstp), buf, len);
334}
335EXPORT_SYMBOL_GPL(svc_print_addr);
336
Trond Myklebustff3ac5c2016-06-24 10:55:50 -0400337static bool svc_xprt_slots_in_range(struct svc_xprt *xprt)
338{
339 unsigned int limit = svc_rpc_per_connection_limit;
340 int nrqsts = atomic_read(&xprt->xpt_nr_rqsts);
341
342 return limit == 0 || (nrqsts >= 0 && nrqsts < limit);
343}
344
345static bool svc_xprt_reserve_slot(struct svc_rqst *rqstp, struct svc_xprt *xprt)
346{
347 if (!test_bit(RQ_DATA, &rqstp->rq_flags)) {
348 if (!svc_xprt_slots_in_range(xprt))
349 return false;
350 atomic_inc(&xprt->xpt_nr_rqsts);
351 set_bit(RQ_DATA, &rqstp->rq_flags);
352 }
353 return true;
354}
355
356static void svc_xprt_release_slot(struct svc_rqst *rqstp)
357{
358 struct svc_xprt *xprt = rqstp->rq_xprt;
359 if (test_and_clear_bit(RQ_DATA, &rqstp->rq_flags)) {
360 atomic_dec(&xprt->xpt_nr_rqsts);
361 svc_xprt_enqueue(xprt);
362 }
363}
364
J. Bruce Fields9c335c02010-10-26 11:32:03 -0400365static bool svc_xprt_has_something_to_do(struct svc_xprt *xprt)
366{
367 if (xprt->xpt_flags & ((1<<XPT_CONN)|(1<<XPT_CLOSE)))
368 return true;
Trond Myklebust82ea2d72016-06-24 10:55:45 -0400369 if (xprt->xpt_flags & ((1<<XPT_DATA)|(1<<XPT_DEFERRED))) {
Trond Myklebustff3ac5c2016-06-24 10:55:50 -0400370 if (xprt->xpt_ops->xpo_has_wspace(xprt) &&
371 svc_xprt_slots_in_range(xprt))
Trond Myklebust82ea2d72016-06-24 10:55:45 -0400372 return true;
373 trace_svc_xprt_no_write_space(xprt);
374 return false;
375 }
J. Bruce Fields9c335c02010-10-26 11:32:03 -0400376 return false;
377}
378
Jeff Laytonb9e13cd2015-06-08 12:06:51 -0700379void svc_xprt_do_enqueue(struct svc_xprt *xprt)
Tom Tucker0f0257e2007-12-30 21:08:27 -0600380{
Tom Tucker0f0257e2007-12-30 21:08:27 -0600381 struct svc_pool *pool;
Jeff Layton83a712e2014-11-21 14:19:31 -0500382 struct svc_rqst *rqstp = NULL;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600383 int cpu;
384
J. Bruce Fields9c335c02010-10-26 11:32:03 -0400385 if (!svc_xprt_has_something_to_do(xprt))
Chuck Lever7dbb53b2018-03-27 10:50:27 -0400386 return;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600387
Tom Tucker0f0257e2007-12-30 21:08:27 -0600388 /* Mark transport as busy. It will remain in this state until
389 * the provider calls svc_xprt_received. We update XPT_BUSY
390 * atomically because it also guards against trying to enqueue
391 * the transport twice.
392 */
Chuck Lever7dbb53b2018-03-27 10:50:27 -0400393 if (test_and_set_bit(XPT_BUSY, &xprt->xpt_flags))
394 return;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600395
Trond Myklebust0c0746d2014-08-03 13:03:12 -0400396 cpu = get_cpu();
397 pool = svc_pool_for_cpu(xprt->xpt_server, cpu);
Trond Myklebust0c0746d2014-08-03 13:03:12 -0400398
Jeff Layton403c7b42014-11-21 14:19:29 -0500399 atomic_long_inc(&pool->sp_stats.packets);
Trond Myklebust0c0746d2014-08-03 13:03:12 -0400400
Trond Myklebust22700f3c2017-10-10 17:31:43 -0400401 spin_lock_bh(&pool->sp_lock);
402 list_add_tail(&xprt->xpt_ready, &pool->sp_sockets);
403 pool->sp_stats.sockets_queued++;
404 spin_unlock_bh(&pool->sp_lock);
405
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500406 /* find a thread for this xprt */
407 rcu_read_lock();
408 list_for_each_entry_rcu(rqstp, &pool->sp_all_threads, rq_all) {
Trond Myklebust22700f3c2017-10-10 17:31:43 -0400409 if (test_and_set_bit(RQ_BUSY, &rqstp->rq_flags))
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500410 continue;
Jeff Layton403c7b42014-11-21 14:19:29 -0500411 atomic_long_inc(&pool->sp_stats.threads_woken);
Chuck Lever55f50882018-03-27 10:52:27 -0400412 rqstp->rq_qtime = ktime_get();
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500413 wake_up_process(rqstp->rq_task);
Trond Myklebust22700f3c2017-10-10 17:31:43 -0400414 goto out_unlock;
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500415 }
Trond Myklebust22700f3c2017-10-10 17:31:43 -0400416 set_bit(SP_CONGESTED, &pool->sp_flags);
Jeff Layton83a712e2014-11-21 14:19:31 -0500417 rqstp = NULL;
Trond Myklebust22700f3c2017-10-10 17:31:43 -0400418out_unlock:
419 rcu_read_unlock();
Trond Myklebust983c6842014-08-03 13:03:10 -0400420 put_cpu();
Jeff Layton83a712e2014-11-21 14:19:31 -0500421 trace_svc_xprt_do_enqueue(xprt, rqstp);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600422}
Jeff Laytonb9e13cd2015-06-08 12:06:51 -0700423EXPORT_SYMBOL_GPL(svc_xprt_do_enqueue);
Trond Myklebust09713742014-07-24 23:59:31 -0400424
425/*
426 * Queue up a transport with data pending. If there are idle nfsd
427 * processes, wake 'em up.
428 *
429 */
430void svc_xprt_enqueue(struct svc_xprt *xprt)
431{
432 if (test_bit(XPT_BUSY, &xprt->xpt_flags))
433 return;
Jeff Laytonb9e13cd2015-06-08 12:06:51 -0700434 xprt->xpt_server->sv_ops->svo_enqueue_xprt(xprt);
Trond Myklebust09713742014-07-24 23:59:31 -0400435}
Tom Tucker0f0257e2007-12-30 21:08:27 -0600436EXPORT_SYMBOL_GPL(svc_xprt_enqueue);
437
438/*
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500439 * Dequeue the first transport, if there is one.
Tom Tucker0f0257e2007-12-30 21:08:27 -0600440 */
441static struct svc_xprt *svc_xprt_dequeue(struct svc_pool *pool)
442{
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500443 struct svc_xprt *xprt = NULL;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600444
445 if (list_empty(&pool->sp_sockets))
Jeff Layton83a712e2014-11-21 14:19:31 -0500446 goto out;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600447
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500448 spin_lock_bh(&pool->sp_lock);
449 if (likely(!list_empty(&pool->sp_sockets))) {
450 xprt = list_first_entry(&pool->sp_sockets,
451 struct svc_xprt, xpt_ready);
452 list_del_init(&xprt->xpt_ready);
453 svc_xprt_get(xprt);
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500454 }
455 spin_unlock_bh(&pool->sp_lock);
Jeff Layton83a712e2014-11-21 14:19:31 -0500456out:
Tom Tucker0f0257e2007-12-30 21:08:27 -0600457 return xprt;
458}
459
Tom Tucker0f0257e2007-12-30 21:08:27 -0600460/**
461 * svc_reserve - change the space reserved for the reply to a request.
462 * @rqstp: The request in question
463 * @space: new max space to reserve
464 *
465 * Each request reserves some space on the output queue of the transport
466 * to make sure the reply fits. This function reduces that reserved
467 * space to be the amount of space used already, plus @space.
468 *
469 */
470void svc_reserve(struct svc_rqst *rqstp, int space)
471{
472 space += rqstp->rq_res.head[0].iov_len;
473
474 if (space < rqstp->rq_reserved) {
475 struct svc_xprt *xprt = rqstp->rq_xprt;
476 atomic_sub((rqstp->rq_reserved - space), &xprt->xpt_reserved);
477 rqstp->rq_reserved = space;
478
479 svc_xprt_enqueue(xprt);
480 }
481}
Trond Myklebust24c37672008-12-23 16:30:12 -0500482EXPORT_SYMBOL_GPL(svc_reserve);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600483
484static void svc_xprt_release(struct svc_rqst *rqstp)
485{
486 struct svc_xprt *xprt = rqstp->rq_xprt;
487
Chuck Lever63a1b152018-03-27 10:49:22 -0400488 xprt->xpt_ops->xpo_release_rqst(rqstp);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600489
Tom Tucker2779e3a2009-01-05 11:12:52 -0600490 kfree(rqstp->rq_deferred);
491 rqstp->rq_deferred = NULL;
492
Tom Tucker0f0257e2007-12-30 21:08:27 -0600493 svc_free_res_pages(rqstp);
494 rqstp->rq_res.page_len = 0;
495 rqstp->rq_res.page_base = 0;
496
497 /* Reset response buffer and release
498 * the reservation.
499 * But first, check that enough space was reserved
500 * for the reply, otherwise we have a bug!
501 */
502 if ((rqstp->rq_res.len) > rqstp->rq_reserved)
503 printk(KERN_ERR "RPC request reserved %d but used %d\n",
504 rqstp->rq_reserved,
505 rqstp->rq_res.len);
506
507 rqstp->rq_res.head[0].iov_len = 0;
508 svc_reserve(rqstp, 0);
Trond Myklebustff3ac5c2016-06-24 10:55:50 -0400509 svc_xprt_release_slot(rqstp);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600510 rqstp->rq_xprt = NULL;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600511 svc_xprt_put(xprt);
512}
513
514/*
Jeff Laytonceff7392014-11-19 07:51:21 -0500515 * Some svc_serv's will have occasional work to do, even when a xprt is not
516 * waiting to be serviced. This function is there to "kick" a task in one of
517 * those services so that it can wake up and do that work. Note that we only
518 * bother with pool 0 as we don't need to wake up more than one thread for
519 * this purpose.
Tom Tucker0f0257e2007-12-30 21:08:27 -0600520 */
521void svc_wake_up(struct svc_serv *serv)
522{
523 struct svc_rqst *rqstp;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600524 struct svc_pool *pool;
525
Jeff Laytonceff7392014-11-19 07:51:21 -0500526 pool = &serv->sv_pools[0];
Tom Tucker0f0257e2007-12-30 21:08:27 -0600527
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500528 rcu_read_lock();
529 list_for_each_entry_rcu(rqstp, &pool->sp_all_threads, rq_all) {
530 /* skip any that aren't queued */
531 if (test_bit(RQ_BUSY, &rqstp->rq_flags))
532 continue;
533 rcu_read_unlock();
Jeff Laytonceff7392014-11-19 07:51:21 -0500534 wake_up_process(rqstp->rq_task);
Jeff Layton83a712e2014-11-21 14:19:31 -0500535 trace_svc_wake_up(rqstp->rq_task->pid);
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500536 return;
537 }
538 rcu_read_unlock();
539
540 /* No free entries available */
541 set_bit(SP_TASK_PENDING, &pool->sp_flags);
542 smp_wmb();
Jeff Layton83a712e2014-11-21 14:19:31 -0500543 trace_svc_wake_up(0);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600544}
Trond Myklebust24c37672008-12-23 16:30:12 -0500545EXPORT_SYMBOL_GPL(svc_wake_up);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600546
547int svc_port_is_privileged(struct sockaddr *sin)
548{
549 switch (sin->sa_family) {
550 case AF_INET:
551 return ntohs(((struct sockaddr_in *)sin)->sin_port)
552 < PROT_SOCK;
553 case AF_INET6:
554 return ntohs(((struct sockaddr_in6 *)sin)->sin6_port)
555 < PROT_SOCK;
556 default:
557 return 0;
558 }
559}
560
561/*
Jeff Laytonc9233eb2008-10-20 11:51:57 -0400562 * Make sure that we don't have too many active connections. If we have,
563 * something must be dropped. It's not clear what will happen if we allow
564 * "too many" connections, but when dealing with network-facing software,
565 * we have to code defensively. Here we do that by imposing hard limits.
Tom Tucker0f0257e2007-12-30 21:08:27 -0600566 *
567 * There's no point in trying to do random drop here for DoS
568 * prevention. The NFS clients does 1 reconnect in 15 seconds. An
569 * attacker can easily beat that.
570 *
571 * The only somewhat efficient mechanism would be if drop old
572 * connections from the same IP first. But right now we don't even
573 * record the client IP in svc_sock.
Jeff Laytonc9233eb2008-10-20 11:51:57 -0400574 *
575 * single-threaded services that expect a lot of clients will probably
576 * need to set sv_maxconn to override the default value which is based
577 * on the number of threads
Tom Tucker0f0257e2007-12-30 21:08:27 -0600578 */
579static void svc_check_conn_limits(struct svc_serv *serv)
580{
Jeff Laytonc9233eb2008-10-20 11:51:57 -0400581 unsigned int limit = serv->sv_maxconn ? serv->sv_maxconn :
582 (serv->sv_nrthreads+3) * 20;
583
584 if (serv->sv_tmpcnt > limit) {
Tom Tucker0f0257e2007-12-30 21:08:27 -0600585 struct svc_xprt *xprt = NULL;
586 spin_lock_bh(&serv->sv_lock);
587 if (!list_empty(&serv->sv_tempsocks)) {
Joe Perchese87cc472012-05-13 21:56:26 +0000588 /* Try to help the admin */
589 net_notice_ratelimited("%s: too many open connections, consider increasing the %s\n",
590 serv->sv_name, serv->sv_maxconn ?
591 "max number of connections" :
592 "number of threads");
Tom Tucker0f0257e2007-12-30 21:08:27 -0600593 /*
594 * Always select the oldest connection. It's not fair,
595 * but so is life
596 */
597 xprt = list_entry(serv->sv_tempsocks.prev,
598 struct svc_xprt,
599 xpt_list);
600 set_bit(XPT_CLOSE, &xprt->xpt_flags);
601 svc_xprt_get(xprt);
602 }
603 spin_unlock_bh(&serv->sv_lock);
604
605 if (xprt) {
606 svc_xprt_enqueue(xprt);
607 svc_xprt_put(xprt);
608 }
609 }
610}
611
Rashika Kheriae1d83ee2014-02-09 22:33:03 +0530612static int svc_alloc_arg(struct svc_rqst *rqstp)
Tom Tucker0f0257e2007-12-30 21:08:27 -0600613{
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400614 struct svc_serv *serv = rqstp->rq_server;
615 struct xdr_buf *arg;
616 int pages;
617 int i;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600618
619 /* now allocate needed pages. If we get a failure, sleep briefly */
Chuck Lever8c6ae492017-06-30 12:03:54 -0400620 pages = (serv->sv_max_mesg + 2 * PAGE_SIZE) >> PAGE_SHIFT;
621 if (pages > RPCSVC_MAXPAGES) {
622 pr_warn_once("svc: warning: pages=%u > RPCSVC_MAXPAGES=%lu\n",
623 pages, RPCSVC_MAXPAGES);
Weston Andros Adamsonb25cd052012-10-23 10:43:41 -0400624 /* use as many pages as possible */
Chuck Lever8c6ae492017-06-30 12:03:54 -0400625 pages = RPCSVC_MAXPAGES;
626 }
Tom Tucker0f0257e2007-12-30 21:08:27 -0600627 for (i = 0; i < pages ; i++)
628 while (rqstp->rq_pages[i] == NULL) {
629 struct page *p = alloc_page(GFP_KERNEL);
630 if (!p) {
Jeff Layton7b54fe62008-02-12 11:47:24 -0500631 set_current_state(TASK_INTERRUPTIBLE);
632 if (signalled() || kthread_should_stop()) {
633 set_current_state(TASK_RUNNING);
Jeff Layton70867212008-02-07 16:34:54 -0500634 return -EINTR;
Jeff Layton7b54fe62008-02-12 11:47:24 -0500635 }
636 schedule_timeout(msecs_to_jiffies(500));
Tom Tucker0f0257e2007-12-30 21:08:27 -0600637 }
638 rqstp->rq_pages[i] = p;
639 }
J. Bruce Fields2825a7f2013-08-26 16:04:46 -0400640 rqstp->rq_page_end = &rqstp->rq_pages[i];
Tom Tucker0f0257e2007-12-30 21:08:27 -0600641 rqstp->rq_pages[i++] = NULL; /* this might be seen in nfs_read_actor */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600642
643 /* Make arg->head point to first page and arg->pages point to rest */
644 arg = &rqstp->rq_arg;
645 arg->head[0].iov_base = page_address(rqstp->rq_pages[0]);
646 arg->head[0].iov_len = PAGE_SIZE;
647 arg->pages = rqstp->rq_pages + 1;
648 arg->page_base = 0;
649 /* save at least one page for response */
650 arg->page_len = (pages-2)*PAGE_SIZE;
651 arg->len = (pages-1)*PAGE_SIZE;
652 arg->tail[0].iov_len = 0;
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400653 return 0;
654}
Tom Tucker0f0257e2007-12-30 21:08:27 -0600655
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500656static bool
657rqst_should_sleep(struct svc_rqst *rqstp)
658{
659 struct svc_pool *pool = rqstp->rq_pool;
660
661 /* did someone call svc_wake_up? */
662 if (test_and_clear_bit(SP_TASK_PENDING, &pool->sp_flags))
663 return false;
664
665 /* was a socket queued? */
666 if (!list_empty(&pool->sp_sockets))
667 return false;
668
669 /* are we shutting down? */
670 if (signalled() || kthread_should_stop())
671 return false;
672
673 /* are we freezing? */
674 if (freezing(current))
675 return false;
676
677 return true;
678}
679
Rashika Kheriae1d83ee2014-02-09 22:33:03 +0530680static struct svc_xprt *svc_get_next_xprt(struct svc_rqst *rqstp, long timeout)
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400681{
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400682 struct svc_pool *pool = rqstp->rq_pool;
Trond Myklebusta4aa8052014-08-03 13:03:11 -0400683 long time_left = 0;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600684
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500685 /* rq_xprt should be clear on entry */
686 WARN_ON_ONCE(rqstp->rq_xprt);
687
Trond Myklebust22700f3c2017-10-10 17:31:43 -0400688 rqstp->rq_xprt = svc_xprt_dequeue(pool);
689 if (rqstp->rq_xprt)
690 goto out_found;
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);
Trond Myklebust22700f3c2017-10-10 17:31:43 -0400697 smp_mb__before_atomic();
698 clear_bit(SP_CONGESTED, &pool->sp_flags);
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500699 clear_bit(RQ_BUSY, &rqstp->rq_flags);
Trond Myklebust22700f3c2017-10-10 17:31:43 -0400700 smp_mb__after_atomic();
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500701
702 if (likely(rqst_should_sleep(rqstp)))
703 time_left = schedule_timeout(timeout);
704 else
705 __set_current_state(TASK_RUNNING);
706
707 try_to_freeze();
708
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500709 set_bit(RQ_BUSY, &rqstp->rq_flags);
Trond Myklebust22700f3c2017-10-10 17:31:43 -0400710 smp_mb__after_atomic();
711 rqstp->rq_xprt = svc_xprt_dequeue(pool);
712 if (rqstp->rq_xprt)
713 goto out_found;
Jeff Laytonb1691bc2014-11-21 14:19:30 -0500714
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);
Trond Myklebust22700f3c2017-10-10 17:31:43 -0400721out_found:
722 /* Normally we will wait up to 5 seconds for any required
723 * cache information to be provided.
724 */
725 if (!test_bit(SP_CONGESTED, &pool->sp_flags))
726 rqstp->rq_chandle.thread_wait = 5*HZ;
727 else
728 rqstp->rq_chandle.thread_wait = 1*HZ;
Chuck Lever55f50882018-03-27 10:52:27 -0400729 trace_svc_xprt_dequeue(rqstp);
Trond Myklebust22700f3c2017-10-10 17:31:43 -0400730 return rqstp->rq_xprt;
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400731}
Tom Tucker0f0257e2007-12-30 21:08:27 -0600732
Rashika Kheriae1d83ee2014-02-09 22:33:03 +0530733static void svc_add_new_temp_xprt(struct svc_serv *serv, struct svc_xprt *newxpt)
J. Bruce Fields65b2e662012-08-18 15:44:33 -0400734{
735 spin_lock_bh(&serv->sv_lock);
736 set_bit(XPT_TEMP, &newxpt->xpt_flags);
737 list_add(&newxpt->xpt_list, &serv->sv_tempsocks);
738 serv->sv_tmpcnt++;
739 if (serv->sv_temptimer.function == NULL) {
740 /* setup timer to age temp transports */
Kees Cook841b86f2017-10-23 09:40:42 +0200741 serv->sv_temptimer.function = svc_age_temp_xprts;
J. Bruce Fields65b2e662012-08-18 15:44:33 -0400742 mod_timer(&serv->sv_temptimer,
743 jiffies + svc_conn_age_period * HZ);
744 }
745 spin_unlock_bh(&serv->sv_lock);
746 svc_xprt_received(newxpt);
747}
748
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400749static int svc_handle_xprt(struct svc_rqst *rqstp, struct svc_xprt *xprt)
750{
751 struct svc_serv *serv = rqstp->rq_server;
752 int len = 0;
753
J. Bruce Fields1b644b62010-02-28 16:33:31 -0500754 if (test_bit(XPT_CLOSE, &xprt->xpt_flags)) {
755 dprintk("svc_recv: found XPT_CLOSE\n");
Scott Mayhew546125d2017-01-05 16:34:51 -0500756 if (test_and_clear_bit(XPT_KILL_TEMP, &xprt->xpt_flags))
757 xprt->xpt_ops->xpo_kill_temp_xprt(xprt);
J. Bruce Fields1b644b62010-02-28 16:33:31 -0500758 svc_delete_xprt(xprt);
J. Bruce Fieldsca7896cd2010-10-25 14:12:40 -0400759 /* Leave XPT_BUSY set on the dead xprt: */
Jeff Layton83a712e2014-11-21 14:19:31 -0500760 goto out;
J. Bruce Fieldsca7896cd2010-10-25 14:12:40 -0400761 }
762 if (test_bit(XPT_LISTENER, &xprt->xpt_flags)) {
Tom Tucker0f0257e2007-12-30 21:08:27 -0600763 struct svc_xprt *newxpt;
J. Bruce Fields65b2e662012-08-18 15:44:33 -0400764 /*
765 * We know this module_get will succeed because the
766 * listener holds a reference too
767 */
768 __module_get(xprt->xpt_class->xcl_owner);
769 svc_check_conn_limits(xprt->xpt_server);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600770 newxpt = xprt->xpt_ops->xpo_accept(xprt);
J. Bruce Fields65b2e662012-08-18 15:44:33 -0400771 if (newxpt)
772 svc_add_new_temp_xprt(serv, newxpt);
Trond Myklebustc7891022014-05-18 14:05:22 -0400773 else
774 module_put(xprt->xpt_class->xcl_owner);
Trond Myklebustff3ac5c2016-06-24 10:55:50 -0400775 } else if (svc_xprt_reserve_slot(rqstp, xprt)) {
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400776 /* XPT_DATA|XPT_DEFERRED case: */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600777 dprintk("svc: server %p, pool %u, transport %p, inuse=%d\n",
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400778 rqstp, rqstp->rq_pool->sp_id, xprt,
Peter Zijlstra2c935bc2016-11-14 17:29:48 +0100779 kref_read(&xprt->xpt_ref));
Tom Tucker0f0257e2007-12-30 21:08:27 -0600780 rqstp->rq_deferred = svc_deferred_dequeue(xprt);
J. Bruce Fieldsca7896cd2010-10-25 14:12:40 -0400781 if (rqstp->rq_deferred)
Tom Tucker0f0257e2007-12-30 21:08:27 -0600782 len = svc_deferred_recv(rqstp);
J. Bruce Fieldsca7896cd2010-10-25 14:12:40 -0400783 else
Tom Tucker0f0257e2007-12-30 21:08:27 -0600784 len = xprt->xpt_ops->xpo_recvfrom(rqstp);
Chuck Leveraaba72c2018-03-27 10:51:39 -0400785 rqstp->rq_stime = ktime_get();
J. Bruce Fieldsd10f27a2012-08-17 17:31:53 -0400786 rqstp->rq_reserved = serv->sv_max_mesg;
787 atomic_add(rqstp->rq_reserved, &xprt->xpt_reserved);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600788 }
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400789 /* clear XPT_BUSY: */
J. Bruce Fieldsca7896cd2010-10-25 14:12:40 -0400790 svc_xprt_received(xprt);
Jeff Layton83a712e2014-11-21 14:19:31 -0500791out:
792 trace_svc_handle_xprt(xprt, len);
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400793 return len;
794}
795
796/*
797 * Receive the next request on any transport. This code is carefully
798 * organised not to touch any cachelines in the shared svc_serv
799 * structure, only cachelines in the local svc_pool.
800 */
801int svc_recv(struct svc_rqst *rqstp, long timeout)
802{
803 struct svc_xprt *xprt = NULL;
804 struct svc_serv *serv = rqstp->rq_server;
805 int len, err;
806
807 dprintk("svc: server %p waiting for data (to = %ld)\n",
808 rqstp, timeout);
809
810 if (rqstp->rq_xprt)
811 printk(KERN_ERR
812 "svc_recv: service %p, transport not NULL!\n",
813 rqstp);
Trond Myklebust983c6842014-08-03 13:03:10 -0400814
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400815 err = svc_alloc_arg(rqstp);
816 if (err)
Jeff Layton860a0d92014-10-28 14:24:12 -0400817 goto out;
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400818
819 try_to_freeze();
820 cond_resched();
Jeff Layton860a0d92014-10-28 14:24:12 -0400821 err = -EINTR;
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400822 if (signalled() || kthread_should_stop())
Jeff Layton860a0d92014-10-28 14:24:12 -0400823 goto out;
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400824
825 xprt = svc_get_next_xprt(rqstp, timeout);
Jeff Layton860a0d92014-10-28 14:24:12 -0400826 if (IS_ERR(xprt)) {
827 err = PTR_ERR(xprt);
828 goto out;
829 }
J. Bruce Fields6797fa52012-08-18 15:33:51 -0400830
831 len = svc_handle_xprt(rqstp, xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600832
833 /* No data, incomplete (TCP) read, or accept() */
Jeff Layton860a0d92014-10-28 14:24:12 -0400834 err = -EAGAIN;
J. Bruce Fields9f9d2eb2012-08-17 21:35:24 -0400835 if (len <= 0)
Jeff Layton860a0d92014-10-28 14:24:12 -0400836 goto out_release;
J. Bruce Fieldsca7896cd2010-10-25 14:12:40 -0400837
Tom Tucker0f0257e2007-12-30 21:08:27 -0600838 clear_bit(XPT_OLD, &xprt->xpt_flags);
839
Chuck Lever989f8812018-03-27 10:49:38 -0400840 xprt->xpt_ops->xpo_secure_port(rqstp);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600841 rqstp->rq_chandle.defer = svc_defer;
Jeff Layton860a0d92014-10-28 14:24:12 -0400842 rqstp->rq_xid = svc_getu32(&rqstp->rq_arg.head[0]);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600843
844 if (serv->sv_stats)
845 serv->sv_stats->netcnt++;
Jeff Layton860a0d92014-10-28 14:24:12 -0400846 trace_svc_recv(rqstp, len);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600847 return len;
Jeff Layton860a0d92014-10-28 14:24:12 -0400848out_release:
J. Bruce Fieldsca7896cd2010-10-25 14:12:40 -0400849 rqstp->rq_res.len = 0;
850 svc_xprt_release(rqstp);
Jeff Layton860a0d92014-10-28 14:24:12 -0400851out:
Jeff Layton860a0d92014-10-28 14:24:12 -0400852 return err;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600853}
Trond Myklebust24c37672008-12-23 16:30:12 -0500854EXPORT_SYMBOL_GPL(svc_recv);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600855
856/*
857 * Drop request
858 */
859void svc_drop(struct svc_rqst *rqstp)
860{
Trond Myklebust104f6352016-06-24 10:55:46 -0400861 trace_svc_drop(rqstp);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600862 dprintk("svc: xprt %p dropped request\n", rqstp->rq_xprt);
863 svc_xprt_release(rqstp);
864}
Trond Myklebust24c37672008-12-23 16:30:12 -0500865EXPORT_SYMBOL_GPL(svc_drop);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600866
867/*
868 * Return reply to client.
869 */
870int svc_send(struct svc_rqst *rqstp)
871{
872 struct svc_xprt *xprt;
Jeff Layton860a0d92014-10-28 14:24:12 -0400873 int len = -EFAULT;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600874 struct xdr_buf *xb;
875
876 xprt = rqstp->rq_xprt;
877 if (!xprt)
Jeff Layton860a0d92014-10-28 14:24:12 -0400878 goto out;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600879
880 /* release the receive skb before sending the reply */
Chuck Lever63a1b152018-03-27 10:49:22 -0400881 xprt->xpt_ops->xpo_release_rqst(rqstp);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600882
883 /* calculate over-all length */
884 xb = &rqstp->rq_res;
885 xb->len = xb->head[0].iov_len +
886 xb->page_len +
887 xb->tail[0].iov_len;
888
889 /* Grab mutex to serialize outgoing data. */
890 mutex_lock(&xprt->xpt_mutex);
Chuck Leveraaba72c2018-03-27 10:51:39 -0400891 trace_svc_stats_latency(rqstp);
J. Bruce Fieldsf06f00a2012-08-20 16:04:40 -0400892 if (test_bit(XPT_DEAD, &xprt->xpt_flags)
893 || test_bit(XPT_CLOSE, &xprt->xpt_flags))
Tom Tucker0f0257e2007-12-30 21:08:27 -0600894 len = -ENOTCONN;
895 else
896 len = xprt->xpt_ops->xpo_sendto(rqstp);
897 mutex_unlock(&xprt->xpt_mutex);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300898 rpc_wake_up(&xprt->xpt_bc_pending);
Chuck Leverece200d2018-03-27 10:51:00 -0400899 trace_svc_send(rqstp, len);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600900 svc_xprt_release(rqstp);
901
902 if (len == -ECONNREFUSED || len == -ENOTCONN || len == -EAGAIN)
Jeff Layton860a0d92014-10-28 14:24:12 -0400903 len = 0;
904out:
Tom Tucker0f0257e2007-12-30 21:08:27 -0600905 return len;
906}
907
908/*
909 * Timer function to close old temporary transports, using
910 * a mark-and-sweep algorithm.
911 */
Kees Cookff861c42017-10-16 17:29:42 -0700912static void svc_age_temp_xprts(struct timer_list *t)
Tom Tucker0f0257e2007-12-30 21:08:27 -0600913{
Kees Cookff861c42017-10-16 17:29:42 -0700914 struct svc_serv *serv = from_timer(serv, t, sv_temptimer);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600915 struct svc_xprt *xprt;
916 struct list_head *le, *next;
Tom Tucker0f0257e2007-12-30 21:08:27 -0600917
918 dprintk("svc_age_temp_xprts\n");
919
920 if (!spin_trylock_bh(&serv->sv_lock)) {
921 /* busy, try again 1 sec later */
922 dprintk("svc_age_temp_xprts: busy\n");
923 mod_timer(&serv->sv_temptimer, jiffies + HZ);
924 return;
925 }
926
927 list_for_each_safe(le, next, &serv->sv_tempsocks) {
928 xprt = list_entry(le, struct svc_xprt, xpt_list);
929
930 /* First time through, just mark it OLD. Second time
931 * through, close it. */
932 if (!test_and_set_bit(XPT_OLD, &xprt->xpt_flags))
933 continue;
Peter Zijlstra2c935bc2016-11-14 17:29:48 +0100934 if (kref_read(&xprt->xpt_ref) > 1 ||
Joe Perchesf64f9e72009-11-29 16:55:45 -0800935 test_bit(XPT_BUSY, &xprt->xpt_flags))
Tom Tucker0f0257e2007-12-30 21:08:27 -0600936 continue;
J. Bruce Fieldse75bafb2013-02-10 11:33:48 -0500937 list_del_init(le);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600938 set_bit(XPT_CLOSE, &xprt->xpt_flags);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600939 dprintk("queuing xprt %p for closing\n", xprt);
940
941 /* a thread will dequeue and close it soon */
942 svc_xprt_enqueue(xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600943 }
J. Bruce Fieldse75bafb2013-02-10 11:33:48 -0500944 spin_unlock_bh(&serv->sv_lock);
Tom Tucker0f0257e2007-12-30 21:08:27 -0600945
946 mod_timer(&serv->sv_temptimer, jiffies + svc_conn_age_period * HZ);
947}
948
Scott Mayhewc3d48792015-12-11 16:45:58 -0500949/* Close temporary transports whose xpt_local matches server_addr immediately
950 * instead of waiting for them to be picked up by the timer.
951 *
952 * This is meant to be called from a notifier_block that runs when an ip
953 * address is deleted.
954 */
955void svc_age_temp_xprts_now(struct svc_serv *serv, struct sockaddr *server_addr)
956{
957 struct svc_xprt *xprt;
Scott Mayhewc3d48792015-12-11 16:45:58 -0500958 struct list_head *le, *next;
959 LIST_HEAD(to_be_closed);
Scott Mayhewc3d48792015-12-11 16:45:58 -0500960
961 spin_lock_bh(&serv->sv_lock);
962 list_for_each_safe(le, next, &serv->sv_tempsocks) {
963 xprt = list_entry(le, struct svc_xprt, xpt_list);
964 if (rpc_cmp_addr(server_addr, (struct sockaddr *)
965 &xprt->xpt_local)) {
966 dprintk("svc_age_temp_xprts_now: found %p\n", xprt);
967 list_move(le, &to_be_closed);
968 }
969 }
970 spin_unlock_bh(&serv->sv_lock);
971
972 while (!list_empty(&to_be_closed)) {
973 le = to_be_closed.next;
974 list_del_init(le);
975 xprt = list_entry(le, struct svc_xprt, xpt_list);
Scott Mayhew546125d2017-01-05 16:34:51 -0500976 set_bit(XPT_CLOSE, &xprt->xpt_flags);
977 set_bit(XPT_KILL_TEMP, &xprt->xpt_flags);
978 dprintk("svc_age_temp_xprts_now: queuing xprt %p for closing\n",
979 xprt);
980 svc_xprt_enqueue(xprt);
Scott Mayhewc3d48792015-12-11 16:45:58 -0500981 }
982}
983EXPORT_SYMBOL_GPL(svc_age_temp_xprts_now);
984
J. Bruce Fieldsedc7a892010-03-22 15:37:17 -0400985static void call_xpt_users(struct svc_xprt *xprt)
986{
987 struct svc_xpt_user *u;
988
989 spin_lock(&xprt->xpt_lock);
990 while (!list_empty(&xprt->xpt_users)) {
991 u = list_first_entry(&xprt->xpt_users, struct svc_xpt_user, list);
992 list_del(&u->list);
993 u->callback(u);
994 }
995 spin_unlock(&xprt->xpt_lock);
996}
997
Tom Tucker0f0257e2007-12-30 21:08:27 -0600998/*
999 * Remove a dead transport
1000 */
J. Bruce Fields7710ec32011-11-25 18:44:05 -05001001static void svc_delete_xprt(struct svc_xprt *xprt)
Tom Tucker0f0257e2007-12-30 21:08:27 -06001002{
1003 struct svc_serv *serv = xprt->xpt_server;
Tom Tucker22945e42009-01-05 15:21:19 -06001004 struct svc_deferred_req *dr;
1005
1006 /* Only do this once */
1007 if (test_and_set_bit(XPT_DEAD, &xprt->xpt_flags))
J. Bruce Fieldsac9303e2010-10-23 11:16:10 -04001008 BUG();
Tom Tucker0f0257e2007-12-30 21:08:27 -06001009
1010 dprintk("svc: svc_delete_xprt(%p)\n", xprt);
1011 xprt->xpt_ops->xpo_detach(xprt);
1012
1013 spin_lock_bh(&serv->sv_lock);
Jeff Layton8d65ef72014-11-17 17:02:57 -05001014 list_del_init(&xprt->xpt_list);
Weston Andros Adamson01047292012-10-23 10:43:48 -04001015 WARN_ON_ONCE(!list_empty(&xprt->xpt_ready));
Tom Tucker22945e42009-01-05 15:21:19 -06001016 if (test_bit(XPT_TEMP, &xprt->xpt_flags))
1017 serv->sv_tmpcnt--;
J. Bruce Fields788e69e2010-03-29 21:02:31 -04001018 spin_unlock_bh(&serv->sv_lock);
Tom Tucker22945e42009-01-05 15:21:19 -06001019
Neil Brownab1b18f2010-02-27 09:33:40 +11001020 while ((dr = svc_deferred_dequeue(xprt)) != NULL)
Tom Tucker22945e42009-01-05 15:21:19 -06001021 kfree(dr);
Tom Tucker22945e42009-01-05 15:21:19 -06001022
J. Bruce Fieldsedc7a892010-03-22 15:37:17 -04001023 call_xpt_users(xprt);
Tom Tucker22945e42009-01-05 15:21:19 -06001024 svc_xprt_put(xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001025}
1026
1027void svc_close_xprt(struct svc_xprt *xprt)
1028{
1029 set_bit(XPT_CLOSE, &xprt->xpt_flags);
1030 if (test_and_set_bit(XPT_BUSY, &xprt->xpt_flags))
1031 /* someone else will have to effect the close */
1032 return;
J. Bruce Fieldsb1763312010-10-25 20:24:48 -04001033 /*
1034 * We expect svc_close_xprt() to work even when no threads are
1035 * running (e.g., while configuring the server before starting
1036 * any threads), so if the transport isn't busy, we delete
1037 * it ourself:
1038 */
Tom Tucker0f0257e2007-12-30 21:08:27 -06001039 svc_delete_xprt(xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001040}
Tom Tuckera217813f2007-12-30 21:08:35 -06001041EXPORT_SYMBOL_GPL(svc_close_xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001042
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001043static int svc_close_list(struct svc_serv *serv, struct list_head *xprt_list, struct net *net)
Tom Tucker0f0257e2007-12-30 21:08:27 -06001044{
1045 struct svc_xprt *xprt;
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001046 int ret = 0;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001047
J. Bruce Fields719f8bc2012-08-13 17:03:00 -04001048 spin_lock(&serv->sv_lock);
J. Bruce Fieldsb4f36f82011-11-29 17:00:26 -05001049 list_for_each_entry(xprt, xprt_list, xpt_list) {
Stanislav Kinsbursky7b147f12012-01-31 14:09:17 +04001050 if (xprt->xpt_net != net)
1051 continue;
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001052 ret++;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001053 set_bit(XPT_CLOSE, &xprt->xpt_flags);
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001054 svc_xprt_enqueue(xprt);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001055 }
J. Bruce Fields719f8bc2012-08-13 17:03:00 -04001056 spin_unlock(&serv->sv_lock);
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001057 return ret;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001058}
1059
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001060static struct svc_xprt *svc_dequeue_net(struct svc_serv *serv, struct net *net)
J. Bruce Fields2fefb8a2011-11-29 11:35:35 -05001061{
J. Bruce Fieldsb4f36f82011-11-29 17:00:26 -05001062 struct svc_pool *pool;
1063 struct svc_xprt *xprt;
1064 struct svc_xprt *tmp;
1065 int i;
1066
J. Bruce Fieldsb4f36f82011-11-29 17:00:26 -05001067 for (i = 0; i < serv->sv_nrpools; i++) {
1068 pool = &serv->sv_pools[i];
1069
1070 spin_lock_bh(&pool->sp_lock);
Stanislav Kinsbursky6f513362012-01-31 14:09:00 +04001071 list_for_each_entry_safe(xprt, tmp, &pool->sp_sockets, xpt_ready) {
Stanislav Kinsbursky7b147f12012-01-31 14:09:17 +04001072 if (xprt->xpt_net != net)
1073 continue;
J. Bruce Fieldsb4f36f82011-11-29 17:00:26 -05001074 list_del_init(&xprt->xpt_ready);
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001075 spin_unlock_bh(&pool->sp_lock);
1076 return xprt;
J. Bruce Fieldsb4f36f82011-11-29 17:00:26 -05001077 }
1078 spin_unlock_bh(&pool->sp_lock);
1079 }
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001080 return NULL;
Stanislav Kinsbursky6f513362012-01-31 14:09:00 +04001081}
1082
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001083static void svc_clean_up_xprts(struct svc_serv *serv, struct net *net)
Stanislav Kinsbursky6f513362012-01-31 14:09:00 +04001084{
1085 struct svc_xprt *xprt;
Stanislav Kinsbursky6f513362012-01-31 14:09:00 +04001086
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001087 while ((xprt = svc_dequeue_net(serv, net))) {
1088 set_bit(XPT_CLOSE, &xprt->xpt_flags);
J. Bruce Fields719f8bc2012-08-13 17:03:00 -04001089 svc_delete_xprt(xprt);
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001090 }
Stanislav Kinsbursky3a22bf52012-01-31 14:09:08 +04001091}
1092
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001093/*
1094 * Server threads may still be running (especially in the case where the
1095 * service is still running in other network namespaces).
1096 *
1097 * So we shut down sockets the same way we would on a running server, by
1098 * setting XPT_CLOSE, enqueuing, and letting a thread pick it up to do
1099 * the close. In the case there are no such other threads,
1100 * threads running, svc_clean_up_xprts() does a simple version of a
1101 * server's main event loop, and in the case where there are other
1102 * threads, we may need to wait a little while and then check again to
1103 * see if they're done.
1104 */
Stanislav Kinsbursky7b147f12012-01-31 14:09:17 +04001105void svc_close_net(struct svc_serv *serv, struct net *net)
Stanislav Kinsbursky3a22bf52012-01-31 14:09:08 +04001106{
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001107 int delay = 0;
Stanislav Kinsbursky6f513362012-01-31 14:09:00 +04001108
J. Bruce Fieldscc630d92013-02-10 16:08:11 -05001109 while (svc_close_list(serv, &serv->sv_permsocks, net) +
1110 svc_close_list(serv, &serv->sv_tempsocks, net)) {
1111
1112 svc_clean_up_xprts(serv, net);
1113 msleep(delay++);
1114 }
J. Bruce Fields2fefb8a2011-11-29 11:35:35 -05001115}
1116
Tom Tucker0f0257e2007-12-30 21:08:27 -06001117/*
1118 * Handle defer and revisit of requests
1119 */
1120
1121static void svc_revisit(struct cache_deferred_req *dreq, int too_many)
1122{
1123 struct svc_deferred_req *dr =
1124 container_of(dreq, struct svc_deferred_req, handle);
1125 struct svc_xprt *xprt = dr->xprt;
1126
Tom Tucker22945e42009-01-05 15:21:19 -06001127 spin_lock(&xprt->xpt_lock);
1128 set_bit(XPT_DEFERRED, &xprt->xpt_flags);
1129 if (too_many || test_bit(XPT_DEAD, &xprt->xpt_flags)) {
1130 spin_unlock(&xprt->xpt_lock);
1131 dprintk("revisit canceled\n");
Tom Tucker0f0257e2007-12-30 21:08:27 -06001132 svc_xprt_put(xprt);
Trond Myklebust104f6352016-06-24 10:55:46 -04001133 trace_svc_drop_deferred(dr);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001134 kfree(dr);
1135 return;
1136 }
1137 dprintk("revisit queued\n");
1138 dr->xprt = NULL;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001139 list_add(&dr->handle.recent, &xprt->xpt_deferred);
1140 spin_unlock(&xprt->xpt_lock);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001141 svc_xprt_enqueue(xprt);
1142 svc_xprt_put(xprt);
1143}
1144
Tom Tucker260c1d12007-12-30 21:08:29 -06001145/*
1146 * Save the request off for later processing. The request buffer looks
1147 * like this:
1148 *
1149 * <xprt-header><rpc-header><rpc-pagelist><rpc-tail>
1150 *
1151 * This code can only handle requests that consist of an xprt-header
1152 * and rpc-header.
1153 */
Tom Tucker0f0257e2007-12-30 21:08:27 -06001154static struct cache_deferred_req *svc_defer(struct cache_req *req)
1155{
1156 struct svc_rqst *rqstp = container_of(req, struct svc_rqst, rq_chandle);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001157 struct svc_deferred_req *dr;
1158
Jeff Layton30660e04b2014-11-19 07:51:16 -05001159 if (rqstp->rq_arg.page_len || !test_bit(RQ_USEDEFERRAL, &rqstp->rq_flags))
Tom Tucker0f0257e2007-12-30 21:08:27 -06001160 return NULL; /* if more than a page, give up FIXME */
1161 if (rqstp->rq_deferred) {
1162 dr = rqstp->rq_deferred;
1163 rqstp->rq_deferred = NULL;
1164 } else {
Tom Tucker260c1d12007-12-30 21:08:29 -06001165 size_t skip;
1166 size_t size;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001167 /* FIXME maybe discard if size too large */
Tom Tucker260c1d12007-12-30 21:08:29 -06001168 size = sizeof(struct svc_deferred_req) + rqstp->rq_arg.len;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001169 dr = kmalloc(size, GFP_KERNEL);
1170 if (dr == NULL)
1171 return NULL;
1172
1173 dr->handle.owner = rqstp->rq_server;
1174 dr->prot = rqstp->rq_prot;
1175 memcpy(&dr->addr, &rqstp->rq_addr, rqstp->rq_addrlen);
1176 dr->addrlen = rqstp->rq_addrlen;
1177 dr->daddr = rqstp->rq_daddr;
1178 dr->argslen = rqstp->rq_arg.len >> 2;
Tom Tucker260c1d12007-12-30 21:08:29 -06001179 dr->xprt_hlen = rqstp->rq_xprt_hlen;
1180
1181 /* back up head to the start of the buffer and copy */
1182 skip = rqstp->rq_arg.len - rqstp->rq_arg.head[0].iov_len;
1183 memcpy(dr->args, rqstp->rq_arg.head[0].iov_base - skip,
1184 dr->argslen << 2);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001185 }
1186 svc_xprt_get(rqstp->rq_xprt);
1187 dr->xprt = rqstp->rq_xprt;
Jeff Layton78b65eb2014-11-19 07:51:17 -05001188 set_bit(RQ_DROPME, &rqstp->rq_flags);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001189
1190 dr->handle.revisit = svc_revisit;
Trond Myklebust104f6352016-06-24 10:55:46 -04001191 trace_svc_defer(rqstp);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001192 return &dr->handle;
1193}
1194
1195/*
1196 * recv data from a deferred request into an active one
1197 */
1198static int svc_deferred_recv(struct svc_rqst *rqstp)
1199{
1200 struct svc_deferred_req *dr = rqstp->rq_deferred;
1201
Tom Tucker260c1d12007-12-30 21:08:29 -06001202 /* setup iov_base past transport header */
1203 rqstp->rq_arg.head[0].iov_base = dr->args + (dr->xprt_hlen>>2);
1204 /* The iov_len does not include the transport header bytes */
1205 rqstp->rq_arg.head[0].iov_len = (dr->argslen<<2) - dr->xprt_hlen;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001206 rqstp->rq_arg.page_len = 0;
Tom Tucker260c1d12007-12-30 21:08:29 -06001207 /* The rq_arg.len includes the transport header bytes */
1208 rqstp->rq_arg.len = dr->argslen<<2;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001209 rqstp->rq_prot = dr->prot;
1210 memcpy(&rqstp->rq_addr, &dr->addr, dr->addrlen);
1211 rqstp->rq_addrlen = dr->addrlen;
Tom Tucker260c1d12007-12-30 21:08:29 -06001212 /* Save off transport header len in case we get deferred again */
1213 rqstp->rq_xprt_hlen = dr->xprt_hlen;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001214 rqstp->rq_daddr = dr->daddr;
1215 rqstp->rq_respages = rqstp->rq_pages;
Tom Tucker260c1d12007-12-30 21:08:29 -06001216 return (dr->argslen<<2) - dr->xprt_hlen;
Tom Tucker0f0257e2007-12-30 21:08:27 -06001217}
1218
1219
1220static struct svc_deferred_req *svc_deferred_dequeue(struct svc_xprt *xprt)
1221{
1222 struct svc_deferred_req *dr = NULL;
1223
1224 if (!test_bit(XPT_DEFERRED, &xprt->xpt_flags))
1225 return NULL;
1226 spin_lock(&xprt->xpt_lock);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001227 if (!list_empty(&xprt->xpt_deferred)) {
1228 dr = list_entry(xprt->xpt_deferred.next,
1229 struct svc_deferred_req,
1230 handle.recent);
1231 list_del_init(&dr->handle.recent);
Trond Myklebust104f6352016-06-24 10:55:46 -04001232 trace_svc_revisit_deferred(dr);
J. Bruce Fields62bac4a2010-10-25 12:50:15 -04001233 } else
1234 clear_bit(XPT_DEFERRED, &xprt->xpt_flags);
Tom Tucker0f0257e2007-12-30 21:08:27 -06001235 spin_unlock(&xprt->xpt_lock);
1236 return dr;
1237}
Tom Tucker7fcb98d2007-12-30 21:08:33 -06001238
Chuck Lever156e6202009-03-18 20:45:58 -04001239/**
1240 * svc_find_xprt - find an RPC transport instance
1241 * @serv: pointer to svc_serv to search
1242 * @xcl_name: C string containing transport's class name
Stanislav Kinsbursky4cb54ca2012-01-20 16:50:53 +04001243 * @net: owner net pointer
Chuck Lever156e6202009-03-18 20:45:58 -04001244 * @af: Address family of transport's local address
1245 * @port: transport's IP port number
1246 *
Tom Tucker7fcb98d2007-12-30 21:08:33 -06001247 * Return the transport instance pointer for the endpoint accepting
1248 * connections/peer traffic from the specified transport class,
1249 * address family and port.
1250 *
1251 * Specifying 0 for the address family or port is effectively a
1252 * wild-card, and will result in matching the first transport in the
1253 * service's list that has a matching class name.
1254 */
Chuck Lever156e6202009-03-18 20:45:58 -04001255struct svc_xprt *svc_find_xprt(struct svc_serv *serv, const char *xcl_name,
Stanislav Kinsbursky4cb54ca2012-01-20 16:50:53 +04001256 struct net *net, const sa_family_t af,
1257 const unsigned short port)
Tom Tucker7fcb98d2007-12-30 21:08:33 -06001258{
1259 struct svc_xprt *xprt;
1260 struct svc_xprt *found = NULL;
1261
1262 /* Sanity check the args */
Chuck Lever156e6202009-03-18 20:45:58 -04001263 if (serv == NULL || xcl_name == NULL)
Tom Tucker7fcb98d2007-12-30 21:08:33 -06001264 return found;
1265
1266 spin_lock_bh(&serv->sv_lock);
1267 list_for_each_entry(xprt, &serv->sv_permsocks, xpt_list) {
Stanislav Kinsbursky4cb54ca2012-01-20 16:50:53 +04001268 if (xprt->xpt_net != net)
1269 continue;
Tom Tucker7fcb98d2007-12-30 21:08:33 -06001270 if (strcmp(xprt->xpt_class->xcl_name, xcl_name))
1271 continue;
1272 if (af != AF_UNSPEC && af != xprt->xpt_local.ss_family)
1273 continue;
Chuck Lever156e6202009-03-18 20:45:58 -04001274 if (port != 0 && port != svc_xprt_local_port(xprt))
Tom Tucker7fcb98d2007-12-30 21:08:33 -06001275 continue;
1276 found = xprt;
Tom Tuckera217813f2007-12-30 21:08:35 -06001277 svc_xprt_get(xprt);
Tom Tucker7fcb98d2007-12-30 21:08:33 -06001278 break;
1279 }
1280 spin_unlock_bh(&serv->sv_lock);
1281 return found;
1282}
1283EXPORT_SYMBOL_GPL(svc_find_xprt);
Tom Tucker9571af12007-12-30 21:08:37 -06001284
Chuck Lever335c54b2009-04-23 19:32:25 -04001285static int svc_one_xprt_name(const struct svc_xprt *xprt,
1286 char *pos, int remaining)
1287{
1288 int len;
1289
1290 len = snprintf(pos, remaining, "%s %u\n",
1291 xprt->xpt_class->xcl_name,
1292 svc_xprt_local_port(xprt));
1293 if (len >= remaining)
1294 return -ENAMETOOLONG;
1295 return len;
1296}
1297
1298/**
1299 * svc_xprt_names - format a buffer with a list of transport names
1300 * @serv: pointer to an RPC service
1301 * @buf: pointer to a buffer to be filled in
1302 * @buflen: length of buffer to be filled in
1303 *
1304 * Fills in @buf with a string containing a list of transport names,
1305 * each name terminated with '\n'.
1306 *
1307 * Returns positive length of the filled-in string on success; otherwise
1308 * a negative errno value is returned if an error occurs.
Tom Tucker9571af12007-12-30 21:08:37 -06001309 */
Chuck Lever335c54b2009-04-23 19:32:25 -04001310int svc_xprt_names(struct svc_serv *serv, char *buf, const int buflen)
Tom Tucker9571af12007-12-30 21:08:37 -06001311{
1312 struct svc_xprt *xprt;
Chuck Lever335c54b2009-04-23 19:32:25 -04001313 int len, totlen;
1314 char *pos;
Tom Tucker9571af12007-12-30 21:08:37 -06001315
1316 /* Sanity check args */
1317 if (!serv)
1318 return 0;
1319
1320 spin_lock_bh(&serv->sv_lock);
Chuck Lever335c54b2009-04-23 19:32:25 -04001321
1322 pos = buf;
1323 totlen = 0;
Tom Tucker9571af12007-12-30 21:08:37 -06001324 list_for_each_entry(xprt, &serv->sv_permsocks, xpt_list) {
Chuck Lever335c54b2009-04-23 19:32:25 -04001325 len = svc_one_xprt_name(xprt, pos, buflen - totlen);
1326 if (len < 0) {
1327 *buf = '\0';
1328 totlen = len;
1329 }
1330 if (len <= 0)
Tom Tucker9571af12007-12-30 21:08:37 -06001331 break;
Chuck Lever335c54b2009-04-23 19:32:25 -04001332
1333 pos += len;
Tom Tucker9571af12007-12-30 21:08:37 -06001334 totlen += len;
1335 }
Chuck Lever335c54b2009-04-23 19:32:25 -04001336
Tom Tucker9571af12007-12-30 21:08:37 -06001337 spin_unlock_bh(&serv->sv_lock);
1338 return totlen;
1339}
1340EXPORT_SYMBOL_GPL(svc_xprt_names);
Greg Banks03cf6c92009-01-13 21:26:36 +11001341
1342
1343/*----------------------------------------------------------------------------*/
1344
1345static void *svc_pool_stats_start(struct seq_file *m, loff_t *pos)
1346{
1347 unsigned int pidx = (unsigned int)*pos;
1348 struct svc_serv *serv = m->private;
1349
1350 dprintk("svc_pool_stats_start, *pidx=%u\n", pidx);
1351
Greg Banks03cf6c92009-01-13 21:26:36 +11001352 if (!pidx)
1353 return SEQ_START_TOKEN;
1354 return (pidx > serv->sv_nrpools ? NULL : &serv->sv_pools[pidx-1]);
1355}
1356
1357static void *svc_pool_stats_next(struct seq_file *m, void *p, loff_t *pos)
1358{
1359 struct svc_pool *pool = p;
1360 struct svc_serv *serv = m->private;
1361
1362 dprintk("svc_pool_stats_next, *pos=%llu\n", *pos);
1363
1364 if (p == SEQ_START_TOKEN) {
1365 pool = &serv->sv_pools[0];
1366 } else {
1367 unsigned int pidx = (pool - &serv->sv_pools[0]);
1368 if (pidx < serv->sv_nrpools-1)
1369 pool = &serv->sv_pools[pidx+1];
1370 else
1371 pool = NULL;
1372 }
1373 ++*pos;
1374 return pool;
1375}
1376
1377static void svc_pool_stats_stop(struct seq_file *m, void *p)
1378{
Greg Banks03cf6c92009-01-13 21:26:36 +11001379}
1380
1381static int svc_pool_stats_show(struct seq_file *m, void *p)
1382{
1383 struct svc_pool *pool = p;
1384
1385 if (p == SEQ_START_TOKEN) {
J. Bruce Fields78c210e2009-08-06 15:41:34 -04001386 seq_puts(m, "# pool packets-arrived sockets-enqueued threads-woken threads-timedout\n");
Greg Banks03cf6c92009-01-13 21:26:36 +11001387 return 0;
1388 }
1389
J. Bruce Fields78c210e2009-08-06 15:41:34 -04001390 seq_printf(m, "%u %lu %lu %lu %lu\n",
Greg Banks03cf6c92009-01-13 21:26:36 +11001391 pool->sp_id,
Jeff Layton403c7b42014-11-21 14:19:29 -05001392 (unsigned long)atomic_long_read(&pool->sp_stats.packets),
Greg Banks03cf6c92009-01-13 21:26:36 +11001393 pool->sp_stats.sockets_queued,
Jeff Layton403c7b42014-11-21 14:19:29 -05001394 (unsigned long)atomic_long_read(&pool->sp_stats.threads_woken),
1395 (unsigned long)atomic_long_read(&pool->sp_stats.threads_timedout));
Greg Banks03cf6c92009-01-13 21:26:36 +11001396
1397 return 0;
1398}
1399
1400static const struct seq_operations svc_pool_stats_seq_ops = {
1401 .start = svc_pool_stats_start,
1402 .next = svc_pool_stats_next,
1403 .stop = svc_pool_stats_stop,
1404 .show = svc_pool_stats_show,
1405};
1406
1407int svc_pool_stats_open(struct svc_serv *serv, struct file *file)
1408{
1409 int err;
1410
1411 err = seq_open(file, &svc_pool_stats_seq_ops);
1412 if (!err)
1413 ((struct seq_file *) file->private_data)->private = serv;
1414 return err;
1415}
1416EXPORT_SYMBOL(svc_pool_stats_open);
1417
1418/*----------------------------------------------------------------------------*/