blob: 2ffaf6a794994ae20247fda57a6dd4c4bee64b0d [file] [log] [blame]
Chuck Levera246b012005-08-11 16:25:23 -04001/*
2 * linux/net/sunrpc/xprtsock.c
3 *
4 * Client-side transport implementation for sockets.
5 *
Alan Cox113aa832008-10-13 19:01:08 -07006 * TCP callback races fixes (C) 1998 Red Hat
7 * TCP send fixes (C) 1998 Red Hat
Chuck Levera246b012005-08-11 16:25:23 -04008 * TCP NFS related read + write fixes
9 * (C) 1999 Dave Airlie, University of Limerick, Ireland <airlied@linux.ie>
10 *
11 * Rewrite of larges part of the code in order to stabilize TCP stuff.
12 * Fix behaviour when socket buffer is full.
13 * (C) 1999 Trond Myklebust <trond.myklebust@fys.uio.no>
Chuck Lever55aa4f52005-08-11 16:25:47 -040014 *
15 * IP socket transport implementation, (C) 2005 Chuck Lever <cel@netapp.com>
Chuck Lever8f9d5b12007-08-06 11:57:53 -040016 *
17 * IPv6 support contributed by Gilles Quillard, Bull Open Source, 2005.
18 * <gilles.quillard@bull.net>
Chuck Levera246b012005-08-11 16:25:23 -040019 */
20
21#include <linux/types.h>
Chuck Lever176e21e2011-05-09 15:22:44 -040022#include <linux/string.h>
Chuck Levera246b012005-08-11 16:25:23 -040023#include <linux/slab.h>
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -040024#include <linux/module.h>
Chuck Levera246b012005-08-11 16:25:23 -040025#include <linux/capability.h>
Chuck Levera246b012005-08-11 16:25:23 -040026#include <linux/pagemap.h>
27#include <linux/errno.h>
28#include <linux/socket.h>
29#include <linux/in.h>
30#include <linux/net.h>
31#include <linux/mm.h>
Chuck Lever176e21e2011-05-09 15:22:44 -040032#include <linux/un.h>
Chuck Levera246b012005-08-11 16:25:23 -040033#include <linux/udp.h>
34#include <linux/tcp.h>
35#include <linux/sunrpc/clnt.h>
Jeff Layton59766872013-02-04 12:50:00 -050036#include <linux/sunrpc/addr.h>
Chuck Lever02107142006-01-03 09:55:49 +010037#include <linux/sunrpc/sched.h>
Rahul Iyer4cfc7e62009-09-10 17:32:28 +030038#include <linux/sunrpc/svcsock.h>
\"Talpey, Thomas\49c36fc2007-09-10 13:47:31 -040039#include <linux/sunrpc/xprtsock.h>
Chuck Levera246b012005-08-11 16:25:23 -040040#include <linux/file.h>
Trond Myklebust9e00abc2011-07-13 19:20:49 -040041#ifdef CONFIG_SUNRPC_BACKCHANNEL
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -040042#include <linux/sunrpc/bc_xprt.h>
43#endif
Chuck Levera246b012005-08-11 16:25:23 -040044
45#include <net/sock.h>
46#include <net/checksum.h>
47#include <net/udp.h>
48#include <net/tcp.h>
49
Trond Myklebust40b5ea02013-09-04 12:16:23 -040050#include <trace/events/sunrpc.h>
51
Rahul Iyer4cfc7e62009-09-10 17:32:28 +030052#include "sunrpc.h"
Chuck Lever176e21e2011-05-09 15:22:44 -040053
54static void xs_close(struct rpc_xprt *xprt);
55
Chuck Lever9903cd12005-08-11 16:25:26 -040056/*
Chuck Leverc556b752005-11-01 12:24:48 -050057 * xprtsock tunables
58 */
Trond Myklebust09acfea2012-03-11 15:22:54 -040059static unsigned int xprt_udp_slot_table_entries = RPC_DEF_SLOT_TABLE;
60static unsigned int xprt_tcp_slot_table_entries = RPC_MIN_SLOT_TABLE;
61static unsigned int xprt_max_tcp_slot_table_entries = RPC_MAX_SLOT_TABLE;
Chuck Leverc556b752005-11-01 12:24:48 -050062
Trond Myklebust09acfea2012-03-11 15:22:54 -040063static unsigned int xprt_min_resvport = RPC_DEF_MIN_RESVPORT;
64static unsigned int xprt_max_resvport = RPC_DEF_MAX_RESVPORT;
Chuck Leverc556b752005-11-01 12:24:48 -050065
Trond Myklebust54c09872015-02-09 11:01:02 -050066#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
67
Trond Myklebust7d1e8252009-03-11 14:38:03 -040068#define XS_TCP_LINGER_TO (15U * HZ)
Trond Myklebust25fe6142009-03-11 14:38:03 -040069static unsigned int xs_tcp_fin_timeout __read_mostly = XS_TCP_LINGER_TO;
Trond Myklebust7d1e8252009-03-11 14:38:03 -040070
Chuck Leverc556b752005-11-01 12:24:48 -050071/*
Chuck Leverfbf76682006-12-05 16:35:54 -050072 * We can register our own files under /proc/sys/sunrpc by
73 * calling register_sysctl_table() again. The files in that
74 * directory become the union of all files registered there.
75 *
76 * We simply need to make sure that we don't collide with
77 * someone else's file names!
78 */
79
Chuck Leverfbf76682006-12-05 16:35:54 -050080static unsigned int min_slot_table_size = RPC_MIN_SLOT_TABLE;
81static unsigned int max_slot_table_size = RPC_MAX_SLOT_TABLE;
Trond Myklebustd9ba1312011-07-17 18:11:30 -040082static unsigned int max_tcp_slot_table_limit = RPC_MAX_SLOT_TABLE_LIMIT;
Chuck Leverfbf76682006-12-05 16:35:54 -050083static unsigned int xprt_min_resvport_limit = RPC_MIN_RESVPORT;
84static unsigned int xprt_max_resvport_limit = RPC_MAX_RESVPORT;
85
86static struct ctl_table_header *sunrpc_table_header;
87
88/*
89 * FIXME: changing the UDP slot table size should also resize the UDP
90 * socket buffers for existing UDP transports
91 */
Joe Perchesfe2c6332013-06-11 23:04:25 -070092static struct ctl_table xs_tunables_table[] = {
Chuck Leverfbf76682006-12-05 16:35:54 -050093 {
Chuck Leverfbf76682006-12-05 16:35:54 -050094 .procname = "udp_slot_table_entries",
95 .data = &xprt_udp_slot_table_entries,
96 .maxlen = sizeof(unsigned int),
97 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -080098 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -050099 .extra1 = &min_slot_table_size,
100 .extra2 = &max_slot_table_size
101 },
102 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500103 .procname = "tcp_slot_table_entries",
104 .data = &xprt_tcp_slot_table_entries,
105 .maxlen = sizeof(unsigned int),
106 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800107 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -0500108 .extra1 = &min_slot_table_size,
109 .extra2 = &max_slot_table_size
110 },
111 {
Trond Myklebustd9ba1312011-07-17 18:11:30 -0400112 .procname = "tcp_max_slot_table_entries",
113 .data = &xprt_max_tcp_slot_table_entries,
114 .maxlen = sizeof(unsigned int),
115 .mode = 0644,
116 .proc_handler = proc_dointvec_minmax,
117 .extra1 = &min_slot_table_size,
118 .extra2 = &max_tcp_slot_table_limit
119 },
120 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500121 .procname = "min_resvport",
122 .data = &xprt_min_resvport,
123 .maxlen = sizeof(unsigned int),
124 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800125 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -0500126 .extra1 = &xprt_min_resvport_limit,
127 .extra2 = &xprt_max_resvport_limit
128 },
129 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500130 .procname = "max_resvport",
131 .data = &xprt_max_resvport,
132 .maxlen = sizeof(unsigned int),
133 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800134 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -0500135 .extra1 = &xprt_min_resvport_limit,
136 .extra2 = &xprt_max_resvport_limit
137 },
138 {
Trond Myklebust25fe6142009-03-11 14:38:03 -0400139 .procname = "tcp_fin_timeout",
140 .data = &xs_tcp_fin_timeout,
141 .maxlen = sizeof(xs_tcp_fin_timeout),
142 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800143 .proc_handler = proc_dointvec_jiffies,
Trond Myklebust25fe6142009-03-11 14:38:03 -0400144 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800145 { },
Chuck Leverfbf76682006-12-05 16:35:54 -0500146};
147
Joe Perchesfe2c6332013-06-11 23:04:25 -0700148static struct ctl_table sunrpc_table[] = {
Chuck Leverfbf76682006-12-05 16:35:54 -0500149 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500150 .procname = "sunrpc",
151 .mode = 0555,
152 .child = xs_tunables_table
153 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800154 { },
Chuck Leverfbf76682006-12-05 16:35:54 -0500155};
156
157#endif
158
159/*
Chuck Lever03bf4b72005-08-25 16:25:55 -0700160 * Wait duration for a reply from the RPC portmapper.
161 */
162#define XS_BIND_TO (60U * HZ)
163
164/*
165 * Delay if a UDP socket connect error occurs. This is most likely some
166 * kind of resource problem on the local host.
167 */
168#define XS_UDP_REEST_TO (2U * HZ)
169
170/*
171 * The reestablish timeout allows clients to delay for a bit before attempting
172 * to reconnect to a server that just dropped our connection.
173 *
174 * We implement an exponential backoff when trying to reestablish a TCP
175 * transport connection with the server. Some servers like to drop a TCP
176 * connection when they are overworked, so we start with a short timeout and
177 * increase over time if the server is down or not responding.
178 */
179#define XS_TCP_INIT_REEST_TO (3U * HZ)
180#define XS_TCP_MAX_REEST_TO (5U * 60 * HZ)
181
182/*
183 * TCP idle timeout; client drops the transport socket if it is idle
184 * for this long. Note that we also timeout UDP sockets to prevent
185 * holding port numbers when there is no RPC traffic.
186 */
187#define XS_IDLE_DISC_TO (5U * 60 * HZ)
188
Jeff Laytonf895b252014-11-17 16:58:04 -0500189#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Chuck Levera246b012005-08-11 16:25:23 -0400190# undef RPC_DEBUG_DATA
Chuck Lever9903cd12005-08-11 16:25:26 -0400191# define RPCDBG_FACILITY RPCDBG_TRANS
Chuck Levera246b012005-08-11 16:25:23 -0400192#endif
193
Chuck Levera246b012005-08-11 16:25:23 -0400194#ifdef RPC_DEBUG_DATA
Chuck Lever9903cd12005-08-11 16:25:26 -0400195static void xs_pktdump(char *msg, u32 *packet, unsigned int count)
Chuck Levera246b012005-08-11 16:25:23 -0400196{
Chuck Lever9903cd12005-08-11 16:25:26 -0400197 u8 *buf = (u8 *) packet;
198 int j;
Chuck Levera246b012005-08-11 16:25:23 -0400199
Chuck Lever46121cf2007-01-31 12:14:08 -0500200 dprintk("RPC: %s\n", msg);
Chuck Levera246b012005-08-11 16:25:23 -0400201 for (j = 0; j < count && j < 128; j += 4) {
202 if (!(j & 31)) {
203 if (j)
204 dprintk("\n");
205 dprintk("0x%04x ", j);
206 }
207 dprintk("%02x%02x%02x%02x ",
208 buf[j], buf[j+1], buf[j+2], buf[j+3]);
209 }
210 dprintk("\n");
211}
212#else
Chuck Lever9903cd12005-08-11 16:25:26 -0400213static inline void xs_pktdump(char *msg, u32 *packet, unsigned int count)
Chuck Levera246b012005-08-11 16:25:23 -0400214{
215 /* NOP */
216}
217#endif
218
Trond Myklebust21180712013-12-31 13:22:59 -0500219static inline struct rpc_xprt *xprt_from_sock(struct sock *sk)
220{
221 return (struct rpc_xprt *) sk->sk_user_data;
222}
223
Chuck Lever95392c52007-08-06 11:57:58 -0400224static inline struct sockaddr *xs_addr(struct rpc_xprt *xprt)
Chuck Leveredb267a2006-08-22 20:06:18 -0400225{
Chuck Lever95392c52007-08-06 11:57:58 -0400226 return (struct sockaddr *) &xprt->addr;
227}
228
Chuck Lever176e21e2011-05-09 15:22:44 -0400229static inline struct sockaddr_un *xs_addr_un(struct rpc_xprt *xprt)
230{
231 return (struct sockaddr_un *) &xprt->addr;
232}
233
Chuck Lever95392c52007-08-06 11:57:58 -0400234static inline struct sockaddr_in *xs_addr_in(struct rpc_xprt *xprt)
235{
236 return (struct sockaddr_in *) &xprt->addr;
237}
238
239static inline struct sockaddr_in6 *xs_addr_in6(struct rpc_xprt *xprt)
240{
241 return (struct sockaddr_in6 *) &xprt->addr;
242}
243
Chuck Leverc877b842009-08-09 15:09:36 -0400244static void xs_format_common_peer_addresses(struct rpc_xprt *xprt)
Chuck Leveredb267a2006-08-22 20:06:18 -0400245{
Chuck Leverc877b842009-08-09 15:09:36 -0400246 struct sockaddr *sap = xs_addr(xprt);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400247 struct sockaddr_in6 *sin6;
248 struct sockaddr_in *sin;
Chuck Lever176e21e2011-05-09 15:22:44 -0400249 struct sockaddr_un *sun;
Chuck Leverc877b842009-08-09 15:09:36 -0400250 char buf[128];
Chuck Leveredb267a2006-08-22 20:06:18 -0400251
Chuck Lever9dc3b092009-08-09 15:09:46 -0400252 switch (sap->sa_family) {
Chuck Lever176e21e2011-05-09 15:22:44 -0400253 case AF_LOCAL:
254 sun = xs_addr_un(xprt);
255 strlcpy(buf, sun->sun_path, sizeof(buf));
256 xprt->address_strings[RPC_DISPLAY_ADDR] =
257 kstrdup(buf, GFP_KERNEL);
258 break;
Chuck Lever9dc3b092009-08-09 15:09:46 -0400259 case AF_INET:
Chuck Lever176e21e2011-05-09 15:22:44 -0400260 (void)rpc_ntop(sap, buf, sizeof(buf));
261 xprt->address_strings[RPC_DISPLAY_ADDR] =
262 kstrdup(buf, GFP_KERNEL);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400263 sin = xs_addr_in(xprt);
Joe Perchesfc0b57912010-03-08 12:15:28 -0800264 snprintf(buf, sizeof(buf), "%08x", ntohl(sin->sin_addr.s_addr));
Chuck Lever9dc3b092009-08-09 15:09:46 -0400265 break;
266 case AF_INET6:
Chuck Lever176e21e2011-05-09 15:22:44 -0400267 (void)rpc_ntop(sap, buf, sizeof(buf));
268 xprt->address_strings[RPC_DISPLAY_ADDR] =
269 kstrdup(buf, GFP_KERNEL);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400270 sin6 = xs_addr_in6(xprt);
Joe Perchesfc0b57912010-03-08 12:15:28 -0800271 snprintf(buf, sizeof(buf), "%pi6", &sin6->sin6_addr);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400272 break;
273 default:
274 BUG();
Chuck Leveredb267a2006-08-22 20:06:18 -0400275 }
Chuck Lever176e21e2011-05-09 15:22:44 -0400276
Chuck Lever9dc3b092009-08-09 15:09:46 -0400277 xprt->address_strings[RPC_DISPLAY_HEX_ADDR] = kstrdup(buf, GFP_KERNEL);
Chuck Leveredb267a2006-08-22 20:06:18 -0400278}
279
Chuck Lever9dc3b092009-08-09 15:09:46 -0400280static void xs_format_common_peer_ports(struct rpc_xprt *xprt)
Chuck Lever4b6473f2007-08-06 11:57:12 -0400281{
Chuck Lever9dc3b092009-08-09 15:09:46 -0400282 struct sockaddr *sap = xs_addr(xprt);
283 char buf[128];
Chuck Lever4b6473f2007-08-06 11:57:12 -0400284
Joe Perches81160e662010-03-08 12:15:59 -0800285 snprintf(buf, sizeof(buf), "%u", rpc_get_port(sap));
Chuck Leverc877b842009-08-09 15:09:36 -0400286 xprt->address_strings[RPC_DISPLAY_PORT] = kstrdup(buf, GFP_KERNEL);
Chuck Lever4b6473f2007-08-06 11:57:12 -0400287
Joe Perches81160e662010-03-08 12:15:59 -0800288 snprintf(buf, sizeof(buf), "%4hx", rpc_get_port(sap));
Chuck Leverc877b842009-08-09 15:09:36 -0400289 xprt->address_strings[RPC_DISPLAY_HEX_PORT] = kstrdup(buf, GFP_KERNEL);
290}
Chuck Lever4b6473f2007-08-06 11:57:12 -0400291
Chuck Lever9dc3b092009-08-09 15:09:46 -0400292static void xs_format_peer_addresses(struct rpc_xprt *xprt,
293 const char *protocol,
294 const char *netid)
Chuck Leveredb267a2006-08-22 20:06:18 -0400295{
Chuck Leverb454ae92008-01-07 18:34:48 -0500296 xprt->address_strings[RPC_DISPLAY_PROTO] = protocol;
Chuck Leverb454ae92008-01-07 18:34:48 -0500297 xprt->address_strings[RPC_DISPLAY_NETID] = netid;
Chuck Leverc877b842009-08-09 15:09:36 -0400298 xs_format_common_peer_addresses(xprt);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400299 xs_format_common_peer_ports(xprt);
Chuck Lever4b6473f2007-08-06 11:57:12 -0400300}
301
Chuck Lever9dc3b092009-08-09 15:09:46 -0400302static void xs_update_peer_port(struct rpc_xprt *xprt)
Chuck Lever4b6473f2007-08-06 11:57:12 -0400303{
Chuck Lever9dc3b092009-08-09 15:09:46 -0400304 kfree(xprt->address_strings[RPC_DISPLAY_HEX_PORT]);
305 kfree(xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever4b6473f2007-08-06 11:57:12 -0400306
Chuck Lever9dc3b092009-08-09 15:09:46 -0400307 xs_format_common_peer_ports(xprt);
Chuck Leveredb267a2006-08-22 20:06:18 -0400308}
309
310static void xs_free_peer_addresses(struct rpc_xprt *xprt)
311{
Chuck Lever33e01dc2008-01-14 12:32:20 -0500312 unsigned int i;
313
314 for (i = 0; i < RPC_DISPLAY_MAX; i++)
315 switch (i) {
316 case RPC_DISPLAY_PROTO:
317 case RPC_DISPLAY_NETID:
318 continue;
319 default:
320 kfree(xprt->address_strings[i]);
321 }
Chuck Leveredb267a2006-08-22 20:06:18 -0400322}
323
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400324#define XS_SENDMSG_FLAGS (MSG_DONTWAIT | MSG_NOSIGNAL)
325
Trond Myklebust24c56842006-10-17 15:06:22 -0400326static int xs_send_kvec(struct socket *sock, struct sockaddr *addr, int addrlen, struct kvec *vec, unsigned int base, int more)
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400327{
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400328 struct msghdr msg = {
329 .msg_name = addr,
330 .msg_namelen = addrlen,
Trond Myklebust24c56842006-10-17 15:06:22 -0400331 .msg_flags = XS_SENDMSG_FLAGS | (more ? MSG_MORE : 0),
332 };
333 struct kvec iov = {
334 .iov_base = vec->iov_base + base,
335 .iov_len = vec->iov_len - base,
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400336 };
337
Trond Myklebust24c56842006-10-17 15:06:22 -0400338 if (iov.iov_len != 0)
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400339 return kernel_sendmsg(sock, &msg, &iov, 1, iov.iov_len);
340 return kernel_sendmsg(sock, &msg, NULL, 0, 0);
341}
342
Jason Baronf279cd02014-09-24 18:08:00 +0000343static int xs_send_pagedata(struct socket *sock, struct xdr_buf *xdr, unsigned int base, int more, bool zerocopy, int *sent_p)
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400344{
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500345 ssize_t (*do_sendpage)(struct socket *sock, struct page *page,
346 int offset, size_t size, int flags);
Trond Myklebust24c56842006-10-17 15:06:22 -0400347 struct page **ppage;
348 unsigned int remainder;
Jason Baronf279cd02014-09-24 18:08:00 +0000349 int err;
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400350
Trond Myklebust24c56842006-10-17 15:06:22 -0400351 remainder = xdr->page_len - base;
352 base += xdr->page_base;
353 ppage = xdr->pages + (base >> PAGE_SHIFT);
354 base &= ~PAGE_MASK;
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500355 do_sendpage = sock->ops->sendpage;
356 if (!zerocopy)
357 do_sendpage = sock_no_sendpage;
Trond Myklebust24c56842006-10-17 15:06:22 -0400358 for(;;) {
359 unsigned int len = min_t(unsigned int, PAGE_SIZE - base, remainder);
360 int flags = XS_SENDMSG_FLAGS;
361
362 remainder -= len;
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
Eric Dumazet9cd3e072015-11-29 20:03:10 -0800401 clear_bit(SOCKWQ_ASYNC_NOSPACE, &sock->flags);
Trond Myklebust24c56842006-10-17 15:06:22 -0400402 if (base != 0) {
403 addr = NULL;
404 addrlen = 0;
405 }
Chuck Lever262965f2005-08-11 16:25:56 -0400406
Trond Myklebust24c56842006-10-17 15:06:22 -0400407 if (base < xdr->head[0].iov_len || addr != NULL) {
408 unsigned int len = xdr->head[0].iov_len - base;
409 remainder -= len;
410 err = xs_send_kvec(sock, addr, addrlen, &xdr->head[0], base, remainder != 0);
411 if (remainder == 0 || err != len)
Chuck Levera246b012005-08-11 16:25:23 -0400412 goto out;
Jason Baronf279cd02014-09-24 18:08:00 +0000413 *sent_p += err;
Chuck Levera246b012005-08-11 16:25:23 -0400414 base = 0;
415 } else
Trond Myklebust24c56842006-10-17 15:06:22 -0400416 base -= xdr->head[0].iov_len;
Chuck Levera246b012005-08-11 16:25:23 -0400417
Trond Myklebust24c56842006-10-17 15:06:22 -0400418 if (base < xdr->page_len) {
419 unsigned int len = xdr->page_len - base;
420 remainder -= len;
Jason Baronf279cd02014-09-24 18:08:00 +0000421 err = xs_send_pagedata(sock, xdr, base, remainder != 0, zerocopy, &sent);
422 *sent_p += sent;
423 if (remainder == 0 || sent != len)
Chuck Levera246b012005-08-11 16:25:23 -0400424 goto out;
425 base = 0;
Trond Myklebust24c56842006-10-17 15:06:22 -0400426 } else
427 base -= xdr->page_len;
428
429 if (base >= xdr->tail[0].iov_len)
Jason Baronf279cd02014-09-24 18:08:00 +0000430 return 0;
Trond Myklebust24c56842006-10-17 15:06:22 -0400431 err = xs_send_kvec(sock, NULL, 0, &xdr->tail[0], base, 0);
Chuck Levera246b012005-08-11 16:25:23 -0400432out:
Jason Baronf279cd02014-09-24 18:08:00 +0000433 if (err > 0) {
434 *sent_p += err;
435 err = 0;
436 }
437 return err;
Chuck Levera246b012005-08-11 16:25:23 -0400438}
439
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400440static void xs_nospace_callback(struct rpc_task *task)
441{
442 struct sock_xprt *transport = container_of(task->tk_rqstp->rq_xprt, struct sock_xprt, xprt);
443
444 transport->inet->sk_write_pending--;
Eric Dumazet9cd3e072015-11-29 20:03:10 -0800445 clear_bit(SOCKWQ_ASYNC_NOSPACE, &transport->sock->flags);
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400446}
447
Chuck Lever9903cd12005-08-11 16:25:26 -0400448/**
Chuck Lever262965f2005-08-11 16:25:56 -0400449 * xs_nospace - place task on wait queue if transmit was incomplete
450 * @task: task to put to sleep
Chuck Lever9903cd12005-08-11 16:25:26 -0400451 *
Chuck Levera246b012005-08-11 16:25:23 -0400452 */
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400453static int xs_nospace(struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -0400454{
Chuck Lever262965f2005-08-11 16:25:56 -0400455 struct rpc_rqst *req = task->tk_rqstp;
456 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500457 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebust06ea0bf2014-02-11 09:15:54 -0500458 struct sock *sk = transport->inet;
Trond Myklebust24ca9a82011-11-22 14:44:28 +0200459 int ret = -EAGAIN;
Chuck Levera246b012005-08-11 16:25:23 -0400460
Chuck Lever46121cf2007-01-31 12:14:08 -0500461 dprintk("RPC: %5u xmit incomplete (%u left of %u)\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400462 task->tk_pid, req->rq_slen - req->rq_bytes_sent,
463 req->rq_slen);
464
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400465 /* Protect against races with write_space */
466 spin_lock_bh(&xprt->transport_lock);
Chuck Lever262965f2005-08-11 16:25:56 -0400467
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400468 /* Don't race with disconnect */
469 if (xprt_connected(xprt)) {
Eric Dumazet9cd3e072015-11-29 20:03:10 -0800470 if (test_bit(SOCKWQ_ASYNC_NOSPACE, &transport->sock->flags)) {
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400471 /*
472 * Notify TCP that we're limited by the application
473 * window size
474 */
475 set_bit(SOCK_NOSPACE, &transport->sock->flags);
Trond Myklebust06ea0bf2014-02-11 09:15:54 -0500476 sk->sk_write_pending++;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400477 /* ...and wait for more buffer space */
478 xprt_wait_for_buffer_space(task, xs_nospace_callback);
479 }
480 } else {
Eric Dumazet9cd3e072015-11-29 20:03:10 -0800481 clear_bit(SOCKWQ_ASYNC_NOSPACE, &transport->sock->flags);
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400482 ret = -ENOTCONN;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400483 }
Chuck Lever262965f2005-08-11 16:25:56 -0400484
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400485 spin_unlock_bh(&xprt->transport_lock);
Trond Myklebust06ea0bf2014-02-11 09:15:54 -0500486
487 /* Race breaker in case memory is freed before above code is called */
488 sk->sk_write_space(sk);
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400489 return ret;
Chuck Lever262965f2005-08-11 16:25:56 -0400490}
491
Chuck Lever61677ee2011-05-09 15:22:34 -0400492/*
493 * Construct a stream transport record marker in @buf.
494 */
495static inline void xs_encode_stream_record_marker(struct xdr_buf *buf)
496{
497 u32 reclen = buf->len - sizeof(rpc_fraghdr);
498 rpc_fraghdr *base = buf->head[0].iov_base;
499 *base = cpu_to_be32(RPC_LAST_STREAM_FRAGMENT | reclen);
500}
501
Chuck Lever262965f2005-08-11 16:25:56 -0400502/**
Chuck Lever176e21e2011-05-09 15:22:44 -0400503 * xs_local_send_request - write an RPC request to an AF_LOCAL socket
504 * @task: RPC task that manages the state of an RPC request
505 *
506 * Return values:
507 * 0: The request has been sent
508 * EAGAIN: The socket was blocked, please call again later to
509 * complete the request
510 * ENOTCONN: Caller needs to invoke connect logic then call again
511 * other: Some other error occured, the request was not sent
512 */
513static int xs_local_send_request(struct rpc_task *task)
514{
515 struct rpc_rqst *req = task->tk_rqstp;
516 struct rpc_xprt *xprt = req->rq_xprt;
517 struct sock_xprt *transport =
518 container_of(xprt, struct sock_xprt, xprt);
519 struct xdr_buf *xdr = &req->rq_snd_buf;
520 int status;
Jason Baronf279cd02014-09-24 18:08:00 +0000521 int sent = 0;
Chuck Lever176e21e2011-05-09 15:22:44 -0400522
523 xs_encode_stream_record_marker(&req->rq_snd_buf);
524
525 xs_pktdump("packet data:",
526 req->rq_svec->iov_base, req->rq_svec->iov_len);
527
Jason Baronf279cd02014-09-24 18:08:00 +0000528 status = xs_sendpages(transport->sock, NULL, 0, xdr, req->rq_bytes_sent,
529 true, &sent);
Chuck Lever176e21e2011-05-09 15:22:44 -0400530 dprintk("RPC: %s(%u) = %d\n",
531 __func__, xdr->len - req->rq_bytes_sent, status);
NeilBrown743c69e2015-07-27 10:55:35 +1000532
533 if (status == -EAGAIN && sock_writeable(transport->inet))
534 status = -ENOBUFS;
535
Jason Baronf279cd02014-09-24 18:08:00 +0000536 if (likely(sent > 0) || status == 0) {
537 req->rq_bytes_sent += sent;
538 req->rq_xmit_bytes_sent += sent;
Chuck Lever176e21e2011-05-09 15:22:44 -0400539 if (likely(req->rq_bytes_sent >= req->rq_slen)) {
540 req->rq_bytes_sent = 0;
541 return 0;
542 }
543 status = -EAGAIN;
544 }
545
546 switch (status) {
Trond Myklebust3601c4a2014-06-30 13:42:19 -0400547 case -ENOBUFS:
Trond Myklebustb5872f02015-07-03 09:32:23 -0400548 break;
Chuck Lever176e21e2011-05-09 15:22:44 -0400549 case -EAGAIN:
550 status = xs_nospace(task);
551 break;
552 default:
553 dprintk("RPC: sendmsg returned unrecognized error %d\n",
554 -status);
555 case -EPIPE:
556 xs_close(xprt);
557 status = -ENOTCONN;
558 }
559
560 return status;
561}
562
563/**
Chuck Lever262965f2005-08-11 16:25:56 -0400564 * xs_udp_send_request - write an RPC request to a UDP socket
565 * @task: address of RPC task that manages the state of an RPC request
566 *
567 * Return values:
568 * 0: The request has been sent
569 * EAGAIN: The socket was blocked, please call again later to
570 * complete the request
571 * ENOTCONN: Caller needs to invoke connect logic then call again
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300572 * other: Some other error occurred, the request was not sent
Chuck Lever262965f2005-08-11 16:25:56 -0400573 */
574static int xs_udp_send_request(struct rpc_task *task)
575{
576 struct rpc_rqst *req = task->tk_rqstp;
577 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500578 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262965f2005-08-11 16:25:56 -0400579 struct xdr_buf *xdr = &req->rq_snd_buf;
Jason Baronf279cd02014-09-24 18:08:00 +0000580 int sent = 0;
Chuck Lever262965f2005-08-11 16:25:56 -0400581 int status;
Chuck Levera246b012005-08-11 16:25:23 -0400582
Chuck Lever9903cd12005-08-11 16:25:26 -0400583 xs_pktdump("packet data:",
Chuck Levera246b012005-08-11 16:25:23 -0400584 req->rq_svec->iov_base,
585 req->rq_svec->iov_len);
586
Trond Myklebust01d37c42009-03-11 14:09:39 -0400587 if (!xprt_bound(xprt))
588 return -ENOTCONN;
Jason Baronf279cd02014-09-24 18:08:00 +0000589 status = xs_sendpages(transport->sock, xs_addr(xprt), xprt->addrlen,
590 xdr, req->rq_bytes_sent, true, &sent);
Chuck Levera246b012005-08-11 16:25:23 -0400591
Chuck Lever46121cf2007-01-31 12:14:08 -0500592 dprintk("RPC: xs_udp_send_request(%u) = %d\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400593 xdr->len - req->rq_bytes_sent, status);
Chuck Levera246b012005-08-11 16:25:23 -0400594
Jason Baron3dedbb52014-09-24 18:08:04 +0000595 /* firewall is blocking us, don't return -EAGAIN or we end up looping */
596 if (status == -EPERM)
597 goto process_status;
598
NeilBrown743c69e2015-07-27 10:55:35 +1000599 if (status == -EAGAIN && sock_writeable(transport->inet))
600 status = -ENOBUFS;
601
Jason Baronf279cd02014-09-24 18:08:00 +0000602 if (sent > 0 || status == 0) {
603 req->rq_xmit_bytes_sent += sent;
604 if (sent >= req->rq_slen)
Trond Myklebust21997002007-10-01 11:43:37 -0400605 return 0;
606 /* Still some bytes left; set up for a retry later. */
Chuck Lever262965f2005-08-11 16:25:56 -0400607 status = -EAGAIN;
Trond Myklebust21997002007-10-01 11:43:37 -0400608 }
Chuck Levera246b012005-08-11 16:25:23 -0400609
Jason Baron3dedbb52014-09-24 18:08:04 +0000610process_status:
Chuck Lever262965f2005-08-11 16:25:56 -0400611 switch (status) {
Trond Myklebustfba91af2009-03-11 14:06:41 -0400612 case -ENOTSOCK:
613 status = -ENOTCONN;
614 /* Should we call xs_close() here? */
615 break;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400616 case -EAGAIN:
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400617 status = xs_nospace(task);
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400618 break;
Trond Myklebustc8485e42009-03-11 14:37:59 -0400619 default:
620 dprintk("RPC: sendmsg returned unrecognized error %d\n",
621 -status);
Chuck Lever262965f2005-08-11 16:25:56 -0400622 case -ENETUNREACH:
Trond Myklebust3601c4a2014-06-30 13:42:19 -0400623 case -ENOBUFS:
Chuck Lever262965f2005-08-11 16:25:56 -0400624 case -EPIPE:
Chuck Levera246b012005-08-11 16:25:23 -0400625 case -ECONNREFUSED:
Jason Baron3dedbb52014-09-24 18:08:04 +0000626 case -EPERM:
Chuck Levera246b012005-08-11 16:25:23 -0400627 /* When the server has died, an ICMP port unreachable message
Chuck Lever9903cd12005-08-11 16:25:26 -0400628 * prompts ECONNREFUSED. */
Eric Dumazet9cd3e072015-11-29 20:03:10 -0800629 clear_bit(SOCKWQ_ASYNC_NOSPACE, &transport->sock->flags);
Chuck Levera246b012005-08-11 16:25:23 -0400630 }
Bian Naimeng5fe46e92010-03-08 14:49:01 +0800631
Chuck Lever262965f2005-08-11 16:25:56 -0400632 return status;
Chuck Levera246b012005-08-11 16:25:23 -0400633}
634
Trond Myklebuste06799f2007-11-05 15:44:12 -0500635/**
Chuck Lever262965f2005-08-11 16:25:56 -0400636 * xs_tcp_send_request - write an RPC request to a TCP socket
Chuck Lever9903cd12005-08-11 16:25:26 -0400637 * @task: address of RPC task that manages the state of an RPC request
638 *
639 * Return values:
Chuck Lever262965f2005-08-11 16:25:56 -0400640 * 0: The request has been sent
641 * EAGAIN: The socket was blocked, please call again later to
642 * complete the request
643 * ENOTCONN: Caller needs to invoke connect logic then call again
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300644 * other: Some other error occurred, the request was not sent
Chuck Lever9903cd12005-08-11 16:25:26 -0400645 *
646 * XXX: In the case of soft timeouts, should we eventually give up
Chuck Lever262965f2005-08-11 16:25:56 -0400647 * if sendmsg is not able to make progress?
Chuck Lever9903cd12005-08-11 16:25:26 -0400648 */
Chuck Lever262965f2005-08-11 16:25:56 -0400649static int xs_tcp_send_request(struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -0400650{
651 struct rpc_rqst *req = task->tk_rqstp;
652 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500653 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262965f2005-08-11 16:25:56 -0400654 struct xdr_buf *xdr = &req->rq_snd_buf;
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500655 bool zerocopy = true;
Chuck Leverb595bb12007-08-06 11:56:42 -0400656 int status;
Jason Baronf279cd02014-09-24 18:08:00 +0000657 int sent;
Chuck Levera246b012005-08-11 16:25:23 -0400658
Chuck Lever61677ee2011-05-09 15:22:34 -0400659 xs_encode_stream_record_marker(&req->rq_snd_buf);
Chuck Levera246b012005-08-11 16:25:23 -0400660
Chuck Lever262965f2005-08-11 16:25:56 -0400661 xs_pktdump("packet data:",
662 req->rq_svec->iov_base,
663 req->rq_svec->iov_len);
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500664 /* Don't use zero copy if this is a resend. If the RPC call
665 * completes while the socket holds a reference to the pages,
666 * then we may end up resending corrupted data.
667 */
668 if (task->tk_flags & RPC_TASK_SENT)
669 zerocopy = false;
Chuck Levera246b012005-08-11 16:25:23 -0400670
671 /* Continue transmitting the packet/record. We must be careful
672 * to cope with writespace callbacks arriving _after_ we have
Chuck Lever262965f2005-08-11 16:25:56 -0400673 * called sendmsg(). */
Chuck Levera246b012005-08-11 16:25:23 -0400674 while (1) {
Jason Baronf279cd02014-09-24 18:08:00 +0000675 sent = 0;
676 status = xs_sendpages(transport->sock, NULL, 0, xdr,
677 req->rq_bytes_sent, zerocopy, &sent);
Chuck Levera246b012005-08-11 16:25:23 -0400678
Chuck Lever46121cf2007-01-31 12:14:08 -0500679 dprintk("RPC: xs_tcp_send_request(%u) = %d\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400680 xdr->len - req->rq_bytes_sent, status);
681
Chuck Lever262965f2005-08-11 16:25:56 -0400682 /* If we've sent the entire packet, immediately
683 * reset the count of bytes sent. */
Jason Baronf279cd02014-09-24 18:08:00 +0000684 req->rq_bytes_sent += sent;
685 req->rq_xmit_bytes_sent += sent;
Chuck Lever262965f2005-08-11 16:25:56 -0400686 if (likely(req->rq_bytes_sent >= req->rq_slen)) {
687 req->rq_bytes_sent = 0;
688 return 0;
Chuck Levera246b012005-08-11 16:25:23 -0400689 }
690
Trond Myklebustf580dd02015-07-11 17:48:52 +0200691 if (status < 0)
692 break;
693 if (sent == 0) {
694 status = -EAGAIN;
695 break;
696 }
Chuck Levera246b012005-08-11 16:25:23 -0400697 }
NeilBrown743c69e2015-07-27 10:55:35 +1000698 if (status == -EAGAIN && sk_stream_is_writeable(transport->inet))
699 status = -ENOBUFS;
Chuck Levera246b012005-08-11 16:25:23 -0400700
Chuck Lever262965f2005-08-11 16:25:56 -0400701 switch (status) {
Trond Myklebustfba91af2009-03-11 14:06:41 -0400702 case -ENOTSOCK:
703 status = -ENOTCONN;
704 /* Should we call xs_close() here? */
705 break;
Chuck Lever262965f2005-08-11 16:25:56 -0400706 case -EAGAIN:
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400707 status = xs_nospace(task);
Chuck Lever262965f2005-08-11 16:25:56 -0400708 break;
709 default:
Chuck Lever46121cf2007-01-31 12:14:08 -0500710 dprintk("RPC: sendmsg returned unrecognized error %d\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400711 -status);
Chuck Lever262965f2005-08-11 16:25:56 -0400712 case -ECONNRESET:
Chuck Lever262965f2005-08-11 16:25:56 -0400713 case -ECONNREFUSED:
714 case -ENOTCONN:
Trond Myklebust3913c782015-02-08 21:44:04 -0500715 case -EADDRINUSE:
Trond Myklebustb5872f02015-07-03 09:32:23 -0400716 case -ENOBUFS:
Trond Myklebustb9d2bb22012-10-23 11:40:02 -0400717 case -EPIPE:
Eric Dumazet9cd3e072015-11-29 20:03:10 -0800718 clear_bit(SOCKWQ_ASYNC_NOSPACE, &transport->sock->flags);
Chuck Levera246b012005-08-11 16:25:23 -0400719 }
Bian Naimeng5fe46e92010-03-08 14:49:01 +0800720
Chuck Levera246b012005-08-11 16:25:23 -0400721 return status;
722}
723
Chuck Lever9903cd12005-08-11 16:25:26 -0400724/**
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400725 * xs_tcp_release_xprt - clean up after a tcp transmission
726 * @xprt: transport
727 * @task: rpc task
728 *
729 * This cleans up if an error causes us to abort the transmission of a request.
730 * In this case, the socket may need to be reset in order to avoid confusing
731 * the server.
732 */
733static void xs_tcp_release_xprt(struct rpc_xprt *xprt, struct rpc_task *task)
734{
735 struct rpc_rqst *req;
736
737 if (task != xprt->snd_task)
738 return;
739 if (task == NULL)
740 goto out_release;
741 req = task->tk_rqstp;
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400742 if (req == NULL)
743 goto out_release;
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400744 if (req->rq_bytes_sent == 0)
745 goto out_release;
746 if (req->rq_bytes_sent == req->rq_snd_buf.len)
747 goto out_release;
Trond Myklebusta4f08352013-01-08 09:10:21 -0500748 set_bit(XPRT_CLOSE_WAIT, &xprt->state);
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400749out_release:
750 xprt_release_xprt(xprt, task);
751}
752
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400753static void xs_save_old_callbacks(struct sock_xprt *transport, struct sock *sk)
754{
755 transport->old_data_ready = sk->sk_data_ready;
756 transport->old_state_change = sk->sk_state_change;
757 transport->old_write_space = sk->sk_write_space;
Trond Myklebust21180712013-12-31 13:22:59 -0500758 transport->old_error_report = sk->sk_error_report;
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400759}
760
761static void xs_restore_old_callbacks(struct sock_xprt *transport, struct sock *sk)
762{
763 sk->sk_data_ready = transport->old_data_ready;
764 sk->sk_state_change = transport->old_state_change;
765 sk->sk_write_space = transport->old_write_space;
Trond Myklebust21180712013-12-31 13:22:59 -0500766 sk->sk_error_report = transport->old_error_report;
767}
768
Trond Myklebustb70ae912015-02-09 09:41:32 -0500769static void xs_sock_reset_connection_flags(struct rpc_xprt *xprt)
770{
771 smp_mb__before_atomic();
772 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
773 clear_bit(XPRT_CLOSING, &xprt->state);
774 smp_mb__after_atomic();
775}
776
777static void xs_sock_mark_closed(struct rpc_xprt *xprt)
778{
779 xs_sock_reset_connection_flags(xprt);
780 /* Mark transport as closed and wake up all pending tasks */
781 xprt_disconnect_done(xprt);
782}
783
Trond Myklebust21180712013-12-31 13:22:59 -0500784/**
785 * xs_error_report - callback to handle TCP socket state errors
786 * @sk: socket
787 *
788 * Note: we don't call sock_error() since there may be a rpc_task
789 * using the socket, and so we don't want to clear sk->sk_err.
790 */
791static void xs_error_report(struct sock *sk)
792{
793 struct rpc_xprt *xprt;
794 int err;
795
796 read_lock_bh(&sk->sk_callback_lock);
797 if (!(xprt = xprt_from_sock(sk)))
798 goto out;
799
800 err = -sk->sk_err;
801 if (err == 0)
802 goto out;
Trond Myklebustb70ae912015-02-09 09:41:32 -0500803 /* Is this a reset event? */
804 if (sk->sk_state == TCP_CLOSE)
805 xs_sock_mark_closed(xprt);
Trond Myklebust21180712013-12-31 13:22:59 -0500806 dprintk("RPC: xs_error_report client %p, error=%d...\n",
807 xprt, -err);
Trond Myklebuste8353c762013-12-31 13:39:22 -0500808 trace_rpc_socket_error(xprt, sk->sk_socket, err);
Trond Myklebust21180712013-12-31 13:22:59 -0500809 xprt_wake_pending_tasks(xprt, err);
810 out:
811 read_unlock_bh(&sk->sk_callback_lock);
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400812}
813
Chuck Leverfe315e72009-03-11 14:10:21 -0400814static void xs_reset_transport(struct sock_xprt *transport)
Chuck Levera246b012005-08-11 16:25:23 -0400815{
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500816 struct socket *sock = transport->sock;
817 struct sock *sk = transport->inet;
Trond Myklebust6cc7e902015-02-08 18:35:25 -0500818 struct rpc_xprt *xprt = &transport->xprt;
Chuck Levera246b012005-08-11 16:25:23 -0400819
Chuck Leverfe315e72009-03-11 14:10:21 -0400820 if (sk == NULL)
821 return;
Chuck Lever9903cd12005-08-11 16:25:26 -0400822
Jeff Layton264d1df2015-06-03 16:14:27 -0400823 if (atomic_read(&transport->xprt.swapper))
824 sk_clear_memalloc(sk);
825
Trond Myklebust09939202015-08-29 19:11:21 -0700826 kernel_sock_shutdown(sock, SHUT_RDWR);
827
Trond Myklebustedc1b012015-10-05 10:53:49 -0400828 mutex_lock(&transport->recv_mutex);
Chuck Levera246b012005-08-11 16:25:23 -0400829 write_lock_bh(&sk->sk_callback_lock);
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500830 transport->inet = NULL;
831 transport->sock = NULL;
Chuck Levera246b012005-08-11 16:25:23 -0400832
Chuck Lever9903cd12005-08-11 16:25:26 -0400833 sk->sk_user_data = NULL;
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400834
835 xs_restore_old_callbacks(transport, sk);
Trond Myklebust0c787892015-08-29 13:36:30 -0700836 xprt_clear_connected(xprt);
Chuck Levera246b012005-08-11 16:25:23 -0400837 write_unlock_bh(&sk->sk_callback_lock);
Trond Myklebust6cc7e902015-02-08 18:35:25 -0500838 xs_sock_reset_connection_flags(xprt);
Trond Myklebustedc1b012015-10-05 10:53:49 -0400839 mutex_unlock(&transport->recv_mutex);
Chuck Levera246b012005-08-11 16:25:23 -0400840
Trond Myklebust6cc7e902015-02-08 18:35:25 -0500841 trace_rpc_socket_close(xprt, sock);
Chuck Levera246b012005-08-11 16:25:23 -0400842 sock_release(sock);
Chuck Leverfe315e72009-03-11 14:10:21 -0400843}
844
845/**
846 * xs_close - close a socket
847 * @xprt: transport
848 *
849 * This is used when all requests are complete; ie, no DRC state remains
850 * on the server we want to save.
Trond Myklebustf75e6742009-04-21 17:18:20 -0400851 *
852 * The caller _must_ be holding XPRT_LOCKED in order to avoid issues with
853 * xs_reset_transport() zeroing the socket from underneath a writer.
Chuck Leverfe315e72009-03-11 14:10:21 -0400854 */
855static void xs_close(struct rpc_xprt *xprt)
856{
857 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
858
859 dprintk("RPC: xs_close xprt %p\n", xprt);
860
861 xs_reset_transport(transport);
Neil Brown61d0a8e2009-09-23 14:36:37 -0400862 xprt->reestablish_timeout = 0;
Chuck Leverfe315e72009-03-11 14:10:21 -0400863
Trond Myklebust62da3b22007-11-06 18:44:20 -0500864 xprt_disconnect_done(xprt);
Chuck Levera246b012005-08-11 16:25:23 -0400865}
866
Chuck Lever4a068252015-05-11 14:02:25 -0400867static void xs_inject_disconnect(struct rpc_xprt *xprt)
868{
869 dprintk("RPC: injecting transport disconnect on xprt=%p\n",
870 xprt);
871 xprt_disconnect_done(xprt);
872}
873
Kinglong Mee315f3812014-03-24 11:07:22 +0800874static void xs_xprt_free(struct rpc_xprt *xprt)
875{
876 xs_free_peer_addresses(xprt);
877 xprt_free(xprt);
878}
879
Chuck Lever9903cd12005-08-11 16:25:26 -0400880/**
881 * xs_destroy - prepare to shutdown a transport
882 * @xprt: doomed transport
883 *
884 */
885static void xs_destroy(struct rpc_xprt *xprt)
Chuck Levera246b012005-08-11 16:25:23 -0400886{
Trond Myklebust03c788272015-09-17 10:42:27 -0400887 struct sock_xprt *transport = container_of(xprt,
888 struct sock_xprt, xprt);
Chuck Lever46121cf2007-01-31 12:14:08 -0500889 dprintk("RPC: xs_destroy xprt %p\n", xprt);
Chuck Lever9903cd12005-08-11 16:25:26 -0400890
Trond Myklebust03c788272015-09-17 10:42:27 -0400891 cancel_delayed_work_sync(&transport->connect_worker);
Trond Myklebusta1311d82013-10-31 09:18:49 -0400892 xs_close(xprt);
Trond Myklebustedc1b012015-10-05 10:53:49 -0400893 cancel_work_sync(&transport->recv_worker);
Kinglong Mee315f3812014-03-24 11:07:22 +0800894 xs_xprt_free(xprt);
Trond Myklebusta1311d82013-10-31 09:18:49 -0400895 module_put(THIS_MODULE);
Chuck Levera246b012005-08-11 16:25:23 -0400896}
897
Chuck Lever176e21e2011-05-09 15:22:44 -0400898static int xs_local_copy_to_xdr(struct xdr_buf *xdr, struct sk_buff *skb)
899{
900 struct xdr_skb_reader desc = {
901 .skb = skb,
902 .offset = sizeof(rpc_fraghdr),
903 .count = skb->len - sizeof(rpc_fraghdr),
904 };
905
906 if (xdr_partial_copy_from_skb(xdr, 0, &desc, xdr_skb_read_bits) < 0)
907 return -1;
908 if (desc.count)
909 return -1;
910 return 0;
911}
912
913/**
Trond Myklebusta2648092015-10-06 17:03:00 -0400914 * xs_local_data_read_skb
915 * @xprt: transport
916 * @sk: socket
917 * @skb: skbuff
Chuck Lever176e21e2011-05-09 15:22:44 -0400918 *
919 * Currently this assumes we can read the whole reply in a single gulp.
920 */
Trond Myklebusta2648092015-10-06 17:03:00 -0400921static void xs_local_data_read_skb(struct rpc_xprt *xprt,
922 struct sock *sk,
923 struct sk_buff *skb)
Chuck Lever176e21e2011-05-09 15:22:44 -0400924{
925 struct rpc_task *task;
Chuck Lever176e21e2011-05-09 15:22:44 -0400926 struct rpc_rqst *rovr;
Trond Myklebusta2648092015-10-06 17:03:00 -0400927 int repsize, copied;
Chuck Lever176e21e2011-05-09 15:22:44 -0400928 u32 _xid;
929 __be32 *xp;
930
Chuck Lever176e21e2011-05-09 15:22:44 -0400931 repsize = skb->len - sizeof(rpc_fraghdr);
932 if (repsize < 4) {
933 dprintk("RPC: impossible RPC reply size %d\n", repsize);
Trond Myklebusta2648092015-10-06 17:03:00 -0400934 return;
Chuck Lever176e21e2011-05-09 15:22:44 -0400935 }
936
937 /* Copy the XID from the skb... */
938 xp = skb_header_pointer(skb, sizeof(rpc_fraghdr), sizeof(_xid), &_xid);
939 if (xp == NULL)
Trond Myklebusta2648092015-10-06 17:03:00 -0400940 return;
Chuck Lever176e21e2011-05-09 15:22:44 -0400941
942 /* Look up and lock the request corresponding to the given XID */
Trond Myklebusta2648092015-10-06 17:03:00 -0400943 spin_lock_bh(&xprt->transport_lock);
Chuck Lever176e21e2011-05-09 15:22:44 -0400944 rovr = xprt_lookup_rqst(xprt, *xp);
945 if (!rovr)
946 goto out_unlock;
947 task = rovr->rq_task;
948
949 copied = rovr->rq_private_buf.buflen;
950 if (copied > repsize)
951 copied = repsize;
952
953 if (xs_local_copy_to_xdr(&rovr->rq_private_buf, skb)) {
954 dprintk("RPC: sk_buff copy failed\n");
955 goto out_unlock;
956 }
957
958 xprt_complete_rqst(task, copied);
959
960 out_unlock:
Trond Myklebusta2648092015-10-06 17:03:00 -0400961 spin_unlock_bh(&xprt->transport_lock);
962}
963
964static void xs_local_data_receive(struct sock_xprt *transport)
965{
966 struct sk_buff *skb;
967 struct sock *sk;
968 int err;
969
970 mutex_lock(&transport->recv_mutex);
971 sk = transport->inet;
972 if (sk == NULL)
973 goto out;
974 for (;;) {
975 skb = skb_recv_datagram(sk, 0, 1, &err);
976 if (skb == NULL)
977 break;
978 xs_local_data_read_skb(&transport->xprt, sk, skb);
979 skb_free_datagram(sk, skb);
980 }
981out:
982 mutex_unlock(&transport->recv_mutex);
983}
984
985static void xs_local_data_receive_workfn(struct work_struct *work)
986{
987 struct sock_xprt *transport =
988 container_of(work, struct sock_xprt, recv_worker);
989 xs_local_data_receive(transport);
Chuck Lever176e21e2011-05-09 15:22:44 -0400990}
991
Chuck Lever9903cd12005-08-11 16:25:26 -0400992/**
Trond Myklebustf9b2ee72015-10-06 16:26:05 -0400993 * xs_udp_data_read_skb - receive callback for UDP sockets
994 * @xprt: transport
995 * @sk: socket
996 * @skb: skbuff
Chuck Lever9903cd12005-08-11 16:25:26 -0400997 *
998 */
Trond Myklebustf9b2ee72015-10-06 16:26:05 -0400999static void xs_udp_data_read_skb(struct rpc_xprt *xprt,
1000 struct sock *sk,
1001 struct sk_buff *skb)
Chuck Lever9903cd12005-08-11 16:25:26 -04001002{
1003 struct rpc_task *task;
Chuck Levera246b012005-08-11 16:25:23 -04001004 struct rpc_rqst *rovr;
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001005 int repsize, copied;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001006 u32 _xid;
1007 __be32 *xp;
Chuck Levera246b012005-08-11 16:25:23 -04001008
Chuck Levera246b012005-08-11 16:25:23 -04001009 repsize = skb->len - sizeof(struct udphdr);
1010 if (repsize < 4) {
Chuck Lever46121cf2007-01-31 12:14:08 -05001011 dprintk("RPC: impossible RPC reply size %d!\n", repsize);
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001012 return;
Chuck Levera246b012005-08-11 16:25:23 -04001013 }
1014
1015 /* Copy the XID from the skb... */
1016 xp = skb_header_pointer(skb, sizeof(struct udphdr),
1017 sizeof(_xid), &_xid);
1018 if (xp == NULL)
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001019 return;
Chuck Levera246b012005-08-11 16:25:23 -04001020
1021 /* Look up and lock the request corresponding to the given XID */
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001022 spin_lock_bh(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001023 rovr = xprt_lookup_rqst(xprt, *xp);
1024 if (!rovr)
1025 goto out_unlock;
1026 task = rovr->rq_task;
1027
Chuck Levera246b012005-08-11 16:25:23 -04001028 if ((copied = rovr->rq_private_buf.buflen) > repsize)
1029 copied = repsize;
1030
1031 /* Suck it into the iovec, verify checksum if not done by hw. */
Herbert Xu1781f7f2007-12-11 11:30:32 -08001032 if (csum_partial_copy_to_xdr(&rovr->rq_private_buf, skb)) {
1033 UDPX_INC_STATS_BH(sk, UDP_MIB_INERRORS);
Chuck Levera246b012005-08-11 16:25:23 -04001034 goto out_unlock;
Herbert Xu1781f7f2007-12-11 11:30:32 -08001035 }
1036
1037 UDPX_INC_STATS_BH(sk, UDP_MIB_INDATAGRAMS);
Chuck Levera246b012005-08-11 16:25:23 -04001038
Trond Myklebust6a24dfb2013-01-08 09:48:15 -05001039 xprt_adjust_cwnd(xprt, task, copied);
Chuck Lever1570c1e2005-08-25 16:25:52 -07001040 xprt_complete_rqst(task, copied);
Chuck Levera246b012005-08-11 16:25:23 -04001041
1042 out_unlock:
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001043 spin_unlock_bh(&xprt->transport_lock);
1044}
1045
1046static void xs_udp_data_receive(struct sock_xprt *transport)
1047{
1048 struct sk_buff *skb;
1049 struct sock *sk;
1050 int err;
1051
1052 mutex_lock(&transport->recv_mutex);
1053 sk = transport->inet;
1054 if (sk == NULL)
1055 goto out;
1056 for (;;) {
1057 skb = skb_recv_datagram(sk, 0, 1, &err);
1058 if (skb == NULL)
1059 break;
1060 xs_udp_data_read_skb(&transport->xprt, sk, skb);
1061 skb_free_datagram(sk, skb);
1062 }
1063out:
1064 mutex_unlock(&transport->recv_mutex);
1065}
1066
1067static void xs_udp_data_receive_workfn(struct work_struct *work)
1068{
1069 struct sock_xprt *transport =
1070 container_of(work, struct sock_xprt, recv_worker);
1071 xs_udp_data_receive(transport);
1072}
1073
1074/**
1075 * xs_data_ready - "data ready" callback for UDP sockets
1076 * @sk: socket with data to read
1077 *
1078 */
1079static void xs_data_ready(struct sock *sk)
1080{
1081 struct rpc_xprt *xprt;
1082
1083 read_lock_bh(&sk->sk_callback_lock);
1084 dprintk("RPC: xs_data_ready...\n");
1085 xprt = xprt_from_sock(sk);
1086 if (xprt != NULL) {
1087 struct sock_xprt *transport = container_of(xprt,
1088 struct sock_xprt, xprt);
1089 queue_work(rpciod_workqueue, &transport->recv_worker);
1090 }
Eric Dumazetf064af12010-09-22 12:43:39 +00001091 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001092}
1093
Trond Myklebusta519fc72012-09-12 16:49:15 -04001094/*
1095 * Helper function to force a TCP close if the server is sending
1096 * junk and/or it has put us in CLOSE_WAIT
1097 */
1098static void xs_tcp_force_close(struct rpc_xprt *xprt)
1099{
Trond Myklebusta519fc72012-09-12 16:49:15 -04001100 xprt_force_disconnect(xprt);
1101}
1102
Chuck Leverdd456472006-12-05 16:35:44 -05001103static inline void xs_tcp_read_fraghdr(struct rpc_xprt *xprt, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001104{
Chuck Lever51971132006-12-05 16:35:19 -05001105 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001106 size_t len, used;
1107 char *p;
1108
Chuck Lever51971132006-12-05 16:35:19 -05001109 p = ((char *) &transport->tcp_fraghdr) + transport->tcp_offset;
1110 len = sizeof(transport->tcp_fraghdr) - transport->tcp_offset;
Chuck Lever9d292312006-12-05 16:35:41 -05001111 used = xdr_skb_read_bits(desc, p, len);
Chuck Lever51971132006-12-05 16:35:19 -05001112 transport->tcp_offset += used;
Chuck Levera246b012005-08-11 16:25:23 -04001113 if (used != len)
1114 return;
Chuck Lever808012f2005-08-25 16:25:49 -07001115
Chuck Lever51971132006-12-05 16:35:19 -05001116 transport->tcp_reclen = ntohl(transport->tcp_fraghdr);
1117 if (transport->tcp_reclen & RPC_LAST_STREAM_FRAGMENT)
Chuck Levere136d092006-12-05 16:35:23 -05001118 transport->tcp_flags |= TCP_RCV_LAST_FRAG;
Chuck Levera246b012005-08-11 16:25:23 -04001119 else
Chuck Levere136d092006-12-05 16:35:23 -05001120 transport->tcp_flags &= ~TCP_RCV_LAST_FRAG;
Chuck Lever51971132006-12-05 16:35:19 -05001121 transport->tcp_reclen &= RPC_FRAGMENT_SIZE_MASK;
Chuck Lever808012f2005-08-25 16:25:49 -07001122
Chuck Levere136d092006-12-05 16:35:23 -05001123 transport->tcp_flags &= ~TCP_RCV_COPY_FRAGHDR;
Chuck Lever51971132006-12-05 16:35:19 -05001124 transport->tcp_offset = 0;
Chuck Lever808012f2005-08-25 16:25:49 -07001125
Chuck Levera246b012005-08-11 16:25:23 -04001126 /* Sanity check of the record length */
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001127 if (unlikely(transport->tcp_reclen < 8)) {
Chuck Lever46121cf2007-01-31 12:14:08 -05001128 dprintk("RPC: invalid TCP record fragment length\n");
Trond Myklebusta519fc72012-09-12 16:49:15 -04001129 xs_tcp_force_close(xprt);
Chuck Lever9903cd12005-08-11 16:25:26 -04001130 return;
Chuck Levera246b012005-08-11 16:25:23 -04001131 }
Chuck Lever46121cf2007-01-31 12:14:08 -05001132 dprintk("RPC: reading TCP record fragment of length %d\n",
Chuck Lever51971132006-12-05 16:35:19 -05001133 transport->tcp_reclen);
Chuck Levera246b012005-08-11 16:25:23 -04001134}
1135
Chuck Lever51971132006-12-05 16:35:19 -05001136static void xs_tcp_check_fraghdr(struct sock_xprt *transport)
Chuck Levera246b012005-08-11 16:25:23 -04001137{
Chuck Lever51971132006-12-05 16:35:19 -05001138 if (transport->tcp_offset == transport->tcp_reclen) {
Chuck Levere136d092006-12-05 16:35:23 -05001139 transport->tcp_flags |= TCP_RCV_COPY_FRAGHDR;
Chuck Lever51971132006-12-05 16:35:19 -05001140 transport->tcp_offset = 0;
Chuck Levere136d092006-12-05 16:35:23 -05001141 if (transport->tcp_flags & TCP_RCV_LAST_FRAG) {
1142 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
1143 transport->tcp_flags |= TCP_RCV_COPY_XID;
Chuck Lever51971132006-12-05 16:35:19 -05001144 transport->tcp_copied = 0;
Chuck Levera246b012005-08-11 16:25:23 -04001145 }
1146 }
1147}
1148
Chuck Leverdd456472006-12-05 16:35:44 -05001149static inline void xs_tcp_read_xid(struct sock_xprt *transport, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001150{
1151 size_t len, used;
1152 char *p;
1153
Chuck Lever51971132006-12-05 16:35:19 -05001154 len = sizeof(transport->tcp_xid) - transport->tcp_offset;
Chuck Lever46121cf2007-01-31 12:14:08 -05001155 dprintk("RPC: reading XID (%Zu bytes)\n", len);
Chuck Lever51971132006-12-05 16:35:19 -05001156 p = ((char *) &transport->tcp_xid) + transport->tcp_offset;
Chuck Lever9d292312006-12-05 16:35:41 -05001157 used = xdr_skb_read_bits(desc, p, len);
Chuck Lever51971132006-12-05 16:35:19 -05001158 transport->tcp_offset += used;
Chuck Levera246b012005-08-11 16:25:23 -04001159 if (used != len)
1160 return;
Chuck Levere136d092006-12-05 16:35:23 -05001161 transport->tcp_flags &= ~TCP_RCV_COPY_XID;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001162 transport->tcp_flags |= TCP_RCV_READ_CALLDIR;
Chuck Lever51971132006-12-05 16:35:19 -05001163 transport->tcp_copied = 4;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001164 dprintk("RPC: reading %s XID %08x\n",
1165 (transport->tcp_flags & TCP_RPC_REPLY) ? "reply for"
1166 : "request with",
Chuck Lever51971132006-12-05 16:35:19 -05001167 ntohl(transport->tcp_xid));
1168 xs_tcp_check_fraghdr(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001169}
1170
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001171static inline void xs_tcp_read_calldir(struct sock_xprt *transport,
1172 struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001173{
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001174 size_t len, used;
1175 u32 offset;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001176 char *p;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001177
1178 /*
1179 * We want transport->tcp_offset to be 8 at the end of this routine
1180 * (4 bytes for the xid and 4 bytes for the call/reply flag).
1181 * When this function is called for the first time,
1182 * transport->tcp_offset is 4 (after having already read the xid).
1183 */
1184 offset = transport->tcp_offset - sizeof(transport->tcp_xid);
Trond Myklebustb76ce562010-06-16 13:57:32 -04001185 len = sizeof(transport->tcp_calldir) - offset;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001186 dprintk("RPC: reading CALL/REPLY flag (%Zu bytes)\n", len);
Trond Myklebustb76ce562010-06-16 13:57:32 -04001187 p = ((char *) &transport->tcp_calldir) + offset;
1188 used = xdr_skb_read_bits(desc, p, len);
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001189 transport->tcp_offset += used;
1190 if (used != len)
1191 return;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001192 transport->tcp_flags &= ~TCP_RCV_READ_CALLDIR;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001193 /*
1194 * We don't yet have the XDR buffer, so we will write the calldir
1195 * out after we get the buffer from the 'struct rpc_rqst'
1196 */
Trond Myklebustb76ce562010-06-16 13:57:32 -04001197 switch (ntohl(transport->tcp_calldir)) {
1198 case RPC_REPLY:
1199 transport->tcp_flags |= TCP_RCV_COPY_CALLDIR;
1200 transport->tcp_flags |= TCP_RCV_COPY_DATA;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001201 transport->tcp_flags |= TCP_RPC_REPLY;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001202 break;
1203 case RPC_CALL:
1204 transport->tcp_flags |= TCP_RCV_COPY_CALLDIR;
1205 transport->tcp_flags |= TCP_RCV_COPY_DATA;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001206 transport->tcp_flags &= ~TCP_RPC_REPLY;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001207 break;
1208 default:
1209 dprintk("RPC: invalid request message type\n");
Trond Myklebusta519fc72012-09-12 16:49:15 -04001210 xs_tcp_force_close(&transport->xprt);
Trond Myklebustb76ce562010-06-16 13:57:32 -04001211 }
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001212 xs_tcp_check_fraghdr(transport);
1213}
1214
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001215static inline void xs_tcp_read_common(struct rpc_xprt *xprt,
1216 struct xdr_skb_reader *desc,
1217 struct rpc_rqst *req)
Chuck Levera246b012005-08-11 16:25:23 -04001218{
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001219 struct sock_xprt *transport =
1220 container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001221 struct xdr_buf *rcvbuf;
1222 size_t len;
1223 ssize_t r;
1224
Chuck Levera246b012005-08-11 16:25:23 -04001225 rcvbuf = &req->rq_private_buf;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001226
1227 if (transport->tcp_flags & TCP_RCV_COPY_CALLDIR) {
1228 /*
1229 * Save the RPC direction in the XDR buffer
1230 */
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001231 memcpy(rcvbuf->head[0].iov_base + transport->tcp_copied,
Trond Myklebustb76ce562010-06-16 13:57:32 -04001232 &transport->tcp_calldir,
1233 sizeof(transport->tcp_calldir));
1234 transport->tcp_copied += sizeof(transport->tcp_calldir);
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001235 transport->tcp_flags &= ~TCP_RCV_COPY_CALLDIR;
Chuck Levera246b012005-08-11 16:25:23 -04001236 }
1237
Chuck Levera246b012005-08-11 16:25:23 -04001238 len = desc->count;
Chuck Lever51971132006-12-05 16:35:19 -05001239 if (len > transport->tcp_reclen - transport->tcp_offset) {
Chuck Leverdd456472006-12-05 16:35:44 -05001240 struct xdr_skb_reader my_desc;
Chuck Levera246b012005-08-11 16:25:23 -04001241
Chuck Lever51971132006-12-05 16:35:19 -05001242 len = transport->tcp_reclen - transport->tcp_offset;
Chuck Levera246b012005-08-11 16:25:23 -04001243 memcpy(&my_desc, desc, sizeof(my_desc));
1244 my_desc.count = len;
Chuck Lever51971132006-12-05 16:35:19 -05001245 r = xdr_partial_copy_from_skb(rcvbuf, transport->tcp_copied,
Chuck Lever9d292312006-12-05 16:35:41 -05001246 &my_desc, xdr_skb_read_bits);
Chuck Levera246b012005-08-11 16:25:23 -04001247 desc->count -= r;
1248 desc->offset += r;
1249 } else
Chuck Lever51971132006-12-05 16:35:19 -05001250 r = xdr_partial_copy_from_skb(rcvbuf, transport->tcp_copied,
Chuck Lever9d292312006-12-05 16:35:41 -05001251 desc, xdr_skb_read_bits);
Chuck Levera246b012005-08-11 16:25:23 -04001252
1253 if (r > 0) {
Chuck Lever51971132006-12-05 16:35:19 -05001254 transport->tcp_copied += r;
1255 transport->tcp_offset += r;
Chuck Levera246b012005-08-11 16:25:23 -04001256 }
1257 if (r != len) {
1258 /* Error when copying to the receive buffer,
1259 * usually because we weren't able to allocate
1260 * additional buffer pages. All we can do now
Chuck Levere136d092006-12-05 16:35:23 -05001261 * is turn off TCP_RCV_COPY_DATA, so the request
Chuck Levera246b012005-08-11 16:25:23 -04001262 * will not receive any additional updates,
1263 * and time out.
1264 * Any remaining data from this record will
1265 * be discarded.
1266 */
Chuck Levere136d092006-12-05 16:35:23 -05001267 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Lever46121cf2007-01-31 12:14:08 -05001268 dprintk("RPC: XID %08x truncated request\n",
Chuck Lever51971132006-12-05 16:35:19 -05001269 ntohl(transport->tcp_xid));
Chuck Lever46121cf2007-01-31 12:14:08 -05001270 dprintk("RPC: xprt = %p, tcp_copied = %lu, "
1271 "tcp_offset = %u, tcp_reclen = %u\n",
1272 xprt, transport->tcp_copied,
1273 transport->tcp_offset, transport->tcp_reclen);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001274 return;
Chuck Levera246b012005-08-11 16:25:23 -04001275 }
1276
Chuck Lever46121cf2007-01-31 12:14:08 -05001277 dprintk("RPC: XID %08x read %Zd bytes\n",
Chuck Lever51971132006-12-05 16:35:19 -05001278 ntohl(transport->tcp_xid), r);
Chuck Lever46121cf2007-01-31 12:14:08 -05001279 dprintk("RPC: xprt = %p, tcp_copied = %lu, tcp_offset = %u, "
1280 "tcp_reclen = %u\n", xprt, transport->tcp_copied,
1281 transport->tcp_offset, transport->tcp_reclen);
Chuck Levera246b012005-08-11 16:25:23 -04001282
Chuck Lever51971132006-12-05 16:35:19 -05001283 if (transport->tcp_copied == req->rq_private_buf.buflen)
Chuck Levere136d092006-12-05 16:35:23 -05001284 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Lever51971132006-12-05 16:35:19 -05001285 else if (transport->tcp_offset == transport->tcp_reclen) {
Chuck Levere136d092006-12-05 16:35:23 -05001286 if (transport->tcp_flags & TCP_RCV_LAST_FRAG)
1287 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Levera246b012005-08-11 16:25:23 -04001288 }
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001289}
1290
1291/*
1292 * Finds the request corresponding to the RPC xid and invokes the common
1293 * tcp read code to read the data.
1294 */
1295static inline int xs_tcp_read_reply(struct rpc_xprt *xprt,
1296 struct xdr_skb_reader *desc)
1297{
1298 struct sock_xprt *transport =
1299 container_of(xprt, struct sock_xprt, xprt);
1300 struct rpc_rqst *req;
1301
1302 dprintk("RPC: read reply XID %08x\n", ntohl(transport->tcp_xid));
1303
1304 /* Find and lock the request corresponding to this xid */
Trond Myklebustedc1b012015-10-05 10:53:49 -04001305 spin_lock_bh(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001306 req = xprt_lookup_rqst(xprt, transport->tcp_xid);
1307 if (!req) {
1308 dprintk("RPC: XID %08x request not found!\n",
1309 ntohl(transport->tcp_xid));
Trond Myklebustedc1b012015-10-05 10:53:49 -04001310 spin_unlock_bh(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001311 return -1;
1312 }
1313
1314 xs_tcp_read_common(xprt, desc, req);
1315
Chuck Levere136d092006-12-05 16:35:23 -05001316 if (!(transport->tcp_flags & TCP_RCV_COPY_DATA))
Chuck Lever51971132006-12-05 16:35:19 -05001317 xprt_complete_rqst(req->rq_task, transport->tcp_copied);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001318
Trond Myklebustedc1b012015-10-05 10:53:49 -04001319 spin_unlock_bh(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001320 return 0;
1321}
1322
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001323#if defined(CONFIG_SUNRPC_BACKCHANNEL)
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001324/*
1325 * Obtains an rpc_rqst previously allocated and invokes the common
1326 * tcp read code to read the data. The result is placed in the callback
1327 * queue.
1328 * If we're unable to obtain the rpc_rqst we schedule the closing of the
1329 * connection and return -1.
1330 */
Trond Myklebust2ea24492014-02-10 11:18:39 -05001331static int xs_tcp_read_callback(struct rpc_xprt *xprt,
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001332 struct xdr_skb_reader *desc)
1333{
1334 struct sock_xprt *transport =
1335 container_of(xprt, struct sock_xprt, xprt);
1336 struct rpc_rqst *req;
1337
Trond Myklebust2ea24492014-02-10 11:18:39 -05001338 /* Look up and lock the request corresponding to the given XID */
Trond Myklebustedc1b012015-10-05 10:53:49 -04001339 spin_lock_bh(&xprt->transport_lock);
Trond Myklebust2ea24492014-02-10 11:18:39 -05001340 req = xprt_lookup_bc_request(xprt, transport->tcp_xid);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001341 if (req == NULL) {
Trond Myklebustedc1b012015-10-05 10:53:49 -04001342 spin_unlock_bh(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001343 printk(KERN_WARNING "Callback slot table overflowed\n");
1344 xprt_force_disconnect(xprt);
1345 return -1;
1346 }
1347
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001348 dprintk("RPC: read callback XID %08x\n", ntohl(req->rq_xid));
1349 xs_tcp_read_common(xprt, desc, req);
1350
Trond Myklebust2ea24492014-02-10 11:18:39 -05001351 if (!(transport->tcp_flags & TCP_RCV_COPY_DATA))
1352 xprt_complete_bc_request(req, transport->tcp_copied);
Trond Myklebustedc1b012015-10-05 10:53:49 -04001353 spin_unlock_bh(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001354
1355 return 0;
1356}
1357
1358static inline int _xs_tcp_read_data(struct rpc_xprt *xprt,
1359 struct xdr_skb_reader *desc)
1360{
1361 struct sock_xprt *transport =
1362 container_of(xprt, struct sock_xprt, xprt);
1363
1364 return (transport->tcp_flags & TCP_RPC_REPLY) ?
1365 xs_tcp_read_reply(xprt, desc) :
1366 xs_tcp_read_callback(xprt, desc);
1367}
Chuck Lever76566772015-10-24 17:28:32 -04001368
1369static int xs_tcp_bc_up(struct svc_serv *serv, struct net *net)
1370{
1371 int ret;
1372
1373 ret = svc_create_xprt(serv, "tcp-bc", net, PF_INET, 0,
1374 SVC_SOCK_ANONYMOUS);
1375 if (ret < 0)
1376 return ret;
1377 return 0;
1378}
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001379#else
1380static inline int _xs_tcp_read_data(struct rpc_xprt *xprt,
1381 struct xdr_skb_reader *desc)
1382{
1383 return xs_tcp_read_reply(xprt, desc);
1384}
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001385#endif /* CONFIG_SUNRPC_BACKCHANNEL */
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001386
1387/*
1388 * Read data off the transport. This can be either an RPC_CALL or an
1389 * RPC_REPLY. Relay the processing to helper functions.
1390 */
1391static void xs_tcp_read_data(struct rpc_xprt *xprt,
1392 struct xdr_skb_reader *desc)
1393{
1394 struct sock_xprt *transport =
1395 container_of(xprt, struct sock_xprt, xprt);
1396
1397 if (_xs_tcp_read_data(xprt, desc) == 0)
1398 xs_tcp_check_fraghdr(transport);
1399 else {
1400 /*
1401 * The transport_lock protects the request handling.
1402 * There's no need to hold it to update the tcp_flags.
1403 */
1404 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
1405 }
Chuck Levera246b012005-08-11 16:25:23 -04001406}
1407
Chuck Leverdd456472006-12-05 16:35:44 -05001408static inline void xs_tcp_read_discard(struct sock_xprt *transport, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001409{
1410 size_t len;
1411
Chuck Lever51971132006-12-05 16:35:19 -05001412 len = transport->tcp_reclen - transport->tcp_offset;
Chuck Levera246b012005-08-11 16:25:23 -04001413 if (len > desc->count)
1414 len = desc->count;
1415 desc->count -= len;
1416 desc->offset += len;
Chuck Lever51971132006-12-05 16:35:19 -05001417 transport->tcp_offset += len;
Chuck Lever46121cf2007-01-31 12:14:08 -05001418 dprintk("RPC: discarded %Zu bytes\n", len);
Chuck Lever51971132006-12-05 16:35:19 -05001419 xs_tcp_check_fraghdr(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001420}
1421
Chuck Lever9903cd12005-08-11 16:25:26 -04001422static 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 -04001423{
1424 struct rpc_xprt *xprt = rd_desc->arg.data;
Chuck Lever51971132006-12-05 16:35:19 -05001425 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Leverdd456472006-12-05 16:35:44 -05001426 struct xdr_skb_reader desc = {
Chuck Levera246b012005-08-11 16:25:23 -04001427 .skb = skb,
1428 .offset = offset,
1429 .count = len,
Chuck Lever9903cd12005-08-11 16:25:26 -04001430 };
Chuck Levera246b012005-08-11 16:25:23 -04001431
Chuck Lever46121cf2007-01-31 12:14:08 -05001432 dprintk("RPC: xs_tcp_data_recv started\n");
Chuck Levera246b012005-08-11 16:25:23 -04001433 do {
Jeff Layton1a867a02014-10-28 14:24:14 -04001434 trace_xs_tcp_data_recv(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001435 /* Read in a new fragment marker if necessary */
1436 /* Can we ever really expect to get completely empty fragments? */
Chuck Levere136d092006-12-05 16:35:23 -05001437 if (transport->tcp_flags & TCP_RCV_COPY_FRAGHDR) {
Chuck Lever9903cd12005-08-11 16:25:26 -04001438 xs_tcp_read_fraghdr(xprt, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001439 continue;
1440 }
1441 /* Read in the xid if necessary */
Chuck Levere136d092006-12-05 16:35:23 -05001442 if (transport->tcp_flags & TCP_RCV_COPY_XID) {
Chuck Lever51971132006-12-05 16:35:19 -05001443 xs_tcp_read_xid(transport, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001444 continue;
1445 }
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001446 /* Read in the call/reply flag */
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001447 if (transport->tcp_flags & TCP_RCV_READ_CALLDIR) {
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001448 xs_tcp_read_calldir(transport, &desc);
1449 continue;
1450 }
Chuck Levera246b012005-08-11 16:25:23 -04001451 /* Read in the request data */
Chuck Levere136d092006-12-05 16:35:23 -05001452 if (transport->tcp_flags & TCP_RCV_COPY_DATA) {
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001453 xs_tcp_read_data(xprt, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001454 continue;
1455 }
1456 /* Skip over any trailing bytes on short reads */
Chuck Lever51971132006-12-05 16:35:19 -05001457 xs_tcp_read_discard(transport, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001458 } while (desc.count);
Jeff Layton1a867a02014-10-28 14:24:14 -04001459 trace_xs_tcp_data_recv(transport);
Chuck Lever46121cf2007-01-31 12:14:08 -05001460 dprintk("RPC: xs_tcp_data_recv done\n");
Chuck Levera246b012005-08-11 16:25:23 -04001461 return len - desc.count;
1462}
1463
Trond Myklebust66d7a562015-10-05 11:19:20 -04001464static void xs_tcp_data_receive(struct sock_xprt *transport)
1465{
1466 struct rpc_xprt *xprt = &transport->xprt;
1467 struct sock *sk;
1468 read_descriptor_t rd_desc = {
1469 .count = 2*1024*1024,
1470 .arg.data = xprt,
1471 };
1472 unsigned long total = 0;
1473 int read = 0;
1474
Trond Myklebustedc1b012015-10-05 10:53:49 -04001475 mutex_lock(&transport->recv_mutex);
Trond Myklebust66d7a562015-10-05 11:19:20 -04001476 sk = transport->inet;
Trond Myklebustedc1b012015-10-05 10:53:49 -04001477 if (sk == NULL)
1478 goto out;
Trond Myklebust66d7a562015-10-05 11:19:20 -04001479
1480 /* We use rd_desc to pass struct xprt to xs_tcp_data_recv */
1481 for (;;) {
Trond Myklebustedc1b012015-10-05 10:53:49 -04001482 lock_sock(sk);
Trond Myklebust66d7a562015-10-05 11:19:20 -04001483 read = tcp_read_sock(sk, &rd_desc, xs_tcp_data_recv);
Trond Myklebustedc1b012015-10-05 10:53:49 -04001484 release_sock(sk);
Trond Myklebust66d7a562015-10-05 11:19:20 -04001485 if (read <= 0)
1486 break;
1487 total += read;
1488 rd_desc.count = 65536;
1489 }
Trond Myklebustedc1b012015-10-05 10:53:49 -04001490out:
1491 mutex_unlock(&transport->recv_mutex);
Trond Myklebust66d7a562015-10-05 11:19:20 -04001492 trace_xs_tcp_data_ready(xprt, read, total);
1493}
1494
Trond Myklebustedc1b012015-10-05 10:53:49 -04001495static void xs_tcp_data_receive_workfn(struct work_struct *work)
1496{
1497 struct sock_xprt *transport =
1498 container_of(work, struct sock_xprt, recv_worker);
1499 xs_tcp_data_receive(transport);
1500}
1501
Chuck Lever9903cd12005-08-11 16:25:26 -04001502/**
1503 * xs_tcp_data_ready - "data ready" callback for TCP sockets
1504 * @sk: socket with data to read
Chuck Lever9903cd12005-08-11 16:25:26 -04001505 *
1506 */
David S. Miller676d2362014-04-11 16:15:36 -04001507static void xs_tcp_data_ready(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -04001508{
Trond Myklebust66d7a562015-10-05 11:19:20 -04001509 struct sock_xprt *transport;
Chuck Levera246b012005-08-11 16:25:23 -04001510 struct rpc_xprt *xprt;
Chuck Levera246b012005-08-11 16:25:23 -04001511
Chuck Lever46121cf2007-01-31 12:14:08 -05001512 dprintk("RPC: xs_tcp_data_ready...\n");
1513
Eric Dumazetf064af12010-09-22 12:43:39 +00001514 read_lock_bh(&sk->sk_callback_lock);
Trond Myklebust66d7a562015-10-05 11:19:20 -04001515 if (!(xprt = xprt_from_sock(sk)))
Chuck Levera246b012005-08-11 16:25:23 -04001516 goto out;
Trond Myklebust66d7a562015-10-05 11:19:20 -04001517 transport = container_of(xprt, struct sock_xprt, xprt);
1518
Neil Brown61d0a8e2009-09-23 14:36:37 -04001519 /* Any data means we had a useful conversation, so
1520 * the we don't need to delay the next reconnect
1521 */
1522 if (xprt->reestablish_timeout)
1523 xprt->reestablish_timeout = 0;
Trond Myklebustedc1b012015-10-05 10:53:49 -04001524 queue_work(rpciod_workqueue, &transport->recv_worker);
Neil Brown61d0a8e2009-09-23 14:36:37 -04001525
Chuck Levera246b012005-08-11 16:25:23 -04001526out:
Eric Dumazetf064af12010-09-22 12:43:39 +00001527 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001528}
1529
Chuck Lever9903cd12005-08-11 16:25:26 -04001530/**
1531 * xs_tcp_state_change - callback to handle TCP socket state changes
1532 * @sk: socket whose state has changed
1533 *
1534 */
1535static void xs_tcp_state_change(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -04001536{
Chuck Lever9903cd12005-08-11 16:25:26 -04001537 struct rpc_xprt *xprt;
Trond Myklebust0fdea1e2015-09-16 23:43:17 -04001538 struct sock_xprt *transport;
Chuck Levera246b012005-08-11 16:25:23 -04001539
Eric Dumazetf064af12010-09-22 12:43:39 +00001540 read_lock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001541 if (!(xprt = xprt_from_sock(sk)))
1542 goto out;
Chuck Lever46121cf2007-01-31 12:14:08 -05001543 dprintk("RPC: xs_tcp_state_change client %p...\n", xprt);
Andy Chittenden669502f2010-08-10 10:19:53 -04001544 dprintk("RPC: state %x conn %d dead %d zapped %d sk_shutdown %d\n",
Chuck Lever46121cf2007-01-31 12:14:08 -05001545 sk->sk_state, xprt_connected(xprt),
1546 sock_flag(sk, SOCK_DEAD),
Andy Chittenden669502f2010-08-10 10:19:53 -04001547 sock_flag(sk, SOCK_ZAPPED),
1548 sk->sk_shutdown);
Chuck Levera246b012005-08-11 16:25:23 -04001549
Trond Myklebust0fdea1e2015-09-16 23:43:17 -04001550 transport = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04001551 trace_rpc_socket_state_change(xprt, sk->sk_socket);
Chuck Levera246b012005-08-11 16:25:23 -04001552 switch (sk->sk_state) {
1553 case TCP_ESTABLISHED:
Eric Dumazetf064af12010-09-22 12:43:39 +00001554 spin_lock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001555 if (!xprt_test_and_set_connected(xprt)) {
Chuck Lever51971132006-12-05 16:35:19 -05001556
Chuck Levera246b012005-08-11 16:25:23 -04001557 /* Reset TCP record info */
Chuck Lever51971132006-12-05 16:35:19 -05001558 transport->tcp_offset = 0;
1559 transport->tcp_reclen = 0;
1560 transport->tcp_copied = 0;
Chuck Levere136d092006-12-05 16:35:23 -05001561 transport->tcp_flags =
1562 TCP_RCV_COPY_FRAGHDR | TCP_RCV_COPY_XID;
Trond Myklebust8b717982013-09-26 10:18:04 -04001563 xprt->connect_cookie++;
Trond Myklebust0fdea1e2015-09-16 23:43:17 -04001564 clear_bit(XPRT_SOCK_CONNECTING, &transport->sock_state);
1565 xprt_clear_connecting(xprt);
Chuck Lever51971132006-12-05 16:35:19 -05001566
Trond Myklebust2a491992009-03-11 14:38:00 -04001567 xprt_wake_pending_tasks(xprt, -EAGAIN);
Chuck Levera246b012005-08-11 16:25:23 -04001568 }
Eric Dumazetf064af12010-09-22 12:43:39 +00001569 spin_unlock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001570 break;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001571 case TCP_FIN_WAIT1:
1572 /* The client initiated a shutdown of the socket */
Trond Myklebust7c1d71c2008-04-17 16:52:57 -04001573 xprt->connect_cookie++;
Trond Myklebust663b8852008-01-01 18:42:12 -05001574 xprt->reestablish_timeout = 0;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001575 set_bit(XPRT_CLOSING, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001576 smp_mb__before_atomic();
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001577 clear_bit(XPRT_CONNECTED, &xprt->state);
Trond Myklebustef803672007-12-31 16:19:17 -05001578 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001579 smp_mb__after_atomic();
Chuck Levera246b012005-08-11 16:25:23 -04001580 break;
Trond Myklebust632e3bd2006-01-03 09:55:55 +01001581 case TCP_CLOSE_WAIT:
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001582 /* The server initiated a shutdown of the socket */
Trond Myklebust7c1d71c2008-04-17 16:52:57 -04001583 xprt->connect_cookie++;
Trond Myklebustd0bea452012-10-23 11:35:47 -04001584 clear_bit(XPRT_CONNECTED, &xprt->state);
Trond Myklebusta519fc72012-09-12 16:49:15 -04001585 xs_tcp_force_close(xprt);
Trond Myklebust663b8852008-01-01 18:42:12 -05001586 case TCP_CLOSING:
1587 /*
1588 * If the server closed down the connection, make sure that
1589 * we back off before reconnecting
1590 */
1591 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
1592 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001593 break;
1594 case TCP_LAST_ACK:
Trond Myklebust670f9452009-03-11 14:37:58 -04001595 set_bit(XPRT_CLOSING, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001596 smp_mb__before_atomic();
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001597 clear_bit(XPRT_CONNECTED, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001598 smp_mb__after_atomic();
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001599 break;
1600 case TCP_CLOSE:
Trond Myklebust0fdea1e2015-09-16 23:43:17 -04001601 if (test_and_clear_bit(XPRT_SOCK_CONNECTING,
1602 &transport->sock_state))
1603 xprt_clear_connecting(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001604 xs_sock_mark_closed(xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001605 }
1606 out:
Eric Dumazetf064af12010-09-22 12:43:39 +00001607 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001608}
1609
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001610static void xs_write_space(struct sock *sk)
1611{
1612 struct socket *sock;
1613 struct rpc_xprt *xprt;
1614
1615 if (unlikely(!(sock = sk->sk_socket)))
1616 return;
1617 clear_bit(SOCK_NOSPACE, &sock->flags);
1618
1619 if (unlikely(!(xprt = xprt_from_sock(sk))))
1620 return;
Eric Dumazet9cd3e072015-11-29 20:03:10 -08001621 if (test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &sock->flags) == 0)
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001622 return;
1623
1624 xprt_write_space(xprt);
1625}
1626
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04001627/**
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001628 * xs_udp_write_space - callback invoked when socket buffer space
1629 * becomes available
Chuck Lever9903cd12005-08-11 16:25:26 -04001630 * @sk: socket whose state has changed
1631 *
Chuck Levera246b012005-08-11 16:25:23 -04001632 * Called when more output buffer space is available for this socket.
1633 * We try not to wake our writers until they can make "significant"
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001634 * progress, otherwise we'll waste resources thrashing kernel_sendmsg
Chuck Levera246b012005-08-11 16:25:23 -04001635 * with a bunch of small requests.
1636 */
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001637static void xs_udp_write_space(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -04001638{
Eric Dumazetf064af12010-09-22 12:43:39 +00001639 read_lock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001640
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001641 /* from net/core/sock.c:sock_def_write_space */
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001642 if (sock_writeable(sk))
1643 xs_write_space(sk);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001644
Eric Dumazetf064af12010-09-22 12:43:39 +00001645 read_unlock_bh(&sk->sk_callback_lock);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001646}
Chuck Levera246b012005-08-11 16:25:23 -04001647
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001648/**
1649 * xs_tcp_write_space - callback invoked when socket buffer space
1650 * becomes available
1651 * @sk: socket whose state has changed
1652 *
1653 * Called when more output buffer space is available for this socket.
1654 * We try not to wake our writers until they can make "significant"
1655 * progress, otherwise we'll waste resources thrashing kernel_sendmsg
1656 * with a bunch of small requests.
1657 */
1658static void xs_tcp_write_space(struct sock *sk)
1659{
Eric Dumazetf064af12010-09-22 12:43:39 +00001660 read_lock_bh(&sk->sk_callback_lock);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001661
1662 /* from net/core/stream.c:sk_stream_write_space */
Eric Dumazet64dc6132013-07-22 20:26:31 -07001663 if (sk_stream_is_writeable(sk))
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001664 xs_write_space(sk);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001665
Eric Dumazetf064af12010-09-22 12:43:39 +00001666 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001667}
1668
Chuck Lever470056c2005-08-25 16:25:56 -07001669static void xs_udp_do_set_buffer_size(struct rpc_xprt *xprt)
Chuck Levera246b012005-08-11 16:25:23 -04001670{
Chuck Leveree0ac0c2006-12-05 16:35:15 -05001671 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
1672 struct sock *sk = transport->inet;
Chuck Levera246b012005-08-11 16:25:23 -04001673
Chuck Lever7c6e0662006-12-05 16:35:30 -05001674 if (transport->rcvsize) {
Chuck Levera246b012005-08-11 16:25:23 -04001675 sk->sk_userlocks |= SOCK_RCVBUF_LOCK;
Chuck Lever7c6e0662006-12-05 16:35:30 -05001676 sk->sk_rcvbuf = transport->rcvsize * xprt->max_reqs * 2;
Chuck Levera246b012005-08-11 16:25:23 -04001677 }
Chuck Lever7c6e0662006-12-05 16:35:30 -05001678 if (transport->sndsize) {
Chuck Levera246b012005-08-11 16:25:23 -04001679 sk->sk_userlocks |= SOCK_SNDBUF_LOCK;
Chuck Lever7c6e0662006-12-05 16:35:30 -05001680 sk->sk_sndbuf = transport->sndsize * xprt->max_reqs * 2;
Chuck Levera246b012005-08-11 16:25:23 -04001681 sk->sk_write_space(sk);
1682 }
1683}
1684
Chuck Lever43118c22005-08-25 16:25:49 -07001685/**
Chuck Lever470056c2005-08-25 16:25:56 -07001686 * xs_udp_set_buffer_size - set send and receive limits
Chuck Lever43118c22005-08-25 16:25:49 -07001687 * @xprt: generic transport
Chuck Lever470056c2005-08-25 16:25:56 -07001688 * @sndsize: requested size of send buffer, in bytes
1689 * @rcvsize: requested size of receive buffer, in bytes
Chuck Lever43118c22005-08-25 16:25:49 -07001690 *
Chuck Lever470056c2005-08-25 16:25:56 -07001691 * Set socket send and receive buffer size limits.
Chuck Lever43118c22005-08-25 16:25:49 -07001692 */
Chuck Lever470056c2005-08-25 16:25:56 -07001693static void xs_udp_set_buffer_size(struct rpc_xprt *xprt, size_t sndsize, size_t rcvsize)
Chuck Lever43118c22005-08-25 16:25:49 -07001694{
Chuck Lever7c6e0662006-12-05 16:35:30 -05001695 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
1696
1697 transport->sndsize = 0;
Chuck Lever470056c2005-08-25 16:25:56 -07001698 if (sndsize)
Chuck Lever7c6e0662006-12-05 16:35:30 -05001699 transport->sndsize = sndsize + 1024;
1700 transport->rcvsize = 0;
Chuck Lever470056c2005-08-25 16:25:56 -07001701 if (rcvsize)
Chuck Lever7c6e0662006-12-05 16:35:30 -05001702 transport->rcvsize = rcvsize + 1024;
Chuck Lever470056c2005-08-25 16:25:56 -07001703
1704 xs_udp_do_set_buffer_size(xprt);
Chuck Lever43118c22005-08-25 16:25:49 -07001705}
1706
Chuck Lever46c0ee82005-08-25 16:25:52 -07001707/**
1708 * xs_udp_timer - called when a retransmit timeout occurs on a UDP transport
1709 * @task: task that timed out
1710 *
1711 * Adjust the congestion window after a retransmit timeout has occurred.
1712 */
Trond Myklebust6a24dfb2013-01-08 09:48:15 -05001713static void xs_udp_timer(struct rpc_xprt *xprt, struct rpc_task *task)
Chuck Lever46c0ee82005-08-25 16:25:52 -07001714{
Trond Myklebust6a24dfb2013-01-08 09:48:15 -05001715 xprt_adjust_cwnd(xprt, task, -ETIMEDOUT);
Chuck Lever46c0ee82005-08-25 16:25:52 -07001716}
1717
Chuck Leverb85d8802006-05-25 01:40:49 -04001718static unsigned short xs_get_random_port(void)
1719{
1720 unsigned short range = xprt_max_resvport - xprt_min_resvport;
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05001721 unsigned short rand = (unsigned short) prandom_u32() % range;
Chuck Leverb85d8802006-05-25 01:40:49 -04001722 return rand + xprt_min_resvport;
1723}
1724
Chuck Lever92200412006-01-03 09:55:51 +01001725/**
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001726 * xs_set_reuseaddr_port - set the socket's port and address reuse options
1727 * @sock: socket
1728 *
1729 * Note that this function has to be called on all sockets that share the
1730 * same port, and it must be called before binding.
1731 */
1732static void xs_sock_set_reuseport(struct socket *sock)
1733{
Trond Myklebust402e23b2015-02-09 17:20:14 -05001734 int opt = 1;
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001735
Trond Myklebust402e23b2015-02-09 17:20:14 -05001736 kernel_setsockopt(sock, SOL_SOCKET, SO_REUSEPORT,
1737 (char *)&opt, sizeof(opt));
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001738}
1739
1740static unsigned short xs_sock_getport(struct socket *sock)
1741{
1742 struct sockaddr_storage buf;
1743 int buflen;
1744 unsigned short port = 0;
1745
1746 if (kernel_getsockname(sock, (struct sockaddr *)&buf, &buflen) < 0)
1747 goto out;
1748 switch (buf.ss_family) {
1749 case AF_INET6:
1750 port = ntohs(((struct sockaddr_in6 *)&buf)->sin6_port);
1751 break;
1752 case AF_INET:
1753 port = ntohs(((struct sockaddr_in *)&buf)->sin_port);
1754 }
1755out:
1756 return port;
1757}
1758
1759/**
Chuck Lever92200412006-01-03 09:55:51 +01001760 * xs_set_port - reset the port number in the remote endpoint address
1761 * @xprt: generic transport
1762 * @port: new port number
1763 *
1764 */
1765static void xs_set_port(struct rpc_xprt *xprt, unsigned short port)
1766{
Chuck Lever46121cf2007-01-31 12:14:08 -05001767 dprintk("RPC: setting port for xprt %p to %u\n", xprt, port);
Chuck Leverc4efcb12006-08-22 20:06:19 -04001768
Chuck Lever9dc3b092009-08-09 15:09:46 -04001769 rpc_set_port(xs_addr(xprt), port);
1770 xs_update_peer_port(xprt);
Chuck Lever92200412006-01-03 09:55:51 +01001771}
1772
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001773static void xs_set_srcport(struct sock_xprt *transport, struct socket *sock)
1774{
1775 if (transport->srcport == 0)
1776 transport->srcport = xs_sock_getport(sock);
1777}
1778
Pavel Emelyanov5d4ec932010-10-04 16:51:23 +04001779static unsigned short xs_get_srcport(struct sock_xprt *transport)
Trond Myklebust67a391d2007-11-05 17:40:58 -05001780{
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001781 unsigned short port = transport->srcport;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001782
1783 if (port == 0 && transport->xprt.resvport)
1784 port = xs_get_random_port();
1785 return port;
1786}
1787
Pavel Emelyanovbaaf4e42010-10-04 16:51:56 +04001788static unsigned short xs_next_srcport(struct sock_xprt *transport, unsigned short port)
Trond Myklebust67a391d2007-11-05 17:40:58 -05001789{
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001790 if (transport->srcport != 0)
1791 transport->srcport = 0;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001792 if (!transport->xprt.resvport)
1793 return 0;
1794 if (port <= xprt_min_resvport || port > xprt_max_resvport)
1795 return xprt_max_resvport;
1796 return --port;
1797}
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001798static int xs_bind(struct sock_xprt *transport, struct socket *sock)
Chuck Levera246b012005-08-11 16:25:23 -04001799{
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001800 struct sockaddr_storage myaddr;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001801 int err, nloop = 0;
Pavel Emelyanov5d4ec932010-10-04 16:51:23 +04001802 unsigned short port = xs_get_srcport(transport);
Trond Myklebust67a391d2007-11-05 17:40:58 -05001803 unsigned short last;
Chuck Levera246b012005-08-11 16:25:23 -04001804
Chris Perl0f7a6222014-09-05 15:40:21 -04001805 /*
1806 * If we are asking for any ephemeral port (i.e. port == 0 &&
1807 * transport->xprt.resvport == 0), don't bind. Let the local
1808 * port selection happen implicitly when the socket is used
1809 * (for example at connect time).
1810 *
1811 * This ensures that we can continue to establish TCP
1812 * connections even when all local ephemeral ports are already
1813 * a part of some TCP connection. This makes no difference
1814 * for UDP sockets, but also doens't harm them.
1815 *
1816 * If we're asking for any reserved port (i.e. port == 0 &&
1817 * transport->xprt.resvport == 1) xs_get_srcport above will
1818 * ensure that port is non-zero and we will bind as needed.
1819 */
1820 if (port == 0)
1821 return 0;
1822
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001823 memcpy(&myaddr, &transport->srcaddr, transport->xprt.addrlen);
Chuck Levera246b012005-08-11 16:25:23 -04001824 do {
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001825 rpc_set_port((struct sockaddr *)&myaddr, port);
1826 err = kernel_bind(sock, (struct sockaddr *)&myaddr,
1827 transport->xprt.addrlen);
Chuck Levera246b012005-08-11 16:25:23 -04001828 if (err == 0) {
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001829 transport->srcport = port;
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +02001830 break;
Chuck Levera246b012005-08-11 16:25:23 -04001831 }
Trond Myklebust67a391d2007-11-05 17:40:58 -05001832 last = port;
Pavel Emelyanovbaaf4e42010-10-04 16:51:56 +04001833 port = xs_next_srcport(transport, port);
Trond Myklebust67a391d2007-11-05 17:40:58 -05001834 if (port > last)
1835 nloop++;
1836 } while (err == -EADDRINUSE && nloop != 2);
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001837
Chuck Lever4232e862010-10-20 11:52:51 -04001838 if (myaddr.ss_family == AF_INET)
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001839 dprintk("RPC: %s %pI4:%u: %s (%d)\n", __func__,
1840 &((struct sockaddr_in *)&myaddr)->sin_addr,
1841 port, err ? "failed" : "ok", err);
1842 else
1843 dprintk("RPC: %s %pI6:%u: %s (%d)\n", __func__,
1844 &((struct sockaddr_in6 *)&myaddr)->sin6_addr,
1845 port, err ? "failed" : "ok", err);
Chuck Levera246b012005-08-11 16:25:23 -04001846 return err;
1847}
1848
Chuck Lever176e21e2011-05-09 15:22:44 -04001849/*
1850 * We don't support autobind on AF_LOCAL sockets
1851 */
1852static void xs_local_rpcbind(struct rpc_task *task)
1853{
Trond Myklebust3dc0da22013-01-08 09:31:13 -05001854 rcu_read_lock();
1855 xprt_set_bound(rcu_dereference(task->tk_client->cl_xprt));
1856 rcu_read_unlock();
Chuck Lever176e21e2011-05-09 15:22:44 -04001857}
1858
1859static void xs_local_set_port(struct rpc_xprt *xprt, unsigned short port)
1860{
1861}
Chuck Levera246b012005-08-11 16:25:23 -04001862
Peter Zijlstraed075362006-12-06 20:35:24 -08001863#ifdef CONFIG_DEBUG_LOCK_ALLOC
1864static struct lock_class_key xs_key[2];
1865static struct lock_class_key xs_slock_key[2];
1866
Chuck Lever176e21e2011-05-09 15:22:44 -04001867static inline void xs_reclassify_socketu(struct socket *sock)
1868{
1869 struct sock *sk = sock->sk;
1870
Chuck Lever176e21e2011-05-09 15:22:44 -04001871 sock_lock_init_class_and_name(sk, "slock-AF_LOCAL-RPC",
1872 &xs_slock_key[1], "sk_lock-AF_LOCAL-RPC", &xs_key[1]);
1873}
1874
Chuck Lever8945ee52007-08-06 11:58:04 -04001875static inline void xs_reclassify_socket4(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -08001876{
1877 struct sock *sk = sock->sk;
Chuck Lever8945ee52007-08-06 11:58:04 -04001878
Chuck Lever8945ee52007-08-06 11:58:04 -04001879 sock_lock_init_class_and_name(sk, "slock-AF_INET-RPC",
1880 &xs_slock_key[0], "sk_lock-AF_INET-RPC", &xs_key[0]);
1881}
Peter Zijlstraed075362006-12-06 20:35:24 -08001882
Chuck Lever8945ee52007-08-06 11:58:04 -04001883static inline void xs_reclassify_socket6(struct socket *sock)
1884{
1885 struct sock *sk = sock->sk;
Peter Zijlstraed075362006-12-06 20:35:24 -08001886
Chuck Lever8945ee52007-08-06 11:58:04 -04001887 sock_lock_init_class_and_name(sk, "slock-AF_INET6-RPC",
1888 &xs_slock_key[1], "sk_lock-AF_INET6-RPC", &xs_key[1]);
Peter Zijlstraed075362006-12-06 20:35:24 -08001889}
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001890
1891static inline void xs_reclassify_socket(int family, struct socket *sock)
1892{
Weston Andros Adamson1b7a1812012-10-23 10:43:39 -04001893 WARN_ON_ONCE(sock_owned_by_user(sock->sk));
1894 if (sock_owned_by_user(sock->sk))
1895 return;
1896
Chuck Lever4232e862010-10-20 11:52:51 -04001897 switch (family) {
Chuck Lever176e21e2011-05-09 15:22:44 -04001898 case AF_LOCAL:
1899 xs_reclassify_socketu(sock);
1900 break;
Chuck Lever4232e862010-10-20 11:52:51 -04001901 case AF_INET:
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001902 xs_reclassify_socket4(sock);
Chuck Lever4232e862010-10-20 11:52:51 -04001903 break;
1904 case AF_INET6:
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001905 xs_reclassify_socket6(sock);
Chuck Lever4232e862010-10-20 11:52:51 -04001906 break;
1907 }
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001908}
Peter Zijlstraed075362006-12-06 20:35:24 -08001909#else
Chuck Lever176e21e2011-05-09 15:22:44 -04001910static inline void xs_reclassify_socketu(struct socket *sock)
1911{
1912}
1913
Chuck Lever8945ee52007-08-06 11:58:04 -04001914static inline void xs_reclassify_socket4(struct socket *sock)
1915{
1916}
1917
1918static inline void xs_reclassify_socket6(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -08001919{
1920}
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001921
1922static inline void xs_reclassify_socket(int family, struct socket *sock)
1923{
1924}
Peter Zijlstraed075362006-12-06 20:35:24 -08001925#endif
1926
NeilBrown93dc41b2013-10-31 16:14:36 +11001927static void xs_dummy_setup_socket(struct work_struct *work)
1928{
1929}
1930
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001931static struct socket *xs_create_sock(struct rpc_xprt *xprt,
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001932 struct sock_xprt *transport, int family, int type,
1933 int protocol, bool reuseport)
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001934{
1935 struct socket *sock;
1936 int err;
1937
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001938 err = __sock_create(xprt->xprt_net, family, type, protocol, &sock, 1);
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001939 if (err < 0) {
1940 dprintk("RPC: can't create %d transport socket (%d).\n",
1941 protocol, -err);
1942 goto out;
1943 }
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001944 xs_reclassify_socket(family, sock);
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001945
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001946 if (reuseport)
1947 xs_sock_set_reuseport(sock);
1948
Ben Hutchings4cea2882011-02-22 21:54:34 +00001949 err = xs_bind(transport, sock);
1950 if (err) {
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001951 sock_release(sock);
1952 goto out;
1953 }
1954
1955 return sock;
1956out:
1957 return ERR_PTR(err);
1958}
1959
Chuck Lever176e21e2011-05-09 15:22:44 -04001960static int xs_local_finish_connecting(struct rpc_xprt *xprt,
1961 struct socket *sock)
1962{
1963 struct sock_xprt *transport = container_of(xprt, struct sock_xprt,
1964 xprt);
1965
1966 if (!transport->inet) {
1967 struct sock *sk = sock->sk;
1968
1969 write_lock_bh(&sk->sk_callback_lock);
1970
1971 xs_save_old_callbacks(transport, sk);
1972
1973 sk->sk_user_data = xprt;
Trond Myklebusta2648092015-10-06 17:03:00 -04001974 sk->sk_data_ready = xs_data_ready;
Chuck Lever176e21e2011-05-09 15:22:44 -04001975 sk->sk_write_space = xs_udp_write_space;
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 }
2011 xs_reclassify_socketu(sock);
2012
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;
Trond Myklebustc2126152015-08-19 21:46:15 -05002162 sk->sk_allocation = GFP_NOIO;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002163
2164 xprt_set_connected(xprt);
2165
2166 /* Reset to new socket */
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002167 transport->sock = sock;
2168 transport->inet = sk;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002169
Mel Gormana564b8f2012-07-31 16:45:12 -07002170 xs_set_memalloc(xprt);
2171
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002172 write_unlock_bh(&sk->sk_callback_lock);
2173 }
Chuck Lever470056c2005-08-25 16:25:56 -07002174 xs_udp_do_set_buffer_size(xprt);
Chuck Lever16be2d22007-08-06 11:57:38 -04002175}
2176
Pavel Emelyanov8c14ff22010-10-04 16:58:02 +04002177static void xs_udp_setup_socket(struct work_struct *work)
Chuck Levera246b012005-08-11 16:25:23 -04002178{
2179 struct sock_xprt *transport =
2180 container_of(work, struct sock_xprt, connect_worker.work);
2181 struct rpc_xprt *xprt = &transport->xprt;
2182 struct socket *sock = transport->sock;
Pavel Emelyanovb65c0312010-10-04 16:53:46 +04002183 int status = -EIO;
Chuck Levera246b012005-08-11 16:25:23 -04002184
Pavel Emelyanov8c14ff22010-10-04 16:58:02 +04002185 sock = xs_create_sock(xprt, transport,
Trond Myklebust4dda9c82015-02-08 15:00:06 -05002186 xs_addr(xprt)->sa_family, SOCK_DGRAM,
2187 IPPROTO_UDP, false);
Pavel Emelyanovb65c0312010-10-04 16:53:46 +04002188 if (IS_ERR(sock))
Chuck Levera246b012005-08-11 16:25:23 -04002189 goto out;
Chuck Lever68e220b2007-08-06 11:57:48 -04002190
Chuck Leverc740eff2009-08-09 15:09:46 -04002191 dprintk("RPC: worker connecting xprt %p via %s to "
2192 "%s (port %s)\n", xprt,
2193 xprt->address_strings[RPC_DISPLAY_PROTO],
2194 xprt->address_strings[RPC_DISPLAY_ADDR],
2195 xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever68e220b2007-08-06 11:57:48 -04002196
2197 xs_udp_finish_connecting(xprt, sock);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04002198 trace_rpc_socket_connect(xprt, sock, 0);
Chuck Levera246b012005-08-11 16:25:23 -04002199 status = 0;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002200out:
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002201 xprt_unlock_connect(xprt, transport);
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002202 xprt_clear_connecting(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002203 xprt_wake_pending_tasks(xprt, status);
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002204}
2205
Trond Myklebust4876cc72015-06-19 16:17:57 -04002206/**
2207 * xs_tcp_shutdown - gracefully shut down a TCP socket
2208 * @xprt: transport
2209 *
2210 * Initiates a graceful shutdown of the TCP socket by calling the
2211 * equivalent of shutdown(SHUT_RDWR);
2212 */
2213static void xs_tcp_shutdown(struct rpc_xprt *xprt)
2214{
2215 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
2216 struct socket *sock = transport->sock;
2217
2218 if (sock == NULL)
2219 return;
2220 if (xprt_connected(xprt)) {
2221 kernel_sock_shutdown(sock, SHUT_RDWR);
2222 trace_rpc_socket_shutdown(xprt, sock);
2223 } else
2224 xs_reset_transport(transport);
2225}
2226
Chuck Lever16be2d22007-08-06 11:57:38 -04002227static int xs_tcp_finish_connecting(struct rpc_xprt *xprt, struct socket *sock)
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002228{
Chuck Lever16be2d22007-08-06 11:57:38 -04002229 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebustfe19a962011-03-18 20:21:23 -04002230 int ret = -ENOTCONN;
Chuck Leveredb267a2006-08-22 20:06:18 -04002231
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002232 if (!transport->inet) {
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002233 struct sock *sk = sock->sk;
Trond Myklebust7f260e82013-09-24 11:25:22 -04002234 unsigned int keepidle = xprt->timeout->to_initval / HZ;
2235 unsigned int keepcnt = xprt->timeout->to_retries + 1;
2236 unsigned int opt_on = 1;
Trond Myklebust775f06a2015-06-20 15:31:54 -04002237 unsigned int timeo;
Trond Myklebust7f260e82013-09-24 11:25:22 -04002238
2239 /* TCP Keepalive options */
2240 kernel_setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE,
2241 (char *)&opt_on, sizeof(opt_on));
2242 kernel_setsockopt(sock, SOL_TCP, TCP_KEEPIDLE,
2243 (char *)&keepidle, sizeof(keepidle));
2244 kernel_setsockopt(sock, SOL_TCP, TCP_KEEPINTVL,
2245 (char *)&keepidle, sizeof(keepidle));
2246 kernel_setsockopt(sock, SOL_TCP, TCP_KEEPCNT,
2247 (char *)&keepcnt, sizeof(keepcnt));
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002248
Trond Myklebust775f06a2015-06-20 15:31:54 -04002249 /* TCP user timeout (see RFC5482) */
2250 timeo = jiffies_to_msecs(xprt->timeout->to_initval) *
2251 (xprt->timeout->to_retries + 1);
2252 kernel_setsockopt(sock, SOL_TCP, TCP_USER_TIMEOUT,
2253 (char *)&timeo, sizeof(timeo));
2254
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002255 write_lock_bh(&sk->sk_callback_lock);
2256
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04002257 xs_save_old_callbacks(transport, sk);
2258
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002259 sk->sk_user_data = xprt;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002260 sk->sk_data_ready = xs_tcp_data_ready;
2261 sk->sk_state_change = xs_tcp_state_change;
2262 sk->sk_write_space = xs_tcp_write_space;
Trond Myklebust21180712013-12-31 13:22:59 -05002263 sk->sk_error_report = xs_error_report;
Trond Myklebustc2126152015-08-19 21:46:15 -05002264 sk->sk_allocation = GFP_NOIO;
Chuck Lever3167e122005-08-25 16:25:55 -07002265
2266 /* socket options */
Chuck Lever3167e122005-08-25 16:25:55 -07002267 sock_reset_flag(sk, SOCK_LINGER);
Chuck Lever3167e122005-08-25 16:25:55 -07002268 tcp_sk(sk)->nonagle |= TCP_NAGLE_OFF;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002269
2270 xprt_clear_connected(xprt);
2271
2272 /* Reset to new socket */
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002273 transport->sock = sock;
2274 transport->inet = sk;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002275
2276 write_unlock_bh(&sk->sk_callback_lock);
2277 }
2278
Trond Myklebust01d37c42009-03-11 14:09:39 -04002279 if (!xprt_bound(xprt))
Trond Myklebustfe19a962011-03-18 20:21:23 -04002280 goto out;
Trond Myklebust01d37c42009-03-11 14:09:39 -04002281
Mel Gormana564b8f2012-07-31 16:45:12 -07002282 xs_set_memalloc(xprt);
2283
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002284 /* Tell the socket layer to start connecting... */
Chuck Lever262ca072006-03-20 13:44:16 -05002285 xprt->stat.connect_count++;
2286 xprt->stat.connect_start = jiffies;
Trond Myklebust0fdea1e2015-09-16 23:43:17 -04002287 set_bit(XPRT_SOCK_CONNECTING, &transport->sock_state);
Trond Myklebustfe19a962011-03-18 20:21:23 -04002288 ret = kernel_connect(sock, xs_addr(xprt), xprt->addrlen, O_NONBLOCK);
2289 switch (ret) {
2290 case 0:
Trond Myklebust4dda9c82015-02-08 15:00:06 -05002291 xs_set_srcport(transport, sock);
Trond Myklebustfe19a962011-03-18 20:21:23 -04002292 case -EINPROGRESS:
2293 /* SYN_SENT! */
Trond Myklebustfe19a962011-03-18 20:21:23 -04002294 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
2295 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
2296 }
2297out:
2298 return ret;
Chuck Lever16be2d22007-08-06 11:57:38 -04002299}
2300
2301/**
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002302 * xs_tcp_setup_socket - create a TCP socket and connect to a remote endpoint
Chuck Lever16be2d22007-08-06 11:57:38 -04002303 *
2304 * Invoked by a work queue tasklet.
2305 */
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002306static void xs_tcp_setup_socket(struct work_struct *work)
Chuck Lever16be2d22007-08-06 11:57:38 -04002307{
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002308 struct sock_xprt *transport =
2309 container_of(work, struct sock_xprt, connect_worker.work);
Chuck Lever16be2d22007-08-06 11:57:38 -04002310 struct socket *sock = transport->sock;
Pavel Emelyanova9f5f0f2010-10-04 16:52:25 +04002311 struct rpc_xprt *xprt = &transport->xprt;
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002312 int status = -EIO;
Chuck Lever16be2d22007-08-06 11:57:38 -04002313
Chuck Lever16be2d22007-08-06 11:57:38 -04002314 if (!sock) {
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002315 sock = xs_create_sock(xprt, transport,
Trond Myklebust4dda9c82015-02-08 15:00:06 -05002316 xs_addr(xprt)->sa_family, SOCK_STREAM,
2317 IPPROTO_TCP, true);
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002318 if (IS_ERR(sock)) {
2319 status = PTR_ERR(sock);
Chuck Lever16be2d22007-08-06 11:57:38 -04002320 goto out;
2321 }
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002322 }
2323
Chuck Leverc740eff2009-08-09 15:09:46 -04002324 dprintk("RPC: worker connecting xprt %p via %s to "
2325 "%s (port %s)\n", xprt,
2326 xprt->address_strings[RPC_DISPLAY_PROTO],
2327 xprt->address_strings[RPC_DISPLAY_ADDR],
2328 xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever16be2d22007-08-06 11:57:38 -04002329
2330 status = xs_tcp_finish_connecting(xprt, sock);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04002331 trace_rpc_socket_connect(xprt, sock, status);
Chuck Lever46121cf2007-01-31 12:14:08 -05002332 dprintk("RPC: %p connect status %d connected %d sock state %d\n",
2333 xprt, -status, xprt_connected(xprt),
2334 sock->sk->sk_state);
Trond Myklebust2a491992009-03-11 14:38:00 -04002335 switch (status) {
Trond Myklebustf75e6742009-04-21 17:18:20 -04002336 default:
2337 printk("%s: connect returned unhandled error %d\n",
2338 __func__, status);
2339 case -EADDRNOTAVAIL:
2340 /* We're probably in TIME_WAIT. Get rid of existing socket,
2341 * and retry
2342 */
Trond Myklebusta519fc72012-09-12 16:49:15 -04002343 xs_tcp_force_close(xprt);
Trond Myklebust88b5ed72009-06-17 13:22:57 -07002344 break;
Trond Myklebust2a491992009-03-11 14:38:00 -04002345 case 0:
2346 case -EINPROGRESS:
2347 case -EALREADY:
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002348 xprt_unlock_connect(xprt, transport);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002349 return;
Trond Myklebust9fcfe0c2010-03-02 13:06:21 -05002350 case -EINVAL:
2351 /* Happens, for instance, if the user specified a link
2352 * local IPv6 address without a scope-id.
2353 */
Trond Myklebust3ed5e2a2013-03-04 17:29:33 -05002354 case -ECONNREFUSED:
2355 case -ECONNRESET:
2356 case -ENETUNREACH:
Trond Myklebust3913c782015-02-08 21:44:04 -05002357 case -EADDRINUSE:
Trond Myklebust3601c4a2014-06-30 13:42:19 -04002358 case -ENOBUFS:
Trond Myklebust3ed5e2a2013-03-04 17:29:33 -05002359 /* retry with existing socket, after a delay */
Trond Myklebust4efdd922015-02-08 15:34:28 -05002360 xs_tcp_force_close(xprt);
Trond Myklebust9fcfe0c2010-03-02 13:06:21 -05002361 goto out;
Chuck Levera246b012005-08-11 16:25:23 -04002362 }
Trond Myklebust2a491992009-03-11 14:38:00 -04002363 status = -EAGAIN;
Chuck Levera246b012005-08-11 16:25:23 -04002364out:
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002365 xprt_unlock_connect(xprt, transport);
Chuck Lever2226feb2005-08-11 16:25:38 -04002366 xprt_clear_connecting(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002367 xprt_wake_pending_tasks(xprt, status);
Chuck Levera246b012005-08-11 16:25:23 -04002368}
2369
Chuck Lever68e220b2007-08-06 11:57:48 -04002370/**
Chuck Lever9903cd12005-08-11 16:25:26 -04002371 * xs_connect - connect a socket to a remote endpoint
Trond Myklebust1b092092013-01-08 09:26:49 -05002372 * @xprt: pointer to transport structure
Chuck Lever9903cd12005-08-11 16:25:26 -04002373 * @task: address of RPC task that manages state of connect request
2374 *
2375 * TCP: If the remote end dropped the connection, delay reconnecting.
Chuck Lever03bf4b72005-08-25 16:25:55 -07002376 *
2377 * UDP socket connects are synchronous, but we use a work queue anyway
2378 * to guarantee that even unprivileged user processes can set up a
2379 * socket on a privileged port.
2380 *
2381 * If a UDP socket connect fails, the delay behavior here prevents
2382 * retry floods (hard mounts).
Chuck Lever9903cd12005-08-11 16:25:26 -04002383 */
Trond Myklebust1b092092013-01-08 09:26:49 -05002384static void xs_connect(struct rpc_xprt *xprt, struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -04002385{
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002386 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002387
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002388 WARN_ON_ONCE(!xprt_lock_connect(xprt, task, transport));
2389
Trond Myklebust99b1a4c2015-08-13 15:33:51 -04002390 if (transport->sock != NULL) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002391 dprintk("RPC: xs_connect delayed xprt %p for %lu "
2392 "seconds\n",
Chuck Lever03bf4b72005-08-25 16:25:55 -07002393 xprt, xprt->reestablish_timeout / HZ);
Trond Myklebust99b1a4c2015-08-13 15:33:51 -04002394
2395 /* Start by resetting any existing state */
2396 xs_reset_transport(transport);
2397
Trond Myklebustc1384c92007-06-14 18:00:42 -04002398 queue_delayed_work(rpciod_workqueue,
2399 &transport->connect_worker,
2400 xprt->reestablish_timeout);
Chuck Lever03bf4b72005-08-25 16:25:55 -07002401 xprt->reestablish_timeout <<= 1;
Neil Brown61d0a8e2009-09-23 14:36:37 -04002402 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
2403 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
Chuck Lever03bf4b72005-08-25 16:25:55 -07002404 if (xprt->reestablish_timeout > XS_TCP_MAX_REEST_TO)
2405 xprt->reestablish_timeout = XS_TCP_MAX_REEST_TO;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002406 } else {
Chuck Lever46121cf2007-01-31 12:14:08 -05002407 dprintk("RPC: xs_connect scheduled xprt %p\n", xprt);
Trond Myklebustc1384c92007-06-14 18:00:42 -04002408 queue_delayed_work(rpciod_workqueue,
2409 &transport->connect_worker, 0);
Chuck Levera246b012005-08-11 16:25:23 -04002410 }
2411}
2412
Chuck Lever262ca072006-03-20 13:44:16 -05002413/**
Chuck Lever176e21e2011-05-09 15:22:44 -04002414 * xs_local_print_stats - display AF_LOCAL socket-specifc stats
2415 * @xprt: rpc_xprt struct containing statistics
2416 * @seq: output file
2417 *
2418 */
2419static void xs_local_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2420{
2421 long idle_time = 0;
2422
2423 if (xprt_connected(xprt))
2424 idle_time = (long)(jiffies - xprt->last_used) / HZ;
2425
2426 seq_printf(seq, "\txprt:\tlocal %lu %lu %lu %ld %lu %lu %lu "
Andy Adamson15a45202012-02-14 16:19:18 -05002427 "%llu %llu %lu %llu %llu\n",
Chuck Lever176e21e2011-05-09 15:22:44 -04002428 xprt->stat.bind_count,
2429 xprt->stat.connect_count,
2430 xprt->stat.connect_time,
2431 idle_time,
2432 xprt->stat.sends,
2433 xprt->stat.recvs,
2434 xprt->stat.bad_xids,
2435 xprt->stat.req_u,
Andy Adamson15a45202012-02-14 16:19:18 -05002436 xprt->stat.bklog_u,
2437 xprt->stat.max_slots,
2438 xprt->stat.sending_u,
2439 xprt->stat.pending_u);
Chuck Lever176e21e2011-05-09 15:22:44 -04002440}
2441
2442/**
Chuck Lever262ca072006-03-20 13:44:16 -05002443 * xs_udp_print_stats - display UDP socket-specifc stats
2444 * @xprt: rpc_xprt struct containing statistics
2445 * @seq: output file
2446 *
2447 */
2448static void xs_udp_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2449{
Chuck Leverc8475462006-12-05 16:35:26 -05002450 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
2451
Andy Adamson15a45202012-02-14 16:19:18 -05002452 seq_printf(seq, "\txprt:\tudp %u %lu %lu %lu %lu %llu %llu "
2453 "%lu %llu %llu\n",
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002454 transport->srcport,
Chuck Lever262ca072006-03-20 13:44:16 -05002455 xprt->stat.bind_count,
2456 xprt->stat.sends,
2457 xprt->stat.recvs,
2458 xprt->stat.bad_xids,
2459 xprt->stat.req_u,
Andy Adamson15a45202012-02-14 16:19:18 -05002460 xprt->stat.bklog_u,
2461 xprt->stat.max_slots,
2462 xprt->stat.sending_u,
2463 xprt->stat.pending_u);
Chuck Lever262ca072006-03-20 13:44:16 -05002464}
2465
2466/**
2467 * xs_tcp_print_stats - display TCP socket-specifc stats
2468 * @xprt: rpc_xprt struct containing statistics
2469 * @seq: output file
2470 *
2471 */
2472static void xs_tcp_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2473{
Chuck Leverc8475462006-12-05 16:35:26 -05002474 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262ca072006-03-20 13:44:16 -05002475 long idle_time = 0;
2476
2477 if (xprt_connected(xprt))
2478 idle_time = (long)(jiffies - xprt->last_used) / HZ;
2479
Andy Adamson15a45202012-02-14 16:19:18 -05002480 seq_printf(seq, "\txprt:\ttcp %u %lu %lu %lu %ld %lu %lu %lu "
2481 "%llu %llu %lu %llu %llu\n",
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002482 transport->srcport,
Chuck Lever262ca072006-03-20 13:44:16 -05002483 xprt->stat.bind_count,
2484 xprt->stat.connect_count,
2485 xprt->stat.connect_time,
2486 idle_time,
2487 xprt->stat.sends,
2488 xprt->stat.recvs,
2489 xprt->stat.bad_xids,
2490 xprt->stat.req_u,
Andy Adamson15a45202012-02-14 16:19:18 -05002491 xprt->stat.bklog_u,
2492 xprt->stat.max_slots,
2493 xprt->stat.sending_u,
2494 xprt->stat.pending_u);
Chuck Lever262ca072006-03-20 13:44:16 -05002495}
2496
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002497/*
2498 * Allocate a bunch of pages for a scratch buffer for the rpc code. The reason
2499 * we allocate pages instead doing a kmalloc like rpc_malloc is because we want
2500 * to use the server side send routines.
2501 */
H Hartley Sweeten5a51f132010-01-14 15:38:31 -07002502static void *bc_malloc(struct rpc_task *task, size_t size)
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002503{
2504 struct page *page;
2505 struct rpc_buffer *buf;
2506
Weston Andros Adamsonb8a13d02012-10-23 10:43:43 -04002507 WARN_ON_ONCE(size > PAGE_SIZE - sizeof(struct rpc_buffer));
2508 if (size > PAGE_SIZE - sizeof(struct rpc_buffer))
2509 return NULL;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002510
Weston Andros Adamsonb8a13d02012-10-23 10:43:43 -04002511 page = alloc_page(GFP_KERNEL);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002512 if (!page)
2513 return NULL;
2514
2515 buf = page_address(page);
2516 buf->len = PAGE_SIZE;
2517
2518 return buf->data;
2519}
2520
2521/*
2522 * Free the space allocated in the bc_alloc routine
2523 */
H Hartley Sweeten5a51f132010-01-14 15:38:31 -07002524static void bc_free(void *buffer)
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002525{
2526 struct rpc_buffer *buf;
2527
2528 if (!buffer)
2529 return;
2530
2531 buf = container_of(buffer, struct rpc_buffer, data);
2532 free_page((unsigned long)buf);
2533}
2534
2535/*
2536 * Use the svc_sock to send the callback. Must be called with svsk->sk_mutex
2537 * held. Borrows heavily from svc_tcp_sendto and xs_tcp_send_request.
2538 */
2539static int bc_sendto(struct rpc_rqst *req)
2540{
2541 int len;
2542 struct xdr_buf *xbufp = &req->rq_snd_buf;
2543 struct rpc_xprt *xprt = req->rq_xprt;
2544 struct sock_xprt *transport =
2545 container_of(xprt, struct sock_xprt, xprt);
2546 struct socket *sock = transport->sock;
2547 unsigned long headoff;
2548 unsigned long tailoff;
2549
Chuck Lever61677ee2011-05-09 15:22:34 -04002550 xs_encode_stream_record_marker(xbufp);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002551
2552 tailoff = (unsigned long)xbufp->tail[0].iov_base & ~PAGE_MASK;
2553 headoff = (unsigned long)xbufp->head[0].iov_base & ~PAGE_MASK;
2554 len = svc_send_common(sock, xbufp,
2555 virt_to_page(xbufp->head[0].iov_base), headoff,
2556 xbufp->tail[0].iov_base, tailoff);
2557
2558 if (len != xbufp->len) {
2559 printk(KERN_NOTICE "Error sending entire callback!\n");
2560 len = -EAGAIN;
2561 }
2562
2563 return len;
2564}
2565
2566/*
2567 * The send routine. Borrows from svc_send
2568 */
2569static int bc_send_request(struct rpc_task *task)
2570{
2571 struct rpc_rqst *req = task->tk_rqstp;
2572 struct svc_xprt *xprt;
Andrzej Hajda7fc56132015-09-24 16:00:09 +02002573 int len;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002574
2575 dprintk("sending request with xid: %08x\n", ntohl(req->rq_xid));
2576 /*
2577 * Get the server socket associated with this callback xprt
2578 */
2579 xprt = req->rq_xprt->bc_xprt;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002580
2581 /*
2582 * Grab the mutex to serialize data as the connection is shared
2583 * with the fore channel
2584 */
2585 if (!mutex_trylock(&xprt->xpt_mutex)) {
2586 rpc_sleep_on(&xprt->xpt_bc_pending, task, NULL);
2587 if (!mutex_trylock(&xprt->xpt_mutex))
2588 return -EAGAIN;
2589 rpc_wake_up_queued_task(&xprt->xpt_bc_pending, task);
2590 }
2591 if (test_bit(XPT_DEAD, &xprt->xpt_flags))
2592 len = -ENOTCONN;
2593 else
2594 len = bc_sendto(req);
2595 mutex_unlock(&xprt->xpt_mutex);
2596
2597 if (len > 0)
2598 len = 0;
2599
2600 return len;
2601}
2602
2603/*
2604 * The close routine. Since this is client initiated, we do nothing
2605 */
2606
2607static void bc_close(struct rpc_xprt *xprt)
2608{
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002609}
2610
2611/*
2612 * The xprt destroy routine. Again, because this connection is client
2613 * initiated, we do nothing
2614 */
2615
2616static void bc_destroy(struct rpc_xprt *xprt)
2617{
Kinglong Mee47f72ef2014-03-24 11:58:16 +08002618 dprintk("RPC: bc_destroy xprt %p\n", xprt);
2619
2620 xs_xprt_free(xprt);
2621 module_put(THIS_MODULE);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002622}
2623
Chuck Lever176e21e2011-05-09 15:22:44 -04002624static struct rpc_xprt_ops xs_local_ops = {
2625 .reserve_xprt = xprt_reserve_xprt,
2626 .release_xprt = xs_tcp_release_xprt,
Trond Myklebustf39c1bf2012-09-07 11:08:50 -04002627 .alloc_slot = xprt_alloc_slot,
Chuck Lever176e21e2011-05-09 15:22:44 -04002628 .rpcbind = xs_local_rpcbind,
2629 .set_port = xs_local_set_port,
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05002630 .connect = xs_local_connect,
Chuck Lever176e21e2011-05-09 15:22:44 -04002631 .buf_alloc = rpc_malloc,
2632 .buf_free = rpc_free,
2633 .send_request = xs_local_send_request,
2634 .set_retrans_timeout = xprt_set_retrans_timeout_def,
2635 .close = xs_close,
Trond Myklebusta1311d82013-10-31 09:18:49 -04002636 .destroy = xs_destroy,
Chuck Lever176e21e2011-05-09 15:22:44 -04002637 .print_stats = xs_local_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002638 .enable_swap = xs_enable_swap,
2639 .disable_swap = xs_disable_swap,
Chuck Lever176e21e2011-05-09 15:22:44 -04002640};
2641
Chuck Lever262965f2005-08-11 16:25:56 -04002642static struct rpc_xprt_ops xs_udp_ops = {
Chuck Lever43118c22005-08-25 16:25:49 -07002643 .set_buffer_size = xs_udp_set_buffer_size,
Chuck Lever12a80462005-08-25 16:25:51 -07002644 .reserve_xprt = xprt_reserve_xprt_cong,
Chuck Lever49e9a892005-08-25 16:25:51 -07002645 .release_xprt = xprt_release_xprt_cong,
Trond Myklebustf39c1bf2012-09-07 11:08:50 -04002646 .alloc_slot = xprt_alloc_slot,
Chuck Lever45160d62007-07-01 12:13:17 -04002647 .rpcbind = rpcb_getport_async,
Chuck Lever92200412006-01-03 09:55:51 +01002648 .set_port = xs_set_port,
Chuck Lever9903cd12005-08-11 16:25:26 -04002649 .connect = xs_connect,
Chuck Lever02107142006-01-03 09:55:49 +01002650 .buf_alloc = rpc_malloc,
2651 .buf_free = rpc_free,
Chuck Lever262965f2005-08-11 16:25:56 -04002652 .send_request = xs_udp_send_request,
Chuck Leverfe3aca22005-08-25 16:25:50 -07002653 .set_retrans_timeout = xprt_set_retrans_timeout_rtt,
Chuck Lever46c0ee82005-08-25 16:25:52 -07002654 .timer = xs_udp_timer,
Chuck Levera58dd392005-08-25 16:25:53 -07002655 .release_request = xprt_release_rqst_cong,
Chuck Lever262965f2005-08-11 16:25:56 -04002656 .close = xs_close,
2657 .destroy = xs_destroy,
Chuck Lever262ca072006-03-20 13:44:16 -05002658 .print_stats = xs_udp_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002659 .enable_swap = xs_enable_swap,
2660 .disable_swap = xs_disable_swap,
Chuck Lever4a068252015-05-11 14:02:25 -04002661 .inject_disconnect = xs_inject_disconnect,
Chuck Lever262965f2005-08-11 16:25:56 -04002662};
2663
2664static struct rpc_xprt_ops xs_tcp_ops = {
Chuck Lever12a80462005-08-25 16:25:51 -07002665 .reserve_xprt = xprt_reserve_xprt,
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04002666 .release_xprt = xs_tcp_release_xprt,
Trond Myklebustf39c1bf2012-09-07 11:08:50 -04002667 .alloc_slot = xprt_lock_and_alloc_slot,
Chuck Lever45160d62007-07-01 12:13:17 -04002668 .rpcbind = rpcb_getport_async,
Chuck Lever92200412006-01-03 09:55:51 +01002669 .set_port = xs_set_port,
Trond Myklebust0b9e7942010-04-16 16:41:57 -04002670 .connect = xs_connect,
Chuck Lever02107142006-01-03 09:55:49 +01002671 .buf_alloc = rpc_malloc,
2672 .buf_free = rpc_free,
Chuck Lever262965f2005-08-11 16:25:56 -04002673 .send_request = xs_tcp_send_request,
Chuck Leverfe3aca22005-08-25 16:25:50 -07002674 .set_retrans_timeout = xprt_set_retrans_timeout_def,
Trond Myklebustc627d312015-02-10 11:06:04 -05002675 .close = xs_tcp_shutdown,
Chuck Lever9903cd12005-08-11 16:25:26 -04002676 .destroy = xs_destroy,
Chuck Lever262ca072006-03-20 13:44:16 -05002677 .print_stats = xs_tcp_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002678 .enable_swap = xs_enable_swap,
2679 .disable_swap = xs_disable_swap,
Chuck Lever4a068252015-05-11 14:02:25 -04002680 .inject_disconnect = xs_inject_disconnect,
Chuck Lever42e5c3e2015-10-24 17:27:35 -04002681#ifdef CONFIG_SUNRPC_BACKCHANNEL
2682 .bc_setup = xprt_setup_bc,
Chuck Lever76566772015-10-24 17:28:32 -04002683 .bc_up = xs_tcp_bc_up,
Chuck Lever42e5c3e2015-10-24 17:27:35 -04002684 .bc_free_rqst = xprt_free_bc_rqst,
2685 .bc_destroy = xprt_destroy_bc,
2686#endif
Chuck Levera246b012005-08-11 16:25:23 -04002687};
2688
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002689/*
2690 * The rpc_xprt_ops for the server backchannel
2691 */
2692
2693static struct rpc_xprt_ops bc_tcp_ops = {
2694 .reserve_xprt = xprt_reserve_xprt,
2695 .release_xprt = xprt_release_xprt,
Bryan Schumaker84e28a32012-09-24 13:39:01 -04002696 .alloc_slot = xprt_alloc_slot,
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002697 .buf_alloc = bc_malloc,
2698 .buf_free = bc_free,
2699 .send_request = bc_send_request,
2700 .set_retrans_timeout = xprt_set_retrans_timeout_def,
2701 .close = bc_close,
2702 .destroy = bc_destroy,
2703 .print_stats = xs_tcp_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002704 .enable_swap = xs_enable_swap,
2705 .disable_swap = xs_disable_swap,
Chuck Lever4a068252015-05-11 14:02:25 -04002706 .inject_disconnect = xs_inject_disconnect,
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002707};
2708
Chuck Lever92476852010-10-20 11:53:01 -04002709static int xs_init_anyaddr(const int family, struct sockaddr *sap)
2710{
2711 static const struct sockaddr_in sin = {
2712 .sin_family = AF_INET,
2713 .sin_addr.s_addr = htonl(INADDR_ANY),
2714 };
2715 static const struct sockaddr_in6 sin6 = {
2716 .sin6_family = AF_INET6,
2717 .sin6_addr = IN6ADDR_ANY_INIT,
2718 };
2719
2720 switch (family) {
Chuck Lever176e21e2011-05-09 15:22:44 -04002721 case AF_LOCAL:
2722 break;
Chuck Lever92476852010-10-20 11:53:01 -04002723 case AF_INET:
2724 memcpy(sap, &sin, sizeof(sin));
2725 break;
2726 case AF_INET6:
2727 memcpy(sap, &sin6, sizeof(sin6));
2728 break;
2729 default:
2730 dprintk("RPC: %s: Bad address family\n", __func__);
2731 return -EAFNOSUPPORT;
2732 }
2733 return 0;
2734}
2735
\"Talpey, Thomas\3c341b0b2007-09-10 13:47:07 -04002736static struct rpc_xprt *xs_setup_xprt(struct xprt_create *args,
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002737 unsigned int slot_table_size,
2738 unsigned int max_slot_table_size)
Chuck Leverc8541ec2006-10-17 14:44:27 -04002739{
2740 struct rpc_xprt *xprt;
Chuck Leverffc2e512006-12-05 16:35:11 -05002741 struct sock_xprt *new;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002742
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002743 if (args->addrlen > sizeof(xprt->addr)) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002744 dprintk("RPC: xs_setup_xprt: address too large\n");
Chuck Leverc8541ec2006-10-17 14:44:27 -04002745 return ERR_PTR(-EBADF);
2746 }
2747
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002748 xprt = xprt_alloc(args->net, sizeof(*new), slot_table_size,
2749 max_slot_table_size);
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +04002750 if (xprt == NULL) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002751 dprintk("RPC: xs_setup_xprt: couldn't allocate "
2752 "rpc_xprt\n");
Chuck Leverc8541ec2006-10-17 14:44:27 -04002753 return ERR_PTR(-ENOMEM);
2754 }
2755
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +04002756 new = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebustedc1b012015-10-05 10:53:49 -04002757 mutex_init(&new->recv_mutex);
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002758 memcpy(&xprt->addr, args->dstaddr, args->addrlen);
2759 xprt->addrlen = args->addrlen;
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +02002760 if (args->srcaddr)
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002761 memcpy(&new->srcaddr, args->srcaddr, args->addrlen);
Chuck Lever92476852010-10-20 11:53:01 -04002762 else {
2763 int err;
2764 err = xs_init_anyaddr(args->dstaddr->sa_family,
2765 (struct sockaddr *)&new->srcaddr);
Stanislav Kinsbursky2aa13532011-11-10 14:33:23 +03002766 if (err != 0) {
2767 xprt_free(xprt);
Chuck Lever92476852010-10-20 11:53:01 -04002768 return ERR_PTR(err);
Stanislav Kinsbursky2aa13532011-11-10 14:33:23 +03002769 }
Chuck Lever92476852010-10-20 11:53:01 -04002770 }
Chuck Leverc8541ec2006-10-17 14:44:27 -04002771
2772 return xprt;
2773}
2774
Chuck Lever176e21e2011-05-09 15:22:44 -04002775static const struct rpc_timeout xs_local_default_timeout = {
2776 .to_initval = 10 * HZ,
2777 .to_maxval = 10 * HZ,
2778 .to_retries = 2,
2779};
2780
2781/**
2782 * xs_setup_local - Set up transport to use an AF_LOCAL socket
2783 * @args: rpc transport creation arguments
2784 *
2785 * AF_LOCAL is a "tpi_cots_ord" transport, just like TCP
2786 */
2787static struct rpc_xprt *xs_setup_local(struct xprt_create *args)
2788{
2789 struct sockaddr_un *sun = (struct sockaddr_un *)args->dstaddr;
2790 struct sock_xprt *transport;
2791 struct rpc_xprt *xprt;
2792 struct rpc_xprt *ret;
2793
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002794 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries,
2795 xprt_max_tcp_slot_table_entries);
Chuck Lever176e21e2011-05-09 15:22:44 -04002796 if (IS_ERR(xprt))
2797 return xprt;
2798 transport = container_of(xprt, struct sock_xprt, xprt);
2799
2800 xprt->prot = 0;
2801 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
2802 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
2803
2804 xprt->bind_timeout = XS_BIND_TO;
2805 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
2806 xprt->idle_timeout = XS_IDLE_DISC_TO;
2807
2808 xprt->ops = &xs_local_ops;
2809 xprt->timeout = &xs_local_default_timeout;
2810
Trond Myklebusta2648092015-10-06 17:03:00 -04002811 INIT_WORK(&transport->recv_worker, xs_local_data_receive_workfn);
NeilBrown93dc41b2013-10-31 16:14:36 +11002812 INIT_DELAYED_WORK(&transport->connect_worker,
2813 xs_dummy_setup_socket);
2814
Chuck Lever176e21e2011-05-09 15:22:44 -04002815 switch (sun->sun_family) {
2816 case AF_LOCAL:
2817 if (sun->sun_path[0] != '/') {
2818 dprintk("RPC: bad AF_LOCAL address: %s\n",
2819 sun->sun_path);
2820 ret = ERR_PTR(-EINVAL);
2821 goto out_err;
2822 }
2823 xprt_set_bound(xprt);
Chuck Lever176e21e2011-05-09 15:22:44 -04002824 xs_format_peer_addresses(xprt, "local", RPCBIND_NETID_LOCAL);
J. Bruce Fields7073ea82013-02-21 10:14:22 -05002825 ret = ERR_PTR(xs_local_setup_socket(transport));
2826 if (ret)
2827 goto out_err;
Chuck Lever176e21e2011-05-09 15:22:44 -04002828 break;
2829 default:
2830 ret = ERR_PTR(-EAFNOSUPPORT);
2831 goto out_err;
2832 }
2833
2834 dprintk("RPC: set up xprt to %s via AF_LOCAL\n",
2835 xprt->address_strings[RPC_DISPLAY_ADDR]);
2836
2837 if (try_module_get(THIS_MODULE))
2838 return xprt;
2839 ret = ERR_PTR(-EINVAL);
2840out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08002841 xs_xprt_free(xprt);
Chuck Lever176e21e2011-05-09 15:22:44 -04002842 return ret;
2843}
2844
Trond Myklebust2881ae72007-12-20 16:03:54 -05002845static const struct rpc_timeout xs_udp_default_timeout = {
2846 .to_initval = 5 * HZ,
2847 .to_maxval = 30 * HZ,
2848 .to_increment = 5 * HZ,
2849 .to_retries = 5,
2850};
2851
Chuck Lever9903cd12005-08-11 16:25:26 -04002852/**
2853 * xs_setup_udp - Set up transport to use a UDP socket
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002854 * @args: rpc transport creation arguments
Chuck Lever9903cd12005-08-11 16:25:26 -04002855 *
2856 */
Adrian Bunk483066d2007-10-24 18:24:02 +02002857static struct rpc_xprt *xs_setup_udp(struct xprt_create *args)
Chuck Levera246b012005-08-11 16:25:23 -04002858{
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002859 struct sockaddr *addr = args->dstaddr;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002860 struct rpc_xprt *xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002861 struct sock_xprt *transport;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002862 struct rpc_xprt *ret;
Chuck Levera246b012005-08-11 16:25:23 -04002863
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002864 xprt = xs_setup_xprt(args, xprt_udp_slot_table_entries,
2865 xprt_udp_slot_table_entries);
Chuck Leverc8541ec2006-10-17 14:44:27 -04002866 if (IS_ERR(xprt))
2867 return xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002868 transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002869
Chuck Leverec739ef2006-08-22 20:06:15 -04002870 xprt->prot = IPPROTO_UDP;
Chuck Lever808012f2005-08-25 16:25:49 -07002871 xprt->tsh_size = 0;
Chuck Levera246b012005-08-11 16:25:23 -04002872 /* XXX: header size can vary due to auth type, IPv6, etc. */
2873 xprt->max_payload = (1U << 16) - (MAX_HEADER << 3);
2874
Chuck Lever03bf4b72005-08-25 16:25:55 -07002875 xprt->bind_timeout = XS_BIND_TO;
Chuck Lever03bf4b72005-08-25 16:25:55 -07002876 xprt->reestablish_timeout = XS_UDP_REEST_TO;
2877 xprt->idle_timeout = XS_IDLE_DISC_TO;
Chuck Levera246b012005-08-11 16:25:23 -04002878
Chuck Lever262965f2005-08-11 16:25:56 -04002879 xprt->ops = &xs_udp_ops;
Chuck Levera246b012005-08-11 16:25:23 -04002880
Trond Myklebustba7392b2007-12-20 16:03:55 -05002881 xprt->timeout = &xs_udp_default_timeout;
Chuck Levera246b012005-08-11 16:25:23 -04002882
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04002883 INIT_WORK(&transport->recv_worker, xs_udp_data_receive_workfn);
Trond Myklebustedc1b012015-10-05 10:53:49 -04002884 INIT_DELAYED_WORK(&transport->connect_worker, xs_udp_setup_socket);
2885
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002886 switch (addr->sa_family) {
2887 case AF_INET:
2888 if (((struct sockaddr_in *)addr)->sin_port != htons(0))
2889 xprt_set_bound(xprt);
2890
Chuck Lever9dc3b092009-08-09 15:09:46 -04002891 xs_format_peer_addresses(xprt, "udp", RPCBIND_NETID_UDP);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002892 break;
2893 case AF_INET6:
2894 if (((struct sockaddr_in6 *)addr)->sin6_port != htons(0))
2895 xprt_set_bound(xprt);
2896
Chuck Lever9dc3b092009-08-09 15:09:46 -04002897 xs_format_peer_addresses(xprt, "udp", RPCBIND_NETID_UDP6);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002898 break;
2899 default:
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002900 ret = ERR_PTR(-EAFNOSUPPORT);
2901 goto out_err;
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002902 }
2903
Chuck Leverc740eff2009-08-09 15:09:46 -04002904 if (xprt_bound(xprt))
2905 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
2906 xprt->address_strings[RPC_DISPLAY_ADDR],
2907 xprt->address_strings[RPC_DISPLAY_PORT],
2908 xprt->address_strings[RPC_DISPLAY_PROTO]);
2909 else
2910 dprintk("RPC: set up xprt to %s (autobind) via %s\n",
2911 xprt->address_strings[RPC_DISPLAY_ADDR],
2912 xprt->address_strings[RPC_DISPLAY_PROTO]);
Chuck Leveredb267a2006-08-22 20:06:18 -04002913
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002914 if (try_module_get(THIS_MODULE))
2915 return xprt;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002916 ret = ERR_PTR(-EINVAL);
2917out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08002918 xs_xprt_free(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002919 return ret;
Chuck Levera246b012005-08-11 16:25:23 -04002920}
2921
Trond Myklebust2881ae72007-12-20 16:03:54 -05002922static const struct rpc_timeout xs_tcp_default_timeout = {
2923 .to_initval = 60 * HZ,
2924 .to_maxval = 60 * HZ,
2925 .to_retries = 2,
2926};
2927
Chuck Lever9903cd12005-08-11 16:25:26 -04002928/**
2929 * xs_setup_tcp - Set up transport to use a TCP socket
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002930 * @args: rpc transport creation arguments
Chuck Lever9903cd12005-08-11 16:25:26 -04002931 *
2932 */
Adrian Bunk483066d2007-10-24 18:24:02 +02002933static struct rpc_xprt *xs_setup_tcp(struct xprt_create *args)
Chuck Levera246b012005-08-11 16:25:23 -04002934{
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002935 struct sockaddr *addr = args->dstaddr;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002936 struct rpc_xprt *xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002937 struct sock_xprt *transport;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002938 struct rpc_xprt *ret;
Trond Myklebustb7993ce2013-04-14 11:42:00 -04002939 unsigned int max_slot_table_size = xprt_max_tcp_slot_table_entries;
2940
2941 if (args->flags & XPRT_CREATE_INFINITE_SLOTS)
2942 max_slot_table_size = RPC_MAX_SLOT_TABLE_LIMIT;
Chuck Levera246b012005-08-11 16:25:23 -04002943
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002944 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries,
Trond Myklebustb7993ce2013-04-14 11:42:00 -04002945 max_slot_table_size);
Chuck Leverc8541ec2006-10-17 14:44:27 -04002946 if (IS_ERR(xprt))
2947 return xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002948 transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002949
Chuck Leverec739ef2006-08-22 20:06:15 -04002950 xprt->prot = IPPROTO_TCP;
Chuck Lever808012f2005-08-25 16:25:49 -07002951 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
Chuck Lever808012f2005-08-25 16:25:49 -07002952 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
Chuck Levera246b012005-08-11 16:25:23 -04002953
Chuck Lever03bf4b72005-08-25 16:25:55 -07002954 xprt->bind_timeout = XS_BIND_TO;
Chuck Lever03bf4b72005-08-25 16:25:55 -07002955 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
2956 xprt->idle_timeout = XS_IDLE_DISC_TO;
Chuck Levera246b012005-08-11 16:25:23 -04002957
Chuck Lever262965f2005-08-11 16:25:56 -04002958 xprt->ops = &xs_tcp_ops;
Trond Myklebustba7392b2007-12-20 16:03:55 -05002959 xprt->timeout = &xs_tcp_default_timeout;
Chuck Levera246b012005-08-11 16:25:23 -04002960
Trond Myklebustedc1b012015-10-05 10:53:49 -04002961 INIT_WORK(&transport->recv_worker, xs_tcp_data_receive_workfn);
2962 INIT_DELAYED_WORK(&transport->connect_worker, xs_tcp_setup_socket);
2963
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002964 switch (addr->sa_family) {
2965 case AF_INET:
2966 if (((struct sockaddr_in *)addr)->sin_port != htons(0))
2967 xprt_set_bound(xprt);
2968
Chuck Lever9dc3b092009-08-09 15:09:46 -04002969 xs_format_peer_addresses(xprt, "tcp", RPCBIND_NETID_TCP);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002970 break;
2971 case AF_INET6:
2972 if (((struct sockaddr_in6 *)addr)->sin6_port != htons(0))
2973 xprt_set_bound(xprt);
2974
Chuck Lever9dc3b092009-08-09 15:09:46 -04002975 xs_format_peer_addresses(xprt, "tcp", RPCBIND_NETID_TCP6);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002976 break;
2977 default:
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002978 ret = ERR_PTR(-EAFNOSUPPORT);
2979 goto out_err;
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002980 }
2981
Chuck Leverc740eff2009-08-09 15:09:46 -04002982 if (xprt_bound(xprt))
2983 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
2984 xprt->address_strings[RPC_DISPLAY_ADDR],
2985 xprt->address_strings[RPC_DISPLAY_PORT],
2986 xprt->address_strings[RPC_DISPLAY_PROTO]);
2987 else
2988 dprintk("RPC: set up xprt to %s (autobind) via %s\n",
2989 xprt->address_strings[RPC_DISPLAY_ADDR],
2990 xprt->address_strings[RPC_DISPLAY_PROTO]);
2991
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002992 if (try_module_get(THIS_MODULE))
2993 return xprt;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002994 ret = ERR_PTR(-EINVAL);
2995out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08002996 xs_xprt_free(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002997 return ret;
Chuck Levera246b012005-08-11 16:25:23 -04002998}
Chuck Lever282b32e2006-12-05 16:35:51 -05002999
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003000/**
3001 * xs_setup_bc_tcp - Set up transport to use a TCP backchannel socket
3002 * @args: rpc transport creation arguments
3003 *
3004 */
3005static struct rpc_xprt *xs_setup_bc_tcp(struct xprt_create *args)
3006{
3007 struct sockaddr *addr = args->dstaddr;
3008 struct rpc_xprt *xprt;
3009 struct sock_xprt *transport;
3010 struct svc_sock *bc_sock;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003011 struct rpc_xprt *ret;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003012
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003013 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries,
3014 xprt_tcp_slot_table_entries);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003015 if (IS_ERR(xprt))
3016 return xprt;
3017 transport = container_of(xprt, struct sock_xprt, xprt);
3018
3019 xprt->prot = IPPROTO_TCP;
3020 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
3021 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
3022 xprt->timeout = &xs_tcp_default_timeout;
3023
3024 /* backchannel */
3025 xprt_set_bound(xprt);
3026 xprt->bind_timeout = 0;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003027 xprt->reestablish_timeout = 0;
3028 xprt->idle_timeout = 0;
3029
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003030 xprt->ops = &bc_tcp_ops;
3031
3032 switch (addr->sa_family) {
3033 case AF_INET:
3034 xs_format_peer_addresses(xprt, "tcp",
3035 RPCBIND_NETID_TCP);
3036 break;
3037 case AF_INET6:
3038 xs_format_peer_addresses(xprt, "tcp",
3039 RPCBIND_NETID_TCP6);
3040 break;
3041 default:
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003042 ret = ERR_PTR(-EAFNOSUPPORT);
3043 goto out_err;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003044 }
3045
Pavel Emelyanov50fa0d42010-10-05 20:49:35 +04003046 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
3047 xprt->address_strings[RPC_DISPLAY_ADDR],
3048 xprt->address_strings[RPC_DISPLAY_PORT],
3049 xprt->address_strings[RPC_DISPLAY_PROTO]);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003050
3051 /*
J. Bruce Fields99de8ea2010-12-08 12:45:44 -05003052 * Once we've associated a backchannel xprt with a connection,
Weng Meiling28303ca2013-11-30 17:56:44 +08003053 * we want to keep it around as long as the connection lasts,
3054 * in case we need to start using it for a backchannel again;
3055 * this reference won't be dropped until bc_xprt is destroyed.
J. Bruce Fields99de8ea2010-12-08 12:45:44 -05003056 */
3057 xprt_get(xprt);
3058 args->bc_xprt->xpt_bc_xprt = xprt;
3059 xprt->bc_xprt = args->bc_xprt;
3060 bc_sock = container_of(args->bc_xprt, struct svc_sock, sk_xprt);
3061 transport->sock = bc_sock->sk_sock;
3062 transport->inet = bc_sock->sk_sk;
3063
3064 /*
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003065 * Since we don't want connections for the backchannel, we set
3066 * the xprt status to connected
3067 */
3068 xprt_set_connected(xprt);
3069
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003070 if (try_module_get(THIS_MODULE))
3071 return xprt;
Kinglong Mee642aab52014-03-24 12:00:28 +08003072
3073 args->bc_xprt->xpt_bc_xprt = NULL;
J. Bruce Fields99de8ea2010-12-08 12:45:44 -05003074 xprt_put(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003075 ret = ERR_PTR(-EINVAL);
3076out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08003077 xs_xprt_free(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003078 return ret;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003079}
3080
Chuck Lever176e21e2011-05-09 15:22:44 -04003081static struct xprt_class xs_local_transport = {
3082 .list = LIST_HEAD_INIT(xs_local_transport.list),
3083 .name = "named UNIX socket",
3084 .owner = THIS_MODULE,
3085 .ident = XPRT_TRANSPORT_LOCAL,
3086 .setup = xs_setup_local,
3087};
3088
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003089static struct xprt_class xs_udp_transport = {
3090 .list = LIST_HEAD_INIT(xs_udp_transport.list),
3091 .name = "udp",
3092 .owner = THIS_MODULE,
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003093 .ident = XPRT_TRANSPORT_UDP,
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003094 .setup = xs_setup_udp,
3095};
3096
3097static struct xprt_class xs_tcp_transport = {
3098 .list = LIST_HEAD_INIT(xs_tcp_transport.list),
3099 .name = "tcp",
3100 .owner = THIS_MODULE,
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003101 .ident = XPRT_TRANSPORT_TCP,
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003102 .setup = xs_setup_tcp,
3103};
3104
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003105static struct xprt_class xs_bc_tcp_transport = {
3106 .list = LIST_HEAD_INIT(xs_bc_tcp_transport.list),
3107 .name = "tcp NFSv4.1 backchannel",
3108 .owner = THIS_MODULE,
3109 .ident = XPRT_TRANSPORT_BC_TCP,
3110 .setup = xs_setup_bc_tcp,
3111};
3112
Chuck Lever282b32e2006-12-05 16:35:51 -05003113/**
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003114 * init_socket_xprt - set up xprtsock's sysctls, register with RPC client
Chuck Lever282b32e2006-12-05 16:35:51 -05003115 *
3116 */
3117int init_socket_xprt(void)
3118{
Jeff Laytonf895b252014-11-17 16:58:04 -05003119#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Eric W. Biederman2b1bec52007-02-14 00:33:24 -08003120 if (!sunrpc_table_header)
Eric W. Biederman0b4d4142007-02-14 00:34:09 -08003121 sunrpc_table_header = register_sysctl_table(sunrpc_table);
Chuck Leverfbf76682006-12-05 16:35:54 -05003122#endif
3123
Chuck Lever176e21e2011-05-09 15:22:44 -04003124 xprt_register_transport(&xs_local_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003125 xprt_register_transport(&xs_udp_transport);
3126 xprt_register_transport(&xs_tcp_transport);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003127 xprt_register_transport(&xs_bc_tcp_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003128
Chuck Lever282b32e2006-12-05 16:35:51 -05003129 return 0;
3130}
3131
3132/**
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003133 * cleanup_socket_xprt - remove xprtsock's sysctls, unregister
Chuck Lever282b32e2006-12-05 16:35:51 -05003134 *
3135 */
3136void cleanup_socket_xprt(void)
3137{
Jeff Laytonf895b252014-11-17 16:58:04 -05003138#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Chuck Leverfbf76682006-12-05 16:35:54 -05003139 if (sunrpc_table_header) {
3140 unregister_sysctl_table(sunrpc_table_header);
3141 sunrpc_table_header = NULL;
3142 }
3143#endif
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003144
Chuck Lever176e21e2011-05-09 15:22:44 -04003145 xprt_unregister_transport(&xs_local_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003146 xprt_unregister_transport(&xs_udp_transport);
3147 xprt_unregister_transport(&xs_tcp_transport);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003148 xprt_unregister_transport(&xs_bc_tcp_transport);
Chuck Lever282b32e2006-12-05 16:35:51 -05003149}
Trond Myklebustcbf11072009-08-09 15:06:19 -04003150
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003151static int param_set_uint_minmax(const char *val,
3152 const struct kernel_param *kp,
Trond Myklebustcbf11072009-08-09 15:06:19 -04003153 unsigned int min, unsigned int max)
3154{
Daniel Walter00cfaa92014-06-21 13:06:38 +01003155 unsigned int num;
Trond Myklebustcbf11072009-08-09 15:06:19 -04003156 int ret;
3157
3158 if (!val)
3159 return -EINVAL;
Daniel Walter00cfaa92014-06-21 13:06:38 +01003160 ret = kstrtouint(val, 0, &num);
Trond Myklebustcbf11072009-08-09 15:06:19 -04003161 if (ret == -EINVAL || num < min || num > max)
3162 return -EINVAL;
3163 *((unsigned int *)kp->arg) = num;
3164 return 0;
3165}
3166
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003167static int param_set_portnr(const char *val, const struct kernel_param *kp)
Trond Myklebustcbf11072009-08-09 15:06:19 -04003168{
3169 return param_set_uint_minmax(val, kp,
3170 RPC_MIN_RESVPORT,
3171 RPC_MAX_RESVPORT);
3172}
3173
Luis R. Rodriguez9c278472015-05-27 11:09:38 +09303174static const struct kernel_param_ops param_ops_portnr = {
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003175 .set = param_set_portnr,
3176 .get = param_get_uint,
3177};
3178
Trond Myklebustcbf11072009-08-09 15:06:19 -04003179#define param_check_portnr(name, p) \
3180 __param_check(name, p, unsigned int);
3181
3182module_param_named(min_resvport, xprt_min_resvport, portnr, 0644);
3183module_param_named(max_resvport, xprt_max_resvport, portnr, 0644);
3184
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003185static int param_set_slot_table_size(const char *val,
3186 const struct kernel_param *kp)
Trond Myklebustcbf11072009-08-09 15:06:19 -04003187{
3188 return param_set_uint_minmax(val, kp,
3189 RPC_MIN_SLOT_TABLE,
3190 RPC_MAX_SLOT_TABLE);
3191}
3192
Luis R. Rodriguez9c278472015-05-27 11:09:38 +09303193static const struct kernel_param_ops param_ops_slot_table_size = {
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003194 .set = param_set_slot_table_size,
3195 .get = param_get_uint,
3196};
3197
Trond Myklebustcbf11072009-08-09 15:06:19 -04003198#define param_check_slot_table_size(name, p) \
3199 __param_check(name, p, unsigned int);
3200
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003201static int param_set_max_slot_table_size(const char *val,
3202 const struct kernel_param *kp)
3203{
3204 return param_set_uint_minmax(val, kp,
3205 RPC_MIN_SLOT_TABLE,
3206 RPC_MAX_SLOT_TABLE_LIMIT);
3207}
3208
Luis R. Rodriguez9c278472015-05-27 11:09:38 +09303209static const struct kernel_param_ops param_ops_max_slot_table_size = {
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003210 .set = param_set_max_slot_table_size,
3211 .get = param_get_uint,
3212};
3213
3214#define param_check_max_slot_table_size(name, p) \
3215 __param_check(name, p, unsigned int);
3216
Trond Myklebustcbf11072009-08-09 15:06:19 -04003217module_param_named(tcp_slot_table_entries, xprt_tcp_slot_table_entries,
3218 slot_table_size, 0644);
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003219module_param_named(tcp_max_slot_table_entries, xprt_max_tcp_slot_table_entries,
3220 max_slot_table_size, 0644);
Trond Myklebustcbf11072009-08-09 15:06:19 -04003221module_param_named(udp_slot_table_entries, xprt_udp_slot_table_entries,
3222 slot_table_size, 0644);
3223