blob: 111767ab124aa4037dfe8c7040866d7196343292 [file] [log] [blame]
Chuck Levera246b012005-08-11 16:25:23 -04001/*
2 * linux/net/sunrpc/xprtsock.c
3 *
4 * Client-side transport implementation for sockets.
5 *
Alan Cox113aa832008-10-13 19:01:08 -07006 * TCP callback races fixes (C) 1998 Red Hat
7 * TCP send fixes (C) 1998 Red Hat
Chuck Levera246b012005-08-11 16:25:23 -04008 * TCP NFS related read + write fixes
9 * (C) 1999 Dave Airlie, University of Limerick, Ireland <airlied@linux.ie>
10 *
11 * Rewrite of larges part of the code in order to stabilize TCP stuff.
12 * Fix behaviour when socket buffer is full.
13 * (C) 1999 Trond Myklebust <trond.myklebust@fys.uio.no>
Chuck Lever55aa4f52005-08-11 16:25:47 -040014 *
15 * IP socket transport implementation, (C) 2005 Chuck Lever <cel@netapp.com>
Chuck Lever8f9d5b12007-08-06 11:57:53 -040016 *
17 * IPv6 support contributed by Gilles Quillard, Bull Open Source, 2005.
18 * <gilles.quillard@bull.net>
Chuck Levera246b012005-08-11 16:25:23 -040019 */
20
21#include <linux/types.h>
Chuck Lever176e21e2011-05-09 15:22:44 -040022#include <linux/string.h>
Chuck Levera246b012005-08-11 16:25:23 -040023#include <linux/slab.h>
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -040024#include <linux/module.h>
Chuck Levera246b012005-08-11 16:25:23 -040025#include <linux/capability.h>
Chuck Levera246b012005-08-11 16:25:23 -040026#include <linux/pagemap.h>
27#include <linux/errno.h>
28#include <linux/socket.h>
29#include <linux/in.h>
30#include <linux/net.h>
31#include <linux/mm.h>
Chuck Lever176e21e2011-05-09 15:22:44 -040032#include <linux/un.h>
Chuck Levera246b012005-08-11 16:25:23 -040033#include <linux/udp.h>
34#include <linux/tcp.h>
35#include <linux/sunrpc/clnt.h>
Jeff Layton59766872013-02-04 12:50:00 -050036#include <linux/sunrpc/addr.h>
Chuck Lever02107142006-01-03 09:55:49 +010037#include <linux/sunrpc/sched.h>
Rahul Iyer4cfc7e62009-09-10 17:32:28 +030038#include <linux/sunrpc/svcsock.h>
\"Talpey, Thomas\49c36fc2007-09-10 13:47:31 -040039#include <linux/sunrpc/xprtsock.h>
Chuck Levera246b012005-08-11 16:25:23 -040040#include <linux/file.h>
Trond Myklebust9e00abc2011-07-13 19:20:49 -040041#ifdef CONFIG_SUNRPC_BACKCHANNEL
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -040042#include <linux/sunrpc/bc_xprt.h>
43#endif
Chuck Levera246b012005-08-11 16:25:23 -040044
45#include <net/sock.h>
46#include <net/checksum.h>
47#include <net/udp.h>
48#include <net/tcp.h>
49
Trond Myklebust40b5ea02013-09-04 12:16:23 -040050#include <trace/events/sunrpc.h>
51
Rahul Iyer4cfc7e62009-09-10 17:32:28 +030052#include "sunrpc.h"
Chuck Lever176e21e2011-05-09 15:22:44 -040053
54static void xs_close(struct rpc_xprt *xprt);
55
Chuck Lever9903cd12005-08-11 16:25:26 -040056/*
Chuck Leverc556b752005-11-01 12:24:48 -050057 * xprtsock tunables
58 */
Trond Myklebust09acfea2012-03-11 15:22:54 -040059static unsigned int xprt_udp_slot_table_entries = RPC_DEF_SLOT_TABLE;
60static unsigned int xprt_tcp_slot_table_entries = RPC_MIN_SLOT_TABLE;
61static unsigned int xprt_max_tcp_slot_table_entries = RPC_MAX_SLOT_TABLE;
Chuck Leverc556b752005-11-01 12:24:48 -050062
Trond Myklebust09acfea2012-03-11 15:22:54 -040063static unsigned int xprt_min_resvport = RPC_DEF_MIN_RESVPORT;
64static unsigned int xprt_max_resvport = RPC_DEF_MAX_RESVPORT;
Chuck Leverc556b752005-11-01 12:24:48 -050065
Trond Myklebust54c09872015-02-09 11:01:02 -050066#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
67
Trond Myklebust7d1e8252009-03-11 14:38:03 -040068#define XS_TCP_LINGER_TO (15U * HZ)
Trond Myklebust25fe6142009-03-11 14:38:03 -040069static unsigned int xs_tcp_fin_timeout __read_mostly = XS_TCP_LINGER_TO;
Trond Myklebust7d1e8252009-03-11 14:38:03 -040070
Chuck Leverc556b752005-11-01 12:24:48 -050071/*
Chuck Leverfbf76682006-12-05 16:35:54 -050072 * We can register our own files under /proc/sys/sunrpc by
73 * calling register_sysctl_table() again. The files in that
74 * directory become the union of all files registered there.
75 *
76 * We simply need to make sure that we don't collide with
77 * someone else's file names!
78 */
79
Chuck Leverfbf76682006-12-05 16:35:54 -050080static unsigned int min_slot_table_size = RPC_MIN_SLOT_TABLE;
81static unsigned int max_slot_table_size = RPC_MAX_SLOT_TABLE;
Trond Myklebustd9ba1312011-07-17 18:11:30 -040082static unsigned int max_tcp_slot_table_limit = RPC_MAX_SLOT_TABLE_LIMIT;
Chuck Leverfbf76682006-12-05 16:35:54 -050083static unsigned int xprt_min_resvport_limit = RPC_MIN_RESVPORT;
84static unsigned int xprt_max_resvport_limit = RPC_MAX_RESVPORT;
85
86static struct ctl_table_header *sunrpc_table_header;
87
88/*
89 * FIXME: changing the UDP slot table size should also resize the UDP
90 * socket buffers for existing UDP transports
91 */
Joe Perchesfe2c6332013-06-11 23:04:25 -070092static struct ctl_table xs_tunables_table[] = {
Chuck Leverfbf76682006-12-05 16:35:54 -050093 {
Chuck Leverfbf76682006-12-05 16:35:54 -050094 .procname = "udp_slot_table_entries",
95 .data = &xprt_udp_slot_table_entries,
96 .maxlen = sizeof(unsigned int),
97 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -080098 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -050099 .extra1 = &min_slot_table_size,
100 .extra2 = &max_slot_table_size
101 },
102 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500103 .procname = "tcp_slot_table_entries",
104 .data = &xprt_tcp_slot_table_entries,
105 .maxlen = sizeof(unsigned int),
106 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800107 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -0500108 .extra1 = &min_slot_table_size,
109 .extra2 = &max_slot_table_size
110 },
111 {
Trond Myklebustd9ba1312011-07-17 18:11:30 -0400112 .procname = "tcp_max_slot_table_entries",
113 .data = &xprt_max_tcp_slot_table_entries,
114 .maxlen = sizeof(unsigned int),
115 .mode = 0644,
116 .proc_handler = proc_dointvec_minmax,
117 .extra1 = &min_slot_table_size,
118 .extra2 = &max_tcp_slot_table_limit
119 },
120 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500121 .procname = "min_resvport",
122 .data = &xprt_min_resvport,
123 .maxlen = sizeof(unsigned int),
124 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800125 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -0500126 .extra1 = &xprt_min_resvport_limit,
Frank Sorensone08ea3a2016-07-08 16:35:24 -0500127 .extra2 = &xprt_max_resvport
Chuck Leverfbf76682006-12-05 16:35:54 -0500128 },
129 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500130 .procname = "max_resvport",
131 .data = &xprt_max_resvport,
132 .maxlen = sizeof(unsigned int),
133 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800134 .proc_handler = proc_dointvec_minmax,
Frank Sorensone08ea3a2016-07-08 16:35:24 -0500135 .extra1 = &xprt_min_resvport,
Chuck Leverfbf76682006-12-05 16:35:54 -0500136 .extra2 = &xprt_max_resvport_limit
137 },
138 {
Trond Myklebust25fe6142009-03-11 14:38:03 -0400139 .procname = "tcp_fin_timeout",
140 .data = &xs_tcp_fin_timeout,
141 .maxlen = sizeof(xs_tcp_fin_timeout),
142 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800143 .proc_handler = proc_dointvec_jiffies,
Trond Myklebust25fe6142009-03-11 14:38:03 -0400144 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800145 { },
Chuck Leverfbf76682006-12-05 16:35:54 -0500146};
147
Joe Perchesfe2c6332013-06-11 23:04:25 -0700148static struct ctl_table sunrpc_table[] = {
Chuck Leverfbf76682006-12-05 16:35:54 -0500149 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500150 .procname = "sunrpc",
151 .mode = 0555,
152 .child = xs_tunables_table
153 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800154 { },
Chuck Leverfbf76682006-12-05 16:35:54 -0500155};
156
157#endif
158
159/*
Chuck Lever03bf4b72005-08-25 16:25:55 -0700160 * Wait duration for a reply from the RPC portmapper.
161 */
162#define XS_BIND_TO (60U * HZ)
163
164/*
165 * Delay if a UDP socket connect error occurs. This is most likely some
166 * kind of resource problem on the local host.
167 */
168#define XS_UDP_REEST_TO (2U * HZ)
169
170/*
171 * The reestablish timeout allows clients to delay for a bit before attempting
172 * to reconnect to a server that just dropped our connection.
173 *
174 * We implement an exponential backoff when trying to reestablish a TCP
175 * transport connection with the server. Some servers like to drop a TCP
176 * connection when they are overworked, so we start with a short timeout and
177 * increase over time if the server is down or not responding.
178 */
179#define XS_TCP_INIT_REEST_TO (3U * HZ)
180#define XS_TCP_MAX_REEST_TO (5U * 60 * HZ)
181
182/*
183 * TCP idle timeout; client drops the transport socket if it is idle
184 * for this long. Note that we also timeout UDP sockets to prevent
185 * holding port numbers when there is no RPC traffic.
186 */
187#define XS_IDLE_DISC_TO (5U * 60 * HZ)
188
Jeff Laytonf895b252014-11-17 16:58:04 -0500189#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Chuck Levera246b012005-08-11 16:25:23 -0400190# undef RPC_DEBUG_DATA
Chuck Lever9903cd12005-08-11 16:25:26 -0400191# define RPCDBG_FACILITY RPCDBG_TRANS
Chuck Levera246b012005-08-11 16:25:23 -0400192#endif
193
Chuck Levera246b012005-08-11 16:25:23 -0400194#ifdef RPC_DEBUG_DATA
Chuck Lever9903cd12005-08-11 16:25:26 -0400195static void xs_pktdump(char *msg, u32 *packet, unsigned int count)
Chuck Levera246b012005-08-11 16:25:23 -0400196{
Chuck Lever9903cd12005-08-11 16:25:26 -0400197 u8 *buf = (u8 *) packet;
198 int j;
Chuck Levera246b012005-08-11 16:25:23 -0400199
Chuck Lever46121cf2007-01-31 12:14:08 -0500200 dprintk("RPC: %s\n", msg);
Chuck Levera246b012005-08-11 16:25:23 -0400201 for (j = 0; j < count && j < 128; j += 4) {
202 if (!(j & 31)) {
203 if (j)
204 dprintk("\n");
205 dprintk("0x%04x ", j);
206 }
207 dprintk("%02x%02x%02x%02x ",
208 buf[j], buf[j+1], buf[j+2], buf[j+3]);
209 }
210 dprintk("\n");
211}
212#else
Chuck Lever9903cd12005-08-11 16:25:26 -0400213static inline void xs_pktdump(char *msg, u32 *packet, unsigned int count)
Chuck Levera246b012005-08-11 16:25:23 -0400214{
215 /* NOP */
216}
217#endif
218
Trond Myklebust21180712013-12-31 13:22:59 -0500219static inline struct rpc_xprt *xprt_from_sock(struct sock *sk)
220{
221 return (struct rpc_xprt *) sk->sk_user_data;
222}
223
Chuck Lever95392c52007-08-06 11:57:58 -0400224static inline struct sockaddr *xs_addr(struct rpc_xprt *xprt)
Chuck Leveredb267a2006-08-22 20:06:18 -0400225{
Chuck Lever95392c52007-08-06 11:57:58 -0400226 return (struct sockaddr *) &xprt->addr;
227}
228
Chuck Lever176e21e2011-05-09 15:22:44 -0400229static inline struct sockaddr_un *xs_addr_un(struct rpc_xprt *xprt)
230{
231 return (struct sockaddr_un *) &xprt->addr;
232}
233
Chuck Lever95392c52007-08-06 11:57:58 -0400234static inline struct sockaddr_in *xs_addr_in(struct rpc_xprt *xprt)
235{
236 return (struct sockaddr_in *) &xprt->addr;
237}
238
239static inline struct sockaddr_in6 *xs_addr_in6(struct rpc_xprt *xprt)
240{
241 return (struct sockaddr_in6 *) &xprt->addr;
242}
243
Chuck Leverc877b842009-08-09 15:09:36 -0400244static void xs_format_common_peer_addresses(struct rpc_xprt *xprt)
Chuck Leveredb267a2006-08-22 20:06:18 -0400245{
Chuck Leverc877b842009-08-09 15:09:36 -0400246 struct sockaddr *sap = xs_addr(xprt);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400247 struct sockaddr_in6 *sin6;
248 struct sockaddr_in *sin;
Chuck Lever176e21e2011-05-09 15:22:44 -0400249 struct sockaddr_un *sun;
Chuck Leverc877b842009-08-09 15:09:36 -0400250 char buf[128];
Chuck Leveredb267a2006-08-22 20:06:18 -0400251
Chuck Lever9dc3b092009-08-09 15:09:46 -0400252 switch (sap->sa_family) {
Chuck Lever176e21e2011-05-09 15:22:44 -0400253 case AF_LOCAL:
254 sun = xs_addr_un(xprt);
255 strlcpy(buf, sun->sun_path, sizeof(buf));
256 xprt->address_strings[RPC_DISPLAY_ADDR] =
257 kstrdup(buf, GFP_KERNEL);
258 break;
Chuck Lever9dc3b092009-08-09 15:09:46 -0400259 case AF_INET:
Chuck Lever176e21e2011-05-09 15:22:44 -0400260 (void)rpc_ntop(sap, buf, sizeof(buf));
261 xprt->address_strings[RPC_DISPLAY_ADDR] =
262 kstrdup(buf, GFP_KERNEL);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400263 sin = xs_addr_in(xprt);
Joe Perchesfc0b57912010-03-08 12:15:28 -0800264 snprintf(buf, sizeof(buf), "%08x", ntohl(sin->sin_addr.s_addr));
Chuck Lever9dc3b092009-08-09 15:09:46 -0400265 break;
266 case AF_INET6:
Chuck Lever176e21e2011-05-09 15:22:44 -0400267 (void)rpc_ntop(sap, buf, sizeof(buf));
268 xprt->address_strings[RPC_DISPLAY_ADDR] =
269 kstrdup(buf, GFP_KERNEL);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400270 sin6 = xs_addr_in6(xprt);
Joe Perchesfc0b57912010-03-08 12:15:28 -0800271 snprintf(buf, sizeof(buf), "%pi6", &sin6->sin6_addr);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400272 break;
273 default:
274 BUG();
Chuck Leveredb267a2006-08-22 20:06:18 -0400275 }
Chuck Lever176e21e2011-05-09 15:22:44 -0400276
Chuck Lever9dc3b092009-08-09 15:09:46 -0400277 xprt->address_strings[RPC_DISPLAY_HEX_ADDR] = kstrdup(buf, GFP_KERNEL);
Chuck Leveredb267a2006-08-22 20:06:18 -0400278}
279
Chuck Lever9dc3b092009-08-09 15:09:46 -0400280static void xs_format_common_peer_ports(struct rpc_xprt *xprt)
Chuck Lever4b6473f2007-08-06 11:57:12 -0400281{
Chuck Lever9dc3b092009-08-09 15:09:46 -0400282 struct sockaddr *sap = xs_addr(xprt);
283 char buf[128];
Chuck Lever4b6473f2007-08-06 11:57:12 -0400284
Joe Perches81160e662010-03-08 12:15:59 -0800285 snprintf(buf, sizeof(buf), "%u", rpc_get_port(sap));
Chuck Leverc877b842009-08-09 15:09:36 -0400286 xprt->address_strings[RPC_DISPLAY_PORT] = kstrdup(buf, GFP_KERNEL);
Chuck Lever4b6473f2007-08-06 11:57:12 -0400287
Joe Perches81160e662010-03-08 12:15:59 -0800288 snprintf(buf, sizeof(buf), "%4hx", rpc_get_port(sap));
Chuck Leverc877b842009-08-09 15:09:36 -0400289 xprt->address_strings[RPC_DISPLAY_HEX_PORT] = kstrdup(buf, GFP_KERNEL);
290}
Chuck Lever4b6473f2007-08-06 11:57:12 -0400291
Chuck Lever9dc3b092009-08-09 15:09:46 -0400292static void xs_format_peer_addresses(struct rpc_xprt *xprt,
293 const char *protocol,
294 const char *netid)
Chuck Leveredb267a2006-08-22 20:06:18 -0400295{
Chuck Leverb454ae92008-01-07 18:34:48 -0500296 xprt->address_strings[RPC_DISPLAY_PROTO] = protocol;
Chuck Leverb454ae92008-01-07 18:34:48 -0500297 xprt->address_strings[RPC_DISPLAY_NETID] = netid;
Chuck Leverc877b842009-08-09 15:09:36 -0400298 xs_format_common_peer_addresses(xprt);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400299 xs_format_common_peer_ports(xprt);
Chuck Lever4b6473f2007-08-06 11:57:12 -0400300}
301
Chuck Lever9dc3b092009-08-09 15:09:46 -0400302static void xs_update_peer_port(struct rpc_xprt *xprt)
Chuck Lever4b6473f2007-08-06 11:57:12 -0400303{
Chuck Lever9dc3b092009-08-09 15:09:46 -0400304 kfree(xprt->address_strings[RPC_DISPLAY_HEX_PORT]);
305 kfree(xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever4b6473f2007-08-06 11:57:12 -0400306
Chuck Lever9dc3b092009-08-09 15:09:46 -0400307 xs_format_common_peer_ports(xprt);
Chuck Leveredb267a2006-08-22 20:06:18 -0400308}
309
310static void xs_free_peer_addresses(struct rpc_xprt *xprt)
311{
Chuck Lever33e01dc2008-01-14 12:32:20 -0500312 unsigned int i;
313
314 for (i = 0; i < RPC_DISPLAY_MAX; i++)
315 switch (i) {
316 case RPC_DISPLAY_PROTO:
317 case RPC_DISPLAY_NETID:
318 continue;
319 default:
320 kfree(xprt->address_strings[i]);
321 }
Chuck Leveredb267a2006-08-22 20:06:18 -0400322}
323
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400324#define XS_SENDMSG_FLAGS (MSG_DONTWAIT | MSG_NOSIGNAL)
325
Trond Myklebust24c56842006-10-17 15:06:22 -0400326static int xs_send_kvec(struct socket *sock, struct sockaddr *addr, int addrlen, struct kvec *vec, unsigned int base, int more)
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400327{
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400328 struct msghdr msg = {
329 .msg_name = addr,
330 .msg_namelen = addrlen,
Trond Myklebust24c56842006-10-17 15:06:22 -0400331 .msg_flags = XS_SENDMSG_FLAGS | (more ? MSG_MORE : 0),
332 };
333 struct kvec iov = {
334 .iov_base = vec->iov_base + base,
335 .iov_len = vec->iov_len - base,
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400336 };
337
Trond Myklebust24c56842006-10-17 15:06:22 -0400338 if (iov.iov_len != 0)
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400339 return kernel_sendmsg(sock, &msg, &iov, 1, iov.iov_len);
340 return kernel_sendmsg(sock, &msg, NULL, 0, 0);
341}
342
Jason Baronf279cd02014-09-24 18:08:00 +0000343static int xs_send_pagedata(struct socket *sock, struct xdr_buf *xdr, unsigned int base, int more, bool zerocopy, int *sent_p)
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400344{
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500345 ssize_t (*do_sendpage)(struct socket *sock, struct page *page,
346 int offset, size_t size, int flags);
Trond Myklebust24c56842006-10-17 15:06:22 -0400347 struct page **ppage;
348 unsigned int remainder;
Jason Baronf279cd02014-09-24 18:08:00 +0000349 int err;
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400350
Trond Myklebust24c56842006-10-17 15:06:22 -0400351 remainder = xdr->page_len - base;
352 base += xdr->page_base;
353 ppage = xdr->pages + (base >> PAGE_SHIFT);
354 base &= ~PAGE_MASK;
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500355 do_sendpage = sock->ops->sendpage;
356 if (!zerocopy)
357 do_sendpage = sock_no_sendpage;
Trond Myklebust24c56842006-10-17 15:06:22 -0400358 for(;;) {
359 unsigned int len = min_t(unsigned int, PAGE_SIZE - base, remainder);
360 int flags = XS_SENDMSG_FLAGS;
361
362 remainder -= len;
Trond Myklebust31303d62015-10-06 15:59:20 -0400363 if (more)
Trond Myklebust24c56842006-10-17 15:06:22 -0400364 flags |= MSG_MORE;
Trond Myklebust31303d62015-10-06 15:59:20 -0400365 if (remainder != 0)
366 flags |= MSG_SENDPAGE_NOTLAST | MSG_MORE;
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500367 err = do_sendpage(sock, *ppage, base, len, flags);
Trond Myklebust24c56842006-10-17 15:06:22 -0400368 if (remainder == 0 || err != len)
369 break;
Jason Baronf279cd02014-09-24 18:08:00 +0000370 *sent_p += err;
Trond Myklebust24c56842006-10-17 15:06:22 -0400371 ppage++;
372 base = 0;
373 }
Jason Baronf279cd02014-09-24 18:08:00 +0000374 if (err > 0) {
375 *sent_p += err;
376 err = 0;
377 }
378 return err;
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400379}
380
Chuck Lever9903cd12005-08-11 16:25:26 -0400381/**
382 * xs_sendpages - write pages directly to a socket
383 * @sock: socket to send on
384 * @addr: UDP only -- address of destination
385 * @addrlen: UDP only -- length of destination address
386 * @xdr: buffer containing this request
387 * @base: starting position in the buffer
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500388 * @zerocopy: true if it is safe to use sendpage()
Jason Baronf279cd02014-09-24 18:08:00 +0000389 * @sent_p: return the total number of bytes successfully queued for sending
Chuck Lever9903cd12005-08-11 16:25:26 -0400390 *
Chuck Levera246b012005-08-11 16:25:23 -0400391 */
Jason Baronf279cd02014-09-24 18:08:00 +0000392static 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 -0400393{
Trond Myklebust24c56842006-10-17 15:06:22 -0400394 unsigned int remainder = xdr->len - base;
Jason Baronf279cd02014-09-24 18:08:00 +0000395 int err = 0;
396 int sent = 0;
Chuck Levera246b012005-08-11 16:25:23 -0400397
Chuck Lever262965f2005-08-11 16:25:56 -0400398 if (unlikely(!sock))
Trond Myklebustfba91af2009-03-11 14:06:41 -0400399 return -ENOTSOCK;
Chuck Lever262965f2005-08-11 16:25:56 -0400400
Trond Myklebust24c56842006-10-17 15:06:22 -0400401 if (base != 0) {
402 addr = NULL;
403 addrlen = 0;
404 }
Chuck Lever262965f2005-08-11 16:25:56 -0400405
Trond Myklebust24c56842006-10-17 15:06:22 -0400406 if (base < xdr->head[0].iov_len || addr != NULL) {
407 unsigned int len = xdr->head[0].iov_len - base;
408 remainder -= len;
409 err = xs_send_kvec(sock, addr, addrlen, &xdr->head[0], base, remainder != 0);
410 if (remainder == 0 || err != len)
Chuck Levera246b012005-08-11 16:25:23 -0400411 goto out;
Jason Baronf279cd02014-09-24 18:08:00 +0000412 *sent_p += err;
Chuck Levera246b012005-08-11 16:25:23 -0400413 base = 0;
414 } else
Trond Myklebust24c56842006-10-17 15:06:22 -0400415 base -= xdr->head[0].iov_len;
Chuck Levera246b012005-08-11 16:25:23 -0400416
Trond Myklebust24c56842006-10-17 15:06:22 -0400417 if (base < xdr->page_len) {
418 unsigned int len = xdr->page_len - base;
419 remainder -= len;
Jason Baronf279cd02014-09-24 18:08:00 +0000420 err = xs_send_pagedata(sock, xdr, base, remainder != 0, zerocopy, &sent);
421 *sent_p += sent;
422 if (remainder == 0 || sent != len)
Chuck Levera246b012005-08-11 16:25:23 -0400423 goto out;
424 base = 0;
Trond Myklebust24c56842006-10-17 15:06:22 -0400425 } else
426 base -= xdr->page_len;
427
428 if (base >= xdr->tail[0].iov_len)
Jason Baronf279cd02014-09-24 18:08:00 +0000429 return 0;
Trond Myklebust24c56842006-10-17 15:06:22 -0400430 err = xs_send_kvec(sock, NULL, 0, &xdr->tail[0], base, 0);
Chuck Levera246b012005-08-11 16:25:23 -0400431out:
Jason Baronf279cd02014-09-24 18:08:00 +0000432 if (err > 0) {
433 *sent_p += err;
434 err = 0;
435 }
436 return err;
Chuck Levera246b012005-08-11 16:25:23 -0400437}
438
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400439static void xs_nospace_callback(struct rpc_task *task)
440{
441 struct sock_xprt *transport = container_of(task->tk_rqstp->rq_xprt, struct sock_xprt, xprt);
442
443 transport->inet->sk_write_pending--;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400444}
445
Chuck Lever9903cd12005-08-11 16:25:26 -0400446/**
Chuck Lever262965f2005-08-11 16:25:56 -0400447 * xs_nospace - place task on wait queue if transmit was incomplete
448 * @task: task to put to sleep
Chuck Lever9903cd12005-08-11 16:25:26 -0400449 *
Chuck Levera246b012005-08-11 16:25:23 -0400450 */
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400451static int xs_nospace(struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -0400452{
Chuck Lever262965f2005-08-11 16:25:56 -0400453 struct rpc_rqst *req = task->tk_rqstp;
454 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500455 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebust06ea0bf2014-02-11 09:15:54 -0500456 struct sock *sk = transport->inet;
Trond Myklebust24ca9a82011-11-22 14:44:28 +0200457 int ret = -EAGAIN;
Chuck Levera246b012005-08-11 16:25:23 -0400458
Chuck Lever46121cf2007-01-31 12:14:08 -0500459 dprintk("RPC: %5u xmit incomplete (%u left of %u)\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400460 task->tk_pid, req->rq_slen - req->rq_bytes_sent,
461 req->rq_slen);
462
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400463 /* Protect against races with write_space */
464 spin_lock_bh(&xprt->transport_lock);
Chuck Lever262965f2005-08-11 16:25:56 -0400465
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400466 /* Don't race with disconnect */
467 if (xprt_connected(xprt)) {
Trond Myklebust13331a52016-01-06 08:57:06 -0500468 /* wait for more buffer space */
469 sk->sk_write_pending++;
470 xprt_wait_for_buffer_space(task, xs_nospace_callback);
471 } else
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400472 ret = -ENOTCONN;
Chuck Lever262965f2005-08-11 16:25:56 -0400473
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400474 spin_unlock_bh(&xprt->transport_lock);
Trond Myklebust06ea0bf2014-02-11 09:15:54 -0500475
476 /* Race breaker in case memory is freed before above code is called */
477 sk->sk_write_space(sk);
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400478 return ret;
Chuck Lever262965f2005-08-11 16:25:56 -0400479}
480
Chuck Lever61677ee2011-05-09 15:22:34 -0400481/*
482 * Construct a stream transport record marker in @buf.
483 */
484static inline void xs_encode_stream_record_marker(struct xdr_buf *buf)
485{
486 u32 reclen = buf->len - sizeof(rpc_fraghdr);
487 rpc_fraghdr *base = buf->head[0].iov_base;
488 *base = cpu_to_be32(RPC_LAST_STREAM_FRAGMENT | reclen);
489}
490
Chuck Lever262965f2005-08-11 16:25:56 -0400491/**
Chuck Lever176e21e2011-05-09 15:22:44 -0400492 * xs_local_send_request - write an RPC request to an AF_LOCAL socket
493 * @task: RPC task that manages the state of an RPC request
494 *
495 * Return values:
496 * 0: The request has been sent
497 * EAGAIN: The socket was blocked, please call again later to
498 * complete the request
499 * ENOTCONN: Caller needs to invoke connect logic then call again
500 * other: Some other error occured, the request was not sent
501 */
502static int xs_local_send_request(struct rpc_task *task)
503{
504 struct rpc_rqst *req = task->tk_rqstp;
505 struct rpc_xprt *xprt = req->rq_xprt;
506 struct sock_xprt *transport =
507 container_of(xprt, struct sock_xprt, xprt);
508 struct xdr_buf *xdr = &req->rq_snd_buf;
509 int status;
Jason Baronf279cd02014-09-24 18:08:00 +0000510 int sent = 0;
Chuck Lever176e21e2011-05-09 15:22:44 -0400511
512 xs_encode_stream_record_marker(&req->rq_snd_buf);
513
514 xs_pktdump("packet data:",
515 req->rq_svec->iov_base, req->rq_svec->iov_len);
516
Jason Baronf279cd02014-09-24 18:08:00 +0000517 status = xs_sendpages(transport->sock, NULL, 0, xdr, req->rq_bytes_sent,
518 true, &sent);
Chuck Lever176e21e2011-05-09 15:22:44 -0400519 dprintk("RPC: %s(%u) = %d\n",
520 __func__, xdr->len - req->rq_bytes_sent, status);
NeilBrown743c69e2015-07-27 10:55:35 +1000521
522 if (status == -EAGAIN && sock_writeable(transport->inet))
523 status = -ENOBUFS;
524
Jason Baronf279cd02014-09-24 18:08:00 +0000525 if (likely(sent > 0) || status == 0) {
526 req->rq_bytes_sent += sent;
527 req->rq_xmit_bytes_sent += sent;
Chuck Lever176e21e2011-05-09 15:22:44 -0400528 if (likely(req->rq_bytes_sent >= req->rq_slen)) {
529 req->rq_bytes_sent = 0;
530 return 0;
531 }
532 status = -EAGAIN;
533 }
534
535 switch (status) {
Trond Myklebust3601c4a2014-06-30 13:42:19 -0400536 case -ENOBUFS:
Trond Myklebustb5872f02015-07-03 09:32:23 -0400537 break;
Chuck Lever176e21e2011-05-09 15:22:44 -0400538 case -EAGAIN:
539 status = xs_nospace(task);
540 break;
541 default:
542 dprintk("RPC: sendmsg returned unrecognized error %d\n",
543 -status);
544 case -EPIPE:
545 xs_close(xprt);
546 status = -ENOTCONN;
547 }
548
549 return status;
550}
551
552/**
Chuck Lever262965f2005-08-11 16:25:56 -0400553 * xs_udp_send_request - write an RPC request to a UDP socket
554 * @task: address of RPC task that manages the state of an RPC request
555 *
556 * Return values:
557 * 0: The request has been sent
558 * EAGAIN: The socket was blocked, please call again later to
559 * complete the request
560 * ENOTCONN: Caller needs to invoke connect logic then call again
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300561 * other: Some other error occurred, the request was not sent
Chuck Lever262965f2005-08-11 16:25:56 -0400562 */
563static int xs_udp_send_request(struct rpc_task *task)
564{
565 struct rpc_rqst *req = task->tk_rqstp;
566 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500567 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262965f2005-08-11 16:25:56 -0400568 struct xdr_buf *xdr = &req->rq_snd_buf;
Jason Baronf279cd02014-09-24 18:08:00 +0000569 int sent = 0;
Chuck Lever262965f2005-08-11 16:25:56 -0400570 int status;
Chuck Levera246b012005-08-11 16:25:23 -0400571
Chuck Lever9903cd12005-08-11 16:25:26 -0400572 xs_pktdump("packet data:",
Chuck Levera246b012005-08-11 16:25:23 -0400573 req->rq_svec->iov_base,
574 req->rq_svec->iov_len);
575
Trond Myklebust01d37c42009-03-11 14:09:39 -0400576 if (!xprt_bound(xprt))
577 return -ENOTCONN;
Jason Baronf279cd02014-09-24 18:08:00 +0000578 status = xs_sendpages(transport->sock, xs_addr(xprt), xprt->addrlen,
579 xdr, req->rq_bytes_sent, true, &sent);
Chuck Levera246b012005-08-11 16:25:23 -0400580
Chuck Lever46121cf2007-01-31 12:14:08 -0500581 dprintk("RPC: xs_udp_send_request(%u) = %d\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400582 xdr->len - req->rq_bytes_sent, status);
Chuck Levera246b012005-08-11 16:25:23 -0400583
Jason Baron3dedbb52014-09-24 18:08:04 +0000584 /* firewall is blocking us, don't return -EAGAIN or we end up looping */
585 if (status == -EPERM)
586 goto process_status;
587
NeilBrown743c69e2015-07-27 10:55:35 +1000588 if (status == -EAGAIN && sock_writeable(transport->inet))
589 status = -ENOBUFS;
590
Jason Baronf279cd02014-09-24 18:08:00 +0000591 if (sent > 0 || status == 0) {
592 req->rq_xmit_bytes_sent += sent;
593 if (sent >= req->rq_slen)
Trond Myklebust21997002007-10-01 11:43:37 -0400594 return 0;
595 /* Still some bytes left; set up for a retry later. */
Chuck Lever262965f2005-08-11 16:25:56 -0400596 status = -EAGAIN;
Trond Myklebust21997002007-10-01 11:43:37 -0400597 }
Chuck Levera246b012005-08-11 16:25:23 -0400598
Jason Baron3dedbb52014-09-24 18:08:04 +0000599process_status:
Chuck Lever262965f2005-08-11 16:25:56 -0400600 switch (status) {
Trond Myklebustfba91af2009-03-11 14:06:41 -0400601 case -ENOTSOCK:
602 status = -ENOTCONN;
603 /* Should we call xs_close() here? */
604 break;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400605 case -EAGAIN:
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400606 status = xs_nospace(task);
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400607 break;
Chuck Lever262965f2005-08-11 16:25:56 -0400608 case -ENETUNREACH:
Trond Myklebust3601c4a2014-06-30 13:42:19 -0400609 case -ENOBUFS:
Chuck Lever262965f2005-08-11 16:25:56 -0400610 case -EPIPE:
Chuck Levera246b012005-08-11 16:25:23 -0400611 case -ECONNREFUSED:
Jason Baron3dedbb52014-09-24 18:08:04 +0000612 case -EPERM:
Chuck Levera246b012005-08-11 16:25:23 -0400613 /* When the server has died, an ICMP port unreachable message
Chuck Lever9903cd12005-08-11 16:25:26 -0400614 * prompts ECONNREFUSED. */
Trond Myklebust13331a52016-01-06 08:57:06 -0500615 break;
616 default:
617 dprintk("RPC: sendmsg returned unrecognized error %d\n",
618 -status);
Chuck Levera246b012005-08-11 16:25:23 -0400619 }
Bian Naimeng5fe46e92010-03-08 14:49:01 +0800620
Chuck Lever262965f2005-08-11 16:25:56 -0400621 return status;
Chuck Levera246b012005-08-11 16:25:23 -0400622}
623
Trond Myklebuste06799f2007-11-05 15:44:12 -0500624/**
Chuck Lever262965f2005-08-11 16:25:56 -0400625 * xs_tcp_send_request - write an RPC request to a TCP socket
Chuck Lever9903cd12005-08-11 16:25:26 -0400626 * @task: address of RPC task that manages the state of an RPC request
627 *
628 * Return values:
Chuck Lever262965f2005-08-11 16:25:56 -0400629 * 0: The request has been sent
630 * EAGAIN: The socket was blocked, please call again later to
631 * complete the request
632 * ENOTCONN: Caller needs to invoke connect logic then call again
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300633 * other: Some other error occurred, the request was not sent
Chuck Lever9903cd12005-08-11 16:25:26 -0400634 *
635 * XXX: In the case of soft timeouts, should we eventually give up
Chuck Lever262965f2005-08-11 16:25:56 -0400636 * if sendmsg is not able to make progress?
Chuck Lever9903cd12005-08-11 16:25:26 -0400637 */
Chuck Lever262965f2005-08-11 16:25:56 -0400638static int xs_tcp_send_request(struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -0400639{
640 struct rpc_rqst *req = task->tk_rqstp;
641 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500642 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262965f2005-08-11 16:25:56 -0400643 struct xdr_buf *xdr = &req->rq_snd_buf;
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500644 bool zerocopy = true;
Trond Myklebust9ffadfb2016-05-29 00:42:03 -0400645 bool vm_wait = false;
Chuck Leverb595bb12007-08-06 11:56:42 -0400646 int status;
Jason Baronf279cd02014-09-24 18:08:00 +0000647 int sent;
Chuck Levera246b012005-08-11 16:25:23 -0400648
Chuck Lever61677ee2011-05-09 15:22:34 -0400649 xs_encode_stream_record_marker(&req->rq_snd_buf);
Chuck Levera246b012005-08-11 16:25:23 -0400650
Chuck Lever262965f2005-08-11 16:25:56 -0400651 xs_pktdump("packet data:",
652 req->rq_svec->iov_base,
653 req->rq_svec->iov_len);
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500654 /* Don't use zero copy if this is a resend. If the RPC call
655 * completes while the socket holds a reference to the pages,
656 * then we may end up resending corrupted data.
657 */
658 if (task->tk_flags & RPC_TASK_SENT)
659 zerocopy = false;
Chuck Levera246b012005-08-11 16:25:23 -0400660
661 /* Continue transmitting the packet/record. We must be careful
662 * to cope with writespace callbacks arriving _after_ we have
Chuck Lever262965f2005-08-11 16:25:56 -0400663 * called sendmsg(). */
Chuck Levera246b012005-08-11 16:25:23 -0400664 while (1) {
Jason Baronf279cd02014-09-24 18:08:00 +0000665 sent = 0;
666 status = xs_sendpages(transport->sock, NULL, 0, xdr,
667 req->rq_bytes_sent, zerocopy, &sent);
Chuck Levera246b012005-08-11 16:25:23 -0400668
Chuck Lever46121cf2007-01-31 12:14:08 -0500669 dprintk("RPC: xs_tcp_send_request(%u) = %d\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400670 xdr->len - req->rq_bytes_sent, status);
671
Chuck Lever262965f2005-08-11 16:25:56 -0400672 /* If we've sent the entire packet, immediately
673 * reset the count of bytes sent. */
Jason Baronf279cd02014-09-24 18:08:00 +0000674 req->rq_bytes_sent += sent;
675 req->rq_xmit_bytes_sent += sent;
Chuck Lever262965f2005-08-11 16:25:56 -0400676 if (likely(req->rq_bytes_sent >= req->rq_slen)) {
677 req->rq_bytes_sent = 0;
678 return 0;
Chuck Levera246b012005-08-11 16:25:23 -0400679 }
680
Trond Myklebust9ffadfb2016-05-29 00:42:03 -0400681 WARN_ON_ONCE(sent == 0 && status == 0);
682
683 if (status == -EAGAIN ) {
684 /*
685 * Return EAGAIN if we're sure we're hitting the
686 * socket send buffer limits.
687 */
688 if (test_bit(SOCK_NOSPACE, &transport->sock->flags))
689 break;
690 /*
691 * Did we hit a memory allocation failure?
692 */
693 if (sent == 0) {
694 status = -ENOBUFS;
695 if (vm_wait)
696 break;
697 /* Retry, knowing now that we're below the
698 * socket send buffer limit
699 */
700 vm_wait = true;
701 }
702 continue;
703 }
Trond Myklebustf580dd02015-07-11 17:48:52 +0200704 if (status < 0)
705 break;
Trond Myklebust9ffadfb2016-05-29 00:42:03 -0400706 vm_wait = false;
Chuck Levera246b012005-08-11 16:25:23 -0400707 }
708
Chuck Lever262965f2005-08-11 16:25:56 -0400709 switch (status) {
Trond Myklebustfba91af2009-03-11 14:06:41 -0400710 case -ENOTSOCK:
711 status = -ENOTCONN;
712 /* Should we call xs_close() here? */
713 break;
Chuck Lever262965f2005-08-11 16:25:56 -0400714 case -EAGAIN:
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400715 status = xs_nospace(task);
Chuck Lever262965f2005-08-11 16:25:56 -0400716 break;
Chuck Lever262965f2005-08-11 16:25:56 -0400717 case -ECONNRESET:
Chuck Lever262965f2005-08-11 16:25:56 -0400718 case -ECONNREFUSED:
719 case -ENOTCONN:
Trond Myklebust3913c782015-02-08 21:44:04 -0500720 case -EADDRINUSE:
Trond Myklebustb5872f02015-07-03 09:32:23 -0400721 case -ENOBUFS:
Trond Myklebustb9d2bb22012-10-23 11:40:02 -0400722 case -EPIPE:
Trond Myklebust13331a52016-01-06 08:57:06 -0500723 break;
724 default:
725 dprintk("RPC: sendmsg returned unrecognized error %d\n",
726 -status);
Chuck Levera246b012005-08-11 16:25:23 -0400727 }
Bian Naimeng5fe46e92010-03-08 14:49:01 +0800728
Chuck Levera246b012005-08-11 16:25:23 -0400729 return status;
730}
731
Chuck Lever9903cd12005-08-11 16:25:26 -0400732/**
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400733 * xs_tcp_release_xprt - clean up after a tcp transmission
734 * @xprt: transport
735 * @task: rpc task
736 *
737 * This cleans up if an error causes us to abort the transmission of a request.
738 * In this case, the socket may need to be reset in order to avoid confusing
739 * the server.
740 */
741static void xs_tcp_release_xprt(struct rpc_xprt *xprt, struct rpc_task *task)
742{
743 struct rpc_rqst *req;
744
745 if (task != xprt->snd_task)
746 return;
747 if (task == NULL)
748 goto out_release;
749 req = task->tk_rqstp;
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400750 if (req == NULL)
751 goto out_release;
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400752 if (req->rq_bytes_sent == 0)
753 goto out_release;
754 if (req->rq_bytes_sent == req->rq_snd_buf.len)
755 goto out_release;
Trond Myklebusta4f08352013-01-08 09:10:21 -0500756 set_bit(XPRT_CLOSE_WAIT, &xprt->state);
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400757out_release:
758 xprt_release_xprt(xprt, task);
759}
760
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400761static void xs_save_old_callbacks(struct sock_xprt *transport, struct sock *sk)
762{
763 transport->old_data_ready = sk->sk_data_ready;
764 transport->old_state_change = sk->sk_state_change;
765 transport->old_write_space = sk->sk_write_space;
Trond Myklebust21180712013-12-31 13:22:59 -0500766 transport->old_error_report = sk->sk_error_report;
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400767}
768
769static void xs_restore_old_callbacks(struct sock_xprt *transport, struct sock *sk)
770{
771 sk->sk_data_ready = transport->old_data_ready;
772 sk->sk_state_change = transport->old_state_change;
773 sk->sk_write_space = transport->old_write_space;
Trond Myklebust21180712013-12-31 13:22:59 -0500774 sk->sk_error_report = transport->old_error_report;
775}
776
Trond Myklebust42d42a52016-05-23 09:24:55 -0400777static void xs_sock_reset_state_flags(struct rpc_xprt *xprt)
778{
779 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
780
781 clear_bit(XPRT_SOCK_DATA_READY, &transport->sock_state);
782}
783
Trond Myklebustb70ae912015-02-09 09:41:32 -0500784static void xs_sock_reset_connection_flags(struct rpc_xprt *xprt)
785{
786 smp_mb__before_atomic();
787 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
788 clear_bit(XPRT_CLOSING, &xprt->state);
Trond Myklebust42d42a52016-05-23 09:24:55 -0400789 xs_sock_reset_state_flags(xprt);
Trond Myklebustb70ae912015-02-09 09:41:32 -0500790 smp_mb__after_atomic();
791}
792
793static void xs_sock_mark_closed(struct rpc_xprt *xprt)
794{
795 xs_sock_reset_connection_flags(xprt);
796 /* Mark transport as closed and wake up all pending tasks */
797 xprt_disconnect_done(xprt);
798}
799
Trond Myklebust21180712013-12-31 13:22:59 -0500800/**
801 * xs_error_report - callback to handle TCP socket state errors
802 * @sk: socket
803 *
804 * Note: we don't call sock_error() since there may be a rpc_task
805 * using the socket, and so we don't want to clear sk->sk_err.
806 */
807static void xs_error_report(struct sock *sk)
808{
809 struct rpc_xprt *xprt;
810 int err;
811
812 read_lock_bh(&sk->sk_callback_lock);
813 if (!(xprt = xprt_from_sock(sk)))
814 goto out;
815
816 err = -sk->sk_err;
817 if (err == 0)
818 goto out;
Trond Myklebustb70ae912015-02-09 09:41:32 -0500819 /* Is this a reset event? */
820 if (sk->sk_state == TCP_CLOSE)
821 xs_sock_mark_closed(xprt);
Trond Myklebust21180712013-12-31 13:22:59 -0500822 dprintk("RPC: xs_error_report client %p, error=%d...\n",
823 xprt, -err);
Trond Myklebuste8353c762013-12-31 13:39:22 -0500824 trace_rpc_socket_error(xprt, sk->sk_socket, err);
Trond Myklebust21180712013-12-31 13:22:59 -0500825 xprt_wake_pending_tasks(xprt, err);
826 out:
827 read_unlock_bh(&sk->sk_callback_lock);
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400828}
829
Chuck Leverfe315e72009-03-11 14:10:21 -0400830static void xs_reset_transport(struct sock_xprt *transport)
Chuck Levera246b012005-08-11 16:25:23 -0400831{
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500832 struct socket *sock = transport->sock;
833 struct sock *sk = transport->inet;
Trond Myklebust6cc7e902015-02-08 18:35:25 -0500834 struct rpc_xprt *xprt = &transport->xprt;
Chuck Levera246b012005-08-11 16:25:23 -0400835
Chuck Leverfe315e72009-03-11 14:10:21 -0400836 if (sk == NULL)
837 return;
Chuck Lever9903cd12005-08-11 16:25:26 -0400838
Jeff Layton264d1df2015-06-03 16:14:27 -0400839 if (atomic_read(&transport->xprt.swapper))
840 sk_clear_memalloc(sk);
841
Trond Myklebust09939202015-08-29 19:11:21 -0700842 kernel_sock_shutdown(sock, SHUT_RDWR);
843
Trond Myklebustedc1b012015-10-05 10:53:49 -0400844 mutex_lock(&transport->recv_mutex);
Chuck Levera246b012005-08-11 16:25:23 -0400845 write_lock_bh(&sk->sk_callback_lock);
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500846 transport->inet = NULL;
847 transport->sock = NULL;
Chuck Levera246b012005-08-11 16:25:23 -0400848
Chuck Lever9903cd12005-08-11 16:25:26 -0400849 sk->sk_user_data = NULL;
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400850
851 xs_restore_old_callbacks(transport, sk);
Trond Myklebust0c787892015-08-29 13:36:30 -0700852 xprt_clear_connected(xprt);
Chuck Levera246b012005-08-11 16:25:23 -0400853 write_unlock_bh(&sk->sk_callback_lock);
Trond Myklebust6cc7e902015-02-08 18:35:25 -0500854 xs_sock_reset_connection_flags(xprt);
Trond Myklebustedc1b012015-10-05 10:53:49 -0400855 mutex_unlock(&transport->recv_mutex);
Chuck Levera246b012005-08-11 16:25:23 -0400856
Trond Myklebust6cc7e902015-02-08 18:35:25 -0500857 trace_rpc_socket_close(xprt, sock);
Chuck Levera246b012005-08-11 16:25:23 -0400858 sock_release(sock);
Chuck Leverfe315e72009-03-11 14:10:21 -0400859}
860
861/**
862 * xs_close - close a socket
863 * @xprt: transport
864 *
865 * This is used when all requests are complete; ie, no DRC state remains
866 * on the server we want to save.
Trond Myklebustf75e6742009-04-21 17:18:20 -0400867 *
868 * The caller _must_ be holding XPRT_LOCKED in order to avoid issues with
869 * xs_reset_transport() zeroing the socket from underneath a writer.
Chuck Leverfe315e72009-03-11 14:10:21 -0400870 */
871static void xs_close(struct rpc_xprt *xprt)
872{
873 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
874
875 dprintk("RPC: xs_close xprt %p\n", xprt);
876
877 xs_reset_transport(transport);
Neil Brown61d0a8e2009-09-23 14:36:37 -0400878 xprt->reestablish_timeout = 0;
Chuck Leverfe315e72009-03-11 14:10:21 -0400879
Trond Myklebust62da3b22007-11-06 18:44:20 -0500880 xprt_disconnect_done(xprt);
Chuck Levera246b012005-08-11 16:25:23 -0400881}
882
Chuck Lever4a068252015-05-11 14:02:25 -0400883static void xs_inject_disconnect(struct rpc_xprt *xprt)
884{
885 dprintk("RPC: injecting transport disconnect on xprt=%p\n",
886 xprt);
887 xprt_disconnect_done(xprt);
888}
889
Kinglong Mee315f3812014-03-24 11:07:22 +0800890static void xs_xprt_free(struct rpc_xprt *xprt)
891{
892 xs_free_peer_addresses(xprt);
893 xprt_free(xprt);
894}
895
Chuck Lever9903cd12005-08-11 16:25:26 -0400896/**
897 * xs_destroy - prepare to shutdown a transport
898 * @xprt: doomed transport
899 *
900 */
901static void xs_destroy(struct rpc_xprt *xprt)
Chuck Levera246b012005-08-11 16:25:23 -0400902{
Trond Myklebust03c788272015-09-17 10:42:27 -0400903 struct sock_xprt *transport = container_of(xprt,
904 struct sock_xprt, xprt);
Chuck Lever46121cf2007-01-31 12:14:08 -0500905 dprintk("RPC: xs_destroy xprt %p\n", xprt);
Chuck Lever9903cd12005-08-11 16:25:26 -0400906
Trond Myklebust03c788272015-09-17 10:42:27 -0400907 cancel_delayed_work_sync(&transport->connect_worker);
Trond Myklebusta1311d82013-10-31 09:18:49 -0400908 xs_close(xprt);
Trond Myklebustedc1b012015-10-05 10:53:49 -0400909 cancel_work_sync(&transport->recv_worker);
Kinglong Mee315f3812014-03-24 11:07:22 +0800910 xs_xprt_free(xprt);
Trond Myklebusta1311d82013-10-31 09:18:49 -0400911 module_put(THIS_MODULE);
Chuck Levera246b012005-08-11 16:25:23 -0400912}
913
Chuck Lever176e21e2011-05-09 15:22:44 -0400914static int xs_local_copy_to_xdr(struct xdr_buf *xdr, struct sk_buff *skb)
915{
916 struct xdr_skb_reader desc = {
917 .skb = skb,
918 .offset = sizeof(rpc_fraghdr),
919 .count = skb->len - sizeof(rpc_fraghdr),
920 };
921
922 if (xdr_partial_copy_from_skb(xdr, 0, &desc, xdr_skb_read_bits) < 0)
923 return -1;
924 if (desc.count)
925 return -1;
926 return 0;
927}
928
929/**
Trond Myklebusta2648092015-10-06 17:03:00 -0400930 * xs_local_data_read_skb
931 * @xprt: transport
932 * @sk: socket
933 * @skb: skbuff
Chuck Lever176e21e2011-05-09 15:22:44 -0400934 *
935 * Currently this assumes we can read the whole reply in a single gulp.
936 */
Trond Myklebusta2648092015-10-06 17:03:00 -0400937static void xs_local_data_read_skb(struct rpc_xprt *xprt,
938 struct sock *sk,
939 struct sk_buff *skb)
Chuck Lever176e21e2011-05-09 15:22:44 -0400940{
941 struct rpc_task *task;
Chuck Lever176e21e2011-05-09 15:22:44 -0400942 struct rpc_rqst *rovr;
Trond Myklebusta2648092015-10-06 17:03:00 -0400943 int repsize, copied;
Chuck Lever176e21e2011-05-09 15:22:44 -0400944 u32 _xid;
945 __be32 *xp;
946
Chuck Lever176e21e2011-05-09 15:22:44 -0400947 repsize = skb->len - sizeof(rpc_fraghdr);
948 if (repsize < 4) {
949 dprintk("RPC: impossible RPC reply size %d\n", repsize);
Trond Myklebusta2648092015-10-06 17:03:00 -0400950 return;
Chuck Lever176e21e2011-05-09 15:22:44 -0400951 }
952
953 /* Copy the XID from the skb... */
954 xp = skb_header_pointer(skb, sizeof(rpc_fraghdr), sizeof(_xid), &_xid);
955 if (xp == NULL)
Trond Myklebusta2648092015-10-06 17:03:00 -0400956 return;
Chuck Lever176e21e2011-05-09 15:22:44 -0400957
958 /* Look up and lock the request corresponding to the given XID */
Trond Myklebusta2648092015-10-06 17:03:00 -0400959 spin_lock_bh(&xprt->transport_lock);
Chuck Lever176e21e2011-05-09 15:22:44 -0400960 rovr = xprt_lookup_rqst(xprt, *xp);
961 if (!rovr)
962 goto out_unlock;
963 task = rovr->rq_task;
964
965 copied = rovr->rq_private_buf.buflen;
966 if (copied > repsize)
967 copied = repsize;
968
969 if (xs_local_copy_to_xdr(&rovr->rq_private_buf, skb)) {
970 dprintk("RPC: sk_buff copy failed\n");
971 goto out_unlock;
972 }
973
974 xprt_complete_rqst(task, copied);
975
976 out_unlock:
Trond Myklebusta2648092015-10-06 17:03:00 -0400977 spin_unlock_bh(&xprt->transport_lock);
978}
979
980static void xs_local_data_receive(struct sock_xprt *transport)
981{
982 struct sk_buff *skb;
983 struct sock *sk;
984 int err;
985
986 mutex_lock(&transport->recv_mutex);
987 sk = transport->inet;
988 if (sk == NULL)
989 goto out;
990 for (;;) {
991 skb = skb_recv_datagram(sk, 0, 1, &err);
Trond Myklebust42d42a52016-05-23 09:24:55 -0400992 if (skb != NULL) {
993 xs_local_data_read_skb(&transport->xprt, sk, skb);
994 skb_free_datagram(sk, skb);
995 continue;
996 }
997 if (!test_and_clear_bit(XPRT_SOCK_DATA_READY, &transport->sock_state))
Trond Myklebusta2648092015-10-06 17:03:00 -0400998 break;
Trond Myklebusta2648092015-10-06 17:03:00 -0400999 }
1000out:
1001 mutex_unlock(&transport->recv_mutex);
1002}
1003
1004static void xs_local_data_receive_workfn(struct work_struct *work)
1005{
1006 struct sock_xprt *transport =
1007 container_of(work, struct sock_xprt, recv_worker);
1008 xs_local_data_receive(transport);
Chuck Lever176e21e2011-05-09 15:22:44 -04001009}
1010
Chuck Lever9903cd12005-08-11 16:25:26 -04001011/**
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001012 * xs_udp_data_read_skb - receive callback for UDP sockets
1013 * @xprt: transport
1014 * @sk: socket
1015 * @skb: skbuff
Chuck Lever9903cd12005-08-11 16:25:26 -04001016 *
1017 */
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001018static void xs_udp_data_read_skb(struct rpc_xprt *xprt,
1019 struct sock *sk,
1020 struct sk_buff *skb)
Chuck Lever9903cd12005-08-11 16:25:26 -04001021{
1022 struct rpc_task *task;
Chuck Levera246b012005-08-11 16:25:23 -04001023 struct rpc_rqst *rovr;
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001024 int repsize, copied;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001025 u32 _xid;
1026 __be32 *xp;
Chuck Levera246b012005-08-11 16:25:23 -04001027
Willem de Bruijn1da8c6812016-04-07 11:44:58 -04001028 repsize = skb->len;
Chuck Levera246b012005-08-11 16:25:23 -04001029 if (repsize < 4) {
Chuck Lever46121cf2007-01-31 12:14:08 -05001030 dprintk("RPC: impossible RPC reply size %d!\n", repsize);
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001031 return;
Chuck Levera246b012005-08-11 16:25:23 -04001032 }
1033
1034 /* Copy the XID from the skb... */
Willem de Bruijn1da8c6812016-04-07 11:44:58 -04001035 xp = skb_header_pointer(skb, 0, sizeof(_xid), &_xid);
Chuck Levera246b012005-08-11 16:25:23 -04001036 if (xp == NULL)
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001037 return;
Chuck Levera246b012005-08-11 16:25:23 -04001038
1039 /* Look up and lock the request corresponding to the given XID */
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001040 spin_lock_bh(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001041 rovr = xprt_lookup_rqst(xprt, *xp);
1042 if (!rovr)
1043 goto out_unlock;
1044 task = rovr->rq_task;
1045
Chuck Levera246b012005-08-11 16:25:23 -04001046 if ((copied = rovr->rq_private_buf.buflen) > repsize)
1047 copied = repsize;
1048
1049 /* Suck it into the iovec, verify checksum if not done by hw. */
Herbert Xu1781f7f2007-12-11 11:30:32 -08001050 if (csum_partial_copy_to_xdr(&rovr->rq_private_buf, skb)) {
Eric Dumazet02c22342016-04-27 16:44:30 -07001051 __UDPX_INC_STATS(sk, UDP_MIB_INERRORS);
Chuck Levera246b012005-08-11 16:25:23 -04001052 goto out_unlock;
Herbert Xu1781f7f2007-12-11 11:30:32 -08001053 }
1054
Eric Dumazet02c22342016-04-27 16:44:30 -07001055 __UDPX_INC_STATS(sk, UDP_MIB_INDATAGRAMS);
Chuck Levera246b012005-08-11 16:25:23 -04001056
Trond Myklebust6a24dfb2013-01-08 09:48:15 -05001057 xprt_adjust_cwnd(xprt, task, copied);
Chuck Lever1570c1e2005-08-25 16:25:52 -07001058 xprt_complete_rqst(task, copied);
Chuck Levera246b012005-08-11 16:25:23 -04001059
1060 out_unlock:
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001061 spin_unlock_bh(&xprt->transport_lock);
1062}
1063
1064static void xs_udp_data_receive(struct sock_xprt *transport)
1065{
1066 struct sk_buff *skb;
1067 struct sock *sk;
1068 int err;
1069
1070 mutex_lock(&transport->recv_mutex);
1071 sk = transport->inet;
1072 if (sk == NULL)
1073 goto out;
1074 for (;;) {
1075 skb = skb_recv_datagram(sk, 0, 1, &err);
Trond Myklebust42d42a52016-05-23 09:24:55 -04001076 if (skb != NULL) {
1077 xs_udp_data_read_skb(&transport->xprt, sk, skb);
1078 skb_free_datagram(sk, skb);
1079 continue;
1080 }
1081 if (!test_and_clear_bit(XPRT_SOCK_DATA_READY, &transport->sock_state))
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001082 break;
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001083 }
1084out:
1085 mutex_unlock(&transport->recv_mutex);
1086}
1087
1088static void xs_udp_data_receive_workfn(struct work_struct *work)
1089{
1090 struct sock_xprt *transport =
1091 container_of(work, struct sock_xprt, recv_worker);
1092 xs_udp_data_receive(transport);
1093}
1094
1095/**
1096 * xs_data_ready - "data ready" callback for UDP sockets
1097 * @sk: socket with data to read
1098 *
1099 */
1100static void xs_data_ready(struct sock *sk)
1101{
1102 struct rpc_xprt *xprt;
1103
1104 read_lock_bh(&sk->sk_callback_lock);
1105 dprintk("RPC: xs_data_ready...\n");
1106 xprt = xprt_from_sock(sk);
1107 if (xprt != NULL) {
1108 struct sock_xprt *transport = container_of(xprt,
1109 struct sock_xprt, xprt);
Trond Myklebust5157b952016-05-29 10:13:24 -04001110 transport->old_data_ready(sk);
1111 /* Any data means we had a useful conversation, so
1112 * then we don't need to delay the next reconnect
1113 */
1114 if (xprt->reestablish_timeout)
1115 xprt->reestablish_timeout = 0;
Trond Myklebust42d42a52016-05-23 09:24:55 -04001116 if (!test_and_set_bit(XPRT_SOCK_DATA_READY, &transport->sock_state))
Trond Myklebust40a5f1b2016-05-27 10:39:50 -04001117 queue_work(xprtiod_workqueue, &transport->recv_worker);
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001118 }
Eric Dumazetf064af12010-09-22 12:43:39 +00001119 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001120}
1121
Trond Myklebusta519fc72012-09-12 16:49:15 -04001122/*
1123 * Helper function to force a TCP close if the server is sending
1124 * junk and/or it has put us in CLOSE_WAIT
1125 */
1126static void xs_tcp_force_close(struct rpc_xprt *xprt)
1127{
Trond Myklebusta519fc72012-09-12 16:49:15 -04001128 xprt_force_disconnect(xprt);
1129}
1130
Chuck Leverdd456472006-12-05 16:35:44 -05001131static inline void xs_tcp_read_fraghdr(struct rpc_xprt *xprt, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001132{
Chuck Lever51971132006-12-05 16:35:19 -05001133 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001134 size_t len, used;
1135 char *p;
1136
Chuck Lever51971132006-12-05 16:35:19 -05001137 p = ((char *) &transport->tcp_fraghdr) + transport->tcp_offset;
1138 len = sizeof(transport->tcp_fraghdr) - transport->tcp_offset;
Chuck Lever9d292312006-12-05 16:35:41 -05001139 used = xdr_skb_read_bits(desc, p, len);
Chuck Lever51971132006-12-05 16:35:19 -05001140 transport->tcp_offset += used;
Chuck Levera246b012005-08-11 16:25:23 -04001141 if (used != len)
1142 return;
Chuck Lever808012f2005-08-25 16:25:49 -07001143
Chuck Lever51971132006-12-05 16:35:19 -05001144 transport->tcp_reclen = ntohl(transport->tcp_fraghdr);
1145 if (transport->tcp_reclen & RPC_LAST_STREAM_FRAGMENT)
Chuck Levere136d092006-12-05 16:35:23 -05001146 transport->tcp_flags |= TCP_RCV_LAST_FRAG;
Chuck Levera246b012005-08-11 16:25:23 -04001147 else
Chuck Levere136d092006-12-05 16:35:23 -05001148 transport->tcp_flags &= ~TCP_RCV_LAST_FRAG;
Chuck Lever51971132006-12-05 16:35:19 -05001149 transport->tcp_reclen &= RPC_FRAGMENT_SIZE_MASK;
Chuck Lever808012f2005-08-25 16:25:49 -07001150
Chuck Levere136d092006-12-05 16:35:23 -05001151 transport->tcp_flags &= ~TCP_RCV_COPY_FRAGHDR;
Chuck Lever51971132006-12-05 16:35:19 -05001152 transport->tcp_offset = 0;
Chuck Lever808012f2005-08-25 16:25:49 -07001153
Chuck Levera246b012005-08-11 16:25:23 -04001154 /* Sanity check of the record length */
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001155 if (unlikely(transport->tcp_reclen < 8)) {
Chuck Lever46121cf2007-01-31 12:14:08 -05001156 dprintk("RPC: invalid TCP record fragment length\n");
Trond Myklebusta519fc72012-09-12 16:49:15 -04001157 xs_tcp_force_close(xprt);
Chuck Lever9903cd12005-08-11 16:25:26 -04001158 return;
Chuck Levera246b012005-08-11 16:25:23 -04001159 }
Chuck Lever46121cf2007-01-31 12:14:08 -05001160 dprintk("RPC: reading TCP record fragment of length %d\n",
Chuck Lever51971132006-12-05 16:35:19 -05001161 transport->tcp_reclen);
Chuck Levera246b012005-08-11 16:25:23 -04001162}
1163
Chuck Lever51971132006-12-05 16:35:19 -05001164static void xs_tcp_check_fraghdr(struct sock_xprt *transport)
Chuck Levera246b012005-08-11 16:25:23 -04001165{
Chuck Lever51971132006-12-05 16:35:19 -05001166 if (transport->tcp_offset == transport->tcp_reclen) {
Chuck Levere136d092006-12-05 16:35:23 -05001167 transport->tcp_flags |= TCP_RCV_COPY_FRAGHDR;
Chuck Lever51971132006-12-05 16:35:19 -05001168 transport->tcp_offset = 0;
Chuck Levere136d092006-12-05 16:35:23 -05001169 if (transport->tcp_flags & TCP_RCV_LAST_FRAG) {
1170 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
1171 transport->tcp_flags |= TCP_RCV_COPY_XID;
Chuck Lever51971132006-12-05 16:35:19 -05001172 transport->tcp_copied = 0;
Chuck Levera246b012005-08-11 16:25:23 -04001173 }
1174 }
1175}
1176
Chuck Leverdd456472006-12-05 16:35:44 -05001177static inline void xs_tcp_read_xid(struct sock_xprt *transport, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001178{
1179 size_t len, used;
1180 char *p;
1181
Chuck Lever51971132006-12-05 16:35:19 -05001182 len = sizeof(transport->tcp_xid) - transport->tcp_offset;
Chuck Lever46121cf2007-01-31 12:14:08 -05001183 dprintk("RPC: reading XID (%Zu bytes)\n", len);
Chuck Lever51971132006-12-05 16:35:19 -05001184 p = ((char *) &transport->tcp_xid) + transport->tcp_offset;
Chuck Lever9d292312006-12-05 16:35:41 -05001185 used = xdr_skb_read_bits(desc, p, len);
Chuck Lever51971132006-12-05 16:35:19 -05001186 transport->tcp_offset += used;
Chuck Levera246b012005-08-11 16:25:23 -04001187 if (used != len)
1188 return;
Chuck Levere136d092006-12-05 16:35:23 -05001189 transport->tcp_flags &= ~TCP_RCV_COPY_XID;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001190 transport->tcp_flags |= TCP_RCV_READ_CALLDIR;
Chuck Lever51971132006-12-05 16:35:19 -05001191 transport->tcp_copied = 4;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001192 dprintk("RPC: reading %s XID %08x\n",
1193 (transport->tcp_flags & TCP_RPC_REPLY) ? "reply for"
1194 : "request with",
Chuck Lever51971132006-12-05 16:35:19 -05001195 ntohl(transport->tcp_xid));
1196 xs_tcp_check_fraghdr(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001197}
1198
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001199static inline void xs_tcp_read_calldir(struct sock_xprt *transport,
1200 struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001201{
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001202 size_t len, used;
1203 u32 offset;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001204 char *p;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001205
1206 /*
1207 * We want transport->tcp_offset to be 8 at the end of this routine
1208 * (4 bytes for the xid and 4 bytes for the call/reply flag).
1209 * When this function is called for the first time,
1210 * transport->tcp_offset is 4 (after having already read the xid).
1211 */
1212 offset = transport->tcp_offset - sizeof(transport->tcp_xid);
Trond Myklebustb76ce562010-06-16 13:57:32 -04001213 len = sizeof(transport->tcp_calldir) - offset;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001214 dprintk("RPC: reading CALL/REPLY flag (%Zu bytes)\n", len);
Trond Myklebustb76ce562010-06-16 13:57:32 -04001215 p = ((char *) &transport->tcp_calldir) + offset;
1216 used = xdr_skb_read_bits(desc, p, len);
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001217 transport->tcp_offset += used;
1218 if (used != len)
1219 return;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001220 transport->tcp_flags &= ~TCP_RCV_READ_CALLDIR;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001221 /*
1222 * We don't yet have the XDR buffer, so we will write the calldir
1223 * out after we get the buffer from the 'struct rpc_rqst'
1224 */
Trond Myklebustb76ce562010-06-16 13:57:32 -04001225 switch (ntohl(transport->tcp_calldir)) {
1226 case RPC_REPLY:
1227 transport->tcp_flags |= TCP_RCV_COPY_CALLDIR;
1228 transport->tcp_flags |= TCP_RCV_COPY_DATA;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001229 transport->tcp_flags |= TCP_RPC_REPLY;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001230 break;
1231 case RPC_CALL:
1232 transport->tcp_flags |= TCP_RCV_COPY_CALLDIR;
1233 transport->tcp_flags |= TCP_RCV_COPY_DATA;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001234 transport->tcp_flags &= ~TCP_RPC_REPLY;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001235 break;
1236 default:
1237 dprintk("RPC: invalid request message type\n");
Trond Myklebusta519fc72012-09-12 16:49:15 -04001238 xs_tcp_force_close(&transport->xprt);
Trond Myklebustb76ce562010-06-16 13:57:32 -04001239 }
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001240 xs_tcp_check_fraghdr(transport);
1241}
1242
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001243static inline void xs_tcp_read_common(struct rpc_xprt *xprt,
1244 struct xdr_skb_reader *desc,
1245 struct rpc_rqst *req)
Chuck Levera246b012005-08-11 16:25:23 -04001246{
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001247 struct sock_xprt *transport =
1248 container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001249 struct xdr_buf *rcvbuf;
1250 size_t len;
1251 ssize_t r;
1252
Chuck Levera246b012005-08-11 16:25:23 -04001253 rcvbuf = &req->rq_private_buf;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001254
1255 if (transport->tcp_flags & TCP_RCV_COPY_CALLDIR) {
1256 /*
1257 * Save the RPC direction in the XDR buffer
1258 */
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001259 memcpy(rcvbuf->head[0].iov_base + transport->tcp_copied,
Trond Myklebustb76ce562010-06-16 13:57:32 -04001260 &transport->tcp_calldir,
1261 sizeof(transport->tcp_calldir));
1262 transport->tcp_copied += sizeof(transport->tcp_calldir);
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001263 transport->tcp_flags &= ~TCP_RCV_COPY_CALLDIR;
Chuck Levera246b012005-08-11 16:25:23 -04001264 }
1265
Chuck Levera246b012005-08-11 16:25:23 -04001266 len = desc->count;
Chuck Lever51971132006-12-05 16:35:19 -05001267 if (len > transport->tcp_reclen - transport->tcp_offset) {
Chuck Leverdd456472006-12-05 16:35:44 -05001268 struct xdr_skb_reader my_desc;
Chuck Levera246b012005-08-11 16:25:23 -04001269
Chuck Lever51971132006-12-05 16:35:19 -05001270 len = transport->tcp_reclen - transport->tcp_offset;
Chuck Levera246b012005-08-11 16:25:23 -04001271 memcpy(&my_desc, desc, sizeof(my_desc));
1272 my_desc.count = len;
Chuck Lever51971132006-12-05 16:35:19 -05001273 r = xdr_partial_copy_from_skb(rcvbuf, transport->tcp_copied,
Chuck Lever9d292312006-12-05 16:35:41 -05001274 &my_desc, xdr_skb_read_bits);
Chuck Levera246b012005-08-11 16:25:23 -04001275 desc->count -= r;
1276 desc->offset += r;
1277 } else
Chuck Lever51971132006-12-05 16:35:19 -05001278 r = xdr_partial_copy_from_skb(rcvbuf, transport->tcp_copied,
Chuck Lever9d292312006-12-05 16:35:41 -05001279 desc, xdr_skb_read_bits);
Chuck Levera246b012005-08-11 16:25:23 -04001280
1281 if (r > 0) {
Chuck Lever51971132006-12-05 16:35:19 -05001282 transport->tcp_copied += r;
1283 transport->tcp_offset += r;
Chuck Levera246b012005-08-11 16:25:23 -04001284 }
1285 if (r != len) {
1286 /* Error when copying to the receive buffer,
1287 * usually because we weren't able to allocate
1288 * additional buffer pages. All we can do now
Chuck Levere136d092006-12-05 16:35:23 -05001289 * is turn off TCP_RCV_COPY_DATA, so the request
Chuck Levera246b012005-08-11 16:25:23 -04001290 * will not receive any additional updates,
1291 * and time out.
1292 * Any remaining data from this record will
1293 * be discarded.
1294 */
Chuck Levere136d092006-12-05 16:35:23 -05001295 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Lever46121cf2007-01-31 12:14:08 -05001296 dprintk("RPC: XID %08x truncated request\n",
Chuck Lever51971132006-12-05 16:35:19 -05001297 ntohl(transport->tcp_xid));
Chuck Lever46121cf2007-01-31 12:14:08 -05001298 dprintk("RPC: xprt = %p, tcp_copied = %lu, "
1299 "tcp_offset = %u, tcp_reclen = %u\n",
1300 xprt, transport->tcp_copied,
1301 transport->tcp_offset, transport->tcp_reclen);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001302 return;
Chuck Levera246b012005-08-11 16:25:23 -04001303 }
1304
Chuck Lever46121cf2007-01-31 12:14:08 -05001305 dprintk("RPC: XID %08x read %Zd bytes\n",
Chuck Lever51971132006-12-05 16:35:19 -05001306 ntohl(transport->tcp_xid), r);
Chuck Lever46121cf2007-01-31 12:14:08 -05001307 dprintk("RPC: xprt = %p, tcp_copied = %lu, tcp_offset = %u, "
1308 "tcp_reclen = %u\n", xprt, transport->tcp_copied,
1309 transport->tcp_offset, transport->tcp_reclen);
Chuck Levera246b012005-08-11 16:25:23 -04001310
Chuck Lever51971132006-12-05 16:35:19 -05001311 if (transport->tcp_copied == req->rq_private_buf.buflen)
Chuck Levere136d092006-12-05 16:35:23 -05001312 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Lever51971132006-12-05 16:35:19 -05001313 else if (transport->tcp_offset == transport->tcp_reclen) {
Chuck Levere136d092006-12-05 16:35:23 -05001314 if (transport->tcp_flags & TCP_RCV_LAST_FRAG)
1315 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Levera246b012005-08-11 16:25:23 -04001316 }
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001317}
1318
1319/*
1320 * Finds the request corresponding to the RPC xid and invokes the common
1321 * tcp read code to read the data.
1322 */
1323static inline int xs_tcp_read_reply(struct rpc_xprt *xprt,
1324 struct xdr_skb_reader *desc)
1325{
1326 struct sock_xprt *transport =
1327 container_of(xprt, struct sock_xprt, xprt);
1328 struct rpc_rqst *req;
1329
1330 dprintk("RPC: read reply XID %08x\n", ntohl(transport->tcp_xid));
1331
1332 /* Find and lock the request corresponding to this xid */
Trond Myklebustedc1b012015-10-05 10:53:49 -04001333 spin_lock_bh(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001334 req = xprt_lookup_rqst(xprt, transport->tcp_xid);
1335 if (!req) {
1336 dprintk("RPC: XID %08x request not found!\n",
1337 ntohl(transport->tcp_xid));
Trond Myklebustedc1b012015-10-05 10:53:49 -04001338 spin_unlock_bh(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001339 return -1;
1340 }
1341
1342 xs_tcp_read_common(xprt, desc, req);
1343
Chuck Levere136d092006-12-05 16:35:23 -05001344 if (!(transport->tcp_flags & TCP_RCV_COPY_DATA))
Chuck Lever51971132006-12-05 16:35:19 -05001345 xprt_complete_rqst(req->rq_task, transport->tcp_copied);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001346
Trond Myklebustedc1b012015-10-05 10:53:49 -04001347 spin_unlock_bh(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001348 return 0;
1349}
1350
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001351#if defined(CONFIG_SUNRPC_BACKCHANNEL)
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001352/*
1353 * Obtains an rpc_rqst previously allocated and invokes the common
1354 * tcp read code to read the data. The result is placed in the callback
1355 * queue.
1356 * If we're unable to obtain the rpc_rqst we schedule the closing of the
1357 * connection and return -1.
1358 */
Trond Myklebust2ea24492014-02-10 11:18:39 -05001359static int xs_tcp_read_callback(struct rpc_xprt *xprt,
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001360 struct xdr_skb_reader *desc)
1361{
1362 struct sock_xprt *transport =
1363 container_of(xprt, struct sock_xprt, xprt);
1364 struct rpc_rqst *req;
1365
Trond Myklebust2ea24492014-02-10 11:18:39 -05001366 /* Look up and lock the request corresponding to the given XID */
Trond Myklebustedc1b012015-10-05 10:53:49 -04001367 spin_lock_bh(&xprt->transport_lock);
Trond Myklebust2ea24492014-02-10 11:18:39 -05001368 req = xprt_lookup_bc_request(xprt, transport->tcp_xid);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001369 if (req == NULL) {
Trond Myklebustedc1b012015-10-05 10:53:49 -04001370 spin_unlock_bh(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001371 printk(KERN_WARNING "Callback slot table overflowed\n");
1372 xprt_force_disconnect(xprt);
1373 return -1;
1374 }
1375
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001376 dprintk("RPC: read callback XID %08x\n", ntohl(req->rq_xid));
1377 xs_tcp_read_common(xprt, desc, req);
1378
Trond Myklebust2ea24492014-02-10 11:18:39 -05001379 if (!(transport->tcp_flags & TCP_RCV_COPY_DATA))
1380 xprt_complete_bc_request(req, transport->tcp_copied);
Trond Myklebustedc1b012015-10-05 10:53:49 -04001381 spin_unlock_bh(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001382
1383 return 0;
1384}
1385
1386static inline int _xs_tcp_read_data(struct rpc_xprt *xprt,
1387 struct xdr_skb_reader *desc)
1388{
1389 struct sock_xprt *transport =
1390 container_of(xprt, struct sock_xprt, xprt);
1391
1392 return (transport->tcp_flags & TCP_RPC_REPLY) ?
1393 xs_tcp_read_reply(xprt, desc) :
1394 xs_tcp_read_callback(xprt, desc);
1395}
Chuck Lever76566772015-10-24 17:28:32 -04001396
1397static int xs_tcp_bc_up(struct svc_serv *serv, struct net *net)
1398{
1399 int ret;
1400
1401 ret = svc_create_xprt(serv, "tcp-bc", net, PF_INET, 0,
1402 SVC_SOCK_ANONYMOUS);
1403 if (ret < 0)
1404 return ret;
1405 return 0;
1406}
Chuck Lever6b26cc82016-05-02 14:40:40 -04001407
1408static size_t xs_tcp_bc_maxpayload(struct rpc_xprt *xprt)
1409{
1410 return PAGE_SIZE;
1411}
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001412#else
1413static inline int _xs_tcp_read_data(struct rpc_xprt *xprt,
1414 struct xdr_skb_reader *desc)
1415{
1416 return xs_tcp_read_reply(xprt, desc);
1417}
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001418#endif /* CONFIG_SUNRPC_BACKCHANNEL */
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001419
1420/*
1421 * Read data off the transport. This can be either an RPC_CALL or an
1422 * RPC_REPLY. Relay the processing to helper functions.
1423 */
1424static void xs_tcp_read_data(struct rpc_xprt *xprt,
1425 struct xdr_skb_reader *desc)
1426{
1427 struct sock_xprt *transport =
1428 container_of(xprt, struct sock_xprt, xprt);
1429
1430 if (_xs_tcp_read_data(xprt, desc) == 0)
1431 xs_tcp_check_fraghdr(transport);
1432 else {
1433 /*
1434 * The transport_lock protects the request handling.
1435 * There's no need to hold it to update the tcp_flags.
1436 */
1437 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
1438 }
Chuck Levera246b012005-08-11 16:25:23 -04001439}
1440
Chuck Leverdd456472006-12-05 16:35:44 -05001441static inline void xs_tcp_read_discard(struct sock_xprt *transport, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001442{
1443 size_t len;
1444
Chuck Lever51971132006-12-05 16:35:19 -05001445 len = transport->tcp_reclen - transport->tcp_offset;
Chuck Levera246b012005-08-11 16:25:23 -04001446 if (len > desc->count)
1447 len = desc->count;
1448 desc->count -= len;
1449 desc->offset += len;
Chuck Lever51971132006-12-05 16:35:19 -05001450 transport->tcp_offset += len;
Chuck Lever46121cf2007-01-31 12:14:08 -05001451 dprintk("RPC: discarded %Zu bytes\n", len);
Chuck Lever51971132006-12-05 16:35:19 -05001452 xs_tcp_check_fraghdr(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001453}
1454
Chuck Lever9903cd12005-08-11 16:25:26 -04001455static 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 -04001456{
1457 struct rpc_xprt *xprt = rd_desc->arg.data;
Chuck Lever51971132006-12-05 16:35:19 -05001458 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Leverdd456472006-12-05 16:35:44 -05001459 struct xdr_skb_reader desc = {
Chuck Levera246b012005-08-11 16:25:23 -04001460 .skb = skb,
1461 .offset = offset,
1462 .count = len,
Chuck Lever9903cd12005-08-11 16:25:26 -04001463 };
Chuck Levera246b012005-08-11 16:25:23 -04001464
Chuck Lever46121cf2007-01-31 12:14:08 -05001465 dprintk("RPC: xs_tcp_data_recv started\n");
Chuck Levera246b012005-08-11 16:25:23 -04001466 do {
Jeff Layton1a867a02014-10-28 14:24:14 -04001467 trace_xs_tcp_data_recv(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001468 /* Read in a new fragment marker if necessary */
1469 /* Can we ever really expect to get completely empty fragments? */
Chuck Levere136d092006-12-05 16:35:23 -05001470 if (transport->tcp_flags & TCP_RCV_COPY_FRAGHDR) {
Chuck Lever9903cd12005-08-11 16:25:26 -04001471 xs_tcp_read_fraghdr(xprt, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001472 continue;
1473 }
1474 /* Read in the xid if necessary */
Chuck Levere136d092006-12-05 16:35:23 -05001475 if (transport->tcp_flags & TCP_RCV_COPY_XID) {
Chuck Lever51971132006-12-05 16:35:19 -05001476 xs_tcp_read_xid(transport, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001477 continue;
1478 }
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001479 /* Read in the call/reply flag */
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001480 if (transport->tcp_flags & TCP_RCV_READ_CALLDIR) {
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001481 xs_tcp_read_calldir(transport, &desc);
1482 continue;
1483 }
Chuck Levera246b012005-08-11 16:25:23 -04001484 /* Read in the request data */
Chuck Levere136d092006-12-05 16:35:23 -05001485 if (transport->tcp_flags & TCP_RCV_COPY_DATA) {
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001486 xs_tcp_read_data(xprt, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001487 continue;
1488 }
1489 /* Skip over any trailing bytes on short reads */
Chuck Lever51971132006-12-05 16:35:19 -05001490 xs_tcp_read_discard(transport, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001491 } while (desc.count);
Jeff Layton1a867a02014-10-28 14:24:14 -04001492 trace_xs_tcp_data_recv(transport);
Chuck Lever46121cf2007-01-31 12:14:08 -05001493 dprintk("RPC: xs_tcp_data_recv done\n");
Chuck Levera246b012005-08-11 16:25:23 -04001494 return len - desc.count;
1495}
1496
Trond Myklebust66d7a562015-10-05 11:19:20 -04001497static void xs_tcp_data_receive(struct sock_xprt *transport)
1498{
1499 struct rpc_xprt *xprt = &transport->xprt;
1500 struct sock *sk;
1501 read_descriptor_t rd_desc = {
1502 .count = 2*1024*1024,
1503 .arg.data = xprt,
1504 };
1505 unsigned long total = 0;
1506 int read = 0;
1507
Trond Myklebustedc1b012015-10-05 10:53:49 -04001508 mutex_lock(&transport->recv_mutex);
Trond Myklebust66d7a562015-10-05 11:19:20 -04001509 sk = transport->inet;
Trond Myklebustedc1b012015-10-05 10:53:49 -04001510 if (sk == NULL)
1511 goto out;
Trond Myklebust66d7a562015-10-05 11:19:20 -04001512
1513 /* We use rd_desc to pass struct xprt to xs_tcp_data_recv */
1514 for (;;) {
Trond Myklebustedc1b012015-10-05 10:53:49 -04001515 lock_sock(sk);
Trond Myklebust66d7a562015-10-05 11:19:20 -04001516 read = tcp_read_sock(sk, &rd_desc, xs_tcp_data_recv);
Trond Myklebust42d42a52016-05-23 09:24:55 -04001517 if (read <= 0) {
1518 clear_bit(XPRT_SOCK_DATA_READY, &transport->sock_state);
1519 release_sock(sk);
1520 if (!test_bit(XPRT_SOCK_DATA_READY, &transport->sock_state))
1521 break;
1522 } else {
1523 release_sock(sk);
1524 total += read;
1525 }
Trond Myklebust66d7a562015-10-05 11:19:20 -04001526 rd_desc.count = 65536;
1527 }
Trond Myklebustedc1b012015-10-05 10:53:49 -04001528out:
1529 mutex_unlock(&transport->recv_mutex);
Trond Myklebust66d7a562015-10-05 11:19:20 -04001530 trace_xs_tcp_data_ready(xprt, read, total);
1531}
1532
Trond Myklebustedc1b012015-10-05 10:53:49 -04001533static void xs_tcp_data_receive_workfn(struct work_struct *work)
1534{
1535 struct sock_xprt *transport =
1536 container_of(work, struct sock_xprt, recv_worker);
1537 xs_tcp_data_receive(transport);
1538}
1539
Chuck Lever9903cd12005-08-11 16:25:26 -04001540/**
Chuck Lever9903cd12005-08-11 16:25:26 -04001541 * xs_tcp_state_change - callback to handle TCP socket state changes
1542 * @sk: socket whose state has changed
1543 *
1544 */
1545static void xs_tcp_state_change(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -04001546{
Chuck Lever9903cd12005-08-11 16:25:26 -04001547 struct rpc_xprt *xprt;
Trond Myklebust0fdea1e2015-09-16 23:43:17 -04001548 struct sock_xprt *transport;
Chuck Levera246b012005-08-11 16:25:23 -04001549
Eric Dumazetf064af12010-09-22 12:43:39 +00001550 read_lock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001551 if (!(xprt = xprt_from_sock(sk)))
1552 goto out;
Chuck Lever46121cf2007-01-31 12:14:08 -05001553 dprintk("RPC: xs_tcp_state_change client %p...\n", xprt);
Andy Chittenden669502f2010-08-10 10:19:53 -04001554 dprintk("RPC: state %x conn %d dead %d zapped %d sk_shutdown %d\n",
Chuck Lever46121cf2007-01-31 12:14:08 -05001555 sk->sk_state, xprt_connected(xprt),
1556 sock_flag(sk, SOCK_DEAD),
Andy Chittenden669502f2010-08-10 10:19:53 -04001557 sock_flag(sk, SOCK_ZAPPED),
1558 sk->sk_shutdown);
Chuck Levera246b012005-08-11 16:25:23 -04001559
Trond Myklebust0fdea1e2015-09-16 23:43:17 -04001560 transport = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04001561 trace_rpc_socket_state_change(xprt, sk->sk_socket);
Chuck Levera246b012005-08-11 16:25:23 -04001562 switch (sk->sk_state) {
1563 case TCP_ESTABLISHED:
Eric Dumazetf064af12010-09-22 12:43:39 +00001564 spin_lock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001565 if (!xprt_test_and_set_connected(xprt)) {
Chuck Lever51971132006-12-05 16:35:19 -05001566
Chuck Levera246b012005-08-11 16:25:23 -04001567 /* Reset TCP record info */
Chuck Lever51971132006-12-05 16:35:19 -05001568 transport->tcp_offset = 0;
1569 transport->tcp_reclen = 0;
1570 transport->tcp_copied = 0;
Chuck Levere136d092006-12-05 16:35:23 -05001571 transport->tcp_flags =
1572 TCP_RCV_COPY_FRAGHDR | TCP_RCV_COPY_XID;
Trond Myklebust8b717982013-09-26 10:18:04 -04001573 xprt->connect_cookie++;
Trond Myklebust0fdea1e2015-09-16 23:43:17 -04001574 clear_bit(XPRT_SOCK_CONNECTING, &transport->sock_state);
1575 xprt_clear_connecting(xprt);
Chuck Lever51971132006-12-05 16:35:19 -05001576
Trond Myklebust2a491992009-03-11 14:38:00 -04001577 xprt_wake_pending_tasks(xprt, -EAGAIN);
Chuck Levera246b012005-08-11 16:25:23 -04001578 }
Eric Dumazetf064af12010-09-22 12:43:39 +00001579 spin_unlock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001580 break;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001581 case TCP_FIN_WAIT1:
1582 /* The client initiated a shutdown of the socket */
Trond Myklebust7c1d71c2008-04-17 16:52:57 -04001583 xprt->connect_cookie++;
Trond Myklebust663b8852008-01-01 18:42:12 -05001584 xprt->reestablish_timeout = 0;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001585 set_bit(XPRT_CLOSING, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001586 smp_mb__before_atomic();
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001587 clear_bit(XPRT_CONNECTED, &xprt->state);
Trond Myklebustef803672007-12-31 16:19:17 -05001588 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001589 smp_mb__after_atomic();
Chuck Levera246b012005-08-11 16:25:23 -04001590 break;
Trond Myklebust632e3bd2006-01-03 09:55:55 +01001591 case TCP_CLOSE_WAIT:
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001592 /* The server initiated a shutdown of the socket */
Trond Myklebust7c1d71c2008-04-17 16:52:57 -04001593 xprt->connect_cookie++;
Trond Myklebustd0bea452012-10-23 11:35:47 -04001594 clear_bit(XPRT_CONNECTED, &xprt->state);
Trond Myklebusta519fc72012-09-12 16:49:15 -04001595 xs_tcp_force_close(xprt);
Trond Myklebust663b8852008-01-01 18:42:12 -05001596 case TCP_CLOSING:
1597 /*
1598 * If the server closed down the connection, make sure that
1599 * we back off before reconnecting
1600 */
1601 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
1602 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001603 break;
1604 case TCP_LAST_ACK:
Trond Myklebust670f9452009-03-11 14:37:58 -04001605 set_bit(XPRT_CLOSING, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001606 smp_mb__before_atomic();
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001607 clear_bit(XPRT_CONNECTED, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001608 smp_mb__after_atomic();
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001609 break;
1610 case TCP_CLOSE:
Trond Myklebust0fdea1e2015-09-16 23:43:17 -04001611 if (test_and_clear_bit(XPRT_SOCK_CONNECTING,
1612 &transport->sock_state))
1613 xprt_clear_connecting(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001614 xs_sock_mark_closed(xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001615 }
1616 out:
Eric Dumazetf064af12010-09-22 12:43:39 +00001617 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001618}
1619
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001620static void xs_write_space(struct sock *sk)
1621{
Trond Myklebust13331a52016-01-06 08:57:06 -05001622 struct socket_wq *wq;
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001623 struct rpc_xprt *xprt;
1624
Trond Myklebust13331a52016-01-06 08:57:06 -05001625 if (!sk->sk_socket)
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001626 return;
Trond Myklebust13331a52016-01-06 08:57:06 -05001627 clear_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001628
1629 if (unlikely(!(xprt = xprt_from_sock(sk))))
1630 return;
Trond Myklebust13331a52016-01-06 08:57:06 -05001631 rcu_read_lock();
1632 wq = rcu_dereference(sk->sk_wq);
1633 if (!wq || test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &wq->flags) == 0)
1634 goto out;
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001635
1636 xprt_write_space(xprt);
Trond Myklebust13331a52016-01-06 08:57:06 -05001637out:
1638 rcu_read_unlock();
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001639}
1640
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04001641/**
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001642 * xs_udp_write_space - callback invoked when socket buffer space
1643 * becomes available
Chuck Lever9903cd12005-08-11 16:25:26 -04001644 * @sk: socket whose state has changed
1645 *
Chuck Levera246b012005-08-11 16:25:23 -04001646 * Called when more output buffer space is available for this socket.
1647 * We try not to wake our writers until they can make "significant"
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001648 * progress, otherwise we'll waste resources thrashing kernel_sendmsg
Chuck Levera246b012005-08-11 16:25:23 -04001649 * with a bunch of small requests.
1650 */
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001651static void xs_udp_write_space(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -04001652{
Eric Dumazetf064af12010-09-22 12:43:39 +00001653 read_lock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001654
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001655 /* from net/core/sock.c:sock_def_write_space */
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001656 if (sock_writeable(sk))
1657 xs_write_space(sk);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001658
Eric Dumazetf064af12010-09-22 12:43:39 +00001659 read_unlock_bh(&sk->sk_callback_lock);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001660}
Chuck Levera246b012005-08-11 16:25:23 -04001661
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001662/**
1663 * xs_tcp_write_space - callback invoked when socket buffer space
1664 * becomes available
1665 * @sk: socket whose state has changed
1666 *
1667 * Called when more output buffer space is available for this socket.
1668 * We try not to wake our writers until they can make "significant"
1669 * progress, otherwise we'll waste resources thrashing kernel_sendmsg
1670 * with a bunch of small requests.
1671 */
1672static void xs_tcp_write_space(struct sock *sk)
1673{
Eric Dumazetf064af12010-09-22 12:43:39 +00001674 read_lock_bh(&sk->sk_callback_lock);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001675
1676 /* from net/core/stream.c:sk_stream_write_space */
Eric Dumazet64dc6132013-07-22 20:26:31 -07001677 if (sk_stream_is_writeable(sk))
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001678 xs_write_space(sk);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001679
Eric Dumazetf064af12010-09-22 12:43:39 +00001680 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001681}
1682
Chuck Lever470056c2005-08-25 16:25:56 -07001683static void xs_udp_do_set_buffer_size(struct rpc_xprt *xprt)
Chuck Levera246b012005-08-11 16:25:23 -04001684{
Chuck Leveree0ac0c2006-12-05 16:35:15 -05001685 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
1686 struct sock *sk = transport->inet;
Chuck Levera246b012005-08-11 16:25:23 -04001687
Chuck Lever7c6e0662006-12-05 16:35:30 -05001688 if (transport->rcvsize) {
Chuck Levera246b012005-08-11 16:25:23 -04001689 sk->sk_userlocks |= SOCK_RCVBUF_LOCK;
Chuck Lever7c6e0662006-12-05 16:35:30 -05001690 sk->sk_rcvbuf = transport->rcvsize * xprt->max_reqs * 2;
Chuck Levera246b012005-08-11 16:25:23 -04001691 }
Chuck Lever7c6e0662006-12-05 16:35:30 -05001692 if (transport->sndsize) {
Chuck Levera246b012005-08-11 16:25:23 -04001693 sk->sk_userlocks |= SOCK_SNDBUF_LOCK;
Chuck Lever7c6e0662006-12-05 16:35:30 -05001694 sk->sk_sndbuf = transport->sndsize * xprt->max_reqs * 2;
Chuck Levera246b012005-08-11 16:25:23 -04001695 sk->sk_write_space(sk);
1696 }
1697}
1698
Chuck Lever43118c22005-08-25 16:25:49 -07001699/**
Chuck Lever470056c2005-08-25 16:25:56 -07001700 * xs_udp_set_buffer_size - set send and receive limits
Chuck Lever43118c22005-08-25 16:25:49 -07001701 * @xprt: generic transport
Chuck Lever470056c2005-08-25 16:25:56 -07001702 * @sndsize: requested size of send buffer, in bytes
1703 * @rcvsize: requested size of receive buffer, in bytes
Chuck Lever43118c22005-08-25 16:25:49 -07001704 *
Chuck Lever470056c2005-08-25 16:25:56 -07001705 * Set socket send and receive buffer size limits.
Chuck Lever43118c22005-08-25 16:25:49 -07001706 */
Chuck Lever470056c2005-08-25 16:25:56 -07001707static void xs_udp_set_buffer_size(struct rpc_xprt *xprt, size_t sndsize, size_t rcvsize)
Chuck Lever43118c22005-08-25 16:25:49 -07001708{
Chuck Lever7c6e0662006-12-05 16:35:30 -05001709 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
1710
1711 transport->sndsize = 0;
Chuck Lever470056c2005-08-25 16:25:56 -07001712 if (sndsize)
Chuck Lever7c6e0662006-12-05 16:35:30 -05001713 transport->sndsize = sndsize + 1024;
1714 transport->rcvsize = 0;
Chuck Lever470056c2005-08-25 16:25:56 -07001715 if (rcvsize)
Chuck Lever7c6e0662006-12-05 16:35:30 -05001716 transport->rcvsize = rcvsize + 1024;
Chuck Lever470056c2005-08-25 16:25:56 -07001717
1718 xs_udp_do_set_buffer_size(xprt);
Chuck Lever43118c22005-08-25 16:25:49 -07001719}
1720
Chuck Lever46c0ee82005-08-25 16:25:52 -07001721/**
1722 * xs_udp_timer - called when a retransmit timeout occurs on a UDP transport
1723 * @task: task that timed out
1724 *
1725 * Adjust the congestion window after a retransmit timeout has occurred.
1726 */
Trond Myklebust6a24dfb2013-01-08 09:48:15 -05001727static void xs_udp_timer(struct rpc_xprt *xprt, struct rpc_task *task)
Chuck Lever46c0ee82005-08-25 16:25:52 -07001728{
Trond Myklebust6a24dfb2013-01-08 09:48:15 -05001729 xprt_adjust_cwnd(xprt, task, -ETIMEDOUT);
Chuck Lever46c0ee82005-08-25 16:25:52 -07001730}
1731
Chuck Leverb85d8802006-05-25 01:40:49 -04001732static unsigned short xs_get_random_port(void)
1733{
Frank Sorenson5d718992016-07-08 16:35:23 -05001734 unsigned short range = xprt_max_resvport - xprt_min_resvport + 1;
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05001735 unsigned short rand = (unsigned short) prandom_u32() % range;
Chuck Leverb85d8802006-05-25 01:40:49 -04001736 return rand + xprt_min_resvport;
1737}
1738
Chuck Lever92200412006-01-03 09:55:51 +01001739/**
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001740 * xs_set_reuseaddr_port - set the socket's port and address reuse options
1741 * @sock: socket
1742 *
1743 * Note that this function has to be called on all sockets that share the
1744 * same port, and it must be called before binding.
1745 */
1746static void xs_sock_set_reuseport(struct socket *sock)
1747{
Trond Myklebust402e23b2015-02-09 17:20:14 -05001748 int opt = 1;
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001749
Trond Myklebust402e23b2015-02-09 17:20:14 -05001750 kernel_setsockopt(sock, SOL_SOCKET, SO_REUSEPORT,
1751 (char *)&opt, sizeof(opt));
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001752}
1753
1754static unsigned short xs_sock_getport(struct socket *sock)
1755{
1756 struct sockaddr_storage buf;
1757 int buflen;
1758 unsigned short port = 0;
1759
1760 if (kernel_getsockname(sock, (struct sockaddr *)&buf, &buflen) < 0)
1761 goto out;
1762 switch (buf.ss_family) {
1763 case AF_INET6:
1764 port = ntohs(((struct sockaddr_in6 *)&buf)->sin6_port);
1765 break;
1766 case AF_INET:
1767 port = ntohs(((struct sockaddr_in *)&buf)->sin_port);
1768 }
1769out:
1770 return port;
1771}
1772
1773/**
Chuck Lever92200412006-01-03 09:55:51 +01001774 * xs_set_port - reset the port number in the remote endpoint address
1775 * @xprt: generic transport
1776 * @port: new port number
1777 *
1778 */
1779static void xs_set_port(struct rpc_xprt *xprt, unsigned short port)
1780{
Chuck Lever46121cf2007-01-31 12:14:08 -05001781 dprintk("RPC: setting port for xprt %p to %u\n", xprt, port);
Chuck Leverc4efcb12006-08-22 20:06:19 -04001782
Chuck Lever9dc3b092009-08-09 15:09:46 -04001783 rpc_set_port(xs_addr(xprt), port);
1784 xs_update_peer_port(xprt);
Chuck Lever92200412006-01-03 09:55:51 +01001785}
1786
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001787static void xs_set_srcport(struct sock_xprt *transport, struct socket *sock)
1788{
1789 if (transport->srcport == 0)
1790 transport->srcport = xs_sock_getport(sock);
1791}
1792
Pavel Emelyanov5d4ec932010-10-04 16:51:23 +04001793static unsigned short xs_get_srcport(struct sock_xprt *transport)
Trond Myklebust67a391d2007-11-05 17:40:58 -05001794{
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001795 unsigned short port = transport->srcport;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001796
1797 if (port == 0 && transport->xprt.resvport)
1798 port = xs_get_random_port();
1799 return port;
1800}
1801
Pavel Emelyanovbaaf4e42010-10-04 16:51:56 +04001802static unsigned short xs_next_srcport(struct sock_xprt *transport, unsigned short port)
Trond Myklebust67a391d2007-11-05 17:40:58 -05001803{
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001804 if (transport->srcport != 0)
1805 transport->srcport = 0;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001806 if (!transport->xprt.resvport)
1807 return 0;
1808 if (port <= xprt_min_resvport || port > xprt_max_resvport)
1809 return xprt_max_resvport;
1810 return --port;
1811}
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001812static int xs_bind(struct sock_xprt *transport, struct socket *sock)
Chuck Levera246b012005-08-11 16:25:23 -04001813{
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001814 struct sockaddr_storage myaddr;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001815 int err, nloop = 0;
Pavel Emelyanov5d4ec932010-10-04 16:51:23 +04001816 unsigned short port = xs_get_srcport(transport);
Trond Myklebust67a391d2007-11-05 17:40:58 -05001817 unsigned short last;
Chuck Levera246b012005-08-11 16:25:23 -04001818
Chris Perl0f7a6222014-09-05 15:40:21 -04001819 /*
1820 * If we are asking for any ephemeral port (i.e. port == 0 &&
1821 * transport->xprt.resvport == 0), don't bind. Let the local
1822 * port selection happen implicitly when the socket is used
1823 * (for example at connect time).
1824 *
1825 * This ensures that we can continue to establish TCP
1826 * connections even when all local ephemeral ports are already
1827 * a part of some TCP connection. This makes no difference
1828 * for UDP sockets, but also doens't harm them.
1829 *
1830 * If we're asking for any reserved port (i.e. port == 0 &&
1831 * transport->xprt.resvport == 1) xs_get_srcport above will
1832 * ensure that port is non-zero and we will bind as needed.
1833 */
1834 if (port == 0)
1835 return 0;
1836
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001837 memcpy(&myaddr, &transport->srcaddr, transport->xprt.addrlen);
Chuck Levera246b012005-08-11 16:25:23 -04001838 do {
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001839 rpc_set_port((struct sockaddr *)&myaddr, port);
1840 err = kernel_bind(sock, (struct sockaddr *)&myaddr,
1841 transport->xprt.addrlen);
Chuck Levera246b012005-08-11 16:25:23 -04001842 if (err == 0) {
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001843 transport->srcport = port;
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +02001844 break;
Chuck Levera246b012005-08-11 16:25:23 -04001845 }
Trond Myklebust67a391d2007-11-05 17:40:58 -05001846 last = port;
Pavel Emelyanovbaaf4e42010-10-04 16:51:56 +04001847 port = xs_next_srcport(transport, port);
Trond Myklebust67a391d2007-11-05 17:40:58 -05001848 if (port > last)
1849 nloop++;
1850 } while (err == -EADDRINUSE && nloop != 2);
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001851
Chuck Lever4232e862010-10-20 11:52:51 -04001852 if (myaddr.ss_family == AF_INET)
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001853 dprintk("RPC: %s %pI4:%u: %s (%d)\n", __func__,
1854 &((struct sockaddr_in *)&myaddr)->sin_addr,
1855 port, err ? "failed" : "ok", err);
1856 else
1857 dprintk("RPC: %s %pI6:%u: %s (%d)\n", __func__,
1858 &((struct sockaddr_in6 *)&myaddr)->sin6_addr,
1859 port, err ? "failed" : "ok", err);
Chuck Levera246b012005-08-11 16:25:23 -04001860 return err;
1861}
1862
Chuck Lever176e21e2011-05-09 15:22:44 -04001863/*
1864 * We don't support autobind on AF_LOCAL sockets
1865 */
1866static void xs_local_rpcbind(struct rpc_task *task)
1867{
Trond Myklebustfb43d172016-01-30 16:39:26 -05001868 xprt_set_bound(task->tk_xprt);
Chuck Lever176e21e2011-05-09 15:22:44 -04001869}
1870
1871static void xs_local_set_port(struct rpc_xprt *xprt, unsigned short port)
1872{
1873}
Chuck Levera246b012005-08-11 16:25:23 -04001874
Peter Zijlstraed075362006-12-06 20:35:24 -08001875#ifdef CONFIG_DEBUG_LOCK_ALLOC
1876static struct lock_class_key xs_key[2];
1877static struct lock_class_key xs_slock_key[2];
1878
Chuck Lever176e21e2011-05-09 15:22:44 -04001879static inline void xs_reclassify_socketu(struct socket *sock)
1880{
1881 struct sock *sk = sock->sk;
1882
Chuck Lever176e21e2011-05-09 15:22:44 -04001883 sock_lock_init_class_and_name(sk, "slock-AF_LOCAL-RPC",
1884 &xs_slock_key[1], "sk_lock-AF_LOCAL-RPC", &xs_key[1]);
1885}
1886
Chuck Lever8945ee52007-08-06 11:58:04 -04001887static inline void xs_reclassify_socket4(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -08001888{
1889 struct sock *sk = sock->sk;
Chuck Lever8945ee52007-08-06 11:58:04 -04001890
Chuck Lever8945ee52007-08-06 11:58:04 -04001891 sock_lock_init_class_and_name(sk, "slock-AF_INET-RPC",
1892 &xs_slock_key[0], "sk_lock-AF_INET-RPC", &xs_key[0]);
1893}
Peter Zijlstraed075362006-12-06 20:35:24 -08001894
Chuck Lever8945ee52007-08-06 11:58:04 -04001895static inline void xs_reclassify_socket6(struct socket *sock)
1896{
1897 struct sock *sk = sock->sk;
Peter Zijlstraed075362006-12-06 20:35:24 -08001898
Chuck Lever8945ee52007-08-06 11:58:04 -04001899 sock_lock_init_class_and_name(sk, "slock-AF_INET6-RPC",
1900 &xs_slock_key[1], "sk_lock-AF_INET6-RPC", &xs_key[1]);
Peter Zijlstraed075362006-12-06 20:35:24 -08001901}
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001902
1903static inline void xs_reclassify_socket(int family, struct socket *sock)
1904{
Hannes Frederic Sowafafc4e12016-04-08 15:11:27 +02001905 if (WARN_ON_ONCE(!sock_allow_reclassification(sock->sk)))
Weston Andros Adamson1b7a1812012-10-23 10:43:39 -04001906 return;
1907
Chuck Lever4232e862010-10-20 11:52:51 -04001908 switch (family) {
Chuck Lever176e21e2011-05-09 15:22:44 -04001909 case AF_LOCAL:
1910 xs_reclassify_socketu(sock);
1911 break;
Chuck Lever4232e862010-10-20 11:52:51 -04001912 case AF_INET:
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001913 xs_reclassify_socket4(sock);
Chuck Lever4232e862010-10-20 11:52:51 -04001914 break;
1915 case AF_INET6:
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001916 xs_reclassify_socket6(sock);
Chuck Lever4232e862010-10-20 11:52:51 -04001917 break;
1918 }
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001919}
Peter Zijlstraed075362006-12-06 20:35:24 -08001920#else
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001921static inline void xs_reclassify_socket(int family, struct socket *sock)
1922{
1923}
Peter Zijlstraed075362006-12-06 20:35:24 -08001924#endif
1925
NeilBrown93dc41b2013-10-31 16:14:36 +11001926static void xs_dummy_setup_socket(struct work_struct *work)
1927{
1928}
1929
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001930static struct socket *xs_create_sock(struct rpc_xprt *xprt,
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001931 struct sock_xprt *transport, int family, int type,
1932 int protocol, bool reuseport)
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001933{
1934 struct socket *sock;
1935 int err;
1936
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001937 err = __sock_create(xprt->xprt_net, family, type, protocol, &sock, 1);
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001938 if (err < 0) {
1939 dprintk("RPC: can't create %d transport socket (%d).\n",
1940 protocol, -err);
1941 goto out;
1942 }
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001943 xs_reclassify_socket(family, sock);
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001944
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001945 if (reuseport)
1946 xs_sock_set_reuseport(sock);
1947
Ben Hutchings4cea2882011-02-22 21:54:34 +00001948 err = xs_bind(transport, sock);
1949 if (err) {
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001950 sock_release(sock);
1951 goto out;
1952 }
1953
1954 return sock;
1955out:
1956 return ERR_PTR(err);
1957}
1958
Chuck Lever176e21e2011-05-09 15:22:44 -04001959static int xs_local_finish_connecting(struct rpc_xprt *xprt,
1960 struct socket *sock)
1961{
1962 struct sock_xprt *transport = container_of(xprt, struct sock_xprt,
1963 xprt);
1964
1965 if (!transport->inet) {
1966 struct sock *sk = sock->sk;
1967
1968 write_lock_bh(&sk->sk_callback_lock);
1969
1970 xs_save_old_callbacks(transport, sk);
1971
1972 sk->sk_user_data = xprt;
Trond Myklebusta2648092015-10-06 17:03:00 -04001973 sk->sk_data_ready = xs_data_ready;
Chuck Lever176e21e2011-05-09 15:22:44 -04001974 sk->sk_write_space = xs_udp_write_space;
Eric Dumazetb44114572016-05-12 21:41:39 -07001975 sock_set_flag(sk, SOCK_FASYNC);
Trond Myklebust21180712013-12-31 13:22:59 -05001976 sk->sk_error_report = xs_error_report;
Trond Myklebustc2126152015-08-19 21:46:15 -05001977 sk->sk_allocation = GFP_NOIO;
Chuck Lever176e21e2011-05-09 15:22:44 -04001978
1979 xprt_clear_connected(xprt);
1980
1981 /* Reset to new socket */
1982 transport->sock = sock;
1983 transport->inet = sk;
1984
1985 write_unlock_bh(&sk->sk_callback_lock);
1986 }
1987
1988 /* Tell the socket layer to start connecting... */
1989 xprt->stat.connect_count++;
1990 xprt->stat.connect_start = jiffies;
1991 return kernel_connect(sock, xs_addr(xprt), xprt->addrlen, 0);
1992}
1993
1994/**
1995 * xs_local_setup_socket - create AF_LOCAL socket, connect to a local endpoint
Chuck Lever176e21e2011-05-09 15:22:44 -04001996 * @transport: socket transport to connect
Chuck Lever176e21e2011-05-09 15:22:44 -04001997 */
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05001998static int xs_local_setup_socket(struct sock_xprt *transport)
Chuck Lever176e21e2011-05-09 15:22:44 -04001999{
Chuck Lever176e21e2011-05-09 15:22:44 -04002000 struct rpc_xprt *xprt = &transport->xprt;
2001 struct socket *sock;
2002 int status = -EIO;
2003
Chuck Lever176e21e2011-05-09 15:22:44 -04002004 status = __sock_create(xprt->xprt_net, AF_LOCAL,
2005 SOCK_STREAM, 0, &sock, 1);
2006 if (status < 0) {
2007 dprintk("RPC: can't create AF_LOCAL "
2008 "transport socket (%d).\n", -status);
2009 goto out;
2010 }
Stefan Hajnoczid1358912015-12-02 14:17:52 +08002011 xs_reclassify_socket(AF_LOCAL, sock);
Chuck Lever176e21e2011-05-09 15:22:44 -04002012
2013 dprintk("RPC: worker connecting xprt %p via AF_LOCAL to %s\n",
2014 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
2015
2016 status = xs_local_finish_connecting(xprt, sock);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04002017 trace_rpc_socket_connect(xprt, sock, status);
Chuck Lever176e21e2011-05-09 15:22:44 -04002018 switch (status) {
2019 case 0:
2020 dprintk("RPC: xprt %p connected to %s\n",
2021 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
2022 xprt_set_connected(xprt);
Trond Myklebust3601c4a2014-06-30 13:42:19 -04002023 case -ENOBUFS:
Chuck Lever176e21e2011-05-09 15:22:44 -04002024 break;
2025 case -ENOENT:
2026 dprintk("RPC: xprt %p: socket %s does not exist\n",
2027 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
2028 break;
Trond Myklebust4a20a982012-12-15 17:02:29 -05002029 case -ECONNREFUSED:
2030 dprintk("RPC: xprt %p: connection refused for %s\n",
2031 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
2032 break;
Chuck Lever176e21e2011-05-09 15:22:44 -04002033 default:
2034 printk(KERN_ERR "%s: unhandled error (%d) connecting to %s\n",
2035 __func__, -status,
2036 xprt->address_strings[RPC_DISPLAY_ADDR]);
2037 }
2038
2039out:
2040 xprt_clear_connecting(xprt);
2041 xprt_wake_pending_tasks(xprt, status);
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05002042 return status;
2043}
2044
Linus Torvaldsb6669732013-02-28 18:02:55 -08002045static void xs_local_connect(struct rpc_xprt *xprt, struct rpc_task *task)
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05002046{
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05002047 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
2048 int ret;
2049
2050 if (RPC_IS_ASYNC(task)) {
2051 /*
2052 * We want the AF_LOCAL connect to be resolved in the
2053 * filesystem namespace of the process making the rpc
2054 * call. Thus we connect synchronously.
2055 *
2056 * If we want to support asynchronous AF_LOCAL calls,
2057 * we'll need to figure out how to pass a namespace to
2058 * connect.
2059 */
2060 rpc_exit(task, -ENOTCONN);
2061 return;
2062 }
2063 ret = xs_local_setup_socket(transport);
2064 if (ret && !RPC_IS_SOFTCONN(task))
2065 msleep_interruptible(15000);
Chuck Lever176e21e2011-05-09 15:22:44 -04002066}
2067
Jeff Layton3c87ef62015-06-03 16:14:25 -04002068#if IS_ENABLED(CONFIG_SUNRPC_SWAP)
Jeff Laytond6e971d2015-06-03 16:14:28 -04002069/*
2070 * Note that this should be called with XPRT_LOCKED held (or when we otherwise
2071 * know that we have exclusive access to the socket), to guard against
2072 * races with xs_reset_transport.
2073 */
Mel Gormana564b8f2012-07-31 16:45:12 -07002074static void xs_set_memalloc(struct rpc_xprt *xprt)
2075{
2076 struct sock_xprt *transport = container_of(xprt, struct sock_xprt,
2077 xprt);
2078
Jeff Laytond6e971d2015-06-03 16:14:28 -04002079 /*
2080 * If there's no sock, then we have nothing to set. The
2081 * reconnecting process will get it for us.
2082 */
2083 if (!transport->inet)
2084 return;
Jeff Layton8e228132015-06-03 16:14:26 -04002085 if (atomic_read(&xprt->swapper))
Mel Gormana564b8f2012-07-31 16:45:12 -07002086 sk_set_memalloc(transport->inet);
2087}
2088
2089/**
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002090 * xs_enable_swap - Tag this transport as being used for swap.
Mel Gormana564b8f2012-07-31 16:45:12 -07002091 * @xprt: transport to tag
Mel Gormana564b8f2012-07-31 16:45:12 -07002092 *
Jeff Layton8e228132015-06-03 16:14:26 -04002093 * Take a reference to this transport on behalf of the rpc_clnt, and
2094 * optionally mark it for swapping if it wasn't already.
Mel Gormana564b8f2012-07-31 16:45:12 -07002095 */
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002096static int
2097xs_enable_swap(struct rpc_xprt *xprt)
Mel Gormana564b8f2012-07-31 16:45:12 -07002098{
Jeff Laytond6e971d2015-06-03 16:14:28 -04002099 struct sock_xprt *xs = container_of(xprt, struct sock_xprt, xprt);
Mel Gormana564b8f2012-07-31 16:45:12 -07002100
Jeff Laytond6e971d2015-06-03 16:14:28 -04002101 if (atomic_inc_return(&xprt->swapper) != 1)
2102 return 0;
2103 if (wait_on_bit_lock(&xprt->state, XPRT_LOCKED, TASK_KILLABLE))
2104 return -ERESTARTSYS;
2105 if (xs->inet)
2106 sk_set_memalloc(xs->inet);
2107 xprt_release_xprt(xprt, NULL);
Jeff Layton8e228132015-06-03 16:14:26 -04002108 return 0;
Mel Gormana564b8f2012-07-31 16:45:12 -07002109}
Jeff Layton8e228132015-06-03 16:14:26 -04002110
2111/**
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002112 * xs_disable_swap - Untag this transport as being used for swap.
Jeff Layton8e228132015-06-03 16:14:26 -04002113 * @xprt: transport to tag
2114 *
2115 * Drop a "swapper" reference to this xprt on behalf of the rpc_clnt. If the
2116 * swapper refcount goes to 0, untag the socket as a memalloc socket.
2117 */
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002118static void
2119xs_disable_swap(struct rpc_xprt *xprt)
Jeff Layton8e228132015-06-03 16:14:26 -04002120{
Jeff Laytond6e971d2015-06-03 16:14:28 -04002121 struct sock_xprt *xs = container_of(xprt, struct sock_xprt, xprt);
Jeff Layton8e228132015-06-03 16:14:26 -04002122
Jeff Laytond6e971d2015-06-03 16:14:28 -04002123 if (!atomic_dec_and_test(&xprt->swapper))
2124 return;
2125 if (wait_on_bit_lock(&xprt->state, XPRT_LOCKED, TASK_KILLABLE))
2126 return;
2127 if (xs->inet)
2128 sk_clear_memalloc(xs->inet);
2129 xprt_release_xprt(xprt, NULL);
Mel Gormana564b8f2012-07-31 16:45:12 -07002130}
Mel Gormana564b8f2012-07-31 16:45:12 -07002131#else
2132static void xs_set_memalloc(struct rpc_xprt *xprt)
2133{
2134}
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002135
2136static int
2137xs_enable_swap(struct rpc_xprt *xprt)
2138{
2139 return -EINVAL;
2140}
2141
2142static void
2143xs_disable_swap(struct rpc_xprt *xprt)
2144{
2145}
Mel Gormana564b8f2012-07-31 16:45:12 -07002146#endif
2147
Chuck Lever16be2d22007-08-06 11:57:38 -04002148static void xs_udp_finish_connecting(struct rpc_xprt *xprt, struct socket *sock)
Chuck Levera246b012005-08-11 16:25:23 -04002149{
Chuck Lever16be2d22007-08-06 11:57:38 -04002150 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Leveredb267a2006-08-22 20:06:18 -04002151
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002152 if (!transport->inet) {
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002153 struct sock *sk = sock->sk;
2154
2155 write_lock_bh(&sk->sk_callback_lock);
2156
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04002157 xs_save_old_callbacks(transport, sk);
2158
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002159 sk->sk_user_data = xprt;
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04002160 sk->sk_data_ready = xs_data_ready;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002161 sk->sk_write_space = xs_udp_write_space;
Eric Dumazetb44114572016-05-12 21:41:39 -07002162 sock_set_flag(sk, SOCK_FASYNC);
Trond Myklebustc2126152015-08-19 21:46:15 -05002163 sk->sk_allocation = GFP_NOIO;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002164
2165 xprt_set_connected(xprt);
2166
2167 /* Reset to new socket */
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002168 transport->sock = sock;
2169 transport->inet = sk;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002170
Mel Gormana564b8f2012-07-31 16:45:12 -07002171 xs_set_memalloc(xprt);
2172
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002173 write_unlock_bh(&sk->sk_callback_lock);
2174 }
Chuck Lever470056c2005-08-25 16:25:56 -07002175 xs_udp_do_set_buffer_size(xprt);
Chuck Lever16be2d22007-08-06 11:57:38 -04002176}
2177
Pavel Emelyanov8c14ff22010-10-04 16:58:02 +04002178static void xs_udp_setup_socket(struct work_struct *work)
Chuck Levera246b012005-08-11 16:25:23 -04002179{
2180 struct sock_xprt *transport =
2181 container_of(work, struct sock_xprt, connect_worker.work);
2182 struct rpc_xprt *xprt = &transport->xprt;
2183 struct socket *sock = transport->sock;
Pavel Emelyanovb65c0312010-10-04 16:53:46 +04002184 int status = -EIO;
Chuck Levera246b012005-08-11 16:25:23 -04002185
Pavel Emelyanov8c14ff22010-10-04 16:58:02 +04002186 sock = xs_create_sock(xprt, transport,
Trond Myklebust4dda9c82015-02-08 15:00:06 -05002187 xs_addr(xprt)->sa_family, SOCK_DGRAM,
2188 IPPROTO_UDP, false);
Pavel Emelyanovb65c0312010-10-04 16:53:46 +04002189 if (IS_ERR(sock))
Chuck Levera246b012005-08-11 16:25:23 -04002190 goto out;
Chuck Lever68e220b2007-08-06 11:57:48 -04002191
Chuck Leverc740eff2009-08-09 15:09:46 -04002192 dprintk("RPC: worker connecting xprt %p via %s to "
2193 "%s (port %s)\n", xprt,
2194 xprt->address_strings[RPC_DISPLAY_PROTO],
2195 xprt->address_strings[RPC_DISPLAY_ADDR],
2196 xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever68e220b2007-08-06 11:57:48 -04002197
2198 xs_udp_finish_connecting(xprt, sock);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04002199 trace_rpc_socket_connect(xprt, sock, 0);
Chuck Levera246b012005-08-11 16:25:23 -04002200 status = 0;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002201out:
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002202 xprt_unlock_connect(xprt, transport);
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002203 xprt_clear_connecting(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002204 xprt_wake_pending_tasks(xprt, status);
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002205}
2206
Trond Myklebust4876cc72015-06-19 16:17:57 -04002207/**
2208 * xs_tcp_shutdown - gracefully shut down a TCP socket
2209 * @xprt: transport
2210 *
2211 * Initiates a graceful shutdown of the TCP socket by calling the
2212 * equivalent of shutdown(SHUT_RDWR);
2213 */
2214static void xs_tcp_shutdown(struct rpc_xprt *xprt)
2215{
2216 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
2217 struct socket *sock = transport->sock;
2218
2219 if (sock == NULL)
2220 return;
2221 if (xprt_connected(xprt)) {
2222 kernel_sock_shutdown(sock, SHUT_RDWR);
2223 trace_rpc_socket_shutdown(xprt, sock);
2224 } else
2225 xs_reset_transport(transport);
2226}
2227
Chuck Lever16be2d22007-08-06 11:57:38 -04002228static int xs_tcp_finish_connecting(struct rpc_xprt *xprt, struct socket *sock)
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002229{
Chuck Lever16be2d22007-08-06 11:57:38 -04002230 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebustfe19a962011-03-18 20:21:23 -04002231 int ret = -ENOTCONN;
Chuck Leveredb267a2006-08-22 20:06:18 -04002232
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002233 if (!transport->inet) {
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002234 struct sock *sk = sock->sk;
Trond Myklebust7f260e82013-09-24 11:25:22 -04002235 unsigned int keepidle = xprt->timeout->to_initval / HZ;
2236 unsigned int keepcnt = xprt->timeout->to_retries + 1;
2237 unsigned int opt_on = 1;
Trond Myklebust775f06a2015-06-20 15:31:54 -04002238 unsigned int timeo;
Trond Myklebust7f260e82013-09-24 11:25:22 -04002239
2240 /* TCP Keepalive options */
2241 kernel_setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE,
2242 (char *)&opt_on, sizeof(opt_on));
2243 kernel_setsockopt(sock, SOL_TCP, TCP_KEEPIDLE,
2244 (char *)&keepidle, sizeof(keepidle));
2245 kernel_setsockopt(sock, SOL_TCP, TCP_KEEPINTVL,
2246 (char *)&keepidle, sizeof(keepidle));
2247 kernel_setsockopt(sock, SOL_TCP, TCP_KEEPCNT,
2248 (char *)&keepcnt, sizeof(keepcnt));
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002249
Trond Myklebust775f06a2015-06-20 15:31:54 -04002250 /* TCP user timeout (see RFC5482) */
2251 timeo = jiffies_to_msecs(xprt->timeout->to_initval) *
2252 (xprt->timeout->to_retries + 1);
2253 kernel_setsockopt(sock, SOL_TCP, TCP_USER_TIMEOUT,
2254 (char *)&timeo, sizeof(timeo));
2255
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002256 write_lock_bh(&sk->sk_callback_lock);
2257
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04002258 xs_save_old_callbacks(transport, sk);
2259
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002260 sk->sk_user_data = xprt;
Trond Myklebust5157b952016-05-29 10:13:24 -04002261 sk->sk_data_ready = xs_data_ready;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002262 sk->sk_state_change = xs_tcp_state_change;
2263 sk->sk_write_space = xs_tcp_write_space;
Eric Dumazetb44114572016-05-12 21:41:39 -07002264 sock_set_flag(sk, SOCK_FASYNC);
Trond Myklebust21180712013-12-31 13:22:59 -05002265 sk->sk_error_report = xs_error_report;
Trond Myklebustc2126152015-08-19 21:46:15 -05002266 sk->sk_allocation = GFP_NOIO;
Chuck Lever3167e122005-08-25 16:25:55 -07002267
2268 /* socket options */
Chuck Lever3167e122005-08-25 16:25:55 -07002269 sock_reset_flag(sk, SOCK_LINGER);
Chuck Lever3167e122005-08-25 16:25:55 -07002270 tcp_sk(sk)->nonagle |= TCP_NAGLE_OFF;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002271
2272 xprt_clear_connected(xprt);
2273
2274 /* Reset to new socket */
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002275 transport->sock = sock;
2276 transport->inet = sk;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002277
2278 write_unlock_bh(&sk->sk_callback_lock);
2279 }
2280
Trond Myklebust01d37c42009-03-11 14:09:39 -04002281 if (!xprt_bound(xprt))
Trond Myklebustfe19a962011-03-18 20:21:23 -04002282 goto out;
Trond Myklebust01d37c42009-03-11 14:09:39 -04002283
Mel Gormana564b8f2012-07-31 16:45:12 -07002284 xs_set_memalloc(xprt);
2285
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002286 /* Tell the socket layer to start connecting... */
Chuck Lever262ca072006-03-20 13:44:16 -05002287 xprt->stat.connect_count++;
2288 xprt->stat.connect_start = jiffies;
Trond Myklebust0fdea1e2015-09-16 23:43:17 -04002289 set_bit(XPRT_SOCK_CONNECTING, &transport->sock_state);
Trond Myklebustfe19a962011-03-18 20:21:23 -04002290 ret = kernel_connect(sock, xs_addr(xprt), xprt->addrlen, O_NONBLOCK);
2291 switch (ret) {
2292 case 0:
Trond Myklebust4dda9c82015-02-08 15:00:06 -05002293 xs_set_srcport(transport, sock);
Trond Myklebustfe19a962011-03-18 20:21:23 -04002294 case -EINPROGRESS:
2295 /* SYN_SENT! */
Trond Myklebustfe19a962011-03-18 20:21:23 -04002296 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
2297 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
2298 }
2299out:
2300 return ret;
Chuck Lever16be2d22007-08-06 11:57:38 -04002301}
2302
2303/**
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002304 * xs_tcp_setup_socket - create a TCP socket and connect to a remote endpoint
Chuck Lever16be2d22007-08-06 11:57:38 -04002305 *
2306 * Invoked by a work queue tasklet.
2307 */
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002308static void xs_tcp_setup_socket(struct work_struct *work)
Chuck Lever16be2d22007-08-06 11:57:38 -04002309{
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002310 struct sock_xprt *transport =
2311 container_of(work, struct sock_xprt, connect_worker.work);
Chuck Lever16be2d22007-08-06 11:57:38 -04002312 struct socket *sock = transport->sock;
Pavel Emelyanova9f5f0f2010-10-04 16:52:25 +04002313 struct rpc_xprt *xprt = &transport->xprt;
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002314 int status = -EIO;
Chuck Lever16be2d22007-08-06 11:57:38 -04002315
Chuck Lever16be2d22007-08-06 11:57:38 -04002316 if (!sock) {
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002317 sock = xs_create_sock(xprt, transport,
Trond Myklebust4dda9c82015-02-08 15:00:06 -05002318 xs_addr(xprt)->sa_family, SOCK_STREAM,
2319 IPPROTO_TCP, true);
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002320 if (IS_ERR(sock)) {
2321 status = PTR_ERR(sock);
Chuck Lever16be2d22007-08-06 11:57:38 -04002322 goto out;
2323 }
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002324 }
2325
Chuck Leverc740eff2009-08-09 15:09:46 -04002326 dprintk("RPC: worker connecting xprt %p via %s to "
2327 "%s (port %s)\n", xprt,
2328 xprt->address_strings[RPC_DISPLAY_PROTO],
2329 xprt->address_strings[RPC_DISPLAY_ADDR],
2330 xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever16be2d22007-08-06 11:57:38 -04002331
2332 status = xs_tcp_finish_connecting(xprt, sock);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04002333 trace_rpc_socket_connect(xprt, sock, status);
Chuck Lever46121cf2007-01-31 12:14:08 -05002334 dprintk("RPC: %p connect status %d connected %d sock state %d\n",
2335 xprt, -status, xprt_connected(xprt),
2336 sock->sk->sk_state);
Trond Myklebust2a491992009-03-11 14:38:00 -04002337 switch (status) {
Trond Myklebustf75e6742009-04-21 17:18:20 -04002338 default:
2339 printk("%s: connect returned unhandled error %d\n",
2340 __func__, status);
2341 case -EADDRNOTAVAIL:
2342 /* We're probably in TIME_WAIT. Get rid of existing socket,
2343 * and retry
2344 */
Trond Myklebusta519fc72012-09-12 16:49:15 -04002345 xs_tcp_force_close(xprt);
Trond Myklebust88b5ed72009-06-17 13:22:57 -07002346 break;
Trond Myklebust2a491992009-03-11 14:38:00 -04002347 case 0:
2348 case -EINPROGRESS:
2349 case -EALREADY:
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002350 xprt_unlock_connect(xprt, transport);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002351 return;
Trond Myklebust9fcfe0c2010-03-02 13:06:21 -05002352 case -EINVAL:
2353 /* Happens, for instance, if the user specified a link
2354 * local IPv6 address without a scope-id.
2355 */
Trond Myklebust3ed5e2a2013-03-04 17:29:33 -05002356 case -ECONNREFUSED:
2357 case -ECONNRESET:
2358 case -ENETUNREACH:
Trond Myklebust3913c782015-02-08 21:44:04 -05002359 case -EADDRINUSE:
Trond Myklebust3601c4a2014-06-30 13:42:19 -04002360 case -ENOBUFS:
Trond Myklebust3ed5e2a2013-03-04 17:29:33 -05002361 /* retry with existing socket, after a delay */
Trond Myklebust4efdd922015-02-08 15:34:28 -05002362 xs_tcp_force_close(xprt);
Trond Myklebust9fcfe0c2010-03-02 13:06:21 -05002363 goto out;
Chuck Levera246b012005-08-11 16:25:23 -04002364 }
Trond Myklebust2a491992009-03-11 14:38:00 -04002365 status = -EAGAIN;
Chuck Levera246b012005-08-11 16:25:23 -04002366out:
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002367 xprt_unlock_connect(xprt, transport);
Chuck Lever2226feb2005-08-11 16:25:38 -04002368 xprt_clear_connecting(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002369 xprt_wake_pending_tasks(xprt, status);
Chuck Levera246b012005-08-11 16:25:23 -04002370}
2371
Chuck Lever68e220b2007-08-06 11:57:48 -04002372/**
Chuck Lever9903cd12005-08-11 16:25:26 -04002373 * xs_connect - connect a socket to a remote endpoint
Trond Myklebust1b092092013-01-08 09:26:49 -05002374 * @xprt: pointer to transport structure
Chuck Lever9903cd12005-08-11 16:25:26 -04002375 * @task: address of RPC task that manages state of connect request
2376 *
2377 * TCP: If the remote end dropped the connection, delay reconnecting.
Chuck Lever03bf4b72005-08-25 16:25:55 -07002378 *
2379 * UDP socket connects are synchronous, but we use a work queue anyway
2380 * to guarantee that even unprivileged user processes can set up a
2381 * socket on a privileged port.
2382 *
2383 * If a UDP socket connect fails, the delay behavior here prevents
2384 * retry floods (hard mounts).
Chuck Lever9903cd12005-08-11 16:25:26 -04002385 */
Trond Myklebust1b092092013-01-08 09:26:49 -05002386static void xs_connect(struct rpc_xprt *xprt, struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -04002387{
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002388 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002389
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002390 WARN_ON_ONCE(!xprt_lock_connect(xprt, task, transport));
2391
Trond Myklebust99b1a4c2015-08-13 15:33:51 -04002392 if (transport->sock != NULL) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002393 dprintk("RPC: xs_connect delayed xprt %p for %lu "
2394 "seconds\n",
Chuck Lever03bf4b72005-08-25 16:25:55 -07002395 xprt, xprt->reestablish_timeout / HZ);
Trond Myklebust99b1a4c2015-08-13 15:33:51 -04002396
2397 /* Start by resetting any existing state */
2398 xs_reset_transport(transport);
2399
Trond Myklebust40a5f1b2016-05-27 10:39:50 -04002400 queue_delayed_work(xprtiod_workqueue,
Trond Myklebustc1384c92007-06-14 18:00:42 -04002401 &transport->connect_worker,
2402 xprt->reestablish_timeout);
Chuck Lever03bf4b72005-08-25 16:25:55 -07002403 xprt->reestablish_timeout <<= 1;
Neil Brown61d0a8e2009-09-23 14:36:37 -04002404 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
2405 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
Chuck Lever03bf4b72005-08-25 16:25:55 -07002406 if (xprt->reestablish_timeout > XS_TCP_MAX_REEST_TO)
2407 xprt->reestablish_timeout = XS_TCP_MAX_REEST_TO;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002408 } else {
Chuck Lever46121cf2007-01-31 12:14:08 -05002409 dprintk("RPC: xs_connect scheduled xprt %p\n", xprt);
Trond Myklebust40a5f1b2016-05-27 10:39:50 -04002410 queue_delayed_work(xprtiod_workqueue,
Trond Myklebustc1384c92007-06-14 18:00:42 -04002411 &transport->connect_worker, 0);
Chuck Levera246b012005-08-11 16:25:23 -04002412 }
2413}
2414
Chuck Lever262ca072006-03-20 13:44:16 -05002415/**
Chuck Lever176e21e2011-05-09 15:22:44 -04002416 * xs_local_print_stats - display AF_LOCAL socket-specifc stats
2417 * @xprt: rpc_xprt struct containing statistics
2418 * @seq: output file
2419 *
2420 */
2421static void xs_local_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2422{
2423 long idle_time = 0;
2424
2425 if (xprt_connected(xprt))
2426 idle_time = (long)(jiffies - xprt->last_used) / HZ;
2427
2428 seq_printf(seq, "\txprt:\tlocal %lu %lu %lu %ld %lu %lu %lu "
Andy Adamson15a45202012-02-14 16:19:18 -05002429 "%llu %llu %lu %llu %llu\n",
Chuck Lever176e21e2011-05-09 15:22:44 -04002430 xprt->stat.bind_count,
2431 xprt->stat.connect_count,
2432 xprt->stat.connect_time,
2433 idle_time,
2434 xprt->stat.sends,
2435 xprt->stat.recvs,
2436 xprt->stat.bad_xids,
2437 xprt->stat.req_u,
Andy Adamson15a45202012-02-14 16:19:18 -05002438 xprt->stat.bklog_u,
2439 xprt->stat.max_slots,
2440 xprt->stat.sending_u,
2441 xprt->stat.pending_u);
Chuck Lever176e21e2011-05-09 15:22:44 -04002442}
2443
2444/**
Chuck Lever262ca072006-03-20 13:44:16 -05002445 * xs_udp_print_stats - display UDP socket-specifc stats
2446 * @xprt: rpc_xprt struct containing statistics
2447 * @seq: output file
2448 *
2449 */
2450static void xs_udp_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2451{
Chuck Leverc8475462006-12-05 16:35:26 -05002452 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
2453
Andy Adamson15a45202012-02-14 16:19:18 -05002454 seq_printf(seq, "\txprt:\tudp %u %lu %lu %lu %lu %llu %llu "
2455 "%lu %llu %llu\n",
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002456 transport->srcport,
Chuck Lever262ca072006-03-20 13:44:16 -05002457 xprt->stat.bind_count,
2458 xprt->stat.sends,
2459 xprt->stat.recvs,
2460 xprt->stat.bad_xids,
2461 xprt->stat.req_u,
Andy Adamson15a45202012-02-14 16:19:18 -05002462 xprt->stat.bklog_u,
2463 xprt->stat.max_slots,
2464 xprt->stat.sending_u,
2465 xprt->stat.pending_u);
Chuck Lever262ca072006-03-20 13:44:16 -05002466}
2467
2468/**
2469 * xs_tcp_print_stats - display TCP socket-specifc stats
2470 * @xprt: rpc_xprt struct containing statistics
2471 * @seq: output file
2472 *
2473 */
2474static void xs_tcp_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2475{
Chuck Leverc8475462006-12-05 16:35:26 -05002476 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262ca072006-03-20 13:44:16 -05002477 long idle_time = 0;
2478
2479 if (xprt_connected(xprt))
2480 idle_time = (long)(jiffies - xprt->last_used) / HZ;
2481
Andy Adamson15a45202012-02-14 16:19:18 -05002482 seq_printf(seq, "\txprt:\ttcp %u %lu %lu %lu %ld %lu %lu %lu "
2483 "%llu %llu %lu %llu %llu\n",
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002484 transport->srcport,
Chuck Lever262ca072006-03-20 13:44:16 -05002485 xprt->stat.bind_count,
2486 xprt->stat.connect_count,
2487 xprt->stat.connect_time,
2488 idle_time,
2489 xprt->stat.sends,
2490 xprt->stat.recvs,
2491 xprt->stat.bad_xids,
2492 xprt->stat.req_u,
Andy Adamson15a45202012-02-14 16:19:18 -05002493 xprt->stat.bklog_u,
2494 xprt->stat.max_slots,
2495 xprt->stat.sending_u,
2496 xprt->stat.pending_u);
Chuck Lever262ca072006-03-20 13:44:16 -05002497}
2498
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002499/*
2500 * Allocate a bunch of pages for a scratch buffer for the rpc code. The reason
2501 * we allocate pages instead doing a kmalloc like rpc_malloc is because we want
2502 * to use the server side send routines.
2503 */
H Hartley Sweeten5a51f132010-01-14 15:38:31 -07002504static void *bc_malloc(struct rpc_task *task, size_t size)
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002505{
2506 struct page *page;
2507 struct rpc_buffer *buf;
2508
Weston Andros Adamsonb8a13d02012-10-23 10:43:43 -04002509 WARN_ON_ONCE(size > PAGE_SIZE - sizeof(struct rpc_buffer));
2510 if (size > PAGE_SIZE - sizeof(struct rpc_buffer))
2511 return NULL;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002512
Weston Andros Adamsonb8a13d02012-10-23 10:43:43 -04002513 page = alloc_page(GFP_KERNEL);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002514 if (!page)
2515 return NULL;
2516
2517 buf = page_address(page);
2518 buf->len = PAGE_SIZE;
2519
2520 return buf->data;
2521}
2522
2523/*
2524 * Free the space allocated in the bc_alloc routine
2525 */
H Hartley Sweeten5a51f132010-01-14 15:38:31 -07002526static void bc_free(void *buffer)
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002527{
2528 struct rpc_buffer *buf;
2529
2530 if (!buffer)
2531 return;
2532
2533 buf = container_of(buffer, struct rpc_buffer, data);
2534 free_page((unsigned long)buf);
2535}
2536
2537/*
2538 * Use the svc_sock to send the callback. Must be called with svsk->sk_mutex
2539 * held. Borrows heavily from svc_tcp_sendto and xs_tcp_send_request.
2540 */
2541static int bc_sendto(struct rpc_rqst *req)
2542{
2543 int len;
2544 struct xdr_buf *xbufp = &req->rq_snd_buf;
2545 struct rpc_xprt *xprt = req->rq_xprt;
2546 struct sock_xprt *transport =
2547 container_of(xprt, struct sock_xprt, xprt);
2548 struct socket *sock = transport->sock;
2549 unsigned long headoff;
2550 unsigned long tailoff;
2551
Chuck Lever61677ee2011-05-09 15:22:34 -04002552 xs_encode_stream_record_marker(xbufp);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002553
2554 tailoff = (unsigned long)xbufp->tail[0].iov_base & ~PAGE_MASK;
2555 headoff = (unsigned long)xbufp->head[0].iov_base & ~PAGE_MASK;
2556 len = svc_send_common(sock, xbufp,
2557 virt_to_page(xbufp->head[0].iov_base), headoff,
2558 xbufp->tail[0].iov_base, tailoff);
2559
2560 if (len != xbufp->len) {
2561 printk(KERN_NOTICE "Error sending entire callback!\n");
2562 len = -EAGAIN;
2563 }
2564
2565 return len;
2566}
2567
2568/*
2569 * The send routine. Borrows from svc_send
2570 */
2571static int bc_send_request(struct rpc_task *task)
2572{
2573 struct rpc_rqst *req = task->tk_rqstp;
2574 struct svc_xprt *xprt;
Andrzej Hajda7fc56132015-09-24 16:00:09 +02002575 int len;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002576
2577 dprintk("sending request with xid: %08x\n", ntohl(req->rq_xid));
2578 /*
2579 * Get the server socket associated with this callback xprt
2580 */
2581 xprt = req->rq_xprt->bc_xprt;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002582
2583 /*
2584 * Grab the mutex to serialize data as the connection is shared
2585 * with the fore channel
2586 */
2587 if (!mutex_trylock(&xprt->xpt_mutex)) {
2588 rpc_sleep_on(&xprt->xpt_bc_pending, task, NULL);
2589 if (!mutex_trylock(&xprt->xpt_mutex))
2590 return -EAGAIN;
2591 rpc_wake_up_queued_task(&xprt->xpt_bc_pending, task);
2592 }
2593 if (test_bit(XPT_DEAD, &xprt->xpt_flags))
2594 len = -ENOTCONN;
2595 else
2596 len = bc_sendto(req);
2597 mutex_unlock(&xprt->xpt_mutex);
2598
2599 if (len > 0)
2600 len = 0;
2601
2602 return len;
2603}
2604
2605/*
2606 * The close routine. Since this is client initiated, we do nothing
2607 */
2608
2609static void bc_close(struct rpc_xprt *xprt)
2610{
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002611}
2612
2613/*
2614 * The xprt destroy routine. Again, because this connection is client
2615 * initiated, we do nothing
2616 */
2617
2618static void bc_destroy(struct rpc_xprt *xprt)
2619{
Kinglong Mee47f72ef2014-03-24 11:58:16 +08002620 dprintk("RPC: bc_destroy xprt %p\n", xprt);
2621
2622 xs_xprt_free(xprt);
2623 module_put(THIS_MODULE);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002624}
2625
Chuck Lever176e21e2011-05-09 15:22:44 -04002626static struct rpc_xprt_ops xs_local_ops = {
2627 .reserve_xprt = xprt_reserve_xprt,
2628 .release_xprt = xs_tcp_release_xprt,
Trond Myklebustf39c1bf2012-09-07 11:08:50 -04002629 .alloc_slot = xprt_alloc_slot,
Chuck Lever176e21e2011-05-09 15:22:44 -04002630 .rpcbind = xs_local_rpcbind,
2631 .set_port = xs_local_set_port,
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05002632 .connect = xs_local_connect,
Chuck Lever176e21e2011-05-09 15:22:44 -04002633 .buf_alloc = rpc_malloc,
2634 .buf_free = rpc_free,
2635 .send_request = xs_local_send_request,
2636 .set_retrans_timeout = xprt_set_retrans_timeout_def,
2637 .close = xs_close,
Trond Myklebusta1311d82013-10-31 09:18:49 -04002638 .destroy = xs_destroy,
Chuck Lever176e21e2011-05-09 15:22:44 -04002639 .print_stats = xs_local_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002640 .enable_swap = xs_enable_swap,
2641 .disable_swap = xs_disable_swap,
Chuck Lever176e21e2011-05-09 15:22:44 -04002642};
2643
Chuck Lever262965f2005-08-11 16:25:56 -04002644static struct rpc_xprt_ops xs_udp_ops = {
Chuck Lever43118c22005-08-25 16:25:49 -07002645 .set_buffer_size = xs_udp_set_buffer_size,
Chuck Lever12a80462005-08-25 16:25:51 -07002646 .reserve_xprt = xprt_reserve_xprt_cong,
Chuck Lever49e9a892005-08-25 16:25:51 -07002647 .release_xprt = xprt_release_xprt_cong,
Trond Myklebustf39c1bf2012-09-07 11:08:50 -04002648 .alloc_slot = xprt_alloc_slot,
Chuck Lever45160d62007-07-01 12:13:17 -04002649 .rpcbind = rpcb_getport_async,
Chuck Lever92200412006-01-03 09:55:51 +01002650 .set_port = xs_set_port,
Chuck Lever9903cd12005-08-11 16:25:26 -04002651 .connect = xs_connect,
Chuck Lever02107142006-01-03 09:55:49 +01002652 .buf_alloc = rpc_malloc,
2653 .buf_free = rpc_free,
Chuck Lever262965f2005-08-11 16:25:56 -04002654 .send_request = xs_udp_send_request,
Chuck Leverfe3aca22005-08-25 16:25:50 -07002655 .set_retrans_timeout = xprt_set_retrans_timeout_rtt,
Chuck Lever46c0ee82005-08-25 16:25:52 -07002656 .timer = xs_udp_timer,
Chuck Levera58dd392005-08-25 16:25:53 -07002657 .release_request = xprt_release_rqst_cong,
Chuck Lever262965f2005-08-11 16:25:56 -04002658 .close = xs_close,
2659 .destroy = xs_destroy,
Chuck Lever262ca072006-03-20 13:44:16 -05002660 .print_stats = xs_udp_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002661 .enable_swap = xs_enable_swap,
2662 .disable_swap = xs_disable_swap,
Chuck Lever4a068252015-05-11 14:02:25 -04002663 .inject_disconnect = xs_inject_disconnect,
Chuck Lever262965f2005-08-11 16:25:56 -04002664};
2665
2666static struct rpc_xprt_ops xs_tcp_ops = {
Chuck Lever12a80462005-08-25 16:25:51 -07002667 .reserve_xprt = xprt_reserve_xprt,
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04002668 .release_xprt = xs_tcp_release_xprt,
Trond Myklebustf39c1bf2012-09-07 11:08:50 -04002669 .alloc_slot = xprt_lock_and_alloc_slot,
Chuck Lever45160d62007-07-01 12:13:17 -04002670 .rpcbind = rpcb_getport_async,
Chuck Lever92200412006-01-03 09:55:51 +01002671 .set_port = xs_set_port,
Trond Myklebust0b9e7942010-04-16 16:41:57 -04002672 .connect = xs_connect,
Chuck Lever02107142006-01-03 09:55:49 +01002673 .buf_alloc = rpc_malloc,
2674 .buf_free = rpc_free,
Chuck Lever262965f2005-08-11 16:25:56 -04002675 .send_request = xs_tcp_send_request,
Chuck Leverfe3aca22005-08-25 16:25:50 -07002676 .set_retrans_timeout = xprt_set_retrans_timeout_def,
Trond Myklebustc627d312015-02-10 11:06:04 -05002677 .close = xs_tcp_shutdown,
Chuck Lever9903cd12005-08-11 16:25:26 -04002678 .destroy = xs_destroy,
Chuck Lever262ca072006-03-20 13:44:16 -05002679 .print_stats = xs_tcp_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002680 .enable_swap = xs_enable_swap,
2681 .disable_swap = xs_disable_swap,
Chuck Lever4a068252015-05-11 14:02:25 -04002682 .inject_disconnect = xs_inject_disconnect,
Chuck Lever42e5c3e2015-10-24 17:27:35 -04002683#ifdef CONFIG_SUNRPC_BACKCHANNEL
2684 .bc_setup = xprt_setup_bc,
Chuck Lever76566772015-10-24 17:28:32 -04002685 .bc_up = xs_tcp_bc_up,
Chuck Lever6b26cc82016-05-02 14:40:40 -04002686 .bc_maxpayload = xs_tcp_bc_maxpayload,
Chuck Lever42e5c3e2015-10-24 17:27:35 -04002687 .bc_free_rqst = xprt_free_bc_rqst,
2688 .bc_destroy = xprt_destroy_bc,
2689#endif
Chuck Levera246b012005-08-11 16:25:23 -04002690};
2691
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002692/*
2693 * The rpc_xprt_ops for the server backchannel
2694 */
2695
2696static struct rpc_xprt_ops bc_tcp_ops = {
2697 .reserve_xprt = xprt_reserve_xprt,
2698 .release_xprt = xprt_release_xprt,
Bryan Schumaker84e28a32012-09-24 13:39:01 -04002699 .alloc_slot = xprt_alloc_slot,
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002700 .buf_alloc = bc_malloc,
2701 .buf_free = bc_free,
2702 .send_request = bc_send_request,
2703 .set_retrans_timeout = xprt_set_retrans_timeout_def,
2704 .close = bc_close,
2705 .destroy = bc_destroy,
2706 .print_stats = xs_tcp_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002707 .enable_swap = xs_enable_swap,
2708 .disable_swap = xs_disable_swap,
Chuck Lever4a068252015-05-11 14:02:25 -04002709 .inject_disconnect = xs_inject_disconnect,
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002710};
2711
Chuck Lever92476852010-10-20 11:53:01 -04002712static int xs_init_anyaddr(const int family, struct sockaddr *sap)
2713{
2714 static const struct sockaddr_in sin = {
2715 .sin_family = AF_INET,
2716 .sin_addr.s_addr = htonl(INADDR_ANY),
2717 };
2718 static const struct sockaddr_in6 sin6 = {
2719 .sin6_family = AF_INET6,
2720 .sin6_addr = IN6ADDR_ANY_INIT,
2721 };
2722
2723 switch (family) {
Chuck Lever176e21e2011-05-09 15:22:44 -04002724 case AF_LOCAL:
2725 break;
Chuck Lever92476852010-10-20 11:53:01 -04002726 case AF_INET:
2727 memcpy(sap, &sin, sizeof(sin));
2728 break;
2729 case AF_INET6:
2730 memcpy(sap, &sin6, sizeof(sin6));
2731 break;
2732 default:
2733 dprintk("RPC: %s: Bad address family\n", __func__);
2734 return -EAFNOSUPPORT;
2735 }
2736 return 0;
2737}
2738
\"Talpey, Thomas\3c341b0b2007-09-10 13:47:07 -04002739static struct rpc_xprt *xs_setup_xprt(struct xprt_create *args,
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002740 unsigned int slot_table_size,
2741 unsigned int max_slot_table_size)
Chuck Leverc8541ec2006-10-17 14:44:27 -04002742{
2743 struct rpc_xprt *xprt;
Chuck Leverffc2e512006-12-05 16:35:11 -05002744 struct sock_xprt *new;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002745
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002746 if (args->addrlen > sizeof(xprt->addr)) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002747 dprintk("RPC: xs_setup_xprt: address too large\n");
Chuck Leverc8541ec2006-10-17 14:44:27 -04002748 return ERR_PTR(-EBADF);
2749 }
2750
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002751 xprt = xprt_alloc(args->net, sizeof(*new), slot_table_size,
2752 max_slot_table_size);
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +04002753 if (xprt == NULL) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002754 dprintk("RPC: xs_setup_xprt: couldn't allocate "
2755 "rpc_xprt\n");
Chuck Leverc8541ec2006-10-17 14:44:27 -04002756 return ERR_PTR(-ENOMEM);
2757 }
2758
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +04002759 new = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebustedc1b012015-10-05 10:53:49 -04002760 mutex_init(&new->recv_mutex);
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002761 memcpy(&xprt->addr, args->dstaddr, args->addrlen);
2762 xprt->addrlen = args->addrlen;
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +02002763 if (args->srcaddr)
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002764 memcpy(&new->srcaddr, args->srcaddr, args->addrlen);
Chuck Lever92476852010-10-20 11:53:01 -04002765 else {
2766 int err;
2767 err = xs_init_anyaddr(args->dstaddr->sa_family,
2768 (struct sockaddr *)&new->srcaddr);
Stanislav Kinsbursky2aa13532011-11-10 14:33:23 +03002769 if (err != 0) {
2770 xprt_free(xprt);
Chuck Lever92476852010-10-20 11:53:01 -04002771 return ERR_PTR(err);
Stanislav Kinsbursky2aa13532011-11-10 14:33:23 +03002772 }
Chuck Lever92476852010-10-20 11:53:01 -04002773 }
Chuck Leverc8541ec2006-10-17 14:44:27 -04002774
2775 return xprt;
2776}
2777
Chuck Lever176e21e2011-05-09 15:22:44 -04002778static const struct rpc_timeout xs_local_default_timeout = {
2779 .to_initval = 10 * HZ,
2780 .to_maxval = 10 * HZ,
2781 .to_retries = 2,
2782};
2783
2784/**
2785 * xs_setup_local - Set up transport to use an AF_LOCAL socket
2786 * @args: rpc transport creation arguments
2787 *
2788 * AF_LOCAL is a "tpi_cots_ord" transport, just like TCP
2789 */
2790static struct rpc_xprt *xs_setup_local(struct xprt_create *args)
2791{
2792 struct sockaddr_un *sun = (struct sockaddr_un *)args->dstaddr;
2793 struct sock_xprt *transport;
2794 struct rpc_xprt *xprt;
2795 struct rpc_xprt *ret;
2796
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002797 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries,
2798 xprt_max_tcp_slot_table_entries);
Chuck Lever176e21e2011-05-09 15:22:44 -04002799 if (IS_ERR(xprt))
2800 return xprt;
2801 transport = container_of(xprt, struct sock_xprt, xprt);
2802
2803 xprt->prot = 0;
2804 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
2805 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
2806
2807 xprt->bind_timeout = XS_BIND_TO;
2808 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
2809 xprt->idle_timeout = XS_IDLE_DISC_TO;
2810
2811 xprt->ops = &xs_local_ops;
2812 xprt->timeout = &xs_local_default_timeout;
2813
Trond Myklebusta2648092015-10-06 17:03:00 -04002814 INIT_WORK(&transport->recv_worker, xs_local_data_receive_workfn);
NeilBrown93dc41b2013-10-31 16:14:36 +11002815 INIT_DELAYED_WORK(&transport->connect_worker,
2816 xs_dummy_setup_socket);
2817
Chuck Lever176e21e2011-05-09 15:22:44 -04002818 switch (sun->sun_family) {
2819 case AF_LOCAL:
2820 if (sun->sun_path[0] != '/') {
2821 dprintk("RPC: bad AF_LOCAL address: %s\n",
2822 sun->sun_path);
2823 ret = ERR_PTR(-EINVAL);
2824 goto out_err;
2825 }
2826 xprt_set_bound(xprt);
Chuck Lever176e21e2011-05-09 15:22:44 -04002827 xs_format_peer_addresses(xprt, "local", RPCBIND_NETID_LOCAL);
J. Bruce Fields7073ea82013-02-21 10:14:22 -05002828 ret = ERR_PTR(xs_local_setup_socket(transport));
2829 if (ret)
2830 goto out_err;
Chuck Lever176e21e2011-05-09 15:22:44 -04002831 break;
2832 default:
2833 ret = ERR_PTR(-EAFNOSUPPORT);
2834 goto out_err;
2835 }
2836
2837 dprintk("RPC: set up xprt to %s via AF_LOCAL\n",
2838 xprt->address_strings[RPC_DISPLAY_ADDR]);
2839
2840 if (try_module_get(THIS_MODULE))
2841 return xprt;
2842 ret = ERR_PTR(-EINVAL);
2843out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08002844 xs_xprt_free(xprt);
Chuck Lever176e21e2011-05-09 15:22:44 -04002845 return ret;
2846}
2847
Trond Myklebust2881ae72007-12-20 16:03:54 -05002848static const struct rpc_timeout xs_udp_default_timeout = {
2849 .to_initval = 5 * HZ,
2850 .to_maxval = 30 * HZ,
2851 .to_increment = 5 * HZ,
2852 .to_retries = 5,
2853};
2854
Chuck Lever9903cd12005-08-11 16:25:26 -04002855/**
2856 * xs_setup_udp - Set up transport to use a UDP socket
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002857 * @args: rpc transport creation arguments
Chuck Lever9903cd12005-08-11 16:25:26 -04002858 *
2859 */
Adrian Bunk483066d2007-10-24 18:24:02 +02002860static struct rpc_xprt *xs_setup_udp(struct xprt_create *args)
Chuck Levera246b012005-08-11 16:25:23 -04002861{
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002862 struct sockaddr *addr = args->dstaddr;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002863 struct rpc_xprt *xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002864 struct sock_xprt *transport;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002865 struct rpc_xprt *ret;
Chuck Levera246b012005-08-11 16:25:23 -04002866
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002867 xprt = xs_setup_xprt(args, xprt_udp_slot_table_entries,
2868 xprt_udp_slot_table_entries);
Chuck Leverc8541ec2006-10-17 14:44:27 -04002869 if (IS_ERR(xprt))
2870 return xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002871 transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002872
Chuck Leverec739ef2006-08-22 20:06:15 -04002873 xprt->prot = IPPROTO_UDP;
Chuck Lever808012f2005-08-25 16:25:49 -07002874 xprt->tsh_size = 0;
Chuck Levera246b012005-08-11 16:25:23 -04002875 /* XXX: header size can vary due to auth type, IPv6, etc. */
2876 xprt->max_payload = (1U << 16) - (MAX_HEADER << 3);
2877
Chuck Lever03bf4b72005-08-25 16:25:55 -07002878 xprt->bind_timeout = XS_BIND_TO;
Chuck Lever03bf4b72005-08-25 16:25:55 -07002879 xprt->reestablish_timeout = XS_UDP_REEST_TO;
2880 xprt->idle_timeout = XS_IDLE_DISC_TO;
Chuck Levera246b012005-08-11 16:25:23 -04002881
Chuck Lever262965f2005-08-11 16:25:56 -04002882 xprt->ops = &xs_udp_ops;
Chuck Levera246b012005-08-11 16:25:23 -04002883
Trond Myklebustba7392b2007-12-20 16:03:55 -05002884 xprt->timeout = &xs_udp_default_timeout;
Chuck Levera246b012005-08-11 16:25:23 -04002885
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04002886 INIT_WORK(&transport->recv_worker, xs_udp_data_receive_workfn);
Trond Myklebustedc1b012015-10-05 10:53:49 -04002887 INIT_DELAYED_WORK(&transport->connect_worker, xs_udp_setup_socket);
2888
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002889 switch (addr->sa_family) {
2890 case AF_INET:
2891 if (((struct sockaddr_in *)addr)->sin_port != htons(0))
2892 xprt_set_bound(xprt);
2893
Chuck Lever9dc3b092009-08-09 15:09:46 -04002894 xs_format_peer_addresses(xprt, "udp", RPCBIND_NETID_UDP);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002895 break;
2896 case AF_INET6:
2897 if (((struct sockaddr_in6 *)addr)->sin6_port != htons(0))
2898 xprt_set_bound(xprt);
2899
Chuck Lever9dc3b092009-08-09 15:09:46 -04002900 xs_format_peer_addresses(xprt, "udp", RPCBIND_NETID_UDP6);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002901 break;
2902 default:
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002903 ret = ERR_PTR(-EAFNOSUPPORT);
2904 goto out_err;
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002905 }
2906
Chuck Leverc740eff2009-08-09 15:09:46 -04002907 if (xprt_bound(xprt))
2908 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
2909 xprt->address_strings[RPC_DISPLAY_ADDR],
2910 xprt->address_strings[RPC_DISPLAY_PORT],
2911 xprt->address_strings[RPC_DISPLAY_PROTO]);
2912 else
2913 dprintk("RPC: set up xprt to %s (autobind) via %s\n",
2914 xprt->address_strings[RPC_DISPLAY_ADDR],
2915 xprt->address_strings[RPC_DISPLAY_PROTO]);
Chuck Leveredb267a2006-08-22 20:06:18 -04002916
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002917 if (try_module_get(THIS_MODULE))
2918 return xprt;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002919 ret = ERR_PTR(-EINVAL);
2920out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08002921 xs_xprt_free(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002922 return ret;
Chuck Levera246b012005-08-11 16:25:23 -04002923}
2924
Trond Myklebust2881ae72007-12-20 16:03:54 -05002925static const struct rpc_timeout xs_tcp_default_timeout = {
2926 .to_initval = 60 * HZ,
2927 .to_maxval = 60 * HZ,
2928 .to_retries = 2,
2929};
2930
Chuck Lever9903cd12005-08-11 16:25:26 -04002931/**
2932 * xs_setup_tcp - Set up transport to use a TCP socket
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002933 * @args: rpc transport creation arguments
Chuck Lever9903cd12005-08-11 16:25:26 -04002934 *
2935 */
Adrian Bunk483066d2007-10-24 18:24:02 +02002936static struct rpc_xprt *xs_setup_tcp(struct xprt_create *args)
Chuck Levera246b012005-08-11 16:25:23 -04002937{
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002938 struct sockaddr *addr = args->dstaddr;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002939 struct rpc_xprt *xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002940 struct sock_xprt *transport;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002941 struct rpc_xprt *ret;
Trond Myklebustb7993ce2013-04-14 11:42:00 -04002942 unsigned int max_slot_table_size = xprt_max_tcp_slot_table_entries;
2943
2944 if (args->flags & XPRT_CREATE_INFINITE_SLOTS)
2945 max_slot_table_size = RPC_MAX_SLOT_TABLE_LIMIT;
Chuck Levera246b012005-08-11 16:25:23 -04002946
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002947 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries,
Trond Myklebustb7993ce2013-04-14 11:42:00 -04002948 max_slot_table_size);
Chuck Leverc8541ec2006-10-17 14:44:27 -04002949 if (IS_ERR(xprt))
2950 return xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002951 transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002952
Chuck Leverec739ef2006-08-22 20:06:15 -04002953 xprt->prot = IPPROTO_TCP;
Chuck Lever808012f2005-08-25 16:25:49 -07002954 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
Chuck Lever808012f2005-08-25 16:25:49 -07002955 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
Chuck Levera246b012005-08-11 16:25:23 -04002956
Chuck Lever03bf4b72005-08-25 16:25:55 -07002957 xprt->bind_timeout = XS_BIND_TO;
Chuck Lever03bf4b72005-08-25 16:25:55 -07002958 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
2959 xprt->idle_timeout = XS_IDLE_DISC_TO;
Chuck Levera246b012005-08-11 16:25:23 -04002960
Chuck Lever262965f2005-08-11 16:25:56 -04002961 xprt->ops = &xs_tcp_ops;
Trond Myklebustba7392b2007-12-20 16:03:55 -05002962 xprt->timeout = &xs_tcp_default_timeout;
Chuck Levera246b012005-08-11 16:25:23 -04002963
Trond Myklebustedc1b012015-10-05 10:53:49 -04002964 INIT_WORK(&transport->recv_worker, xs_tcp_data_receive_workfn);
2965 INIT_DELAYED_WORK(&transport->connect_worker, xs_tcp_setup_socket);
2966
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002967 switch (addr->sa_family) {
2968 case AF_INET:
2969 if (((struct sockaddr_in *)addr)->sin_port != htons(0))
2970 xprt_set_bound(xprt);
2971
Chuck Lever9dc3b092009-08-09 15:09:46 -04002972 xs_format_peer_addresses(xprt, "tcp", RPCBIND_NETID_TCP);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002973 break;
2974 case AF_INET6:
2975 if (((struct sockaddr_in6 *)addr)->sin6_port != htons(0))
2976 xprt_set_bound(xprt);
2977
Chuck Lever9dc3b092009-08-09 15:09:46 -04002978 xs_format_peer_addresses(xprt, "tcp", RPCBIND_NETID_TCP6);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002979 break;
2980 default:
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002981 ret = ERR_PTR(-EAFNOSUPPORT);
2982 goto out_err;
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002983 }
2984
Chuck Leverc740eff2009-08-09 15:09:46 -04002985 if (xprt_bound(xprt))
2986 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
2987 xprt->address_strings[RPC_DISPLAY_ADDR],
2988 xprt->address_strings[RPC_DISPLAY_PORT],
2989 xprt->address_strings[RPC_DISPLAY_PROTO]);
2990 else
2991 dprintk("RPC: set up xprt to %s (autobind) via %s\n",
2992 xprt->address_strings[RPC_DISPLAY_ADDR],
2993 xprt->address_strings[RPC_DISPLAY_PROTO]);
2994
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002995 if (try_module_get(THIS_MODULE))
2996 return xprt;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002997 ret = ERR_PTR(-EINVAL);
2998out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08002999 xs_xprt_free(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003000 return ret;
Chuck Levera246b012005-08-11 16:25:23 -04003001}
Chuck Lever282b32e2006-12-05 16:35:51 -05003002
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003003/**
3004 * xs_setup_bc_tcp - Set up transport to use a TCP backchannel socket
3005 * @args: rpc transport creation arguments
3006 *
3007 */
3008static struct rpc_xprt *xs_setup_bc_tcp(struct xprt_create *args)
3009{
3010 struct sockaddr *addr = args->dstaddr;
3011 struct rpc_xprt *xprt;
3012 struct sock_xprt *transport;
3013 struct svc_sock *bc_sock;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003014 struct rpc_xprt *ret;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003015
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003016 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries,
3017 xprt_tcp_slot_table_entries);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003018 if (IS_ERR(xprt))
3019 return xprt;
3020 transport = container_of(xprt, struct sock_xprt, xprt);
3021
3022 xprt->prot = IPPROTO_TCP;
3023 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
3024 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
3025 xprt->timeout = &xs_tcp_default_timeout;
3026
3027 /* backchannel */
3028 xprt_set_bound(xprt);
3029 xprt->bind_timeout = 0;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003030 xprt->reestablish_timeout = 0;
3031 xprt->idle_timeout = 0;
3032
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003033 xprt->ops = &bc_tcp_ops;
3034
3035 switch (addr->sa_family) {
3036 case AF_INET:
3037 xs_format_peer_addresses(xprt, "tcp",
3038 RPCBIND_NETID_TCP);
3039 break;
3040 case AF_INET6:
3041 xs_format_peer_addresses(xprt, "tcp",
3042 RPCBIND_NETID_TCP6);
3043 break;
3044 default:
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003045 ret = ERR_PTR(-EAFNOSUPPORT);
3046 goto out_err;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003047 }
3048
Pavel Emelyanov50fa0d42010-10-05 20:49:35 +04003049 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
3050 xprt->address_strings[RPC_DISPLAY_ADDR],
3051 xprt->address_strings[RPC_DISPLAY_PORT],
3052 xprt->address_strings[RPC_DISPLAY_PROTO]);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003053
3054 /*
J. Bruce Fields99de8ea2010-12-08 12:45:44 -05003055 * Once we've associated a backchannel xprt with a connection,
Weng Meiling28303ca2013-11-30 17:56:44 +08003056 * we want to keep it around as long as the connection lasts,
3057 * in case we need to start using it for a backchannel again;
3058 * this reference won't be dropped until bc_xprt is destroyed.
J. Bruce Fields99de8ea2010-12-08 12:45:44 -05003059 */
3060 xprt_get(xprt);
3061 args->bc_xprt->xpt_bc_xprt = xprt;
3062 xprt->bc_xprt = args->bc_xprt;
3063 bc_sock = container_of(args->bc_xprt, struct svc_sock, sk_xprt);
3064 transport->sock = bc_sock->sk_sock;
3065 transport->inet = bc_sock->sk_sk;
3066
3067 /*
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003068 * Since we don't want connections for the backchannel, we set
3069 * the xprt status to connected
3070 */
3071 xprt_set_connected(xprt);
3072
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003073 if (try_module_get(THIS_MODULE))
3074 return xprt;
Kinglong Mee642aab52014-03-24 12:00:28 +08003075
3076 args->bc_xprt->xpt_bc_xprt = NULL;
J. Bruce Fields39a9bea2016-05-17 12:38:21 -04003077 args->bc_xprt->xpt_bc_xps = NULL;
J. Bruce Fields99de8ea2010-12-08 12:45:44 -05003078 xprt_put(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003079 ret = ERR_PTR(-EINVAL);
3080out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08003081 xs_xprt_free(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003082 return ret;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003083}
3084
Chuck Lever176e21e2011-05-09 15:22:44 -04003085static struct xprt_class xs_local_transport = {
3086 .list = LIST_HEAD_INIT(xs_local_transport.list),
3087 .name = "named UNIX socket",
3088 .owner = THIS_MODULE,
3089 .ident = XPRT_TRANSPORT_LOCAL,
3090 .setup = xs_setup_local,
3091};
3092
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003093static struct xprt_class xs_udp_transport = {
3094 .list = LIST_HEAD_INIT(xs_udp_transport.list),
3095 .name = "udp",
3096 .owner = THIS_MODULE,
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003097 .ident = XPRT_TRANSPORT_UDP,
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003098 .setup = xs_setup_udp,
3099};
3100
3101static struct xprt_class xs_tcp_transport = {
3102 .list = LIST_HEAD_INIT(xs_tcp_transport.list),
3103 .name = "tcp",
3104 .owner = THIS_MODULE,
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003105 .ident = XPRT_TRANSPORT_TCP,
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003106 .setup = xs_setup_tcp,
3107};
3108
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003109static struct xprt_class xs_bc_tcp_transport = {
3110 .list = LIST_HEAD_INIT(xs_bc_tcp_transport.list),
3111 .name = "tcp NFSv4.1 backchannel",
3112 .owner = THIS_MODULE,
3113 .ident = XPRT_TRANSPORT_BC_TCP,
3114 .setup = xs_setup_bc_tcp,
3115};
3116
Chuck Lever282b32e2006-12-05 16:35:51 -05003117/**
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003118 * init_socket_xprt - set up xprtsock's sysctls, register with RPC client
Chuck Lever282b32e2006-12-05 16:35:51 -05003119 *
3120 */
3121int init_socket_xprt(void)
3122{
Jeff Laytonf895b252014-11-17 16:58:04 -05003123#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Eric W. Biederman2b1bec52007-02-14 00:33:24 -08003124 if (!sunrpc_table_header)
Eric W. Biederman0b4d4142007-02-14 00:34:09 -08003125 sunrpc_table_header = register_sysctl_table(sunrpc_table);
Chuck Leverfbf76682006-12-05 16:35:54 -05003126#endif
3127
Chuck Lever176e21e2011-05-09 15:22:44 -04003128 xprt_register_transport(&xs_local_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003129 xprt_register_transport(&xs_udp_transport);
3130 xprt_register_transport(&xs_tcp_transport);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003131 xprt_register_transport(&xs_bc_tcp_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003132
Chuck Lever282b32e2006-12-05 16:35:51 -05003133 return 0;
3134}
3135
3136/**
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003137 * cleanup_socket_xprt - remove xprtsock's sysctls, unregister
Chuck Lever282b32e2006-12-05 16:35:51 -05003138 *
3139 */
3140void cleanup_socket_xprt(void)
3141{
Jeff Laytonf895b252014-11-17 16:58:04 -05003142#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Chuck Leverfbf76682006-12-05 16:35:54 -05003143 if (sunrpc_table_header) {
3144 unregister_sysctl_table(sunrpc_table_header);
3145 sunrpc_table_header = NULL;
3146 }
3147#endif
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003148
Chuck Lever176e21e2011-05-09 15:22:44 -04003149 xprt_unregister_transport(&xs_local_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003150 xprt_unregister_transport(&xs_udp_transport);
3151 xprt_unregister_transport(&xs_tcp_transport);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003152 xprt_unregister_transport(&xs_bc_tcp_transport);
Chuck Lever282b32e2006-12-05 16:35:51 -05003153}
Trond Myklebustcbf11072009-08-09 15:06:19 -04003154
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003155static int param_set_uint_minmax(const char *val,
3156 const struct kernel_param *kp,
Trond Myklebustcbf11072009-08-09 15:06:19 -04003157 unsigned int min, unsigned int max)
3158{
Daniel Walter00cfaa92014-06-21 13:06:38 +01003159 unsigned int num;
Trond Myklebustcbf11072009-08-09 15:06:19 -04003160 int ret;
3161
3162 if (!val)
3163 return -EINVAL;
Daniel Walter00cfaa92014-06-21 13:06:38 +01003164 ret = kstrtouint(val, 0, &num);
Trond Myklebustcbf11072009-08-09 15:06:19 -04003165 if (ret == -EINVAL || num < min || num > max)
3166 return -EINVAL;
3167 *((unsigned int *)kp->arg) = num;
3168 return 0;
3169}
3170
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003171static int param_set_portnr(const char *val, const struct kernel_param *kp)
Trond Myklebustcbf11072009-08-09 15:06:19 -04003172{
Frank Sorensonffb6ca32016-07-08 16:35:25 -05003173 if (kp->arg == &xprt_min_resvport)
3174 return param_set_uint_minmax(val, kp,
Trond Myklebustcbf11072009-08-09 15:06:19 -04003175 RPC_MIN_RESVPORT,
Frank Sorensonffb6ca32016-07-08 16:35:25 -05003176 xprt_max_resvport);
3177 return param_set_uint_minmax(val, kp,
3178 xprt_min_resvport,
Trond Myklebustcbf11072009-08-09 15:06:19 -04003179 RPC_MAX_RESVPORT);
3180}
3181
Luis R. Rodriguez9c278472015-05-27 11:09:38 +09303182static const struct kernel_param_ops param_ops_portnr = {
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003183 .set = param_set_portnr,
3184 .get = param_get_uint,
3185};
3186
Trond Myklebustcbf11072009-08-09 15:06:19 -04003187#define param_check_portnr(name, p) \
3188 __param_check(name, p, unsigned int);
3189
3190module_param_named(min_resvport, xprt_min_resvport, portnr, 0644);
3191module_param_named(max_resvport, xprt_max_resvport, portnr, 0644);
3192
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003193static int param_set_slot_table_size(const char *val,
3194 const struct kernel_param *kp)
Trond Myklebustcbf11072009-08-09 15:06:19 -04003195{
3196 return param_set_uint_minmax(val, kp,
3197 RPC_MIN_SLOT_TABLE,
3198 RPC_MAX_SLOT_TABLE);
3199}
3200
Luis R. Rodriguez9c278472015-05-27 11:09:38 +09303201static const struct kernel_param_ops param_ops_slot_table_size = {
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003202 .set = param_set_slot_table_size,
3203 .get = param_get_uint,
3204};
3205
Trond Myklebustcbf11072009-08-09 15:06:19 -04003206#define param_check_slot_table_size(name, p) \
3207 __param_check(name, p, unsigned int);
3208
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003209static int param_set_max_slot_table_size(const char *val,
3210 const struct kernel_param *kp)
3211{
3212 return param_set_uint_minmax(val, kp,
3213 RPC_MIN_SLOT_TABLE,
3214 RPC_MAX_SLOT_TABLE_LIMIT);
3215}
3216
Luis R. Rodriguez9c278472015-05-27 11:09:38 +09303217static const struct kernel_param_ops param_ops_max_slot_table_size = {
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003218 .set = param_set_max_slot_table_size,
3219 .get = param_get_uint,
3220};
3221
3222#define param_check_max_slot_table_size(name, p) \
3223 __param_check(name, p, unsigned int);
3224
Trond Myklebustcbf11072009-08-09 15:06:19 -04003225module_param_named(tcp_slot_table_entries, xprt_tcp_slot_table_entries,
3226 slot_table_size, 0644);
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003227module_param_named(tcp_max_slot_table_entries, xprt_max_tcp_slot_table_entries,
3228 max_slot_table_size, 0644);
Trond Myklebustcbf11072009-08-09 15:06:19 -04003229module_param_named(udp_slot_table_entries, xprt_udp_slot_table_entries,
3230 slot_table_size, 0644);
3231