blob: 4f154d3887483e9cf1a6ab151c487e1d6113c1a8 [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);
Trond Myklebust7196dbb2017-02-08 11:17:54 -050055static void xs_tcp_set_socket_timeouts(struct rpc_xprt *xprt,
56 struct socket *sock);
Chuck Lever176e21e2011-05-09 15:22:44 -040057
Chuck Lever9903cd12005-08-11 16:25:26 -040058/*
Chuck Leverc556b752005-11-01 12:24:48 -050059 * xprtsock tunables
60 */
Trond Myklebust09acfea2012-03-11 15:22:54 -040061static unsigned int xprt_udp_slot_table_entries = RPC_DEF_SLOT_TABLE;
62static unsigned int xprt_tcp_slot_table_entries = RPC_MIN_SLOT_TABLE;
63static unsigned int xprt_max_tcp_slot_table_entries = RPC_MAX_SLOT_TABLE;
Chuck Leverc556b752005-11-01 12:24:48 -050064
Trond Myklebust09acfea2012-03-11 15:22:54 -040065static unsigned int xprt_min_resvport = RPC_DEF_MIN_RESVPORT;
66static unsigned int xprt_max_resvport = RPC_DEF_MAX_RESVPORT;
Chuck Leverc556b752005-11-01 12:24:48 -050067
Trond Myklebust54c09872015-02-09 11:01:02 -050068#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
69
Trond Myklebust7d1e8252009-03-11 14:38:03 -040070#define XS_TCP_LINGER_TO (15U * HZ)
Trond Myklebust25fe6142009-03-11 14:38:03 -040071static unsigned int xs_tcp_fin_timeout __read_mostly = XS_TCP_LINGER_TO;
Trond Myklebust7d1e8252009-03-11 14:38:03 -040072
Chuck Leverc556b752005-11-01 12:24:48 -050073/*
Chuck Leverfbf76682006-12-05 16:35:54 -050074 * We can register our own files under /proc/sys/sunrpc by
75 * calling register_sysctl_table() again. The files in that
76 * directory become the union of all files registered there.
77 *
78 * We simply need to make sure that we don't collide with
79 * someone else's file names!
80 */
81
Chuck Leverfbf76682006-12-05 16:35:54 -050082static unsigned int min_slot_table_size = RPC_MIN_SLOT_TABLE;
83static unsigned int max_slot_table_size = RPC_MAX_SLOT_TABLE;
Trond Myklebustd9ba1312011-07-17 18:11:30 -040084static unsigned int max_tcp_slot_table_limit = RPC_MAX_SLOT_TABLE_LIMIT;
Chuck Leverfbf76682006-12-05 16:35:54 -050085static unsigned int xprt_min_resvport_limit = RPC_MIN_RESVPORT;
86static unsigned int xprt_max_resvport_limit = RPC_MAX_RESVPORT;
87
88static struct ctl_table_header *sunrpc_table_header;
89
90/*
91 * FIXME: changing the UDP slot table size should also resize the UDP
92 * socket buffers for existing UDP transports
93 */
Joe Perchesfe2c6332013-06-11 23:04:25 -070094static struct ctl_table xs_tunables_table[] = {
Chuck Leverfbf76682006-12-05 16:35:54 -050095 {
Chuck Leverfbf76682006-12-05 16:35:54 -050096 .procname = "udp_slot_table_entries",
97 .data = &xprt_udp_slot_table_entries,
98 .maxlen = sizeof(unsigned int),
99 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800100 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -0500101 .extra1 = &min_slot_table_size,
102 .extra2 = &max_slot_table_size
103 },
104 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500105 .procname = "tcp_slot_table_entries",
106 .data = &xprt_tcp_slot_table_entries,
107 .maxlen = sizeof(unsigned int),
108 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800109 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -0500110 .extra1 = &min_slot_table_size,
111 .extra2 = &max_slot_table_size
112 },
113 {
Trond Myklebustd9ba1312011-07-17 18:11:30 -0400114 .procname = "tcp_max_slot_table_entries",
115 .data = &xprt_max_tcp_slot_table_entries,
116 .maxlen = sizeof(unsigned int),
117 .mode = 0644,
118 .proc_handler = proc_dointvec_minmax,
119 .extra1 = &min_slot_table_size,
120 .extra2 = &max_tcp_slot_table_limit
121 },
122 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500123 .procname = "min_resvport",
124 .data = &xprt_min_resvport,
125 .maxlen = sizeof(unsigned int),
126 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800127 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -0500128 .extra1 = &xprt_min_resvport_limit,
Frank Sorensone08ea3a2016-07-08 16:35:24 -0500129 .extra2 = &xprt_max_resvport
Chuck Leverfbf76682006-12-05 16:35:54 -0500130 },
131 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500132 .procname = "max_resvport",
133 .data = &xprt_max_resvport,
134 .maxlen = sizeof(unsigned int),
135 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800136 .proc_handler = proc_dointvec_minmax,
Frank Sorensone08ea3a2016-07-08 16:35:24 -0500137 .extra1 = &xprt_min_resvport,
Chuck Leverfbf76682006-12-05 16:35:54 -0500138 .extra2 = &xprt_max_resvport_limit
139 },
140 {
Trond Myklebust25fe6142009-03-11 14:38:03 -0400141 .procname = "tcp_fin_timeout",
142 .data = &xs_tcp_fin_timeout,
143 .maxlen = sizeof(xs_tcp_fin_timeout),
144 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800145 .proc_handler = proc_dointvec_jiffies,
Trond Myklebust25fe6142009-03-11 14:38:03 -0400146 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800147 { },
Chuck Leverfbf76682006-12-05 16:35:54 -0500148};
149
Joe Perchesfe2c6332013-06-11 23:04:25 -0700150static struct ctl_table sunrpc_table[] = {
Chuck Leverfbf76682006-12-05 16:35:54 -0500151 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500152 .procname = "sunrpc",
153 .mode = 0555,
154 .child = xs_tunables_table
155 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800156 { },
Chuck Leverfbf76682006-12-05 16:35:54 -0500157};
158
159#endif
160
161/*
Chuck Lever03bf4b72005-08-25 16:25:55 -0700162 * Wait duration for a reply from the RPC portmapper.
163 */
164#define XS_BIND_TO (60U * HZ)
165
166/*
167 * Delay if a UDP socket connect error occurs. This is most likely some
168 * kind of resource problem on the local host.
169 */
170#define XS_UDP_REEST_TO (2U * HZ)
171
172/*
173 * The reestablish timeout allows clients to delay for a bit before attempting
174 * to reconnect to a server that just dropped our connection.
175 *
176 * We implement an exponential backoff when trying to reestablish a TCP
177 * transport connection with the server. Some servers like to drop a TCP
178 * connection when they are overworked, so we start with a short timeout and
179 * increase over time if the server is down or not responding.
180 */
181#define XS_TCP_INIT_REEST_TO (3U * HZ)
Chuck Lever03bf4b72005-08-25 16:25:55 -0700182
183/*
184 * TCP idle timeout; client drops the transport socket if it is idle
185 * for this long. Note that we also timeout UDP sockets to prevent
186 * holding port numbers when there is no RPC traffic.
187 */
188#define XS_IDLE_DISC_TO (5U * 60 * HZ)
189
Jeff Laytonf895b252014-11-17 16:58:04 -0500190#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Chuck Levera246b012005-08-11 16:25:23 -0400191# undef RPC_DEBUG_DATA
Chuck Lever9903cd12005-08-11 16:25:26 -0400192# define RPCDBG_FACILITY RPCDBG_TRANS
Chuck Levera246b012005-08-11 16:25:23 -0400193#endif
194
Chuck Levera246b012005-08-11 16:25:23 -0400195#ifdef RPC_DEBUG_DATA
Chuck Lever9903cd12005-08-11 16:25:26 -0400196static void xs_pktdump(char *msg, u32 *packet, unsigned int count)
Chuck Levera246b012005-08-11 16:25:23 -0400197{
Chuck Lever9903cd12005-08-11 16:25:26 -0400198 u8 *buf = (u8 *) packet;
199 int j;
Chuck Levera246b012005-08-11 16:25:23 -0400200
Chuck Lever46121cf2007-01-31 12:14:08 -0500201 dprintk("RPC: %s\n", msg);
Chuck Levera246b012005-08-11 16:25:23 -0400202 for (j = 0; j < count && j < 128; j += 4) {
203 if (!(j & 31)) {
204 if (j)
205 dprintk("\n");
206 dprintk("0x%04x ", j);
207 }
208 dprintk("%02x%02x%02x%02x ",
209 buf[j], buf[j+1], buf[j+2], buf[j+3]);
210 }
211 dprintk("\n");
212}
213#else
Chuck Lever9903cd12005-08-11 16:25:26 -0400214static inline void xs_pktdump(char *msg, u32 *packet, unsigned int count)
Chuck Levera246b012005-08-11 16:25:23 -0400215{
216 /* NOP */
217}
218#endif
219
Trond Myklebust21180712013-12-31 13:22:59 -0500220static inline struct rpc_xprt *xprt_from_sock(struct sock *sk)
221{
222 return (struct rpc_xprt *) sk->sk_user_data;
223}
224
Chuck Lever95392c52007-08-06 11:57:58 -0400225static inline struct sockaddr *xs_addr(struct rpc_xprt *xprt)
Chuck Leveredb267a2006-08-22 20:06:18 -0400226{
Chuck Lever95392c52007-08-06 11:57:58 -0400227 return (struct sockaddr *) &xprt->addr;
228}
229
Chuck Lever176e21e2011-05-09 15:22:44 -0400230static inline struct sockaddr_un *xs_addr_un(struct rpc_xprt *xprt)
231{
232 return (struct sockaddr_un *) &xprt->addr;
233}
234
Chuck Lever95392c52007-08-06 11:57:58 -0400235static inline struct sockaddr_in *xs_addr_in(struct rpc_xprt *xprt)
236{
237 return (struct sockaddr_in *) &xprt->addr;
238}
239
240static inline struct sockaddr_in6 *xs_addr_in6(struct rpc_xprt *xprt)
241{
242 return (struct sockaddr_in6 *) &xprt->addr;
243}
244
Chuck Leverc877b842009-08-09 15:09:36 -0400245static void xs_format_common_peer_addresses(struct rpc_xprt *xprt)
Chuck Leveredb267a2006-08-22 20:06:18 -0400246{
Chuck Leverc877b842009-08-09 15:09:36 -0400247 struct sockaddr *sap = xs_addr(xprt);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400248 struct sockaddr_in6 *sin6;
249 struct sockaddr_in *sin;
Chuck Lever176e21e2011-05-09 15:22:44 -0400250 struct sockaddr_un *sun;
Chuck Leverc877b842009-08-09 15:09:36 -0400251 char buf[128];
Chuck Leveredb267a2006-08-22 20:06:18 -0400252
Chuck Lever9dc3b092009-08-09 15:09:46 -0400253 switch (sap->sa_family) {
Chuck Lever176e21e2011-05-09 15:22:44 -0400254 case AF_LOCAL:
255 sun = xs_addr_un(xprt);
256 strlcpy(buf, sun->sun_path, sizeof(buf));
257 xprt->address_strings[RPC_DISPLAY_ADDR] =
258 kstrdup(buf, GFP_KERNEL);
259 break;
Chuck Lever9dc3b092009-08-09 15:09:46 -0400260 case AF_INET:
Chuck Lever176e21e2011-05-09 15:22:44 -0400261 (void)rpc_ntop(sap, buf, sizeof(buf));
262 xprt->address_strings[RPC_DISPLAY_ADDR] =
263 kstrdup(buf, GFP_KERNEL);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400264 sin = xs_addr_in(xprt);
Joe Perchesfc0b57912010-03-08 12:15:28 -0800265 snprintf(buf, sizeof(buf), "%08x", ntohl(sin->sin_addr.s_addr));
Chuck Lever9dc3b092009-08-09 15:09:46 -0400266 break;
267 case AF_INET6:
Chuck Lever176e21e2011-05-09 15:22:44 -0400268 (void)rpc_ntop(sap, buf, sizeof(buf));
269 xprt->address_strings[RPC_DISPLAY_ADDR] =
270 kstrdup(buf, GFP_KERNEL);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400271 sin6 = xs_addr_in6(xprt);
Joe Perchesfc0b57912010-03-08 12:15:28 -0800272 snprintf(buf, sizeof(buf), "%pi6", &sin6->sin6_addr);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400273 break;
274 default:
275 BUG();
Chuck Leveredb267a2006-08-22 20:06:18 -0400276 }
Chuck Lever176e21e2011-05-09 15:22:44 -0400277
Chuck Lever9dc3b092009-08-09 15:09:46 -0400278 xprt->address_strings[RPC_DISPLAY_HEX_ADDR] = kstrdup(buf, GFP_KERNEL);
Chuck Leveredb267a2006-08-22 20:06:18 -0400279}
280
Chuck Lever9dc3b092009-08-09 15:09:46 -0400281static void xs_format_common_peer_ports(struct rpc_xprt *xprt)
Chuck Lever4b6473f2007-08-06 11:57:12 -0400282{
Chuck Lever9dc3b092009-08-09 15:09:46 -0400283 struct sockaddr *sap = xs_addr(xprt);
284 char buf[128];
Chuck Lever4b6473f2007-08-06 11:57:12 -0400285
Joe Perches81160e662010-03-08 12:15:59 -0800286 snprintf(buf, sizeof(buf), "%u", rpc_get_port(sap));
Chuck Leverc877b842009-08-09 15:09:36 -0400287 xprt->address_strings[RPC_DISPLAY_PORT] = kstrdup(buf, GFP_KERNEL);
Chuck Lever4b6473f2007-08-06 11:57:12 -0400288
Joe Perches81160e662010-03-08 12:15:59 -0800289 snprintf(buf, sizeof(buf), "%4hx", rpc_get_port(sap));
Chuck Leverc877b842009-08-09 15:09:36 -0400290 xprt->address_strings[RPC_DISPLAY_HEX_PORT] = kstrdup(buf, GFP_KERNEL);
291}
Chuck Lever4b6473f2007-08-06 11:57:12 -0400292
Chuck Lever9dc3b092009-08-09 15:09:46 -0400293static void xs_format_peer_addresses(struct rpc_xprt *xprt,
294 const char *protocol,
295 const char *netid)
Chuck Leveredb267a2006-08-22 20:06:18 -0400296{
Chuck Leverb454ae92008-01-07 18:34:48 -0500297 xprt->address_strings[RPC_DISPLAY_PROTO] = protocol;
Chuck Leverb454ae92008-01-07 18:34:48 -0500298 xprt->address_strings[RPC_DISPLAY_NETID] = netid;
Chuck Leverc877b842009-08-09 15:09:36 -0400299 xs_format_common_peer_addresses(xprt);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400300 xs_format_common_peer_ports(xprt);
Chuck Lever4b6473f2007-08-06 11:57:12 -0400301}
302
Chuck Lever9dc3b092009-08-09 15:09:46 -0400303static void xs_update_peer_port(struct rpc_xprt *xprt)
Chuck Lever4b6473f2007-08-06 11:57:12 -0400304{
Chuck Lever9dc3b092009-08-09 15:09:46 -0400305 kfree(xprt->address_strings[RPC_DISPLAY_HEX_PORT]);
306 kfree(xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever4b6473f2007-08-06 11:57:12 -0400307
Chuck Lever9dc3b092009-08-09 15:09:46 -0400308 xs_format_common_peer_ports(xprt);
Chuck Leveredb267a2006-08-22 20:06:18 -0400309}
310
311static void xs_free_peer_addresses(struct rpc_xprt *xprt)
312{
Chuck Lever33e01dc2008-01-14 12:32:20 -0500313 unsigned int i;
314
315 for (i = 0; i < RPC_DISPLAY_MAX; i++)
316 switch (i) {
317 case RPC_DISPLAY_PROTO:
318 case RPC_DISPLAY_NETID:
319 continue;
320 default:
321 kfree(xprt->address_strings[i]);
322 }
Chuck Leveredb267a2006-08-22 20:06:18 -0400323}
324
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400325#define XS_SENDMSG_FLAGS (MSG_DONTWAIT | MSG_NOSIGNAL)
326
Trond Myklebust24c56842006-10-17 15:06:22 -0400327static 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 -0400328{
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400329 struct msghdr msg = {
330 .msg_name = addr,
331 .msg_namelen = addrlen,
Trond Myklebust24c56842006-10-17 15:06:22 -0400332 .msg_flags = XS_SENDMSG_FLAGS | (more ? MSG_MORE : 0),
333 };
334 struct kvec iov = {
335 .iov_base = vec->iov_base + base,
336 .iov_len = vec->iov_len - base,
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400337 };
338
Trond Myklebust24c56842006-10-17 15:06:22 -0400339 if (iov.iov_len != 0)
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400340 return kernel_sendmsg(sock, &msg, &iov, 1, iov.iov_len);
341 return kernel_sendmsg(sock, &msg, NULL, 0, 0);
342}
343
Jason Baronf279cd02014-09-24 18:08:00 +0000344static 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 -0400345{
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500346 ssize_t (*do_sendpage)(struct socket *sock, struct page *page,
347 int offset, size_t size, int flags);
Trond Myklebust24c56842006-10-17 15:06:22 -0400348 struct page **ppage;
349 unsigned int remainder;
Jason Baronf279cd02014-09-24 18:08:00 +0000350 int err;
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400351
Trond Myklebust24c56842006-10-17 15:06:22 -0400352 remainder = xdr->page_len - base;
353 base += xdr->page_base;
354 ppage = xdr->pages + (base >> PAGE_SHIFT);
355 base &= ~PAGE_MASK;
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500356 do_sendpage = sock->ops->sendpage;
357 if (!zerocopy)
358 do_sendpage = sock_no_sendpage;
Trond Myklebust24c56842006-10-17 15:06:22 -0400359 for(;;) {
360 unsigned int len = min_t(unsigned int, PAGE_SIZE - base, remainder);
361 int flags = XS_SENDMSG_FLAGS;
362
363 remainder -= len;
Trond Myklebust31303d62015-10-06 15:59:20 -0400364 if (more)
Trond Myklebust24c56842006-10-17 15:06:22 -0400365 flags |= MSG_MORE;
Trond Myklebust31303d62015-10-06 15:59:20 -0400366 if (remainder != 0)
367 flags |= MSG_SENDPAGE_NOTLAST | MSG_MORE;
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500368 err = do_sendpage(sock, *ppage, base, len, flags);
Trond Myklebust24c56842006-10-17 15:06:22 -0400369 if (remainder == 0 || err != len)
370 break;
Jason Baronf279cd02014-09-24 18:08:00 +0000371 *sent_p += err;
Trond Myklebust24c56842006-10-17 15:06:22 -0400372 ppage++;
373 base = 0;
374 }
Jason Baronf279cd02014-09-24 18:08:00 +0000375 if (err > 0) {
376 *sent_p += err;
377 err = 0;
378 }
379 return err;
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400380}
381
Chuck Lever9903cd12005-08-11 16:25:26 -0400382/**
383 * xs_sendpages - write pages directly to a socket
384 * @sock: socket to send on
385 * @addr: UDP only -- address of destination
386 * @addrlen: UDP only -- length of destination address
387 * @xdr: buffer containing this request
388 * @base: starting position in the buffer
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500389 * @zerocopy: true if it is safe to use sendpage()
Jason Baronf279cd02014-09-24 18:08:00 +0000390 * @sent_p: return the total number of bytes successfully queued for sending
Chuck Lever9903cd12005-08-11 16:25:26 -0400391 *
Chuck Levera246b012005-08-11 16:25:23 -0400392 */
Jason Baronf279cd02014-09-24 18:08:00 +0000393static 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 -0400394{
Trond Myklebust24c56842006-10-17 15:06:22 -0400395 unsigned int remainder = xdr->len - base;
Jason Baronf279cd02014-09-24 18:08:00 +0000396 int err = 0;
397 int sent = 0;
Chuck Levera246b012005-08-11 16:25:23 -0400398
Chuck Lever262965f2005-08-11 16:25:56 -0400399 if (unlikely(!sock))
Trond Myklebustfba91af2009-03-11 14:06:41 -0400400 return -ENOTSOCK;
Chuck Lever262965f2005-08-11 16:25:56 -0400401
Trond Myklebust24c56842006-10-17 15:06:22 -0400402 if (base != 0) {
403 addr = NULL;
404 addrlen = 0;
405 }
Chuck Lever262965f2005-08-11 16:25:56 -0400406
Trond Myklebust24c56842006-10-17 15:06:22 -0400407 if (base < xdr->head[0].iov_len || addr != NULL) {
408 unsigned int len = xdr->head[0].iov_len - base;
409 remainder -= len;
410 err = xs_send_kvec(sock, addr, addrlen, &xdr->head[0], base, remainder != 0);
411 if (remainder == 0 || err != len)
Chuck Levera246b012005-08-11 16:25:23 -0400412 goto out;
Jason Baronf279cd02014-09-24 18:08:00 +0000413 *sent_p += err;
Chuck Levera246b012005-08-11 16:25:23 -0400414 base = 0;
415 } else
Trond Myklebust24c56842006-10-17 15:06:22 -0400416 base -= xdr->head[0].iov_len;
Chuck Levera246b012005-08-11 16:25:23 -0400417
Trond Myklebust24c56842006-10-17 15:06:22 -0400418 if (base < xdr->page_len) {
419 unsigned int len = xdr->page_len - base;
420 remainder -= len;
Jason Baronf279cd02014-09-24 18:08:00 +0000421 err = xs_send_pagedata(sock, xdr, base, remainder != 0, zerocopy, &sent);
422 *sent_p += sent;
423 if (remainder == 0 || sent != len)
Chuck Levera246b012005-08-11 16:25:23 -0400424 goto out;
425 base = 0;
Trond Myklebust24c56842006-10-17 15:06:22 -0400426 } else
427 base -= xdr->page_len;
428
429 if (base >= xdr->tail[0].iov_len)
Jason Baronf279cd02014-09-24 18:08:00 +0000430 return 0;
Trond Myklebust24c56842006-10-17 15:06:22 -0400431 err = xs_send_kvec(sock, NULL, 0, &xdr->tail[0], base, 0);
Chuck Levera246b012005-08-11 16:25:23 -0400432out:
Jason Baronf279cd02014-09-24 18:08:00 +0000433 if (err > 0) {
434 *sent_p += err;
435 err = 0;
436 }
437 return err;
Chuck Levera246b012005-08-11 16:25:23 -0400438}
439
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400440static void xs_nospace_callback(struct rpc_task *task)
441{
442 struct sock_xprt *transport = container_of(task->tk_rqstp->rq_xprt, struct sock_xprt, xprt);
443
444 transport->inet->sk_write_pending--;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400445}
446
Chuck Lever9903cd12005-08-11 16:25:26 -0400447/**
Chuck Lever262965f2005-08-11 16:25:56 -0400448 * xs_nospace - place task on wait queue if transmit was incomplete
449 * @task: task to put to sleep
Chuck Lever9903cd12005-08-11 16:25:26 -0400450 *
Chuck Levera246b012005-08-11 16:25:23 -0400451 */
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400452static int xs_nospace(struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -0400453{
Chuck Lever262965f2005-08-11 16:25:56 -0400454 struct rpc_rqst *req = task->tk_rqstp;
455 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500456 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebust06ea0bf2014-02-11 09:15:54 -0500457 struct sock *sk = transport->inet;
Trond Myklebust24ca9a82011-11-22 14:44:28 +0200458 int ret = -EAGAIN;
Chuck Levera246b012005-08-11 16:25:23 -0400459
Chuck Lever46121cf2007-01-31 12:14:08 -0500460 dprintk("RPC: %5u xmit incomplete (%u left of %u)\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400461 task->tk_pid, req->rq_slen - req->rq_bytes_sent,
462 req->rq_slen);
463
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400464 /* Protect against races with write_space */
465 spin_lock_bh(&xprt->transport_lock);
Chuck Lever262965f2005-08-11 16:25:56 -0400466
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400467 /* Don't race with disconnect */
468 if (xprt_connected(xprt)) {
Trond Myklebust13331a52016-01-06 08:57:06 -0500469 /* wait for more buffer space */
470 sk->sk_write_pending++;
471 xprt_wait_for_buffer_space(task, xs_nospace_callback);
472 } else
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400473 ret = -ENOTCONN;
Chuck Lever262965f2005-08-11 16:25:56 -0400474
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400475 spin_unlock_bh(&xprt->transport_lock);
Trond Myklebust06ea0bf2014-02-11 09:15:54 -0500476
477 /* Race breaker in case memory is freed before above code is called */
David Vrabeld48f9ce2016-09-19 13:58:30 +0100478 if (ret == -EAGAIN) {
479 struct socket_wq *wq;
480
481 rcu_read_lock();
482 wq = rcu_dereference(sk->sk_wq);
483 set_bit(SOCKWQ_ASYNC_NOSPACE, &wq->flags);
484 rcu_read_unlock();
485
486 sk->sk_write_space(sk);
487 }
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400488 return ret;
Chuck Lever262965f2005-08-11 16:25:56 -0400489}
490
Chuck Lever61677ee2011-05-09 15:22:34 -0400491/*
492 * Construct a stream transport record marker in @buf.
493 */
494static inline void xs_encode_stream_record_marker(struct xdr_buf *buf)
495{
496 u32 reclen = buf->len - sizeof(rpc_fraghdr);
497 rpc_fraghdr *base = buf->head[0].iov_base;
498 *base = cpu_to_be32(RPC_LAST_STREAM_FRAGMENT | reclen);
499}
500
Chuck Lever262965f2005-08-11 16:25:56 -0400501/**
Chuck Lever176e21e2011-05-09 15:22:44 -0400502 * xs_local_send_request - write an RPC request to an AF_LOCAL socket
503 * @task: RPC task that manages the state of an RPC request
504 *
505 * Return values:
506 * 0: The request has been sent
507 * EAGAIN: The socket was blocked, please call again later to
508 * complete the request
509 * ENOTCONN: Caller needs to invoke connect logic then call again
510 * other: Some other error occured, the request was not sent
511 */
512static int xs_local_send_request(struct rpc_task *task)
513{
514 struct rpc_rqst *req = task->tk_rqstp;
515 struct rpc_xprt *xprt = req->rq_xprt;
516 struct sock_xprt *transport =
517 container_of(xprt, struct sock_xprt, xprt);
518 struct xdr_buf *xdr = &req->rq_snd_buf;
519 int status;
Jason Baronf279cd02014-09-24 18:08:00 +0000520 int sent = 0;
Chuck Lever176e21e2011-05-09 15:22:44 -0400521
522 xs_encode_stream_record_marker(&req->rq_snd_buf);
523
524 xs_pktdump("packet data:",
525 req->rq_svec->iov_base, req->rq_svec->iov_len);
526
Jason Baronf279cd02014-09-24 18:08:00 +0000527 status = xs_sendpages(transport->sock, NULL, 0, xdr, req->rq_bytes_sent,
528 true, &sent);
Chuck Lever176e21e2011-05-09 15:22:44 -0400529 dprintk("RPC: %s(%u) = %d\n",
530 __func__, xdr->len - req->rq_bytes_sent, status);
NeilBrown743c69e2015-07-27 10:55:35 +1000531
532 if (status == -EAGAIN && sock_writeable(transport->inet))
533 status = -ENOBUFS;
534
Jason Baronf279cd02014-09-24 18:08:00 +0000535 if (likely(sent > 0) || status == 0) {
536 req->rq_bytes_sent += sent;
537 req->rq_xmit_bytes_sent += sent;
Chuck Lever176e21e2011-05-09 15:22:44 -0400538 if (likely(req->rq_bytes_sent >= req->rq_slen)) {
539 req->rq_bytes_sent = 0;
540 return 0;
541 }
542 status = -EAGAIN;
543 }
544
545 switch (status) {
Trond Myklebust3601c4a2014-06-30 13:42:19 -0400546 case -ENOBUFS:
Trond Myklebustb5872f02015-07-03 09:32:23 -0400547 break;
Chuck Lever176e21e2011-05-09 15:22:44 -0400548 case -EAGAIN:
549 status = xs_nospace(task);
550 break;
551 default:
552 dprintk("RPC: sendmsg returned unrecognized error %d\n",
553 -status);
554 case -EPIPE:
555 xs_close(xprt);
556 status = -ENOTCONN;
557 }
558
559 return status;
560}
561
562/**
Chuck Lever262965f2005-08-11 16:25:56 -0400563 * xs_udp_send_request - write an RPC request to a UDP socket
564 * @task: address of RPC task that manages the state of an RPC request
565 *
566 * Return values:
567 * 0: The request has been sent
568 * EAGAIN: The socket was blocked, please call again later to
569 * complete the request
570 * ENOTCONN: Caller needs to invoke connect logic then call again
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300571 * other: Some other error occurred, the request was not sent
Chuck Lever262965f2005-08-11 16:25:56 -0400572 */
573static int xs_udp_send_request(struct rpc_task *task)
574{
575 struct rpc_rqst *req = task->tk_rqstp;
576 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500577 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262965f2005-08-11 16:25:56 -0400578 struct xdr_buf *xdr = &req->rq_snd_buf;
Jason Baronf279cd02014-09-24 18:08:00 +0000579 int sent = 0;
Chuck Lever262965f2005-08-11 16:25:56 -0400580 int status;
Chuck Levera246b012005-08-11 16:25:23 -0400581
Chuck Lever9903cd12005-08-11 16:25:26 -0400582 xs_pktdump("packet data:",
Chuck Levera246b012005-08-11 16:25:23 -0400583 req->rq_svec->iov_base,
584 req->rq_svec->iov_len);
585
Trond Myklebust01d37c42009-03-11 14:09:39 -0400586 if (!xprt_bound(xprt))
587 return -ENOTCONN;
Jason Baronf279cd02014-09-24 18:08:00 +0000588 status = xs_sendpages(transport->sock, xs_addr(xprt), xprt->addrlen,
589 xdr, req->rq_bytes_sent, true, &sent);
Chuck Levera246b012005-08-11 16:25:23 -0400590
Chuck Lever46121cf2007-01-31 12:14:08 -0500591 dprintk("RPC: xs_udp_send_request(%u) = %d\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400592 xdr->len - req->rq_bytes_sent, status);
Chuck Levera246b012005-08-11 16:25:23 -0400593
Jason Baron3dedbb52014-09-24 18:08:04 +0000594 /* firewall is blocking us, don't return -EAGAIN or we end up looping */
595 if (status == -EPERM)
596 goto process_status;
597
NeilBrown743c69e2015-07-27 10:55:35 +1000598 if (status == -EAGAIN && sock_writeable(transport->inet))
599 status = -ENOBUFS;
600
Jason Baronf279cd02014-09-24 18:08:00 +0000601 if (sent > 0 || status == 0) {
602 req->rq_xmit_bytes_sent += sent;
603 if (sent >= req->rq_slen)
Trond Myklebust21997002007-10-01 11:43:37 -0400604 return 0;
605 /* Still some bytes left; set up for a retry later. */
Chuck Lever262965f2005-08-11 16:25:56 -0400606 status = -EAGAIN;
Trond Myklebust21997002007-10-01 11:43:37 -0400607 }
Chuck Levera246b012005-08-11 16:25:23 -0400608
Jason Baron3dedbb52014-09-24 18:08:04 +0000609process_status:
Chuck Lever262965f2005-08-11 16:25:56 -0400610 switch (status) {
Trond Myklebustfba91af2009-03-11 14:06:41 -0400611 case -ENOTSOCK:
612 status = -ENOTCONN;
613 /* Should we call xs_close() here? */
614 break;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400615 case -EAGAIN:
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400616 status = xs_nospace(task);
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400617 break;
Chuck Lever262965f2005-08-11 16:25:56 -0400618 case -ENETUNREACH:
Trond Myklebust3601c4a2014-06-30 13:42:19 -0400619 case -ENOBUFS:
Chuck Lever262965f2005-08-11 16:25:56 -0400620 case -EPIPE:
Chuck Levera246b012005-08-11 16:25:23 -0400621 case -ECONNREFUSED:
Jason Baron3dedbb52014-09-24 18:08:04 +0000622 case -EPERM:
Chuck Levera246b012005-08-11 16:25:23 -0400623 /* When the server has died, an ICMP port unreachable message
Chuck Lever9903cd12005-08-11 16:25:26 -0400624 * prompts ECONNREFUSED. */
Trond Myklebust13331a52016-01-06 08:57:06 -0500625 break;
626 default:
627 dprintk("RPC: sendmsg returned unrecognized error %d\n",
628 -status);
Chuck Levera246b012005-08-11 16:25:23 -0400629 }
Bian Naimeng5fe46e92010-03-08 14:49:01 +0800630
Chuck Lever262965f2005-08-11 16:25:56 -0400631 return status;
Chuck Levera246b012005-08-11 16:25:23 -0400632}
633
Trond Myklebuste06799f2007-11-05 15:44:12 -0500634/**
Chuck Lever262965f2005-08-11 16:25:56 -0400635 * xs_tcp_send_request - write an RPC request to a TCP socket
Chuck Lever9903cd12005-08-11 16:25:26 -0400636 * @task: address of RPC task that manages the state of an RPC request
637 *
638 * Return values:
Chuck Lever262965f2005-08-11 16:25:56 -0400639 * 0: The request has been sent
640 * EAGAIN: The socket was blocked, please call again later to
641 * complete the request
642 * ENOTCONN: Caller needs to invoke connect logic then call again
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300643 * other: Some other error occurred, the request was not sent
Chuck Lever9903cd12005-08-11 16:25:26 -0400644 *
645 * XXX: In the case of soft timeouts, should we eventually give up
Chuck Lever262965f2005-08-11 16:25:56 -0400646 * if sendmsg is not able to make progress?
Chuck Lever9903cd12005-08-11 16:25:26 -0400647 */
Chuck Lever262965f2005-08-11 16:25:56 -0400648static int xs_tcp_send_request(struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -0400649{
650 struct rpc_rqst *req = task->tk_rqstp;
651 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500652 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262965f2005-08-11 16:25:56 -0400653 struct xdr_buf *xdr = &req->rq_snd_buf;
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500654 bool zerocopy = true;
Trond Myklebust9ffadfb2016-05-29 00:42:03 -0400655 bool vm_wait = false;
Chuck Leverb595bb12007-08-06 11:56:42 -0400656 int status;
Jason Baronf279cd02014-09-24 18:08:00 +0000657 int sent;
Chuck Levera246b012005-08-11 16:25:23 -0400658
Chuck Lever61677ee2011-05-09 15:22:34 -0400659 xs_encode_stream_record_marker(&req->rq_snd_buf);
Chuck Levera246b012005-08-11 16:25:23 -0400660
Chuck Lever262965f2005-08-11 16:25:56 -0400661 xs_pktdump("packet data:",
662 req->rq_svec->iov_base,
663 req->rq_svec->iov_len);
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500664 /* Don't use zero copy if this is a resend. If the RPC call
665 * completes while the socket holds a reference to the pages,
666 * then we may end up resending corrupted data.
667 */
668 if (task->tk_flags & RPC_TASK_SENT)
669 zerocopy = false;
Chuck Levera246b012005-08-11 16:25:23 -0400670
Trond Myklebust7196dbb2017-02-08 11:17:54 -0500671 if (test_bit(XPRT_SOCK_UPD_TIMEOUT, &transport->sock_state))
672 xs_tcp_set_socket_timeouts(xprt, transport->sock);
673
Chuck Levera246b012005-08-11 16:25:23 -0400674 /* Continue transmitting the packet/record. We must be careful
675 * to cope with writespace callbacks arriving _after_ we have
Chuck Lever262965f2005-08-11 16:25:56 -0400676 * called sendmsg(). */
Chuck Levera246b012005-08-11 16:25:23 -0400677 while (1) {
Jason Baronf279cd02014-09-24 18:08:00 +0000678 sent = 0;
679 status = xs_sendpages(transport->sock, NULL, 0, xdr,
680 req->rq_bytes_sent, zerocopy, &sent);
Chuck Levera246b012005-08-11 16:25:23 -0400681
Chuck Lever46121cf2007-01-31 12:14:08 -0500682 dprintk("RPC: xs_tcp_send_request(%u) = %d\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400683 xdr->len - req->rq_bytes_sent, status);
684
Chuck Lever262965f2005-08-11 16:25:56 -0400685 /* If we've sent the entire packet, immediately
686 * reset the count of bytes sent. */
Jason Baronf279cd02014-09-24 18:08:00 +0000687 req->rq_bytes_sent += sent;
688 req->rq_xmit_bytes_sent += sent;
Chuck Lever262965f2005-08-11 16:25:56 -0400689 if (likely(req->rq_bytes_sent >= req->rq_slen)) {
690 req->rq_bytes_sent = 0;
691 return 0;
Chuck Levera246b012005-08-11 16:25:23 -0400692 }
693
Trond Myklebust9ffadfb2016-05-29 00:42:03 -0400694 WARN_ON_ONCE(sent == 0 && status == 0);
695
696 if (status == -EAGAIN ) {
697 /*
698 * Return EAGAIN if we're sure we're hitting the
699 * socket send buffer limits.
700 */
701 if (test_bit(SOCK_NOSPACE, &transport->sock->flags))
702 break;
703 /*
704 * Did we hit a memory allocation failure?
705 */
706 if (sent == 0) {
707 status = -ENOBUFS;
708 if (vm_wait)
709 break;
710 /* Retry, knowing now that we're below the
711 * socket send buffer limit
712 */
713 vm_wait = true;
714 }
715 continue;
716 }
Trond Myklebustf580dd02015-07-11 17:48:52 +0200717 if (status < 0)
718 break;
Trond Myklebust9ffadfb2016-05-29 00:42:03 -0400719 vm_wait = false;
Chuck Levera246b012005-08-11 16:25:23 -0400720 }
721
Chuck Lever262965f2005-08-11 16:25:56 -0400722 switch (status) {
Trond Myklebustfba91af2009-03-11 14:06:41 -0400723 case -ENOTSOCK:
724 status = -ENOTCONN;
725 /* Should we call xs_close() here? */
726 break;
Chuck Lever262965f2005-08-11 16:25:56 -0400727 case -EAGAIN:
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400728 status = xs_nospace(task);
Chuck Lever262965f2005-08-11 16:25:56 -0400729 break;
Chuck Lever262965f2005-08-11 16:25:56 -0400730 case -ECONNRESET:
Chuck Lever262965f2005-08-11 16:25:56 -0400731 case -ECONNREFUSED:
732 case -ENOTCONN:
Trond Myklebust3913c782015-02-08 21:44:04 -0500733 case -EADDRINUSE:
Trond Myklebustb5872f02015-07-03 09:32:23 -0400734 case -ENOBUFS:
Trond Myklebustb9d2bb22012-10-23 11:40:02 -0400735 case -EPIPE:
Trond Myklebust13331a52016-01-06 08:57:06 -0500736 break;
737 default:
738 dprintk("RPC: sendmsg returned unrecognized error %d\n",
739 -status);
Chuck Levera246b012005-08-11 16:25:23 -0400740 }
Bian Naimeng5fe46e92010-03-08 14:49:01 +0800741
Chuck Levera246b012005-08-11 16:25:23 -0400742 return status;
743}
744
Chuck Lever9903cd12005-08-11 16:25:26 -0400745/**
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400746 * xs_tcp_release_xprt - clean up after a tcp transmission
747 * @xprt: transport
748 * @task: rpc task
749 *
750 * This cleans up if an error causes us to abort the transmission of a request.
751 * In this case, the socket may need to be reset in order to avoid confusing
752 * the server.
753 */
754static void xs_tcp_release_xprt(struct rpc_xprt *xprt, struct rpc_task *task)
755{
756 struct rpc_rqst *req;
757
758 if (task != xprt->snd_task)
759 return;
760 if (task == NULL)
761 goto out_release;
762 req = task->tk_rqstp;
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400763 if (req == NULL)
764 goto out_release;
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400765 if (req->rq_bytes_sent == 0)
766 goto out_release;
767 if (req->rq_bytes_sent == req->rq_snd_buf.len)
768 goto out_release;
Trond Myklebusta4f08352013-01-08 09:10:21 -0500769 set_bit(XPRT_CLOSE_WAIT, &xprt->state);
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400770out_release:
771 xprt_release_xprt(xprt, task);
772}
773
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400774static void xs_save_old_callbacks(struct sock_xprt *transport, struct sock *sk)
775{
776 transport->old_data_ready = sk->sk_data_ready;
777 transport->old_state_change = sk->sk_state_change;
778 transport->old_write_space = sk->sk_write_space;
Trond Myklebust21180712013-12-31 13:22:59 -0500779 transport->old_error_report = sk->sk_error_report;
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400780}
781
782static void xs_restore_old_callbacks(struct sock_xprt *transport, struct sock *sk)
783{
784 sk->sk_data_ready = transport->old_data_ready;
785 sk->sk_state_change = transport->old_state_change;
786 sk->sk_write_space = transport->old_write_space;
Trond Myklebust21180712013-12-31 13:22:59 -0500787 sk->sk_error_report = transport->old_error_report;
788}
789
Trond Myklebust42d42a52016-05-23 09:24:55 -0400790static void xs_sock_reset_state_flags(struct rpc_xprt *xprt)
791{
792 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
793
794 clear_bit(XPRT_SOCK_DATA_READY, &transport->sock_state);
795}
796
Trond Myklebustb70ae912015-02-09 09:41:32 -0500797static void xs_sock_reset_connection_flags(struct rpc_xprt *xprt)
798{
799 smp_mb__before_atomic();
800 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
801 clear_bit(XPRT_CLOSING, &xprt->state);
Trond Myklebust42d42a52016-05-23 09:24:55 -0400802 xs_sock_reset_state_flags(xprt);
Trond Myklebustb70ae912015-02-09 09:41:32 -0500803 smp_mb__after_atomic();
804}
805
806static void xs_sock_mark_closed(struct rpc_xprt *xprt)
807{
808 xs_sock_reset_connection_flags(xprt);
809 /* Mark transport as closed and wake up all pending tasks */
810 xprt_disconnect_done(xprt);
811}
812
Trond Myklebust21180712013-12-31 13:22:59 -0500813/**
814 * xs_error_report - callback to handle TCP socket state errors
815 * @sk: socket
816 *
817 * Note: we don't call sock_error() since there may be a rpc_task
818 * using the socket, and so we don't want to clear sk->sk_err.
819 */
820static void xs_error_report(struct sock *sk)
821{
822 struct rpc_xprt *xprt;
823 int err;
824
825 read_lock_bh(&sk->sk_callback_lock);
826 if (!(xprt = xprt_from_sock(sk)))
827 goto out;
828
829 err = -sk->sk_err;
830 if (err == 0)
831 goto out;
Trond Myklebustb70ae912015-02-09 09:41:32 -0500832 /* Is this a reset event? */
833 if (sk->sk_state == TCP_CLOSE)
834 xs_sock_mark_closed(xprt);
Trond Myklebust21180712013-12-31 13:22:59 -0500835 dprintk("RPC: xs_error_report client %p, error=%d...\n",
836 xprt, -err);
Trond Myklebuste8353c762013-12-31 13:39:22 -0500837 trace_rpc_socket_error(xprt, sk->sk_socket, err);
Trond Myklebust21180712013-12-31 13:22:59 -0500838 xprt_wake_pending_tasks(xprt, err);
839 out:
840 read_unlock_bh(&sk->sk_callback_lock);
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400841}
842
Chuck Leverfe315e72009-03-11 14:10:21 -0400843static void xs_reset_transport(struct sock_xprt *transport)
Chuck Levera246b012005-08-11 16:25:23 -0400844{
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500845 struct socket *sock = transport->sock;
846 struct sock *sk = transport->inet;
Trond Myklebust6cc7e902015-02-08 18:35:25 -0500847 struct rpc_xprt *xprt = &transport->xprt;
Chuck Levera246b012005-08-11 16:25:23 -0400848
Chuck Leverfe315e72009-03-11 14:10:21 -0400849 if (sk == NULL)
850 return;
Chuck Lever9903cd12005-08-11 16:25:26 -0400851
Jeff Layton264d1df2015-06-03 16:14:27 -0400852 if (atomic_read(&transport->xprt.swapper))
853 sk_clear_memalloc(sk);
854
Trond Myklebust09939202015-08-29 19:11:21 -0700855 kernel_sock_shutdown(sock, SHUT_RDWR);
856
Trond Myklebustedc1b012015-10-05 10:53:49 -0400857 mutex_lock(&transport->recv_mutex);
Chuck Levera246b012005-08-11 16:25:23 -0400858 write_lock_bh(&sk->sk_callback_lock);
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500859 transport->inet = NULL;
860 transport->sock = NULL;
Chuck Levera246b012005-08-11 16:25:23 -0400861
Chuck Lever9903cd12005-08-11 16:25:26 -0400862 sk->sk_user_data = NULL;
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400863
864 xs_restore_old_callbacks(transport, sk);
Trond Myklebust0c787892015-08-29 13:36:30 -0700865 xprt_clear_connected(xprt);
Chuck Levera246b012005-08-11 16:25:23 -0400866 write_unlock_bh(&sk->sk_callback_lock);
Trond Myklebust6cc7e902015-02-08 18:35:25 -0500867 xs_sock_reset_connection_flags(xprt);
Trond Myklebustedc1b012015-10-05 10:53:49 -0400868 mutex_unlock(&transport->recv_mutex);
Chuck Levera246b012005-08-11 16:25:23 -0400869
Trond Myklebust6cc7e902015-02-08 18:35:25 -0500870 trace_rpc_socket_close(xprt, sock);
Chuck Levera246b012005-08-11 16:25:23 -0400871 sock_release(sock);
Chuck Leverfe315e72009-03-11 14:10:21 -0400872}
873
874/**
875 * xs_close - close a socket
876 * @xprt: transport
877 *
878 * This is used when all requests are complete; ie, no DRC state remains
879 * on the server we want to save.
Trond Myklebustf75e6742009-04-21 17:18:20 -0400880 *
881 * The caller _must_ be holding XPRT_LOCKED in order to avoid issues with
882 * xs_reset_transport() zeroing the socket from underneath a writer.
Chuck Leverfe315e72009-03-11 14:10:21 -0400883 */
884static void xs_close(struct rpc_xprt *xprt)
885{
886 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
887
888 dprintk("RPC: xs_close xprt %p\n", xprt);
889
890 xs_reset_transport(transport);
Neil Brown61d0a8e2009-09-23 14:36:37 -0400891 xprt->reestablish_timeout = 0;
Chuck Leverfe315e72009-03-11 14:10:21 -0400892
Trond Myklebust62da3b22007-11-06 18:44:20 -0500893 xprt_disconnect_done(xprt);
Chuck Levera246b012005-08-11 16:25:23 -0400894}
895
Chuck Lever4a068252015-05-11 14:02:25 -0400896static void xs_inject_disconnect(struct rpc_xprt *xprt)
897{
898 dprintk("RPC: injecting transport disconnect on xprt=%p\n",
899 xprt);
900 xprt_disconnect_done(xprt);
901}
902
Kinglong Mee315f3812014-03-24 11:07:22 +0800903static void xs_xprt_free(struct rpc_xprt *xprt)
904{
905 xs_free_peer_addresses(xprt);
906 xprt_free(xprt);
907}
908
Chuck Lever9903cd12005-08-11 16:25:26 -0400909/**
910 * xs_destroy - prepare to shutdown a transport
911 * @xprt: doomed transport
912 *
913 */
914static void xs_destroy(struct rpc_xprt *xprt)
Chuck Levera246b012005-08-11 16:25:23 -0400915{
Trond Myklebust03c788272015-09-17 10:42:27 -0400916 struct sock_xprt *transport = container_of(xprt,
917 struct sock_xprt, xprt);
Chuck Lever46121cf2007-01-31 12:14:08 -0500918 dprintk("RPC: xs_destroy xprt %p\n", xprt);
Chuck Lever9903cd12005-08-11 16:25:26 -0400919
Trond Myklebust03c788272015-09-17 10:42:27 -0400920 cancel_delayed_work_sync(&transport->connect_worker);
Trond Myklebusta1311d82013-10-31 09:18:49 -0400921 xs_close(xprt);
Trond Myklebustedc1b012015-10-05 10:53:49 -0400922 cancel_work_sync(&transport->recv_worker);
Kinglong Mee315f3812014-03-24 11:07:22 +0800923 xs_xprt_free(xprt);
Trond Myklebusta1311d82013-10-31 09:18:49 -0400924 module_put(THIS_MODULE);
Chuck Levera246b012005-08-11 16:25:23 -0400925}
926
Chuck Lever176e21e2011-05-09 15:22:44 -0400927static int xs_local_copy_to_xdr(struct xdr_buf *xdr, struct sk_buff *skb)
928{
929 struct xdr_skb_reader desc = {
930 .skb = skb,
931 .offset = sizeof(rpc_fraghdr),
932 .count = skb->len - sizeof(rpc_fraghdr),
933 };
934
935 if (xdr_partial_copy_from_skb(xdr, 0, &desc, xdr_skb_read_bits) < 0)
936 return -1;
937 if (desc.count)
938 return -1;
939 return 0;
940}
941
942/**
Trond Myklebusta2648092015-10-06 17:03:00 -0400943 * xs_local_data_read_skb
944 * @xprt: transport
945 * @sk: socket
946 * @skb: skbuff
Chuck Lever176e21e2011-05-09 15:22:44 -0400947 *
948 * Currently this assumes we can read the whole reply in a single gulp.
949 */
Trond Myklebusta2648092015-10-06 17:03:00 -0400950static void xs_local_data_read_skb(struct rpc_xprt *xprt,
951 struct sock *sk,
952 struct sk_buff *skb)
Chuck Lever176e21e2011-05-09 15:22:44 -0400953{
954 struct rpc_task *task;
Chuck Lever176e21e2011-05-09 15:22:44 -0400955 struct rpc_rqst *rovr;
Trond Myklebusta2648092015-10-06 17:03:00 -0400956 int repsize, copied;
Chuck Lever176e21e2011-05-09 15:22:44 -0400957 u32 _xid;
958 __be32 *xp;
959
Chuck Lever176e21e2011-05-09 15:22:44 -0400960 repsize = skb->len - sizeof(rpc_fraghdr);
961 if (repsize < 4) {
962 dprintk("RPC: impossible RPC reply size %d\n", repsize);
Trond Myklebusta2648092015-10-06 17:03:00 -0400963 return;
Chuck Lever176e21e2011-05-09 15:22:44 -0400964 }
965
966 /* Copy the XID from the skb... */
967 xp = skb_header_pointer(skb, sizeof(rpc_fraghdr), sizeof(_xid), &_xid);
968 if (xp == NULL)
Trond Myklebusta2648092015-10-06 17:03:00 -0400969 return;
Chuck Lever176e21e2011-05-09 15:22:44 -0400970
971 /* Look up and lock the request corresponding to the given XID */
Trond Myklebusta2648092015-10-06 17:03:00 -0400972 spin_lock_bh(&xprt->transport_lock);
Chuck Lever176e21e2011-05-09 15:22:44 -0400973 rovr = xprt_lookup_rqst(xprt, *xp);
974 if (!rovr)
975 goto out_unlock;
976 task = rovr->rq_task;
977
978 copied = rovr->rq_private_buf.buflen;
979 if (copied > repsize)
980 copied = repsize;
981
982 if (xs_local_copy_to_xdr(&rovr->rq_private_buf, skb)) {
983 dprintk("RPC: sk_buff copy failed\n");
984 goto out_unlock;
985 }
986
987 xprt_complete_rqst(task, copied);
988
989 out_unlock:
Trond Myklebusta2648092015-10-06 17:03:00 -0400990 spin_unlock_bh(&xprt->transport_lock);
991}
992
993static void xs_local_data_receive(struct sock_xprt *transport)
994{
995 struct sk_buff *skb;
996 struct sock *sk;
997 int err;
998
999 mutex_lock(&transport->recv_mutex);
1000 sk = transport->inet;
1001 if (sk == NULL)
1002 goto out;
1003 for (;;) {
1004 skb = skb_recv_datagram(sk, 0, 1, &err);
Trond Myklebust42d42a52016-05-23 09:24:55 -04001005 if (skb != NULL) {
1006 xs_local_data_read_skb(&transport->xprt, sk, skb);
1007 skb_free_datagram(sk, skb);
1008 continue;
1009 }
1010 if (!test_and_clear_bit(XPRT_SOCK_DATA_READY, &transport->sock_state))
Trond Myklebusta2648092015-10-06 17:03:00 -04001011 break;
Trond Myklebusta2648092015-10-06 17:03:00 -04001012 }
1013out:
1014 mutex_unlock(&transport->recv_mutex);
1015}
1016
1017static void xs_local_data_receive_workfn(struct work_struct *work)
1018{
1019 struct sock_xprt *transport =
1020 container_of(work, struct sock_xprt, recv_worker);
1021 xs_local_data_receive(transport);
Chuck Lever176e21e2011-05-09 15:22:44 -04001022}
1023
Chuck Lever9903cd12005-08-11 16:25:26 -04001024/**
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001025 * xs_udp_data_read_skb - receive callback for UDP sockets
1026 * @xprt: transport
1027 * @sk: socket
1028 * @skb: skbuff
Chuck Lever9903cd12005-08-11 16:25:26 -04001029 *
1030 */
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001031static void xs_udp_data_read_skb(struct rpc_xprt *xprt,
1032 struct sock *sk,
1033 struct sk_buff *skb)
Chuck Lever9903cd12005-08-11 16:25:26 -04001034{
1035 struct rpc_task *task;
Chuck Levera246b012005-08-11 16:25:23 -04001036 struct rpc_rqst *rovr;
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001037 int repsize, copied;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001038 u32 _xid;
1039 __be32 *xp;
Chuck Levera246b012005-08-11 16:25:23 -04001040
Willem de Bruijn1da8c6812016-04-07 11:44:58 -04001041 repsize = skb->len;
Chuck Levera246b012005-08-11 16:25:23 -04001042 if (repsize < 4) {
Chuck Lever46121cf2007-01-31 12:14:08 -05001043 dprintk("RPC: impossible RPC reply size %d!\n", repsize);
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001044 return;
Chuck Levera246b012005-08-11 16:25:23 -04001045 }
1046
1047 /* Copy the XID from the skb... */
Willem de Bruijn1da8c6812016-04-07 11:44:58 -04001048 xp = skb_header_pointer(skb, 0, sizeof(_xid), &_xid);
Chuck Levera246b012005-08-11 16:25:23 -04001049 if (xp == NULL)
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001050 return;
Chuck Levera246b012005-08-11 16:25:23 -04001051
1052 /* Look up and lock the request corresponding to the given XID */
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001053 spin_lock_bh(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001054 rovr = xprt_lookup_rqst(xprt, *xp);
1055 if (!rovr)
1056 goto out_unlock;
1057 task = rovr->rq_task;
1058
Chuck Levera246b012005-08-11 16:25:23 -04001059 if ((copied = rovr->rq_private_buf.buflen) > repsize)
1060 copied = repsize;
1061
1062 /* Suck it into the iovec, verify checksum if not done by hw. */
Herbert Xu1781f7f2007-12-11 11:30:32 -08001063 if (csum_partial_copy_to_xdr(&rovr->rq_private_buf, skb)) {
Eric Dumazet02c22342016-04-27 16:44:30 -07001064 __UDPX_INC_STATS(sk, UDP_MIB_INERRORS);
Chuck Levera246b012005-08-11 16:25:23 -04001065 goto out_unlock;
Herbert Xu1781f7f2007-12-11 11:30:32 -08001066 }
1067
Eric Dumazet02c22342016-04-27 16:44:30 -07001068 __UDPX_INC_STATS(sk, UDP_MIB_INDATAGRAMS);
Chuck Levera246b012005-08-11 16:25:23 -04001069
Trond Myklebust6a24dfb2013-01-08 09:48:15 -05001070 xprt_adjust_cwnd(xprt, task, copied);
Chuck Lever1570c1e2005-08-25 16:25:52 -07001071 xprt_complete_rqst(task, copied);
Chuck Levera246b012005-08-11 16:25:23 -04001072
1073 out_unlock:
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001074 spin_unlock_bh(&xprt->transport_lock);
1075}
1076
1077static void xs_udp_data_receive(struct sock_xprt *transport)
1078{
1079 struct sk_buff *skb;
1080 struct sock *sk;
1081 int err;
1082
1083 mutex_lock(&transport->recv_mutex);
1084 sk = transport->inet;
1085 if (sk == NULL)
1086 goto out;
1087 for (;;) {
Paolo Abeni7c13f972016-11-04 11:28:59 +01001088 skb = skb_recv_udp(sk, 0, 1, &err);
Trond Myklebust42d42a52016-05-23 09:24:55 -04001089 if (skb != NULL) {
1090 xs_udp_data_read_skb(&transport->xprt, sk, skb);
Paolo Abeni850cbad2016-10-21 13:55:47 +02001091 consume_skb(skb);
Trond Myklebust42d42a52016-05-23 09:24:55 -04001092 continue;
1093 }
1094 if (!test_and_clear_bit(XPRT_SOCK_DATA_READY, &transport->sock_state))
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001095 break;
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001096 }
1097out:
1098 mutex_unlock(&transport->recv_mutex);
1099}
1100
1101static void xs_udp_data_receive_workfn(struct work_struct *work)
1102{
1103 struct sock_xprt *transport =
1104 container_of(work, struct sock_xprt, recv_worker);
1105 xs_udp_data_receive(transport);
1106}
1107
1108/**
1109 * xs_data_ready - "data ready" callback for UDP sockets
1110 * @sk: socket with data to read
1111 *
1112 */
1113static void xs_data_ready(struct sock *sk)
1114{
1115 struct rpc_xprt *xprt;
1116
1117 read_lock_bh(&sk->sk_callback_lock);
1118 dprintk("RPC: xs_data_ready...\n");
1119 xprt = xprt_from_sock(sk);
1120 if (xprt != NULL) {
1121 struct sock_xprt *transport = container_of(xprt,
1122 struct sock_xprt, xprt);
Trond Myklebust5157b952016-05-29 10:13:24 -04001123 transport->old_data_ready(sk);
1124 /* Any data means we had a useful conversation, so
1125 * then we don't need to delay the next reconnect
1126 */
1127 if (xprt->reestablish_timeout)
1128 xprt->reestablish_timeout = 0;
Trond Myklebust42d42a52016-05-23 09:24:55 -04001129 if (!test_and_set_bit(XPRT_SOCK_DATA_READY, &transport->sock_state))
Trond Myklebust40a5f1b2016-05-27 10:39:50 -04001130 queue_work(xprtiod_workqueue, &transport->recv_worker);
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001131 }
Eric Dumazetf064af12010-09-22 12:43:39 +00001132 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001133}
1134
Trond Myklebusta519fc72012-09-12 16:49:15 -04001135/*
1136 * Helper function to force a TCP close if the server is sending
1137 * junk and/or it has put us in CLOSE_WAIT
1138 */
1139static void xs_tcp_force_close(struct rpc_xprt *xprt)
1140{
Trond Myklebusta519fc72012-09-12 16:49:15 -04001141 xprt_force_disconnect(xprt);
1142}
1143
Chuck Leverdd456472006-12-05 16:35:44 -05001144static inline void xs_tcp_read_fraghdr(struct rpc_xprt *xprt, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001145{
Chuck Lever51971132006-12-05 16:35:19 -05001146 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001147 size_t len, used;
1148 char *p;
1149
Chuck Lever51971132006-12-05 16:35:19 -05001150 p = ((char *) &transport->tcp_fraghdr) + transport->tcp_offset;
1151 len = sizeof(transport->tcp_fraghdr) - transport->tcp_offset;
Chuck Lever9d292312006-12-05 16:35:41 -05001152 used = xdr_skb_read_bits(desc, p, len);
Chuck Lever51971132006-12-05 16:35:19 -05001153 transport->tcp_offset += used;
Chuck Levera246b012005-08-11 16:25:23 -04001154 if (used != len)
1155 return;
Chuck Lever808012f2005-08-25 16:25:49 -07001156
Chuck Lever51971132006-12-05 16:35:19 -05001157 transport->tcp_reclen = ntohl(transport->tcp_fraghdr);
1158 if (transport->tcp_reclen & RPC_LAST_STREAM_FRAGMENT)
Chuck Levere136d092006-12-05 16:35:23 -05001159 transport->tcp_flags |= TCP_RCV_LAST_FRAG;
Chuck Levera246b012005-08-11 16:25:23 -04001160 else
Chuck Levere136d092006-12-05 16:35:23 -05001161 transport->tcp_flags &= ~TCP_RCV_LAST_FRAG;
Chuck Lever51971132006-12-05 16:35:19 -05001162 transport->tcp_reclen &= RPC_FRAGMENT_SIZE_MASK;
Chuck Lever808012f2005-08-25 16:25:49 -07001163
Chuck Levere136d092006-12-05 16:35:23 -05001164 transport->tcp_flags &= ~TCP_RCV_COPY_FRAGHDR;
Chuck Lever51971132006-12-05 16:35:19 -05001165 transport->tcp_offset = 0;
Chuck Lever808012f2005-08-25 16:25:49 -07001166
Chuck Levera246b012005-08-11 16:25:23 -04001167 /* Sanity check of the record length */
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001168 if (unlikely(transport->tcp_reclen < 8)) {
Chuck Lever46121cf2007-01-31 12:14:08 -05001169 dprintk("RPC: invalid TCP record fragment length\n");
Trond Myklebusta519fc72012-09-12 16:49:15 -04001170 xs_tcp_force_close(xprt);
Chuck Lever9903cd12005-08-11 16:25:26 -04001171 return;
Chuck Levera246b012005-08-11 16:25:23 -04001172 }
Chuck Lever46121cf2007-01-31 12:14:08 -05001173 dprintk("RPC: reading TCP record fragment of length %d\n",
Chuck Lever51971132006-12-05 16:35:19 -05001174 transport->tcp_reclen);
Chuck Levera246b012005-08-11 16:25:23 -04001175}
1176
Chuck Lever51971132006-12-05 16:35:19 -05001177static void xs_tcp_check_fraghdr(struct sock_xprt *transport)
Chuck Levera246b012005-08-11 16:25:23 -04001178{
Chuck Lever51971132006-12-05 16:35:19 -05001179 if (transport->tcp_offset == transport->tcp_reclen) {
Chuck Levere136d092006-12-05 16:35:23 -05001180 transport->tcp_flags |= TCP_RCV_COPY_FRAGHDR;
Chuck Lever51971132006-12-05 16:35:19 -05001181 transport->tcp_offset = 0;
Chuck Levere136d092006-12-05 16:35:23 -05001182 if (transport->tcp_flags & TCP_RCV_LAST_FRAG) {
1183 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
1184 transport->tcp_flags |= TCP_RCV_COPY_XID;
Chuck Lever51971132006-12-05 16:35:19 -05001185 transport->tcp_copied = 0;
Chuck Levera246b012005-08-11 16:25:23 -04001186 }
1187 }
1188}
1189
Chuck Leverdd456472006-12-05 16:35:44 -05001190static inline void xs_tcp_read_xid(struct sock_xprt *transport, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001191{
1192 size_t len, used;
1193 char *p;
1194
Chuck Lever51971132006-12-05 16:35:19 -05001195 len = sizeof(transport->tcp_xid) - transport->tcp_offset;
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001196 dprintk("RPC: reading XID (%zu bytes)\n", len);
Chuck Lever51971132006-12-05 16:35:19 -05001197 p = ((char *) &transport->tcp_xid) + transport->tcp_offset;
Chuck Lever9d292312006-12-05 16:35:41 -05001198 used = xdr_skb_read_bits(desc, p, len);
Chuck Lever51971132006-12-05 16:35:19 -05001199 transport->tcp_offset += used;
Chuck Levera246b012005-08-11 16:25:23 -04001200 if (used != len)
1201 return;
Chuck Levere136d092006-12-05 16:35:23 -05001202 transport->tcp_flags &= ~TCP_RCV_COPY_XID;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001203 transport->tcp_flags |= TCP_RCV_READ_CALLDIR;
Chuck Lever51971132006-12-05 16:35:19 -05001204 transport->tcp_copied = 4;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001205 dprintk("RPC: reading %s XID %08x\n",
1206 (transport->tcp_flags & TCP_RPC_REPLY) ? "reply for"
1207 : "request with",
Chuck Lever51971132006-12-05 16:35:19 -05001208 ntohl(transport->tcp_xid));
1209 xs_tcp_check_fraghdr(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001210}
1211
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001212static inline void xs_tcp_read_calldir(struct sock_xprt *transport,
1213 struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001214{
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001215 size_t len, used;
1216 u32 offset;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001217 char *p;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001218
1219 /*
1220 * We want transport->tcp_offset to be 8 at the end of this routine
1221 * (4 bytes for the xid and 4 bytes for the call/reply flag).
1222 * When this function is called for the first time,
1223 * transport->tcp_offset is 4 (after having already read the xid).
1224 */
1225 offset = transport->tcp_offset - sizeof(transport->tcp_xid);
Trond Myklebustb76ce562010-06-16 13:57:32 -04001226 len = sizeof(transport->tcp_calldir) - offset;
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001227 dprintk("RPC: reading CALL/REPLY flag (%zu bytes)\n", len);
Trond Myklebustb76ce562010-06-16 13:57:32 -04001228 p = ((char *) &transport->tcp_calldir) + offset;
1229 used = xdr_skb_read_bits(desc, p, len);
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001230 transport->tcp_offset += used;
1231 if (used != len)
1232 return;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001233 transport->tcp_flags &= ~TCP_RCV_READ_CALLDIR;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001234 /*
1235 * We don't yet have the XDR buffer, so we will write the calldir
1236 * out after we get the buffer from the 'struct rpc_rqst'
1237 */
Trond Myklebustb76ce562010-06-16 13:57:32 -04001238 switch (ntohl(transport->tcp_calldir)) {
1239 case RPC_REPLY:
1240 transport->tcp_flags |= TCP_RCV_COPY_CALLDIR;
1241 transport->tcp_flags |= TCP_RCV_COPY_DATA;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001242 transport->tcp_flags |= TCP_RPC_REPLY;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001243 break;
1244 case RPC_CALL:
1245 transport->tcp_flags |= TCP_RCV_COPY_CALLDIR;
1246 transport->tcp_flags |= TCP_RCV_COPY_DATA;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001247 transport->tcp_flags &= ~TCP_RPC_REPLY;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001248 break;
1249 default:
1250 dprintk("RPC: invalid request message type\n");
Trond Myklebusta519fc72012-09-12 16:49:15 -04001251 xs_tcp_force_close(&transport->xprt);
Trond Myklebustb76ce562010-06-16 13:57:32 -04001252 }
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001253 xs_tcp_check_fraghdr(transport);
1254}
1255
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001256static inline void xs_tcp_read_common(struct rpc_xprt *xprt,
1257 struct xdr_skb_reader *desc,
1258 struct rpc_rqst *req)
Chuck Levera246b012005-08-11 16:25:23 -04001259{
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001260 struct sock_xprt *transport =
1261 container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001262 struct xdr_buf *rcvbuf;
1263 size_t len;
1264 ssize_t r;
1265
Chuck Levera246b012005-08-11 16:25:23 -04001266 rcvbuf = &req->rq_private_buf;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001267
1268 if (transport->tcp_flags & TCP_RCV_COPY_CALLDIR) {
1269 /*
1270 * Save the RPC direction in the XDR buffer
1271 */
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001272 memcpy(rcvbuf->head[0].iov_base + transport->tcp_copied,
Trond Myklebustb76ce562010-06-16 13:57:32 -04001273 &transport->tcp_calldir,
1274 sizeof(transport->tcp_calldir));
1275 transport->tcp_copied += sizeof(transport->tcp_calldir);
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001276 transport->tcp_flags &= ~TCP_RCV_COPY_CALLDIR;
Chuck Levera246b012005-08-11 16:25:23 -04001277 }
1278
Chuck Levera246b012005-08-11 16:25:23 -04001279 len = desc->count;
Chuck Lever51971132006-12-05 16:35:19 -05001280 if (len > transport->tcp_reclen - transport->tcp_offset) {
Chuck Leverdd456472006-12-05 16:35:44 -05001281 struct xdr_skb_reader my_desc;
Chuck Levera246b012005-08-11 16:25:23 -04001282
Chuck Lever51971132006-12-05 16:35:19 -05001283 len = transport->tcp_reclen - transport->tcp_offset;
Chuck Levera246b012005-08-11 16:25:23 -04001284 memcpy(&my_desc, desc, sizeof(my_desc));
1285 my_desc.count = len;
Chuck Lever51971132006-12-05 16:35:19 -05001286 r = xdr_partial_copy_from_skb(rcvbuf, transport->tcp_copied,
Chuck Lever9d292312006-12-05 16:35:41 -05001287 &my_desc, xdr_skb_read_bits);
Chuck Levera246b012005-08-11 16:25:23 -04001288 desc->count -= r;
1289 desc->offset += r;
1290 } else
Chuck Lever51971132006-12-05 16:35:19 -05001291 r = xdr_partial_copy_from_skb(rcvbuf, transport->tcp_copied,
Chuck Lever9d292312006-12-05 16:35:41 -05001292 desc, xdr_skb_read_bits);
Chuck Levera246b012005-08-11 16:25:23 -04001293
1294 if (r > 0) {
Chuck Lever51971132006-12-05 16:35:19 -05001295 transport->tcp_copied += r;
1296 transport->tcp_offset += r;
Chuck Levera246b012005-08-11 16:25:23 -04001297 }
1298 if (r != len) {
1299 /* Error when copying to the receive buffer,
1300 * usually because we weren't able to allocate
1301 * additional buffer pages. All we can do now
Chuck Levere136d092006-12-05 16:35:23 -05001302 * is turn off TCP_RCV_COPY_DATA, so the request
Chuck Levera246b012005-08-11 16:25:23 -04001303 * will not receive any additional updates,
1304 * and time out.
1305 * Any remaining data from this record will
1306 * be discarded.
1307 */
Chuck Levere136d092006-12-05 16:35:23 -05001308 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Lever46121cf2007-01-31 12:14:08 -05001309 dprintk("RPC: XID %08x truncated request\n",
Chuck Lever51971132006-12-05 16:35:19 -05001310 ntohl(transport->tcp_xid));
Chuck Lever46121cf2007-01-31 12:14:08 -05001311 dprintk("RPC: xprt = %p, tcp_copied = %lu, "
1312 "tcp_offset = %u, tcp_reclen = %u\n",
1313 xprt, transport->tcp_copied,
1314 transport->tcp_offset, transport->tcp_reclen);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001315 return;
Chuck Levera246b012005-08-11 16:25:23 -04001316 }
1317
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001318 dprintk("RPC: XID %08x read %zd bytes\n",
Chuck Lever51971132006-12-05 16:35:19 -05001319 ntohl(transport->tcp_xid), r);
Chuck Lever46121cf2007-01-31 12:14:08 -05001320 dprintk("RPC: xprt = %p, tcp_copied = %lu, tcp_offset = %u, "
1321 "tcp_reclen = %u\n", xprt, transport->tcp_copied,
1322 transport->tcp_offset, transport->tcp_reclen);
Chuck Levera246b012005-08-11 16:25:23 -04001323
Chuck Lever51971132006-12-05 16:35:19 -05001324 if (transport->tcp_copied == req->rq_private_buf.buflen)
Chuck Levere136d092006-12-05 16:35:23 -05001325 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Lever51971132006-12-05 16:35:19 -05001326 else if (transport->tcp_offset == transport->tcp_reclen) {
Chuck Levere136d092006-12-05 16:35:23 -05001327 if (transport->tcp_flags & TCP_RCV_LAST_FRAG)
1328 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Levera246b012005-08-11 16:25:23 -04001329 }
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001330}
1331
1332/*
1333 * Finds the request corresponding to the RPC xid and invokes the common
1334 * tcp read code to read the data.
1335 */
1336static inline int xs_tcp_read_reply(struct rpc_xprt *xprt,
1337 struct xdr_skb_reader *desc)
1338{
1339 struct sock_xprt *transport =
1340 container_of(xprt, struct sock_xprt, xprt);
1341 struct rpc_rqst *req;
1342
1343 dprintk("RPC: read reply XID %08x\n", ntohl(transport->tcp_xid));
1344
1345 /* Find and lock the request corresponding to this xid */
Trond Myklebustedc1b012015-10-05 10:53:49 -04001346 spin_lock_bh(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001347 req = xprt_lookup_rqst(xprt, transport->tcp_xid);
1348 if (!req) {
1349 dprintk("RPC: XID %08x request not found!\n",
1350 ntohl(transport->tcp_xid));
Trond Myklebustedc1b012015-10-05 10:53:49 -04001351 spin_unlock_bh(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001352 return -1;
1353 }
1354
1355 xs_tcp_read_common(xprt, desc, req);
1356
Chuck Levere136d092006-12-05 16:35:23 -05001357 if (!(transport->tcp_flags & TCP_RCV_COPY_DATA))
Chuck Lever51971132006-12-05 16:35:19 -05001358 xprt_complete_rqst(req->rq_task, transport->tcp_copied);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001359
Trond Myklebustedc1b012015-10-05 10:53:49 -04001360 spin_unlock_bh(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001361 return 0;
1362}
1363
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001364#if defined(CONFIG_SUNRPC_BACKCHANNEL)
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001365/*
1366 * Obtains an rpc_rqst previously allocated and invokes the common
1367 * tcp read code to read the data. The result is placed in the callback
1368 * queue.
1369 * If we're unable to obtain the rpc_rqst we schedule the closing of the
1370 * connection and return -1.
1371 */
Trond Myklebust2ea24492014-02-10 11:18:39 -05001372static int xs_tcp_read_callback(struct rpc_xprt *xprt,
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001373 struct xdr_skb_reader *desc)
1374{
1375 struct sock_xprt *transport =
1376 container_of(xprt, struct sock_xprt, xprt);
1377 struct rpc_rqst *req;
1378
Trond Myklebust2ea24492014-02-10 11:18:39 -05001379 /* Look up and lock the request corresponding to the given XID */
Trond Myklebustedc1b012015-10-05 10:53:49 -04001380 spin_lock_bh(&xprt->transport_lock);
Trond Myklebust2ea24492014-02-10 11:18:39 -05001381 req = xprt_lookup_bc_request(xprt, transport->tcp_xid);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001382 if (req == NULL) {
Trond Myklebustedc1b012015-10-05 10:53:49 -04001383 spin_unlock_bh(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001384 printk(KERN_WARNING "Callback slot table overflowed\n");
1385 xprt_force_disconnect(xprt);
1386 return -1;
1387 }
1388
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001389 dprintk("RPC: read callback XID %08x\n", ntohl(req->rq_xid));
1390 xs_tcp_read_common(xprt, desc, req);
1391
Trond Myklebust2ea24492014-02-10 11:18:39 -05001392 if (!(transport->tcp_flags & TCP_RCV_COPY_DATA))
1393 xprt_complete_bc_request(req, transport->tcp_copied);
Trond Myklebustedc1b012015-10-05 10:53:49 -04001394 spin_unlock_bh(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001395
1396 return 0;
1397}
1398
1399static inline int _xs_tcp_read_data(struct rpc_xprt *xprt,
1400 struct xdr_skb_reader *desc)
1401{
1402 struct sock_xprt *transport =
1403 container_of(xprt, struct sock_xprt, xprt);
1404
1405 return (transport->tcp_flags & TCP_RPC_REPLY) ?
1406 xs_tcp_read_reply(xprt, desc) :
1407 xs_tcp_read_callback(xprt, desc);
1408}
Chuck Lever76566772015-10-24 17:28:32 -04001409
1410static int xs_tcp_bc_up(struct svc_serv *serv, struct net *net)
1411{
1412 int ret;
1413
1414 ret = svc_create_xprt(serv, "tcp-bc", net, PF_INET, 0,
1415 SVC_SOCK_ANONYMOUS);
1416 if (ret < 0)
1417 return ret;
1418 return 0;
1419}
Chuck Lever6b26cc82016-05-02 14:40:40 -04001420
1421static size_t xs_tcp_bc_maxpayload(struct rpc_xprt *xprt)
1422{
1423 return PAGE_SIZE;
1424}
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001425#else
1426static inline int _xs_tcp_read_data(struct rpc_xprt *xprt,
1427 struct xdr_skb_reader *desc)
1428{
1429 return xs_tcp_read_reply(xprt, desc);
1430}
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001431#endif /* CONFIG_SUNRPC_BACKCHANNEL */
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001432
1433/*
1434 * Read data off the transport. This can be either an RPC_CALL or an
1435 * RPC_REPLY. Relay the processing to helper functions.
1436 */
1437static void xs_tcp_read_data(struct rpc_xprt *xprt,
1438 struct xdr_skb_reader *desc)
1439{
1440 struct sock_xprt *transport =
1441 container_of(xprt, struct sock_xprt, xprt);
1442
1443 if (_xs_tcp_read_data(xprt, desc) == 0)
1444 xs_tcp_check_fraghdr(transport);
1445 else {
1446 /*
1447 * The transport_lock protects the request handling.
1448 * There's no need to hold it to update the tcp_flags.
1449 */
1450 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
1451 }
Chuck Levera246b012005-08-11 16:25:23 -04001452}
1453
Chuck Leverdd456472006-12-05 16:35:44 -05001454static inline void xs_tcp_read_discard(struct sock_xprt *transport, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001455{
1456 size_t len;
1457
Chuck Lever51971132006-12-05 16:35:19 -05001458 len = transport->tcp_reclen - transport->tcp_offset;
Chuck Levera246b012005-08-11 16:25:23 -04001459 if (len > desc->count)
1460 len = desc->count;
1461 desc->count -= len;
1462 desc->offset += len;
Chuck Lever51971132006-12-05 16:35:19 -05001463 transport->tcp_offset += len;
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001464 dprintk("RPC: discarded %zu bytes\n", len);
Chuck Lever51971132006-12-05 16:35:19 -05001465 xs_tcp_check_fraghdr(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001466}
1467
Chuck Lever9903cd12005-08-11 16:25:26 -04001468static 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 -04001469{
1470 struct rpc_xprt *xprt = rd_desc->arg.data;
Chuck Lever51971132006-12-05 16:35:19 -05001471 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Leverdd456472006-12-05 16:35:44 -05001472 struct xdr_skb_reader desc = {
Chuck Levera246b012005-08-11 16:25:23 -04001473 .skb = skb,
1474 .offset = offset,
1475 .count = len,
Chuck Lever9903cd12005-08-11 16:25:26 -04001476 };
Chuck Levera246b012005-08-11 16:25:23 -04001477
Chuck Lever46121cf2007-01-31 12:14:08 -05001478 dprintk("RPC: xs_tcp_data_recv started\n");
Chuck Levera246b012005-08-11 16:25:23 -04001479 do {
Jeff Layton1a867a02014-10-28 14:24:14 -04001480 trace_xs_tcp_data_recv(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001481 /* Read in a new fragment marker if necessary */
1482 /* Can we ever really expect to get completely empty fragments? */
Chuck Levere136d092006-12-05 16:35:23 -05001483 if (transport->tcp_flags & TCP_RCV_COPY_FRAGHDR) {
Chuck Lever9903cd12005-08-11 16:25:26 -04001484 xs_tcp_read_fraghdr(xprt, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001485 continue;
1486 }
1487 /* Read in the xid if necessary */
Chuck Levere136d092006-12-05 16:35:23 -05001488 if (transport->tcp_flags & TCP_RCV_COPY_XID) {
Chuck Lever51971132006-12-05 16:35:19 -05001489 xs_tcp_read_xid(transport, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001490 continue;
1491 }
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001492 /* Read in the call/reply flag */
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001493 if (transport->tcp_flags & TCP_RCV_READ_CALLDIR) {
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001494 xs_tcp_read_calldir(transport, &desc);
1495 continue;
1496 }
Chuck Levera246b012005-08-11 16:25:23 -04001497 /* Read in the request data */
Chuck Levere136d092006-12-05 16:35:23 -05001498 if (transport->tcp_flags & TCP_RCV_COPY_DATA) {
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001499 xs_tcp_read_data(xprt, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001500 continue;
1501 }
1502 /* Skip over any trailing bytes on short reads */
Chuck Lever51971132006-12-05 16:35:19 -05001503 xs_tcp_read_discard(transport, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001504 } while (desc.count);
Jeff Layton1a867a02014-10-28 14:24:14 -04001505 trace_xs_tcp_data_recv(transport);
Chuck Lever46121cf2007-01-31 12:14:08 -05001506 dprintk("RPC: xs_tcp_data_recv done\n");
Chuck Levera246b012005-08-11 16:25:23 -04001507 return len - desc.count;
1508}
1509
Trond Myklebust66d7a562015-10-05 11:19:20 -04001510static void xs_tcp_data_receive(struct sock_xprt *transport)
1511{
1512 struct rpc_xprt *xprt = &transport->xprt;
1513 struct sock *sk;
1514 read_descriptor_t rd_desc = {
1515 .count = 2*1024*1024,
1516 .arg.data = xprt,
1517 };
1518 unsigned long total = 0;
1519 int read = 0;
1520
Trond Myklebustedc1b012015-10-05 10:53:49 -04001521 mutex_lock(&transport->recv_mutex);
Trond Myklebust66d7a562015-10-05 11:19:20 -04001522 sk = transport->inet;
Trond Myklebustedc1b012015-10-05 10:53:49 -04001523 if (sk == NULL)
1524 goto out;
Trond Myklebust66d7a562015-10-05 11:19:20 -04001525
1526 /* We use rd_desc to pass struct xprt to xs_tcp_data_recv */
1527 for (;;) {
Trond Myklebustedc1b012015-10-05 10:53:49 -04001528 lock_sock(sk);
Trond Myklebust66d7a562015-10-05 11:19:20 -04001529 read = tcp_read_sock(sk, &rd_desc, xs_tcp_data_recv);
Trond Myklebust42d42a52016-05-23 09:24:55 -04001530 if (read <= 0) {
1531 clear_bit(XPRT_SOCK_DATA_READY, &transport->sock_state);
1532 release_sock(sk);
1533 if (!test_bit(XPRT_SOCK_DATA_READY, &transport->sock_state))
1534 break;
1535 } else {
1536 release_sock(sk);
1537 total += read;
1538 }
Trond Myklebust66d7a562015-10-05 11:19:20 -04001539 rd_desc.count = 65536;
1540 }
Trond Myklebustedc1b012015-10-05 10:53:49 -04001541out:
1542 mutex_unlock(&transport->recv_mutex);
Trond Myklebust66d7a562015-10-05 11:19:20 -04001543 trace_xs_tcp_data_ready(xprt, read, total);
1544}
1545
Trond Myklebustedc1b012015-10-05 10:53:49 -04001546static void xs_tcp_data_receive_workfn(struct work_struct *work)
1547{
1548 struct sock_xprt *transport =
1549 container_of(work, struct sock_xprt, recv_worker);
1550 xs_tcp_data_receive(transport);
1551}
1552
Chuck Lever9903cd12005-08-11 16:25:26 -04001553/**
Chuck Lever9903cd12005-08-11 16:25:26 -04001554 * xs_tcp_state_change - callback to handle TCP socket state changes
1555 * @sk: socket whose state has changed
1556 *
1557 */
1558static void xs_tcp_state_change(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -04001559{
Chuck Lever9903cd12005-08-11 16:25:26 -04001560 struct rpc_xprt *xprt;
Trond Myklebust0fdea1e2015-09-16 23:43:17 -04001561 struct sock_xprt *transport;
Chuck Levera246b012005-08-11 16:25:23 -04001562
Eric Dumazetf064af12010-09-22 12:43:39 +00001563 read_lock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001564 if (!(xprt = xprt_from_sock(sk)))
1565 goto out;
Chuck Lever46121cf2007-01-31 12:14:08 -05001566 dprintk("RPC: xs_tcp_state_change client %p...\n", xprt);
Andy Chittenden669502f2010-08-10 10:19:53 -04001567 dprintk("RPC: state %x conn %d dead %d zapped %d sk_shutdown %d\n",
Chuck Lever46121cf2007-01-31 12:14:08 -05001568 sk->sk_state, xprt_connected(xprt),
1569 sock_flag(sk, SOCK_DEAD),
Andy Chittenden669502f2010-08-10 10:19:53 -04001570 sock_flag(sk, SOCK_ZAPPED),
1571 sk->sk_shutdown);
Chuck Levera246b012005-08-11 16:25:23 -04001572
Trond Myklebust0fdea1e2015-09-16 23:43:17 -04001573 transport = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04001574 trace_rpc_socket_state_change(xprt, sk->sk_socket);
Chuck Levera246b012005-08-11 16:25:23 -04001575 switch (sk->sk_state) {
1576 case TCP_ESTABLISHED:
Eric Dumazetf064af12010-09-22 12:43:39 +00001577 spin_lock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001578 if (!xprt_test_and_set_connected(xprt)) {
Chuck Lever51971132006-12-05 16:35:19 -05001579
Chuck Levera246b012005-08-11 16:25:23 -04001580 /* Reset TCP record info */
Chuck Lever51971132006-12-05 16:35:19 -05001581 transport->tcp_offset = 0;
1582 transport->tcp_reclen = 0;
1583 transport->tcp_copied = 0;
Chuck Levere136d092006-12-05 16:35:23 -05001584 transport->tcp_flags =
1585 TCP_RCV_COPY_FRAGHDR | TCP_RCV_COPY_XID;
Trond Myklebust8b717982013-09-26 10:18:04 -04001586 xprt->connect_cookie++;
Trond Myklebust0fdea1e2015-09-16 23:43:17 -04001587 clear_bit(XPRT_SOCK_CONNECTING, &transport->sock_state);
1588 xprt_clear_connecting(xprt);
Chuck Lever51971132006-12-05 16:35:19 -05001589
Trond Myklebust2a491992009-03-11 14:38:00 -04001590 xprt_wake_pending_tasks(xprt, -EAGAIN);
Chuck Levera246b012005-08-11 16:25:23 -04001591 }
Eric Dumazetf064af12010-09-22 12:43:39 +00001592 spin_unlock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001593 break;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001594 case TCP_FIN_WAIT1:
1595 /* The client initiated a shutdown of the socket */
Trond Myklebust7c1d71c2008-04-17 16:52:57 -04001596 xprt->connect_cookie++;
Trond Myklebust663b8852008-01-01 18:42:12 -05001597 xprt->reestablish_timeout = 0;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001598 set_bit(XPRT_CLOSING, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001599 smp_mb__before_atomic();
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001600 clear_bit(XPRT_CONNECTED, &xprt->state);
Trond Myklebustef803672007-12-31 16:19:17 -05001601 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001602 smp_mb__after_atomic();
Chuck Levera246b012005-08-11 16:25:23 -04001603 break;
Trond Myklebust632e3bd2006-01-03 09:55:55 +01001604 case TCP_CLOSE_WAIT:
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001605 /* The server initiated a shutdown of the socket */
Trond Myklebust7c1d71c2008-04-17 16:52:57 -04001606 xprt->connect_cookie++;
Trond Myklebustd0bea452012-10-23 11:35:47 -04001607 clear_bit(XPRT_CONNECTED, &xprt->state);
Trond Myklebusta519fc72012-09-12 16:49:15 -04001608 xs_tcp_force_close(xprt);
Trond Myklebust663b8852008-01-01 18:42:12 -05001609 case TCP_CLOSING:
1610 /*
1611 * If the server closed down the connection, make sure that
1612 * we back off before reconnecting
1613 */
1614 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
1615 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001616 break;
1617 case TCP_LAST_ACK:
Trond Myklebust670f9452009-03-11 14:37:58 -04001618 set_bit(XPRT_CLOSING, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001619 smp_mb__before_atomic();
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001620 clear_bit(XPRT_CONNECTED, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001621 smp_mb__after_atomic();
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001622 break;
1623 case TCP_CLOSE:
Trond Myklebust0fdea1e2015-09-16 23:43:17 -04001624 if (test_and_clear_bit(XPRT_SOCK_CONNECTING,
1625 &transport->sock_state))
1626 xprt_clear_connecting(xprt);
NeilBrown3ffbc1d2017-07-19 14:05:01 +10001627 if (sk->sk_err)
1628 xprt_wake_pending_tasks(xprt, -sk->sk_err);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001629 xs_sock_mark_closed(xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001630 }
1631 out:
Eric Dumazetf064af12010-09-22 12:43:39 +00001632 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001633}
1634
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001635static void xs_write_space(struct sock *sk)
1636{
Trond Myklebust13331a52016-01-06 08:57:06 -05001637 struct socket_wq *wq;
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001638 struct rpc_xprt *xprt;
1639
Trond Myklebust13331a52016-01-06 08:57:06 -05001640 if (!sk->sk_socket)
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001641 return;
Trond Myklebust13331a52016-01-06 08:57:06 -05001642 clear_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001643
1644 if (unlikely(!(xprt = xprt_from_sock(sk))))
1645 return;
Trond Myklebust13331a52016-01-06 08:57:06 -05001646 rcu_read_lock();
1647 wq = rcu_dereference(sk->sk_wq);
1648 if (!wq || test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &wq->flags) == 0)
1649 goto out;
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001650
1651 xprt_write_space(xprt);
Trond Myklebust13331a52016-01-06 08:57:06 -05001652out:
1653 rcu_read_unlock();
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001654}
1655
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04001656/**
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001657 * xs_udp_write_space - callback invoked when socket buffer space
1658 * becomes available
Chuck Lever9903cd12005-08-11 16:25:26 -04001659 * @sk: socket whose state has changed
1660 *
Chuck Levera246b012005-08-11 16:25:23 -04001661 * Called when more output buffer space is available for this socket.
1662 * We try not to wake our writers until they can make "significant"
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001663 * progress, otherwise we'll waste resources thrashing kernel_sendmsg
Chuck Levera246b012005-08-11 16:25:23 -04001664 * with a bunch of small requests.
1665 */
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001666static void xs_udp_write_space(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -04001667{
Eric Dumazetf064af12010-09-22 12:43:39 +00001668 read_lock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001669
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001670 /* from net/core/sock.c:sock_def_write_space */
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001671 if (sock_writeable(sk))
1672 xs_write_space(sk);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001673
Eric Dumazetf064af12010-09-22 12:43:39 +00001674 read_unlock_bh(&sk->sk_callback_lock);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001675}
Chuck Levera246b012005-08-11 16:25:23 -04001676
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001677/**
1678 * xs_tcp_write_space - callback invoked when socket buffer space
1679 * becomes available
1680 * @sk: socket whose state has changed
1681 *
1682 * Called when more output buffer space is available for this socket.
1683 * We try not to wake our writers until they can make "significant"
1684 * progress, otherwise we'll waste resources thrashing kernel_sendmsg
1685 * with a bunch of small requests.
1686 */
1687static void xs_tcp_write_space(struct sock *sk)
1688{
Eric Dumazetf064af12010-09-22 12:43:39 +00001689 read_lock_bh(&sk->sk_callback_lock);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001690
1691 /* from net/core/stream.c:sk_stream_write_space */
Eric Dumazet64dc6132013-07-22 20:26:31 -07001692 if (sk_stream_is_writeable(sk))
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001693 xs_write_space(sk);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001694
Eric Dumazetf064af12010-09-22 12:43:39 +00001695 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001696}
1697
Chuck Lever470056c2005-08-25 16:25:56 -07001698static void xs_udp_do_set_buffer_size(struct rpc_xprt *xprt)
Chuck Levera246b012005-08-11 16:25:23 -04001699{
Chuck Leveree0ac0c2006-12-05 16:35:15 -05001700 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
1701 struct sock *sk = transport->inet;
Chuck Levera246b012005-08-11 16:25:23 -04001702
Chuck Lever7c6e0662006-12-05 16:35:30 -05001703 if (transport->rcvsize) {
Chuck Levera246b012005-08-11 16:25:23 -04001704 sk->sk_userlocks |= SOCK_RCVBUF_LOCK;
Chuck Lever7c6e0662006-12-05 16:35:30 -05001705 sk->sk_rcvbuf = transport->rcvsize * xprt->max_reqs * 2;
Chuck Levera246b012005-08-11 16:25:23 -04001706 }
Chuck Lever7c6e0662006-12-05 16:35:30 -05001707 if (transport->sndsize) {
Chuck Levera246b012005-08-11 16:25:23 -04001708 sk->sk_userlocks |= SOCK_SNDBUF_LOCK;
Chuck Lever7c6e0662006-12-05 16:35:30 -05001709 sk->sk_sndbuf = transport->sndsize * xprt->max_reqs * 2;
Chuck Levera246b012005-08-11 16:25:23 -04001710 sk->sk_write_space(sk);
1711 }
1712}
1713
Chuck Lever43118c22005-08-25 16:25:49 -07001714/**
Chuck Lever470056c2005-08-25 16:25:56 -07001715 * xs_udp_set_buffer_size - set send and receive limits
Chuck Lever43118c22005-08-25 16:25:49 -07001716 * @xprt: generic transport
Chuck Lever470056c2005-08-25 16:25:56 -07001717 * @sndsize: requested size of send buffer, in bytes
1718 * @rcvsize: requested size of receive buffer, in bytes
Chuck Lever43118c22005-08-25 16:25:49 -07001719 *
Chuck Lever470056c2005-08-25 16:25:56 -07001720 * Set socket send and receive buffer size limits.
Chuck Lever43118c22005-08-25 16:25:49 -07001721 */
Chuck Lever470056c2005-08-25 16:25:56 -07001722static void xs_udp_set_buffer_size(struct rpc_xprt *xprt, size_t sndsize, size_t rcvsize)
Chuck Lever43118c22005-08-25 16:25:49 -07001723{
Chuck Lever7c6e0662006-12-05 16:35:30 -05001724 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
1725
1726 transport->sndsize = 0;
Chuck Lever470056c2005-08-25 16:25:56 -07001727 if (sndsize)
Chuck Lever7c6e0662006-12-05 16:35:30 -05001728 transport->sndsize = sndsize + 1024;
1729 transport->rcvsize = 0;
Chuck Lever470056c2005-08-25 16:25:56 -07001730 if (rcvsize)
Chuck Lever7c6e0662006-12-05 16:35:30 -05001731 transport->rcvsize = rcvsize + 1024;
Chuck Lever470056c2005-08-25 16:25:56 -07001732
1733 xs_udp_do_set_buffer_size(xprt);
Chuck Lever43118c22005-08-25 16:25:49 -07001734}
1735
Chuck Lever46c0ee82005-08-25 16:25:52 -07001736/**
1737 * xs_udp_timer - called when a retransmit timeout occurs on a UDP transport
1738 * @task: task that timed out
1739 *
1740 * Adjust the congestion window after a retransmit timeout has occurred.
1741 */
Trond Myklebust6a24dfb2013-01-08 09:48:15 -05001742static void xs_udp_timer(struct rpc_xprt *xprt, struct rpc_task *task)
Chuck Lever46c0ee82005-08-25 16:25:52 -07001743{
Chuck Leverb977b642017-02-08 17:00:51 -05001744 spin_lock_bh(&xprt->transport_lock);
Trond Myklebust6a24dfb2013-01-08 09:48:15 -05001745 xprt_adjust_cwnd(xprt, task, -ETIMEDOUT);
Chuck Leverb977b642017-02-08 17:00:51 -05001746 spin_unlock_bh(&xprt->transport_lock);
Chuck Lever46c0ee82005-08-25 16:25:52 -07001747}
1748
Chuck Leverb85d8802006-05-25 01:40:49 -04001749static unsigned short xs_get_random_port(void)
1750{
Frank Sorenson5d718992016-07-08 16:35:23 -05001751 unsigned short range = xprt_max_resvport - xprt_min_resvport + 1;
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05001752 unsigned short rand = (unsigned short) prandom_u32() % range;
Chuck Leverb85d8802006-05-25 01:40:49 -04001753 return rand + xprt_min_resvport;
1754}
1755
Chuck Lever92200412006-01-03 09:55:51 +01001756/**
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001757 * xs_set_reuseaddr_port - set the socket's port and address reuse options
1758 * @sock: socket
1759 *
1760 * Note that this function has to be called on all sockets that share the
1761 * same port, and it must be called before binding.
1762 */
1763static void xs_sock_set_reuseport(struct socket *sock)
1764{
Trond Myklebust402e23b2015-02-09 17:20:14 -05001765 int opt = 1;
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001766
Trond Myklebust402e23b2015-02-09 17:20:14 -05001767 kernel_setsockopt(sock, SOL_SOCKET, SO_REUSEPORT,
1768 (char *)&opt, sizeof(opt));
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001769}
1770
1771static unsigned short xs_sock_getport(struct socket *sock)
1772{
1773 struct sockaddr_storage buf;
1774 int buflen;
1775 unsigned short port = 0;
1776
1777 if (kernel_getsockname(sock, (struct sockaddr *)&buf, &buflen) < 0)
1778 goto out;
1779 switch (buf.ss_family) {
1780 case AF_INET6:
1781 port = ntohs(((struct sockaddr_in6 *)&buf)->sin6_port);
1782 break;
1783 case AF_INET:
1784 port = ntohs(((struct sockaddr_in *)&buf)->sin_port);
1785 }
1786out:
1787 return port;
1788}
1789
1790/**
Chuck Lever92200412006-01-03 09:55:51 +01001791 * xs_set_port - reset the port number in the remote endpoint address
1792 * @xprt: generic transport
1793 * @port: new port number
1794 *
1795 */
1796static void xs_set_port(struct rpc_xprt *xprt, unsigned short port)
1797{
Chuck Lever46121cf2007-01-31 12:14:08 -05001798 dprintk("RPC: setting port for xprt %p to %u\n", xprt, port);
Chuck Leverc4efcb12006-08-22 20:06:19 -04001799
Chuck Lever9dc3b092009-08-09 15:09:46 -04001800 rpc_set_port(xs_addr(xprt), port);
1801 xs_update_peer_port(xprt);
Chuck Lever92200412006-01-03 09:55:51 +01001802}
1803
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001804static void xs_set_srcport(struct sock_xprt *transport, struct socket *sock)
1805{
1806 if (transport->srcport == 0)
1807 transport->srcport = xs_sock_getport(sock);
1808}
1809
Pavel Emelyanov5d4ec932010-10-04 16:51:23 +04001810static unsigned short xs_get_srcport(struct sock_xprt *transport)
Trond Myklebust67a391d2007-11-05 17:40:58 -05001811{
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001812 unsigned short port = transport->srcport;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001813
1814 if (port == 0 && transport->xprt.resvport)
1815 port = xs_get_random_port();
1816 return port;
1817}
1818
Pavel Emelyanovbaaf4e42010-10-04 16:51:56 +04001819static unsigned short xs_next_srcport(struct sock_xprt *transport, unsigned short port)
Trond Myklebust67a391d2007-11-05 17:40:58 -05001820{
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001821 if (transport->srcport != 0)
1822 transport->srcport = 0;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001823 if (!transport->xprt.resvport)
1824 return 0;
1825 if (port <= xprt_min_resvport || port > xprt_max_resvport)
1826 return xprt_max_resvport;
1827 return --port;
1828}
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001829static int xs_bind(struct sock_xprt *transport, struct socket *sock)
Chuck Levera246b012005-08-11 16:25:23 -04001830{
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001831 struct sockaddr_storage myaddr;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001832 int err, nloop = 0;
Pavel Emelyanov5d4ec932010-10-04 16:51:23 +04001833 unsigned short port = xs_get_srcport(transport);
Trond Myklebust67a391d2007-11-05 17:40:58 -05001834 unsigned short last;
Chuck Levera246b012005-08-11 16:25:23 -04001835
Chris Perl0f7a6222014-09-05 15:40:21 -04001836 /*
1837 * If we are asking for any ephemeral port (i.e. port == 0 &&
1838 * transport->xprt.resvport == 0), don't bind. Let the local
1839 * port selection happen implicitly when the socket is used
1840 * (for example at connect time).
1841 *
1842 * This ensures that we can continue to establish TCP
1843 * connections even when all local ephemeral ports are already
1844 * a part of some TCP connection. This makes no difference
1845 * for UDP sockets, but also doens't harm them.
1846 *
1847 * If we're asking for any reserved port (i.e. port == 0 &&
1848 * transport->xprt.resvport == 1) xs_get_srcport above will
1849 * ensure that port is non-zero and we will bind as needed.
1850 */
1851 if (port == 0)
1852 return 0;
1853
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001854 memcpy(&myaddr, &transport->srcaddr, transport->xprt.addrlen);
Chuck Levera246b012005-08-11 16:25:23 -04001855 do {
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001856 rpc_set_port((struct sockaddr *)&myaddr, port);
1857 err = kernel_bind(sock, (struct sockaddr *)&myaddr,
1858 transport->xprt.addrlen);
Chuck Levera246b012005-08-11 16:25:23 -04001859 if (err == 0) {
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001860 transport->srcport = port;
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +02001861 break;
Chuck Levera246b012005-08-11 16:25:23 -04001862 }
Trond Myklebust67a391d2007-11-05 17:40:58 -05001863 last = port;
Pavel Emelyanovbaaf4e42010-10-04 16:51:56 +04001864 port = xs_next_srcport(transport, port);
Trond Myklebust67a391d2007-11-05 17:40:58 -05001865 if (port > last)
1866 nloop++;
1867 } while (err == -EADDRINUSE && nloop != 2);
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001868
Chuck Lever4232e862010-10-20 11:52:51 -04001869 if (myaddr.ss_family == AF_INET)
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001870 dprintk("RPC: %s %pI4:%u: %s (%d)\n", __func__,
1871 &((struct sockaddr_in *)&myaddr)->sin_addr,
1872 port, err ? "failed" : "ok", err);
1873 else
1874 dprintk("RPC: %s %pI6:%u: %s (%d)\n", __func__,
1875 &((struct sockaddr_in6 *)&myaddr)->sin6_addr,
1876 port, err ? "failed" : "ok", err);
Chuck Levera246b012005-08-11 16:25:23 -04001877 return err;
1878}
1879
Chuck Lever176e21e2011-05-09 15:22:44 -04001880/*
1881 * We don't support autobind on AF_LOCAL sockets
1882 */
1883static void xs_local_rpcbind(struct rpc_task *task)
1884{
Trond Myklebustfb43d172016-01-30 16:39:26 -05001885 xprt_set_bound(task->tk_xprt);
Chuck Lever176e21e2011-05-09 15:22:44 -04001886}
1887
1888static void xs_local_set_port(struct rpc_xprt *xprt, unsigned short port)
1889{
1890}
Chuck Levera246b012005-08-11 16:25:23 -04001891
Peter Zijlstraed075362006-12-06 20:35:24 -08001892#ifdef CONFIG_DEBUG_LOCK_ALLOC
1893static struct lock_class_key xs_key[2];
1894static struct lock_class_key xs_slock_key[2];
1895
Chuck Lever176e21e2011-05-09 15:22:44 -04001896static inline void xs_reclassify_socketu(struct socket *sock)
1897{
1898 struct sock *sk = sock->sk;
1899
Chuck Lever176e21e2011-05-09 15:22:44 -04001900 sock_lock_init_class_and_name(sk, "slock-AF_LOCAL-RPC",
1901 &xs_slock_key[1], "sk_lock-AF_LOCAL-RPC", &xs_key[1]);
1902}
1903
Chuck Lever8945ee52007-08-06 11:58:04 -04001904static inline void xs_reclassify_socket4(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -08001905{
1906 struct sock *sk = sock->sk;
Chuck Lever8945ee52007-08-06 11:58:04 -04001907
Chuck Lever8945ee52007-08-06 11:58:04 -04001908 sock_lock_init_class_and_name(sk, "slock-AF_INET-RPC",
1909 &xs_slock_key[0], "sk_lock-AF_INET-RPC", &xs_key[0]);
1910}
Peter Zijlstraed075362006-12-06 20:35:24 -08001911
Chuck Lever8945ee52007-08-06 11:58:04 -04001912static inline void xs_reclassify_socket6(struct socket *sock)
1913{
1914 struct sock *sk = sock->sk;
Peter Zijlstraed075362006-12-06 20:35:24 -08001915
Chuck Lever8945ee52007-08-06 11:58:04 -04001916 sock_lock_init_class_and_name(sk, "slock-AF_INET6-RPC",
1917 &xs_slock_key[1], "sk_lock-AF_INET6-RPC", &xs_key[1]);
Peter Zijlstraed075362006-12-06 20:35:24 -08001918}
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001919
1920static inline void xs_reclassify_socket(int family, struct socket *sock)
1921{
Hannes Frederic Sowafafc4e12016-04-08 15:11:27 +02001922 if (WARN_ON_ONCE(!sock_allow_reclassification(sock->sk)))
Weston Andros Adamson1b7a1812012-10-23 10:43:39 -04001923 return;
1924
Chuck Lever4232e862010-10-20 11:52:51 -04001925 switch (family) {
Chuck Lever176e21e2011-05-09 15:22:44 -04001926 case AF_LOCAL:
1927 xs_reclassify_socketu(sock);
1928 break;
Chuck Lever4232e862010-10-20 11:52:51 -04001929 case AF_INET:
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001930 xs_reclassify_socket4(sock);
Chuck Lever4232e862010-10-20 11:52:51 -04001931 break;
1932 case AF_INET6:
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001933 xs_reclassify_socket6(sock);
Chuck Lever4232e862010-10-20 11:52:51 -04001934 break;
1935 }
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001936}
Peter Zijlstraed075362006-12-06 20:35:24 -08001937#else
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001938static inline void xs_reclassify_socket(int family, struct socket *sock)
1939{
1940}
Peter Zijlstraed075362006-12-06 20:35:24 -08001941#endif
1942
NeilBrown93dc41b2013-10-31 16:14:36 +11001943static void xs_dummy_setup_socket(struct work_struct *work)
1944{
1945}
1946
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001947static struct socket *xs_create_sock(struct rpc_xprt *xprt,
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001948 struct sock_xprt *transport, int family, int type,
1949 int protocol, bool reuseport)
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001950{
1951 struct socket *sock;
1952 int err;
1953
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001954 err = __sock_create(xprt->xprt_net, family, type, protocol, &sock, 1);
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001955 if (err < 0) {
1956 dprintk("RPC: can't create %d transport socket (%d).\n",
1957 protocol, -err);
1958 goto out;
1959 }
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001960 xs_reclassify_socket(family, sock);
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001961
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001962 if (reuseport)
1963 xs_sock_set_reuseport(sock);
1964
Ben Hutchings4cea2882011-02-22 21:54:34 +00001965 err = xs_bind(transport, sock);
1966 if (err) {
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001967 sock_release(sock);
1968 goto out;
1969 }
1970
1971 return sock;
1972out:
1973 return ERR_PTR(err);
1974}
1975
Chuck Lever176e21e2011-05-09 15:22:44 -04001976static int xs_local_finish_connecting(struct rpc_xprt *xprt,
1977 struct socket *sock)
1978{
1979 struct sock_xprt *transport = container_of(xprt, struct sock_xprt,
1980 xprt);
1981
1982 if (!transport->inet) {
1983 struct sock *sk = sock->sk;
1984
1985 write_lock_bh(&sk->sk_callback_lock);
1986
1987 xs_save_old_callbacks(transport, sk);
1988
1989 sk->sk_user_data = xprt;
Trond Myklebusta2648092015-10-06 17:03:00 -04001990 sk->sk_data_ready = xs_data_ready;
Chuck Lever176e21e2011-05-09 15:22:44 -04001991 sk->sk_write_space = xs_udp_write_space;
Eric Dumazetb44114572016-05-12 21:41:39 -07001992 sock_set_flag(sk, SOCK_FASYNC);
Trond Myklebust21180712013-12-31 13:22:59 -05001993 sk->sk_error_report = xs_error_report;
Trond Myklebustc2126152015-08-19 21:46:15 -05001994 sk->sk_allocation = GFP_NOIO;
Chuck Lever176e21e2011-05-09 15:22:44 -04001995
1996 xprt_clear_connected(xprt);
1997
1998 /* Reset to new socket */
1999 transport->sock = sock;
2000 transport->inet = sk;
2001
2002 write_unlock_bh(&sk->sk_callback_lock);
2003 }
2004
2005 /* Tell the socket layer to start connecting... */
2006 xprt->stat.connect_count++;
2007 xprt->stat.connect_start = jiffies;
2008 return kernel_connect(sock, xs_addr(xprt), xprt->addrlen, 0);
2009}
2010
2011/**
2012 * xs_local_setup_socket - create AF_LOCAL socket, connect to a local endpoint
Chuck Lever176e21e2011-05-09 15:22:44 -04002013 * @transport: socket transport to connect
Chuck Lever176e21e2011-05-09 15:22:44 -04002014 */
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05002015static int xs_local_setup_socket(struct sock_xprt *transport)
Chuck Lever176e21e2011-05-09 15:22:44 -04002016{
Chuck Lever176e21e2011-05-09 15:22:44 -04002017 struct rpc_xprt *xprt = &transport->xprt;
2018 struct socket *sock;
2019 int status = -EIO;
2020
Chuck Lever176e21e2011-05-09 15:22:44 -04002021 status = __sock_create(xprt->xprt_net, AF_LOCAL,
2022 SOCK_STREAM, 0, &sock, 1);
2023 if (status < 0) {
2024 dprintk("RPC: can't create AF_LOCAL "
2025 "transport socket (%d).\n", -status);
2026 goto out;
2027 }
Stefan Hajnoczid1358912015-12-02 14:17:52 +08002028 xs_reclassify_socket(AF_LOCAL, sock);
Chuck Lever176e21e2011-05-09 15:22:44 -04002029
2030 dprintk("RPC: worker connecting xprt %p via AF_LOCAL to %s\n",
2031 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
2032
2033 status = xs_local_finish_connecting(xprt, sock);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04002034 trace_rpc_socket_connect(xprt, sock, status);
Chuck Lever176e21e2011-05-09 15:22:44 -04002035 switch (status) {
2036 case 0:
2037 dprintk("RPC: xprt %p connected to %s\n",
2038 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
2039 xprt_set_connected(xprt);
Trond Myklebust3601c4a2014-06-30 13:42:19 -04002040 case -ENOBUFS:
Chuck Lever176e21e2011-05-09 15:22:44 -04002041 break;
2042 case -ENOENT:
2043 dprintk("RPC: xprt %p: socket %s does not exist\n",
2044 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
2045 break;
Trond Myklebust4a20a982012-12-15 17:02:29 -05002046 case -ECONNREFUSED:
2047 dprintk("RPC: xprt %p: connection refused for %s\n",
2048 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
2049 break;
Chuck Lever176e21e2011-05-09 15:22:44 -04002050 default:
2051 printk(KERN_ERR "%s: unhandled error (%d) connecting to %s\n",
2052 __func__, -status,
2053 xprt->address_strings[RPC_DISPLAY_ADDR]);
2054 }
2055
2056out:
2057 xprt_clear_connecting(xprt);
2058 xprt_wake_pending_tasks(xprt, status);
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05002059 return status;
2060}
2061
Linus Torvaldsb6669732013-02-28 18:02:55 -08002062static void xs_local_connect(struct rpc_xprt *xprt, struct rpc_task *task)
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05002063{
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05002064 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
2065 int ret;
2066
2067 if (RPC_IS_ASYNC(task)) {
2068 /*
2069 * We want the AF_LOCAL connect to be resolved in the
2070 * filesystem namespace of the process making the rpc
2071 * call. Thus we connect synchronously.
2072 *
2073 * If we want to support asynchronous AF_LOCAL calls,
2074 * we'll need to figure out how to pass a namespace to
2075 * connect.
2076 */
2077 rpc_exit(task, -ENOTCONN);
2078 return;
2079 }
2080 ret = xs_local_setup_socket(transport);
2081 if (ret && !RPC_IS_SOFTCONN(task))
2082 msleep_interruptible(15000);
Chuck Lever176e21e2011-05-09 15:22:44 -04002083}
2084
Jeff Layton3c87ef62015-06-03 16:14:25 -04002085#if IS_ENABLED(CONFIG_SUNRPC_SWAP)
Jeff Laytond6e971d2015-06-03 16:14:28 -04002086/*
2087 * Note that this should be called with XPRT_LOCKED held (or when we otherwise
2088 * know that we have exclusive access to the socket), to guard against
2089 * races with xs_reset_transport.
2090 */
Mel Gormana564b8f2012-07-31 16:45:12 -07002091static void xs_set_memalloc(struct rpc_xprt *xprt)
2092{
2093 struct sock_xprt *transport = container_of(xprt, struct sock_xprt,
2094 xprt);
2095
Jeff Laytond6e971d2015-06-03 16:14:28 -04002096 /*
2097 * If there's no sock, then we have nothing to set. The
2098 * reconnecting process will get it for us.
2099 */
2100 if (!transport->inet)
2101 return;
Jeff Layton8e228132015-06-03 16:14:26 -04002102 if (atomic_read(&xprt->swapper))
Mel Gormana564b8f2012-07-31 16:45:12 -07002103 sk_set_memalloc(transport->inet);
2104}
2105
2106/**
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002107 * xs_enable_swap - Tag this transport as being used for swap.
Mel Gormana564b8f2012-07-31 16:45:12 -07002108 * @xprt: transport to tag
Mel Gormana564b8f2012-07-31 16:45:12 -07002109 *
Jeff Layton8e228132015-06-03 16:14:26 -04002110 * Take a reference to this transport on behalf of the rpc_clnt, and
2111 * optionally mark it for swapping if it wasn't already.
Mel Gormana564b8f2012-07-31 16:45:12 -07002112 */
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002113static int
2114xs_enable_swap(struct rpc_xprt *xprt)
Mel Gormana564b8f2012-07-31 16:45:12 -07002115{
Jeff Laytond6e971d2015-06-03 16:14:28 -04002116 struct sock_xprt *xs = container_of(xprt, struct sock_xprt, xprt);
Mel Gormana564b8f2012-07-31 16:45:12 -07002117
Jeff Laytond6e971d2015-06-03 16:14:28 -04002118 if (atomic_inc_return(&xprt->swapper) != 1)
2119 return 0;
2120 if (wait_on_bit_lock(&xprt->state, XPRT_LOCKED, TASK_KILLABLE))
2121 return -ERESTARTSYS;
2122 if (xs->inet)
2123 sk_set_memalloc(xs->inet);
2124 xprt_release_xprt(xprt, NULL);
Jeff Layton8e228132015-06-03 16:14:26 -04002125 return 0;
Mel Gormana564b8f2012-07-31 16:45:12 -07002126}
Jeff Layton8e228132015-06-03 16:14:26 -04002127
2128/**
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002129 * xs_disable_swap - Untag this transport as being used for swap.
Jeff Layton8e228132015-06-03 16:14:26 -04002130 * @xprt: transport to tag
2131 *
2132 * Drop a "swapper" reference to this xprt on behalf of the rpc_clnt. If the
2133 * swapper refcount goes to 0, untag the socket as a memalloc socket.
2134 */
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002135static void
2136xs_disable_swap(struct rpc_xprt *xprt)
Jeff Layton8e228132015-06-03 16:14:26 -04002137{
Jeff Laytond6e971d2015-06-03 16:14:28 -04002138 struct sock_xprt *xs = container_of(xprt, struct sock_xprt, xprt);
Jeff Layton8e228132015-06-03 16:14:26 -04002139
Jeff Laytond6e971d2015-06-03 16:14:28 -04002140 if (!atomic_dec_and_test(&xprt->swapper))
2141 return;
2142 if (wait_on_bit_lock(&xprt->state, XPRT_LOCKED, TASK_KILLABLE))
2143 return;
2144 if (xs->inet)
2145 sk_clear_memalloc(xs->inet);
2146 xprt_release_xprt(xprt, NULL);
Mel Gormana564b8f2012-07-31 16:45:12 -07002147}
Mel Gormana564b8f2012-07-31 16:45:12 -07002148#else
2149static void xs_set_memalloc(struct rpc_xprt *xprt)
2150{
2151}
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002152
2153static int
2154xs_enable_swap(struct rpc_xprt *xprt)
2155{
2156 return -EINVAL;
2157}
2158
2159static void
2160xs_disable_swap(struct rpc_xprt *xprt)
2161{
2162}
Mel Gormana564b8f2012-07-31 16:45:12 -07002163#endif
2164
Chuck Lever16be2d22007-08-06 11:57:38 -04002165static void xs_udp_finish_connecting(struct rpc_xprt *xprt, struct socket *sock)
Chuck Levera246b012005-08-11 16:25:23 -04002166{
Chuck Lever16be2d22007-08-06 11:57:38 -04002167 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Leveredb267a2006-08-22 20:06:18 -04002168
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002169 if (!transport->inet) {
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002170 struct sock *sk = sock->sk;
2171
2172 write_lock_bh(&sk->sk_callback_lock);
2173
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04002174 xs_save_old_callbacks(transport, sk);
2175
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002176 sk->sk_user_data = xprt;
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04002177 sk->sk_data_ready = xs_data_ready;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002178 sk->sk_write_space = xs_udp_write_space;
Eric Dumazetb44114572016-05-12 21:41:39 -07002179 sock_set_flag(sk, SOCK_FASYNC);
Trond Myklebustc2126152015-08-19 21:46:15 -05002180 sk->sk_allocation = GFP_NOIO;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002181
2182 xprt_set_connected(xprt);
2183
2184 /* Reset to new socket */
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002185 transport->sock = sock;
2186 transport->inet = sk;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002187
Mel Gormana564b8f2012-07-31 16:45:12 -07002188 xs_set_memalloc(xprt);
2189
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002190 write_unlock_bh(&sk->sk_callback_lock);
2191 }
Chuck Lever470056c2005-08-25 16:25:56 -07002192 xs_udp_do_set_buffer_size(xprt);
Trond Myklebust02910172016-08-04 00:00:33 -04002193
2194 xprt->stat.connect_start = jiffies;
Chuck Lever16be2d22007-08-06 11:57:38 -04002195}
2196
Pavel Emelyanov8c14ff22010-10-04 16:58:02 +04002197static void xs_udp_setup_socket(struct work_struct *work)
Chuck Levera246b012005-08-11 16:25:23 -04002198{
2199 struct sock_xprt *transport =
2200 container_of(work, struct sock_xprt, connect_worker.work);
2201 struct rpc_xprt *xprt = &transport->xprt;
2202 struct socket *sock = transport->sock;
Pavel Emelyanovb65c0312010-10-04 16:53:46 +04002203 int status = -EIO;
Chuck Levera246b012005-08-11 16:25:23 -04002204
Pavel Emelyanov8c14ff22010-10-04 16:58:02 +04002205 sock = xs_create_sock(xprt, transport,
Trond Myklebust4dda9c82015-02-08 15:00:06 -05002206 xs_addr(xprt)->sa_family, SOCK_DGRAM,
2207 IPPROTO_UDP, false);
Pavel Emelyanovb65c0312010-10-04 16:53:46 +04002208 if (IS_ERR(sock))
Chuck Levera246b012005-08-11 16:25:23 -04002209 goto out;
Chuck Lever68e220b2007-08-06 11:57:48 -04002210
Chuck Leverc740eff2009-08-09 15:09:46 -04002211 dprintk("RPC: worker connecting xprt %p via %s to "
2212 "%s (port %s)\n", xprt,
2213 xprt->address_strings[RPC_DISPLAY_PROTO],
2214 xprt->address_strings[RPC_DISPLAY_ADDR],
2215 xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever68e220b2007-08-06 11:57:48 -04002216
2217 xs_udp_finish_connecting(xprt, sock);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04002218 trace_rpc_socket_connect(xprt, sock, 0);
Chuck Levera246b012005-08-11 16:25:23 -04002219 status = 0;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002220out:
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002221 xprt_unlock_connect(xprt, transport);
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002222 xprt_clear_connecting(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002223 xprt_wake_pending_tasks(xprt, status);
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002224}
2225
Trond Myklebust4876cc72015-06-19 16:17:57 -04002226/**
2227 * xs_tcp_shutdown - gracefully shut down a TCP socket
2228 * @xprt: transport
2229 *
2230 * Initiates a graceful shutdown of the TCP socket by calling the
2231 * equivalent of shutdown(SHUT_RDWR);
2232 */
2233static void xs_tcp_shutdown(struct rpc_xprt *xprt)
2234{
2235 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
2236 struct socket *sock = transport->sock;
2237
2238 if (sock == NULL)
2239 return;
2240 if (xprt_connected(xprt)) {
2241 kernel_sock_shutdown(sock, SHUT_RDWR);
2242 trace_rpc_socket_shutdown(xprt, sock);
2243 } else
2244 xs_reset_transport(transport);
2245}
2246
Trond Myklebust8d1b8c62017-02-08 11:17:53 -05002247static void xs_tcp_set_socket_timeouts(struct rpc_xprt *xprt,
2248 struct socket *sock)
2249{
Trond Myklebust7196dbb2017-02-08 11:17:54 -05002250 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
2251 unsigned int keepidle;
2252 unsigned int keepcnt;
Trond Myklebust8d1b8c62017-02-08 11:17:53 -05002253 unsigned int opt_on = 1;
2254 unsigned int timeo;
2255
Trond Myklebust7196dbb2017-02-08 11:17:54 -05002256 spin_lock_bh(&xprt->transport_lock);
2257 keepidle = DIV_ROUND_UP(xprt->timeout->to_initval, HZ);
2258 keepcnt = xprt->timeout->to_retries + 1;
2259 timeo = jiffies_to_msecs(xprt->timeout->to_initval) *
2260 (xprt->timeout->to_retries + 1);
2261 clear_bit(XPRT_SOCK_UPD_TIMEOUT, &transport->sock_state);
2262 spin_unlock_bh(&xprt->transport_lock);
2263
Trond Myklebust8d1b8c62017-02-08 11:17:53 -05002264 /* TCP Keepalive options */
2265 kernel_setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE,
2266 (char *)&opt_on, sizeof(opt_on));
2267 kernel_setsockopt(sock, SOL_TCP, TCP_KEEPIDLE,
2268 (char *)&keepidle, sizeof(keepidle));
2269 kernel_setsockopt(sock, SOL_TCP, TCP_KEEPINTVL,
2270 (char *)&keepidle, sizeof(keepidle));
2271 kernel_setsockopt(sock, SOL_TCP, TCP_KEEPCNT,
2272 (char *)&keepcnt, sizeof(keepcnt));
2273
2274 /* TCP user timeout (see RFC5482) */
Trond Myklebust8d1b8c62017-02-08 11:17:53 -05002275 kernel_setsockopt(sock, SOL_TCP, TCP_USER_TIMEOUT,
2276 (char *)&timeo, sizeof(timeo));
2277}
2278
Trond Myklebust7196dbb2017-02-08 11:17:54 -05002279static void xs_tcp_set_connect_timeout(struct rpc_xprt *xprt,
2280 unsigned long connect_timeout,
2281 unsigned long reconnect_timeout)
2282{
2283 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
2284 struct rpc_timeout to;
2285 unsigned long initval;
2286
2287 spin_lock_bh(&xprt->transport_lock);
2288 if (reconnect_timeout < xprt->max_reconnect_timeout)
2289 xprt->max_reconnect_timeout = reconnect_timeout;
2290 if (connect_timeout < xprt->connect_timeout) {
2291 memcpy(&to, xprt->timeout, sizeof(to));
2292 initval = DIV_ROUND_UP(connect_timeout, to.to_retries + 1);
2293 /* Arbitrary lower limit */
2294 if (initval < XS_TCP_INIT_REEST_TO << 1)
2295 initval = XS_TCP_INIT_REEST_TO << 1;
2296 to.to_initval = initval;
2297 to.to_maxval = initval;
2298 memcpy(&transport->tcp_timeout, &to,
2299 sizeof(transport->tcp_timeout));
2300 xprt->timeout = &transport->tcp_timeout;
2301 xprt->connect_timeout = connect_timeout;
2302 }
2303 set_bit(XPRT_SOCK_UPD_TIMEOUT, &transport->sock_state);
2304 spin_unlock_bh(&xprt->transport_lock);
2305}
2306
Chuck Lever16be2d22007-08-06 11:57:38 -04002307static int xs_tcp_finish_connecting(struct rpc_xprt *xprt, struct socket *sock)
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002308{
Chuck Lever16be2d22007-08-06 11:57:38 -04002309 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebustfe19a962011-03-18 20:21:23 -04002310 int ret = -ENOTCONN;
Chuck Leveredb267a2006-08-22 20:06:18 -04002311
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002312 if (!transport->inet) {
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002313 struct sock *sk = sock->sk;
NeilBrownd88e4d82016-08-04 16:24:28 +10002314 unsigned int addr_pref = IPV6_PREFER_SRC_PUBLIC;
Trond Myklebust7f260e82013-09-24 11:25:22 -04002315
NeilBrownd88e4d82016-08-04 16:24:28 +10002316 /* Avoid temporary address, they are bad for long-lived
2317 * connections such as NFS mounts.
2318 * RFC4941, section 3.6 suggests that:
2319 * Individual applications, which have specific
2320 * knowledge about the normal duration of connections,
2321 * MAY override this as appropriate.
2322 */
2323 kernel_setsockopt(sock, SOL_IPV6, IPV6_ADDR_PREFERENCES,
2324 (char *)&addr_pref, sizeof(addr_pref));
2325
Trond Myklebust8d1b8c62017-02-08 11:17:53 -05002326 xs_tcp_set_socket_timeouts(xprt, sock);
Trond Myklebust775f06a2015-06-20 15:31:54 -04002327
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002328 write_lock_bh(&sk->sk_callback_lock);
2329
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04002330 xs_save_old_callbacks(transport, sk);
2331
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002332 sk->sk_user_data = xprt;
Trond Myklebust5157b952016-05-29 10:13:24 -04002333 sk->sk_data_ready = xs_data_ready;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002334 sk->sk_state_change = xs_tcp_state_change;
2335 sk->sk_write_space = xs_tcp_write_space;
Eric Dumazetb44114572016-05-12 21:41:39 -07002336 sock_set_flag(sk, SOCK_FASYNC);
Trond Myklebust21180712013-12-31 13:22:59 -05002337 sk->sk_error_report = xs_error_report;
Trond Myklebustc2126152015-08-19 21:46:15 -05002338 sk->sk_allocation = GFP_NOIO;
Chuck Lever3167e122005-08-25 16:25:55 -07002339
2340 /* socket options */
Chuck Lever3167e122005-08-25 16:25:55 -07002341 sock_reset_flag(sk, SOCK_LINGER);
Chuck Lever3167e122005-08-25 16:25:55 -07002342 tcp_sk(sk)->nonagle |= TCP_NAGLE_OFF;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002343
2344 xprt_clear_connected(xprt);
2345
2346 /* Reset to new socket */
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002347 transport->sock = sock;
2348 transport->inet = sk;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002349
2350 write_unlock_bh(&sk->sk_callback_lock);
2351 }
2352
Trond Myklebust01d37c42009-03-11 14:09:39 -04002353 if (!xprt_bound(xprt))
Trond Myklebustfe19a962011-03-18 20:21:23 -04002354 goto out;
Trond Myklebust01d37c42009-03-11 14:09:39 -04002355
Mel Gormana564b8f2012-07-31 16:45:12 -07002356 xs_set_memalloc(xprt);
2357
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002358 /* Tell the socket layer to start connecting... */
Chuck Lever262ca072006-03-20 13:44:16 -05002359 xprt->stat.connect_count++;
2360 xprt->stat.connect_start = jiffies;
Trond Myklebust0fdea1e2015-09-16 23:43:17 -04002361 set_bit(XPRT_SOCK_CONNECTING, &transport->sock_state);
Trond Myklebustfe19a962011-03-18 20:21:23 -04002362 ret = kernel_connect(sock, xs_addr(xprt), xprt->addrlen, O_NONBLOCK);
2363 switch (ret) {
2364 case 0:
Trond Myklebust4dda9c82015-02-08 15:00:06 -05002365 xs_set_srcport(transport, sock);
Trond Myklebustfe19a962011-03-18 20:21:23 -04002366 case -EINPROGRESS:
2367 /* SYN_SENT! */
Trond Myklebustfe19a962011-03-18 20:21:23 -04002368 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
2369 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
Trond Myklebust1f4c17a2016-08-01 13:36:08 -04002370 break;
2371 case -EADDRNOTAVAIL:
2372 /* Source port number is unavailable. Try a new one! */
2373 transport->srcport = 0;
Trond Myklebustfe19a962011-03-18 20:21:23 -04002374 }
2375out:
2376 return ret;
Chuck Lever16be2d22007-08-06 11:57:38 -04002377}
2378
2379/**
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002380 * xs_tcp_setup_socket - create a TCP socket and connect to a remote endpoint
Chuck Lever16be2d22007-08-06 11:57:38 -04002381 *
2382 * Invoked by a work queue tasklet.
2383 */
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002384static void xs_tcp_setup_socket(struct work_struct *work)
Chuck Lever16be2d22007-08-06 11:57:38 -04002385{
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002386 struct sock_xprt *transport =
2387 container_of(work, struct sock_xprt, connect_worker.work);
Chuck Lever16be2d22007-08-06 11:57:38 -04002388 struct socket *sock = transport->sock;
Pavel Emelyanova9f5f0f2010-10-04 16:52:25 +04002389 struct rpc_xprt *xprt = &transport->xprt;
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002390 int status = -EIO;
Chuck Lever16be2d22007-08-06 11:57:38 -04002391
Chuck Lever16be2d22007-08-06 11:57:38 -04002392 if (!sock) {
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002393 sock = xs_create_sock(xprt, transport,
Trond Myklebust4dda9c82015-02-08 15:00:06 -05002394 xs_addr(xprt)->sa_family, SOCK_STREAM,
2395 IPPROTO_TCP, true);
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002396 if (IS_ERR(sock)) {
2397 status = PTR_ERR(sock);
Chuck Lever16be2d22007-08-06 11:57:38 -04002398 goto out;
2399 }
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002400 }
2401
Chuck Leverc740eff2009-08-09 15:09:46 -04002402 dprintk("RPC: worker connecting xprt %p via %s to "
2403 "%s (port %s)\n", xprt,
2404 xprt->address_strings[RPC_DISPLAY_PROTO],
2405 xprt->address_strings[RPC_DISPLAY_ADDR],
2406 xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever16be2d22007-08-06 11:57:38 -04002407
2408 status = xs_tcp_finish_connecting(xprt, sock);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04002409 trace_rpc_socket_connect(xprt, sock, status);
Chuck Lever46121cf2007-01-31 12:14:08 -05002410 dprintk("RPC: %p connect status %d connected %d sock state %d\n",
2411 xprt, -status, xprt_connected(xprt),
2412 sock->sk->sk_state);
Trond Myklebust2a491992009-03-11 14:38:00 -04002413 switch (status) {
Trond Myklebustf75e6742009-04-21 17:18:20 -04002414 default:
2415 printk("%s: connect returned unhandled error %d\n",
2416 __func__, status);
2417 case -EADDRNOTAVAIL:
2418 /* We're probably in TIME_WAIT. Get rid of existing socket,
2419 * and retry
2420 */
Trond Myklebusta519fc72012-09-12 16:49:15 -04002421 xs_tcp_force_close(xprt);
Trond Myklebust88b5ed72009-06-17 13:22:57 -07002422 break;
Trond Myklebust2a491992009-03-11 14:38:00 -04002423 case 0:
2424 case -EINPROGRESS:
2425 case -EALREADY:
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002426 xprt_unlock_connect(xprt, transport);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002427 return;
Trond Myklebust9fcfe0c2010-03-02 13:06:21 -05002428 case -EINVAL:
2429 /* Happens, for instance, if the user specified a link
2430 * local IPv6 address without a scope-id.
2431 */
Trond Myklebust3ed5e2a2013-03-04 17:29:33 -05002432 case -ECONNREFUSED:
2433 case -ECONNRESET:
2434 case -ENETUNREACH:
Trond Myklebust3913c782015-02-08 21:44:04 -05002435 case -EADDRINUSE:
Trond Myklebust3601c4a2014-06-30 13:42:19 -04002436 case -ENOBUFS:
NeilBrown6ea44ad2017-05-25 17:00:32 +10002437 /*
2438 * xs_tcp_force_close() wakes tasks with -EIO.
2439 * We need to wake them first to ensure the
2440 * correct error code.
2441 */
2442 xprt_wake_pending_tasks(xprt, status);
Trond Myklebust4efdd922015-02-08 15:34:28 -05002443 xs_tcp_force_close(xprt);
Trond Myklebust9fcfe0c2010-03-02 13:06:21 -05002444 goto out;
Chuck Levera246b012005-08-11 16:25:23 -04002445 }
Trond Myklebust2a491992009-03-11 14:38:00 -04002446 status = -EAGAIN;
Chuck Levera246b012005-08-11 16:25:23 -04002447out:
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002448 xprt_unlock_connect(xprt, transport);
Chuck Lever2226feb2005-08-11 16:25:38 -04002449 xprt_clear_connecting(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002450 xprt_wake_pending_tasks(xprt, status);
Chuck Levera246b012005-08-11 16:25:23 -04002451}
2452
Trond Myklebust02910172016-08-04 00:00:33 -04002453static unsigned long xs_reconnect_delay(const struct rpc_xprt *xprt)
2454{
2455 unsigned long start, now = jiffies;
2456
2457 start = xprt->stat.connect_start + xprt->reestablish_timeout;
2458 if (time_after(start, now))
2459 return start - now;
2460 return 0;
2461}
2462
Trond Myklebust3851f1c2016-08-04 00:08:45 -04002463static void xs_reconnect_backoff(struct rpc_xprt *xprt)
2464{
2465 xprt->reestablish_timeout <<= 1;
2466 if (xprt->reestablish_timeout > xprt->max_reconnect_timeout)
2467 xprt->reestablish_timeout = xprt->max_reconnect_timeout;
2468 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
2469 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
2470}
2471
Chuck Lever68e220b2007-08-06 11:57:48 -04002472/**
Chuck Lever9903cd12005-08-11 16:25:26 -04002473 * xs_connect - connect a socket to a remote endpoint
Trond Myklebust1b092092013-01-08 09:26:49 -05002474 * @xprt: pointer to transport structure
Chuck Lever9903cd12005-08-11 16:25:26 -04002475 * @task: address of RPC task that manages state of connect request
2476 *
2477 * TCP: If the remote end dropped the connection, delay reconnecting.
Chuck Lever03bf4b72005-08-25 16:25:55 -07002478 *
2479 * UDP socket connects are synchronous, but we use a work queue anyway
2480 * to guarantee that even unprivileged user processes can set up a
2481 * socket on a privileged port.
2482 *
2483 * If a UDP socket connect fails, the delay behavior here prevents
2484 * retry floods (hard mounts).
Chuck Lever9903cd12005-08-11 16:25:26 -04002485 */
Trond Myklebust1b092092013-01-08 09:26:49 -05002486static void xs_connect(struct rpc_xprt *xprt, struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -04002487{
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002488 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebust02910172016-08-04 00:00:33 -04002489 unsigned long delay = 0;
Chuck Levera246b012005-08-11 16:25:23 -04002490
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002491 WARN_ON_ONCE(!xprt_lock_connect(xprt, task, transport));
2492
Trond Myklebust99b1a4c2015-08-13 15:33:51 -04002493 if (transport->sock != NULL) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002494 dprintk("RPC: xs_connect delayed xprt %p for %lu "
2495 "seconds\n",
Chuck Lever03bf4b72005-08-25 16:25:55 -07002496 xprt, xprt->reestablish_timeout / HZ);
Trond Myklebust99b1a4c2015-08-13 15:33:51 -04002497
2498 /* Start by resetting any existing state */
2499 xs_reset_transport(transport);
2500
Trond Myklebust02910172016-08-04 00:00:33 -04002501 delay = xs_reconnect_delay(xprt);
Trond Myklebust3851f1c2016-08-04 00:08:45 -04002502 xs_reconnect_backoff(xprt);
Trond Myklebust02910172016-08-04 00:00:33 -04002503
Trond Myklebust02910172016-08-04 00:00:33 -04002504 } else
Chuck Lever46121cf2007-01-31 12:14:08 -05002505 dprintk("RPC: xs_connect scheduled xprt %p\n", xprt);
Trond Myklebust02910172016-08-04 00:00:33 -04002506
2507 queue_delayed_work(xprtiod_workqueue,
2508 &transport->connect_worker,
2509 delay);
Chuck Levera246b012005-08-11 16:25:23 -04002510}
2511
Chuck Lever262ca072006-03-20 13:44:16 -05002512/**
Chuck Lever176e21e2011-05-09 15:22:44 -04002513 * xs_local_print_stats - display AF_LOCAL socket-specifc stats
2514 * @xprt: rpc_xprt struct containing statistics
2515 * @seq: output file
2516 *
2517 */
2518static void xs_local_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2519{
2520 long idle_time = 0;
2521
2522 if (xprt_connected(xprt))
2523 idle_time = (long)(jiffies - xprt->last_used) / HZ;
2524
2525 seq_printf(seq, "\txprt:\tlocal %lu %lu %lu %ld %lu %lu %lu "
Andy Adamson15a45202012-02-14 16:19:18 -05002526 "%llu %llu %lu %llu %llu\n",
Chuck Lever176e21e2011-05-09 15:22:44 -04002527 xprt->stat.bind_count,
2528 xprt->stat.connect_count,
2529 xprt->stat.connect_time,
2530 idle_time,
2531 xprt->stat.sends,
2532 xprt->stat.recvs,
2533 xprt->stat.bad_xids,
2534 xprt->stat.req_u,
Andy Adamson15a45202012-02-14 16:19:18 -05002535 xprt->stat.bklog_u,
2536 xprt->stat.max_slots,
2537 xprt->stat.sending_u,
2538 xprt->stat.pending_u);
Chuck Lever176e21e2011-05-09 15:22:44 -04002539}
2540
2541/**
Chuck Lever262ca072006-03-20 13:44:16 -05002542 * xs_udp_print_stats - display UDP socket-specifc stats
2543 * @xprt: rpc_xprt struct containing statistics
2544 * @seq: output file
2545 *
2546 */
2547static void xs_udp_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2548{
Chuck Leverc8475462006-12-05 16:35:26 -05002549 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
2550
Andy Adamson15a45202012-02-14 16:19:18 -05002551 seq_printf(seq, "\txprt:\tudp %u %lu %lu %lu %lu %llu %llu "
2552 "%lu %llu %llu\n",
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002553 transport->srcport,
Chuck Lever262ca072006-03-20 13:44:16 -05002554 xprt->stat.bind_count,
2555 xprt->stat.sends,
2556 xprt->stat.recvs,
2557 xprt->stat.bad_xids,
2558 xprt->stat.req_u,
Andy Adamson15a45202012-02-14 16:19:18 -05002559 xprt->stat.bklog_u,
2560 xprt->stat.max_slots,
2561 xprt->stat.sending_u,
2562 xprt->stat.pending_u);
Chuck Lever262ca072006-03-20 13:44:16 -05002563}
2564
2565/**
2566 * xs_tcp_print_stats - display TCP socket-specifc stats
2567 * @xprt: rpc_xprt struct containing statistics
2568 * @seq: output file
2569 *
2570 */
2571static void xs_tcp_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2572{
Chuck Leverc8475462006-12-05 16:35:26 -05002573 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262ca072006-03-20 13:44:16 -05002574 long idle_time = 0;
2575
2576 if (xprt_connected(xprt))
2577 idle_time = (long)(jiffies - xprt->last_used) / HZ;
2578
Andy Adamson15a45202012-02-14 16:19:18 -05002579 seq_printf(seq, "\txprt:\ttcp %u %lu %lu %lu %ld %lu %lu %lu "
2580 "%llu %llu %lu %llu %llu\n",
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002581 transport->srcport,
Chuck Lever262ca072006-03-20 13:44:16 -05002582 xprt->stat.bind_count,
2583 xprt->stat.connect_count,
2584 xprt->stat.connect_time,
2585 idle_time,
2586 xprt->stat.sends,
2587 xprt->stat.recvs,
2588 xprt->stat.bad_xids,
2589 xprt->stat.req_u,
Andy Adamson15a45202012-02-14 16:19:18 -05002590 xprt->stat.bklog_u,
2591 xprt->stat.max_slots,
2592 xprt->stat.sending_u,
2593 xprt->stat.pending_u);
Chuck Lever262ca072006-03-20 13:44:16 -05002594}
2595
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002596/*
2597 * Allocate a bunch of pages for a scratch buffer for the rpc code. The reason
2598 * we allocate pages instead doing a kmalloc like rpc_malloc is because we want
2599 * to use the server side send routines.
2600 */
Chuck Lever5fe6eaa2016-09-15 10:55:20 -04002601static int bc_malloc(struct rpc_task *task)
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002602{
Chuck Lever5fe6eaa2016-09-15 10:55:20 -04002603 struct rpc_rqst *rqst = task->tk_rqstp;
2604 size_t size = rqst->rq_callsize;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002605 struct page *page;
2606 struct rpc_buffer *buf;
2607
Chuck Lever5fe6eaa2016-09-15 10:55:20 -04002608 if (size > PAGE_SIZE - sizeof(struct rpc_buffer)) {
2609 WARN_ONCE(1, "xprtsock: large bc buffer request (size %zu)\n",
2610 size);
2611 return -EINVAL;
2612 }
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002613
Weston Andros Adamsonb8a13d02012-10-23 10:43:43 -04002614 page = alloc_page(GFP_KERNEL);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002615 if (!page)
Chuck Lever5fe6eaa2016-09-15 10:55:20 -04002616 return -ENOMEM;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002617
2618 buf = page_address(page);
2619 buf->len = PAGE_SIZE;
2620
Chuck Lever5fe6eaa2016-09-15 10:55:20 -04002621 rqst->rq_buffer = buf->data;
Jeff Layton18e601d2016-10-24 20:33:23 -04002622 rqst->rq_rbuffer = (char *)rqst->rq_buffer + rqst->rq_callsize;
Chuck Lever5fe6eaa2016-09-15 10:55:20 -04002623 return 0;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002624}
2625
2626/*
2627 * Free the space allocated in the bc_alloc routine
2628 */
Chuck Lever3435c742016-09-15 10:55:29 -04002629static void bc_free(struct rpc_task *task)
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002630{
Chuck Lever3435c742016-09-15 10:55:29 -04002631 void *buffer = task->tk_rqstp->rq_buffer;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002632 struct rpc_buffer *buf;
2633
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002634 buf = container_of(buffer, struct rpc_buffer, data);
2635 free_page((unsigned long)buf);
2636}
2637
2638/*
2639 * Use the svc_sock to send the callback. Must be called with svsk->sk_mutex
2640 * held. Borrows heavily from svc_tcp_sendto and xs_tcp_send_request.
2641 */
2642static int bc_sendto(struct rpc_rqst *req)
2643{
2644 int len;
2645 struct xdr_buf *xbufp = &req->rq_snd_buf;
2646 struct rpc_xprt *xprt = req->rq_xprt;
2647 struct sock_xprt *transport =
2648 container_of(xprt, struct sock_xprt, xprt);
2649 struct socket *sock = transport->sock;
2650 unsigned long headoff;
2651 unsigned long tailoff;
2652
Chuck Lever61677ee2011-05-09 15:22:34 -04002653 xs_encode_stream_record_marker(xbufp);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002654
2655 tailoff = (unsigned long)xbufp->tail[0].iov_base & ~PAGE_MASK;
2656 headoff = (unsigned long)xbufp->head[0].iov_base & ~PAGE_MASK;
2657 len = svc_send_common(sock, xbufp,
2658 virt_to_page(xbufp->head[0].iov_base), headoff,
2659 xbufp->tail[0].iov_base, tailoff);
2660
2661 if (len != xbufp->len) {
2662 printk(KERN_NOTICE "Error sending entire callback!\n");
2663 len = -EAGAIN;
2664 }
2665
2666 return len;
2667}
2668
2669/*
2670 * The send routine. Borrows from svc_send
2671 */
2672static int bc_send_request(struct rpc_task *task)
2673{
2674 struct rpc_rqst *req = task->tk_rqstp;
2675 struct svc_xprt *xprt;
Andrzej Hajda7fc56132015-09-24 16:00:09 +02002676 int len;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002677
2678 dprintk("sending request with xid: %08x\n", ntohl(req->rq_xid));
2679 /*
2680 * Get the server socket associated with this callback xprt
2681 */
2682 xprt = req->rq_xprt->bc_xprt;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002683
2684 /*
2685 * Grab the mutex to serialize data as the connection is shared
2686 * with the fore channel
2687 */
2688 if (!mutex_trylock(&xprt->xpt_mutex)) {
2689 rpc_sleep_on(&xprt->xpt_bc_pending, task, NULL);
2690 if (!mutex_trylock(&xprt->xpt_mutex))
2691 return -EAGAIN;
2692 rpc_wake_up_queued_task(&xprt->xpt_bc_pending, task);
2693 }
2694 if (test_bit(XPT_DEAD, &xprt->xpt_flags))
2695 len = -ENOTCONN;
2696 else
2697 len = bc_sendto(req);
2698 mutex_unlock(&xprt->xpt_mutex);
2699
2700 if (len > 0)
2701 len = 0;
2702
2703 return len;
2704}
2705
2706/*
2707 * The close routine. Since this is client initiated, we do nothing
2708 */
2709
2710static void bc_close(struct rpc_xprt *xprt)
2711{
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002712}
2713
2714/*
2715 * The xprt destroy routine. Again, because this connection is client
2716 * initiated, we do nothing
2717 */
2718
2719static void bc_destroy(struct rpc_xprt *xprt)
2720{
Kinglong Mee47f72ef2014-03-24 11:58:16 +08002721 dprintk("RPC: bc_destroy xprt %p\n", xprt);
2722
2723 xs_xprt_free(xprt);
2724 module_put(THIS_MODULE);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002725}
2726
Chuck Lever176e21e2011-05-09 15:22:44 -04002727static struct rpc_xprt_ops xs_local_ops = {
2728 .reserve_xprt = xprt_reserve_xprt,
2729 .release_xprt = xs_tcp_release_xprt,
Trond Myklebustf39c1bf2012-09-07 11:08:50 -04002730 .alloc_slot = xprt_alloc_slot,
Chuck Lever176e21e2011-05-09 15:22:44 -04002731 .rpcbind = xs_local_rpcbind,
2732 .set_port = xs_local_set_port,
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05002733 .connect = xs_local_connect,
Chuck Lever176e21e2011-05-09 15:22:44 -04002734 .buf_alloc = rpc_malloc,
2735 .buf_free = rpc_free,
2736 .send_request = xs_local_send_request,
2737 .set_retrans_timeout = xprt_set_retrans_timeout_def,
2738 .close = xs_close,
Trond Myklebusta1311d82013-10-31 09:18:49 -04002739 .destroy = xs_destroy,
Chuck Lever176e21e2011-05-09 15:22:44 -04002740 .print_stats = xs_local_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002741 .enable_swap = xs_enable_swap,
2742 .disable_swap = xs_disable_swap,
Chuck Lever176e21e2011-05-09 15:22:44 -04002743};
2744
Chuck Lever262965f2005-08-11 16:25:56 -04002745static struct rpc_xprt_ops xs_udp_ops = {
Chuck Lever43118c22005-08-25 16:25:49 -07002746 .set_buffer_size = xs_udp_set_buffer_size,
Chuck Lever12a80462005-08-25 16:25:51 -07002747 .reserve_xprt = xprt_reserve_xprt_cong,
Chuck Lever49e9a892005-08-25 16:25:51 -07002748 .release_xprt = xprt_release_xprt_cong,
Trond Myklebustf39c1bf2012-09-07 11:08:50 -04002749 .alloc_slot = xprt_alloc_slot,
Chuck Lever45160d62007-07-01 12:13:17 -04002750 .rpcbind = rpcb_getport_async,
Chuck Lever92200412006-01-03 09:55:51 +01002751 .set_port = xs_set_port,
Chuck Lever9903cd12005-08-11 16:25:26 -04002752 .connect = xs_connect,
Chuck Lever02107142006-01-03 09:55:49 +01002753 .buf_alloc = rpc_malloc,
2754 .buf_free = rpc_free,
Chuck Lever262965f2005-08-11 16:25:56 -04002755 .send_request = xs_udp_send_request,
Chuck Leverfe3aca22005-08-25 16:25:50 -07002756 .set_retrans_timeout = xprt_set_retrans_timeout_rtt,
Chuck Lever46c0ee82005-08-25 16:25:52 -07002757 .timer = xs_udp_timer,
Chuck Levera58dd392005-08-25 16:25:53 -07002758 .release_request = xprt_release_rqst_cong,
Chuck Lever262965f2005-08-11 16:25:56 -04002759 .close = xs_close,
2760 .destroy = xs_destroy,
Chuck Lever262ca072006-03-20 13:44:16 -05002761 .print_stats = xs_udp_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002762 .enable_swap = xs_enable_swap,
2763 .disable_swap = xs_disable_swap,
Chuck Lever4a068252015-05-11 14:02:25 -04002764 .inject_disconnect = xs_inject_disconnect,
Chuck Lever262965f2005-08-11 16:25:56 -04002765};
2766
2767static struct rpc_xprt_ops xs_tcp_ops = {
Chuck Lever12a80462005-08-25 16:25:51 -07002768 .reserve_xprt = xprt_reserve_xprt,
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04002769 .release_xprt = xs_tcp_release_xprt,
Trond Myklebustf39c1bf2012-09-07 11:08:50 -04002770 .alloc_slot = xprt_lock_and_alloc_slot,
Chuck Lever45160d62007-07-01 12:13:17 -04002771 .rpcbind = rpcb_getport_async,
Chuck Lever92200412006-01-03 09:55:51 +01002772 .set_port = xs_set_port,
Trond Myklebust0b9e7942010-04-16 16:41:57 -04002773 .connect = xs_connect,
Chuck Lever02107142006-01-03 09:55:49 +01002774 .buf_alloc = rpc_malloc,
2775 .buf_free = rpc_free,
Chuck Lever262965f2005-08-11 16:25:56 -04002776 .send_request = xs_tcp_send_request,
Chuck Leverfe3aca22005-08-25 16:25:50 -07002777 .set_retrans_timeout = xprt_set_retrans_timeout_def,
Trond Myklebustc627d312015-02-10 11:06:04 -05002778 .close = xs_tcp_shutdown,
Chuck Lever9903cd12005-08-11 16:25:26 -04002779 .destroy = xs_destroy,
Trond Myklebust7196dbb2017-02-08 11:17:54 -05002780 .set_connect_timeout = xs_tcp_set_connect_timeout,
Chuck Lever262ca072006-03-20 13:44:16 -05002781 .print_stats = xs_tcp_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002782 .enable_swap = xs_enable_swap,
2783 .disable_swap = xs_disable_swap,
Chuck Lever4a068252015-05-11 14:02:25 -04002784 .inject_disconnect = xs_inject_disconnect,
Chuck Lever42e5c3e2015-10-24 17:27:35 -04002785#ifdef CONFIG_SUNRPC_BACKCHANNEL
2786 .bc_setup = xprt_setup_bc,
Chuck Lever76566772015-10-24 17:28:32 -04002787 .bc_up = xs_tcp_bc_up,
Chuck Lever6b26cc82016-05-02 14:40:40 -04002788 .bc_maxpayload = xs_tcp_bc_maxpayload,
Chuck Lever42e5c3e2015-10-24 17:27:35 -04002789 .bc_free_rqst = xprt_free_bc_rqst,
2790 .bc_destroy = xprt_destroy_bc,
2791#endif
Chuck Levera246b012005-08-11 16:25:23 -04002792};
2793
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002794/*
2795 * The rpc_xprt_ops for the server backchannel
2796 */
2797
2798static struct rpc_xprt_ops bc_tcp_ops = {
2799 .reserve_xprt = xprt_reserve_xprt,
2800 .release_xprt = xprt_release_xprt,
Bryan Schumaker84e28a32012-09-24 13:39:01 -04002801 .alloc_slot = xprt_alloc_slot,
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002802 .buf_alloc = bc_malloc,
2803 .buf_free = bc_free,
2804 .send_request = bc_send_request,
2805 .set_retrans_timeout = xprt_set_retrans_timeout_def,
2806 .close = bc_close,
2807 .destroy = bc_destroy,
2808 .print_stats = xs_tcp_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002809 .enable_swap = xs_enable_swap,
2810 .disable_swap = xs_disable_swap,
Chuck Lever4a068252015-05-11 14:02:25 -04002811 .inject_disconnect = xs_inject_disconnect,
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002812};
2813
Chuck Lever92476852010-10-20 11:53:01 -04002814static int xs_init_anyaddr(const int family, struct sockaddr *sap)
2815{
2816 static const struct sockaddr_in sin = {
2817 .sin_family = AF_INET,
2818 .sin_addr.s_addr = htonl(INADDR_ANY),
2819 };
2820 static const struct sockaddr_in6 sin6 = {
2821 .sin6_family = AF_INET6,
2822 .sin6_addr = IN6ADDR_ANY_INIT,
2823 };
2824
2825 switch (family) {
Chuck Lever176e21e2011-05-09 15:22:44 -04002826 case AF_LOCAL:
2827 break;
Chuck Lever92476852010-10-20 11:53:01 -04002828 case AF_INET:
2829 memcpy(sap, &sin, sizeof(sin));
2830 break;
2831 case AF_INET6:
2832 memcpy(sap, &sin6, sizeof(sin6));
2833 break;
2834 default:
2835 dprintk("RPC: %s: Bad address family\n", __func__);
2836 return -EAFNOSUPPORT;
2837 }
2838 return 0;
2839}
2840
\"Talpey, Thomas\3c341b0b2007-09-10 13:47:07 -04002841static struct rpc_xprt *xs_setup_xprt(struct xprt_create *args,
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002842 unsigned int slot_table_size,
2843 unsigned int max_slot_table_size)
Chuck Leverc8541ec2006-10-17 14:44:27 -04002844{
2845 struct rpc_xprt *xprt;
Chuck Leverffc2e512006-12-05 16:35:11 -05002846 struct sock_xprt *new;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002847
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002848 if (args->addrlen > sizeof(xprt->addr)) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002849 dprintk("RPC: xs_setup_xprt: address too large\n");
Chuck Leverc8541ec2006-10-17 14:44:27 -04002850 return ERR_PTR(-EBADF);
2851 }
2852
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002853 xprt = xprt_alloc(args->net, sizeof(*new), slot_table_size,
2854 max_slot_table_size);
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +04002855 if (xprt == NULL) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002856 dprintk("RPC: xs_setup_xprt: couldn't allocate "
2857 "rpc_xprt\n");
Chuck Leverc8541ec2006-10-17 14:44:27 -04002858 return ERR_PTR(-ENOMEM);
2859 }
2860
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +04002861 new = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebustedc1b012015-10-05 10:53:49 -04002862 mutex_init(&new->recv_mutex);
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002863 memcpy(&xprt->addr, args->dstaddr, args->addrlen);
2864 xprt->addrlen = args->addrlen;
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +02002865 if (args->srcaddr)
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002866 memcpy(&new->srcaddr, args->srcaddr, args->addrlen);
Chuck Lever92476852010-10-20 11:53:01 -04002867 else {
2868 int err;
2869 err = xs_init_anyaddr(args->dstaddr->sa_family,
2870 (struct sockaddr *)&new->srcaddr);
Stanislav Kinsbursky2aa13532011-11-10 14:33:23 +03002871 if (err != 0) {
2872 xprt_free(xprt);
Chuck Lever92476852010-10-20 11:53:01 -04002873 return ERR_PTR(err);
Stanislav Kinsbursky2aa13532011-11-10 14:33:23 +03002874 }
Chuck Lever92476852010-10-20 11:53:01 -04002875 }
Chuck Leverc8541ec2006-10-17 14:44:27 -04002876
2877 return xprt;
2878}
2879
Chuck Lever176e21e2011-05-09 15:22:44 -04002880static const struct rpc_timeout xs_local_default_timeout = {
2881 .to_initval = 10 * HZ,
2882 .to_maxval = 10 * HZ,
2883 .to_retries = 2,
2884};
2885
2886/**
2887 * xs_setup_local - Set up transport to use an AF_LOCAL socket
2888 * @args: rpc transport creation arguments
2889 *
2890 * AF_LOCAL is a "tpi_cots_ord" transport, just like TCP
2891 */
2892static struct rpc_xprt *xs_setup_local(struct xprt_create *args)
2893{
2894 struct sockaddr_un *sun = (struct sockaddr_un *)args->dstaddr;
2895 struct sock_xprt *transport;
2896 struct rpc_xprt *xprt;
2897 struct rpc_xprt *ret;
2898
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002899 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries,
2900 xprt_max_tcp_slot_table_entries);
Chuck Lever176e21e2011-05-09 15:22:44 -04002901 if (IS_ERR(xprt))
2902 return xprt;
2903 transport = container_of(xprt, struct sock_xprt, xprt);
2904
2905 xprt->prot = 0;
2906 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
2907 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
2908
2909 xprt->bind_timeout = XS_BIND_TO;
2910 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
2911 xprt->idle_timeout = XS_IDLE_DISC_TO;
2912
2913 xprt->ops = &xs_local_ops;
2914 xprt->timeout = &xs_local_default_timeout;
2915
Trond Myklebusta2648092015-10-06 17:03:00 -04002916 INIT_WORK(&transport->recv_worker, xs_local_data_receive_workfn);
NeilBrown93dc41b2013-10-31 16:14:36 +11002917 INIT_DELAYED_WORK(&transport->connect_worker,
2918 xs_dummy_setup_socket);
2919
Chuck Lever176e21e2011-05-09 15:22:44 -04002920 switch (sun->sun_family) {
2921 case AF_LOCAL:
2922 if (sun->sun_path[0] != '/') {
2923 dprintk("RPC: bad AF_LOCAL address: %s\n",
2924 sun->sun_path);
2925 ret = ERR_PTR(-EINVAL);
2926 goto out_err;
2927 }
2928 xprt_set_bound(xprt);
Chuck Lever176e21e2011-05-09 15:22:44 -04002929 xs_format_peer_addresses(xprt, "local", RPCBIND_NETID_LOCAL);
J. Bruce Fields7073ea82013-02-21 10:14:22 -05002930 ret = ERR_PTR(xs_local_setup_socket(transport));
2931 if (ret)
2932 goto out_err;
Chuck Lever176e21e2011-05-09 15:22:44 -04002933 break;
2934 default:
2935 ret = ERR_PTR(-EAFNOSUPPORT);
2936 goto out_err;
2937 }
2938
2939 dprintk("RPC: set up xprt to %s via AF_LOCAL\n",
2940 xprt->address_strings[RPC_DISPLAY_ADDR]);
2941
2942 if (try_module_get(THIS_MODULE))
2943 return xprt;
2944 ret = ERR_PTR(-EINVAL);
2945out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08002946 xs_xprt_free(xprt);
Chuck Lever176e21e2011-05-09 15:22:44 -04002947 return ret;
2948}
2949
Trond Myklebust2881ae72007-12-20 16:03:54 -05002950static const struct rpc_timeout xs_udp_default_timeout = {
2951 .to_initval = 5 * HZ,
2952 .to_maxval = 30 * HZ,
2953 .to_increment = 5 * HZ,
2954 .to_retries = 5,
2955};
2956
Chuck Lever9903cd12005-08-11 16:25:26 -04002957/**
2958 * xs_setup_udp - Set up transport to use a UDP socket
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002959 * @args: rpc transport creation arguments
Chuck Lever9903cd12005-08-11 16:25:26 -04002960 *
2961 */
Adrian Bunk483066d2007-10-24 18:24:02 +02002962static struct rpc_xprt *xs_setup_udp(struct xprt_create *args)
Chuck Levera246b012005-08-11 16:25:23 -04002963{
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002964 struct sockaddr *addr = args->dstaddr;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002965 struct rpc_xprt *xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002966 struct sock_xprt *transport;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002967 struct rpc_xprt *ret;
Chuck Levera246b012005-08-11 16:25:23 -04002968
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002969 xprt = xs_setup_xprt(args, xprt_udp_slot_table_entries,
2970 xprt_udp_slot_table_entries);
Chuck Leverc8541ec2006-10-17 14:44:27 -04002971 if (IS_ERR(xprt))
2972 return xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002973 transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002974
Chuck Leverec739ef2006-08-22 20:06:15 -04002975 xprt->prot = IPPROTO_UDP;
Chuck Lever808012f2005-08-25 16:25:49 -07002976 xprt->tsh_size = 0;
Chuck Levera246b012005-08-11 16:25:23 -04002977 /* XXX: header size can vary due to auth type, IPv6, etc. */
2978 xprt->max_payload = (1U << 16) - (MAX_HEADER << 3);
2979
Chuck Lever03bf4b72005-08-25 16:25:55 -07002980 xprt->bind_timeout = XS_BIND_TO;
Chuck Lever03bf4b72005-08-25 16:25:55 -07002981 xprt->reestablish_timeout = XS_UDP_REEST_TO;
2982 xprt->idle_timeout = XS_IDLE_DISC_TO;
Chuck Levera246b012005-08-11 16:25:23 -04002983
Chuck Lever262965f2005-08-11 16:25:56 -04002984 xprt->ops = &xs_udp_ops;
Chuck Levera246b012005-08-11 16:25:23 -04002985
Trond Myklebustba7392b2007-12-20 16:03:55 -05002986 xprt->timeout = &xs_udp_default_timeout;
Chuck Levera246b012005-08-11 16:25:23 -04002987
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04002988 INIT_WORK(&transport->recv_worker, xs_udp_data_receive_workfn);
Trond Myklebustedc1b012015-10-05 10:53:49 -04002989 INIT_DELAYED_WORK(&transport->connect_worker, xs_udp_setup_socket);
2990
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002991 switch (addr->sa_family) {
2992 case AF_INET:
2993 if (((struct sockaddr_in *)addr)->sin_port != htons(0))
2994 xprt_set_bound(xprt);
2995
Chuck Lever9dc3b092009-08-09 15:09:46 -04002996 xs_format_peer_addresses(xprt, "udp", RPCBIND_NETID_UDP);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002997 break;
2998 case AF_INET6:
2999 if (((struct sockaddr_in6 *)addr)->sin6_port != htons(0))
3000 xprt_set_bound(xprt);
3001
Chuck Lever9dc3b092009-08-09 15:09:46 -04003002 xs_format_peer_addresses(xprt, "udp", RPCBIND_NETID_UDP6);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04003003 break;
3004 default:
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003005 ret = ERR_PTR(-EAFNOSUPPORT);
3006 goto out_err;
Chuck Lever8f9d5b12007-08-06 11:57:53 -04003007 }
3008
Chuck Leverc740eff2009-08-09 15:09:46 -04003009 if (xprt_bound(xprt))
3010 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
3011 xprt->address_strings[RPC_DISPLAY_ADDR],
3012 xprt->address_strings[RPC_DISPLAY_PORT],
3013 xprt->address_strings[RPC_DISPLAY_PROTO]);
3014 else
3015 dprintk("RPC: set up xprt to %s (autobind) via %s\n",
3016 xprt->address_strings[RPC_DISPLAY_ADDR],
3017 xprt->address_strings[RPC_DISPLAY_PROTO]);
Chuck Leveredb267a2006-08-22 20:06:18 -04003018
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003019 if (try_module_get(THIS_MODULE))
3020 return xprt;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003021 ret = ERR_PTR(-EINVAL);
3022out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08003023 xs_xprt_free(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003024 return ret;
Chuck Levera246b012005-08-11 16:25:23 -04003025}
3026
Trond Myklebust2881ae72007-12-20 16:03:54 -05003027static const struct rpc_timeout xs_tcp_default_timeout = {
3028 .to_initval = 60 * HZ,
3029 .to_maxval = 60 * HZ,
3030 .to_retries = 2,
3031};
3032
Chuck Lever9903cd12005-08-11 16:25:26 -04003033/**
3034 * xs_setup_tcp - Set up transport to use a TCP socket
Frank van Maarseveen96802a02007-07-08 13:08:54 +02003035 * @args: rpc transport creation arguments
Chuck Lever9903cd12005-08-11 16:25:26 -04003036 *
3037 */
Adrian Bunk483066d2007-10-24 18:24:02 +02003038static struct rpc_xprt *xs_setup_tcp(struct xprt_create *args)
Chuck Levera246b012005-08-11 16:25:23 -04003039{
Chuck Lever8f9d5b12007-08-06 11:57:53 -04003040 struct sockaddr *addr = args->dstaddr;
Chuck Leverc8541ec2006-10-17 14:44:27 -04003041 struct rpc_xprt *xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05003042 struct sock_xprt *transport;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003043 struct rpc_xprt *ret;
Trond Myklebustb7993ce2013-04-14 11:42:00 -04003044 unsigned int max_slot_table_size = xprt_max_tcp_slot_table_entries;
3045
3046 if (args->flags & XPRT_CREATE_INFINITE_SLOTS)
3047 max_slot_table_size = RPC_MAX_SLOT_TABLE_LIMIT;
Chuck Levera246b012005-08-11 16:25:23 -04003048
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003049 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries,
Trond Myklebustb7993ce2013-04-14 11:42:00 -04003050 max_slot_table_size);
Chuck Leverc8541ec2006-10-17 14:44:27 -04003051 if (IS_ERR(xprt))
3052 return xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05003053 transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04003054
Chuck Leverec739ef2006-08-22 20:06:15 -04003055 xprt->prot = IPPROTO_TCP;
Chuck Lever808012f2005-08-25 16:25:49 -07003056 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
Chuck Lever808012f2005-08-25 16:25:49 -07003057 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
Chuck Levera246b012005-08-11 16:25:23 -04003058
Chuck Lever03bf4b72005-08-25 16:25:55 -07003059 xprt->bind_timeout = XS_BIND_TO;
Chuck Lever03bf4b72005-08-25 16:25:55 -07003060 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
3061 xprt->idle_timeout = XS_IDLE_DISC_TO;
Chuck Levera246b012005-08-11 16:25:23 -04003062
Chuck Lever262965f2005-08-11 16:25:56 -04003063 xprt->ops = &xs_tcp_ops;
Trond Myklebustba7392b2007-12-20 16:03:55 -05003064 xprt->timeout = &xs_tcp_default_timeout;
Chuck Levera246b012005-08-11 16:25:23 -04003065
Trond Myklebust3851f1c2016-08-04 00:08:45 -04003066 xprt->max_reconnect_timeout = xprt->timeout->to_maxval;
Trond Myklebust7196dbb2017-02-08 11:17:54 -05003067 xprt->connect_timeout = xprt->timeout->to_initval *
3068 (xprt->timeout->to_retries + 1);
Trond Myklebust3851f1c2016-08-04 00:08:45 -04003069
Trond Myklebustedc1b012015-10-05 10:53:49 -04003070 INIT_WORK(&transport->recv_worker, xs_tcp_data_receive_workfn);
3071 INIT_DELAYED_WORK(&transport->connect_worker, xs_tcp_setup_socket);
3072
Chuck Lever8f9d5b12007-08-06 11:57:53 -04003073 switch (addr->sa_family) {
3074 case AF_INET:
3075 if (((struct sockaddr_in *)addr)->sin_port != htons(0))
3076 xprt_set_bound(xprt);
3077
Chuck Lever9dc3b092009-08-09 15:09:46 -04003078 xs_format_peer_addresses(xprt, "tcp", RPCBIND_NETID_TCP);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04003079 break;
3080 case AF_INET6:
3081 if (((struct sockaddr_in6 *)addr)->sin6_port != htons(0))
3082 xprt_set_bound(xprt);
3083
Chuck Lever9dc3b092009-08-09 15:09:46 -04003084 xs_format_peer_addresses(xprt, "tcp", RPCBIND_NETID_TCP6);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04003085 break;
3086 default:
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003087 ret = ERR_PTR(-EAFNOSUPPORT);
3088 goto out_err;
Chuck Lever8f9d5b12007-08-06 11:57:53 -04003089 }
3090
Chuck Leverc740eff2009-08-09 15:09:46 -04003091 if (xprt_bound(xprt))
3092 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
3093 xprt->address_strings[RPC_DISPLAY_ADDR],
3094 xprt->address_strings[RPC_DISPLAY_PORT],
3095 xprt->address_strings[RPC_DISPLAY_PROTO]);
3096 else
3097 dprintk("RPC: set up xprt to %s (autobind) via %s\n",
3098 xprt->address_strings[RPC_DISPLAY_ADDR],
3099 xprt->address_strings[RPC_DISPLAY_PROTO]);
3100
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003101 if (try_module_get(THIS_MODULE))
3102 return xprt;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003103 ret = ERR_PTR(-EINVAL);
3104out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08003105 xs_xprt_free(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003106 return ret;
Chuck Levera246b012005-08-11 16:25:23 -04003107}
Chuck Lever282b32e2006-12-05 16:35:51 -05003108
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003109/**
3110 * xs_setup_bc_tcp - Set up transport to use a TCP backchannel socket
3111 * @args: rpc transport creation arguments
3112 *
3113 */
3114static struct rpc_xprt *xs_setup_bc_tcp(struct xprt_create *args)
3115{
3116 struct sockaddr *addr = args->dstaddr;
3117 struct rpc_xprt *xprt;
3118 struct sock_xprt *transport;
3119 struct svc_sock *bc_sock;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003120 struct rpc_xprt *ret;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003121
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003122 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries,
3123 xprt_tcp_slot_table_entries);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003124 if (IS_ERR(xprt))
3125 return xprt;
3126 transport = container_of(xprt, struct sock_xprt, xprt);
3127
3128 xprt->prot = IPPROTO_TCP;
3129 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
3130 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
3131 xprt->timeout = &xs_tcp_default_timeout;
3132
3133 /* backchannel */
3134 xprt_set_bound(xprt);
3135 xprt->bind_timeout = 0;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003136 xprt->reestablish_timeout = 0;
3137 xprt->idle_timeout = 0;
3138
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003139 xprt->ops = &bc_tcp_ops;
3140
3141 switch (addr->sa_family) {
3142 case AF_INET:
3143 xs_format_peer_addresses(xprt, "tcp",
3144 RPCBIND_NETID_TCP);
3145 break;
3146 case AF_INET6:
3147 xs_format_peer_addresses(xprt, "tcp",
3148 RPCBIND_NETID_TCP6);
3149 break;
3150 default:
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003151 ret = ERR_PTR(-EAFNOSUPPORT);
3152 goto out_err;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003153 }
3154
Pavel Emelyanov50fa0d42010-10-05 20:49:35 +04003155 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
3156 xprt->address_strings[RPC_DISPLAY_ADDR],
3157 xprt->address_strings[RPC_DISPLAY_PORT],
3158 xprt->address_strings[RPC_DISPLAY_PROTO]);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003159
3160 /*
J. Bruce Fields99de8ea2010-12-08 12:45:44 -05003161 * Once we've associated a backchannel xprt with a connection,
Weng Meiling28303ca2013-11-30 17:56:44 +08003162 * we want to keep it around as long as the connection lasts,
3163 * in case we need to start using it for a backchannel again;
3164 * this reference won't be dropped until bc_xprt is destroyed.
J. Bruce Fields99de8ea2010-12-08 12:45:44 -05003165 */
3166 xprt_get(xprt);
3167 args->bc_xprt->xpt_bc_xprt = xprt;
3168 xprt->bc_xprt = args->bc_xprt;
3169 bc_sock = container_of(args->bc_xprt, struct svc_sock, sk_xprt);
3170 transport->sock = bc_sock->sk_sock;
3171 transport->inet = bc_sock->sk_sk;
3172
3173 /*
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003174 * Since we don't want connections for the backchannel, we set
3175 * the xprt status to connected
3176 */
3177 xprt_set_connected(xprt);
3178
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003179 if (try_module_get(THIS_MODULE))
3180 return xprt;
Kinglong Mee642aab52014-03-24 12:00:28 +08003181
3182 args->bc_xprt->xpt_bc_xprt = NULL;
J. Bruce Fields39a9bea2016-05-17 12:38:21 -04003183 args->bc_xprt->xpt_bc_xps = NULL;
J. Bruce Fields99de8ea2010-12-08 12:45:44 -05003184 xprt_put(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003185 ret = ERR_PTR(-EINVAL);
3186out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08003187 xs_xprt_free(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003188 return ret;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003189}
3190
Chuck Lever176e21e2011-05-09 15:22:44 -04003191static struct xprt_class xs_local_transport = {
3192 .list = LIST_HEAD_INIT(xs_local_transport.list),
3193 .name = "named UNIX socket",
3194 .owner = THIS_MODULE,
3195 .ident = XPRT_TRANSPORT_LOCAL,
3196 .setup = xs_setup_local,
3197};
3198
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003199static struct xprt_class xs_udp_transport = {
3200 .list = LIST_HEAD_INIT(xs_udp_transport.list),
3201 .name = "udp",
3202 .owner = THIS_MODULE,
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003203 .ident = XPRT_TRANSPORT_UDP,
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003204 .setup = xs_setup_udp,
3205};
3206
3207static struct xprt_class xs_tcp_transport = {
3208 .list = LIST_HEAD_INIT(xs_tcp_transport.list),
3209 .name = "tcp",
3210 .owner = THIS_MODULE,
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003211 .ident = XPRT_TRANSPORT_TCP,
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003212 .setup = xs_setup_tcp,
3213};
3214
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003215static struct xprt_class xs_bc_tcp_transport = {
3216 .list = LIST_HEAD_INIT(xs_bc_tcp_transport.list),
3217 .name = "tcp NFSv4.1 backchannel",
3218 .owner = THIS_MODULE,
3219 .ident = XPRT_TRANSPORT_BC_TCP,
3220 .setup = xs_setup_bc_tcp,
3221};
3222
Chuck Lever282b32e2006-12-05 16:35:51 -05003223/**
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003224 * init_socket_xprt - set up xprtsock's sysctls, register with RPC client
Chuck Lever282b32e2006-12-05 16:35:51 -05003225 *
3226 */
3227int init_socket_xprt(void)
3228{
Jeff Laytonf895b252014-11-17 16:58:04 -05003229#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Eric W. Biederman2b1bec52007-02-14 00:33:24 -08003230 if (!sunrpc_table_header)
Eric W. Biederman0b4d4142007-02-14 00:34:09 -08003231 sunrpc_table_header = register_sysctl_table(sunrpc_table);
Chuck Leverfbf76682006-12-05 16:35:54 -05003232#endif
3233
Chuck Lever176e21e2011-05-09 15:22:44 -04003234 xprt_register_transport(&xs_local_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003235 xprt_register_transport(&xs_udp_transport);
3236 xprt_register_transport(&xs_tcp_transport);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003237 xprt_register_transport(&xs_bc_tcp_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003238
Chuck Lever282b32e2006-12-05 16:35:51 -05003239 return 0;
3240}
3241
3242/**
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003243 * cleanup_socket_xprt - remove xprtsock's sysctls, unregister
Chuck Lever282b32e2006-12-05 16:35:51 -05003244 *
3245 */
3246void cleanup_socket_xprt(void)
3247{
Jeff Laytonf895b252014-11-17 16:58:04 -05003248#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Chuck Leverfbf76682006-12-05 16:35:54 -05003249 if (sunrpc_table_header) {
3250 unregister_sysctl_table(sunrpc_table_header);
3251 sunrpc_table_header = NULL;
3252 }
3253#endif
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003254
Chuck Lever176e21e2011-05-09 15:22:44 -04003255 xprt_unregister_transport(&xs_local_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003256 xprt_unregister_transport(&xs_udp_transport);
3257 xprt_unregister_transport(&xs_tcp_transport);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003258 xprt_unregister_transport(&xs_bc_tcp_transport);
Chuck Lever282b32e2006-12-05 16:35:51 -05003259}
Trond Myklebustcbf11072009-08-09 15:06:19 -04003260
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003261static int param_set_uint_minmax(const char *val,
3262 const struct kernel_param *kp,
Trond Myklebustcbf11072009-08-09 15:06:19 -04003263 unsigned int min, unsigned int max)
3264{
Daniel Walter00cfaa92014-06-21 13:06:38 +01003265 unsigned int num;
Trond Myklebustcbf11072009-08-09 15:06:19 -04003266 int ret;
3267
3268 if (!val)
3269 return -EINVAL;
Daniel Walter00cfaa92014-06-21 13:06:38 +01003270 ret = kstrtouint(val, 0, &num);
Dan Carpenter9761a242017-02-19 00:34:59 +03003271 if (ret)
3272 return ret;
3273 if (num < min || num > max)
Trond Myklebustcbf11072009-08-09 15:06:19 -04003274 return -EINVAL;
3275 *((unsigned int *)kp->arg) = num;
3276 return 0;
3277}
3278
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003279static int param_set_portnr(const char *val, const struct kernel_param *kp)
Trond Myklebustcbf11072009-08-09 15:06:19 -04003280{
Frank Sorensonffb6ca32016-07-08 16:35:25 -05003281 if (kp->arg == &xprt_min_resvport)
3282 return param_set_uint_minmax(val, kp,
Trond Myklebustcbf11072009-08-09 15:06:19 -04003283 RPC_MIN_RESVPORT,
Frank Sorensonffb6ca32016-07-08 16:35:25 -05003284 xprt_max_resvport);
3285 return param_set_uint_minmax(val, kp,
3286 xprt_min_resvport,
Trond Myklebustcbf11072009-08-09 15:06:19 -04003287 RPC_MAX_RESVPORT);
3288}
3289
Luis R. Rodriguez9c278472015-05-27 11:09:38 +09303290static const struct kernel_param_ops param_ops_portnr = {
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003291 .set = param_set_portnr,
3292 .get = param_get_uint,
3293};
3294
Trond Myklebustcbf11072009-08-09 15:06:19 -04003295#define param_check_portnr(name, p) \
3296 __param_check(name, p, unsigned int);
3297
3298module_param_named(min_resvport, xprt_min_resvport, portnr, 0644);
3299module_param_named(max_resvport, xprt_max_resvport, portnr, 0644);
3300
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003301static int param_set_slot_table_size(const char *val,
3302 const struct kernel_param *kp)
Trond Myklebustcbf11072009-08-09 15:06:19 -04003303{
3304 return param_set_uint_minmax(val, kp,
3305 RPC_MIN_SLOT_TABLE,
3306 RPC_MAX_SLOT_TABLE);
3307}
3308
Luis R. Rodriguez9c278472015-05-27 11:09:38 +09303309static const struct kernel_param_ops param_ops_slot_table_size = {
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003310 .set = param_set_slot_table_size,
3311 .get = param_get_uint,
3312};
3313
Trond Myklebustcbf11072009-08-09 15:06:19 -04003314#define param_check_slot_table_size(name, p) \
3315 __param_check(name, p, unsigned int);
3316
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003317static int param_set_max_slot_table_size(const char *val,
3318 const struct kernel_param *kp)
3319{
3320 return param_set_uint_minmax(val, kp,
3321 RPC_MIN_SLOT_TABLE,
3322 RPC_MAX_SLOT_TABLE_LIMIT);
3323}
3324
Luis R. Rodriguez9c278472015-05-27 11:09:38 +09303325static const struct kernel_param_ops param_ops_max_slot_table_size = {
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003326 .set = param_set_max_slot_table_size,
3327 .get = param_get_uint,
3328};
3329
3330#define param_check_max_slot_table_size(name, p) \
3331 __param_check(name, p, unsigned int);
3332
Trond Myklebustcbf11072009-08-09 15:06:19 -04003333module_param_named(tcp_slot_table_entries, xprt_tcp_slot_table_entries,
3334 slot_table_size, 0644);
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003335module_param_named(tcp_max_slot_table_entries, xprt_max_tcp_slot_table_entries,
3336 max_slot_table_size, 0644);
Trond Myklebustcbf11072009-08-09 15:06:19 -04003337module_param_named(udp_slot_table_entries, xprt_udp_slot_table_entries,
3338 slot_table_size, 0644);
3339