blob: 7be90bc1a7c26c2c4b998e4b21ca319df19f9638 [file] [log] [blame]
Chuck Levera246b012005-08-11 16:25:23 -04001/*
2 * linux/net/sunrpc/xprtsock.c
3 *
4 * Client-side transport implementation for sockets.
5 *
Alan Cox113aa832008-10-13 19:01:08 -07006 * TCP callback races fixes (C) 1998 Red Hat
7 * TCP send fixes (C) 1998 Red Hat
Chuck Levera246b012005-08-11 16:25:23 -04008 * TCP NFS related read + write fixes
9 * (C) 1999 Dave Airlie, University of Limerick, Ireland <airlied@linux.ie>
10 *
11 * Rewrite of larges part of the code in order to stabilize TCP stuff.
12 * Fix behaviour when socket buffer is full.
13 * (C) 1999 Trond Myklebust <trond.myklebust@fys.uio.no>
Chuck Lever55aa4f52005-08-11 16:25:47 -040014 *
15 * IP socket transport implementation, (C) 2005 Chuck Lever <cel@netapp.com>
Chuck Lever8f9d5b12007-08-06 11:57:53 -040016 *
17 * IPv6 support contributed by Gilles Quillard, Bull Open Source, 2005.
18 * <gilles.quillard@bull.net>
Chuck Levera246b012005-08-11 16:25:23 -040019 */
20
21#include <linux/types.h>
Chuck Lever176e21e2011-05-09 15:22:44 -040022#include <linux/string.h>
Chuck Levera246b012005-08-11 16:25:23 -040023#include <linux/slab.h>
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -040024#include <linux/module.h>
Chuck Levera246b012005-08-11 16:25:23 -040025#include <linux/capability.h>
Chuck Levera246b012005-08-11 16:25:23 -040026#include <linux/pagemap.h>
27#include <linux/errno.h>
28#include <linux/socket.h>
29#include <linux/in.h>
30#include <linux/net.h>
31#include <linux/mm.h>
Chuck Lever176e21e2011-05-09 15:22:44 -040032#include <linux/un.h>
Chuck Levera246b012005-08-11 16:25:23 -040033#include <linux/udp.h>
34#include <linux/tcp.h>
35#include <linux/sunrpc/clnt.h>
Jeff Layton59766872013-02-04 12:50:00 -050036#include <linux/sunrpc/addr.h>
Chuck Lever02107142006-01-03 09:55:49 +010037#include <linux/sunrpc/sched.h>
Rahul Iyer4cfc7e62009-09-10 17:32:28 +030038#include <linux/sunrpc/svcsock.h>
\"Talpey, Thomas\49c36fc2007-09-10 13:47:31 -040039#include <linux/sunrpc/xprtsock.h>
Chuck Levera246b012005-08-11 16:25:23 -040040#include <linux/file.h>
Trond Myklebust9e00abc2011-07-13 19:20:49 -040041#ifdef CONFIG_SUNRPC_BACKCHANNEL
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -040042#include <linux/sunrpc/bc_xprt.h>
43#endif
Chuck Levera246b012005-08-11 16:25:23 -040044
45#include <net/sock.h>
46#include <net/checksum.h>
47#include <net/udp.h>
48#include <net/tcp.h>
49
Trond Myklebust40b5ea02013-09-04 12:16:23 -040050#include <trace/events/sunrpc.h>
51
Rahul Iyer4cfc7e62009-09-10 17:32:28 +030052#include "sunrpc.h"
Chuck Lever176e21e2011-05-09 15:22:44 -040053
54static void xs_close(struct rpc_xprt *xprt);
55
Chuck Lever9903cd12005-08-11 16:25:26 -040056/*
Chuck Leverc556b752005-11-01 12:24:48 -050057 * xprtsock tunables
58 */
Trond Myklebust09acfea2012-03-11 15:22:54 -040059static unsigned int xprt_udp_slot_table_entries = RPC_DEF_SLOT_TABLE;
60static unsigned int xprt_tcp_slot_table_entries = RPC_MIN_SLOT_TABLE;
61static unsigned int xprt_max_tcp_slot_table_entries = RPC_MAX_SLOT_TABLE;
Chuck Leverc556b752005-11-01 12:24:48 -050062
Trond Myklebust09acfea2012-03-11 15:22:54 -040063static unsigned int xprt_min_resvport = RPC_DEF_MIN_RESVPORT;
64static unsigned int xprt_max_resvport = RPC_DEF_MAX_RESVPORT;
Chuck Leverc556b752005-11-01 12:24:48 -050065
Trond Myklebust54c09872015-02-09 11:01:02 -050066#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
67
Trond Myklebust7d1e8252009-03-11 14:38:03 -040068#define XS_TCP_LINGER_TO (15U * HZ)
Trond Myklebust25fe6142009-03-11 14:38:03 -040069static unsigned int xs_tcp_fin_timeout __read_mostly = XS_TCP_LINGER_TO;
Trond Myklebust7d1e8252009-03-11 14:38:03 -040070
Chuck Leverc556b752005-11-01 12:24:48 -050071/*
Chuck Leverfbf76682006-12-05 16:35:54 -050072 * We can register our own files under /proc/sys/sunrpc by
73 * calling register_sysctl_table() again. The files in that
74 * directory become the union of all files registered there.
75 *
76 * We simply need to make sure that we don't collide with
77 * someone else's file names!
78 */
79
Chuck Leverfbf76682006-12-05 16:35:54 -050080static unsigned int min_slot_table_size = RPC_MIN_SLOT_TABLE;
81static unsigned int max_slot_table_size = RPC_MAX_SLOT_TABLE;
Trond Myklebustd9ba1312011-07-17 18:11:30 -040082static unsigned int max_tcp_slot_table_limit = RPC_MAX_SLOT_TABLE_LIMIT;
Chuck Leverfbf76682006-12-05 16:35:54 -050083static unsigned int xprt_min_resvport_limit = RPC_MIN_RESVPORT;
84static unsigned int xprt_max_resvport_limit = RPC_MAX_RESVPORT;
85
86static struct ctl_table_header *sunrpc_table_header;
87
88/*
89 * FIXME: changing the UDP slot table size should also resize the UDP
90 * socket buffers for existing UDP transports
91 */
Joe Perchesfe2c6332013-06-11 23:04:25 -070092static struct ctl_table xs_tunables_table[] = {
Chuck Leverfbf76682006-12-05 16:35:54 -050093 {
Chuck Leverfbf76682006-12-05 16:35:54 -050094 .procname = "udp_slot_table_entries",
95 .data = &xprt_udp_slot_table_entries,
96 .maxlen = sizeof(unsigned int),
97 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -080098 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -050099 .extra1 = &min_slot_table_size,
100 .extra2 = &max_slot_table_size
101 },
102 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500103 .procname = "tcp_slot_table_entries",
104 .data = &xprt_tcp_slot_table_entries,
105 .maxlen = sizeof(unsigned int),
106 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800107 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -0500108 .extra1 = &min_slot_table_size,
109 .extra2 = &max_slot_table_size
110 },
111 {
Trond Myklebustd9ba1312011-07-17 18:11:30 -0400112 .procname = "tcp_max_slot_table_entries",
113 .data = &xprt_max_tcp_slot_table_entries,
114 .maxlen = sizeof(unsigned int),
115 .mode = 0644,
116 .proc_handler = proc_dointvec_minmax,
117 .extra1 = &min_slot_table_size,
118 .extra2 = &max_tcp_slot_table_limit
119 },
120 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500121 .procname = "min_resvport",
122 .data = &xprt_min_resvport,
123 .maxlen = sizeof(unsigned int),
124 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800125 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -0500126 .extra1 = &xprt_min_resvport_limit,
127 .extra2 = &xprt_max_resvport_limit
128 },
129 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500130 .procname = "max_resvport",
131 .data = &xprt_max_resvport,
132 .maxlen = sizeof(unsigned int),
133 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800134 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -0500135 .extra1 = &xprt_min_resvport_limit,
136 .extra2 = &xprt_max_resvport_limit
137 },
138 {
Trond Myklebust25fe6142009-03-11 14:38:03 -0400139 .procname = "tcp_fin_timeout",
140 .data = &xs_tcp_fin_timeout,
141 .maxlen = sizeof(xs_tcp_fin_timeout),
142 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800143 .proc_handler = proc_dointvec_jiffies,
Trond Myklebust25fe6142009-03-11 14:38:03 -0400144 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800145 { },
Chuck Leverfbf76682006-12-05 16:35:54 -0500146};
147
Joe Perchesfe2c6332013-06-11 23:04:25 -0700148static struct ctl_table sunrpc_table[] = {
Chuck Leverfbf76682006-12-05 16:35:54 -0500149 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500150 .procname = "sunrpc",
151 .mode = 0555,
152 .child = xs_tunables_table
153 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800154 { },
Chuck Leverfbf76682006-12-05 16:35:54 -0500155};
156
157#endif
158
159/*
Chuck Lever03bf4b72005-08-25 16:25:55 -0700160 * Wait duration for a reply from the RPC portmapper.
161 */
162#define XS_BIND_TO (60U * HZ)
163
164/*
165 * Delay if a UDP socket connect error occurs. This is most likely some
166 * kind of resource problem on the local host.
167 */
168#define XS_UDP_REEST_TO (2U * HZ)
169
170/*
171 * The reestablish timeout allows clients to delay for a bit before attempting
172 * to reconnect to a server that just dropped our connection.
173 *
174 * We implement an exponential backoff when trying to reestablish a TCP
175 * transport connection with the server. Some servers like to drop a TCP
176 * connection when they are overworked, so we start with a short timeout and
177 * increase over time if the server is down or not responding.
178 */
179#define XS_TCP_INIT_REEST_TO (3U * HZ)
180#define XS_TCP_MAX_REEST_TO (5U * 60 * HZ)
181
182/*
183 * TCP idle timeout; client drops the transport socket if it is idle
184 * for this long. Note that we also timeout UDP sockets to prevent
185 * holding port numbers when there is no RPC traffic.
186 */
187#define XS_IDLE_DISC_TO (5U * 60 * HZ)
188
Jeff Laytonf895b252014-11-17 16:58:04 -0500189#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Chuck Levera246b012005-08-11 16:25:23 -0400190# undef RPC_DEBUG_DATA
Chuck Lever9903cd12005-08-11 16:25:26 -0400191# define RPCDBG_FACILITY RPCDBG_TRANS
Chuck Levera246b012005-08-11 16:25:23 -0400192#endif
193
Chuck Levera246b012005-08-11 16:25:23 -0400194#ifdef RPC_DEBUG_DATA
Chuck Lever9903cd12005-08-11 16:25:26 -0400195static void xs_pktdump(char *msg, u32 *packet, unsigned int count)
Chuck Levera246b012005-08-11 16:25:23 -0400196{
Chuck Lever9903cd12005-08-11 16:25:26 -0400197 u8 *buf = (u8 *) packet;
198 int j;
Chuck Levera246b012005-08-11 16:25:23 -0400199
Chuck Lever46121cf2007-01-31 12:14:08 -0500200 dprintk("RPC: %s\n", msg);
Chuck Levera246b012005-08-11 16:25:23 -0400201 for (j = 0; j < count && j < 128; j += 4) {
202 if (!(j & 31)) {
203 if (j)
204 dprintk("\n");
205 dprintk("0x%04x ", j);
206 }
207 dprintk("%02x%02x%02x%02x ",
208 buf[j], buf[j+1], buf[j+2], buf[j+3]);
209 }
210 dprintk("\n");
211}
212#else
Chuck Lever9903cd12005-08-11 16:25:26 -0400213static inline void xs_pktdump(char *msg, u32 *packet, unsigned int count)
Chuck Levera246b012005-08-11 16:25:23 -0400214{
215 /* NOP */
216}
217#endif
218
Trond Myklebust21180712013-12-31 13:22:59 -0500219static inline struct rpc_xprt *xprt_from_sock(struct sock *sk)
220{
221 return (struct rpc_xprt *) sk->sk_user_data;
222}
223
Chuck Lever95392c52007-08-06 11:57:58 -0400224static inline struct sockaddr *xs_addr(struct rpc_xprt *xprt)
Chuck Leveredb267a2006-08-22 20:06:18 -0400225{
Chuck Lever95392c52007-08-06 11:57:58 -0400226 return (struct sockaddr *) &xprt->addr;
227}
228
Chuck Lever176e21e2011-05-09 15:22:44 -0400229static inline struct sockaddr_un *xs_addr_un(struct rpc_xprt *xprt)
230{
231 return (struct sockaddr_un *) &xprt->addr;
232}
233
Chuck Lever95392c52007-08-06 11:57:58 -0400234static inline struct sockaddr_in *xs_addr_in(struct rpc_xprt *xprt)
235{
236 return (struct sockaddr_in *) &xprt->addr;
237}
238
239static inline struct sockaddr_in6 *xs_addr_in6(struct rpc_xprt *xprt)
240{
241 return (struct sockaddr_in6 *) &xprt->addr;
242}
243
Chuck Leverc877b842009-08-09 15:09:36 -0400244static void xs_format_common_peer_addresses(struct rpc_xprt *xprt)
Chuck Leveredb267a2006-08-22 20:06:18 -0400245{
Chuck Leverc877b842009-08-09 15:09:36 -0400246 struct sockaddr *sap = xs_addr(xprt);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400247 struct sockaddr_in6 *sin6;
248 struct sockaddr_in *sin;
Chuck Lever176e21e2011-05-09 15:22:44 -0400249 struct sockaddr_un *sun;
Chuck Leverc877b842009-08-09 15:09:36 -0400250 char buf[128];
Chuck Leveredb267a2006-08-22 20:06:18 -0400251
Chuck Lever9dc3b092009-08-09 15:09:46 -0400252 switch (sap->sa_family) {
Chuck Lever176e21e2011-05-09 15:22:44 -0400253 case AF_LOCAL:
254 sun = xs_addr_un(xprt);
255 strlcpy(buf, sun->sun_path, sizeof(buf));
256 xprt->address_strings[RPC_DISPLAY_ADDR] =
257 kstrdup(buf, GFP_KERNEL);
258 break;
Chuck Lever9dc3b092009-08-09 15:09:46 -0400259 case AF_INET:
Chuck Lever176e21e2011-05-09 15:22:44 -0400260 (void)rpc_ntop(sap, buf, sizeof(buf));
261 xprt->address_strings[RPC_DISPLAY_ADDR] =
262 kstrdup(buf, GFP_KERNEL);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400263 sin = xs_addr_in(xprt);
Joe Perchesfc0b57912010-03-08 12:15:28 -0800264 snprintf(buf, sizeof(buf), "%08x", ntohl(sin->sin_addr.s_addr));
Chuck Lever9dc3b092009-08-09 15:09:46 -0400265 break;
266 case AF_INET6:
Chuck Lever176e21e2011-05-09 15:22:44 -0400267 (void)rpc_ntop(sap, buf, sizeof(buf));
268 xprt->address_strings[RPC_DISPLAY_ADDR] =
269 kstrdup(buf, GFP_KERNEL);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400270 sin6 = xs_addr_in6(xprt);
Joe Perchesfc0b57912010-03-08 12:15:28 -0800271 snprintf(buf, sizeof(buf), "%pi6", &sin6->sin6_addr);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400272 break;
273 default:
274 BUG();
Chuck Leveredb267a2006-08-22 20:06:18 -0400275 }
Chuck Lever176e21e2011-05-09 15:22:44 -0400276
Chuck Lever9dc3b092009-08-09 15:09:46 -0400277 xprt->address_strings[RPC_DISPLAY_HEX_ADDR] = kstrdup(buf, GFP_KERNEL);
Chuck Leveredb267a2006-08-22 20:06:18 -0400278}
279
Chuck Lever9dc3b092009-08-09 15:09:46 -0400280static void xs_format_common_peer_ports(struct rpc_xprt *xprt)
Chuck Lever4b6473f2007-08-06 11:57:12 -0400281{
Chuck Lever9dc3b092009-08-09 15:09:46 -0400282 struct sockaddr *sap = xs_addr(xprt);
283 char buf[128];
Chuck Lever4b6473f2007-08-06 11:57:12 -0400284
Joe Perches81160e662010-03-08 12:15:59 -0800285 snprintf(buf, sizeof(buf), "%u", rpc_get_port(sap));
Chuck Leverc877b842009-08-09 15:09:36 -0400286 xprt->address_strings[RPC_DISPLAY_PORT] = kstrdup(buf, GFP_KERNEL);
Chuck Lever4b6473f2007-08-06 11:57:12 -0400287
Joe Perches81160e662010-03-08 12:15:59 -0800288 snprintf(buf, sizeof(buf), "%4hx", rpc_get_port(sap));
Chuck Leverc877b842009-08-09 15:09:36 -0400289 xprt->address_strings[RPC_DISPLAY_HEX_PORT] = kstrdup(buf, GFP_KERNEL);
290}
Chuck Lever4b6473f2007-08-06 11:57:12 -0400291
Chuck Lever9dc3b092009-08-09 15:09:46 -0400292static void xs_format_peer_addresses(struct rpc_xprt *xprt,
293 const char *protocol,
294 const char *netid)
Chuck Leveredb267a2006-08-22 20:06:18 -0400295{
Chuck Leverb454ae92008-01-07 18:34:48 -0500296 xprt->address_strings[RPC_DISPLAY_PROTO] = protocol;
Chuck Leverb454ae92008-01-07 18:34:48 -0500297 xprt->address_strings[RPC_DISPLAY_NETID] = netid;
Chuck Leverc877b842009-08-09 15:09:36 -0400298 xs_format_common_peer_addresses(xprt);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400299 xs_format_common_peer_ports(xprt);
Chuck Lever4b6473f2007-08-06 11:57:12 -0400300}
301
Chuck Lever9dc3b092009-08-09 15:09:46 -0400302static void xs_update_peer_port(struct rpc_xprt *xprt)
Chuck Lever4b6473f2007-08-06 11:57:12 -0400303{
Chuck Lever9dc3b092009-08-09 15:09:46 -0400304 kfree(xprt->address_strings[RPC_DISPLAY_HEX_PORT]);
305 kfree(xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever4b6473f2007-08-06 11:57:12 -0400306
Chuck Lever9dc3b092009-08-09 15:09:46 -0400307 xs_format_common_peer_ports(xprt);
Chuck Leveredb267a2006-08-22 20:06:18 -0400308}
309
310static void xs_free_peer_addresses(struct rpc_xprt *xprt)
311{
Chuck Lever33e01dc2008-01-14 12:32:20 -0500312 unsigned int i;
313
314 for (i = 0; i < RPC_DISPLAY_MAX; i++)
315 switch (i) {
316 case RPC_DISPLAY_PROTO:
317 case RPC_DISPLAY_NETID:
318 continue;
319 default:
320 kfree(xprt->address_strings[i]);
321 }
Chuck Leveredb267a2006-08-22 20:06:18 -0400322}
323
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400324#define XS_SENDMSG_FLAGS (MSG_DONTWAIT | MSG_NOSIGNAL)
325
Trond Myklebust24c56842006-10-17 15:06:22 -0400326static int xs_send_kvec(struct socket *sock, struct sockaddr *addr, int addrlen, struct kvec *vec, unsigned int base, int more)
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400327{
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400328 struct msghdr msg = {
329 .msg_name = addr,
330 .msg_namelen = addrlen,
Trond Myklebust24c56842006-10-17 15:06:22 -0400331 .msg_flags = XS_SENDMSG_FLAGS | (more ? MSG_MORE : 0),
332 };
333 struct kvec iov = {
334 .iov_base = vec->iov_base + base,
335 .iov_len = vec->iov_len - base,
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400336 };
337
Trond Myklebust24c56842006-10-17 15:06:22 -0400338 if (iov.iov_len != 0)
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400339 return kernel_sendmsg(sock, &msg, &iov, 1, iov.iov_len);
340 return kernel_sendmsg(sock, &msg, NULL, 0, 0);
341}
342
Jason Baronf279cd02014-09-24 18:08:00 +0000343static int xs_send_pagedata(struct socket *sock, struct xdr_buf *xdr, unsigned int base, int more, bool zerocopy, int *sent_p)
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400344{
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500345 ssize_t (*do_sendpage)(struct socket *sock, struct page *page,
346 int offset, size_t size, int flags);
Trond Myklebust24c56842006-10-17 15:06:22 -0400347 struct page **ppage;
348 unsigned int remainder;
Jason Baronf279cd02014-09-24 18:08:00 +0000349 int err;
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400350
Trond Myklebust24c56842006-10-17 15:06:22 -0400351 remainder = xdr->page_len - base;
352 base += xdr->page_base;
353 ppage = xdr->pages + (base >> PAGE_SHIFT);
354 base &= ~PAGE_MASK;
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500355 do_sendpage = sock->ops->sendpage;
356 if (!zerocopy)
357 do_sendpage = sock_no_sendpage;
Trond Myklebust24c56842006-10-17 15:06:22 -0400358 for(;;) {
359 unsigned int len = min_t(unsigned int, PAGE_SIZE - base, remainder);
360 int flags = XS_SENDMSG_FLAGS;
361
362 remainder -= len;
363 if (remainder != 0 || more)
364 flags |= MSG_MORE;
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500365 err = do_sendpage(sock, *ppage, base, len, flags);
Trond Myklebust24c56842006-10-17 15:06:22 -0400366 if (remainder == 0 || err != len)
367 break;
Jason Baronf279cd02014-09-24 18:08:00 +0000368 *sent_p += err;
Trond Myklebust24c56842006-10-17 15:06:22 -0400369 ppage++;
370 base = 0;
371 }
Jason Baronf279cd02014-09-24 18:08:00 +0000372 if (err > 0) {
373 *sent_p += err;
374 err = 0;
375 }
376 return err;
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400377}
378
Chuck Lever9903cd12005-08-11 16:25:26 -0400379/**
380 * xs_sendpages - write pages directly to a socket
381 * @sock: socket to send on
382 * @addr: UDP only -- address of destination
383 * @addrlen: UDP only -- length of destination address
384 * @xdr: buffer containing this request
385 * @base: starting position in the buffer
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500386 * @zerocopy: true if it is safe to use sendpage()
Jason Baronf279cd02014-09-24 18:08:00 +0000387 * @sent_p: return the total number of bytes successfully queued for sending
Chuck Lever9903cd12005-08-11 16:25:26 -0400388 *
Chuck Levera246b012005-08-11 16:25:23 -0400389 */
Jason Baronf279cd02014-09-24 18:08:00 +0000390static int xs_sendpages(struct socket *sock, struct sockaddr *addr, int addrlen, struct xdr_buf *xdr, unsigned int base, bool zerocopy, int *sent_p)
Chuck Levera246b012005-08-11 16:25:23 -0400391{
Trond Myklebust24c56842006-10-17 15:06:22 -0400392 unsigned int remainder = xdr->len - base;
Jason Baronf279cd02014-09-24 18:08:00 +0000393 int err = 0;
394 int sent = 0;
Chuck Levera246b012005-08-11 16:25:23 -0400395
Chuck Lever262965f2005-08-11 16:25:56 -0400396 if (unlikely(!sock))
Trond Myklebustfba91af2009-03-11 14:06:41 -0400397 return -ENOTSOCK;
Chuck Lever262965f2005-08-11 16:25:56 -0400398
399 clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags);
Trond Myklebust24c56842006-10-17 15:06:22 -0400400 if (base != 0) {
401 addr = NULL;
402 addrlen = 0;
403 }
Chuck Lever262965f2005-08-11 16:25:56 -0400404
Trond Myklebust24c56842006-10-17 15:06:22 -0400405 if (base < xdr->head[0].iov_len || addr != NULL) {
406 unsigned int len = xdr->head[0].iov_len - base;
407 remainder -= len;
408 err = xs_send_kvec(sock, addr, addrlen, &xdr->head[0], base, remainder != 0);
409 if (remainder == 0 || err != len)
Chuck Levera246b012005-08-11 16:25:23 -0400410 goto out;
Jason Baronf279cd02014-09-24 18:08:00 +0000411 *sent_p += err;
Chuck Levera246b012005-08-11 16:25:23 -0400412 base = 0;
413 } else
Trond Myklebust24c56842006-10-17 15:06:22 -0400414 base -= xdr->head[0].iov_len;
Chuck Levera246b012005-08-11 16:25:23 -0400415
Trond Myklebust24c56842006-10-17 15:06:22 -0400416 if (base < xdr->page_len) {
417 unsigned int len = xdr->page_len - base;
418 remainder -= len;
Jason Baronf279cd02014-09-24 18:08:00 +0000419 err = xs_send_pagedata(sock, xdr, base, remainder != 0, zerocopy, &sent);
420 *sent_p += sent;
421 if (remainder == 0 || sent != len)
Chuck Levera246b012005-08-11 16:25:23 -0400422 goto out;
423 base = 0;
Trond Myklebust24c56842006-10-17 15:06:22 -0400424 } else
425 base -= xdr->page_len;
426
427 if (base >= xdr->tail[0].iov_len)
Jason Baronf279cd02014-09-24 18:08:00 +0000428 return 0;
Trond Myklebust24c56842006-10-17 15:06:22 -0400429 err = xs_send_kvec(sock, NULL, 0, &xdr->tail[0], base, 0);
Chuck Levera246b012005-08-11 16:25:23 -0400430out:
Jason Baronf279cd02014-09-24 18:08:00 +0000431 if (err > 0) {
432 *sent_p += err;
433 err = 0;
434 }
435 return err;
Chuck Levera246b012005-08-11 16:25:23 -0400436}
437
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400438static void xs_nospace_callback(struct rpc_task *task)
439{
440 struct sock_xprt *transport = container_of(task->tk_rqstp->rq_xprt, struct sock_xprt, xprt);
441
442 transport->inet->sk_write_pending--;
443 clear_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags);
444}
445
Chuck Lever9903cd12005-08-11 16:25:26 -0400446/**
Chuck Lever262965f2005-08-11 16:25:56 -0400447 * xs_nospace - place task on wait queue if transmit was incomplete
448 * @task: task to put to sleep
Chuck Lever9903cd12005-08-11 16:25:26 -0400449 *
Chuck Levera246b012005-08-11 16:25:23 -0400450 */
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400451static int xs_nospace(struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -0400452{
Chuck Lever262965f2005-08-11 16:25:56 -0400453 struct rpc_rqst *req = task->tk_rqstp;
454 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500455 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebust06ea0bf2014-02-11 09:15:54 -0500456 struct sock *sk = transport->inet;
Trond Myklebust24ca9a82011-11-22 14:44:28 +0200457 int ret = -EAGAIN;
Chuck Levera246b012005-08-11 16:25:23 -0400458
Chuck Lever46121cf2007-01-31 12:14:08 -0500459 dprintk("RPC: %5u xmit incomplete (%u left of %u)\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400460 task->tk_pid, req->rq_slen - req->rq_bytes_sent,
461 req->rq_slen);
462
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400463 /* Protect against races with write_space */
464 spin_lock_bh(&xprt->transport_lock);
Chuck Lever262965f2005-08-11 16:25:56 -0400465
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400466 /* Don't race with disconnect */
467 if (xprt_connected(xprt)) {
468 if (test_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags)) {
469 /*
470 * Notify TCP that we're limited by the application
471 * window size
472 */
473 set_bit(SOCK_NOSPACE, &transport->sock->flags);
Trond Myklebust06ea0bf2014-02-11 09:15:54 -0500474 sk->sk_write_pending++;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400475 /* ...and wait for more buffer space */
476 xprt_wait_for_buffer_space(task, xs_nospace_callback);
477 }
478 } else {
479 clear_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags);
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400480 ret = -ENOTCONN;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400481 }
Chuck Lever262965f2005-08-11 16:25:56 -0400482
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400483 spin_unlock_bh(&xprt->transport_lock);
Trond Myklebust06ea0bf2014-02-11 09:15:54 -0500484
485 /* Race breaker in case memory is freed before above code is called */
486 sk->sk_write_space(sk);
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400487 return ret;
Chuck Lever262965f2005-08-11 16:25:56 -0400488}
489
Chuck Lever61677ee2011-05-09 15:22:34 -0400490/*
491 * Construct a stream transport record marker in @buf.
492 */
493static inline void xs_encode_stream_record_marker(struct xdr_buf *buf)
494{
495 u32 reclen = buf->len - sizeof(rpc_fraghdr);
496 rpc_fraghdr *base = buf->head[0].iov_base;
497 *base = cpu_to_be32(RPC_LAST_STREAM_FRAGMENT | reclen);
498}
499
Chuck Lever262965f2005-08-11 16:25:56 -0400500/**
Chuck Lever176e21e2011-05-09 15:22:44 -0400501 * xs_local_send_request - write an RPC request to an AF_LOCAL socket
502 * @task: RPC task that manages the state of an RPC request
503 *
504 * Return values:
505 * 0: The request has been sent
506 * EAGAIN: The socket was blocked, please call again later to
507 * complete the request
508 * ENOTCONN: Caller needs to invoke connect logic then call again
509 * other: Some other error occured, the request was not sent
510 */
511static int xs_local_send_request(struct rpc_task *task)
512{
513 struct rpc_rqst *req = task->tk_rqstp;
514 struct rpc_xprt *xprt = req->rq_xprt;
515 struct sock_xprt *transport =
516 container_of(xprt, struct sock_xprt, xprt);
517 struct xdr_buf *xdr = &req->rq_snd_buf;
518 int status;
Jason Baronf279cd02014-09-24 18:08:00 +0000519 int sent = 0;
Chuck Lever176e21e2011-05-09 15:22:44 -0400520
521 xs_encode_stream_record_marker(&req->rq_snd_buf);
522
523 xs_pktdump("packet data:",
524 req->rq_svec->iov_base, req->rq_svec->iov_len);
525
Jason Baronf279cd02014-09-24 18:08:00 +0000526 status = xs_sendpages(transport->sock, NULL, 0, xdr, req->rq_bytes_sent,
527 true, &sent);
Chuck Lever176e21e2011-05-09 15:22:44 -0400528 dprintk("RPC: %s(%u) = %d\n",
529 __func__, xdr->len - req->rq_bytes_sent, status);
NeilBrown743c69e2015-07-27 10:55:35 +1000530
531 if (status == -EAGAIN && sock_writeable(transport->inet))
532 status = -ENOBUFS;
533
Jason Baronf279cd02014-09-24 18:08:00 +0000534 if (likely(sent > 0) || status == 0) {
535 req->rq_bytes_sent += sent;
536 req->rq_xmit_bytes_sent += sent;
Chuck Lever176e21e2011-05-09 15:22:44 -0400537 if (likely(req->rq_bytes_sent >= req->rq_slen)) {
538 req->rq_bytes_sent = 0;
539 return 0;
540 }
541 status = -EAGAIN;
542 }
543
544 switch (status) {
Trond Myklebust3601c4a2014-06-30 13:42:19 -0400545 case -ENOBUFS:
Trond Myklebustb5872f02015-07-03 09:32:23 -0400546 break;
Chuck Lever176e21e2011-05-09 15:22:44 -0400547 case -EAGAIN:
548 status = xs_nospace(task);
549 break;
550 default:
551 dprintk("RPC: sendmsg returned unrecognized error %d\n",
552 -status);
553 case -EPIPE:
554 xs_close(xprt);
555 status = -ENOTCONN;
556 }
557
558 return status;
559}
560
561/**
Chuck Lever262965f2005-08-11 16:25:56 -0400562 * xs_udp_send_request - write an RPC request to a UDP socket
563 * @task: address of RPC task that manages the state of an RPC request
564 *
565 * Return values:
566 * 0: The request has been sent
567 * EAGAIN: The socket was blocked, please call again later to
568 * complete the request
569 * ENOTCONN: Caller needs to invoke connect logic then call again
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300570 * other: Some other error occurred, the request was not sent
Chuck Lever262965f2005-08-11 16:25:56 -0400571 */
572static int xs_udp_send_request(struct rpc_task *task)
573{
574 struct rpc_rqst *req = task->tk_rqstp;
575 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500576 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262965f2005-08-11 16:25:56 -0400577 struct xdr_buf *xdr = &req->rq_snd_buf;
Jason Baronf279cd02014-09-24 18:08:00 +0000578 int sent = 0;
Chuck Lever262965f2005-08-11 16:25:56 -0400579 int status;
Chuck Levera246b012005-08-11 16:25:23 -0400580
Chuck Lever9903cd12005-08-11 16:25:26 -0400581 xs_pktdump("packet data:",
Chuck Levera246b012005-08-11 16:25:23 -0400582 req->rq_svec->iov_base,
583 req->rq_svec->iov_len);
584
Trond Myklebust01d37c42009-03-11 14:09:39 -0400585 if (!xprt_bound(xprt))
586 return -ENOTCONN;
Jason Baronf279cd02014-09-24 18:08:00 +0000587 status = xs_sendpages(transport->sock, xs_addr(xprt), xprt->addrlen,
588 xdr, req->rq_bytes_sent, true, &sent);
Chuck Levera246b012005-08-11 16:25:23 -0400589
Chuck Lever46121cf2007-01-31 12:14:08 -0500590 dprintk("RPC: xs_udp_send_request(%u) = %d\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400591 xdr->len - req->rq_bytes_sent, status);
Chuck Levera246b012005-08-11 16:25:23 -0400592
Jason Baron3dedbb52014-09-24 18:08:04 +0000593 /* firewall is blocking us, don't return -EAGAIN or we end up looping */
594 if (status == -EPERM)
595 goto process_status;
596
NeilBrown743c69e2015-07-27 10:55:35 +1000597 if (status == -EAGAIN && sock_writeable(transport->inet))
598 status = -ENOBUFS;
599
Jason Baronf279cd02014-09-24 18:08:00 +0000600 if (sent > 0 || status == 0) {
601 req->rq_xmit_bytes_sent += sent;
602 if (sent >= req->rq_slen)
Trond Myklebust21997002007-10-01 11:43:37 -0400603 return 0;
604 /* Still some bytes left; set up for a retry later. */
Chuck Lever262965f2005-08-11 16:25:56 -0400605 status = -EAGAIN;
Trond Myklebust21997002007-10-01 11:43:37 -0400606 }
Chuck Levera246b012005-08-11 16:25:23 -0400607
Jason Baron3dedbb52014-09-24 18:08:04 +0000608process_status:
Chuck Lever262965f2005-08-11 16:25:56 -0400609 switch (status) {
Trond Myklebustfba91af2009-03-11 14:06:41 -0400610 case -ENOTSOCK:
611 status = -ENOTCONN;
612 /* Should we call xs_close() here? */
613 break;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400614 case -EAGAIN:
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400615 status = xs_nospace(task);
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400616 break;
Trond Myklebustc8485e42009-03-11 14:37:59 -0400617 default:
618 dprintk("RPC: sendmsg returned unrecognized error %d\n",
619 -status);
Chuck Lever262965f2005-08-11 16:25:56 -0400620 case -ENETUNREACH:
Trond Myklebust3601c4a2014-06-30 13:42:19 -0400621 case -ENOBUFS:
Chuck Lever262965f2005-08-11 16:25:56 -0400622 case -EPIPE:
Chuck Levera246b012005-08-11 16:25:23 -0400623 case -ECONNREFUSED:
Jason Baron3dedbb52014-09-24 18:08:04 +0000624 case -EPERM:
Chuck Levera246b012005-08-11 16:25:23 -0400625 /* When the server has died, an ICMP port unreachable message
Chuck Lever9903cd12005-08-11 16:25:26 -0400626 * prompts ECONNREFUSED. */
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400627 clear_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags);
Chuck Levera246b012005-08-11 16:25:23 -0400628 }
Bian Naimeng5fe46e92010-03-08 14:49:01 +0800629
Chuck Lever262965f2005-08-11 16:25:56 -0400630 return status;
Chuck Levera246b012005-08-11 16:25:23 -0400631}
632
Trond Myklebuste06799f2007-11-05 15:44:12 -0500633/**
Chuck Lever262965f2005-08-11 16:25:56 -0400634 * xs_tcp_send_request - write an RPC request to a TCP socket
Chuck Lever9903cd12005-08-11 16:25:26 -0400635 * @task: address of RPC task that manages the state of an RPC request
636 *
637 * Return values:
Chuck Lever262965f2005-08-11 16:25:56 -0400638 * 0: The request has been sent
639 * EAGAIN: The socket was blocked, please call again later to
640 * complete the request
641 * ENOTCONN: Caller needs to invoke connect logic then call again
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300642 * other: Some other error occurred, the request was not sent
Chuck Lever9903cd12005-08-11 16:25:26 -0400643 *
644 * XXX: In the case of soft timeouts, should we eventually give up
Chuck Lever262965f2005-08-11 16:25:56 -0400645 * if sendmsg is not able to make progress?
Chuck Lever9903cd12005-08-11 16:25:26 -0400646 */
Chuck Lever262965f2005-08-11 16:25:56 -0400647static int xs_tcp_send_request(struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -0400648{
649 struct rpc_rqst *req = task->tk_rqstp;
650 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500651 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262965f2005-08-11 16:25:56 -0400652 struct xdr_buf *xdr = &req->rq_snd_buf;
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500653 bool zerocopy = true;
Chuck Leverb595bb12007-08-06 11:56:42 -0400654 int status;
Jason Baronf279cd02014-09-24 18:08:00 +0000655 int sent;
Chuck Levera246b012005-08-11 16:25:23 -0400656
Chuck Lever61677ee2011-05-09 15:22:34 -0400657 xs_encode_stream_record_marker(&req->rq_snd_buf);
Chuck Levera246b012005-08-11 16:25:23 -0400658
Chuck Lever262965f2005-08-11 16:25:56 -0400659 xs_pktdump("packet data:",
660 req->rq_svec->iov_base,
661 req->rq_svec->iov_len);
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500662 /* Don't use zero copy if this is a resend. If the RPC call
663 * completes while the socket holds a reference to the pages,
664 * then we may end up resending corrupted data.
665 */
666 if (task->tk_flags & RPC_TASK_SENT)
667 zerocopy = false;
Chuck Levera246b012005-08-11 16:25:23 -0400668
669 /* Continue transmitting the packet/record. We must be careful
670 * to cope with writespace callbacks arriving _after_ we have
Chuck Lever262965f2005-08-11 16:25:56 -0400671 * called sendmsg(). */
Chuck Levera246b012005-08-11 16:25:23 -0400672 while (1) {
Jason Baronf279cd02014-09-24 18:08:00 +0000673 sent = 0;
674 status = xs_sendpages(transport->sock, NULL, 0, xdr,
675 req->rq_bytes_sent, zerocopy, &sent);
Chuck Levera246b012005-08-11 16:25:23 -0400676
Chuck Lever46121cf2007-01-31 12:14:08 -0500677 dprintk("RPC: xs_tcp_send_request(%u) = %d\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400678 xdr->len - req->rq_bytes_sent, status);
679
Chuck Lever262965f2005-08-11 16:25:56 -0400680 /* If we've sent the entire packet, immediately
681 * reset the count of bytes sent. */
Jason Baronf279cd02014-09-24 18:08:00 +0000682 req->rq_bytes_sent += sent;
683 req->rq_xmit_bytes_sent += sent;
Chuck Lever262965f2005-08-11 16:25:56 -0400684 if (likely(req->rq_bytes_sent >= req->rq_slen)) {
685 req->rq_bytes_sent = 0;
686 return 0;
Chuck Levera246b012005-08-11 16:25:23 -0400687 }
688
Trond Myklebustf580dd02015-07-11 17:48:52 +0200689 if (status < 0)
690 break;
691 if (sent == 0) {
692 status = -EAGAIN;
693 break;
694 }
Chuck Levera246b012005-08-11 16:25:23 -0400695 }
NeilBrown743c69e2015-07-27 10:55:35 +1000696 if (status == -EAGAIN && sk_stream_is_writeable(transport->inet))
697 status = -ENOBUFS;
Chuck Levera246b012005-08-11 16:25:23 -0400698
Chuck Lever262965f2005-08-11 16:25:56 -0400699 switch (status) {
Trond Myklebustfba91af2009-03-11 14:06:41 -0400700 case -ENOTSOCK:
701 status = -ENOTCONN;
702 /* Should we call xs_close() here? */
703 break;
Chuck Lever262965f2005-08-11 16:25:56 -0400704 case -EAGAIN:
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400705 status = xs_nospace(task);
Chuck Lever262965f2005-08-11 16:25:56 -0400706 break;
707 default:
Chuck Lever46121cf2007-01-31 12:14:08 -0500708 dprintk("RPC: sendmsg returned unrecognized error %d\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400709 -status);
Chuck Lever262965f2005-08-11 16:25:56 -0400710 case -ECONNRESET:
Chuck Lever262965f2005-08-11 16:25:56 -0400711 case -ECONNREFUSED:
712 case -ENOTCONN:
Trond Myklebust3913c782015-02-08 21:44:04 -0500713 case -EADDRINUSE:
Trond Myklebustb5872f02015-07-03 09:32:23 -0400714 case -ENOBUFS:
Trond Myklebustb9d2bb22012-10-23 11:40:02 -0400715 case -EPIPE:
Chuck Lever262965f2005-08-11 16:25:56 -0400716 clear_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags);
Chuck Levera246b012005-08-11 16:25:23 -0400717 }
Bian Naimeng5fe46e92010-03-08 14:49:01 +0800718
Chuck Levera246b012005-08-11 16:25:23 -0400719 return status;
720}
721
Chuck Lever9903cd12005-08-11 16:25:26 -0400722/**
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400723 * xs_tcp_release_xprt - clean up after a tcp transmission
724 * @xprt: transport
725 * @task: rpc task
726 *
727 * This cleans up if an error causes us to abort the transmission of a request.
728 * In this case, the socket may need to be reset in order to avoid confusing
729 * the server.
730 */
731static void xs_tcp_release_xprt(struct rpc_xprt *xprt, struct rpc_task *task)
732{
733 struct rpc_rqst *req;
734
735 if (task != xprt->snd_task)
736 return;
737 if (task == NULL)
738 goto out_release;
739 req = task->tk_rqstp;
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400740 if (req == NULL)
741 goto out_release;
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400742 if (req->rq_bytes_sent == 0)
743 goto out_release;
744 if (req->rq_bytes_sent == req->rq_snd_buf.len)
745 goto out_release;
Trond Myklebusta4f08352013-01-08 09:10:21 -0500746 set_bit(XPRT_CLOSE_WAIT, &xprt->state);
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400747out_release:
748 xprt_release_xprt(xprt, task);
749}
750
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400751static void xs_save_old_callbacks(struct sock_xprt *transport, struct sock *sk)
752{
753 transport->old_data_ready = sk->sk_data_ready;
754 transport->old_state_change = sk->sk_state_change;
755 transport->old_write_space = sk->sk_write_space;
Trond Myklebust21180712013-12-31 13:22:59 -0500756 transport->old_error_report = sk->sk_error_report;
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400757}
758
759static void xs_restore_old_callbacks(struct sock_xprt *transport, struct sock *sk)
760{
761 sk->sk_data_ready = transport->old_data_ready;
762 sk->sk_state_change = transport->old_state_change;
763 sk->sk_write_space = transport->old_write_space;
Trond Myklebust21180712013-12-31 13:22:59 -0500764 sk->sk_error_report = transport->old_error_report;
765}
766
Trond Myklebustb70ae912015-02-09 09:41:32 -0500767static void xs_sock_reset_connection_flags(struct rpc_xprt *xprt)
768{
769 smp_mb__before_atomic();
770 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
771 clear_bit(XPRT_CLOSING, &xprt->state);
772 smp_mb__after_atomic();
773}
774
775static void xs_sock_mark_closed(struct rpc_xprt *xprt)
776{
777 xs_sock_reset_connection_flags(xprt);
778 /* Mark transport as closed and wake up all pending tasks */
779 xprt_disconnect_done(xprt);
Trond Myklebust4876cc72015-06-19 16:17:57 -0400780 xprt_force_disconnect(xprt);
Trond Myklebustb70ae912015-02-09 09:41:32 -0500781}
782
Trond Myklebust21180712013-12-31 13:22:59 -0500783/**
784 * xs_error_report - callback to handle TCP socket state errors
785 * @sk: socket
786 *
787 * Note: we don't call sock_error() since there may be a rpc_task
788 * using the socket, and so we don't want to clear sk->sk_err.
789 */
790static void xs_error_report(struct sock *sk)
791{
792 struct rpc_xprt *xprt;
793 int err;
794
795 read_lock_bh(&sk->sk_callback_lock);
796 if (!(xprt = xprt_from_sock(sk)))
797 goto out;
798
799 err = -sk->sk_err;
800 if (err == 0)
801 goto out;
Trond Myklebustb70ae912015-02-09 09:41:32 -0500802 /* Is this a reset event? */
803 if (sk->sk_state == TCP_CLOSE)
804 xs_sock_mark_closed(xprt);
Trond Myklebust21180712013-12-31 13:22:59 -0500805 dprintk("RPC: xs_error_report client %p, error=%d...\n",
806 xprt, -err);
Trond Myklebuste8353c762013-12-31 13:39:22 -0500807 trace_rpc_socket_error(xprt, sk->sk_socket, err);
Trond Myklebust21180712013-12-31 13:22:59 -0500808 xprt_wake_pending_tasks(xprt, err);
809 out:
810 read_unlock_bh(&sk->sk_callback_lock);
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400811}
812
Chuck Leverfe315e72009-03-11 14:10:21 -0400813static void xs_reset_transport(struct sock_xprt *transport)
Chuck Levera246b012005-08-11 16:25:23 -0400814{
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500815 struct socket *sock = transport->sock;
816 struct sock *sk = transport->inet;
Trond Myklebust6cc7e902015-02-08 18:35:25 -0500817 struct rpc_xprt *xprt = &transport->xprt;
Chuck Levera246b012005-08-11 16:25:23 -0400818
Chuck Leverfe315e72009-03-11 14:10:21 -0400819 if (sk == NULL)
820 return;
Chuck Lever9903cd12005-08-11 16:25:26 -0400821
Jeff Layton264d1df2015-06-03 16:14:27 -0400822 if (atomic_read(&transport->xprt.swapper))
823 sk_clear_memalloc(sk);
824
Trond Myklebust09939202015-08-29 19:11:21 -0700825 kernel_sock_shutdown(sock, SHUT_RDWR);
826
Chuck Levera246b012005-08-11 16:25:23 -0400827 write_lock_bh(&sk->sk_callback_lock);
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500828 transport->inet = NULL;
829 transport->sock = NULL;
Chuck Levera246b012005-08-11 16:25:23 -0400830
Chuck Lever9903cd12005-08-11 16:25:26 -0400831 sk->sk_user_data = NULL;
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400832
833 xs_restore_old_callbacks(transport, sk);
Trond Myklebust0c787892015-08-29 13:36:30 -0700834 xprt_clear_connected(xprt);
Chuck Levera246b012005-08-11 16:25:23 -0400835 write_unlock_bh(&sk->sk_callback_lock);
Trond Myklebust6cc7e902015-02-08 18:35:25 -0500836 xs_sock_reset_connection_flags(xprt);
Chuck Levera246b012005-08-11 16:25:23 -0400837
Trond Myklebust6cc7e902015-02-08 18:35:25 -0500838 trace_rpc_socket_close(xprt, sock);
Chuck Levera246b012005-08-11 16:25:23 -0400839 sock_release(sock);
Chuck Leverfe315e72009-03-11 14:10:21 -0400840}
841
842/**
843 * xs_close - close a socket
844 * @xprt: transport
845 *
846 * This is used when all requests are complete; ie, no DRC state remains
847 * on the server we want to save.
Trond Myklebustf75e6742009-04-21 17:18:20 -0400848 *
849 * The caller _must_ be holding XPRT_LOCKED in order to avoid issues with
850 * xs_reset_transport() zeroing the socket from underneath a writer.
Chuck Leverfe315e72009-03-11 14:10:21 -0400851 */
852static void xs_close(struct rpc_xprt *xprt)
853{
854 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
855
856 dprintk("RPC: xs_close xprt %p\n", xprt);
857
858 xs_reset_transport(transport);
Neil Brown61d0a8e2009-09-23 14:36:37 -0400859 xprt->reestablish_timeout = 0;
Chuck Leverfe315e72009-03-11 14:10:21 -0400860
Trond Myklebust62da3b22007-11-06 18:44:20 -0500861 xprt_disconnect_done(xprt);
Chuck Levera246b012005-08-11 16:25:23 -0400862}
863
Chuck Lever4a068252015-05-11 14:02:25 -0400864static void xs_inject_disconnect(struct rpc_xprt *xprt)
865{
866 dprintk("RPC: injecting transport disconnect on xprt=%p\n",
867 xprt);
868 xprt_disconnect_done(xprt);
869}
870
Kinglong Mee315f3812014-03-24 11:07:22 +0800871static void xs_xprt_free(struct rpc_xprt *xprt)
872{
873 xs_free_peer_addresses(xprt);
874 xprt_free(xprt);
875}
876
Chuck Lever9903cd12005-08-11 16:25:26 -0400877/**
878 * xs_destroy - prepare to shutdown a transport
879 * @xprt: doomed transport
880 *
881 */
882static void xs_destroy(struct rpc_xprt *xprt)
Chuck Levera246b012005-08-11 16:25:23 -0400883{
Chuck Lever46121cf2007-01-31 12:14:08 -0500884 dprintk("RPC: xs_destroy xprt %p\n", xprt);
Chuck Lever9903cd12005-08-11 16:25:26 -0400885
Trond Myklebusta1311d82013-10-31 09:18:49 -0400886 xs_close(xprt);
Kinglong Mee315f3812014-03-24 11:07:22 +0800887 xs_xprt_free(xprt);
Trond Myklebusta1311d82013-10-31 09:18:49 -0400888 module_put(THIS_MODULE);
Chuck Levera246b012005-08-11 16:25:23 -0400889}
890
Chuck Lever176e21e2011-05-09 15:22:44 -0400891static int xs_local_copy_to_xdr(struct xdr_buf *xdr, struct sk_buff *skb)
892{
893 struct xdr_skb_reader desc = {
894 .skb = skb,
895 .offset = sizeof(rpc_fraghdr),
896 .count = skb->len - sizeof(rpc_fraghdr),
897 };
898
899 if (xdr_partial_copy_from_skb(xdr, 0, &desc, xdr_skb_read_bits) < 0)
900 return -1;
901 if (desc.count)
902 return -1;
903 return 0;
904}
905
906/**
907 * xs_local_data_ready - "data ready" callback for AF_LOCAL sockets
908 * @sk: socket with data to read
Chuck Lever176e21e2011-05-09 15:22:44 -0400909 *
910 * Currently this assumes we can read the whole reply in a single gulp.
911 */
David S. Miller676d2362014-04-11 16:15:36 -0400912static void xs_local_data_ready(struct sock *sk)
Chuck Lever176e21e2011-05-09 15:22:44 -0400913{
914 struct rpc_task *task;
915 struct rpc_xprt *xprt;
916 struct rpc_rqst *rovr;
917 struct sk_buff *skb;
918 int err, repsize, copied;
919 u32 _xid;
920 __be32 *xp;
921
922 read_lock_bh(&sk->sk_callback_lock);
923 dprintk("RPC: %s...\n", __func__);
924 xprt = xprt_from_sock(sk);
925 if (xprt == NULL)
926 goto out;
927
928 skb = skb_recv_datagram(sk, 0, 1, &err);
929 if (skb == NULL)
930 goto out;
931
Chuck Lever176e21e2011-05-09 15:22:44 -0400932 repsize = skb->len - sizeof(rpc_fraghdr);
933 if (repsize < 4) {
934 dprintk("RPC: impossible RPC reply size %d\n", repsize);
935 goto dropit;
936 }
937
938 /* Copy the XID from the skb... */
939 xp = skb_header_pointer(skb, sizeof(rpc_fraghdr), sizeof(_xid), &_xid);
940 if (xp == NULL)
941 goto dropit;
942
943 /* Look up and lock the request corresponding to the given XID */
944 spin_lock(&xprt->transport_lock);
945 rovr = xprt_lookup_rqst(xprt, *xp);
946 if (!rovr)
947 goto out_unlock;
948 task = rovr->rq_task;
949
950 copied = rovr->rq_private_buf.buflen;
951 if (copied > repsize)
952 copied = repsize;
953
954 if (xs_local_copy_to_xdr(&rovr->rq_private_buf, skb)) {
955 dprintk("RPC: sk_buff copy failed\n");
956 goto out_unlock;
957 }
958
959 xprt_complete_rqst(task, copied);
960
961 out_unlock:
962 spin_unlock(&xprt->transport_lock);
963 dropit:
964 skb_free_datagram(sk, skb);
965 out:
966 read_unlock_bh(&sk->sk_callback_lock);
967}
968
Chuck Lever9903cd12005-08-11 16:25:26 -0400969/**
970 * xs_udp_data_ready - "data ready" callback for UDP sockets
971 * @sk: socket with data to read
Chuck Lever9903cd12005-08-11 16:25:26 -0400972 *
973 */
David S. Miller676d2362014-04-11 16:15:36 -0400974static void xs_udp_data_ready(struct sock *sk)
Chuck Lever9903cd12005-08-11 16:25:26 -0400975{
976 struct rpc_task *task;
977 struct rpc_xprt *xprt;
Chuck Levera246b012005-08-11 16:25:23 -0400978 struct rpc_rqst *rovr;
Chuck Lever9903cd12005-08-11 16:25:26 -0400979 struct sk_buff *skb;
Chuck Levera246b012005-08-11 16:25:23 -0400980 int err, repsize, copied;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700981 u32 _xid;
982 __be32 *xp;
Chuck Levera246b012005-08-11 16:25:23 -0400983
Eric Dumazetf064af12010-09-22 12:43:39 +0000984 read_lock_bh(&sk->sk_callback_lock);
Chuck Lever46121cf2007-01-31 12:14:08 -0500985 dprintk("RPC: xs_udp_data_ready...\n");
Chuck Lever9903cd12005-08-11 16:25:26 -0400986 if (!(xprt = xprt_from_sock(sk)))
Chuck Levera246b012005-08-11 16:25:23 -0400987 goto out;
Chuck Levera246b012005-08-11 16:25:23 -0400988
989 if ((skb = skb_recv_datagram(sk, 0, 1, &err)) == NULL)
990 goto out;
991
Chuck Levera246b012005-08-11 16:25:23 -0400992 repsize = skb->len - sizeof(struct udphdr);
993 if (repsize < 4) {
Chuck Lever46121cf2007-01-31 12:14:08 -0500994 dprintk("RPC: impossible RPC reply size %d!\n", repsize);
Chuck Levera246b012005-08-11 16:25:23 -0400995 goto dropit;
996 }
997
998 /* Copy the XID from the skb... */
999 xp = skb_header_pointer(skb, sizeof(struct udphdr),
1000 sizeof(_xid), &_xid);
1001 if (xp == NULL)
1002 goto dropit;
1003
1004 /* Look up and lock the request corresponding to the given XID */
Chuck Lever4a0f8c02005-08-11 16:25:32 -04001005 spin_lock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001006 rovr = xprt_lookup_rqst(xprt, *xp);
1007 if (!rovr)
1008 goto out_unlock;
1009 task = rovr->rq_task;
1010
Chuck Levera246b012005-08-11 16:25:23 -04001011 if ((copied = rovr->rq_private_buf.buflen) > repsize)
1012 copied = repsize;
1013
1014 /* Suck it into the iovec, verify checksum if not done by hw. */
Herbert Xu1781f7f2007-12-11 11:30:32 -08001015 if (csum_partial_copy_to_xdr(&rovr->rq_private_buf, skb)) {
1016 UDPX_INC_STATS_BH(sk, UDP_MIB_INERRORS);
Chuck Levera246b012005-08-11 16:25:23 -04001017 goto out_unlock;
Herbert Xu1781f7f2007-12-11 11:30:32 -08001018 }
1019
1020 UDPX_INC_STATS_BH(sk, UDP_MIB_INDATAGRAMS);
Chuck Levera246b012005-08-11 16:25:23 -04001021
Trond Myklebust6a24dfb2013-01-08 09:48:15 -05001022 xprt_adjust_cwnd(xprt, task, copied);
Chuck Lever1570c1e2005-08-25 16:25:52 -07001023 xprt_complete_rqst(task, copied);
Chuck Levera246b012005-08-11 16:25:23 -04001024
1025 out_unlock:
Chuck Lever4a0f8c02005-08-11 16:25:32 -04001026 spin_unlock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001027 dropit:
1028 skb_free_datagram(sk, skb);
1029 out:
Eric Dumazetf064af12010-09-22 12:43:39 +00001030 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001031}
1032
Trond Myklebusta519fc72012-09-12 16:49:15 -04001033/*
1034 * Helper function to force a TCP close if the server is sending
1035 * junk and/or it has put us in CLOSE_WAIT
1036 */
1037static void xs_tcp_force_close(struct rpc_xprt *xprt)
1038{
Trond Myklebusta519fc72012-09-12 16:49:15 -04001039 xprt_force_disconnect(xprt);
1040}
1041
Chuck Leverdd456472006-12-05 16:35:44 -05001042static inline void xs_tcp_read_fraghdr(struct rpc_xprt *xprt, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001043{
Chuck Lever51971132006-12-05 16:35:19 -05001044 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001045 size_t len, used;
1046 char *p;
1047
Chuck Lever51971132006-12-05 16:35:19 -05001048 p = ((char *) &transport->tcp_fraghdr) + transport->tcp_offset;
1049 len = sizeof(transport->tcp_fraghdr) - transport->tcp_offset;
Chuck Lever9d292312006-12-05 16:35:41 -05001050 used = xdr_skb_read_bits(desc, p, len);
Chuck Lever51971132006-12-05 16:35:19 -05001051 transport->tcp_offset += used;
Chuck Levera246b012005-08-11 16:25:23 -04001052 if (used != len)
1053 return;
Chuck Lever808012f2005-08-25 16:25:49 -07001054
Chuck Lever51971132006-12-05 16:35:19 -05001055 transport->tcp_reclen = ntohl(transport->tcp_fraghdr);
1056 if (transport->tcp_reclen & RPC_LAST_STREAM_FRAGMENT)
Chuck Levere136d092006-12-05 16:35:23 -05001057 transport->tcp_flags |= TCP_RCV_LAST_FRAG;
Chuck Levera246b012005-08-11 16:25:23 -04001058 else
Chuck Levere136d092006-12-05 16:35:23 -05001059 transport->tcp_flags &= ~TCP_RCV_LAST_FRAG;
Chuck Lever51971132006-12-05 16:35:19 -05001060 transport->tcp_reclen &= RPC_FRAGMENT_SIZE_MASK;
Chuck Lever808012f2005-08-25 16:25:49 -07001061
Chuck Levere136d092006-12-05 16:35:23 -05001062 transport->tcp_flags &= ~TCP_RCV_COPY_FRAGHDR;
Chuck Lever51971132006-12-05 16:35:19 -05001063 transport->tcp_offset = 0;
Chuck Lever808012f2005-08-25 16:25:49 -07001064
Chuck Levera246b012005-08-11 16:25:23 -04001065 /* Sanity check of the record length */
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001066 if (unlikely(transport->tcp_reclen < 8)) {
Chuck Lever46121cf2007-01-31 12:14:08 -05001067 dprintk("RPC: invalid TCP record fragment length\n");
Trond Myklebusta519fc72012-09-12 16:49:15 -04001068 xs_tcp_force_close(xprt);
Chuck Lever9903cd12005-08-11 16:25:26 -04001069 return;
Chuck Levera246b012005-08-11 16:25:23 -04001070 }
Chuck Lever46121cf2007-01-31 12:14:08 -05001071 dprintk("RPC: reading TCP record fragment of length %d\n",
Chuck Lever51971132006-12-05 16:35:19 -05001072 transport->tcp_reclen);
Chuck Levera246b012005-08-11 16:25:23 -04001073}
1074
Chuck Lever51971132006-12-05 16:35:19 -05001075static void xs_tcp_check_fraghdr(struct sock_xprt *transport)
Chuck Levera246b012005-08-11 16:25:23 -04001076{
Chuck Lever51971132006-12-05 16:35:19 -05001077 if (transport->tcp_offset == transport->tcp_reclen) {
Chuck Levere136d092006-12-05 16:35:23 -05001078 transport->tcp_flags |= TCP_RCV_COPY_FRAGHDR;
Chuck Lever51971132006-12-05 16:35:19 -05001079 transport->tcp_offset = 0;
Chuck Levere136d092006-12-05 16:35:23 -05001080 if (transport->tcp_flags & TCP_RCV_LAST_FRAG) {
1081 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
1082 transport->tcp_flags |= TCP_RCV_COPY_XID;
Chuck Lever51971132006-12-05 16:35:19 -05001083 transport->tcp_copied = 0;
Chuck Levera246b012005-08-11 16:25:23 -04001084 }
1085 }
1086}
1087
Chuck Leverdd456472006-12-05 16:35:44 -05001088static inline void xs_tcp_read_xid(struct sock_xprt *transport, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001089{
1090 size_t len, used;
1091 char *p;
1092
Chuck Lever51971132006-12-05 16:35:19 -05001093 len = sizeof(transport->tcp_xid) - transport->tcp_offset;
Chuck Lever46121cf2007-01-31 12:14:08 -05001094 dprintk("RPC: reading XID (%Zu bytes)\n", len);
Chuck Lever51971132006-12-05 16:35:19 -05001095 p = ((char *) &transport->tcp_xid) + transport->tcp_offset;
Chuck Lever9d292312006-12-05 16:35:41 -05001096 used = xdr_skb_read_bits(desc, p, len);
Chuck Lever51971132006-12-05 16:35:19 -05001097 transport->tcp_offset += used;
Chuck Levera246b012005-08-11 16:25:23 -04001098 if (used != len)
1099 return;
Chuck Levere136d092006-12-05 16:35:23 -05001100 transport->tcp_flags &= ~TCP_RCV_COPY_XID;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001101 transport->tcp_flags |= TCP_RCV_READ_CALLDIR;
Chuck Lever51971132006-12-05 16:35:19 -05001102 transport->tcp_copied = 4;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001103 dprintk("RPC: reading %s XID %08x\n",
1104 (transport->tcp_flags & TCP_RPC_REPLY) ? "reply for"
1105 : "request with",
Chuck Lever51971132006-12-05 16:35:19 -05001106 ntohl(transport->tcp_xid));
1107 xs_tcp_check_fraghdr(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001108}
1109
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001110static inline void xs_tcp_read_calldir(struct sock_xprt *transport,
1111 struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001112{
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001113 size_t len, used;
1114 u32 offset;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001115 char *p;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001116
1117 /*
1118 * We want transport->tcp_offset to be 8 at the end of this routine
1119 * (4 bytes for the xid and 4 bytes for the call/reply flag).
1120 * When this function is called for the first time,
1121 * transport->tcp_offset is 4 (after having already read the xid).
1122 */
1123 offset = transport->tcp_offset - sizeof(transport->tcp_xid);
Trond Myklebustb76ce562010-06-16 13:57:32 -04001124 len = sizeof(transport->tcp_calldir) - offset;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001125 dprintk("RPC: reading CALL/REPLY flag (%Zu bytes)\n", len);
Trond Myklebustb76ce562010-06-16 13:57:32 -04001126 p = ((char *) &transport->tcp_calldir) + offset;
1127 used = xdr_skb_read_bits(desc, p, len);
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001128 transport->tcp_offset += used;
1129 if (used != len)
1130 return;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001131 transport->tcp_flags &= ~TCP_RCV_READ_CALLDIR;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001132 /*
1133 * We don't yet have the XDR buffer, so we will write the calldir
1134 * out after we get the buffer from the 'struct rpc_rqst'
1135 */
Trond Myklebustb76ce562010-06-16 13:57:32 -04001136 switch (ntohl(transport->tcp_calldir)) {
1137 case RPC_REPLY:
1138 transport->tcp_flags |= TCP_RCV_COPY_CALLDIR;
1139 transport->tcp_flags |= TCP_RCV_COPY_DATA;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001140 transport->tcp_flags |= TCP_RPC_REPLY;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001141 break;
1142 case RPC_CALL:
1143 transport->tcp_flags |= TCP_RCV_COPY_CALLDIR;
1144 transport->tcp_flags |= TCP_RCV_COPY_DATA;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001145 transport->tcp_flags &= ~TCP_RPC_REPLY;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001146 break;
1147 default:
1148 dprintk("RPC: invalid request message type\n");
Trond Myklebusta519fc72012-09-12 16:49:15 -04001149 xs_tcp_force_close(&transport->xprt);
Trond Myklebustb76ce562010-06-16 13:57:32 -04001150 }
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001151 xs_tcp_check_fraghdr(transport);
1152}
1153
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001154static inline void xs_tcp_read_common(struct rpc_xprt *xprt,
1155 struct xdr_skb_reader *desc,
1156 struct rpc_rqst *req)
Chuck Levera246b012005-08-11 16:25:23 -04001157{
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001158 struct sock_xprt *transport =
1159 container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001160 struct xdr_buf *rcvbuf;
1161 size_t len;
1162 ssize_t r;
1163
Chuck Levera246b012005-08-11 16:25:23 -04001164 rcvbuf = &req->rq_private_buf;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001165
1166 if (transport->tcp_flags & TCP_RCV_COPY_CALLDIR) {
1167 /*
1168 * Save the RPC direction in the XDR buffer
1169 */
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001170 memcpy(rcvbuf->head[0].iov_base + transport->tcp_copied,
Trond Myklebustb76ce562010-06-16 13:57:32 -04001171 &transport->tcp_calldir,
1172 sizeof(transport->tcp_calldir));
1173 transport->tcp_copied += sizeof(transport->tcp_calldir);
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001174 transport->tcp_flags &= ~TCP_RCV_COPY_CALLDIR;
Chuck Levera246b012005-08-11 16:25:23 -04001175 }
1176
Chuck Levera246b012005-08-11 16:25:23 -04001177 len = desc->count;
Chuck Lever51971132006-12-05 16:35:19 -05001178 if (len > transport->tcp_reclen - transport->tcp_offset) {
Chuck Leverdd456472006-12-05 16:35:44 -05001179 struct xdr_skb_reader my_desc;
Chuck Levera246b012005-08-11 16:25:23 -04001180
Chuck Lever51971132006-12-05 16:35:19 -05001181 len = transport->tcp_reclen - transport->tcp_offset;
Chuck Levera246b012005-08-11 16:25:23 -04001182 memcpy(&my_desc, desc, sizeof(my_desc));
1183 my_desc.count = len;
Chuck Lever51971132006-12-05 16:35:19 -05001184 r = xdr_partial_copy_from_skb(rcvbuf, transport->tcp_copied,
Chuck Lever9d292312006-12-05 16:35:41 -05001185 &my_desc, xdr_skb_read_bits);
Chuck Levera246b012005-08-11 16:25:23 -04001186 desc->count -= r;
1187 desc->offset += r;
1188 } else
Chuck Lever51971132006-12-05 16:35:19 -05001189 r = xdr_partial_copy_from_skb(rcvbuf, transport->tcp_copied,
Chuck Lever9d292312006-12-05 16:35:41 -05001190 desc, xdr_skb_read_bits);
Chuck Levera246b012005-08-11 16:25:23 -04001191
1192 if (r > 0) {
Chuck Lever51971132006-12-05 16:35:19 -05001193 transport->tcp_copied += r;
1194 transport->tcp_offset += r;
Chuck Levera246b012005-08-11 16:25:23 -04001195 }
1196 if (r != len) {
1197 /* Error when copying to the receive buffer,
1198 * usually because we weren't able to allocate
1199 * additional buffer pages. All we can do now
Chuck Levere136d092006-12-05 16:35:23 -05001200 * is turn off TCP_RCV_COPY_DATA, so the request
Chuck Levera246b012005-08-11 16:25:23 -04001201 * will not receive any additional updates,
1202 * and time out.
1203 * Any remaining data from this record will
1204 * be discarded.
1205 */
Chuck Levere136d092006-12-05 16:35:23 -05001206 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Lever46121cf2007-01-31 12:14:08 -05001207 dprintk("RPC: XID %08x truncated request\n",
Chuck Lever51971132006-12-05 16:35:19 -05001208 ntohl(transport->tcp_xid));
Chuck Lever46121cf2007-01-31 12:14:08 -05001209 dprintk("RPC: xprt = %p, tcp_copied = %lu, "
1210 "tcp_offset = %u, tcp_reclen = %u\n",
1211 xprt, transport->tcp_copied,
1212 transport->tcp_offset, transport->tcp_reclen);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001213 return;
Chuck Levera246b012005-08-11 16:25:23 -04001214 }
1215
Chuck Lever46121cf2007-01-31 12:14:08 -05001216 dprintk("RPC: XID %08x read %Zd bytes\n",
Chuck Lever51971132006-12-05 16:35:19 -05001217 ntohl(transport->tcp_xid), r);
Chuck Lever46121cf2007-01-31 12:14:08 -05001218 dprintk("RPC: xprt = %p, tcp_copied = %lu, tcp_offset = %u, "
1219 "tcp_reclen = %u\n", xprt, transport->tcp_copied,
1220 transport->tcp_offset, transport->tcp_reclen);
Chuck Levera246b012005-08-11 16:25:23 -04001221
Chuck Lever51971132006-12-05 16:35:19 -05001222 if (transport->tcp_copied == req->rq_private_buf.buflen)
Chuck Levere136d092006-12-05 16:35:23 -05001223 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Lever51971132006-12-05 16:35:19 -05001224 else if (transport->tcp_offset == transport->tcp_reclen) {
Chuck Levere136d092006-12-05 16:35:23 -05001225 if (transport->tcp_flags & TCP_RCV_LAST_FRAG)
1226 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Levera246b012005-08-11 16:25:23 -04001227 }
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001228}
1229
1230/*
1231 * Finds the request corresponding to the RPC xid and invokes the common
1232 * tcp read code to read the data.
1233 */
1234static inline int xs_tcp_read_reply(struct rpc_xprt *xprt,
1235 struct xdr_skb_reader *desc)
1236{
1237 struct sock_xprt *transport =
1238 container_of(xprt, struct sock_xprt, xprt);
1239 struct rpc_rqst *req;
1240
1241 dprintk("RPC: read reply XID %08x\n", ntohl(transport->tcp_xid));
1242
1243 /* Find and lock the request corresponding to this xid */
1244 spin_lock(&xprt->transport_lock);
1245 req = xprt_lookup_rqst(xprt, transport->tcp_xid);
1246 if (!req) {
1247 dprintk("RPC: XID %08x request not found!\n",
1248 ntohl(transport->tcp_xid));
1249 spin_unlock(&xprt->transport_lock);
1250 return -1;
1251 }
1252
1253 xs_tcp_read_common(xprt, desc, req);
1254
Chuck Levere136d092006-12-05 16:35:23 -05001255 if (!(transport->tcp_flags & TCP_RCV_COPY_DATA))
Chuck Lever51971132006-12-05 16:35:19 -05001256 xprt_complete_rqst(req->rq_task, transport->tcp_copied);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001257
Chuck Lever4a0f8c02005-08-11 16:25:32 -04001258 spin_unlock(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001259 return 0;
1260}
1261
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001262#if defined(CONFIG_SUNRPC_BACKCHANNEL)
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001263/*
1264 * Obtains an rpc_rqst previously allocated and invokes the common
1265 * tcp read code to read the data. The result is placed in the callback
1266 * queue.
1267 * If we're unable to obtain the rpc_rqst we schedule the closing of the
1268 * connection and return -1.
1269 */
Trond Myklebust2ea24492014-02-10 11:18:39 -05001270static int xs_tcp_read_callback(struct rpc_xprt *xprt,
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001271 struct xdr_skb_reader *desc)
1272{
1273 struct sock_xprt *transport =
1274 container_of(xprt, struct sock_xprt, xprt);
1275 struct rpc_rqst *req;
1276
Trond Myklebust2ea24492014-02-10 11:18:39 -05001277 /* Look up and lock the request corresponding to the given XID */
1278 spin_lock(&xprt->transport_lock);
1279 req = xprt_lookup_bc_request(xprt, transport->tcp_xid);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001280 if (req == NULL) {
Trond Myklebust2ea24492014-02-10 11:18:39 -05001281 spin_unlock(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001282 printk(KERN_WARNING "Callback slot table overflowed\n");
1283 xprt_force_disconnect(xprt);
1284 return -1;
1285 }
1286
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001287 dprintk("RPC: read callback XID %08x\n", ntohl(req->rq_xid));
1288 xs_tcp_read_common(xprt, desc, req);
1289
Trond Myklebust2ea24492014-02-10 11:18:39 -05001290 if (!(transport->tcp_flags & TCP_RCV_COPY_DATA))
1291 xprt_complete_bc_request(req, transport->tcp_copied);
1292 spin_unlock(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001293
1294 return 0;
1295}
1296
1297static inline int _xs_tcp_read_data(struct rpc_xprt *xprt,
1298 struct xdr_skb_reader *desc)
1299{
1300 struct sock_xprt *transport =
1301 container_of(xprt, struct sock_xprt, xprt);
1302
1303 return (transport->tcp_flags & TCP_RPC_REPLY) ?
1304 xs_tcp_read_reply(xprt, desc) :
1305 xs_tcp_read_callback(xprt, desc);
1306}
1307#else
1308static inline int _xs_tcp_read_data(struct rpc_xprt *xprt,
1309 struct xdr_skb_reader *desc)
1310{
1311 return xs_tcp_read_reply(xprt, desc);
1312}
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001313#endif /* CONFIG_SUNRPC_BACKCHANNEL */
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001314
1315/*
1316 * Read data off the transport. This can be either an RPC_CALL or an
1317 * RPC_REPLY. Relay the processing to helper functions.
1318 */
1319static void xs_tcp_read_data(struct rpc_xprt *xprt,
1320 struct xdr_skb_reader *desc)
1321{
1322 struct sock_xprt *transport =
1323 container_of(xprt, struct sock_xprt, xprt);
1324
1325 if (_xs_tcp_read_data(xprt, desc) == 0)
1326 xs_tcp_check_fraghdr(transport);
1327 else {
1328 /*
1329 * The transport_lock protects the request handling.
1330 * There's no need to hold it to update the tcp_flags.
1331 */
1332 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
1333 }
Chuck Levera246b012005-08-11 16:25:23 -04001334}
1335
Chuck Leverdd456472006-12-05 16:35:44 -05001336static inline void xs_tcp_read_discard(struct sock_xprt *transport, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001337{
1338 size_t len;
1339
Chuck Lever51971132006-12-05 16:35:19 -05001340 len = transport->tcp_reclen - transport->tcp_offset;
Chuck Levera246b012005-08-11 16:25:23 -04001341 if (len > desc->count)
1342 len = desc->count;
1343 desc->count -= len;
1344 desc->offset += len;
Chuck Lever51971132006-12-05 16:35:19 -05001345 transport->tcp_offset += len;
Chuck Lever46121cf2007-01-31 12:14:08 -05001346 dprintk("RPC: discarded %Zu bytes\n", len);
Chuck Lever51971132006-12-05 16:35:19 -05001347 xs_tcp_check_fraghdr(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001348}
1349
Chuck Lever9903cd12005-08-11 16:25:26 -04001350static int xs_tcp_data_recv(read_descriptor_t *rd_desc, struct sk_buff *skb, unsigned int offset, size_t len)
Chuck Levera246b012005-08-11 16:25:23 -04001351{
1352 struct rpc_xprt *xprt = rd_desc->arg.data;
Chuck Lever51971132006-12-05 16:35:19 -05001353 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Leverdd456472006-12-05 16:35:44 -05001354 struct xdr_skb_reader desc = {
Chuck Levera246b012005-08-11 16:25:23 -04001355 .skb = skb,
1356 .offset = offset,
1357 .count = len,
Chuck Lever9903cd12005-08-11 16:25:26 -04001358 };
Chuck Levera246b012005-08-11 16:25:23 -04001359
Chuck Lever46121cf2007-01-31 12:14:08 -05001360 dprintk("RPC: xs_tcp_data_recv started\n");
Chuck Levera246b012005-08-11 16:25:23 -04001361 do {
Jeff Layton1a867a02014-10-28 14:24:14 -04001362 trace_xs_tcp_data_recv(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001363 /* Read in a new fragment marker if necessary */
1364 /* Can we ever really expect to get completely empty fragments? */
Chuck Levere136d092006-12-05 16:35:23 -05001365 if (transport->tcp_flags & TCP_RCV_COPY_FRAGHDR) {
Chuck Lever9903cd12005-08-11 16:25:26 -04001366 xs_tcp_read_fraghdr(xprt, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001367 continue;
1368 }
1369 /* Read in the xid if necessary */
Chuck Levere136d092006-12-05 16:35:23 -05001370 if (transport->tcp_flags & TCP_RCV_COPY_XID) {
Chuck Lever51971132006-12-05 16:35:19 -05001371 xs_tcp_read_xid(transport, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001372 continue;
1373 }
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001374 /* Read in the call/reply flag */
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001375 if (transport->tcp_flags & TCP_RCV_READ_CALLDIR) {
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001376 xs_tcp_read_calldir(transport, &desc);
1377 continue;
1378 }
Chuck Levera246b012005-08-11 16:25:23 -04001379 /* Read in the request data */
Chuck Levere136d092006-12-05 16:35:23 -05001380 if (transport->tcp_flags & TCP_RCV_COPY_DATA) {
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001381 xs_tcp_read_data(xprt, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001382 continue;
1383 }
1384 /* Skip over any trailing bytes on short reads */
Chuck Lever51971132006-12-05 16:35:19 -05001385 xs_tcp_read_discard(transport, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001386 } while (desc.count);
Jeff Layton1a867a02014-10-28 14:24:14 -04001387 trace_xs_tcp_data_recv(transport);
Chuck Lever46121cf2007-01-31 12:14:08 -05001388 dprintk("RPC: xs_tcp_data_recv done\n");
Chuck Levera246b012005-08-11 16:25:23 -04001389 return len - desc.count;
1390}
1391
Chuck Lever9903cd12005-08-11 16:25:26 -04001392/**
1393 * xs_tcp_data_ready - "data ready" callback for TCP sockets
1394 * @sk: socket with data to read
Chuck Lever9903cd12005-08-11 16:25:26 -04001395 *
1396 */
David S. Miller676d2362014-04-11 16:15:36 -04001397static void xs_tcp_data_ready(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -04001398{
1399 struct rpc_xprt *xprt;
1400 read_descriptor_t rd_desc;
Trond Myklebustff2d7db2008-02-25 21:40:51 -08001401 int read;
Jeff Layton3705ad62014-10-28 14:24:13 -04001402 unsigned long total = 0;
Chuck Levera246b012005-08-11 16:25:23 -04001403
Chuck Lever46121cf2007-01-31 12:14:08 -05001404 dprintk("RPC: xs_tcp_data_ready...\n");
1405
Eric Dumazetf064af12010-09-22 12:43:39 +00001406 read_lock_bh(&sk->sk_callback_lock);
Jeff Layton3705ad62014-10-28 14:24:13 -04001407 if (!(xprt = xprt_from_sock(sk))) {
1408 read = 0;
Chuck Levera246b012005-08-11 16:25:23 -04001409 goto out;
Jeff Layton3705ad62014-10-28 14:24:13 -04001410 }
Neil Brown61d0a8e2009-09-23 14:36:37 -04001411 /* Any data means we had a useful conversation, so
1412 * the we don't need to delay the next reconnect
1413 */
1414 if (xprt->reestablish_timeout)
1415 xprt->reestablish_timeout = 0;
1416
Chuck Lever9903cd12005-08-11 16:25:26 -04001417 /* We use rd_desc to pass struct xprt to xs_tcp_data_recv */
Chuck Levera246b012005-08-11 16:25:23 -04001418 rd_desc.arg.data = xprt;
Trond Myklebustff2d7db2008-02-25 21:40:51 -08001419 do {
1420 rd_desc.count = 65536;
1421 read = tcp_read_sock(sk, &rd_desc, xs_tcp_data_recv);
Jeff Layton3705ad62014-10-28 14:24:13 -04001422 if (read > 0)
1423 total += read;
Trond Myklebustff2d7db2008-02-25 21:40:51 -08001424 } while (read > 0);
Chuck Levera246b012005-08-11 16:25:23 -04001425out:
Jeff Layton3705ad62014-10-28 14:24:13 -04001426 trace_xs_tcp_data_ready(xprt, read, total);
Eric Dumazetf064af12010-09-22 12:43:39 +00001427 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001428}
1429
Chuck Lever9903cd12005-08-11 16:25:26 -04001430/**
1431 * xs_tcp_state_change - callback to handle TCP socket state changes
1432 * @sk: socket whose state has changed
1433 *
1434 */
1435static void xs_tcp_state_change(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -04001436{
Chuck Lever9903cd12005-08-11 16:25:26 -04001437 struct rpc_xprt *xprt;
Chuck Levera246b012005-08-11 16:25:23 -04001438
Eric Dumazetf064af12010-09-22 12:43:39 +00001439 read_lock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001440 if (!(xprt = xprt_from_sock(sk)))
1441 goto out;
Chuck Lever46121cf2007-01-31 12:14:08 -05001442 dprintk("RPC: xs_tcp_state_change client %p...\n", xprt);
Andy Chittenden669502f2010-08-10 10:19:53 -04001443 dprintk("RPC: state %x conn %d dead %d zapped %d sk_shutdown %d\n",
Chuck Lever46121cf2007-01-31 12:14:08 -05001444 sk->sk_state, xprt_connected(xprt),
1445 sock_flag(sk, SOCK_DEAD),
Andy Chittenden669502f2010-08-10 10:19:53 -04001446 sock_flag(sk, SOCK_ZAPPED),
1447 sk->sk_shutdown);
Chuck Levera246b012005-08-11 16:25:23 -04001448
Trond Myklebust40b5ea02013-09-04 12:16:23 -04001449 trace_rpc_socket_state_change(xprt, sk->sk_socket);
Chuck Levera246b012005-08-11 16:25:23 -04001450 switch (sk->sk_state) {
1451 case TCP_ESTABLISHED:
Eric Dumazetf064af12010-09-22 12:43:39 +00001452 spin_lock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001453 if (!xprt_test_and_set_connected(xprt)) {
Chuck Lever51971132006-12-05 16:35:19 -05001454 struct sock_xprt *transport = container_of(xprt,
1455 struct sock_xprt, xprt);
1456
Chuck Levera246b012005-08-11 16:25:23 -04001457 /* Reset TCP record info */
Chuck Lever51971132006-12-05 16:35:19 -05001458 transport->tcp_offset = 0;
1459 transport->tcp_reclen = 0;
1460 transport->tcp_copied = 0;
Chuck Levere136d092006-12-05 16:35:23 -05001461 transport->tcp_flags =
1462 TCP_RCV_COPY_FRAGHDR | TCP_RCV_COPY_XID;
Trond Myklebust8b717982013-09-26 10:18:04 -04001463 xprt->connect_cookie++;
Chuck Lever51971132006-12-05 16:35:19 -05001464
Trond Myklebust2a491992009-03-11 14:38:00 -04001465 xprt_wake_pending_tasks(xprt, -EAGAIN);
Chuck Levera246b012005-08-11 16:25:23 -04001466 }
Eric Dumazetf064af12010-09-22 12:43:39 +00001467 spin_unlock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001468 break;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001469 case TCP_FIN_WAIT1:
1470 /* The client initiated a shutdown of the socket */
Trond Myklebust7c1d71c2008-04-17 16:52:57 -04001471 xprt->connect_cookie++;
Trond Myklebust663b8852008-01-01 18:42:12 -05001472 xprt->reestablish_timeout = 0;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001473 set_bit(XPRT_CLOSING, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001474 smp_mb__before_atomic();
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001475 clear_bit(XPRT_CONNECTED, &xprt->state);
Trond Myklebustef803672007-12-31 16:19:17 -05001476 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001477 smp_mb__after_atomic();
Chuck Levera246b012005-08-11 16:25:23 -04001478 break;
Trond Myklebust632e3bd2006-01-03 09:55:55 +01001479 case TCP_CLOSE_WAIT:
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001480 /* The server initiated a shutdown of the socket */
Trond Myklebust7c1d71c2008-04-17 16:52:57 -04001481 xprt->connect_cookie++;
Trond Myklebustd0bea452012-10-23 11:35:47 -04001482 clear_bit(XPRT_CONNECTED, &xprt->state);
Trond Myklebusta519fc72012-09-12 16:49:15 -04001483 xs_tcp_force_close(xprt);
Trond Myklebust663b8852008-01-01 18:42:12 -05001484 case TCP_CLOSING:
1485 /*
1486 * If the server closed down the connection, make sure that
1487 * we back off before reconnecting
1488 */
1489 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
1490 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001491 break;
1492 case TCP_LAST_ACK:
Trond Myklebust670f9452009-03-11 14:37:58 -04001493 set_bit(XPRT_CLOSING, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001494 smp_mb__before_atomic();
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001495 clear_bit(XPRT_CONNECTED, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001496 smp_mb__after_atomic();
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001497 break;
1498 case TCP_CLOSE:
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001499 xs_sock_mark_closed(xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001500 }
1501 out:
Eric Dumazetf064af12010-09-22 12:43:39 +00001502 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001503}
1504
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001505static void xs_write_space(struct sock *sk)
1506{
1507 struct socket *sock;
1508 struct rpc_xprt *xprt;
1509
1510 if (unlikely(!(sock = sk->sk_socket)))
1511 return;
1512 clear_bit(SOCK_NOSPACE, &sock->flags);
1513
1514 if (unlikely(!(xprt = xprt_from_sock(sk))))
1515 return;
1516 if (test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags) == 0)
1517 return;
1518
1519 xprt_write_space(xprt);
1520}
1521
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04001522/**
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001523 * xs_udp_write_space - callback invoked when socket buffer space
1524 * becomes available
Chuck Lever9903cd12005-08-11 16:25:26 -04001525 * @sk: socket whose state has changed
1526 *
Chuck Levera246b012005-08-11 16:25:23 -04001527 * Called when more output buffer space is available for this socket.
1528 * We try not to wake our writers until they can make "significant"
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001529 * progress, otherwise we'll waste resources thrashing kernel_sendmsg
Chuck Levera246b012005-08-11 16:25:23 -04001530 * with a bunch of small requests.
1531 */
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001532static void xs_udp_write_space(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -04001533{
Eric Dumazetf064af12010-09-22 12:43:39 +00001534 read_lock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001535
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001536 /* from net/core/sock.c:sock_def_write_space */
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001537 if (sock_writeable(sk))
1538 xs_write_space(sk);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001539
Eric Dumazetf064af12010-09-22 12:43:39 +00001540 read_unlock_bh(&sk->sk_callback_lock);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001541}
Chuck Levera246b012005-08-11 16:25:23 -04001542
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001543/**
1544 * xs_tcp_write_space - callback invoked when socket buffer space
1545 * becomes available
1546 * @sk: socket whose state has changed
1547 *
1548 * Called when more output buffer space is available for this socket.
1549 * We try not to wake our writers until they can make "significant"
1550 * progress, otherwise we'll waste resources thrashing kernel_sendmsg
1551 * with a bunch of small requests.
1552 */
1553static void xs_tcp_write_space(struct sock *sk)
1554{
Eric Dumazetf064af12010-09-22 12:43:39 +00001555 read_lock_bh(&sk->sk_callback_lock);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001556
1557 /* from net/core/stream.c:sk_stream_write_space */
Eric Dumazet64dc6132013-07-22 20:26:31 -07001558 if (sk_stream_is_writeable(sk))
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001559 xs_write_space(sk);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001560
Eric Dumazetf064af12010-09-22 12:43:39 +00001561 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001562}
1563
Chuck Lever470056c2005-08-25 16:25:56 -07001564static void xs_udp_do_set_buffer_size(struct rpc_xprt *xprt)
Chuck Levera246b012005-08-11 16:25:23 -04001565{
Chuck Leveree0ac0c2006-12-05 16:35:15 -05001566 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
1567 struct sock *sk = transport->inet;
Chuck Levera246b012005-08-11 16:25:23 -04001568
Chuck Lever7c6e0662006-12-05 16:35:30 -05001569 if (transport->rcvsize) {
Chuck Levera246b012005-08-11 16:25:23 -04001570 sk->sk_userlocks |= SOCK_RCVBUF_LOCK;
Chuck Lever7c6e0662006-12-05 16:35:30 -05001571 sk->sk_rcvbuf = transport->rcvsize * xprt->max_reqs * 2;
Chuck Levera246b012005-08-11 16:25:23 -04001572 }
Chuck Lever7c6e0662006-12-05 16:35:30 -05001573 if (transport->sndsize) {
Chuck Levera246b012005-08-11 16:25:23 -04001574 sk->sk_userlocks |= SOCK_SNDBUF_LOCK;
Chuck Lever7c6e0662006-12-05 16:35:30 -05001575 sk->sk_sndbuf = transport->sndsize * xprt->max_reqs * 2;
Chuck Levera246b012005-08-11 16:25:23 -04001576 sk->sk_write_space(sk);
1577 }
1578}
1579
Chuck Lever43118c22005-08-25 16:25:49 -07001580/**
Chuck Lever470056c2005-08-25 16:25:56 -07001581 * xs_udp_set_buffer_size - set send and receive limits
Chuck Lever43118c22005-08-25 16:25:49 -07001582 * @xprt: generic transport
Chuck Lever470056c2005-08-25 16:25:56 -07001583 * @sndsize: requested size of send buffer, in bytes
1584 * @rcvsize: requested size of receive buffer, in bytes
Chuck Lever43118c22005-08-25 16:25:49 -07001585 *
Chuck Lever470056c2005-08-25 16:25:56 -07001586 * Set socket send and receive buffer size limits.
Chuck Lever43118c22005-08-25 16:25:49 -07001587 */
Chuck Lever470056c2005-08-25 16:25:56 -07001588static void xs_udp_set_buffer_size(struct rpc_xprt *xprt, size_t sndsize, size_t rcvsize)
Chuck Lever43118c22005-08-25 16:25:49 -07001589{
Chuck Lever7c6e0662006-12-05 16:35:30 -05001590 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
1591
1592 transport->sndsize = 0;
Chuck Lever470056c2005-08-25 16:25:56 -07001593 if (sndsize)
Chuck Lever7c6e0662006-12-05 16:35:30 -05001594 transport->sndsize = sndsize + 1024;
1595 transport->rcvsize = 0;
Chuck Lever470056c2005-08-25 16:25:56 -07001596 if (rcvsize)
Chuck Lever7c6e0662006-12-05 16:35:30 -05001597 transport->rcvsize = rcvsize + 1024;
Chuck Lever470056c2005-08-25 16:25:56 -07001598
1599 xs_udp_do_set_buffer_size(xprt);
Chuck Lever43118c22005-08-25 16:25:49 -07001600}
1601
Chuck Lever46c0ee82005-08-25 16:25:52 -07001602/**
1603 * xs_udp_timer - called when a retransmit timeout occurs on a UDP transport
1604 * @task: task that timed out
1605 *
1606 * Adjust the congestion window after a retransmit timeout has occurred.
1607 */
Trond Myklebust6a24dfb2013-01-08 09:48:15 -05001608static void xs_udp_timer(struct rpc_xprt *xprt, struct rpc_task *task)
Chuck Lever46c0ee82005-08-25 16:25:52 -07001609{
Trond Myklebust6a24dfb2013-01-08 09:48:15 -05001610 xprt_adjust_cwnd(xprt, task, -ETIMEDOUT);
Chuck Lever46c0ee82005-08-25 16:25:52 -07001611}
1612
Chuck Leverb85d8802006-05-25 01:40:49 -04001613static unsigned short xs_get_random_port(void)
1614{
1615 unsigned short range = xprt_max_resvport - xprt_min_resvport;
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05001616 unsigned short rand = (unsigned short) prandom_u32() % range;
Chuck Leverb85d8802006-05-25 01:40:49 -04001617 return rand + xprt_min_resvport;
1618}
1619
Chuck Lever92200412006-01-03 09:55:51 +01001620/**
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001621 * xs_set_reuseaddr_port - set the socket's port and address reuse options
1622 * @sock: socket
1623 *
1624 * Note that this function has to be called on all sockets that share the
1625 * same port, and it must be called before binding.
1626 */
1627static void xs_sock_set_reuseport(struct socket *sock)
1628{
Trond Myklebust402e23b2015-02-09 17:20:14 -05001629 int opt = 1;
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001630
Trond Myklebust402e23b2015-02-09 17:20:14 -05001631 kernel_setsockopt(sock, SOL_SOCKET, SO_REUSEPORT,
1632 (char *)&opt, sizeof(opt));
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001633}
1634
1635static unsigned short xs_sock_getport(struct socket *sock)
1636{
1637 struct sockaddr_storage buf;
1638 int buflen;
1639 unsigned short port = 0;
1640
1641 if (kernel_getsockname(sock, (struct sockaddr *)&buf, &buflen) < 0)
1642 goto out;
1643 switch (buf.ss_family) {
1644 case AF_INET6:
1645 port = ntohs(((struct sockaddr_in6 *)&buf)->sin6_port);
1646 break;
1647 case AF_INET:
1648 port = ntohs(((struct sockaddr_in *)&buf)->sin_port);
1649 }
1650out:
1651 return port;
1652}
1653
1654/**
Chuck Lever92200412006-01-03 09:55:51 +01001655 * xs_set_port - reset the port number in the remote endpoint address
1656 * @xprt: generic transport
1657 * @port: new port number
1658 *
1659 */
1660static void xs_set_port(struct rpc_xprt *xprt, unsigned short port)
1661{
Chuck Lever46121cf2007-01-31 12:14:08 -05001662 dprintk("RPC: setting port for xprt %p to %u\n", xprt, port);
Chuck Leverc4efcb12006-08-22 20:06:19 -04001663
Chuck Lever9dc3b092009-08-09 15:09:46 -04001664 rpc_set_port(xs_addr(xprt), port);
1665 xs_update_peer_port(xprt);
Chuck Lever92200412006-01-03 09:55:51 +01001666}
1667
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001668static void xs_set_srcport(struct sock_xprt *transport, struct socket *sock)
1669{
1670 if (transport->srcport == 0)
1671 transport->srcport = xs_sock_getport(sock);
1672}
1673
Pavel Emelyanov5d4ec932010-10-04 16:51:23 +04001674static unsigned short xs_get_srcport(struct sock_xprt *transport)
Trond Myklebust67a391d2007-11-05 17:40:58 -05001675{
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001676 unsigned short port = transport->srcport;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001677
1678 if (port == 0 && transport->xprt.resvport)
1679 port = xs_get_random_port();
1680 return port;
1681}
1682
Pavel Emelyanovbaaf4e42010-10-04 16:51:56 +04001683static unsigned short xs_next_srcport(struct sock_xprt *transport, unsigned short port)
Trond Myklebust67a391d2007-11-05 17:40:58 -05001684{
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001685 if (transport->srcport != 0)
1686 transport->srcport = 0;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001687 if (!transport->xprt.resvport)
1688 return 0;
1689 if (port <= xprt_min_resvport || port > xprt_max_resvport)
1690 return xprt_max_resvport;
1691 return --port;
1692}
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001693static int xs_bind(struct sock_xprt *transport, struct socket *sock)
Chuck Levera246b012005-08-11 16:25:23 -04001694{
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001695 struct sockaddr_storage myaddr;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001696 int err, nloop = 0;
Pavel Emelyanov5d4ec932010-10-04 16:51:23 +04001697 unsigned short port = xs_get_srcport(transport);
Trond Myklebust67a391d2007-11-05 17:40:58 -05001698 unsigned short last;
Chuck Levera246b012005-08-11 16:25:23 -04001699
Chris Perl0f7a6222014-09-05 15:40:21 -04001700 /*
1701 * If we are asking for any ephemeral port (i.e. port == 0 &&
1702 * transport->xprt.resvport == 0), don't bind. Let the local
1703 * port selection happen implicitly when the socket is used
1704 * (for example at connect time).
1705 *
1706 * This ensures that we can continue to establish TCP
1707 * connections even when all local ephemeral ports are already
1708 * a part of some TCP connection. This makes no difference
1709 * for UDP sockets, but also doens't harm them.
1710 *
1711 * If we're asking for any reserved port (i.e. port == 0 &&
1712 * transport->xprt.resvport == 1) xs_get_srcport above will
1713 * ensure that port is non-zero and we will bind as needed.
1714 */
1715 if (port == 0)
1716 return 0;
1717
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001718 memcpy(&myaddr, &transport->srcaddr, transport->xprt.addrlen);
Chuck Levera246b012005-08-11 16:25:23 -04001719 do {
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001720 rpc_set_port((struct sockaddr *)&myaddr, port);
1721 err = kernel_bind(sock, (struct sockaddr *)&myaddr,
1722 transport->xprt.addrlen);
Chuck Levera246b012005-08-11 16:25:23 -04001723 if (err == 0) {
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001724 transport->srcport = port;
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +02001725 break;
Chuck Levera246b012005-08-11 16:25:23 -04001726 }
Trond Myklebust67a391d2007-11-05 17:40:58 -05001727 last = port;
Pavel Emelyanovbaaf4e42010-10-04 16:51:56 +04001728 port = xs_next_srcport(transport, port);
Trond Myklebust67a391d2007-11-05 17:40:58 -05001729 if (port > last)
1730 nloop++;
1731 } while (err == -EADDRINUSE && nloop != 2);
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001732
Chuck Lever4232e862010-10-20 11:52:51 -04001733 if (myaddr.ss_family == AF_INET)
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001734 dprintk("RPC: %s %pI4:%u: %s (%d)\n", __func__,
1735 &((struct sockaddr_in *)&myaddr)->sin_addr,
1736 port, err ? "failed" : "ok", err);
1737 else
1738 dprintk("RPC: %s %pI6:%u: %s (%d)\n", __func__,
1739 &((struct sockaddr_in6 *)&myaddr)->sin6_addr,
1740 port, err ? "failed" : "ok", err);
Chuck Levera246b012005-08-11 16:25:23 -04001741 return err;
1742}
1743
Chuck Lever176e21e2011-05-09 15:22:44 -04001744/*
1745 * We don't support autobind on AF_LOCAL sockets
1746 */
1747static void xs_local_rpcbind(struct rpc_task *task)
1748{
Trond Myklebust3dc0da22013-01-08 09:31:13 -05001749 rcu_read_lock();
1750 xprt_set_bound(rcu_dereference(task->tk_client->cl_xprt));
1751 rcu_read_unlock();
Chuck Lever176e21e2011-05-09 15:22:44 -04001752}
1753
1754static void xs_local_set_port(struct rpc_xprt *xprt, unsigned short port)
1755{
1756}
Chuck Levera246b012005-08-11 16:25:23 -04001757
Peter Zijlstraed075362006-12-06 20:35:24 -08001758#ifdef CONFIG_DEBUG_LOCK_ALLOC
1759static struct lock_class_key xs_key[2];
1760static struct lock_class_key xs_slock_key[2];
1761
Chuck Lever176e21e2011-05-09 15:22:44 -04001762static inline void xs_reclassify_socketu(struct socket *sock)
1763{
1764 struct sock *sk = sock->sk;
1765
Chuck Lever176e21e2011-05-09 15:22:44 -04001766 sock_lock_init_class_and_name(sk, "slock-AF_LOCAL-RPC",
1767 &xs_slock_key[1], "sk_lock-AF_LOCAL-RPC", &xs_key[1]);
1768}
1769
Chuck Lever8945ee52007-08-06 11:58:04 -04001770static inline void xs_reclassify_socket4(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -08001771{
1772 struct sock *sk = sock->sk;
Chuck Lever8945ee52007-08-06 11:58:04 -04001773
Chuck Lever8945ee52007-08-06 11:58:04 -04001774 sock_lock_init_class_and_name(sk, "slock-AF_INET-RPC",
1775 &xs_slock_key[0], "sk_lock-AF_INET-RPC", &xs_key[0]);
1776}
Peter Zijlstraed075362006-12-06 20:35:24 -08001777
Chuck Lever8945ee52007-08-06 11:58:04 -04001778static inline void xs_reclassify_socket6(struct socket *sock)
1779{
1780 struct sock *sk = sock->sk;
Peter Zijlstraed075362006-12-06 20:35:24 -08001781
Chuck Lever8945ee52007-08-06 11:58:04 -04001782 sock_lock_init_class_and_name(sk, "slock-AF_INET6-RPC",
1783 &xs_slock_key[1], "sk_lock-AF_INET6-RPC", &xs_key[1]);
Peter Zijlstraed075362006-12-06 20:35:24 -08001784}
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001785
1786static inline void xs_reclassify_socket(int family, struct socket *sock)
1787{
Weston Andros Adamson1b7a1812012-10-23 10:43:39 -04001788 WARN_ON_ONCE(sock_owned_by_user(sock->sk));
1789 if (sock_owned_by_user(sock->sk))
1790 return;
1791
Chuck Lever4232e862010-10-20 11:52:51 -04001792 switch (family) {
Chuck Lever176e21e2011-05-09 15:22:44 -04001793 case AF_LOCAL:
1794 xs_reclassify_socketu(sock);
1795 break;
Chuck Lever4232e862010-10-20 11:52:51 -04001796 case AF_INET:
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001797 xs_reclassify_socket4(sock);
Chuck Lever4232e862010-10-20 11:52:51 -04001798 break;
1799 case AF_INET6:
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001800 xs_reclassify_socket6(sock);
Chuck Lever4232e862010-10-20 11:52:51 -04001801 break;
1802 }
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001803}
Peter Zijlstraed075362006-12-06 20:35:24 -08001804#else
Chuck Lever176e21e2011-05-09 15:22:44 -04001805static inline void xs_reclassify_socketu(struct socket *sock)
1806{
1807}
1808
Chuck Lever8945ee52007-08-06 11:58:04 -04001809static inline void xs_reclassify_socket4(struct socket *sock)
1810{
1811}
1812
1813static inline void xs_reclassify_socket6(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -08001814{
1815}
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001816
1817static inline void xs_reclassify_socket(int family, struct socket *sock)
1818{
1819}
Peter Zijlstraed075362006-12-06 20:35:24 -08001820#endif
1821
NeilBrown93dc41b2013-10-31 16:14:36 +11001822static void xs_dummy_setup_socket(struct work_struct *work)
1823{
1824}
1825
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001826static struct socket *xs_create_sock(struct rpc_xprt *xprt,
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001827 struct sock_xprt *transport, int family, int type,
1828 int protocol, bool reuseport)
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001829{
1830 struct socket *sock;
1831 int err;
1832
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001833 err = __sock_create(xprt->xprt_net, family, type, protocol, &sock, 1);
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001834 if (err < 0) {
1835 dprintk("RPC: can't create %d transport socket (%d).\n",
1836 protocol, -err);
1837 goto out;
1838 }
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001839 xs_reclassify_socket(family, sock);
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001840
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001841 if (reuseport)
1842 xs_sock_set_reuseport(sock);
1843
Ben Hutchings4cea2882011-02-22 21:54:34 +00001844 err = xs_bind(transport, sock);
1845 if (err) {
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001846 sock_release(sock);
1847 goto out;
1848 }
1849
1850 return sock;
1851out:
1852 return ERR_PTR(err);
1853}
1854
Chuck Lever176e21e2011-05-09 15:22:44 -04001855static int xs_local_finish_connecting(struct rpc_xprt *xprt,
1856 struct socket *sock)
1857{
1858 struct sock_xprt *transport = container_of(xprt, struct sock_xprt,
1859 xprt);
1860
1861 if (!transport->inet) {
1862 struct sock *sk = sock->sk;
1863
1864 write_lock_bh(&sk->sk_callback_lock);
1865
1866 xs_save_old_callbacks(transport, sk);
1867
1868 sk->sk_user_data = xprt;
1869 sk->sk_data_ready = xs_local_data_ready;
1870 sk->sk_write_space = xs_udp_write_space;
Trond Myklebust21180712013-12-31 13:22:59 -05001871 sk->sk_error_report = xs_error_report;
Trond Myklebustc2126152015-08-19 21:46:15 -05001872 sk->sk_allocation = GFP_NOIO;
Chuck Lever176e21e2011-05-09 15:22:44 -04001873
1874 xprt_clear_connected(xprt);
1875
1876 /* Reset to new socket */
1877 transport->sock = sock;
1878 transport->inet = sk;
1879
1880 write_unlock_bh(&sk->sk_callback_lock);
1881 }
1882
1883 /* Tell the socket layer to start connecting... */
1884 xprt->stat.connect_count++;
1885 xprt->stat.connect_start = jiffies;
1886 return kernel_connect(sock, xs_addr(xprt), xprt->addrlen, 0);
1887}
1888
1889/**
1890 * xs_local_setup_socket - create AF_LOCAL socket, connect to a local endpoint
Chuck Lever176e21e2011-05-09 15:22:44 -04001891 * @transport: socket transport to connect
Chuck Lever176e21e2011-05-09 15:22:44 -04001892 */
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05001893static int xs_local_setup_socket(struct sock_xprt *transport)
Chuck Lever176e21e2011-05-09 15:22:44 -04001894{
Chuck Lever176e21e2011-05-09 15:22:44 -04001895 struct rpc_xprt *xprt = &transport->xprt;
1896 struct socket *sock;
1897 int status = -EIO;
1898
Chuck Lever176e21e2011-05-09 15:22:44 -04001899 status = __sock_create(xprt->xprt_net, AF_LOCAL,
1900 SOCK_STREAM, 0, &sock, 1);
1901 if (status < 0) {
1902 dprintk("RPC: can't create AF_LOCAL "
1903 "transport socket (%d).\n", -status);
1904 goto out;
1905 }
1906 xs_reclassify_socketu(sock);
1907
1908 dprintk("RPC: worker connecting xprt %p via AF_LOCAL to %s\n",
1909 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
1910
1911 status = xs_local_finish_connecting(xprt, sock);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04001912 trace_rpc_socket_connect(xprt, sock, status);
Chuck Lever176e21e2011-05-09 15:22:44 -04001913 switch (status) {
1914 case 0:
1915 dprintk("RPC: xprt %p connected to %s\n",
1916 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
1917 xprt_set_connected(xprt);
Trond Myklebust3601c4a2014-06-30 13:42:19 -04001918 case -ENOBUFS:
Chuck Lever176e21e2011-05-09 15:22:44 -04001919 break;
1920 case -ENOENT:
1921 dprintk("RPC: xprt %p: socket %s does not exist\n",
1922 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
1923 break;
Trond Myklebust4a20a982012-12-15 17:02:29 -05001924 case -ECONNREFUSED:
1925 dprintk("RPC: xprt %p: connection refused for %s\n",
1926 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
1927 break;
Chuck Lever176e21e2011-05-09 15:22:44 -04001928 default:
1929 printk(KERN_ERR "%s: unhandled error (%d) connecting to %s\n",
1930 __func__, -status,
1931 xprt->address_strings[RPC_DISPLAY_ADDR]);
1932 }
1933
1934out:
1935 xprt_clear_connecting(xprt);
1936 xprt_wake_pending_tasks(xprt, status);
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05001937 return status;
1938}
1939
Linus Torvaldsb6669732013-02-28 18:02:55 -08001940static void xs_local_connect(struct rpc_xprt *xprt, struct rpc_task *task)
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05001941{
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05001942 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
1943 int ret;
1944
1945 if (RPC_IS_ASYNC(task)) {
1946 /*
1947 * We want the AF_LOCAL connect to be resolved in the
1948 * filesystem namespace of the process making the rpc
1949 * call. Thus we connect synchronously.
1950 *
1951 * If we want to support asynchronous AF_LOCAL calls,
1952 * we'll need to figure out how to pass a namespace to
1953 * connect.
1954 */
1955 rpc_exit(task, -ENOTCONN);
1956 return;
1957 }
1958 ret = xs_local_setup_socket(transport);
1959 if (ret && !RPC_IS_SOFTCONN(task))
1960 msleep_interruptible(15000);
Chuck Lever176e21e2011-05-09 15:22:44 -04001961}
1962
Jeff Layton3c87ef62015-06-03 16:14:25 -04001963#if IS_ENABLED(CONFIG_SUNRPC_SWAP)
Jeff Laytond6e971d2015-06-03 16:14:28 -04001964/*
1965 * Note that this should be called with XPRT_LOCKED held (or when we otherwise
1966 * know that we have exclusive access to the socket), to guard against
1967 * races with xs_reset_transport.
1968 */
Mel Gormana564b8f2012-07-31 16:45:12 -07001969static void xs_set_memalloc(struct rpc_xprt *xprt)
1970{
1971 struct sock_xprt *transport = container_of(xprt, struct sock_xprt,
1972 xprt);
1973
Jeff Laytond6e971d2015-06-03 16:14:28 -04001974 /*
1975 * If there's no sock, then we have nothing to set. The
1976 * reconnecting process will get it for us.
1977 */
1978 if (!transport->inet)
1979 return;
Jeff Layton8e228132015-06-03 16:14:26 -04001980 if (atomic_read(&xprt->swapper))
Mel Gormana564b8f2012-07-31 16:45:12 -07001981 sk_set_memalloc(transport->inet);
1982}
1983
1984/**
Jeff Laytond67fa4d2015-06-03 16:14:29 -04001985 * xs_enable_swap - Tag this transport as being used for swap.
Mel Gormana564b8f2012-07-31 16:45:12 -07001986 * @xprt: transport to tag
Mel Gormana564b8f2012-07-31 16:45:12 -07001987 *
Jeff Layton8e228132015-06-03 16:14:26 -04001988 * Take a reference to this transport on behalf of the rpc_clnt, and
1989 * optionally mark it for swapping if it wasn't already.
Mel Gormana564b8f2012-07-31 16:45:12 -07001990 */
Jeff Laytond67fa4d2015-06-03 16:14:29 -04001991static int
1992xs_enable_swap(struct rpc_xprt *xprt)
Mel Gormana564b8f2012-07-31 16:45:12 -07001993{
Jeff Laytond6e971d2015-06-03 16:14:28 -04001994 struct sock_xprt *xs = container_of(xprt, struct sock_xprt, xprt);
Mel Gormana564b8f2012-07-31 16:45:12 -07001995
Jeff Laytond6e971d2015-06-03 16:14:28 -04001996 if (atomic_inc_return(&xprt->swapper) != 1)
1997 return 0;
1998 if (wait_on_bit_lock(&xprt->state, XPRT_LOCKED, TASK_KILLABLE))
1999 return -ERESTARTSYS;
2000 if (xs->inet)
2001 sk_set_memalloc(xs->inet);
2002 xprt_release_xprt(xprt, NULL);
Jeff Layton8e228132015-06-03 16:14:26 -04002003 return 0;
Mel Gormana564b8f2012-07-31 16:45:12 -07002004}
Jeff Layton8e228132015-06-03 16:14:26 -04002005
2006/**
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002007 * xs_disable_swap - Untag this transport as being used for swap.
Jeff Layton8e228132015-06-03 16:14:26 -04002008 * @xprt: transport to tag
2009 *
2010 * Drop a "swapper" reference to this xprt on behalf of the rpc_clnt. If the
2011 * swapper refcount goes to 0, untag the socket as a memalloc socket.
2012 */
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002013static void
2014xs_disable_swap(struct rpc_xprt *xprt)
Jeff Layton8e228132015-06-03 16:14:26 -04002015{
Jeff Laytond6e971d2015-06-03 16:14:28 -04002016 struct sock_xprt *xs = container_of(xprt, struct sock_xprt, xprt);
Jeff Layton8e228132015-06-03 16:14:26 -04002017
Jeff Laytond6e971d2015-06-03 16:14:28 -04002018 if (!atomic_dec_and_test(&xprt->swapper))
2019 return;
2020 if (wait_on_bit_lock(&xprt->state, XPRT_LOCKED, TASK_KILLABLE))
2021 return;
2022 if (xs->inet)
2023 sk_clear_memalloc(xs->inet);
2024 xprt_release_xprt(xprt, NULL);
Mel Gormana564b8f2012-07-31 16:45:12 -07002025}
Mel Gormana564b8f2012-07-31 16:45:12 -07002026#else
2027static void xs_set_memalloc(struct rpc_xprt *xprt)
2028{
2029}
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002030
2031static int
2032xs_enable_swap(struct rpc_xprt *xprt)
2033{
2034 return -EINVAL;
2035}
2036
2037static void
2038xs_disable_swap(struct rpc_xprt *xprt)
2039{
2040}
Mel Gormana564b8f2012-07-31 16:45:12 -07002041#endif
2042
Chuck Lever16be2d22007-08-06 11:57:38 -04002043static void xs_udp_finish_connecting(struct rpc_xprt *xprt, struct socket *sock)
Chuck Levera246b012005-08-11 16:25:23 -04002044{
Chuck Lever16be2d22007-08-06 11:57:38 -04002045 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Leveredb267a2006-08-22 20:06:18 -04002046
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002047 if (!transport->inet) {
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002048 struct sock *sk = sock->sk;
2049
2050 write_lock_bh(&sk->sk_callback_lock);
2051
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04002052 xs_save_old_callbacks(transport, sk);
2053
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002054 sk->sk_user_data = xprt;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002055 sk->sk_data_ready = xs_udp_data_ready;
2056 sk->sk_write_space = xs_udp_write_space;
Trond Myklebustc2126152015-08-19 21:46:15 -05002057 sk->sk_allocation = GFP_NOIO;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002058
2059 xprt_set_connected(xprt);
2060
2061 /* Reset to new socket */
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002062 transport->sock = sock;
2063 transport->inet = sk;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002064
Mel Gormana564b8f2012-07-31 16:45:12 -07002065 xs_set_memalloc(xprt);
2066
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002067 write_unlock_bh(&sk->sk_callback_lock);
2068 }
Chuck Lever470056c2005-08-25 16:25:56 -07002069 xs_udp_do_set_buffer_size(xprt);
Chuck Lever16be2d22007-08-06 11:57:38 -04002070}
2071
Pavel Emelyanov8c14ff22010-10-04 16:58:02 +04002072static void xs_udp_setup_socket(struct work_struct *work)
Chuck Levera246b012005-08-11 16:25:23 -04002073{
2074 struct sock_xprt *transport =
2075 container_of(work, struct sock_xprt, connect_worker.work);
2076 struct rpc_xprt *xprt = &transport->xprt;
2077 struct socket *sock = transport->sock;
Pavel Emelyanovb65c0312010-10-04 16:53:46 +04002078 int status = -EIO;
Chuck Levera246b012005-08-11 16:25:23 -04002079
Pavel Emelyanov8c14ff22010-10-04 16:58:02 +04002080 sock = xs_create_sock(xprt, transport,
Trond Myklebust4dda9c82015-02-08 15:00:06 -05002081 xs_addr(xprt)->sa_family, SOCK_DGRAM,
2082 IPPROTO_UDP, false);
Pavel Emelyanovb65c0312010-10-04 16:53:46 +04002083 if (IS_ERR(sock))
Chuck Levera246b012005-08-11 16:25:23 -04002084 goto out;
Chuck Lever68e220b2007-08-06 11:57:48 -04002085
Chuck Leverc740eff2009-08-09 15:09:46 -04002086 dprintk("RPC: worker connecting xprt %p via %s to "
2087 "%s (port %s)\n", xprt,
2088 xprt->address_strings[RPC_DISPLAY_PROTO],
2089 xprt->address_strings[RPC_DISPLAY_ADDR],
2090 xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever68e220b2007-08-06 11:57:48 -04002091
2092 xs_udp_finish_connecting(xprt, sock);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04002093 trace_rpc_socket_connect(xprt, sock, 0);
Chuck Levera246b012005-08-11 16:25:23 -04002094 status = 0;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002095out:
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002096 xprt_unlock_connect(xprt, transport);
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002097 xprt_clear_connecting(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002098 xprt_wake_pending_tasks(xprt, status);
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002099}
2100
Trond Myklebust4876cc72015-06-19 16:17:57 -04002101/**
2102 * xs_tcp_shutdown - gracefully shut down a TCP socket
2103 * @xprt: transport
2104 *
2105 * Initiates a graceful shutdown of the TCP socket by calling the
2106 * equivalent of shutdown(SHUT_RDWR);
2107 */
2108static void xs_tcp_shutdown(struct rpc_xprt *xprt)
2109{
2110 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
2111 struct socket *sock = transport->sock;
2112
2113 if (sock == NULL)
2114 return;
2115 if (xprt_connected(xprt)) {
2116 kernel_sock_shutdown(sock, SHUT_RDWR);
2117 trace_rpc_socket_shutdown(xprt, sock);
2118 } else
2119 xs_reset_transport(transport);
2120}
2121
Chuck Lever16be2d22007-08-06 11:57:38 -04002122static int xs_tcp_finish_connecting(struct rpc_xprt *xprt, struct socket *sock)
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002123{
Chuck Lever16be2d22007-08-06 11:57:38 -04002124 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebustfe19a962011-03-18 20:21:23 -04002125 int ret = -ENOTCONN;
Chuck Leveredb267a2006-08-22 20:06:18 -04002126
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002127 if (!transport->inet) {
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002128 struct sock *sk = sock->sk;
Trond Myklebust7f260e82013-09-24 11:25:22 -04002129 unsigned int keepidle = xprt->timeout->to_initval / HZ;
2130 unsigned int keepcnt = xprt->timeout->to_retries + 1;
2131 unsigned int opt_on = 1;
Trond Myklebust775f06a2015-06-20 15:31:54 -04002132 unsigned int timeo;
Trond Myklebust7f260e82013-09-24 11:25:22 -04002133
2134 /* TCP Keepalive options */
2135 kernel_setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE,
2136 (char *)&opt_on, sizeof(opt_on));
2137 kernel_setsockopt(sock, SOL_TCP, TCP_KEEPIDLE,
2138 (char *)&keepidle, sizeof(keepidle));
2139 kernel_setsockopt(sock, SOL_TCP, TCP_KEEPINTVL,
2140 (char *)&keepidle, sizeof(keepidle));
2141 kernel_setsockopt(sock, SOL_TCP, TCP_KEEPCNT,
2142 (char *)&keepcnt, sizeof(keepcnt));
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002143
Trond Myklebust775f06a2015-06-20 15:31:54 -04002144 /* TCP user timeout (see RFC5482) */
2145 timeo = jiffies_to_msecs(xprt->timeout->to_initval) *
2146 (xprt->timeout->to_retries + 1);
2147 kernel_setsockopt(sock, SOL_TCP, TCP_USER_TIMEOUT,
2148 (char *)&timeo, sizeof(timeo));
2149
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002150 write_lock_bh(&sk->sk_callback_lock);
2151
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04002152 xs_save_old_callbacks(transport, sk);
2153
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002154 sk->sk_user_data = xprt;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002155 sk->sk_data_ready = xs_tcp_data_ready;
2156 sk->sk_state_change = xs_tcp_state_change;
2157 sk->sk_write_space = xs_tcp_write_space;
Trond Myklebust21180712013-12-31 13:22:59 -05002158 sk->sk_error_report = xs_error_report;
Trond Myklebustc2126152015-08-19 21:46:15 -05002159 sk->sk_allocation = GFP_NOIO;
Chuck Lever3167e122005-08-25 16:25:55 -07002160
2161 /* socket options */
Chuck Lever3167e122005-08-25 16:25:55 -07002162 sock_reset_flag(sk, SOCK_LINGER);
Chuck Lever3167e122005-08-25 16:25:55 -07002163 tcp_sk(sk)->nonagle |= TCP_NAGLE_OFF;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002164
2165 xprt_clear_connected(xprt);
2166
2167 /* Reset to new socket */
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002168 transport->sock = sock;
2169 transport->inet = sk;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002170
2171 write_unlock_bh(&sk->sk_callback_lock);
2172 }
2173
Trond Myklebust01d37c42009-03-11 14:09:39 -04002174 if (!xprt_bound(xprt))
Trond Myklebustfe19a962011-03-18 20:21:23 -04002175 goto out;
Trond Myklebust01d37c42009-03-11 14:09:39 -04002176
Mel Gormana564b8f2012-07-31 16:45:12 -07002177 xs_set_memalloc(xprt);
2178
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002179 /* Tell the socket layer to start connecting... */
Chuck Lever262ca072006-03-20 13:44:16 -05002180 xprt->stat.connect_count++;
2181 xprt->stat.connect_start = jiffies;
Trond Myklebustfe19a962011-03-18 20:21:23 -04002182 ret = kernel_connect(sock, xs_addr(xprt), xprt->addrlen, O_NONBLOCK);
2183 switch (ret) {
2184 case 0:
Trond Myklebust4dda9c82015-02-08 15:00:06 -05002185 xs_set_srcport(transport, sock);
Trond Myklebustfe19a962011-03-18 20:21:23 -04002186 case -EINPROGRESS:
2187 /* SYN_SENT! */
Trond Myklebustfe19a962011-03-18 20:21:23 -04002188 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
2189 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
2190 }
2191out:
2192 return ret;
Chuck Lever16be2d22007-08-06 11:57:38 -04002193}
2194
2195/**
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002196 * xs_tcp_setup_socket - create a TCP socket and connect to a remote endpoint
Chuck Lever16be2d22007-08-06 11:57:38 -04002197 *
2198 * Invoked by a work queue tasklet.
2199 */
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002200static void xs_tcp_setup_socket(struct work_struct *work)
Chuck Lever16be2d22007-08-06 11:57:38 -04002201{
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002202 struct sock_xprt *transport =
2203 container_of(work, struct sock_xprt, connect_worker.work);
Chuck Lever16be2d22007-08-06 11:57:38 -04002204 struct socket *sock = transport->sock;
Pavel Emelyanova9f5f0f2010-10-04 16:52:25 +04002205 struct rpc_xprt *xprt = &transport->xprt;
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002206 int status = -EIO;
Chuck Lever16be2d22007-08-06 11:57:38 -04002207
Chuck Lever16be2d22007-08-06 11:57:38 -04002208 if (!sock) {
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002209 sock = xs_create_sock(xprt, transport,
Trond Myklebust4dda9c82015-02-08 15:00:06 -05002210 xs_addr(xprt)->sa_family, SOCK_STREAM,
2211 IPPROTO_TCP, true);
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002212 if (IS_ERR(sock)) {
2213 status = PTR_ERR(sock);
Chuck Lever16be2d22007-08-06 11:57:38 -04002214 goto out;
2215 }
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002216 }
2217
Chuck Leverc740eff2009-08-09 15:09:46 -04002218 dprintk("RPC: worker connecting xprt %p via %s to "
2219 "%s (port %s)\n", xprt,
2220 xprt->address_strings[RPC_DISPLAY_PROTO],
2221 xprt->address_strings[RPC_DISPLAY_ADDR],
2222 xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever16be2d22007-08-06 11:57:38 -04002223
2224 status = xs_tcp_finish_connecting(xprt, sock);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04002225 trace_rpc_socket_connect(xprt, sock, status);
Chuck Lever46121cf2007-01-31 12:14:08 -05002226 dprintk("RPC: %p connect status %d connected %d sock state %d\n",
2227 xprt, -status, xprt_connected(xprt),
2228 sock->sk->sk_state);
Trond Myklebust2a491992009-03-11 14:38:00 -04002229 switch (status) {
Trond Myklebustf75e6742009-04-21 17:18:20 -04002230 default:
2231 printk("%s: connect returned unhandled error %d\n",
2232 __func__, status);
2233 case -EADDRNOTAVAIL:
2234 /* We're probably in TIME_WAIT. Get rid of existing socket,
2235 * and retry
2236 */
Trond Myklebusta519fc72012-09-12 16:49:15 -04002237 xs_tcp_force_close(xprt);
Trond Myklebust88b5ed72009-06-17 13:22:57 -07002238 break;
Trond Myklebust2a491992009-03-11 14:38:00 -04002239 case 0:
2240 case -EINPROGRESS:
2241 case -EALREADY:
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002242 xprt_unlock_connect(xprt, transport);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002243 xprt_clear_connecting(xprt);
2244 return;
Trond Myklebust9fcfe0c2010-03-02 13:06:21 -05002245 case -EINVAL:
2246 /* Happens, for instance, if the user specified a link
2247 * local IPv6 address without a scope-id.
2248 */
Trond Myklebust3ed5e2a2013-03-04 17:29:33 -05002249 case -ECONNREFUSED:
2250 case -ECONNRESET:
2251 case -ENETUNREACH:
Trond Myklebust3913c782015-02-08 21:44:04 -05002252 case -EADDRINUSE:
Trond Myklebust3601c4a2014-06-30 13:42:19 -04002253 case -ENOBUFS:
Trond Myklebust3ed5e2a2013-03-04 17:29:33 -05002254 /* retry with existing socket, after a delay */
Trond Myklebust4efdd922015-02-08 15:34:28 -05002255 xs_tcp_force_close(xprt);
Trond Myklebust9fcfe0c2010-03-02 13:06:21 -05002256 goto out;
Chuck Levera246b012005-08-11 16:25:23 -04002257 }
Trond Myklebust2a491992009-03-11 14:38:00 -04002258 status = -EAGAIN;
Chuck Levera246b012005-08-11 16:25:23 -04002259out:
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002260 xprt_unlock_connect(xprt, transport);
Chuck Lever2226feb2005-08-11 16:25:38 -04002261 xprt_clear_connecting(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002262 xprt_wake_pending_tasks(xprt, status);
Chuck Levera246b012005-08-11 16:25:23 -04002263}
2264
Chuck Lever68e220b2007-08-06 11:57:48 -04002265/**
Chuck Lever9903cd12005-08-11 16:25:26 -04002266 * xs_connect - connect a socket to a remote endpoint
Trond Myklebust1b092092013-01-08 09:26:49 -05002267 * @xprt: pointer to transport structure
Chuck Lever9903cd12005-08-11 16:25:26 -04002268 * @task: address of RPC task that manages state of connect request
2269 *
2270 * TCP: If the remote end dropped the connection, delay reconnecting.
Chuck Lever03bf4b72005-08-25 16:25:55 -07002271 *
2272 * UDP socket connects are synchronous, but we use a work queue anyway
2273 * to guarantee that even unprivileged user processes can set up a
2274 * socket on a privileged port.
2275 *
2276 * If a UDP socket connect fails, the delay behavior here prevents
2277 * retry floods (hard mounts).
Chuck Lever9903cd12005-08-11 16:25:26 -04002278 */
Trond Myklebust1b092092013-01-08 09:26:49 -05002279static void xs_connect(struct rpc_xprt *xprt, struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -04002280{
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002281 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002282
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002283 WARN_ON_ONCE(!xprt_lock_connect(xprt, task, transport));
2284
Trond Myklebust99b1a4c2015-08-13 15:33:51 -04002285 if (transport->sock != NULL) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002286 dprintk("RPC: xs_connect delayed xprt %p for %lu "
2287 "seconds\n",
Chuck Lever03bf4b72005-08-25 16:25:55 -07002288 xprt, xprt->reestablish_timeout / HZ);
Trond Myklebust99b1a4c2015-08-13 15:33:51 -04002289
2290 /* Start by resetting any existing state */
2291 xs_reset_transport(transport);
2292
Trond Myklebustc1384c92007-06-14 18:00:42 -04002293 queue_delayed_work(rpciod_workqueue,
2294 &transport->connect_worker,
2295 xprt->reestablish_timeout);
Chuck Lever03bf4b72005-08-25 16:25:55 -07002296 xprt->reestablish_timeout <<= 1;
Neil Brown61d0a8e2009-09-23 14:36:37 -04002297 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
2298 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
Chuck Lever03bf4b72005-08-25 16:25:55 -07002299 if (xprt->reestablish_timeout > XS_TCP_MAX_REEST_TO)
2300 xprt->reestablish_timeout = XS_TCP_MAX_REEST_TO;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002301 } else {
Chuck Lever46121cf2007-01-31 12:14:08 -05002302 dprintk("RPC: xs_connect scheduled xprt %p\n", xprt);
Trond Myklebustc1384c92007-06-14 18:00:42 -04002303 queue_delayed_work(rpciod_workqueue,
2304 &transport->connect_worker, 0);
Chuck Levera246b012005-08-11 16:25:23 -04002305 }
2306}
2307
Chuck Lever262ca072006-03-20 13:44:16 -05002308/**
Chuck Lever176e21e2011-05-09 15:22:44 -04002309 * xs_local_print_stats - display AF_LOCAL socket-specifc stats
2310 * @xprt: rpc_xprt struct containing statistics
2311 * @seq: output file
2312 *
2313 */
2314static void xs_local_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2315{
2316 long idle_time = 0;
2317
2318 if (xprt_connected(xprt))
2319 idle_time = (long)(jiffies - xprt->last_used) / HZ;
2320
2321 seq_printf(seq, "\txprt:\tlocal %lu %lu %lu %ld %lu %lu %lu "
Andy Adamson15a45202012-02-14 16:19:18 -05002322 "%llu %llu %lu %llu %llu\n",
Chuck Lever176e21e2011-05-09 15:22:44 -04002323 xprt->stat.bind_count,
2324 xprt->stat.connect_count,
2325 xprt->stat.connect_time,
2326 idle_time,
2327 xprt->stat.sends,
2328 xprt->stat.recvs,
2329 xprt->stat.bad_xids,
2330 xprt->stat.req_u,
Andy Adamson15a45202012-02-14 16:19:18 -05002331 xprt->stat.bklog_u,
2332 xprt->stat.max_slots,
2333 xprt->stat.sending_u,
2334 xprt->stat.pending_u);
Chuck Lever176e21e2011-05-09 15:22:44 -04002335}
2336
2337/**
Chuck Lever262ca072006-03-20 13:44:16 -05002338 * xs_udp_print_stats - display UDP socket-specifc stats
2339 * @xprt: rpc_xprt struct containing statistics
2340 * @seq: output file
2341 *
2342 */
2343static void xs_udp_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2344{
Chuck Leverc8475462006-12-05 16:35:26 -05002345 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
2346
Andy Adamson15a45202012-02-14 16:19:18 -05002347 seq_printf(seq, "\txprt:\tudp %u %lu %lu %lu %lu %llu %llu "
2348 "%lu %llu %llu\n",
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002349 transport->srcport,
Chuck Lever262ca072006-03-20 13:44:16 -05002350 xprt->stat.bind_count,
2351 xprt->stat.sends,
2352 xprt->stat.recvs,
2353 xprt->stat.bad_xids,
2354 xprt->stat.req_u,
Andy Adamson15a45202012-02-14 16:19:18 -05002355 xprt->stat.bklog_u,
2356 xprt->stat.max_slots,
2357 xprt->stat.sending_u,
2358 xprt->stat.pending_u);
Chuck Lever262ca072006-03-20 13:44:16 -05002359}
2360
2361/**
2362 * xs_tcp_print_stats - display TCP socket-specifc stats
2363 * @xprt: rpc_xprt struct containing statistics
2364 * @seq: output file
2365 *
2366 */
2367static void xs_tcp_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2368{
Chuck Leverc8475462006-12-05 16:35:26 -05002369 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262ca072006-03-20 13:44:16 -05002370 long idle_time = 0;
2371
2372 if (xprt_connected(xprt))
2373 idle_time = (long)(jiffies - xprt->last_used) / HZ;
2374
Andy Adamson15a45202012-02-14 16:19:18 -05002375 seq_printf(seq, "\txprt:\ttcp %u %lu %lu %lu %ld %lu %lu %lu "
2376 "%llu %llu %lu %llu %llu\n",
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002377 transport->srcport,
Chuck Lever262ca072006-03-20 13:44:16 -05002378 xprt->stat.bind_count,
2379 xprt->stat.connect_count,
2380 xprt->stat.connect_time,
2381 idle_time,
2382 xprt->stat.sends,
2383 xprt->stat.recvs,
2384 xprt->stat.bad_xids,
2385 xprt->stat.req_u,
Andy Adamson15a45202012-02-14 16:19:18 -05002386 xprt->stat.bklog_u,
2387 xprt->stat.max_slots,
2388 xprt->stat.sending_u,
2389 xprt->stat.pending_u);
Chuck Lever262ca072006-03-20 13:44:16 -05002390}
2391
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002392/*
2393 * Allocate a bunch of pages for a scratch buffer for the rpc code. The reason
2394 * we allocate pages instead doing a kmalloc like rpc_malloc is because we want
2395 * to use the server side send routines.
2396 */
H Hartley Sweeten5a51f132010-01-14 15:38:31 -07002397static void *bc_malloc(struct rpc_task *task, size_t size)
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002398{
2399 struct page *page;
2400 struct rpc_buffer *buf;
2401
Weston Andros Adamsonb8a13d02012-10-23 10:43:43 -04002402 WARN_ON_ONCE(size > PAGE_SIZE - sizeof(struct rpc_buffer));
2403 if (size > PAGE_SIZE - sizeof(struct rpc_buffer))
2404 return NULL;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002405
Weston Andros Adamsonb8a13d02012-10-23 10:43:43 -04002406 page = alloc_page(GFP_KERNEL);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002407 if (!page)
2408 return NULL;
2409
2410 buf = page_address(page);
2411 buf->len = PAGE_SIZE;
2412
2413 return buf->data;
2414}
2415
2416/*
2417 * Free the space allocated in the bc_alloc routine
2418 */
H Hartley Sweeten5a51f132010-01-14 15:38:31 -07002419static void bc_free(void *buffer)
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002420{
2421 struct rpc_buffer *buf;
2422
2423 if (!buffer)
2424 return;
2425
2426 buf = container_of(buffer, struct rpc_buffer, data);
2427 free_page((unsigned long)buf);
2428}
2429
2430/*
2431 * Use the svc_sock to send the callback. Must be called with svsk->sk_mutex
2432 * held. Borrows heavily from svc_tcp_sendto and xs_tcp_send_request.
2433 */
2434static int bc_sendto(struct rpc_rqst *req)
2435{
2436 int len;
2437 struct xdr_buf *xbufp = &req->rq_snd_buf;
2438 struct rpc_xprt *xprt = req->rq_xprt;
2439 struct sock_xprt *transport =
2440 container_of(xprt, struct sock_xprt, xprt);
2441 struct socket *sock = transport->sock;
2442 unsigned long headoff;
2443 unsigned long tailoff;
2444
Chuck Lever61677ee2011-05-09 15:22:34 -04002445 xs_encode_stream_record_marker(xbufp);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002446
2447 tailoff = (unsigned long)xbufp->tail[0].iov_base & ~PAGE_MASK;
2448 headoff = (unsigned long)xbufp->head[0].iov_base & ~PAGE_MASK;
2449 len = svc_send_common(sock, xbufp,
2450 virt_to_page(xbufp->head[0].iov_base), headoff,
2451 xbufp->tail[0].iov_base, tailoff);
2452
2453 if (len != xbufp->len) {
2454 printk(KERN_NOTICE "Error sending entire callback!\n");
2455 len = -EAGAIN;
2456 }
2457
2458 return len;
2459}
2460
2461/*
2462 * The send routine. Borrows from svc_send
2463 */
2464static int bc_send_request(struct rpc_task *task)
2465{
2466 struct rpc_rqst *req = task->tk_rqstp;
2467 struct svc_xprt *xprt;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002468 u32 len;
2469
2470 dprintk("sending request with xid: %08x\n", ntohl(req->rq_xid));
2471 /*
2472 * Get the server socket associated with this callback xprt
2473 */
2474 xprt = req->rq_xprt->bc_xprt;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002475
2476 /*
2477 * Grab the mutex to serialize data as the connection is shared
2478 * with the fore channel
2479 */
2480 if (!mutex_trylock(&xprt->xpt_mutex)) {
2481 rpc_sleep_on(&xprt->xpt_bc_pending, task, NULL);
2482 if (!mutex_trylock(&xprt->xpt_mutex))
2483 return -EAGAIN;
2484 rpc_wake_up_queued_task(&xprt->xpt_bc_pending, task);
2485 }
2486 if (test_bit(XPT_DEAD, &xprt->xpt_flags))
2487 len = -ENOTCONN;
2488 else
2489 len = bc_sendto(req);
2490 mutex_unlock(&xprt->xpt_mutex);
2491
2492 if (len > 0)
2493 len = 0;
2494
2495 return len;
2496}
2497
2498/*
2499 * The close routine. Since this is client initiated, we do nothing
2500 */
2501
2502static void bc_close(struct rpc_xprt *xprt)
2503{
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002504}
2505
2506/*
2507 * The xprt destroy routine. Again, because this connection is client
2508 * initiated, we do nothing
2509 */
2510
2511static void bc_destroy(struct rpc_xprt *xprt)
2512{
Kinglong Mee47f72ef2014-03-24 11:58:16 +08002513 dprintk("RPC: bc_destroy xprt %p\n", xprt);
2514
2515 xs_xprt_free(xprt);
2516 module_put(THIS_MODULE);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002517}
2518
Chuck Lever176e21e2011-05-09 15:22:44 -04002519static struct rpc_xprt_ops xs_local_ops = {
2520 .reserve_xprt = xprt_reserve_xprt,
2521 .release_xprt = xs_tcp_release_xprt,
Trond Myklebustf39c1bf2012-09-07 11:08:50 -04002522 .alloc_slot = xprt_alloc_slot,
Chuck Lever176e21e2011-05-09 15:22:44 -04002523 .rpcbind = xs_local_rpcbind,
2524 .set_port = xs_local_set_port,
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05002525 .connect = xs_local_connect,
Chuck Lever176e21e2011-05-09 15:22:44 -04002526 .buf_alloc = rpc_malloc,
2527 .buf_free = rpc_free,
2528 .send_request = xs_local_send_request,
2529 .set_retrans_timeout = xprt_set_retrans_timeout_def,
2530 .close = xs_close,
Trond Myklebusta1311d82013-10-31 09:18:49 -04002531 .destroy = xs_destroy,
Chuck Lever176e21e2011-05-09 15:22:44 -04002532 .print_stats = xs_local_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002533 .enable_swap = xs_enable_swap,
2534 .disable_swap = xs_disable_swap,
Chuck Lever176e21e2011-05-09 15:22:44 -04002535};
2536
Chuck Lever262965f2005-08-11 16:25:56 -04002537static struct rpc_xprt_ops xs_udp_ops = {
Chuck Lever43118c22005-08-25 16:25:49 -07002538 .set_buffer_size = xs_udp_set_buffer_size,
Chuck Lever12a80462005-08-25 16:25:51 -07002539 .reserve_xprt = xprt_reserve_xprt_cong,
Chuck Lever49e9a892005-08-25 16:25:51 -07002540 .release_xprt = xprt_release_xprt_cong,
Trond Myklebustf39c1bf2012-09-07 11:08:50 -04002541 .alloc_slot = xprt_alloc_slot,
Chuck Lever45160d62007-07-01 12:13:17 -04002542 .rpcbind = rpcb_getport_async,
Chuck Lever92200412006-01-03 09:55:51 +01002543 .set_port = xs_set_port,
Chuck Lever9903cd12005-08-11 16:25:26 -04002544 .connect = xs_connect,
Chuck Lever02107142006-01-03 09:55:49 +01002545 .buf_alloc = rpc_malloc,
2546 .buf_free = rpc_free,
Chuck Lever262965f2005-08-11 16:25:56 -04002547 .send_request = xs_udp_send_request,
Chuck Leverfe3aca22005-08-25 16:25:50 -07002548 .set_retrans_timeout = xprt_set_retrans_timeout_rtt,
Chuck Lever46c0ee82005-08-25 16:25:52 -07002549 .timer = xs_udp_timer,
Chuck Levera58dd392005-08-25 16:25:53 -07002550 .release_request = xprt_release_rqst_cong,
Chuck Lever262965f2005-08-11 16:25:56 -04002551 .close = xs_close,
2552 .destroy = xs_destroy,
Chuck Lever262ca072006-03-20 13:44:16 -05002553 .print_stats = xs_udp_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002554 .enable_swap = xs_enable_swap,
2555 .disable_swap = xs_disable_swap,
Chuck Lever4a068252015-05-11 14:02:25 -04002556 .inject_disconnect = xs_inject_disconnect,
Chuck Lever262965f2005-08-11 16:25:56 -04002557};
2558
2559static struct rpc_xprt_ops xs_tcp_ops = {
Chuck Lever12a80462005-08-25 16:25:51 -07002560 .reserve_xprt = xprt_reserve_xprt,
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04002561 .release_xprt = xs_tcp_release_xprt,
Trond Myklebustf39c1bf2012-09-07 11:08:50 -04002562 .alloc_slot = xprt_lock_and_alloc_slot,
Chuck Lever45160d62007-07-01 12:13:17 -04002563 .rpcbind = rpcb_getport_async,
Chuck Lever92200412006-01-03 09:55:51 +01002564 .set_port = xs_set_port,
Trond Myklebust0b9e7942010-04-16 16:41:57 -04002565 .connect = xs_connect,
Chuck Lever02107142006-01-03 09:55:49 +01002566 .buf_alloc = rpc_malloc,
2567 .buf_free = rpc_free,
Chuck Lever262965f2005-08-11 16:25:56 -04002568 .send_request = xs_tcp_send_request,
Chuck Leverfe3aca22005-08-25 16:25:50 -07002569 .set_retrans_timeout = xprt_set_retrans_timeout_def,
Trond Myklebustc627d312015-02-10 11:06:04 -05002570 .close = xs_tcp_shutdown,
Chuck Lever9903cd12005-08-11 16:25:26 -04002571 .destroy = xs_destroy,
Chuck Lever262ca072006-03-20 13:44:16 -05002572 .print_stats = xs_tcp_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002573 .enable_swap = xs_enable_swap,
2574 .disable_swap = xs_disable_swap,
Chuck Lever4a068252015-05-11 14:02:25 -04002575 .inject_disconnect = xs_inject_disconnect,
Chuck Levera246b012005-08-11 16:25:23 -04002576};
2577
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002578/*
2579 * The rpc_xprt_ops for the server backchannel
2580 */
2581
2582static struct rpc_xprt_ops bc_tcp_ops = {
2583 .reserve_xprt = xprt_reserve_xprt,
2584 .release_xprt = xprt_release_xprt,
Bryan Schumaker84e28a32012-09-24 13:39:01 -04002585 .alloc_slot = xprt_alloc_slot,
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002586 .buf_alloc = bc_malloc,
2587 .buf_free = bc_free,
2588 .send_request = bc_send_request,
2589 .set_retrans_timeout = xprt_set_retrans_timeout_def,
2590 .close = bc_close,
2591 .destroy = bc_destroy,
2592 .print_stats = xs_tcp_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002593 .enable_swap = xs_enable_swap,
2594 .disable_swap = xs_disable_swap,
Chuck Lever4a068252015-05-11 14:02:25 -04002595 .inject_disconnect = xs_inject_disconnect,
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002596};
2597
Chuck Lever92476852010-10-20 11:53:01 -04002598static int xs_init_anyaddr(const int family, struct sockaddr *sap)
2599{
2600 static const struct sockaddr_in sin = {
2601 .sin_family = AF_INET,
2602 .sin_addr.s_addr = htonl(INADDR_ANY),
2603 };
2604 static const struct sockaddr_in6 sin6 = {
2605 .sin6_family = AF_INET6,
2606 .sin6_addr = IN6ADDR_ANY_INIT,
2607 };
2608
2609 switch (family) {
Chuck Lever176e21e2011-05-09 15:22:44 -04002610 case AF_LOCAL:
2611 break;
Chuck Lever92476852010-10-20 11:53:01 -04002612 case AF_INET:
2613 memcpy(sap, &sin, sizeof(sin));
2614 break;
2615 case AF_INET6:
2616 memcpy(sap, &sin6, sizeof(sin6));
2617 break;
2618 default:
2619 dprintk("RPC: %s: Bad address family\n", __func__);
2620 return -EAFNOSUPPORT;
2621 }
2622 return 0;
2623}
2624
\"Talpey, Thomas\3c341b0b2007-09-10 13:47:07 -04002625static struct rpc_xprt *xs_setup_xprt(struct xprt_create *args,
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002626 unsigned int slot_table_size,
2627 unsigned int max_slot_table_size)
Chuck Leverc8541ec2006-10-17 14:44:27 -04002628{
2629 struct rpc_xprt *xprt;
Chuck Leverffc2e512006-12-05 16:35:11 -05002630 struct sock_xprt *new;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002631
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002632 if (args->addrlen > sizeof(xprt->addr)) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002633 dprintk("RPC: xs_setup_xprt: address too large\n");
Chuck Leverc8541ec2006-10-17 14:44:27 -04002634 return ERR_PTR(-EBADF);
2635 }
2636
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002637 xprt = xprt_alloc(args->net, sizeof(*new), slot_table_size,
2638 max_slot_table_size);
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +04002639 if (xprt == NULL) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002640 dprintk("RPC: xs_setup_xprt: couldn't allocate "
2641 "rpc_xprt\n");
Chuck Leverc8541ec2006-10-17 14:44:27 -04002642 return ERR_PTR(-ENOMEM);
2643 }
2644
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +04002645 new = container_of(xprt, struct sock_xprt, xprt);
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002646 memcpy(&xprt->addr, args->dstaddr, args->addrlen);
2647 xprt->addrlen = args->addrlen;
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +02002648 if (args->srcaddr)
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002649 memcpy(&new->srcaddr, args->srcaddr, args->addrlen);
Chuck Lever92476852010-10-20 11:53:01 -04002650 else {
2651 int err;
2652 err = xs_init_anyaddr(args->dstaddr->sa_family,
2653 (struct sockaddr *)&new->srcaddr);
Stanislav Kinsbursky2aa13532011-11-10 14:33:23 +03002654 if (err != 0) {
2655 xprt_free(xprt);
Chuck Lever92476852010-10-20 11:53:01 -04002656 return ERR_PTR(err);
Stanislav Kinsbursky2aa13532011-11-10 14:33:23 +03002657 }
Chuck Lever92476852010-10-20 11:53:01 -04002658 }
Chuck Leverc8541ec2006-10-17 14:44:27 -04002659
2660 return xprt;
2661}
2662
Chuck Lever176e21e2011-05-09 15:22:44 -04002663static const struct rpc_timeout xs_local_default_timeout = {
2664 .to_initval = 10 * HZ,
2665 .to_maxval = 10 * HZ,
2666 .to_retries = 2,
2667};
2668
2669/**
2670 * xs_setup_local - Set up transport to use an AF_LOCAL socket
2671 * @args: rpc transport creation arguments
2672 *
2673 * AF_LOCAL is a "tpi_cots_ord" transport, just like TCP
2674 */
2675static struct rpc_xprt *xs_setup_local(struct xprt_create *args)
2676{
2677 struct sockaddr_un *sun = (struct sockaddr_un *)args->dstaddr;
2678 struct sock_xprt *transport;
2679 struct rpc_xprt *xprt;
2680 struct rpc_xprt *ret;
2681
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002682 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries,
2683 xprt_max_tcp_slot_table_entries);
Chuck Lever176e21e2011-05-09 15:22:44 -04002684 if (IS_ERR(xprt))
2685 return xprt;
2686 transport = container_of(xprt, struct sock_xprt, xprt);
2687
2688 xprt->prot = 0;
2689 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
2690 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
2691
2692 xprt->bind_timeout = XS_BIND_TO;
2693 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
2694 xprt->idle_timeout = XS_IDLE_DISC_TO;
2695
2696 xprt->ops = &xs_local_ops;
2697 xprt->timeout = &xs_local_default_timeout;
2698
NeilBrown93dc41b2013-10-31 16:14:36 +11002699 INIT_DELAYED_WORK(&transport->connect_worker,
2700 xs_dummy_setup_socket);
2701
Chuck Lever176e21e2011-05-09 15:22:44 -04002702 switch (sun->sun_family) {
2703 case AF_LOCAL:
2704 if (sun->sun_path[0] != '/') {
2705 dprintk("RPC: bad AF_LOCAL address: %s\n",
2706 sun->sun_path);
2707 ret = ERR_PTR(-EINVAL);
2708 goto out_err;
2709 }
2710 xprt_set_bound(xprt);
Chuck Lever176e21e2011-05-09 15:22:44 -04002711 xs_format_peer_addresses(xprt, "local", RPCBIND_NETID_LOCAL);
J. Bruce Fields7073ea82013-02-21 10:14:22 -05002712 ret = ERR_PTR(xs_local_setup_socket(transport));
2713 if (ret)
2714 goto out_err;
Chuck Lever176e21e2011-05-09 15:22:44 -04002715 break;
2716 default:
2717 ret = ERR_PTR(-EAFNOSUPPORT);
2718 goto out_err;
2719 }
2720
2721 dprintk("RPC: set up xprt to %s via AF_LOCAL\n",
2722 xprt->address_strings[RPC_DISPLAY_ADDR]);
2723
2724 if (try_module_get(THIS_MODULE))
2725 return xprt;
2726 ret = ERR_PTR(-EINVAL);
2727out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08002728 xs_xprt_free(xprt);
Chuck Lever176e21e2011-05-09 15:22:44 -04002729 return ret;
2730}
2731
Trond Myklebust2881ae72007-12-20 16:03:54 -05002732static const struct rpc_timeout xs_udp_default_timeout = {
2733 .to_initval = 5 * HZ,
2734 .to_maxval = 30 * HZ,
2735 .to_increment = 5 * HZ,
2736 .to_retries = 5,
2737};
2738
Chuck Lever9903cd12005-08-11 16:25:26 -04002739/**
2740 * xs_setup_udp - Set up transport to use a UDP socket
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002741 * @args: rpc transport creation arguments
Chuck Lever9903cd12005-08-11 16:25:26 -04002742 *
2743 */
Adrian Bunk483066d2007-10-24 18:24:02 +02002744static struct rpc_xprt *xs_setup_udp(struct xprt_create *args)
Chuck Levera246b012005-08-11 16:25:23 -04002745{
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002746 struct sockaddr *addr = args->dstaddr;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002747 struct rpc_xprt *xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002748 struct sock_xprt *transport;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002749 struct rpc_xprt *ret;
Chuck Levera246b012005-08-11 16:25:23 -04002750
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002751 xprt = xs_setup_xprt(args, xprt_udp_slot_table_entries,
2752 xprt_udp_slot_table_entries);
Chuck Leverc8541ec2006-10-17 14:44:27 -04002753 if (IS_ERR(xprt))
2754 return xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002755 transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002756
Chuck Leverec739ef2006-08-22 20:06:15 -04002757 xprt->prot = IPPROTO_UDP;
Chuck Lever808012f2005-08-25 16:25:49 -07002758 xprt->tsh_size = 0;
Chuck Levera246b012005-08-11 16:25:23 -04002759 /* XXX: header size can vary due to auth type, IPv6, etc. */
2760 xprt->max_payload = (1U << 16) - (MAX_HEADER << 3);
2761
Chuck Lever03bf4b72005-08-25 16:25:55 -07002762 xprt->bind_timeout = XS_BIND_TO;
Chuck Lever03bf4b72005-08-25 16:25:55 -07002763 xprt->reestablish_timeout = XS_UDP_REEST_TO;
2764 xprt->idle_timeout = XS_IDLE_DISC_TO;
Chuck Levera246b012005-08-11 16:25:23 -04002765
Chuck Lever262965f2005-08-11 16:25:56 -04002766 xprt->ops = &xs_udp_ops;
Chuck Levera246b012005-08-11 16:25:23 -04002767
Trond Myklebustba7392b2007-12-20 16:03:55 -05002768 xprt->timeout = &xs_udp_default_timeout;
Chuck Levera246b012005-08-11 16:25:23 -04002769
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002770 switch (addr->sa_family) {
2771 case AF_INET:
2772 if (((struct sockaddr_in *)addr)->sin_port != htons(0))
2773 xprt_set_bound(xprt);
2774
2775 INIT_DELAYED_WORK(&transport->connect_worker,
Pavel Emelyanov8c14ff22010-10-04 16:58:02 +04002776 xs_udp_setup_socket);
Chuck Lever9dc3b092009-08-09 15:09:46 -04002777 xs_format_peer_addresses(xprt, "udp", RPCBIND_NETID_UDP);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002778 break;
2779 case AF_INET6:
2780 if (((struct sockaddr_in6 *)addr)->sin6_port != htons(0))
2781 xprt_set_bound(xprt);
2782
2783 INIT_DELAYED_WORK(&transport->connect_worker,
Pavel Emelyanov8c14ff22010-10-04 16:58:02 +04002784 xs_udp_setup_socket);
Chuck Lever9dc3b092009-08-09 15:09:46 -04002785 xs_format_peer_addresses(xprt, "udp", RPCBIND_NETID_UDP6);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002786 break;
2787 default:
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002788 ret = ERR_PTR(-EAFNOSUPPORT);
2789 goto out_err;
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002790 }
2791
Chuck Leverc740eff2009-08-09 15:09:46 -04002792 if (xprt_bound(xprt))
2793 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
2794 xprt->address_strings[RPC_DISPLAY_ADDR],
2795 xprt->address_strings[RPC_DISPLAY_PORT],
2796 xprt->address_strings[RPC_DISPLAY_PROTO]);
2797 else
2798 dprintk("RPC: set up xprt to %s (autobind) via %s\n",
2799 xprt->address_strings[RPC_DISPLAY_ADDR],
2800 xprt->address_strings[RPC_DISPLAY_PROTO]);
Chuck Leveredb267a2006-08-22 20:06:18 -04002801
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002802 if (try_module_get(THIS_MODULE))
2803 return xprt;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002804 ret = ERR_PTR(-EINVAL);
2805out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08002806 xs_xprt_free(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002807 return ret;
Chuck Levera246b012005-08-11 16:25:23 -04002808}
2809
Trond Myklebust2881ae72007-12-20 16:03:54 -05002810static const struct rpc_timeout xs_tcp_default_timeout = {
2811 .to_initval = 60 * HZ,
2812 .to_maxval = 60 * HZ,
2813 .to_retries = 2,
2814};
2815
Chuck Lever9903cd12005-08-11 16:25:26 -04002816/**
2817 * xs_setup_tcp - Set up transport to use a TCP socket
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002818 * @args: rpc transport creation arguments
Chuck Lever9903cd12005-08-11 16:25:26 -04002819 *
2820 */
Adrian Bunk483066d2007-10-24 18:24:02 +02002821static struct rpc_xprt *xs_setup_tcp(struct xprt_create *args)
Chuck Levera246b012005-08-11 16:25:23 -04002822{
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002823 struct sockaddr *addr = args->dstaddr;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002824 struct rpc_xprt *xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002825 struct sock_xprt *transport;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002826 struct rpc_xprt *ret;
Trond Myklebustb7993ce2013-04-14 11:42:00 -04002827 unsigned int max_slot_table_size = xprt_max_tcp_slot_table_entries;
2828
2829 if (args->flags & XPRT_CREATE_INFINITE_SLOTS)
2830 max_slot_table_size = RPC_MAX_SLOT_TABLE_LIMIT;
Chuck Levera246b012005-08-11 16:25:23 -04002831
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002832 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries,
Trond Myklebustb7993ce2013-04-14 11:42:00 -04002833 max_slot_table_size);
Chuck Leverc8541ec2006-10-17 14:44:27 -04002834 if (IS_ERR(xprt))
2835 return xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002836 transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002837
Chuck Leverec739ef2006-08-22 20:06:15 -04002838 xprt->prot = IPPROTO_TCP;
Chuck Lever808012f2005-08-25 16:25:49 -07002839 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
Chuck Lever808012f2005-08-25 16:25:49 -07002840 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
Chuck Levera246b012005-08-11 16:25:23 -04002841
Chuck Lever03bf4b72005-08-25 16:25:55 -07002842 xprt->bind_timeout = XS_BIND_TO;
Chuck Lever03bf4b72005-08-25 16:25:55 -07002843 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
2844 xprt->idle_timeout = XS_IDLE_DISC_TO;
Chuck Levera246b012005-08-11 16:25:23 -04002845
Chuck Lever262965f2005-08-11 16:25:56 -04002846 xprt->ops = &xs_tcp_ops;
Trond Myklebustba7392b2007-12-20 16:03:55 -05002847 xprt->timeout = &xs_tcp_default_timeout;
Chuck Levera246b012005-08-11 16:25:23 -04002848
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002849 switch (addr->sa_family) {
2850 case AF_INET:
2851 if (((struct sockaddr_in *)addr)->sin_port != htons(0))
2852 xprt_set_bound(xprt);
2853
Chuck Lever9dc3b092009-08-09 15:09:46 -04002854 INIT_DELAYED_WORK(&transport->connect_worker,
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002855 xs_tcp_setup_socket);
Chuck Lever9dc3b092009-08-09 15:09:46 -04002856 xs_format_peer_addresses(xprt, "tcp", RPCBIND_NETID_TCP);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002857 break;
2858 case AF_INET6:
2859 if (((struct sockaddr_in6 *)addr)->sin6_port != htons(0))
2860 xprt_set_bound(xprt);
2861
Chuck Lever9dc3b092009-08-09 15:09:46 -04002862 INIT_DELAYED_WORK(&transport->connect_worker,
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002863 xs_tcp_setup_socket);
Chuck Lever9dc3b092009-08-09 15:09:46 -04002864 xs_format_peer_addresses(xprt, "tcp", RPCBIND_NETID_TCP6);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002865 break;
2866 default:
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002867 ret = ERR_PTR(-EAFNOSUPPORT);
2868 goto out_err;
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002869 }
2870
Chuck Leverc740eff2009-08-09 15:09:46 -04002871 if (xprt_bound(xprt))
2872 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
2873 xprt->address_strings[RPC_DISPLAY_ADDR],
2874 xprt->address_strings[RPC_DISPLAY_PORT],
2875 xprt->address_strings[RPC_DISPLAY_PROTO]);
2876 else
2877 dprintk("RPC: set up xprt to %s (autobind) via %s\n",
2878 xprt->address_strings[RPC_DISPLAY_ADDR],
2879 xprt->address_strings[RPC_DISPLAY_PROTO]);
2880
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002881 if (try_module_get(THIS_MODULE))
2882 return xprt;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002883 ret = ERR_PTR(-EINVAL);
2884out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08002885 xs_xprt_free(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002886 return ret;
Chuck Levera246b012005-08-11 16:25:23 -04002887}
Chuck Lever282b32e2006-12-05 16:35:51 -05002888
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002889/**
2890 * xs_setup_bc_tcp - Set up transport to use a TCP backchannel socket
2891 * @args: rpc transport creation arguments
2892 *
2893 */
2894static struct rpc_xprt *xs_setup_bc_tcp(struct xprt_create *args)
2895{
2896 struct sockaddr *addr = args->dstaddr;
2897 struct rpc_xprt *xprt;
2898 struct sock_xprt *transport;
2899 struct svc_sock *bc_sock;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002900 struct rpc_xprt *ret;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002901
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002902 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries,
2903 xprt_tcp_slot_table_entries);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002904 if (IS_ERR(xprt))
2905 return xprt;
2906 transport = container_of(xprt, struct sock_xprt, xprt);
2907
2908 xprt->prot = IPPROTO_TCP;
2909 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
2910 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
2911 xprt->timeout = &xs_tcp_default_timeout;
2912
2913 /* backchannel */
2914 xprt_set_bound(xprt);
2915 xprt->bind_timeout = 0;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002916 xprt->reestablish_timeout = 0;
2917 xprt->idle_timeout = 0;
2918
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002919 xprt->ops = &bc_tcp_ops;
2920
2921 switch (addr->sa_family) {
2922 case AF_INET:
2923 xs_format_peer_addresses(xprt, "tcp",
2924 RPCBIND_NETID_TCP);
2925 break;
2926 case AF_INET6:
2927 xs_format_peer_addresses(xprt, "tcp",
2928 RPCBIND_NETID_TCP6);
2929 break;
2930 default:
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002931 ret = ERR_PTR(-EAFNOSUPPORT);
2932 goto out_err;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002933 }
2934
Pavel Emelyanov50fa0d42010-10-05 20:49:35 +04002935 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
2936 xprt->address_strings[RPC_DISPLAY_ADDR],
2937 xprt->address_strings[RPC_DISPLAY_PORT],
2938 xprt->address_strings[RPC_DISPLAY_PROTO]);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002939
2940 /*
J. Bruce Fields99de8ea2010-12-08 12:45:44 -05002941 * Once we've associated a backchannel xprt with a connection,
Weng Meiling28303ca2013-11-30 17:56:44 +08002942 * we want to keep it around as long as the connection lasts,
2943 * in case we need to start using it for a backchannel again;
2944 * this reference won't be dropped until bc_xprt is destroyed.
J. Bruce Fields99de8ea2010-12-08 12:45:44 -05002945 */
2946 xprt_get(xprt);
2947 args->bc_xprt->xpt_bc_xprt = xprt;
2948 xprt->bc_xprt = args->bc_xprt;
2949 bc_sock = container_of(args->bc_xprt, struct svc_sock, sk_xprt);
2950 transport->sock = bc_sock->sk_sock;
2951 transport->inet = bc_sock->sk_sk;
2952
2953 /*
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002954 * Since we don't want connections for the backchannel, we set
2955 * the xprt status to connected
2956 */
2957 xprt_set_connected(xprt);
2958
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002959 if (try_module_get(THIS_MODULE))
2960 return xprt;
Kinglong Mee642aab52014-03-24 12:00:28 +08002961
2962 args->bc_xprt->xpt_bc_xprt = NULL;
J. Bruce Fields99de8ea2010-12-08 12:45:44 -05002963 xprt_put(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002964 ret = ERR_PTR(-EINVAL);
2965out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08002966 xs_xprt_free(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002967 return ret;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002968}
2969
Chuck Lever176e21e2011-05-09 15:22:44 -04002970static struct xprt_class xs_local_transport = {
2971 .list = LIST_HEAD_INIT(xs_local_transport.list),
2972 .name = "named UNIX socket",
2973 .owner = THIS_MODULE,
2974 .ident = XPRT_TRANSPORT_LOCAL,
2975 .setup = xs_setup_local,
2976};
2977
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002978static struct xprt_class xs_udp_transport = {
2979 .list = LIST_HEAD_INIT(xs_udp_transport.list),
2980 .name = "udp",
2981 .owner = THIS_MODULE,
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002982 .ident = XPRT_TRANSPORT_UDP,
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002983 .setup = xs_setup_udp,
2984};
2985
2986static struct xprt_class xs_tcp_transport = {
2987 .list = LIST_HEAD_INIT(xs_tcp_transport.list),
2988 .name = "tcp",
2989 .owner = THIS_MODULE,
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002990 .ident = XPRT_TRANSPORT_TCP,
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002991 .setup = xs_setup_tcp,
2992};
2993
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002994static struct xprt_class xs_bc_tcp_transport = {
2995 .list = LIST_HEAD_INIT(xs_bc_tcp_transport.list),
2996 .name = "tcp NFSv4.1 backchannel",
2997 .owner = THIS_MODULE,
2998 .ident = XPRT_TRANSPORT_BC_TCP,
2999 .setup = xs_setup_bc_tcp,
3000};
3001
Chuck Lever282b32e2006-12-05 16:35:51 -05003002/**
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003003 * init_socket_xprt - set up xprtsock's sysctls, register with RPC client
Chuck Lever282b32e2006-12-05 16:35:51 -05003004 *
3005 */
3006int init_socket_xprt(void)
3007{
Jeff Laytonf895b252014-11-17 16:58:04 -05003008#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Eric W. Biederman2b1bec52007-02-14 00:33:24 -08003009 if (!sunrpc_table_header)
Eric W. Biederman0b4d4142007-02-14 00:34:09 -08003010 sunrpc_table_header = register_sysctl_table(sunrpc_table);
Chuck Leverfbf76682006-12-05 16:35:54 -05003011#endif
3012
Chuck Lever176e21e2011-05-09 15:22:44 -04003013 xprt_register_transport(&xs_local_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003014 xprt_register_transport(&xs_udp_transport);
3015 xprt_register_transport(&xs_tcp_transport);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003016 xprt_register_transport(&xs_bc_tcp_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003017
Chuck Lever282b32e2006-12-05 16:35:51 -05003018 return 0;
3019}
3020
3021/**
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003022 * cleanup_socket_xprt - remove xprtsock's sysctls, unregister
Chuck Lever282b32e2006-12-05 16:35:51 -05003023 *
3024 */
3025void cleanup_socket_xprt(void)
3026{
Jeff Laytonf895b252014-11-17 16:58:04 -05003027#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Chuck Leverfbf76682006-12-05 16:35:54 -05003028 if (sunrpc_table_header) {
3029 unregister_sysctl_table(sunrpc_table_header);
3030 sunrpc_table_header = NULL;
3031 }
3032#endif
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003033
Chuck Lever176e21e2011-05-09 15:22:44 -04003034 xprt_unregister_transport(&xs_local_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003035 xprt_unregister_transport(&xs_udp_transport);
3036 xprt_unregister_transport(&xs_tcp_transport);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003037 xprt_unregister_transport(&xs_bc_tcp_transport);
Chuck Lever282b32e2006-12-05 16:35:51 -05003038}
Trond Myklebustcbf11072009-08-09 15:06:19 -04003039
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003040static int param_set_uint_minmax(const char *val,
3041 const struct kernel_param *kp,
Trond Myklebustcbf11072009-08-09 15:06:19 -04003042 unsigned int min, unsigned int max)
3043{
Daniel Walter00cfaa92014-06-21 13:06:38 +01003044 unsigned int num;
Trond Myklebustcbf11072009-08-09 15:06:19 -04003045 int ret;
3046
3047 if (!val)
3048 return -EINVAL;
Daniel Walter00cfaa92014-06-21 13:06:38 +01003049 ret = kstrtouint(val, 0, &num);
Trond Myklebustcbf11072009-08-09 15:06:19 -04003050 if (ret == -EINVAL || num < min || num > max)
3051 return -EINVAL;
3052 *((unsigned int *)kp->arg) = num;
3053 return 0;
3054}
3055
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003056static int param_set_portnr(const char *val, const struct kernel_param *kp)
Trond Myklebustcbf11072009-08-09 15:06:19 -04003057{
3058 return param_set_uint_minmax(val, kp,
3059 RPC_MIN_RESVPORT,
3060 RPC_MAX_RESVPORT);
3061}
3062
Luis R. Rodriguez9c278472015-05-27 11:09:38 +09303063static const struct kernel_param_ops param_ops_portnr = {
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003064 .set = param_set_portnr,
3065 .get = param_get_uint,
3066};
3067
Trond Myklebustcbf11072009-08-09 15:06:19 -04003068#define param_check_portnr(name, p) \
3069 __param_check(name, p, unsigned int);
3070
3071module_param_named(min_resvport, xprt_min_resvport, portnr, 0644);
3072module_param_named(max_resvport, xprt_max_resvport, portnr, 0644);
3073
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003074static int param_set_slot_table_size(const char *val,
3075 const struct kernel_param *kp)
Trond Myklebustcbf11072009-08-09 15:06:19 -04003076{
3077 return param_set_uint_minmax(val, kp,
3078 RPC_MIN_SLOT_TABLE,
3079 RPC_MAX_SLOT_TABLE);
3080}
3081
Luis R. Rodriguez9c278472015-05-27 11:09:38 +09303082static const struct kernel_param_ops param_ops_slot_table_size = {
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003083 .set = param_set_slot_table_size,
3084 .get = param_get_uint,
3085};
3086
Trond Myklebustcbf11072009-08-09 15:06:19 -04003087#define param_check_slot_table_size(name, p) \
3088 __param_check(name, p, unsigned int);
3089
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003090static int param_set_max_slot_table_size(const char *val,
3091 const struct kernel_param *kp)
3092{
3093 return param_set_uint_minmax(val, kp,
3094 RPC_MIN_SLOT_TABLE,
3095 RPC_MAX_SLOT_TABLE_LIMIT);
3096}
3097
Luis R. Rodriguez9c278472015-05-27 11:09:38 +09303098static const struct kernel_param_ops param_ops_max_slot_table_size = {
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003099 .set = param_set_max_slot_table_size,
3100 .get = param_get_uint,
3101};
3102
3103#define param_check_max_slot_table_size(name, p) \
3104 __param_check(name, p, unsigned int);
3105
Trond Myklebustcbf11072009-08-09 15:06:19 -04003106module_param_named(tcp_slot_table_entries, xprt_tcp_slot_table_entries,
3107 slot_table_size, 0644);
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003108module_param_named(tcp_max_slot_table_entries, xprt_max_tcp_slot_table_entries,
3109 max_slot_table_size, 0644);
Trond Myklebustcbf11072009-08-09 15:06:19 -04003110module_param_named(udp_slot_table_entries, xprt_udp_slot_table_entries,
3111 slot_table_size, 0644);
3112