blob: e57d8ed2c4d8793bac3aaeaf03a1875f1217b24e [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 Myklebust7d1e8252009-03-11 14:38:03 -040066#define XS_TCP_LINGER_TO (15U * HZ)
Trond Myklebust25fe6142009-03-11 14:38:03 -040067static unsigned int xs_tcp_fin_timeout __read_mostly = XS_TCP_LINGER_TO;
Trond Myklebust7d1e8252009-03-11 14:38:03 -040068
Chuck Leverc556b752005-11-01 12:24:48 -050069/*
Chuck Leverfbf76682006-12-05 16:35:54 -050070 * We can register our own files under /proc/sys/sunrpc by
71 * calling register_sysctl_table() again. The files in that
72 * directory become the union of all files registered there.
73 *
74 * We simply need to make sure that we don't collide with
75 * someone else's file names!
76 */
77
Jeff Laytonf895b252014-11-17 16:58:04 -050078#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Chuck Leverfbf76682006-12-05 16:35:54 -050079
80static 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);
Jason Baronf279cd02014-09-24 18:08:00 +0000530 if (likely(sent > 0) || status == 0) {
531 req->rq_bytes_sent += sent;
532 req->rq_xmit_bytes_sent += sent;
Chuck Lever176e21e2011-05-09 15:22:44 -0400533 if (likely(req->rq_bytes_sent >= req->rq_slen)) {
534 req->rq_bytes_sent = 0;
535 return 0;
536 }
537 status = -EAGAIN;
538 }
539
540 switch (status) {
Trond Myklebust3601c4a2014-06-30 13:42:19 -0400541 case -ENOBUFS:
Chuck Lever176e21e2011-05-09 15:22:44 -0400542 case -EAGAIN:
543 status = xs_nospace(task);
544 break;
545 default:
546 dprintk("RPC: sendmsg returned unrecognized error %d\n",
547 -status);
548 case -EPIPE:
549 xs_close(xprt);
550 status = -ENOTCONN;
551 }
552
553 return status;
554}
555
556/**
Chuck Lever262965f2005-08-11 16:25:56 -0400557 * xs_udp_send_request - write an RPC request to a UDP socket
558 * @task: address of RPC task that manages the state of an RPC request
559 *
560 * Return values:
561 * 0: The request has been sent
562 * EAGAIN: The socket was blocked, please call again later to
563 * complete the request
564 * ENOTCONN: Caller needs to invoke connect logic then call again
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300565 * other: Some other error occurred, the request was not sent
Chuck Lever262965f2005-08-11 16:25:56 -0400566 */
567static int xs_udp_send_request(struct rpc_task *task)
568{
569 struct rpc_rqst *req = task->tk_rqstp;
570 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500571 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262965f2005-08-11 16:25:56 -0400572 struct xdr_buf *xdr = &req->rq_snd_buf;
Jason Baronf279cd02014-09-24 18:08:00 +0000573 int sent = 0;
Chuck Lever262965f2005-08-11 16:25:56 -0400574 int status;
Chuck Levera246b012005-08-11 16:25:23 -0400575
Chuck Lever9903cd12005-08-11 16:25:26 -0400576 xs_pktdump("packet data:",
Chuck Levera246b012005-08-11 16:25:23 -0400577 req->rq_svec->iov_base,
578 req->rq_svec->iov_len);
579
Trond Myklebust01d37c42009-03-11 14:09:39 -0400580 if (!xprt_bound(xprt))
581 return -ENOTCONN;
Jason Baronf279cd02014-09-24 18:08:00 +0000582 status = xs_sendpages(transport->sock, xs_addr(xprt), xprt->addrlen,
583 xdr, req->rq_bytes_sent, true, &sent);
Chuck Levera246b012005-08-11 16:25:23 -0400584
Chuck Lever46121cf2007-01-31 12:14:08 -0500585 dprintk("RPC: xs_udp_send_request(%u) = %d\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400586 xdr->len - req->rq_bytes_sent, status);
Chuck Levera246b012005-08-11 16:25:23 -0400587
Jason Baron3dedbb52014-09-24 18:08:04 +0000588 /* firewall is blocking us, don't return -EAGAIN or we end up looping */
589 if (status == -EPERM)
590 goto process_status;
591
Jason Baronf279cd02014-09-24 18:08:00 +0000592 if (sent > 0 || status == 0) {
593 req->rq_xmit_bytes_sent += sent;
594 if (sent >= req->rq_slen)
Trond Myklebust21997002007-10-01 11:43:37 -0400595 return 0;
596 /* Still some bytes left; set up for a retry later. */
Chuck Lever262965f2005-08-11 16:25:56 -0400597 status = -EAGAIN;
Trond Myklebust21997002007-10-01 11:43:37 -0400598 }
Chuck Levera246b012005-08-11 16:25:23 -0400599
Jason Baron3dedbb52014-09-24 18:08:04 +0000600process_status:
Chuck Lever262965f2005-08-11 16:25:56 -0400601 switch (status) {
Trond Myklebustfba91af2009-03-11 14:06:41 -0400602 case -ENOTSOCK:
603 status = -ENOTCONN;
604 /* Should we call xs_close() here? */
605 break;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400606 case -EAGAIN:
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400607 status = xs_nospace(task);
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400608 break;
Trond Myklebustc8485e42009-03-11 14:37:59 -0400609 default:
610 dprintk("RPC: sendmsg returned unrecognized error %d\n",
611 -status);
Chuck Lever262965f2005-08-11 16:25:56 -0400612 case -ENETUNREACH:
Trond Myklebust3601c4a2014-06-30 13:42:19 -0400613 case -ENOBUFS:
Chuck Lever262965f2005-08-11 16:25:56 -0400614 case -EPIPE:
Chuck Levera246b012005-08-11 16:25:23 -0400615 case -ECONNREFUSED:
Jason Baron3dedbb52014-09-24 18:08:04 +0000616 case -EPERM:
Chuck Levera246b012005-08-11 16:25:23 -0400617 /* When the server has died, an ICMP port unreachable message
Chuck Lever9903cd12005-08-11 16:25:26 -0400618 * prompts ECONNREFUSED. */
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400619 clear_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags);
Chuck Levera246b012005-08-11 16:25:23 -0400620 }
Bian Naimeng5fe46e92010-03-08 14:49:01 +0800621
Chuck Lever262965f2005-08-11 16:25:56 -0400622 return status;
Chuck Levera246b012005-08-11 16:25:23 -0400623}
624
Trond Myklebuste06799f2007-11-05 15:44:12 -0500625/**
626 * xs_tcp_shutdown - gracefully shut down a TCP socket
627 * @xprt: transport
628 *
629 * Initiates a graceful shutdown of the TCP socket by calling the
630 * equivalent of shutdown(SHUT_WR);
631 */
632static void xs_tcp_shutdown(struct rpc_xprt *xprt)
633{
634 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
635 struct socket *sock = transport->sock;
636
Trond Myklebust40b5ea02013-09-04 12:16:23 -0400637 if (sock != NULL) {
Trond Myklebuste06799f2007-11-05 15:44:12 -0500638 kernel_sock_shutdown(sock, SHUT_WR);
Trond Myklebust40b5ea02013-09-04 12:16:23 -0400639 trace_rpc_socket_shutdown(xprt, sock);
640 }
Trond Myklebuste06799f2007-11-05 15:44:12 -0500641}
642
Chuck Lever9903cd12005-08-11 16:25:26 -0400643/**
Chuck Lever262965f2005-08-11 16:25:56 -0400644 * xs_tcp_send_request - write an RPC request to a TCP socket
Chuck Lever9903cd12005-08-11 16:25:26 -0400645 * @task: address of RPC task that manages the state of an RPC request
646 *
647 * Return values:
Chuck Lever262965f2005-08-11 16:25:56 -0400648 * 0: The request has been sent
649 * EAGAIN: The socket was blocked, please call again later to
650 * complete the request
651 * ENOTCONN: Caller needs to invoke connect logic then call again
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300652 * other: Some other error occurred, the request was not sent
Chuck Lever9903cd12005-08-11 16:25:26 -0400653 *
654 * XXX: In the case of soft timeouts, should we eventually give up
Chuck Lever262965f2005-08-11 16:25:56 -0400655 * if sendmsg is not able to make progress?
Chuck Lever9903cd12005-08-11 16:25:26 -0400656 */
Chuck Lever262965f2005-08-11 16:25:56 -0400657static int xs_tcp_send_request(struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -0400658{
659 struct rpc_rqst *req = task->tk_rqstp;
660 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500661 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262965f2005-08-11 16:25:56 -0400662 struct xdr_buf *xdr = &req->rq_snd_buf;
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500663 bool zerocopy = true;
Chuck Leverb595bb12007-08-06 11:56:42 -0400664 int status;
Jason Baronf279cd02014-09-24 18:08:00 +0000665 int sent;
Chuck Levera246b012005-08-11 16:25:23 -0400666
Chuck Lever61677ee2011-05-09 15:22:34 -0400667 xs_encode_stream_record_marker(&req->rq_snd_buf);
Chuck Levera246b012005-08-11 16:25:23 -0400668
Chuck Lever262965f2005-08-11 16:25:56 -0400669 xs_pktdump("packet data:",
670 req->rq_svec->iov_base,
671 req->rq_svec->iov_len);
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500672 /* Don't use zero copy if this is a resend. If the RPC call
673 * completes while the socket holds a reference to the pages,
674 * then we may end up resending corrupted data.
675 */
676 if (task->tk_flags & RPC_TASK_SENT)
677 zerocopy = false;
Chuck Levera246b012005-08-11 16:25:23 -0400678
679 /* Continue transmitting the packet/record. We must be careful
680 * to cope with writespace callbacks arriving _after_ we have
Chuck Lever262965f2005-08-11 16:25:56 -0400681 * called sendmsg(). */
Chuck Levera246b012005-08-11 16:25:23 -0400682 while (1) {
Jason Baronf279cd02014-09-24 18:08:00 +0000683 sent = 0;
684 status = xs_sendpages(transport->sock, NULL, 0, xdr,
685 req->rq_bytes_sent, zerocopy, &sent);
Chuck Levera246b012005-08-11 16:25:23 -0400686
Chuck Lever46121cf2007-01-31 12:14:08 -0500687 dprintk("RPC: xs_tcp_send_request(%u) = %d\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400688 xdr->len - req->rq_bytes_sent, status);
689
Jason Baronf279cd02014-09-24 18:08:00 +0000690 if (unlikely(sent == 0 && status < 0))
Chuck Levera246b012005-08-11 16:25:23 -0400691 break;
692
Chuck Lever262965f2005-08-11 16:25:56 -0400693 /* If we've sent the entire packet, immediately
694 * reset the count of bytes sent. */
Jason Baronf279cd02014-09-24 18:08:00 +0000695 req->rq_bytes_sent += sent;
696 req->rq_xmit_bytes_sent += sent;
Chuck Lever262965f2005-08-11 16:25:56 -0400697 if (likely(req->rq_bytes_sent >= req->rq_slen)) {
698 req->rq_bytes_sent = 0;
699 return 0;
Chuck Levera246b012005-08-11 16:25:23 -0400700 }
701
Jason Baronf279cd02014-09-24 18:08:00 +0000702 if (sent != 0)
Trond Myklebust06b4b682008-04-16 16:51:38 -0400703 continue;
Chuck Levera246b012005-08-11 16:25:23 -0400704 status = -EAGAIN;
Trond Myklebust06b4b682008-04-16 16:51:38 -0400705 break;
Chuck Levera246b012005-08-11 16:25:23 -0400706 }
707
Chuck Lever262965f2005-08-11 16:25:56 -0400708 switch (status) {
Trond Myklebustfba91af2009-03-11 14:06:41 -0400709 case -ENOTSOCK:
710 status = -ENOTCONN;
711 /* Should we call xs_close() here? */
712 break;
Trond Myklebust3601c4a2014-06-30 13:42:19 -0400713 case -ENOBUFS:
Chuck Lever262965f2005-08-11 16:25:56 -0400714 case -EAGAIN:
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400715 status = xs_nospace(task);
Chuck Lever262965f2005-08-11 16:25:56 -0400716 break;
717 default:
Chuck Lever46121cf2007-01-31 12:14:08 -0500718 dprintk("RPC: sendmsg returned unrecognized error %d\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400719 -status);
Chuck Lever262965f2005-08-11 16:25:56 -0400720 case -ECONNRESET:
Trond Myklebuste06799f2007-11-05 15:44:12 -0500721 xs_tcp_shutdown(xprt);
Chuck Lever262965f2005-08-11 16:25:56 -0400722 case -ECONNREFUSED:
723 case -ENOTCONN:
Trond Myklebust3913c782015-02-08 21:44:04 -0500724 case -EADDRINUSE:
Trond Myklebustb9d2bb22012-10-23 11:40:02 -0400725 case -EPIPE:
Chuck Lever262965f2005-08-11 16:25:56 -0400726 clear_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags);
Chuck Levera246b012005-08-11 16:25:23 -0400727 }
Bian Naimeng5fe46e92010-03-08 14:49:01 +0800728
Chuck Levera246b012005-08-11 16:25:23 -0400729 return status;
730}
731
Chuck Lever9903cd12005-08-11 16:25:26 -0400732/**
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400733 * xs_tcp_release_xprt - clean up after a tcp transmission
734 * @xprt: transport
735 * @task: rpc task
736 *
737 * This cleans up if an error causes us to abort the transmission of a request.
738 * In this case, the socket may need to be reset in order to avoid confusing
739 * the server.
740 */
741static void xs_tcp_release_xprt(struct rpc_xprt *xprt, struct rpc_task *task)
742{
743 struct rpc_rqst *req;
744
745 if (task != xprt->snd_task)
746 return;
747 if (task == NULL)
748 goto out_release;
749 req = task->tk_rqstp;
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400750 if (req == NULL)
751 goto out_release;
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400752 if (req->rq_bytes_sent == 0)
753 goto out_release;
754 if (req->rq_bytes_sent == req->rq_snd_buf.len)
755 goto out_release;
Trond Myklebusta4f08352013-01-08 09:10:21 -0500756 set_bit(XPRT_CLOSE_WAIT, &xprt->state);
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400757out_release:
758 xprt_release_xprt(xprt, task);
759}
760
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400761static void xs_save_old_callbacks(struct sock_xprt *transport, struct sock *sk)
762{
763 transport->old_data_ready = sk->sk_data_ready;
764 transport->old_state_change = sk->sk_state_change;
765 transport->old_write_space = sk->sk_write_space;
Trond Myklebust21180712013-12-31 13:22:59 -0500766 transport->old_error_report = sk->sk_error_report;
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400767}
768
769static void xs_restore_old_callbacks(struct sock_xprt *transport, struct sock *sk)
770{
771 sk->sk_data_ready = transport->old_data_ready;
772 sk->sk_state_change = transport->old_state_change;
773 sk->sk_write_space = transport->old_write_space;
Trond Myklebust21180712013-12-31 13:22:59 -0500774 sk->sk_error_report = transport->old_error_report;
775}
776
777/**
778 * xs_error_report - callback to handle TCP socket state errors
779 * @sk: socket
780 *
781 * Note: we don't call sock_error() since there may be a rpc_task
782 * using the socket, and so we don't want to clear sk->sk_err.
783 */
784static void xs_error_report(struct sock *sk)
785{
786 struct rpc_xprt *xprt;
787 int err;
788
789 read_lock_bh(&sk->sk_callback_lock);
790 if (!(xprt = xprt_from_sock(sk)))
791 goto out;
792
793 err = -sk->sk_err;
794 if (err == 0)
795 goto out;
796 dprintk("RPC: xs_error_report client %p, error=%d...\n",
797 xprt, -err);
Trond Myklebuste8353c762013-12-31 13:39:22 -0500798 trace_rpc_socket_error(xprt, sk->sk_socket, err);
Benjamin Coddingtona7434192014-09-23 12:26:19 -0400799 if (test_bit(XPRT_CONNECTION_REUSE, &xprt->state))
800 goto out;
Trond Myklebust21180712013-12-31 13:22:59 -0500801 xprt_wake_pending_tasks(xprt, err);
802 out:
803 read_unlock_bh(&sk->sk_callback_lock);
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400804}
805
Trond Myklebust6cc7e902015-02-08 18:35:25 -0500806static void xs_sock_reset_connection_flags(struct rpc_xprt *xprt)
807{
808 smp_mb__before_atomic();
809 clear_bit(XPRT_CONNECTION_ABORT, &xprt->state);
810 clear_bit(XPRT_CONNECTION_CLOSE, &xprt->state);
811 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
812 clear_bit(XPRT_CLOSING, &xprt->state);
813 smp_mb__after_atomic();
814}
815
Chuck Leverfe315e762009-03-11 14:10:21 -0400816static void xs_reset_transport(struct sock_xprt *transport)
Chuck Levera246b012005-08-11 16:25:23 -0400817{
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500818 struct socket *sock = transport->sock;
819 struct sock *sk = transport->inet;
Trond Myklebust6cc7e902015-02-08 18:35:25 -0500820 struct rpc_xprt *xprt = &transport->xprt;
Chuck Levera246b012005-08-11 16:25:23 -0400821
Chuck Leverfe315e762009-03-11 14:10:21 -0400822 if (sk == NULL)
823 return;
Chuck Lever9903cd12005-08-11 16:25:26 -0400824
Chuck Levera246b012005-08-11 16:25:23 -0400825 write_lock_bh(&sk->sk_callback_lock);
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500826 transport->inet = NULL;
827 transport->sock = NULL;
Chuck Levera246b012005-08-11 16:25:23 -0400828
Chuck Lever9903cd12005-08-11 16:25:26 -0400829 sk->sk_user_data = NULL;
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400830
831 xs_restore_old_callbacks(transport, sk);
Chuck Levera246b012005-08-11 16:25:23 -0400832 write_unlock_bh(&sk->sk_callback_lock);
Trond Myklebust6cc7e902015-02-08 18:35:25 -0500833 xs_sock_reset_connection_flags(xprt);
Chuck Levera246b012005-08-11 16:25:23 -0400834
Trond Myklebust6cc7e902015-02-08 18:35:25 -0500835 trace_rpc_socket_close(xprt, sock);
Chuck Levera246b012005-08-11 16:25:23 -0400836 sock_release(sock);
Chuck Leverfe315e762009-03-11 14:10:21 -0400837}
838
839/**
840 * xs_close - close a socket
841 * @xprt: transport
842 *
843 * This is used when all requests are complete; ie, no DRC state remains
844 * on the server we want to save.
Trond Myklebustf75e6742009-04-21 17:18:20 -0400845 *
846 * The caller _must_ be holding XPRT_LOCKED in order to avoid issues with
847 * xs_reset_transport() zeroing the socket from underneath a writer.
Chuck Leverfe315e762009-03-11 14:10:21 -0400848 */
849static void xs_close(struct rpc_xprt *xprt)
850{
851 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
852
853 dprintk("RPC: xs_close xprt %p\n", xprt);
854
855 xs_reset_transport(transport);
Neil Brown61d0a8e2009-09-23 14:36:37 -0400856 xprt->reestablish_timeout = 0;
Chuck Leverfe315e762009-03-11 14:10:21 -0400857
Trond Myklebust62da3b22007-11-06 18:44:20 -0500858 xprt_disconnect_done(xprt);
Chuck Levera246b012005-08-11 16:25:23 -0400859}
860
Trond Myklebustf75e6742009-04-21 17:18:20 -0400861static void xs_tcp_close(struct rpc_xprt *xprt)
862{
863 if (test_and_clear_bit(XPRT_CONNECTION_CLOSE, &xprt->state))
864 xs_close(xprt);
865 else
866 xs_tcp_shutdown(xprt);
867}
868
Kinglong Mee315f3812014-03-24 11:07:22 +0800869static void xs_xprt_free(struct rpc_xprt *xprt)
870{
871 xs_free_peer_addresses(xprt);
872 xprt_free(xprt);
873}
874
Chuck Lever9903cd12005-08-11 16:25:26 -0400875/**
876 * xs_destroy - prepare to shutdown a transport
877 * @xprt: doomed transport
878 *
879 */
880static void xs_destroy(struct rpc_xprt *xprt)
Chuck Levera246b012005-08-11 16:25:23 -0400881{
Chuck Lever46121cf2007-01-31 12:14:08 -0500882 dprintk("RPC: xs_destroy xprt %p\n", xprt);
Chuck Lever9903cd12005-08-11 16:25:26 -0400883
Trond Myklebusta1311d82013-10-31 09:18:49 -0400884 xs_close(xprt);
Kinglong Mee315f3812014-03-24 11:07:22 +0800885 xs_xprt_free(xprt);
Trond Myklebusta1311d82013-10-31 09:18:49 -0400886 module_put(THIS_MODULE);
Chuck Levera246b012005-08-11 16:25:23 -0400887}
888
Chuck Lever176e21e2011-05-09 15:22:44 -0400889static int xs_local_copy_to_xdr(struct xdr_buf *xdr, struct sk_buff *skb)
890{
891 struct xdr_skb_reader desc = {
892 .skb = skb,
893 .offset = sizeof(rpc_fraghdr),
894 .count = skb->len - sizeof(rpc_fraghdr),
895 };
896
897 if (xdr_partial_copy_from_skb(xdr, 0, &desc, xdr_skb_read_bits) < 0)
898 return -1;
899 if (desc.count)
900 return -1;
901 return 0;
902}
903
904/**
905 * xs_local_data_ready - "data ready" callback for AF_LOCAL sockets
906 * @sk: socket with data to read
907 * @len: how much data to read
908 *
909 * Currently this assumes we can read the whole reply in a single gulp.
910 */
David S. Miller676d2362014-04-11 16:15:36 -0400911static void xs_local_data_ready(struct sock *sk)
Chuck Lever176e21e2011-05-09 15:22:44 -0400912{
913 struct rpc_task *task;
914 struct rpc_xprt *xprt;
915 struct rpc_rqst *rovr;
916 struct sk_buff *skb;
917 int err, repsize, copied;
918 u32 _xid;
919 __be32 *xp;
920
921 read_lock_bh(&sk->sk_callback_lock);
922 dprintk("RPC: %s...\n", __func__);
923 xprt = xprt_from_sock(sk);
924 if (xprt == NULL)
925 goto out;
926
927 skb = skb_recv_datagram(sk, 0, 1, &err);
928 if (skb == NULL)
929 goto out;
930
Chuck Lever176e21e2011-05-09 15:22:44 -0400931 repsize = skb->len - sizeof(rpc_fraghdr);
932 if (repsize < 4) {
933 dprintk("RPC: impossible RPC reply size %d\n", repsize);
934 goto dropit;
935 }
936
937 /* Copy the XID from the skb... */
938 xp = skb_header_pointer(skb, sizeof(rpc_fraghdr), sizeof(_xid), &_xid);
939 if (xp == NULL)
940 goto dropit;
941
942 /* Look up and lock the request corresponding to the given XID */
943 spin_lock(&xprt->transport_lock);
944 rovr = xprt_lookup_rqst(xprt, *xp);
945 if (!rovr)
946 goto out_unlock;
947 task = rovr->rq_task;
948
949 copied = rovr->rq_private_buf.buflen;
950 if (copied > repsize)
951 copied = repsize;
952
953 if (xs_local_copy_to_xdr(&rovr->rq_private_buf, skb)) {
954 dprintk("RPC: sk_buff copy failed\n");
955 goto out_unlock;
956 }
957
958 xprt_complete_rqst(task, copied);
959
960 out_unlock:
961 spin_unlock(&xprt->transport_lock);
962 dropit:
963 skb_free_datagram(sk, skb);
964 out:
965 read_unlock_bh(&sk->sk_callback_lock);
966}
967
Chuck Lever9903cd12005-08-11 16:25:26 -0400968/**
969 * xs_udp_data_ready - "data ready" callback for UDP sockets
970 * @sk: socket with data to read
971 * @len: how much data to read
972 *
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{
1039 set_bit(XPRT_CONNECTION_CLOSE, &xprt->state);
1040 xprt_force_disconnect(xprt);
1041}
1042
Chuck Leverdd456472006-12-05 16:35:44 -05001043static inline void xs_tcp_read_fraghdr(struct rpc_xprt *xprt, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001044{
Chuck Lever51971132006-12-05 16:35:19 -05001045 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001046 size_t len, used;
1047 char *p;
1048
Chuck Lever51971132006-12-05 16:35:19 -05001049 p = ((char *) &transport->tcp_fraghdr) + transport->tcp_offset;
1050 len = sizeof(transport->tcp_fraghdr) - transport->tcp_offset;
Chuck Lever9d292312006-12-05 16:35:41 -05001051 used = xdr_skb_read_bits(desc, p, len);
Chuck Lever51971132006-12-05 16:35:19 -05001052 transport->tcp_offset += used;
Chuck Levera246b012005-08-11 16:25:23 -04001053 if (used != len)
1054 return;
Chuck Lever808012f2005-08-25 16:25:49 -07001055
Chuck Lever51971132006-12-05 16:35:19 -05001056 transport->tcp_reclen = ntohl(transport->tcp_fraghdr);
1057 if (transport->tcp_reclen & RPC_LAST_STREAM_FRAGMENT)
Chuck Levere136d092006-12-05 16:35:23 -05001058 transport->tcp_flags |= TCP_RCV_LAST_FRAG;
Chuck Levera246b012005-08-11 16:25:23 -04001059 else
Chuck Levere136d092006-12-05 16:35:23 -05001060 transport->tcp_flags &= ~TCP_RCV_LAST_FRAG;
Chuck Lever51971132006-12-05 16:35:19 -05001061 transport->tcp_reclen &= RPC_FRAGMENT_SIZE_MASK;
Chuck Lever808012f2005-08-25 16:25:49 -07001062
Chuck Levere136d092006-12-05 16:35:23 -05001063 transport->tcp_flags &= ~TCP_RCV_COPY_FRAGHDR;
Chuck Lever51971132006-12-05 16:35:19 -05001064 transport->tcp_offset = 0;
Chuck Lever808012f2005-08-25 16:25:49 -07001065
Chuck Levera246b012005-08-11 16:25:23 -04001066 /* Sanity check of the record length */
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001067 if (unlikely(transport->tcp_reclen < 8)) {
Chuck Lever46121cf2007-01-31 12:14:08 -05001068 dprintk("RPC: invalid TCP record fragment length\n");
Trond Myklebusta519fc72012-09-12 16:49:15 -04001069 xs_tcp_force_close(xprt);
Chuck Lever9903cd12005-08-11 16:25:26 -04001070 return;
Chuck Levera246b012005-08-11 16:25:23 -04001071 }
Chuck Lever46121cf2007-01-31 12:14:08 -05001072 dprintk("RPC: reading TCP record fragment of length %d\n",
Chuck Lever51971132006-12-05 16:35:19 -05001073 transport->tcp_reclen);
Chuck Levera246b012005-08-11 16:25:23 -04001074}
1075
Chuck Lever51971132006-12-05 16:35:19 -05001076static void xs_tcp_check_fraghdr(struct sock_xprt *transport)
Chuck Levera246b012005-08-11 16:25:23 -04001077{
Chuck Lever51971132006-12-05 16:35:19 -05001078 if (transport->tcp_offset == transport->tcp_reclen) {
Chuck Levere136d092006-12-05 16:35:23 -05001079 transport->tcp_flags |= TCP_RCV_COPY_FRAGHDR;
Chuck Lever51971132006-12-05 16:35:19 -05001080 transport->tcp_offset = 0;
Chuck Levere136d092006-12-05 16:35:23 -05001081 if (transport->tcp_flags & TCP_RCV_LAST_FRAG) {
1082 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
1083 transport->tcp_flags |= TCP_RCV_COPY_XID;
Chuck Lever51971132006-12-05 16:35:19 -05001084 transport->tcp_copied = 0;
Chuck Levera246b012005-08-11 16:25:23 -04001085 }
1086 }
1087}
1088
Chuck Leverdd456472006-12-05 16:35:44 -05001089static inline void xs_tcp_read_xid(struct sock_xprt *transport, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001090{
1091 size_t len, used;
1092 char *p;
1093
Chuck Lever51971132006-12-05 16:35:19 -05001094 len = sizeof(transport->tcp_xid) - transport->tcp_offset;
Chuck Lever46121cf2007-01-31 12:14:08 -05001095 dprintk("RPC: reading XID (%Zu bytes)\n", len);
Chuck Lever51971132006-12-05 16:35:19 -05001096 p = ((char *) &transport->tcp_xid) + transport->tcp_offset;
Chuck Lever9d292312006-12-05 16:35:41 -05001097 used = xdr_skb_read_bits(desc, p, len);
Chuck Lever51971132006-12-05 16:35:19 -05001098 transport->tcp_offset += used;
Chuck Levera246b012005-08-11 16:25:23 -04001099 if (used != len)
1100 return;
Chuck Levere136d092006-12-05 16:35:23 -05001101 transport->tcp_flags &= ~TCP_RCV_COPY_XID;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001102 transport->tcp_flags |= TCP_RCV_READ_CALLDIR;
Chuck Lever51971132006-12-05 16:35:19 -05001103 transport->tcp_copied = 4;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001104 dprintk("RPC: reading %s XID %08x\n",
1105 (transport->tcp_flags & TCP_RPC_REPLY) ? "reply for"
1106 : "request with",
Chuck Lever51971132006-12-05 16:35:19 -05001107 ntohl(transport->tcp_xid));
1108 xs_tcp_check_fraghdr(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001109}
1110
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001111static inline void xs_tcp_read_calldir(struct sock_xprt *transport,
1112 struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001113{
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001114 size_t len, used;
1115 u32 offset;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001116 char *p;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001117
1118 /*
1119 * We want transport->tcp_offset to be 8 at the end of this routine
1120 * (4 bytes for the xid and 4 bytes for the call/reply flag).
1121 * When this function is called for the first time,
1122 * transport->tcp_offset is 4 (after having already read the xid).
1123 */
1124 offset = transport->tcp_offset - sizeof(transport->tcp_xid);
Trond Myklebustb76ce562010-06-16 13:57:32 -04001125 len = sizeof(transport->tcp_calldir) - offset;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001126 dprintk("RPC: reading CALL/REPLY flag (%Zu bytes)\n", len);
Trond Myklebustb76ce562010-06-16 13:57:32 -04001127 p = ((char *) &transport->tcp_calldir) + offset;
1128 used = xdr_skb_read_bits(desc, p, len);
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001129 transport->tcp_offset += used;
1130 if (used != len)
1131 return;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001132 transport->tcp_flags &= ~TCP_RCV_READ_CALLDIR;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001133 /*
1134 * We don't yet have the XDR buffer, so we will write the calldir
1135 * out after we get the buffer from the 'struct rpc_rqst'
1136 */
Trond Myklebustb76ce562010-06-16 13:57:32 -04001137 switch (ntohl(transport->tcp_calldir)) {
1138 case RPC_REPLY:
1139 transport->tcp_flags |= TCP_RCV_COPY_CALLDIR;
1140 transport->tcp_flags |= TCP_RCV_COPY_DATA;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001141 transport->tcp_flags |= TCP_RPC_REPLY;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001142 break;
1143 case RPC_CALL:
1144 transport->tcp_flags |= TCP_RCV_COPY_CALLDIR;
1145 transport->tcp_flags |= TCP_RCV_COPY_DATA;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001146 transport->tcp_flags &= ~TCP_RPC_REPLY;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001147 break;
1148 default:
1149 dprintk("RPC: invalid request message type\n");
Trond Myklebusta519fc72012-09-12 16:49:15 -04001150 xs_tcp_force_close(&transport->xprt);
Trond Myklebustb76ce562010-06-16 13:57:32 -04001151 }
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001152 xs_tcp_check_fraghdr(transport);
1153}
1154
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001155static inline void xs_tcp_read_common(struct rpc_xprt *xprt,
1156 struct xdr_skb_reader *desc,
1157 struct rpc_rqst *req)
Chuck Levera246b012005-08-11 16:25:23 -04001158{
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001159 struct sock_xprt *transport =
1160 container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001161 struct xdr_buf *rcvbuf;
1162 size_t len;
1163 ssize_t r;
1164
Chuck Levera246b012005-08-11 16:25:23 -04001165 rcvbuf = &req->rq_private_buf;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001166
1167 if (transport->tcp_flags & TCP_RCV_COPY_CALLDIR) {
1168 /*
1169 * Save the RPC direction in the XDR buffer
1170 */
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001171 memcpy(rcvbuf->head[0].iov_base + transport->tcp_copied,
Trond Myklebustb76ce562010-06-16 13:57:32 -04001172 &transport->tcp_calldir,
1173 sizeof(transport->tcp_calldir));
1174 transport->tcp_copied += sizeof(transport->tcp_calldir);
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001175 transport->tcp_flags &= ~TCP_RCV_COPY_CALLDIR;
Chuck Levera246b012005-08-11 16:25:23 -04001176 }
1177
Chuck Levera246b012005-08-11 16:25:23 -04001178 len = desc->count;
Chuck Lever51971132006-12-05 16:35:19 -05001179 if (len > transport->tcp_reclen - transport->tcp_offset) {
Chuck Leverdd456472006-12-05 16:35:44 -05001180 struct xdr_skb_reader my_desc;
Chuck Levera246b012005-08-11 16:25:23 -04001181
Chuck Lever51971132006-12-05 16:35:19 -05001182 len = transport->tcp_reclen - transport->tcp_offset;
Chuck Levera246b012005-08-11 16:25:23 -04001183 memcpy(&my_desc, desc, sizeof(my_desc));
1184 my_desc.count = len;
Chuck Lever51971132006-12-05 16:35:19 -05001185 r = xdr_partial_copy_from_skb(rcvbuf, transport->tcp_copied,
Chuck Lever9d292312006-12-05 16:35:41 -05001186 &my_desc, xdr_skb_read_bits);
Chuck Levera246b012005-08-11 16:25:23 -04001187 desc->count -= r;
1188 desc->offset += r;
1189 } else
Chuck Lever51971132006-12-05 16:35:19 -05001190 r = xdr_partial_copy_from_skb(rcvbuf, transport->tcp_copied,
Chuck Lever9d292312006-12-05 16:35:41 -05001191 desc, xdr_skb_read_bits);
Chuck Levera246b012005-08-11 16:25:23 -04001192
1193 if (r > 0) {
Chuck Lever51971132006-12-05 16:35:19 -05001194 transport->tcp_copied += r;
1195 transport->tcp_offset += r;
Chuck Levera246b012005-08-11 16:25:23 -04001196 }
1197 if (r != len) {
1198 /* Error when copying to the receive buffer,
1199 * usually because we weren't able to allocate
1200 * additional buffer pages. All we can do now
Chuck Levere136d092006-12-05 16:35:23 -05001201 * is turn off TCP_RCV_COPY_DATA, so the request
Chuck Levera246b012005-08-11 16:25:23 -04001202 * will not receive any additional updates,
1203 * and time out.
1204 * Any remaining data from this record will
1205 * be discarded.
1206 */
Chuck Levere136d092006-12-05 16:35:23 -05001207 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Lever46121cf2007-01-31 12:14:08 -05001208 dprintk("RPC: XID %08x truncated request\n",
Chuck Lever51971132006-12-05 16:35:19 -05001209 ntohl(transport->tcp_xid));
Chuck Lever46121cf2007-01-31 12:14:08 -05001210 dprintk("RPC: xprt = %p, tcp_copied = %lu, "
1211 "tcp_offset = %u, tcp_reclen = %u\n",
1212 xprt, transport->tcp_copied,
1213 transport->tcp_offset, transport->tcp_reclen);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001214 return;
Chuck Levera246b012005-08-11 16:25:23 -04001215 }
1216
Chuck Lever46121cf2007-01-31 12:14:08 -05001217 dprintk("RPC: XID %08x read %Zd bytes\n",
Chuck Lever51971132006-12-05 16:35:19 -05001218 ntohl(transport->tcp_xid), r);
Chuck Lever46121cf2007-01-31 12:14:08 -05001219 dprintk("RPC: xprt = %p, tcp_copied = %lu, tcp_offset = %u, "
1220 "tcp_reclen = %u\n", xprt, transport->tcp_copied,
1221 transport->tcp_offset, transport->tcp_reclen);
Chuck Levera246b012005-08-11 16:25:23 -04001222
Chuck Lever51971132006-12-05 16:35:19 -05001223 if (transport->tcp_copied == req->rq_private_buf.buflen)
Chuck Levere136d092006-12-05 16:35:23 -05001224 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Lever51971132006-12-05 16:35:19 -05001225 else if (transport->tcp_offset == transport->tcp_reclen) {
Chuck Levere136d092006-12-05 16:35:23 -05001226 if (transport->tcp_flags & TCP_RCV_LAST_FRAG)
1227 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Levera246b012005-08-11 16:25:23 -04001228 }
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001229}
1230
1231/*
1232 * Finds the request corresponding to the RPC xid and invokes the common
1233 * tcp read code to read the data.
1234 */
1235static inline int xs_tcp_read_reply(struct rpc_xprt *xprt,
1236 struct xdr_skb_reader *desc)
1237{
1238 struct sock_xprt *transport =
1239 container_of(xprt, struct sock_xprt, xprt);
1240 struct rpc_rqst *req;
1241
1242 dprintk("RPC: read reply XID %08x\n", ntohl(transport->tcp_xid));
1243
1244 /* Find and lock the request corresponding to this xid */
1245 spin_lock(&xprt->transport_lock);
1246 req = xprt_lookup_rqst(xprt, transport->tcp_xid);
1247 if (!req) {
1248 dprintk("RPC: XID %08x request not found!\n",
1249 ntohl(transport->tcp_xid));
1250 spin_unlock(&xprt->transport_lock);
1251 return -1;
1252 }
1253
1254 xs_tcp_read_common(xprt, desc, req);
1255
Chuck Levere136d092006-12-05 16:35:23 -05001256 if (!(transport->tcp_flags & TCP_RCV_COPY_DATA))
Chuck Lever51971132006-12-05 16:35:19 -05001257 xprt_complete_rqst(req->rq_task, transport->tcp_copied);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001258
Chuck Lever4a0f8c02005-08-11 16:25:32 -04001259 spin_unlock(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001260 return 0;
1261}
1262
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001263#if defined(CONFIG_SUNRPC_BACKCHANNEL)
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001264/*
1265 * Obtains an rpc_rqst previously allocated and invokes the common
1266 * tcp read code to read the data. The result is placed in the callback
1267 * queue.
1268 * If we're unable to obtain the rpc_rqst we schedule the closing of the
1269 * connection and return -1.
1270 */
Trond Myklebust2ea24492014-02-10 11:18:39 -05001271static int xs_tcp_read_callback(struct rpc_xprt *xprt,
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001272 struct xdr_skb_reader *desc)
1273{
1274 struct sock_xprt *transport =
1275 container_of(xprt, struct sock_xprt, xprt);
1276 struct rpc_rqst *req;
1277
Trond Myklebust2ea24492014-02-10 11:18:39 -05001278 /* Look up and lock the request corresponding to the given XID */
1279 spin_lock(&xprt->transport_lock);
1280 req = xprt_lookup_bc_request(xprt, transport->tcp_xid);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001281 if (req == NULL) {
Trond Myklebust2ea24492014-02-10 11:18:39 -05001282 spin_unlock(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001283 printk(KERN_WARNING "Callback slot table overflowed\n");
1284 xprt_force_disconnect(xprt);
1285 return -1;
1286 }
1287
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001288 dprintk("RPC: read callback XID %08x\n", ntohl(req->rq_xid));
1289 xs_tcp_read_common(xprt, desc, req);
1290
Trond Myklebust2ea24492014-02-10 11:18:39 -05001291 if (!(transport->tcp_flags & TCP_RCV_COPY_DATA))
1292 xprt_complete_bc_request(req, transport->tcp_copied);
1293 spin_unlock(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001294
1295 return 0;
1296}
1297
1298static inline int _xs_tcp_read_data(struct rpc_xprt *xprt,
1299 struct xdr_skb_reader *desc)
1300{
1301 struct sock_xprt *transport =
1302 container_of(xprt, struct sock_xprt, xprt);
1303
1304 return (transport->tcp_flags & TCP_RPC_REPLY) ?
1305 xs_tcp_read_reply(xprt, desc) :
1306 xs_tcp_read_callback(xprt, desc);
1307}
1308#else
1309static inline int _xs_tcp_read_data(struct rpc_xprt *xprt,
1310 struct xdr_skb_reader *desc)
1311{
1312 return xs_tcp_read_reply(xprt, desc);
1313}
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001314#endif /* CONFIG_SUNRPC_BACKCHANNEL */
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001315
1316/*
1317 * Read data off the transport. This can be either an RPC_CALL or an
1318 * RPC_REPLY. Relay the processing to helper functions.
1319 */
1320static void xs_tcp_read_data(struct rpc_xprt *xprt,
1321 struct xdr_skb_reader *desc)
1322{
1323 struct sock_xprt *transport =
1324 container_of(xprt, struct sock_xprt, xprt);
1325
1326 if (_xs_tcp_read_data(xprt, desc) == 0)
1327 xs_tcp_check_fraghdr(transport);
1328 else {
1329 /*
1330 * The transport_lock protects the request handling.
1331 * There's no need to hold it to update the tcp_flags.
1332 */
1333 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
1334 }
Chuck Levera246b012005-08-11 16:25:23 -04001335}
1336
Chuck Leverdd456472006-12-05 16:35:44 -05001337static inline void xs_tcp_read_discard(struct sock_xprt *transport, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001338{
1339 size_t len;
1340
Chuck Lever51971132006-12-05 16:35:19 -05001341 len = transport->tcp_reclen - transport->tcp_offset;
Chuck Levera246b012005-08-11 16:25:23 -04001342 if (len > desc->count)
1343 len = desc->count;
1344 desc->count -= len;
1345 desc->offset += len;
Chuck Lever51971132006-12-05 16:35:19 -05001346 transport->tcp_offset += len;
Chuck Lever46121cf2007-01-31 12:14:08 -05001347 dprintk("RPC: discarded %Zu bytes\n", len);
Chuck Lever51971132006-12-05 16:35:19 -05001348 xs_tcp_check_fraghdr(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001349}
1350
Chuck Lever9903cd12005-08-11 16:25:26 -04001351static 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 -04001352{
1353 struct rpc_xprt *xprt = rd_desc->arg.data;
Chuck Lever51971132006-12-05 16:35:19 -05001354 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Leverdd456472006-12-05 16:35:44 -05001355 struct xdr_skb_reader desc = {
Chuck Levera246b012005-08-11 16:25:23 -04001356 .skb = skb,
1357 .offset = offset,
1358 .count = len,
Chuck Lever9903cd12005-08-11 16:25:26 -04001359 };
Chuck Levera246b012005-08-11 16:25:23 -04001360
Chuck Lever46121cf2007-01-31 12:14:08 -05001361 dprintk("RPC: xs_tcp_data_recv started\n");
Chuck Levera246b012005-08-11 16:25:23 -04001362 do {
Jeff Layton1a867a02014-10-28 14:24:14 -04001363 trace_xs_tcp_data_recv(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001364 /* Read in a new fragment marker if necessary */
1365 /* Can we ever really expect to get completely empty fragments? */
Chuck Levere136d092006-12-05 16:35:23 -05001366 if (transport->tcp_flags & TCP_RCV_COPY_FRAGHDR) {
Chuck Lever9903cd12005-08-11 16:25:26 -04001367 xs_tcp_read_fraghdr(xprt, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001368 continue;
1369 }
1370 /* Read in the xid if necessary */
Chuck Levere136d092006-12-05 16:35:23 -05001371 if (transport->tcp_flags & TCP_RCV_COPY_XID) {
Chuck Lever51971132006-12-05 16:35:19 -05001372 xs_tcp_read_xid(transport, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001373 continue;
1374 }
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001375 /* Read in the call/reply flag */
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001376 if (transport->tcp_flags & TCP_RCV_READ_CALLDIR) {
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001377 xs_tcp_read_calldir(transport, &desc);
1378 continue;
1379 }
Chuck Levera246b012005-08-11 16:25:23 -04001380 /* Read in the request data */
Chuck Levere136d092006-12-05 16:35:23 -05001381 if (transport->tcp_flags & TCP_RCV_COPY_DATA) {
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001382 xs_tcp_read_data(xprt, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001383 continue;
1384 }
1385 /* Skip over any trailing bytes on short reads */
Chuck Lever51971132006-12-05 16:35:19 -05001386 xs_tcp_read_discard(transport, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001387 } while (desc.count);
Jeff Layton1a867a02014-10-28 14:24:14 -04001388 trace_xs_tcp_data_recv(transport);
Chuck Lever46121cf2007-01-31 12:14:08 -05001389 dprintk("RPC: xs_tcp_data_recv done\n");
Chuck Levera246b012005-08-11 16:25:23 -04001390 return len - desc.count;
1391}
1392
Chuck Lever9903cd12005-08-11 16:25:26 -04001393/**
1394 * xs_tcp_data_ready - "data ready" callback for TCP sockets
1395 * @sk: socket with data to read
1396 * @bytes: how much data to read
1397 *
1398 */
David S. Miller676d2362014-04-11 16:15:36 -04001399static void xs_tcp_data_ready(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -04001400{
1401 struct rpc_xprt *xprt;
1402 read_descriptor_t rd_desc;
Trond Myklebustff2d7db2008-02-25 21:40:51 -08001403 int read;
Jeff Layton3705ad62014-10-28 14:24:13 -04001404 unsigned long total = 0;
Chuck Levera246b012005-08-11 16:25:23 -04001405
Chuck Lever46121cf2007-01-31 12:14:08 -05001406 dprintk("RPC: xs_tcp_data_ready...\n");
1407
Eric Dumazetf064af12010-09-22 12:43:39 +00001408 read_lock_bh(&sk->sk_callback_lock);
Jeff Layton3705ad62014-10-28 14:24:13 -04001409 if (!(xprt = xprt_from_sock(sk))) {
1410 read = 0;
Chuck Levera246b012005-08-11 16:25:23 -04001411 goto out;
Jeff Layton3705ad62014-10-28 14:24:13 -04001412 }
Neil Brown61d0a8e2009-09-23 14:36:37 -04001413 /* Any data means we had a useful conversation, so
1414 * the we don't need to delay the next reconnect
1415 */
1416 if (xprt->reestablish_timeout)
1417 xprt->reestablish_timeout = 0;
1418
Chuck Lever9903cd12005-08-11 16:25:26 -04001419 /* We use rd_desc to pass struct xprt to xs_tcp_data_recv */
Chuck Levera246b012005-08-11 16:25:23 -04001420 rd_desc.arg.data = xprt;
Trond Myklebustff2d7db2008-02-25 21:40:51 -08001421 do {
1422 rd_desc.count = 65536;
1423 read = tcp_read_sock(sk, &rd_desc, xs_tcp_data_recv);
Jeff Layton3705ad62014-10-28 14:24:13 -04001424 if (read > 0)
1425 total += read;
Trond Myklebustff2d7db2008-02-25 21:40:51 -08001426 } while (read > 0);
Chuck Levera246b012005-08-11 16:25:23 -04001427out:
Jeff Layton3705ad62014-10-28 14:24:13 -04001428 trace_xs_tcp_data_ready(xprt, read, total);
Eric Dumazetf064af12010-09-22 12:43:39 +00001429 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001430}
1431
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001432/*
1433 * Do the equivalent of linger/linger2 handling for dealing with
1434 * broken servers that don't close the socket in a timely
1435 * fashion
1436 */
1437static void xs_tcp_schedule_linger_timeout(struct rpc_xprt *xprt,
1438 unsigned long timeout)
1439{
1440 struct sock_xprt *transport;
1441
1442 if (xprt_test_and_set_connecting(xprt))
1443 return;
1444 set_bit(XPRT_CONNECTION_ABORT, &xprt->state);
1445 transport = container_of(xprt, struct sock_xprt, xprt);
1446 queue_delayed_work(rpciod_workqueue, &transport->connect_worker,
1447 timeout);
1448}
1449
1450static void xs_tcp_cancel_linger_timeout(struct rpc_xprt *xprt)
1451{
1452 struct sock_xprt *transport;
1453
1454 transport = container_of(xprt, struct sock_xprt, xprt);
1455
1456 if (!test_bit(XPRT_CONNECTION_ABORT, &xprt->state) ||
1457 !cancel_delayed_work(&transport->connect_worker))
1458 return;
1459 clear_bit(XPRT_CONNECTION_ABORT, &xprt->state);
1460 xprt_clear_connecting(xprt);
1461}
1462
Trond Myklebust4bc1e682012-10-23 17:50:07 -04001463static void xs_sock_mark_closed(struct rpc_xprt *xprt)
1464{
1465 xs_sock_reset_connection_flags(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001466 /* Mark transport as closed and wake up all pending tasks */
1467 xprt_disconnect_done(xprt);
1468}
1469
Chuck Lever9903cd12005-08-11 16:25:26 -04001470/**
1471 * xs_tcp_state_change - callback to handle TCP socket state changes
1472 * @sk: socket whose state has changed
1473 *
1474 */
1475static void xs_tcp_state_change(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -04001476{
Chuck Lever9903cd12005-08-11 16:25:26 -04001477 struct rpc_xprt *xprt;
Chuck Levera246b012005-08-11 16:25:23 -04001478
Eric Dumazetf064af12010-09-22 12:43:39 +00001479 read_lock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001480 if (!(xprt = xprt_from_sock(sk)))
1481 goto out;
Chuck Lever46121cf2007-01-31 12:14:08 -05001482 dprintk("RPC: xs_tcp_state_change client %p...\n", xprt);
Andy Chittenden669502f2010-08-10 10:19:53 -04001483 dprintk("RPC: state %x conn %d dead %d zapped %d sk_shutdown %d\n",
Chuck Lever46121cf2007-01-31 12:14:08 -05001484 sk->sk_state, xprt_connected(xprt),
1485 sock_flag(sk, SOCK_DEAD),
Andy Chittenden669502f2010-08-10 10:19:53 -04001486 sock_flag(sk, SOCK_ZAPPED),
1487 sk->sk_shutdown);
Chuck Levera246b012005-08-11 16:25:23 -04001488
Trond Myklebust40b5ea02013-09-04 12:16:23 -04001489 trace_rpc_socket_state_change(xprt, sk->sk_socket);
Chuck Levera246b012005-08-11 16:25:23 -04001490 switch (sk->sk_state) {
1491 case TCP_ESTABLISHED:
Eric Dumazetf064af12010-09-22 12:43:39 +00001492 spin_lock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001493 if (!xprt_test_and_set_connected(xprt)) {
Chuck Lever51971132006-12-05 16:35:19 -05001494 struct sock_xprt *transport = container_of(xprt,
1495 struct sock_xprt, xprt);
1496
Chuck Levera246b012005-08-11 16:25:23 -04001497 /* Reset TCP record info */
Chuck Lever51971132006-12-05 16:35:19 -05001498 transport->tcp_offset = 0;
1499 transport->tcp_reclen = 0;
1500 transport->tcp_copied = 0;
Chuck Levere136d092006-12-05 16:35:23 -05001501 transport->tcp_flags =
1502 TCP_RCV_COPY_FRAGHDR | TCP_RCV_COPY_XID;
Trond Myklebust8b717982013-09-26 10:18:04 -04001503 xprt->connect_cookie++;
Chuck Lever51971132006-12-05 16:35:19 -05001504
Trond Myklebust2a491992009-03-11 14:38:00 -04001505 xprt_wake_pending_tasks(xprt, -EAGAIN);
Chuck Levera246b012005-08-11 16:25:23 -04001506 }
Eric Dumazetf064af12010-09-22 12:43:39 +00001507 spin_unlock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001508 break;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001509 case TCP_FIN_WAIT1:
1510 /* The client initiated a shutdown of the socket */
Trond Myklebust7c1d71c2008-04-17 16:52:57 -04001511 xprt->connect_cookie++;
Trond Myklebust663b8852008-01-01 18:42:12 -05001512 xprt->reestablish_timeout = 0;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001513 set_bit(XPRT_CLOSING, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001514 smp_mb__before_atomic();
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001515 clear_bit(XPRT_CONNECTED, &xprt->state);
Trond Myklebustef803672007-12-31 16:19:17 -05001516 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001517 smp_mb__after_atomic();
Trond Myklebust25fe6142009-03-11 14:38:03 -04001518 xs_tcp_schedule_linger_timeout(xprt, xs_tcp_fin_timeout);
Chuck Levera246b012005-08-11 16:25:23 -04001519 break;
Trond Myklebust632e3bd2006-01-03 09:55:55 +01001520 case TCP_CLOSE_WAIT:
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001521 /* The server initiated a shutdown of the socket */
Trond Myklebust7c1d71c2008-04-17 16:52:57 -04001522 xprt->connect_cookie++;
Trond Myklebustd0bea452012-10-23 11:35:47 -04001523 clear_bit(XPRT_CONNECTED, &xprt->state);
Trond Myklebusta519fc72012-09-12 16:49:15 -04001524 xs_tcp_force_close(xprt);
Trond Myklebust663b8852008-01-01 18:42:12 -05001525 case TCP_CLOSING:
1526 /*
1527 * If the server closed down the connection, make sure that
1528 * we back off before reconnecting
1529 */
1530 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
1531 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001532 break;
1533 case TCP_LAST_ACK:
Trond Myklebust670f9452009-03-11 14:37:58 -04001534 set_bit(XPRT_CLOSING, &xprt->state);
Trond Myklebust25fe6142009-03-11 14:38:03 -04001535 xs_tcp_schedule_linger_timeout(xprt, xs_tcp_fin_timeout);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001536 smp_mb__before_atomic();
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001537 clear_bit(XPRT_CONNECTED, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001538 smp_mb__after_atomic();
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001539 break;
1540 case TCP_CLOSE:
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001541 xs_tcp_cancel_linger_timeout(xprt);
1542 xs_sock_mark_closed(xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001543 }
1544 out:
Eric Dumazetf064af12010-09-22 12:43:39 +00001545 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001546}
1547
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001548static void xs_write_space(struct sock *sk)
1549{
1550 struct socket *sock;
1551 struct rpc_xprt *xprt;
1552
1553 if (unlikely(!(sock = sk->sk_socket)))
1554 return;
1555 clear_bit(SOCK_NOSPACE, &sock->flags);
1556
1557 if (unlikely(!(xprt = xprt_from_sock(sk))))
1558 return;
1559 if (test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags) == 0)
1560 return;
1561
1562 xprt_write_space(xprt);
1563}
1564
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04001565/**
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001566 * xs_udp_write_space - callback invoked when socket buffer space
1567 * becomes available
Chuck Lever9903cd12005-08-11 16:25:26 -04001568 * @sk: socket whose state has changed
1569 *
Chuck Levera246b012005-08-11 16:25:23 -04001570 * Called when more output buffer space is available for this socket.
1571 * We try not to wake our writers until they can make "significant"
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001572 * progress, otherwise we'll waste resources thrashing kernel_sendmsg
Chuck Levera246b012005-08-11 16:25:23 -04001573 * with a bunch of small requests.
1574 */
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001575static void xs_udp_write_space(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -04001576{
Eric Dumazetf064af12010-09-22 12:43:39 +00001577 read_lock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001578
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001579 /* from net/core/sock.c:sock_def_write_space */
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001580 if (sock_writeable(sk))
1581 xs_write_space(sk);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001582
Eric Dumazetf064af12010-09-22 12:43:39 +00001583 read_unlock_bh(&sk->sk_callback_lock);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001584}
Chuck Levera246b012005-08-11 16:25:23 -04001585
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001586/**
1587 * xs_tcp_write_space - callback invoked when socket buffer space
1588 * becomes available
1589 * @sk: socket whose state has changed
1590 *
1591 * Called when more output buffer space is available for this socket.
1592 * We try not to wake our writers until they can make "significant"
1593 * progress, otherwise we'll waste resources thrashing kernel_sendmsg
1594 * with a bunch of small requests.
1595 */
1596static void xs_tcp_write_space(struct sock *sk)
1597{
Eric Dumazetf064af12010-09-22 12:43:39 +00001598 read_lock_bh(&sk->sk_callback_lock);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001599
1600 /* from net/core/stream.c:sk_stream_write_space */
Eric Dumazet64dc6132013-07-22 20:26:31 -07001601 if (sk_stream_is_writeable(sk))
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001602 xs_write_space(sk);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001603
Eric Dumazetf064af12010-09-22 12:43:39 +00001604 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001605}
1606
Chuck Lever470056c2005-08-25 16:25:56 -07001607static void xs_udp_do_set_buffer_size(struct rpc_xprt *xprt)
Chuck Levera246b012005-08-11 16:25:23 -04001608{
Chuck Leveree0ac0c2006-12-05 16:35:15 -05001609 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
1610 struct sock *sk = transport->inet;
Chuck Levera246b012005-08-11 16:25:23 -04001611
Chuck Lever7c6e0662006-12-05 16:35:30 -05001612 if (transport->rcvsize) {
Chuck Levera246b012005-08-11 16:25:23 -04001613 sk->sk_userlocks |= SOCK_RCVBUF_LOCK;
Chuck Lever7c6e0662006-12-05 16:35:30 -05001614 sk->sk_rcvbuf = transport->rcvsize * xprt->max_reqs * 2;
Chuck Levera246b012005-08-11 16:25:23 -04001615 }
Chuck Lever7c6e0662006-12-05 16:35:30 -05001616 if (transport->sndsize) {
Chuck Levera246b012005-08-11 16:25:23 -04001617 sk->sk_userlocks |= SOCK_SNDBUF_LOCK;
Chuck Lever7c6e0662006-12-05 16:35:30 -05001618 sk->sk_sndbuf = transport->sndsize * xprt->max_reqs * 2;
Chuck Levera246b012005-08-11 16:25:23 -04001619 sk->sk_write_space(sk);
1620 }
1621}
1622
Chuck Lever43118c22005-08-25 16:25:49 -07001623/**
Chuck Lever470056c2005-08-25 16:25:56 -07001624 * xs_udp_set_buffer_size - set send and receive limits
Chuck Lever43118c22005-08-25 16:25:49 -07001625 * @xprt: generic transport
Chuck Lever470056c2005-08-25 16:25:56 -07001626 * @sndsize: requested size of send buffer, in bytes
1627 * @rcvsize: requested size of receive buffer, in bytes
Chuck Lever43118c22005-08-25 16:25:49 -07001628 *
Chuck Lever470056c2005-08-25 16:25:56 -07001629 * Set socket send and receive buffer size limits.
Chuck Lever43118c22005-08-25 16:25:49 -07001630 */
Chuck Lever470056c2005-08-25 16:25:56 -07001631static void xs_udp_set_buffer_size(struct rpc_xprt *xprt, size_t sndsize, size_t rcvsize)
Chuck Lever43118c22005-08-25 16:25:49 -07001632{
Chuck Lever7c6e0662006-12-05 16:35:30 -05001633 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
1634
1635 transport->sndsize = 0;
Chuck Lever470056c2005-08-25 16:25:56 -07001636 if (sndsize)
Chuck Lever7c6e0662006-12-05 16:35:30 -05001637 transport->sndsize = sndsize + 1024;
1638 transport->rcvsize = 0;
Chuck Lever470056c2005-08-25 16:25:56 -07001639 if (rcvsize)
Chuck Lever7c6e0662006-12-05 16:35:30 -05001640 transport->rcvsize = rcvsize + 1024;
Chuck Lever470056c2005-08-25 16:25:56 -07001641
1642 xs_udp_do_set_buffer_size(xprt);
Chuck Lever43118c22005-08-25 16:25:49 -07001643}
1644
Chuck Lever46c0ee82005-08-25 16:25:52 -07001645/**
1646 * xs_udp_timer - called when a retransmit timeout occurs on a UDP transport
1647 * @task: task that timed out
1648 *
1649 * Adjust the congestion window after a retransmit timeout has occurred.
1650 */
Trond Myklebust6a24dfb2013-01-08 09:48:15 -05001651static void xs_udp_timer(struct rpc_xprt *xprt, struct rpc_task *task)
Chuck Lever46c0ee82005-08-25 16:25:52 -07001652{
Trond Myklebust6a24dfb2013-01-08 09:48:15 -05001653 xprt_adjust_cwnd(xprt, task, -ETIMEDOUT);
Chuck Lever46c0ee82005-08-25 16:25:52 -07001654}
1655
Chuck Leverb85d8802006-05-25 01:40:49 -04001656static unsigned short xs_get_random_port(void)
1657{
1658 unsigned short range = xprt_max_resvport - xprt_min_resvport;
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05001659 unsigned short rand = (unsigned short) prandom_u32() % range;
Chuck Leverb85d8802006-05-25 01:40:49 -04001660 return rand + xprt_min_resvport;
1661}
1662
Chuck Lever92200412006-01-03 09:55:51 +01001663/**
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001664 * xs_set_reuseaddr_port - set the socket's port and address reuse options
1665 * @sock: socket
1666 *
1667 * Note that this function has to be called on all sockets that share the
1668 * same port, and it must be called before binding.
1669 */
1670static void xs_sock_set_reuseport(struct socket *sock)
1671{
1672 char opt = 1;
1673
1674 kernel_setsockopt(sock, SOL_SOCKET, SO_REUSEPORT, &opt, sizeof(opt));
1675}
1676
1677static unsigned short xs_sock_getport(struct socket *sock)
1678{
1679 struct sockaddr_storage buf;
1680 int buflen;
1681 unsigned short port = 0;
1682
1683 if (kernel_getsockname(sock, (struct sockaddr *)&buf, &buflen) < 0)
1684 goto out;
1685 switch (buf.ss_family) {
1686 case AF_INET6:
1687 port = ntohs(((struct sockaddr_in6 *)&buf)->sin6_port);
1688 break;
1689 case AF_INET:
1690 port = ntohs(((struct sockaddr_in *)&buf)->sin_port);
1691 }
1692out:
1693 return port;
1694}
1695
1696/**
Chuck Lever92200412006-01-03 09:55:51 +01001697 * xs_set_port - reset the port number in the remote endpoint address
1698 * @xprt: generic transport
1699 * @port: new port number
1700 *
1701 */
1702static void xs_set_port(struct rpc_xprt *xprt, unsigned short port)
1703{
Chuck Lever46121cf2007-01-31 12:14:08 -05001704 dprintk("RPC: setting port for xprt %p to %u\n", xprt, port);
Chuck Leverc4efcb12006-08-22 20:06:19 -04001705
Chuck Lever9dc3b092009-08-09 15:09:46 -04001706 rpc_set_port(xs_addr(xprt), port);
1707 xs_update_peer_port(xprt);
Chuck Lever92200412006-01-03 09:55:51 +01001708}
1709
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001710static void xs_set_srcport(struct sock_xprt *transport, struct socket *sock)
1711{
1712 if (transport->srcport == 0)
1713 transport->srcport = xs_sock_getport(sock);
1714}
1715
Pavel Emelyanov5d4ec932010-10-04 16:51:23 +04001716static unsigned short xs_get_srcport(struct sock_xprt *transport)
Trond Myklebust67a391d2007-11-05 17:40:58 -05001717{
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001718 unsigned short port = transport->srcport;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001719
1720 if (port == 0 && transport->xprt.resvport)
1721 port = xs_get_random_port();
1722 return port;
1723}
1724
Pavel Emelyanovbaaf4e42010-10-04 16:51:56 +04001725static unsigned short xs_next_srcport(struct sock_xprt *transport, unsigned short port)
Trond Myklebust67a391d2007-11-05 17:40:58 -05001726{
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001727 if (transport->srcport != 0)
1728 transport->srcport = 0;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001729 if (!transport->xprt.resvport)
1730 return 0;
1731 if (port <= xprt_min_resvport || port > xprt_max_resvport)
1732 return xprt_max_resvport;
1733 return --port;
1734}
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001735static int xs_bind(struct sock_xprt *transport, struct socket *sock)
Chuck Levera246b012005-08-11 16:25:23 -04001736{
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001737 struct sockaddr_storage myaddr;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001738 int err, nloop = 0;
Pavel Emelyanov5d4ec932010-10-04 16:51:23 +04001739 unsigned short port = xs_get_srcport(transport);
Trond Myklebust67a391d2007-11-05 17:40:58 -05001740 unsigned short last;
Chuck Levera246b012005-08-11 16:25:23 -04001741
Chris Perl0f7a6222014-09-05 15:40:21 -04001742 /*
1743 * If we are asking for any ephemeral port (i.e. port == 0 &&
1744 * transport->xprt.resvport == 0), don't bind. Let the local
1745 * port selection happen implicitly when the socket is used
1746 * (for example at connect time).
1747 *
1748 * This ensures that we can continue to establish TCP
1749 * connections even when all local ephemeral ports are already
1750 * a part of some TCP connection. This makes no difference
1751 * for UDP sockets, but also doens't harm them.
1752 *
1753 * If we're asking for any reserved port (i.e. port == 0 &&
1754 * transport->xprt.resvport == 1) xs_get_srcport above will
1755 * ensure that port is non-zero and we will bind as needed.
1756 */
1757 if (port == 0)
1758 return 0;
1759
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001760 memcpy(&myaddr, &transport->srcaddr, transport->xprt.addrlen);
Chuck Levera246b012005-08-11 16:25:23 -04001761 do {
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001762 rpc_set_port((struct sockaddr *)&myaddr, port);
1763 err = kernel_bind(sock, (struct sockaddr *)&myaddr,
1764 transport->xprt.addrlen);
Chuck Levera246b012005-08-11 16:25:23 -04001765 if (err == 0) {
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001766 transport->srcport = port;
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +02001767 break;
Chuck Levera246b012005-08-11 16:25:23 -04001768 }
Trond Myklebust67a391d2007-11-05 17:40:58 -05001769 last = port;
Pavel Emelyanovbaaf4e42010-10-04 16:51:56 +04001770 port = xs_next_srcport(transport, port);
Trond Myklebust67a391d2007-11-05 17:40:58 -05001771 if (port > last)
1772 nloop++;
1773 } while (err == -EADDRINUSE && nloop != 2);
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001774
Chuck Lever4232e862010-10-20 11:52:51 -04001775 if (myaddr.ss_family == AF_INET)
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001776 dprintk("RPC: %s %pI4:%u: %s (%d)\n", __func__,
1777 &((struct sockaddr_in *)&myaddr)->sin_addr,
1778 port, err ? "failed" : "ok", err);
1779 else
1780 dprintk("RPC: %s %pI6:%u: %s (%d)\n", __func__,
1781 &((struct sockaddr_in6 *)&myaddr)->sin6_addr,
1782 port, err ? "failed" : "ok", err);
Chuck Levera246b012005-08-11 16:25:23 -04001783 return err;
1784}
1785
Chuck Lever176e21e2011-05-09 15:22:44 -04001786/*
1787 * We don't support autobind on AF_LOCAL sockets
1788 */
1789static void xs_local_rpcbind(struct rpc_task *task)
1790{
Trond Myklebust3dc0da22013-01-08 09:31:13 -05001791 rcu_read_lock();
1792 xprt_set_bound(rcu_dereference(task->tk_client->cl_xprt));
1793 rcu_read_unlock();
Chuck Lever176e21e2011-05-09 15:22:44 -04001794}
1795
1796static void xs_local_set_port(struct rpc_xprt *xprt, unsigned short port)
1797{
1798}
Chuck Levera246b012005-08-11 16:25:23 -04001799
Peter Zijlstraed075362006-12-06 20:35:24 -08001800#ifdef CONFIG_DEBUG_LOCK_ALLOC
1801static struct lock_class_key xs_key[2];
1802static struct lock_class_key xs_slock_key[2];
1803
Chuck Lever176e21e2011-05-09 15:22:44 -04001804static inline void xs_reclassify_socketu(struct socket *sock)
1805{
1806 struct sock *sk = sock->sk;
1807
Chuck Lever176e21e2011-05-09 15:22:44 -04001808 sock_lock_init_class_and_name(sk, "slock-AF_LOCAL-RPC",
1809 &xs_slock_key[1], "sk_lock-AF_LOCAL-RPC", &xs_key[1]);
1810}
1811
Chuck Lever8945ee52007-08-06 11:58:04 -04001812static inline void xs_reclassify_socket4(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -08001813{
1814 struct sock *sk = sock->sk;
Chuck Lever8945ee52007-08-06 11:58:04 -04001815
Chuck Lever8945ee52007-08-06 11:58:04 -04001816 sock_lock_init_class_and_name(sk, "slock-AF_INET-RPC",
1817 &xs_slock_key[0], "sk_lock-AF_INET-RPC", &xs_key[0]);
1818}
Peter Zijlstraed075362006-12-06 20:35:24 -08001819
Chuck Lever8945ee52007-08-06 11:58:04 -04001820static inline void xs_reclassify_socket6(struct socket *sock)
1821{
1822 struct sock *sk = sock->sk;
Peter Zijlstraed075362006-12-06 20:35:24 -08001823
Chuck Lever8945ee52007-08-06 11:58:04 -04001824 sock_lock_init_class_and_name(sk, "slock-AF_INET6-RPC",
1825 &xs_slock_key[1], "sk_lock-AF_INET6-RPC", &xs_key[1]);
Peter Zijlstraed075362006-12-06 20:35:24 -08001826}
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001827
1828static inline void xs_reclassify_socket(int family, struct socket *sock)
1829{
Weston Andros Adamson1b7a1812012-10-23 10:43:39 -04001830 WARN_ON_ONCE(sock_owned_by_user(sock->sk));
1831 if (sock_owned_by_user(sock->sk))
1832 return;
1833
Chuck Lever4232e862010-10-20 11:52:51 -04001834 switch (family) {
Chuck Lever176e21e2011-05-09 15:22:44 -04001835 case AF_LOCAL:
1836 xs_reclassify_socketu(sock);
1837 break;
Chuck Lever4232e862010-10-20 11:52:51 -04001838 case AF_INET:
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001839 xs_reclassify_socket4(sock);
Chuck Lever4232e862010-10-20 11:52:51 -04001840 break;
1841 case AF_INET6:
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001842 xs_reclassify_socket6(sock);
Chuck Lever4232e862010-10-20 11:52:51 -04001843 break;
1844 }
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001845}
Peter Zijlstraed075362006-12-06 20:35:24 -08001846#else
Chuck Lever176e21e2011-05-09 15:22:44 -04001847static inline void xs_reclassify_socketu(struct socket *sock)
1848{
1849}
1850
Chuck Lever8945ee52007-08-06 11:58:04 -04001851static inline void xs_reclassify_socket4(struct socket *sock)
1852{
1853}
1854
1855static inline void xs_reclassify_socket6(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -08001856{
1857}
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001858
1859static inline void xs_reclassify_socket(int family, struct socket *sock)
1860{
1861}
Peter Zijlstraed075362006-12-06 20:35:24 -08001862#endif
1863
NeilBrown93dc41b2013-10-31 16:14:36 +11001864static void xs_dummy_setup_socket(struct work_struct *work)
1865{
1866}
1867
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001868static struct socket *xs_create_sock(struct rpc_xprt *xprt,
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001869 struct sock_xprt *transport, int family, int type,
1870 int protocol, bool reuseport)
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001871{
1872 struct socket *sock;
1873 int err;
1874
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001875 err = __sock_create(xprt->xprt_net, family, type, protocol, &sock, 1);
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001876 if (err < 0) {
1877 dprintk("RPC: can't create %d transport socket (%d).\n",
1878 protocol, -err);
1879 goto out;
1880 }
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001881 xs_reclassify_socket(family, sock);
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001882
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001883 if (reuseport)
1884 xs_sock_set_reuseport(sock);
1885
Ben Hutchings4cea2882011-02-22 21:54:34 +00001886 err = xs_bind(transport, sock);
1887 if (err) {
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001888 sock_release(sock);
1889 goto out;
1890 }
1891
1892 return sock;
1893out:
1894 return ERR_PTR(err);
1895}
1896
Chuck Lever176e21e2011-05-09 15:22:44 -04001897static int xs_local_finish_connecting(struct rpc_xprt *xprt,
1898 struct socket *sock)
1899{
1900 struct sock_xprt *transport = container_of(xprt, struct sock_xprt,
1901 xprt);
1902
1903 if (!transport->inet) {
1904 struct sock *sk = sock->sk;
1905
1906 write_lock_bh(&sk->sk_callback_lock);
1907
1908 xs_save_old_callbacks(transport, sk);
1909
1910 sk->sk_user_data = xprt;
1911 sk->sk_data_ready = xs_local_data_ready;
1912 sk->sk_write_space = xs_udp_write_space;
Trond Myklebust21180712013-12-31 13:22:59 -05001913 sk->sk_error_report = xs_error_report;
Chuck Lever176e21e2011-05-09 15:22:44 -04001914 sk->sk_allocation = GFP_ATOMIC;
1915
1916 xprt_clear_connected(xprt);
1917
1918 /* Reset to new socket */
1919 transport->sock = sock;
1920 transport->inet = sk;
1921
1922 write_unlock_bh(&sk->sk_callback_lock);
1923 }
1924
1925 /* Tell the socket layer to start connecting... */
1926 xprt->stat.connect_count++;
1927 xprt->stat.connect_start = jiffies;
1928 return kernel_connect(sock, xs_addr(xprt), xprt->addrlen, 0);
1929}
1930
1931/**
1932 * xs_local_setup_socket - create AF_LOCAL socket, connect to a local endpoint
1933 * @xprt: RPC transport to connect
1934 * @transport: socket transport to connect
1935 * @create_sock: function to create a socket of the correct type
Chuck Lever176e21e2011-05-09 15:22:44 -04001936 */
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05001937static int xs_local_setup_socket(struct sock_xprt *transport)
Chuck Lever176e21e2011-05-09 15:22:44 -04001938{
Chuck Lever176e21e2011-05-09 15:22:44 -04001939 struct rpc_xprt *xprt = &transport->xprt;
1940 struct socket *sock;
1941 int status = -EIO;
1942
Chuck Lever176e21e2011-05-09 15:22:44 -04001943 clear_bit(XPRT_CONNECTION_ABORT, &xprt->state);
1944 status = __sock_create(xprt->xprt_net, AF_LOCAL,
1945 SOCK_STREAM, 0, &sock, 1);
1946 if (status < 0) {
1947 dprintk("RPC: can't create AF_LOCAL "
1948 "transport socket (%d).\n", -status);
1949 goto out;
1950 }
1951 xs_reclassify_socketu(sock);
1952
1953 dprintk("RPC: worker connecting xprt %p via AF_LOCAL to %s\n",
1954 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
1955
1956 status = xs_local_finish_connecting(xprt, sock);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04001957 trace_rpc_socket_connect(xprt, sock, status);
Chuck Lever176e21e2011-05-09 15:22:44 -04001958 switch (status) {
1959 case 0:
1960 dprintk("RPC: xprt %p connected to %s\n",
1961 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
1962 xprt_set_connected(xprt);
Trond Myklebust3601c4a2014-06-30 13:42:19 -04001963 case -ENOBUFS:
Chuck Lever176e21e2011-05-09 15:22:44 -04001964 break;
1965 case -ENOENT:
1966 dprintk("RPC: xprt %p: socket %s does not exist\n",
1967 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
1968 break;
Trond Myklebust4a20a982012-12-15 17:02:29 -05001969 case -ECONNREFUSED:
1970 dprintk("RPC: xprt %p: connection refused for %s\n",
1971 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
1972 break;
Chuck Lever176e21e2011-05-09 15:22:44 -04001973 default:
1974 printk(KERN_ERR "%s: unhandled error (%d) connecting to %s\n",
1975 __func__, -status,
1976 xprt->address_strings[RPC_DISPLAY_ADDR]);
1977 }
1978
1979out:
1980 xprt_clear_connecting(xprt);
1981 xprt_wake_pending_tasks(xprt, status);
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05001982 return status;
1983}
1984
Linus Torvaldsb6669732013-02-28 18:02:55 -08001985static void xs_local_connect(struct rpc_xprt *xprt, struct rpc_task *task)
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05001986{
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05001987 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
1988 int ret;
1989
1990 if (RPC_IS_ASYNC(task)) {
1991 /*
1992 * We want the AF_LOCAL connect to be resolved in the
1993 * filesystem namespace of the process making the rpc
1994 * call. Thus we connect synchronously.
1995 *
1996 * If we want to support asynchronous AF_LOCAL calls,
1997 * we'll need to figure out how to pass a namespace to
1998 * connect.
1999 */
2000 rpc_exit(task, -ENOTCONN);
2001 return;
2002 }
2003 ret = xs_local_setup_socket(transport);
2004 if (ret && !RPC_IS_SOFTCONN(task))
2005 msleep_interruptible(15000);
Chuck Lever176e21e2011-05-09 15:22:44 -04002006}
2007
Mel Gormana564b8f2012-07-31 16:45:12 -07002008#ifdef CONFIG_SUNRPC_SWAP
2009static void xs_set_memalloc(struct rpc_xprt *xprt)
2010{
2011 struct sock_xprt *transport = container_of(xprt, struct sock_xprt,
2012 xprt);
2013
2014 if (xprt->swapper)
2015 sk_set_memalloc(transport->inet);
2016}
2017
2018/**
2019 * xs_swapper - Tag this transport as being used for swap.
2020 * @xprt: transport to tag
2021 * @enable: enable/disable
2022 *
2023 */
2024int xs_swapper(struct rpc_xprt *xprt, int enable)
2025{
2026 struct sock_xprt *transport = container_of(xprt, struct sock_xprt,
2027 xprt);
2028 int err = 0;
2029
2030 if (enable) {
2031 xprt->swapper++;
2032 xs_set_memalloc(xprt);
2033 } else if (xprt->swapper) {
2034 xprt->swapper--;
2035 sk_clear_memalloc(transport->inet);
2036 }
2037
2038 return err;
2039}
2040EXPORT_SYMBOL_GPL(xs_swapper);
2041#else
2042static void xs_set_memalloc(struct rpc_xprt *xprt)
2043{
2044}
2045#endif
2046
Chuck Lever16be2d22007-08-06 11:57:38 -04002047static void xs_udp_finish_connecting(struct rpc_xprt *xprt, struct socket *sock)
Chuck Levera246b012005-08-11 16:25:23 -04002048{
Chuck Lever16be2d22007-08-06 11:57:38 -04002049 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Leveredb267a2006-08-22 20:06:18 -04002050
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002051 if (!transport->inet) {
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002052 struct sock *sk = sock->sk;
2053
2054 write_lock_bh(&sk->sk_callback_lock);
2055
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04002056 xs_save_old_callbacks(transport, sk);
2057
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002058 sk->sk_user_data = xprt;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002059 sk->sk_data_ready = xs_udp_data_ready;
2060 sk->sk_write_space = xs_udp_write_space;
Trond Myklebustb079fa7b2005-12-13 16:13:52 -05002061 sk->sk_allocation = GFP_ATOMIC;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002062
2063 xprt_set_connected(xprt);
2064
2065 /* Reset to new socket */
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002066 transport->sock = sock;
2067 transport->inet = sk;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002068
Mel Gormana564b8f2012-07-31 16:45:12 -07002069 xs_set_memalloc(xprt);
2070
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002071 write_unlock_bh(&sk->sk_callback_lock);
2072 }
Chuck Lever470056c2005-08-25 16:25:56 -07002073 xs_udp_do_set_buffer_size(xprt);
Chuck Lever16be2d22007-08-06 11:57:38 -04002074}
2075
Pavel Emelyanov8c14ff22010-10-04 16:58:02 +04002076static void xs_udp_setup_socket(struct work_struct *work)
Chuck Levera246b012005-08-11 16:25:23 -04002077{
2078 struct sock_xprt *transport =
2079 container_of(work, struct sock_xprt, connect_worker.work);
2080 struct rpc_xprt *xprt = &transport->xprt;
2081 struct socket *sock = transport->sock;
Pavel Emelyanovb65c0312010-10-04 16:53:46 +04002082 int status = -EIO;
Chuck Levera246b012005-08-11 16:25:23 -04002083
Chuck Levera246b012005-08-11 16:25:23 -04002084 /* Start by resetting any existing state */
Chuck Leverfe315e762009-03-11 14:10:21 -04002085 xs_reset_transport(transport);
Pavel Emelyanov8c14ff22010-10-04 16:58:02 +04002086 sock = xs_create_sock(xprt, transport,
Trond Myklebust4dda9c82015-02-08 15:00:06 -05002087 xs_addr(xprt)->sa_family, SOCK_DGRAM,
2088 IPPROTO_UDP, false);
Pavel Emelyanovb65c0312010-10-04 16:53:46 +04002089 if (IS_ERR(sock))
Chuck Levera246b012005-08-11 16:25:23 -04002090 goto out;
Chuck Lever68e220b2007-08-06 11:57:48 -04002091
Chuck Leverc740eff2009-08-09 15:09:46 -04002092 dprintk("RPC: worker connecting xprt %p via %s to "
2093 "%s (port %s)\n", xprt,
2094 xprt->address_strings[RPC_DISPLAY_PROTO],
2095 xprt->address_strings[RPC_DISPLAY_ADDR],
2096 xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever68e220b2007-08-06 11:57:48 -04002097
2098 xs_udp_finish_connecting(xprt, sock);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04002099 trace_rpc_socket_connect(xprt, sock, 0);
Chuck Levera246b012005-08-11 16:25:23 -04002100 status = 0;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002101out:
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002102 xprt_unlock_connect(xprt, transport);
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002103 xprt_clear_connecting(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002104 xprt_wake_pending_tasks(xprt, status);
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002105}
2106
Chuck Lever3167e122005-08-25 16:25:55 -07002107/*
2108 * We need to preserve the port number so the reply cache on the server can
2109 * find our cached RPC replies when we get around to reconnecting.
2110 */
Pavel Emelyanov58dddac2010-10-04 16:52:55 +04002111static void xs_abort_connection(struct sock_xprt *transport)
Chuck Lever3167e122005-08-25 16:25:55 -07002112{
2113 int result;
Chuck Lever3167e122005-08-25 16:25:55 -07002114 struct sockaddr any;
2115
Pavel Emelyanov58dddac2010-10-04 16:52:55 +04002116 dprintk("RPC: disconnecting xprt %p to reuse port\n", transport);
Chuck Lever3167e122005-08-25 16:25:55 -07002117
2118 /*
2119 * Disconnect the transport socket by doing a connect operation
2120 * with AF_UNSPEC. This should return immediately...
2121 */
2122 memset(&any, 0, sizeof(any));
2123 any.sa_family = AF_UNSPEC;
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002124 result = kernel_connect(transport->sock, &any, sizeof(any), 0);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04002125 trace_rpc_socket_reset_connection(&transport->xprt,
2126 transport->sock, result);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002127 if (!result)
Trond Myklebust4bc1e682012-10-23 17:50:07 -04002128 xs_sock_reset_connection_flags(&transport->xprt);
2129 dprintk("RPC: AF_UNSPEC connect return code %d\n", result);
Chuck Lever3167e122005-08-25 16:25:55 -07002130}
2131
Pavel Emelyanov58dddac2010-10-04 16:52:55 +04002132static void xs_tcp_reuse_connection(struct sock_xprt *transport)
Trond Myklebust40d25492009-03-11 14:37:58 -04002133{
2134 unsigned int state = transport->inet->sk_state;
2135
Andy Chittenden669502f2010-08-10 10:19:53 -04002136 if (state == TCP_CLOSE && transport->sock->state == SS_UNCONNECTED) {
2137 /* we don't need to abort the connection if the socket
2138 * hasn't undergone a shutdown
2139 */
2140 if (transport->inet->sk_shutdown == 0)
2141 return;
2142 dprintk("RPC: %s: TCP_CLOSEd and sk_shutdown set to %d\n",
2143 __func__, transport->inet->sk_shutdown);
2144 }
2145 if ((1 << state) & (TCPF_ESTABLISHED|TCPF_SYN_SENT)) {
2146 /* we don't need to abort the connection if the socket
2147 * hasn't undergone a shutdown
2148 */
2149 if (transport->inet->sk_shutdown == 0)
2150 return;
2151 dprintk("RPC: %s: ESTABLISHED/SYN_SENT "
2152 "sk_shutdown set to %d\n",
2153 __func__, transport->inet->sk_shutdown);
2154 }
Pavel Emelyanov58dddac2010-10-04 16:52:55 +04002155 xs_abort_connection(transport);
Trond Myklebust40d25492009-03-11 14:37:58 -04002156}
2157
Chuck Lever16be2d22007-08-06 11:57:38 -04002158static int xs_tcp_finish_connecting(struct rpc_xprt *xprt, struct socket *sock)
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002159{
Chuck Lever16be2d22007-08-06 11:57:38 -04002160 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebustfe19a962011-03-18 20:21:23 -04002161 int ret = -ENOTCONN;
Chuck Leveredb267a2006-08-22 20:06:18 -04002162
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002163 if (!transport->inet) {
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002164 struct sock *sk = sock->sk;
Trond Myklebust7f260e82013-09-24 11:25:22 -04002165 unsigned int keepidle = xprt->timeout->to_initval / HZ;
2166 unsigned int keepcnt = xprt->timeout->to_retries + 1;
2167 unsigned int opt_on = 1;
2168
2169 /* TCP Keepalive options */
2170 kernel_setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE,
2171 (char *)&opt_on, sizeof(opt_on));
2172 kernel_setsockopt(sock, SOL_TCP, TCP_KEEPIDLE,
2173 (char *)&keepidle, sizeof(keepidle));
2174 kernel_setsockopt(sock, SOL_TCP, TCP_KEEPINTVL,
2175 (char *)&keepidle, sizeof(keepidle));
2176 kernel_setsockopt(sock, SOL_TCP, TCP_KEEPCNT,
2177 (char *)&keepcnt, sizeof(keepcnt));
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002178
2179 write_lock_bh(&sk->sk_callback_lock);
2180
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04002181 xs_save_old_callbacks(transport, sk);
2182
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002183 sk->sk_user_data = xprt;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002184 sk->sk_data_ready = xs_tcp_data_ready;
2185 sk->sk_state_change = xs_tcp_state_change;
2186 sk->sk_write_space = xs_tcp_write_space;
Trond Myklebust21180712013-12-31 13:22:59 -05002187 sk->sk_error_report = xs_error_report;
Trond Myklebustb079fa7b2005-12-13 16:13:52 -05002188 sk->sk_allocation = GFP_ATOMIC;
Chuck Lever3167e122005-08-25 16:25:55 -07002189
2190 /* socket options */
Chuck Lever3167e122005-08-25 16:25:55 -07002191 sock_reset_flag(sk, SOCK_LINGER);
2192 tcp_sk(sk)->linger2 = 0;
2193 tcp_sk(sk)->nonagle |= TCP_NAGLE_OFF;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002194
2195 xprt_clear_connected(xprt);
2196
2197 /* Reset to new socket */
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002198 transport->sock = sock;
2199 transport->inet = sk;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002200
2201 write_unlock_bh(&sk->sk_callback_lock);
2202 }
2203
Trond Myklebust01d37c42009-03-11 14:09:39 -04002204 if (!xprt_bound(xprt))
Trond Myklebustfe19a962011-03-18 20:21:23 -04002205 goto out;
Trond Myklebust01d37c42009-03-11 14:09:39 -04002206
Mel Gormana564b8f2012-07-31 16:45:12 -07002207 xs_set_memalloc(xprt);
2208
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002209 /* Tell the socket layer to start connecting... */
Chuck Lever262ca072006-03-20 13:44:16 -05002210 xprt->stat.connect_count++;
2211 xprt->stat.connect_start = jiffies;
Trond Myklebustfe19a962011-03-18 20:21:23 -04002212 ret = kernel_connect(sock, xs_addr(xprt), xprt->addrlen, O_NONBLOCK);
2213 switch (ret) {
2214 case 0:
Trond Myklebust4dda9c82015-02-08 15:00:06 -05002215 xs_set_srcport(transport, sock);
Trond Myklebustfe19a962011-03-18 20:21:23 -04002216 case -EINPROGRESS:
2217 /* SYN_SENT! */
Trond Myklebustfe19a962011-03-18 20:21:23 -04002218 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
2219 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
2220 }
2221out:
2222 return ret;
Chuck Lever16be2d22007-08-06 11:57:38 -04002223}
2224
2225/**
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002226 * xs_tcp_setup_socket - create a TCP socket and connect to a remote endpoint
2227 * @xprt: RPC transport to connect
2228 * @transport: socket transport to connect
2229 * @create_sock: function to create a socket of the correct type
Chuck Lever16be2d22007-08-06 11:57:38 -04002230 *
2231 * Invoked by a work queue tasklet.
2232 */
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002233static void xs_tcp_setup_socket(struct work_struct *work)
Chuck Lever16be2d22007-08-06 11:57:38 -04002234{
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002235 struct sock_xprt *transport =
2236 container_of(work, struct sock_xprt, connect_worker.work);
Chuck Lever16be2d22007-08-06 11:57:38 -04002237 struct socket *sock = transport->sock;
Pavel Emelyanova9f5f0f2010-10-04 16:52:25 +04002238 struct rpc_xprt *xprt = &transport->xprt;
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002239 int status = -EIO;
Chuck Lever16be2d22007-08-06 11:57:38 -04002240
Chuck Lever16be2d22007-08-06 11:57:38 -04002241 if (!sock) {
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002242 clear_bit(XPRT_CONNECTION_ABORT, &xprt->state);
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002243 sock = xs_create_sock(xprt, transport,
Trond Myklebust4dda9c82015-02-08 15:00:06 -05002244 xs_addr(xprt)->sa_family, SOCK_STREAM,
2245 IPPROTO_TCP, true);
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002246 if (IS_ERR(sock)) {
2247 status = PTR_ERR(sock);
Chuck Lever16be2d22007-08-06 11:57:38 -04002248 goto out;
2249 }
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002250 } else {
2251 int abort_and_exit;
2252
2253 abort_and_exit = test_and_clear_bit(XPRT_CONNECTION_ABORT,
2254 &xprt->state);
Chuck Lever16be2d22007-08-06 11:57:38 -04002255 /* "close" the socket, preserving the local port */
Benjamin Coddingtona7434192014-09-23 12:26:19 -04002256 set_bit(XPRT_CONNECTION_REUSE, &xprt->state);
Pavel Emelyanov58dddac2010-10-04 16:52:55 +04002257 xs_tcp_reuse_connection(transport);
Benjamin Coddingtona7434192014-09-23 12:26:19 -04002258 clear_bit(XPRT_CONNECTION_REUSE, &xprt->state);
Chuck Lever16be2d22007-08-06 11:57:38 -04002259
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002260 if (abort_and_exit)
2261 goto out_eagain;
2262 }
2263
Chuck Leverc740eff2009-08-09 15:09:46 -04002264 dprintk("RPC: worker connecting xprt %p via %s to "
2265 "%s (port %s)\n", xprt,
2266 xprt->address_strings[RPC_DISPLAY_PROTO],
2267 xprt->address_strings[RPC_DISPLAY_ADDR],
2268 xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever16be2d22007-08-06 11:57:38 -04002269
2270 status = xs_tcp_finish_connecting(xprt, sock);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04002271 trace_rpc_socket_connect(xprt, sock, status);
Chuck Lever46121cf2007-01-31 12:14:08 -05002272 dprintk("RPC: %p connect status %d connected %d sock state %d\n",
2273 xprt, -status, xprt_connected(xprt),
2274 sock->sk->sk_state);
Trond Myklebust2a491992009-03-11 14:38:00 -04002275 switch (status) {
Trond Myklebustf75e6742009-04-21 17:18:20 -04002276 default:
2277 printk("%s: connect returned unhandled error %d\n",
2278 __func__, status);
2279 case -EADDRNOTAVAIL:
2280 /* We're probably in TIME_WAIT. Get rid of existing socket,
2281 * and retry
2282 */
Trond Myklebusta519fc72012-09-12 16:49:15 -04002283 xs_tcp_force_close(xprt);
Trond Myklebust88b5ed72009-06-17 13:22:57 -07002284 break;
Trond Myklebust2a491992009-03-11 14:38:00 -04002285 case 0:
2286 case -EINPROGRESS:
2287 case -EALREADY:
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002288 xprt_unlock_connect(xprt, transport);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002289 xprt_clear_connecting(xprt);
2290 return;
Trond Myklebust9fcfe0c2010-03-02 13:06:21 -05002291 case -EINVAL:
2292 /* Happens, for instance, if the user specified a link
2293 * local IPv6 address without a scope-id.
2294 */
Trond Myklebust3ed5e2a2013-03-04 17:29:33 -05002295 case -ECONNREFUSED:
2296 case -ECONNRESET:
2297 case -ENETUNREACH:
Trond Myklebust3913c782015-02-08 21:44:04 -05002298 case -EADDRINUSE:
Trond Myklebust3601c4a2014-06-30 13:42:19 -04002299 case -ENOBUFS:
Trond Myklebust3ed5e2a2013-03-04 17:29:33 -05002300 /* retry with existing socket, after a delay */
Trond Myklebust9fcfe0c2010-03-02 13:06:21 -05002301 goto out;
Chuck Levera246b012005-08-11 16:25:23 -04002302 }
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002303out_eagain:
Trond Myklebust2a491992009-03-11 14:38:00 -04002304 status = -EAGAIN;
Chuck Levera246b012005-08-11 16:25:23 -04002305out:
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002306 xprt_unlock_connect(xprt, transport);
Chuck Lever2226feb2005-08-11 16:25:38 -04002307 xprt_clear_connecting(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002308 xprt_wake_pending_tasks(xprt, status);
Chuck Levera246b012005-08-11 16:25:23 -04002309}
2310
Chuck Lever68e220b2007-08-06 11:57:48 -04002311/**
Chuck Lever9903cd12005-08-11 16:25:26 -04002312 * xs_connect - connect a socket to a remote endpoint
Trond Myklebust1b092092013-01-08 09:26:49 -05002313 * @xprt: pointer to transport structure
Chuck Lever9903cd12005-08-11 16:25:26 -04002314 * @task: address of RPC task that manages state of connect request
2315 *
2316 * TCP: If the remote end dropped the connection, delay reconnecting.
Chuck Lever03bf4b72005-08-25 16:25:55 -07002317 *
2318 * UDP socket connects are synchronous, but we use a work queue anyway
2319 * to guarantee that even unprivileged user processes can set up a
2320 * socket on a privileged port.
2321 *
2322 * If a UDP socket connect fails, the delay behavior here prevents
2323 * retry floods (hard mounts).
Chuck Lever9903cd12005-08-11 16:25:26 -04002324 */
Trond Myklebust1b092092013-01-08 09:26:49 -05002325static void xs_connect(struct rpc_xprt *xprt, struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -04002326{
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002327 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002328
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002329 WARN_ON_ONCE(!xprt_lock_connect(xprt, task, transport));
2330
Chuck Lever09a21c42009-12-03 15:58:56 -05002331 if (transport->sock != NULL && !RPC_IS_SOFTCONN(task)) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002332 dprintk("RPC: xs_connect delayed xprt %p for %lu "
2333 "seconds\n",
Chuck Lever03bf4b72005-08-25 16:25:55 -07002334 xprt, xprt->reestablish_timeout / HZ);
Trond Myklebustc1384c92007-06-14 18:00:42 -04002335 queue_delayed_work(rpciod_workqueue,
2336 &transport->connect_worker,
2337 xprt->reestablish_timeout);
Chuck Lever03bf4b72005-08-25 16:25:55 -07002338 xprt->reestablish_timeout <<= 1;
Neil Brown61d0a8e2009-09-23 14:36:37 -04002339 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
2340 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
Chuck Lever03bf4b72005-08-25 16:25:55 -07002341 if (xprt->reestablish_timeout > XS_TCP_MAX_REEST_TO)
2342 xprt->reestablish_timeout = XS_TCP_MAX_REEST_TO;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002343 } else {
Chuck Lever46121cf2007-01-31 12:14:08 -05002344 dprintk("RPC: xs_connect scheduled xprt %p\n", xprt);
Trond Myklebustc1384c92007-06-14 18:00:42 -04002345 queue_delayed_work(rpciod_workqueue,
2346 &transport->connect_worker, 0);
Chuck Levera246b012005-08-11 16:25:23 -04002347 }
2348}
2349
Chuck Lever262ca072006-03-20 13:44:16 -05002350/**
Chuck Lever176e21e2011-05-09 15:22:44 -04002351 * xs_local_print_stats - display AF_LOCAL socket-specifc stats
2352 * @xprt: rpc_xprt struct containing statistics
2353 * @seq: output file
2354 *
2355 */
2356static void xs_local_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2357{
2358 long idle_time = 0;
2359
2360 if (xprt_connected(xprt))
2361 idle_time = (long)(jiffies - xprt->last_used) / HZ;
2362
2363 seq_printf(seq, "\txprt:\tlocal %lu %lu %lu %ld %lu %lu %lu "
Andy Adamson15a45202012-02-14 16:19:18 -05002364 "%llu %llu %lu %llu %llu\n",
Chuck Lever176e21e2011-05-09 15:22:44 -04002365 xprt->stat.bind_count,
2366 xprt->stat.connect_count,
2367 xprt->stat.connect_time,
2368 idle_time,
2369 xprt->stat.sends,
2370 xprt->stat.recvs,
2371 xprt->stat.bad_xids,
2372 xprt->stat.req_u,
Andy Adamson15a45202012-02-14 16:19:18 -05002373 xprt->stat.bklog_u,
2374 xprt->stat.max_slots,
2375 xprt->stat.sending_u,
2376 xprt->stat.pending_u);
Chuck Lever176e21e2011-05-09 15:22:44 -04002377}
2378
2379/**
Chuck Lever262ca072006-03-20 13:44:16 -05002380 * xs_udp_print_stats - display UDP socket-specifc stats
2381 * @xprt: rpc_xprt struct containing statistics
2382 * @seq: output file
2383 *
2384 */
2385static void xs_udp_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2386{
Chuck Leverc8475462006-12-05 16:35:26 -05002387 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
2388
Andy Adamson15a45202012-02-14 16:19:18 -05002389 seq_printf(seq, "\txprt:\tudp %u %lu %lu %lu %lu %llu %llu "
2390 "%lu %llu %llu\n",
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002391 transport->srcport,
Chuck Lever262ca072006-03-20 13:44:16 -05002392 xprt->stat.bind_count,
2393 xprt->stat.sends,
2394 xprt->stat.recvs,
2395 xprt->stat.bad_xids,
2396 xprt->stat.req_u,
Andy Adamson15a45202012-02-14 16:19:18 -05002397 xprt->stat.bklog_u,
2398 xprt->stat.max_slots,
2399 xprt->stat.sending_u,
2400 xprt->stat.pending_u);
Chuck Lever262ca072006-03-20 13:44:16 -05002401}
2402
2403/**
2404 * xs_tcp_print_stats - display TCP socket-specifc stats
2405 * @xprt: rpc_xprt struct containing statistics
2406 * @seq: output file
2407 *
2408 */
2409static void xs_tcp_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2410{
Chuck Leverc8475462006-12-05 16:35:26 -05002411 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262ca072006-03-20 13:44:16 -05002412 long idle_time = 0;
2413
2414 if (xprt_connected(xprt))
2415 idle_time = (long)(jiffies - xprt->last_used) / HZ;
2416
Andy Adamson15a45202012-02-14 16:19:18 -05002417 seq_printf(seq, "\txprt:\ttcp %u %lu %lu %lu %ld %lu %lu %lu "
2418 "%llu %llu %lu %llu %llu\n",
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002419 transport->srcport,
Chuck Lever262ca072006-03-20 13:44:16 -05002420 xprt->stat.bind_count,
2421 xprt->stat.connect_count,
2422 xprt->stat.connect_time,
2423 idle_time,
2424 xprt->stat.sends,
2425 xprt->stat.recvs,
2426 xprt->stat.bad_xids,
2427 xprt->stat.req_u,
Andy Adamson15a45202012-02-14 16:19:18 -05002428 xprt->stat.bklog_u,
2429 xprt->stat.max_slots,
2430 xprt->stat.sending_u,
2431 xprt->stat.pending_u);
Chuck Lever262ca072006-03-20 13:44:16 -05002432}
2433
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002434/*
2435 * Allocate a bunch of pages for a scratch buffer for the rpc code. The reason
2436 * we allocate pages instead doing a kmalloc like rpc_malloc is because we want
2437 * to use the server side send routines.
2438 */
H Hartley Sweeten5a51f132010-01-14 15:38:31 -07002439static void *bc_malloc(struct rpc_task *task, size_t size)
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002440{
2441 struct page *page;
2442 struct rpc_buffer *buf;
2443
Weston Andros Adamsonb8a13d02012-10-23 10:43:43 -04002444 WARN_ON_ONCE(size > PAGE_SIZE - sizeof(struct rpc_buffer));
2445 if (size > PAGE_SIZE - sizeof(struct rpc_buffer))
2446 return NULL;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002447
Weston Andros Adamsonb8a13d02012-10-23 10:43:43 -04002448 page = alloc_page(GFP_KERNEL);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002449 if (!page)
2450 return NULL;
2451
2452 buf = page_address(page);
2453 buf->len = PAGE_SIZE;
2454
2455 return buf->data;
2456}
2457
2458/*
2459 * Free the space allocated in the bc_alloc routine
2460 */
H Hartley Sweeten5a51f132010-01-14 15:38:31 -07002461static void bc_free(void *buffer)
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002462{
2463 struct rpc_buffer *buf;
2464
2465 if (!buffer)
2466 return;
2467
2468 buf = container_of(buffer, struct rpc_buffer, data);
2469 free_page((unsigned long)buf);
2470}
2471
2472/*
2473 * Use the svc_sock to send the callback. Must be called with svsk->sk_mutex
2474 * held. Borrows heavily from svc_tcp_sendto and xs_tcp_send_request.
2475 */
2476static int bc_sendto(struct rpc_rqst *req)
2477{
2478 int len;
2479 struct xdr_buf *xbufp = &req->rq_snd_buf;
2480 struct rpc_xprt *xprt = req->rq_xprt;
2481 struct sock_xprt *transport =
2482 container_of(xprt, struct sock_xprt, xprt);
2483 struct socket *sock = transport->sock;
2484 unsigned long headoff;
2485 unsigned long tailoff;
2486
Chuck Lever61677ee2011-05-09 15:22:34 -04002487 xs_encode_stream_record_marker(xbufp);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002488
2489 tailoff = (unsigned long)xbufp->tail[0].iov_base & ~PAGE_MASK;
2490 headoff = (unsigned long)xbufp->head[0].iov_base & ~PAGE_MASK;
2491 len = svc_send_common(sock, xbufp,
2492 virt_to_page(xbufp->head[0].iov_base), headoff,
2493 xbufp->tail[0].iov_base, tailoff);
2494
2495 if (len != xbufp->len) {
2496 printk(KERN_NOTICE "Error sending entire callback!\n");
2497 len = -EAGAIN;
2498 }
2499
2500 return len;
2501}
2502
2503/*
2504 * The send routine. Borrows from svc_send
2505 */
2506static int bc_send_request(struct rpc_task *task)
2507{
2508 struct rpc_rqst *req = task->tk_rqstp;
2509 struct svc_xprt *xprt;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002510 u32 len;
2511
2512 dprintk("sending request with xid: %08x\n", ntohl(req->rq_xid));
2513 /*
2514 * Get the server socket associated with this callback xprt
2515 */
2516 xprt = req->rq_xprt->bc_xprt;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002517
2518 /*
2519 * Grab the mutex to serialize data as the connection is shared
2520 * with the fore channel
2521 */
2522 if (!mutex_trylock(&xprt->xpt_mutex)) {
2523 rpc_sleep_on(&xprt->xpt_bc_pending, task, NULL);
2524 if (!mutex_trylock(&xprt->xpt_mutex))
2525 return -EAGAIN;
2526 rpc_wake_up_queued_task(&xprt->xpt_bc_pending, task);
2527 }
2528 if (test_bit(XPT_DEAD, &xprt->xpt_flags))
2529 len = -ENOTCONN;
2530 else
2531 len = bc_sendto(req);
2532 mutex_unlock(&xprt->xpt_mutex);
2533
2534 if (len > 0)
2535 len = 0;
2536
2537 return len;
2538}
2539
2540/*
2541 * The close routine. Since this is client initiated, we do nothing
2542 */
2543
2544static void bc_close(struct rpc_xprt *xprt)
2545{
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002546}
2547
2548/*
2549 * The xprt destroy routine. Again, because this connection is client
2550 * initiated, we do nothing
2551 */
2552
2553static void bc_destroy(struct rpc_xprt *xprt)
2554{
Kinglong Mee47f72ef2014-03-24 11:58:16 +08002555 dprintk("RPC: bc_destroy xprt %p\n", xprt);
2556
2557 xs_xprt_free(xprt);
2558 module_put(THIS_MODULE);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002559}
2560
Chuck Lever176e21e2011-05-09 15:22:44 -04002561static struct rpc_xprt_ops xs_local_ops = {
2562 .reserve_xprt = xprt_reserve_xprt,
2563 .release_xprt = xs_tcp_release_xprt,
Trond Myklebustf39c1bf2012-09-07 11:08:50 -04002564 .alloc_slot = xprt_alloc_slot,
Chuck Lever176e21e2011-05-09 15:22:44 -04002565 .rpcbind = xs_local_rpcbind,
2566 .set_port = xs_local_set_port,
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05002567 .connect = xs_local_connect,
Chuck Lever176e21e2011-05-09 15:22:44 -04002568 .buf_alloc = rpc_malloc,
2569 .buf_free = rpc_free,
2570 .send_request = xs_local_send_request,
2571 .set_retrans_timeout = xprt_set_retrans_timeout_def,
2572 .close = xs_close,
Trond Myklebusta1311d82013-10-31 09:18:49 -04002573 .destroy = xs_destroy,
Chuck Lever176e21e2011-05-09 15:22:44 -04002574 .print_stats = xs_local_print_stats,
2575};
2576
Chuck Lever262965f2005-08-11 16:25:56 -04002577static struct rpc_xprt_ops xs_udp_ops = {
Chuck Lever43118c22005-08-25 16:25:49 -07002578 .set_buffer_size = xs_udp_set_buffer_size,
Chuck Lever12a80462005-08-25 16:25:51 -07002579 .reserve_xprt = xprt_reserve_xprt_cong,
Chuck Lever49e9a892005-08-25 16:25:51 -07002580 .release_xprt = xprt_release_xprt_cong,
Trond Myklebustf39c1bf2012-09-07 11:08:50 -04002581 .alloc_slot = xprt_alloc_slot,
Chuck Lever45160d62007-07-01 12:13:17 -04002582 .rpcbind = rpcb_getport_async,
Chuck Lever92200412006-01-03 09:55:51 +01002583 .set_port = xs_set_port,
Chuck Lever9903cd12005-08-11 16:25:26 -04002584 .connect = xs_connect,
Chuck Lever02107142006-01-03 09:55:49 +01002585 .buf_alloc = rpc_malloc,
2586 .buf_free = rpc_free,
Chuck Lever262965f2005-08-11 16:25:56 -04002587 .send_request = xs_udp_send_request,
Chuck Leverfe3aca22005-08-25 16:25:50 -07002588 .set_retrans_timeout = xprt_set_retrans_timeout_rtt,
Chuck Lever46c0ee82005-08-25 16:25:52 -07002589 .timer = xs_udp_timer,
Chuck Levera58dd392005-08-25 16:25:53 -07002590 .release_request = xprt_release_rqst_cong,
Chuck Lever262965f2005-08-11 16:25:56 -04002591 .close = xs_close,
2592 .destroy = xs_destroy,
Chuck Lever262ca072006-03-20 13:44:16 -05002593 .print_stats = xs_udp_print_stats,
Chuck Lever262965f2005-08-11 16:25:56 -04002594};
2595
2596static struct rpc_xprt_ops xs_tcp_ops = {
Chuck Lever12a80462005-08-25 16:25:51 -07002597 .reserve_xprt = xprt_reserve_xprt,
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04002598 .release_xprt = xs_tcp_release_xprt,
Trond Myklebustf39c1bf2012-09-07 11:08:50 -04002599 .alloc_slot = xprt_lock_and_alloc_slot,
Chuck Lever45160d62007-07-01 12:13:17 -04002600 .rpcbind = rpcb_getport_async,
Chuck Lever92200412006-01-03 09:55:51 +01002601 .set_port = xs_set_port,
Trond Myklebust0b9e7942010-04-16 16:41:57 -04002602 .connect = xs_connect,
Chuck Lever02107142006-01-03 09:55:49 +01002603 .buf_alloc = rpc_malloc,
2604 .buf_free = rpc_free,
Chuck Lever262965f2005-08-11 16:25:56 -04002605 .send_request = xs_tcp_send_request,
Chuck Leverfe3aca22005-08-25 16:25:50 -07002606 .set_retrans_timeout = xprt_set_retrans_timeout_def,
Trond Myklebustf75e6742009-04-21 17:18:20 -04002607 .close = xs_tcp_close,
Chuck Lever9903cd12005-08-11 16:25:26 -04002608 .destroy = xs_destroy,
Chuck Lever262ca072006-03-20 13:44:16 -05002609 .print_stats = xs_tcp_print_stats,
Chuck Levera246b012005-08-11 16:25:23 -04002610};
2611
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002612/*
2613 * The rpc_xprt_ops for the server backchannel
2614 */
2615
2616static struct rpc_xprt_ops bc_tcp_ops = {
2617 .reserve_xprt = xprt_reserve_xprt,
2618 .release_xprt = xprt_release_xprt,
Bryan Schumaker84e28a32012-09-24 13:39:01 -04002619 .alloc_slot = xprt_alloc_slot,
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002620 .buf_alloc = bc_malloc,
2621 .buf_free = bc_free,
2622 .send_request = bc_send_request,
2623 .set_retrans_timeout = xprt_set_retrans_timeout_def,
2624 .close = bc_close,
2625 .destroy = bc_destroy,
2626 .print_stats = xs_tcp_print_stats,
2627};
2628
Chuck Lever92476852010-10-20 11:53:01 -04002629static int xs_init_anyaddr(const int family, struct sockaddr *sap)
2630{
2631 static const struct sockaddr_in sin = {
2632 .sin_family = AF_INET,
2633 .sin_addr.s_addr = htonl(INADDR_ANY),
2634 };
2635 static const struct sockaddr_in6 sin6 = {
2636 .sin6_family = AF_INET6,
2637 .sin6_addr = IN6ADDR_ANY_INIT,
2638 };
2639
2640 switch (family) {
Chuck Lever176e21e2011-05-09 15:22:44 -04002641 case AF_LOCAL:
2642 break;
Chuck Lever92476852010-10-20 11:53:01 -04002643 case AF_INET:
2644 memcpy(sap, &sin, sizeof(sin));
2645 break;
2646 case AF_INET6:
2647 memcpy(sap, &sin6, sizeof(sin6));
2648 break;
2649 default:
2650 dprintk("RPC: %s: Bad address family\n", __func__);
2651 return -EAFNOSUPPORT;
2652 }
2653 return 0;
2654}
2655
\"Talpey, Thomas\3c341b0b2007-09-10 13:47:07 -04002656static struct rpc_xprt *xs_setup_xprt(struct xprt_create *args,
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002657 unsigned int slot_table_size,
2658 unsigned int max_slot_table_size)
Chuck Leverc8541ec2006-10-17 14:44:27 -04002659{
2660 struct rpc_xprt *xprt;
Chuck Leverffc2e512006-12-05 16:35:11 -05002661 struct sock_xprt *new;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002662
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002663 if (args->addrlen > sizeof(xprt->addr)) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002664 dprintk("RPC: xs_setup_xprt: address too large\n");
Chuck Leverc8541ec2006-10-17 14:44:27 -04002665 return ERR_PTR(-EBADF);
2666 }
2667
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002668 xprt = xprt_alloc(args->net, sizeof(*new), slot_table_size,
2669 max_slot_table_size);
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +04002670 if (xprt == NULL) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002671 dprintk("RPC: xs_setup_xprt: couldn't allocate "
2672 "rpc_xprt\n");
Chuck Leverc8541ec2006-10-17 14:44:27 -04002673 return ERR_PTR(-ENOMEM);
2674 }
2675
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +04002676 new = container_of(xprt, struct sock_xprt, xprt);
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002677 memcpy(&xprt->addr, args->dstaddr, args->addrlen);
2678 xprt->addrlen = args->addrlen;
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +02002679 if (args->srcaddr)
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002680 memcpy(&new->srcaddr, args->srcaddr, args->addrlen);
Chuck Lever92476852010-10-20 11:53:01 -04002681 else {
2682 int err;
2683 err = xs_init_anyaddr(args->dstaddr->sa_family,
2684 (struct sockaddr *)&new->srcaddr);
Stanislav Kinsbursky2aa13532011-11-10 14:33:23 +03002685 if (err != 0) {
2686 xprt_free(xprt);
Chuck Lever92476852010-10-20 11:53:01 -04002687 return ERR_PTR(err);
Stanislav Kinsbursky2aa13532011-11-10 14:33:23 +03002688 }
Chuck Lever92476852010-10-20 11:53:01 -04002689 }
Chuck Leverc8541ec2006-10-17 14:44:27 -04002690
2691 return xprt;
2692}
2693
Chuck Lever176e21e2011-05-09 15:22:44 -04002694static const struct rpc_timeout xs_local_default_timeout = {
2695 .to_initval = 10 * HZ,
2696 .to_maxval = 10 * HZ,
2697 .to_retries = 2,
2698};
2699
2700/**
2701 * xs_setup_local - Set up transport to use an AF_LOCAL socket
2702 * @args: rpc transport creation arguments
2703 *
2704 * AF_LOCAL is a "tpi_cots_ord" transport, just like TCP
2705 */
2706static struct rpc_xprt *xs_setup_local(struct xprt_create *args)
2707{
2708 struct sockaddr_un *sun = (struct sockaddr_un *)args->dstaddr;
2709 struct sock_xprt *transport;
2710 struct rpc_xprt *xprt;
2711 struct rpc_xprt *ret;
2712
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002713 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries,
2714 xprt_max_tcp_slot_table_entries);
Chuck Lever176e21e2011-05-09 15:22:44 -04002715 if (IS_ERR(xprt))
2716 return xprt;
2717 transport = container_of(xprt, struct sock_xprt, xprt);
2718
2719 xprt->prot = 0;
2720 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
2721 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
2722
2723 xprt->bind_timeout = XS_BIND_TO;
2724 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
2725 xprt->idle_timeout = XS_IDLE_DISC_TO;
2726
2727 xprt->ops = &xs_local_ops;
2728 xprt->timeout = &xs_local_default_timeout;
2729
NeilBrown93dc41b2013-10-31 16:14:36 +11002730 INIT_DELAYED_WORK(&transport->connect_worker,
2731 xs_dummy_setup_socket);
2732
Chuck Lever176e21e2011-05-09 15:22:44 -04002733 switch (sun->sun_family) {
2734 case AF_LOCAL:
2735 if (sun->sun_path[0] != '/') {
2736 dprintk("RPC: bad AF_LOCAL address: %s\n",
2737 sun->sun_path);
2738 ret = ERR_PTR(-EINVAL);
2739 goto out_err;
2740 }
2741 xprt_set_bound(xprt);
Chuck Lever176e21e2011-05-09 15:22:44 -04002742 xs_format_peer_addresses(xprt, "local", RPCBIND_NETID_LOCAL);
J. Bruce Fields7073ea82013-02-21 10:14:22 -05002743 ret = ERR_PTR(xs_local_setup_socket(transport));
2744 if (ret)
2745 goto out_err;
Chuck Lever176e21e2011-05-09 15:22:44 -04002746 break;
2747 default:
2748 ret = ERR_PTR(-EAFNOSUPPORT);
2749 goto out_err;
2750 }
2751
2752 dprintk("RPC: set up xprt to %s via AF_LOCAL\n",
2753 xprt->address_strings[RPC_DISPLAY_ADDR]);
2754
2755 if (try_module_get(THIS_MODULE))
2756 return xprt;
2757 ret = ERR_PTR(-EINVAL);
2758out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08002759 xs_xprt_free(xprt);
Chuck Lever176e21e2011-05-09 15:22:44 -04002760 return ret;
2761}
2762
Trond Myklebust2881ae72007-12-20 16:03:54 -05002763static const struct rpc_timeout xs_udp_default_timeout = {
2764 .to_initval = 5 * HZ,
2765 .to_maxval = 30 * HZ,
2766 .to_increment = 5 * HZ,
2767 .to_retries = 5,
2768};
2769
Chuck Lever9903cd12005-08-11 16:25:26 -04002770/**
2771 * xs_setup_udp - Set up transport to use a UDP socket
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002772 * @args: rpc transport creation arguments
Chuck Lever9903cd12005-08-11 16:25:26 -04002773 *
2774 */
Adrian Bunk483066d2007-10-24 18:24:02 +02002775static struct rpc_xprt *xs_setup_udp(struct xprt_create *args)
Chuck Levera246b012005-08-11 16:25:23 -04002776{
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002777 struct sockaddr *addr = args->dstaddr;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002778 struct rpc_xprt *xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002779 struct sock_xprt *transport;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002780 struct rpc_xprt *ret;
Chuck Levera246b012005-08-11 16:25:23 -04002781
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002782 xprt = xs_setup_xprt(args, xprt_udp_slot_table_entries,
2783 xprt_udp_slot_table_entries);
Chuck Leverc8541ec2006-10-17 14:44:27 -04002784 if (IS_ERR(xprt))
2785 return xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002786 transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002787
Chuck Leverec739ef2006-08-22 20:06:15 -04002788 xprt->prot = IPPROTO_UDP;
Chuck Lever808012f2005-08-25 16:25:49 -07002789 xprt->tsh_size = 0;
Chuck Levera246b012005-08-11 16:25:23 -04002790 /* XXX: header size can vary due to auth type, IPv6, etc. */
2791 xprt->max_payload = (1U << 16) - (MAX_HEADER << 3);
2792
Chuck Lever03bf4b72005-08-25 16:25:55 -07002793 xprt->bind_timeout = XS_BIND_TO;
Chuck Lever03bf4b72005-08-25 16:25:55 -07002794 xprt->reestablish_timeout = XS_UDP_REEST_TO;
2795 xprt->idle_timeout = XS_IDLE_DISC_TO;
Chuck Levera246b012005-08-11 16:25:23 -04002796
Chuck Lever262965f2005-08-11 16:25:56 -04002797 xprt->ops = &xs_udp_ops;
Chuck Levera246b012005-08-11 16:25:23 -04002798
Trond Myklebustba7392b2007-12-20 16:03:55 -05002799 xprt->timeout = &xs_udp_default_timeout;
Chuck Levera246b012005-08-11 16:25:23 -04002800
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002801 switch (addr->sa_family) {
2802 case AF_INET:
2803 if (((struct sockaddr_in *)addr)->sin_port != htons(0))
2804 xprt_set_bound(xprt);
2805
2806 INIT_DELAYED_WORK(&transport->connect_worker,
Pavel Emelyanov8c14ff22010-10-04 16:58:02 +04002807 xs_udp_setup_socket);
Chuck Lever9dc3b092009-08-09 15:09:46 -04002808 xs_format_peer_addresses(xprt, "udp", RPCBIND_NETID_UDP);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002809 break;
2810 case AF_INET6:
2811 if (((struct sockaddr_in6 *)addr)->sin6_port != htons(0))
2812 xprt_set_bound(xprt);
2813
2814 INIT_DELAYED_WORK(&transport->connect_worker,
Pavel Emelyanov8c14ff22010-10-04 16:58:02 +04002815 xs_udp_setup_socket);
Chuck Lever9dc3b092009-08-09 15:09:46 -04002816 xs_format_peer_addresses(xprt, "udp", RPCBIND_NETID_UDP6);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002817 break;
2818 default:
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002819 ret = ERR_PTR(-EAFNOSUPPORT);
2820 goto out_err;
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002821 }
2822
Chuck Leverc740eff2009-08-09 15:09:46 -04002823 if (xprt_bound(xprt))
2824 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
2825 xprt->address_strings[RPC_DISPLAY_ADDR],
2826 xprt->address_strings[RPC_DISPLAY_PORT],
2827 xprt->address_strings[RPC_DISPLAY_PROTO]);
2828 else
2829 dprintk("RPC: set up xprt to %s (autobind) via %s\n",
2830 xprt->address_strings[RPC_DISPLAY_ADDR],
2831 xprt->address_strings[RPC_DISPLAY_PROTO]);
Chuck Leveredb267a2006-08-22 20:06:18 -04002832
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002833 if (try_module_get(THIS_MODULE))
2834 return xprt;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002835 ret = ERR_PTR(-EINVAL);
2836out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08002837 xs_xprt_free(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002838 return ret;
Chuck Levera246b012005-08-11 16:25:23 -04002839}
2840
Trond Myklebust2881ae72007-12-20 16:03:54 -05002841static const struct rpc_timeout xs_tcp_default_timeout = {
2842 .to_initval = 60 * HZ,
2843 .to_maxval = 60 * HZ,
2844 .to_retries = 2,
2845};
2846
Chuck Lever9903cd12005-08-11 16:25:26 -04002847/**
2848 * xs_setup_tcp - Set up transport to use a TCP socket
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002849 * @args: rpc transport creation arguments
Chuck Lever9903cd12005-08-11 16:25:26 -04002850 *
2851 */
Adrian Bunk483066d2007-10-24 18:24:02 +02002852static struct rpc_xprt *xs_setup_tcp(struct xprt_create *args)
Chuck Levera246b012005-08-11 16:25:23 -04002853{
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002854 struct sockaddr *addr = args->dstaddr;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002855 struct rpc_xprt *xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002856 struct sock_xprt *transport;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002857 struct rpc_xprt *ret;
Trond Myklebustb7993ce2013-04-14 11:42:00 -04002858 unsigned int max_slot_table_size = xprt_max_tcp_slot_table_entries;
2859
2860 if (args->flags & XPRT_CREATE_INFINITE_SLOTS)
2861 max_slot_table_size = RPC_MAX_SLOT_TABLE_LIMIT;
Chuck Levera246b012005-08-11 16:25:23 -04002862
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002863 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries,
Trond Myklebustb7993ce2013-04-14 11:42:00 -04002864 max_slot_table_size);
Chuck Leverc8541ec2006-10-17 14:44:27 -04002865 if (IS_ERR(xprt))
2866 return xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002867 transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002868
Chuck Leverec739ef2006-08-22 20:06:15 -04002869 xprt->prot = IPPROTO_TCP;
Chuck Lever808012f2005-08-25 16:25:49 -07002870 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
Chuck Lever808012f2005-08-25 16:25:49 -07002871 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
Chuck Levera246b012005-08-11 16:25:23 -04002872
Chuck Lever03bf4b72005-08-25 16:25:55 -07002873 xprt->bind_timeout = XS_BIND_TO;
Chuck Lever03bf4b72005-08-25 16:25:55 -07002874 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
2875 xprt->idle_timeout = XS_IDLE_DISC_TO;
Chuck Levera246b012005-08-11 16:25:23 -04002876
Chuck Lever262965f2005-08-11 16:25:56 -04002877 xprt->ops = &xs_tcp_ops;
Trond Myklebustba7392b2007-12-20 16:03:55 -05002878 xprt->timeout = &xs_tcp_default_timeout;
Chuck Levera246b012005-08-11 16:25:23 -04002879
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002880 switch (addr->sa_family) {
2881 case AF_INET:
2882 if (((struct sockaddr_in *)addr)->sin_port != htons(0))
2883 xprt_set_bound(xprt);
2884
Chuck Lever9dc3b092009-08-09 15:09:46 -04002885 INIT_DELAYED_WORK(&transport->connect_worker,
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002886 xs_tcp_setup_socket);
Chuck Lever9dc3b092009-08-09 15:09:46 -04002887 xs_format_peer_addresses(xprt, "tcp", RPCBIND_NETID_TCP);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002888 break;
2889 case AF_INET6:
2890 if (((struct sockaddr_in6 *)addr)->sin6_port != htons(0))
2891 xprt_set_bound(xprt);
2892
Chuck Lever9dc3b092009-08-09 15:09:46 -04002893 INIT_DELAYED_WORK(&transport->connect_worker,
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002894 xs_tcp_setup_socket);
Chuck Lever9dc3b092009-08-09 15:09:46 -04002895 xs_format_peer_addresses(xprt, "tcp", RPCBIND_NETID_TCP6);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002896 break;
2897 default:
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002898 ret = ERR_PTR(-EAFNOSUPPORT);
2899 goto out_err;
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002900 }
2901
Chuck Leverc740eff2009-08-09 15:09:46 -04002902 if (xprt_bound(xprt))
2903 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
2904 xprt->address_strings[RPC_DISPLAY_ADDR],
2905 xprt->address_strings[RPC_DISPLAY_PORT],
2906 xprt->address_strings[RPC_DISPLAY_PROTO]);
2907 else
2908 dprintk("RPC: set up xprt to %s (autobind) via %s\n",
2909 xprt->address_strings[RPC_DISPLAY_ADDR],
2910 xprt->address_strings[RPC_DISPLAY_PROTO]);
2911
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002912 if (try_module_get(THIS_MODULE))
2913 return xprt;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002914 ret = ERR_PTR(-EINVAL);
2915out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08002916 xs_xprt_free(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002917 return ret;
Chuck Levera246b012005-08-11 16:25:23 -04002918}
Chuck Lever282b32e2006-12-05 16:35:51 -05002919
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002920/**
2921 * xs_setup_bc_tcp - Set up transport to use a TCP backchannel socket
2922 * @args: rpc transport creation arguments
2923 *
2924 */
2925static struct rpc_xprt *xs_setup_bc_tcp(struct xprt_create *args)
2926{
2927 struct sockaddr *addr = args->dstaddr;
2928 struct rpc_xprt *xprt;
2929 struct sock_xprt *transport;
2930 struct svc_sock *bc_sock;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002931 struct rpc_xprt *ret;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002932
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002933 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries,
2934 xprt_tcp_slot_table_entries);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002935 if (IS_ERR(xprt))
2936 return xprt;
2937 transport = container_of(xprt, struct sock_xprt, xprt);
2938
2939 xprt->prot = IPPROTO_TCP;
2940 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
2941 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
2942 xprt->timeout = &xs_tcp_default_timeout;
2943
2944 /* backchannel */
2945 xprt_set_bound(xprt);
2946 xprt->bind_timeout = 0;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002947 xprt->reestablish_timeout = 0;
2948 xprt->idle_timeout = 0;
2949
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002950 xprt->ops = &bc_tcp_ops;
2951
2952 switch (addr->sa_family) {
2953 case AF_INET:
2954 xs_format_peer_addresses(xprt, "tcp",
2955 RPCBIND_NETID_TCP);
2956 break;
2957 case AF_INET6:
2958 xs_format_peer_addresses(xprt, "tcp",
2959 RPCBIND_NETID_TCP6);
2960 break;
2961 default:
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002962 ret = ERR_PTR(-EAFNOSUPPORT);
2963 goto out_err;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002964 }
2965
Pavel Emelyanov50fa0d42010-10-05 20:49:35 +04002966 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
2967 xprt->address_strings[RPC_DISPLAY_ADDR],
2968 xprt->address_strings[RPC_DISPLAY_PORT],
2969 xprt->address_strings[RPC_DISPLAY_PROTO]);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002970
2971 /*
J. Bruce Fields99de8ea2010-12-08 12:45:44 -05002972 * Once we've associated a backchannel xprt with a connection,
Weng Meiling28303ca2013-11-30 17:56:44 +08002973 * we want to keep it around as long as the connection lasts,
2974 * in case we need to start using it for a backchannel again;
2975 * this reference won't be dropped until bc_xprt is destroyed.
J. Bruce Fields99de8ea2010-12-08 12:45:44 -05002976 */
2977 xprt_get(xprt);
2978 args->bc_xprt->xpt_bc_xprt = xprt;
2979 xprt->bc_xprt = args->bc_xprt;
2980 bc_sock = container_of(args->bc_xprt, struct svc_sock, sk_xprt);
2981 transport->sock = bc_sock->sk_sock;
2982 transport->inet = bc_sock->sk_sk;
2983
2984 /*
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002985 * Since we don't want connections for the backchannel, we set
2986 * the xprt status to connected
2987 */
2988 xprt_set_connected(xprt);
2989
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002990 if (try_module_get(THIS_MODULE))
2991 return xprt;
Kinglong Mee642aab52014-03-24 12:00:28 +08002992
2993 args->bc_xprt->xpt_bc_xprt = NULL;
J. Bruce Fields99de8ea2010-12-08 12:45:44 -05002994 xprt_put(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002995 ret = ERR_PTR(-EINVAL);
2996out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08002997 xs_xprt_free(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002998 return ret;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002999}
3000
Chuck Lever176e21e2011-05-09 15:22:44 -04003001static struct xprt_class xs_local_transport = {
3002 .list = LIST_HEAD_INIT(xs_local_transport.list),
3003 .name = "named UNIX socket",
3004 .owner = THIS_MODULE,
3005 .ident = XPRT_TRANSPORT_LOCAL,
3006 .setup = xs_setup_local,
3007};
3008
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003009static struct xprt_class xs_udp_transport = {
3010 .list = LIST_HEAD_INIT(xs_udp_transport.list),
3011 .name = "udp",
3012 .owner = THIS_MODULE,
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003013 .ident = XPRT_TRANSPORT_UDP,
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003014 .setup = xs_setup_udp,
3015};
3016
3017static struct xprt_class xs_tcp_transport = {
3018 .list = LIST_HEAD_INIT(xs_tcp_transport.list),
3019 .name = "tcp",
3020 .owner = THIS_MODULE,
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003021 .ident = XPRT_TRANSPORT_TCP,
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003022 .setup = xs_setup_tcp,
3023};
3024
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003025static struct xprt_class xs_bc_tcp_transport = {
3026 .list = LIST_HEAD_INIT(xs_bc_tcp_transport.list),
3027 .name = "tcp NFSv4.1 backchannel",
3028 .owner = THIS_MODULE,
3029 .ident = XPRT_TRANSPORT_BC_TCP,
3030 .setup = xs_setup_bc_tcp,
3031};
3032
Chuck Lever282b32e2006-12-05 16:35:51 -05003033/**
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003034 * init_socket_xprt - set up xprtsock's sysctls, register with RPC client
Chuck Lever282b32e2006-12-05 16:35:51 -05003035 *
3036 */
3037int init_socket_xprt(void)
3038{
Jeff Laytonf895b252014-11-17 16:58:04 -05003039#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Eric W. Biederman2b1bec52007-02-14 00:33:24 -08003040 if (!sunrpc_table_header)
Eric W. Biederman0b4d4142007-02-14 00:34:09 -08003041 sunrpc_table_header = register_sysctl_table(sunrpc_table);
Chuck Leverfbf76682006-12-05 16:35:54 -05003042#endif
3043
Chuck Lever176e21e2011-05-09 15:22:44 -04003044 xprt_register_transport(&xs_local_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003045 xprt_register_transport(&xs_udp_transport);
3046 xprt_register_transport(&xs_tcp_transport);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003047 xprt_register_transport(&xs_bc_tcp_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003048
Chuck Lever282b32e2006-12-05 16:35:51 -05003049 return 0;
3050}
3051
3052/**
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003053 * cleanup_socket_xprt - remove xprtsock's sysctls, unregister
Chuck Lever282b32e2006-12-05 16:35:51 -05003054 *
3055 */
3056void cleanup_socket_xprt(void)
3057{
Jeff Laytonf895b252014-11-17 16:58:04 -05003058#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Chuck Leverfbf76682006-12-05 16:35:54 -05003059 if (sunrpc_table_header) {
3060 unregister_sysctl_table(sunrpc_table_header);
3061 sunrpc_table_header = NULL;
3062 }
3063#endif
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003064
Chuck Lever176e21e2011-05-09 15:22:44 -04003065 xprt_unregister_transport(&xs_local_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003066 xprt_unregister_transport(&xs_udp_transport);
3067 xprt_unregister_transport(&xs_tcp_transport);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003068 xprt_unregister_transport(&xs_bc_tcp_transport);
Chuck Lever282b32e2006-12-05 16:35:51 -05003069}
Trond Myklebustcbf11072009-08-09 15:06:19 -04003070
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003071static int param_set_uint_minmax(const char *val,
3072 const struct kernel_param *kp,
Trond Myklebustcbf11072009-08-09 15:06:19 -04003073 unsigned int min, unsigned int max)
3074{
Daniel Walter00cfaa92014-06-21 13:06:38 +01003075 unsigned int num;
Trond Myklebustcbf11072009-08-09 15:06:19 -04003076 int ret;
3077
3078 if (!val)
3079 return -EINVAL;
Daniel Walter00cfaa92014-06-21 13:06:38 +01003080 ret = kstrtouint(val, 0, &num);
Trond Myklebustcbf11072009-08-09 15:06:19 -04003081 if (ret == -EINVAL || num < min || num > max)
3082 return -EINVAL;
3083 *((unsigned int *)kp->arg) = num;
3084 return 0;
3085}
3086
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003087static int param_set_portnr(const char *val, const struct kernel_param *kp)
Trond Myklebustcbf11072009-08-09 15:06:19 -04003088{
3089 return param_set_uint_minmax(val, kp,
3090 RPC_MIN_RESVPORT,
3091 RPC_MAX_RESVPORT);
3092}
3093
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003094static struct kernel_param_ops param_ops_portnr = {
3095 .set = param_set_portnr,
3096 .get = param_get_uint,
3097};
3098
Trond Myklebustcbf11072009-08-09 15:06:19 -04003099#define param_check_portnr(name, p) \
3100 __param_check(name, p, unsigned int);
3101
3102module_param_named(min_resvport, xprt_min_resvport, portnr, 0644);
3103module_param_named(max_resvport, xprt_max_resvport, portnr, 0644);
3104
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003105static int param_set_slot_table_size(const char *val,
3106 const struct kernel_param *kp)
Trond Myklebustcbf11072009-08-09 15:06:19 -04003107{
3108 return param_set_uint_minmax(val, kp,
3109 RPC_MIN_SLOT_TABLE,
3110 RPC_MAX_SLOT_TABLE);
3111}
3112
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003113static struct kernel_param_ops param_ops_slot_table_size = {
3114 .set = param_set_slot_table_size,
3115 .get = param_get_uint,
3116};
3117
Trond Myklebustcbf11072009-08-09 15:06:19 -04003118#define param_check_slot_table_size(name, p) \
3119 __param_check(name, p, unsigned int);
3120
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003121static int param_set_max_slot_table_size(const char *val,
3122 const struct kernel_param *kp)
3123{
3124 return param_set_uint_minmax(val, kp,
3125 RPC_MIN_SLOT_TABLE,
3126 RPC_MAX_SLOT_TABLE_LIMIT);
3127}
3128
3129static struct kernel_param_ops param_ops_max_slot_table_size = {
3130 .set = param_set_max_slot_table_size,
3131 .get = param_get_uint,
3132};
3133
3134#define param_check_max_slot_table_size(name, p) \
3135 __param_check(name, p, unsigned int);
3136
Trond Myklebustcbf11072009-08-09 15:06:19 -04003137module_param_named(tcp_slot_table_entries, xprt_tcp_slot_table_entries,
3138 slot_table_size, 0644);
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003139module_param_named(tcp_max_slot_table_entries, xprt_max_tcp_slot_table_entries,
3140 max_slot_table_size, 0644);
Trond Myklebustcbf11072009-08-09 15:06:19 -04003141module_param_named(udp_slot_table_entries, xprt_udp_slot_table_entries,
3142 slot_table_size, 0644);
3143