blob: bf20726d4ab52cd2241603c200ede5145b4ae348 [file] [log] [blame]
Chuck Levera246b012005-08-11 16:25:23 -04001/*
2 * linux/net/sunrpc/xprtsock.c
3 *
4 * Client-side transport implementation for sockets.
5 *
Alan Cox113aa832008-10-13 19:01:08 -07006 * TCP callback races fixes (C) 1998 Red Hat
7 * TCP send fixes (C) 1998 Red Hat
Chuck Levera246b012005-08-11 16:25:23 -04008 * TCP NFS related read + write fixes
9 * (C) 1999 Dave Airlie, University of Limerick, Ireland <airlied@linux.ie>
10 *
11 * Rewrite of larges part of the code in order to stabilize TCP stuff.
12 * Fix behaviour when socket buffer is full.
13 * (C) 1999 Trond Myklebust <trond.myklebust@fys.uio.no>
Chuck Lever55aa4f52005-08-11 16:25:47 -040014 *
15 * IP socket transport implementation, (C) 2005 Chuck Lever <cel@netapp.com>
Chuck Lever8f9d5b12007-08-06 11:57:53 -040016 *
17 * IPv6 support contributed by Gilles Quillard, Bull Open Source, 2005.
18 * <gilles.quillard@bull.net>
Chuck Levera246b012005-08-11 16:25:23 -040019 */
20
21#include <linux/types.h>
Chuck Lever176e21e2011-05-09 15:22:44 -040022#include <linux/string.h>
Chuck Levera246b012005-08-11 16:25:23 -040023#include <linux/slab.h>
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -040024#include <linux/module.h>
Chuck Levera246b012005-08-11 16:25:23 -040025#include <linux/capability.h>
Chuck Levera246b012005-08-11 16:25:23 -040026#include <linux/pagemap.h>
27#include <linux/errno.h>
28#include <linux/socket.h>
29#include <linux/in.h>
30#include <linux/net.h>
31#include <linux/mm.h>
Chuck Lever176e21e2011-05-09 15:22:44 -040032#include <linux/un.h>
Chuck Levera246b012005-08-11 16:25:23 -040033#include <linux/udp.h>
34#include <linux/tcp.h>
35#include <linux/sunrpc/clnt.h>
Jeff Layton59766872013-02-04 12:50:00 -050036#include <linux/sunrpc/addr.h>
Chuck Lever02107142006-01-03 09:55:49 +010037#include <linux/sunrpc/sched.h>
Rahul Iyer4cfc7e62009-09-10 17:32:28 +030038#include <linux/sunrpc/svcsock.h>
\"Talpey, Thomas\49c36fc2007-09-10 13:47:31 -040039#include <linux/sunrpc/xprtsock.h>
Chuck Levera246b012005-08-11 16:25:23 -040040#include <linux/file.h>
Trond Myklebust9e00abc2011-07-13 19:20:49 -040041#ifdef CONFIG_SUNRPC_BACKCHANNEL
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -040042#include <linux/sunrpc/bc_xprt.h>
43#endif
Chuck Levera246b012005-08-11 16:25:23 -040044
45#include <net/sock.h>
46#include <net/checksum.h>
47#include <net/udp.h>
48#include <net/tcp.h>
49
Trond Myklebust40b5ea02013-09-04 12:16:23 -040050#include <trace/events/sunrpc.h>
51
Rahul Iyer4cfc7e62009-09-10 17:32:28 +030052#include "sunrpc.h"
Chuck Lever176e21e2011-05-09 15:22:44 -040053
54static void xs_close(struct rpc_xprt *xprt);
55
Chuck Lever9903cd12005-08-11 16:25:26 -040056/*
Chuck Leverc556b752005-11-01 12:24:48 -050057 * xprtsock tunables
58 */
Trond Myklebust09acfea2012-03-11 15:22:54 -040059static unsigned int xprt_udp_slot_table_entries = RPC_DEF_SLOT_TABLE;
60static unsigned int xprt_tcp_slot_table_entries = RPC_MIN_SLOT_TABLE;
61static unsigned int xprt_max_tcp_slot_table_entries = RPC_MAX_SLOT_TABLE;
Chuck Leverc556b752005-11-01 12:24:48 -050062
Trond Myklebust09acfea2012-03-11 15:22:54 -040063static unsigned int xprt_min_resvport = RPC_DEF_MIN_RESVPORT;
64static unsigned int xprt_max_resvport = RPC_DEF_MAX_RESVPORT;
Chuck Leverc556b752005-11-01 12:24:48 -050065
Trond Myklebust54c09872015-02-09 11:01:02 -050066#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
67
Trond Myklebust7d1e8252009-03-11 14:38:03 -040068#define XS_TCP_LINGER_TO (15U * HZ)
Trond Myklebust25fe6142009-03-11 14:38:03 -040069static unsigned int xs_tcp_fin_timeout __read_mostly = XS_TCP_LINGER_TO;
Trond Myklebust7d1e8252009-03-11 14:38:03 -040070
Chuck Leverc556b752005-11-01 12:24:48 -050071/*
Chuck Leverfbf76682006-12-05 16:35:54 -050072 * We can register our own files under /proc/sys/sunrpc by
73 * calling register_sysctl_table() again. The files in that
74 * directory become the union of all files registered there.
75 *
76 * We simply need to make sure that we don't collide with
77 * someone else's file names!
78 */
79
Chuck Leverfbf76682006-12-05 16:35:54 -050080static unsigned int min_slot_table_size = RPC_MIN_SLOT_TABLE;
81static unsigned int max_slot_table_size = RPC_MAX_SLOT_TABLE;
Trond Myklebustd9ba1312011-07-17 18:11:30 -040082static unsigned int max_tcp_slot_table_limit = RPC_MAX_SLOT_TABLE_LIMIT;
Chuck Leverfbf76682006-12-05 16:35:54 -050083static unsigned int xprt_min_resvport_limit = RPC_MIN_RESVPORT;
84static unsigned int xprt_max_resvport_limit = RPC_MAX_RESVPORT;
85
86static struct ctl_table_header *sunrpc_table_header;
87
88/*
89 * FIXME: changing the UDP slot table size should also resize the UDP
90 * socket buffers for existing UDP transports
91 */
Joe Perchesfe2c6332013-06-11 23:04:25 -070092static struct ctl_table xs_tunables_table[] = {
Chuck Leverfbf76682006-12-05 16:35:54 -050093 {
Chuck Leverfbf76682006-12-05 16:35:54 -050094 .procname = "udp_slot_table_entries",
95 .data = &xprt_udp_slot_table_entries,
96 .maxlen = sizeof(unsigned int),
97 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -080098 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -050099 .extra1 = &min_slot_table_size,
100 .extra2 = &max_slot_table_size
101 },
102 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500103 .procname = "tcp_slot_table_entries",
104 .data = &xprt_tcp_slot_table_entries,
105 .maxlen = sizeof(unsigned int),
106 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800107 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -0500108 .extra1 = &min_slot_table_size,
109 .extra2 = &max_slot_table_size
110 },
111 {
Trond Myklebustd9ba1312011-07-17 18:11:30 -0400112 .procname = "tcp_max_slot_table_entries",
113 .data = &xprt_max_tcp_slot_table_entries,
114 .maxlen = sizeof(unsigned int),
115 .mode = 0644,
116 .proc_handler = proc_dointvec_minmax,
117 .extra1 = &min_slot_table_size,
118 .extra2 = &max_tcp_slot_table_limit
119 },
120 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500121 .procname = "min_resvport",
122 .data = &xprt_min_resvport,
123 .maxlen = sizeof(unsigned int),
124 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800125 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -0500126 .extra1 = &xprt_min_resvport_limit,
127 .extra2 = &xprt_max_resvport_limit
128 },
129 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500130 .procname = "max_resvport",
131 .data = &xprt_max_resvport,
132 .maxlen = sizeof(unsigned int),
133 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800134 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -0500135 .extra1 = &xprt_min_resvport_limit,
136 .extra2 = &xprt_max_resvport_limit
137 },
138 {
Trond Myklebust25fe6142009-03-11 14:38:03 -0400139 .procname = "tcp_fin_timeout",
140 .data = &xs_tcp_fin_timeout,
141 .maxlen = sizeof(xs_tcp_fin_timeout),
142 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800143 .proc_handler = proc_dointvec_jiffies,
Trond Myklebust25fe6142009-03-11 14:38:03 -0400144 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800145 { },
Chuck Leverfbf76682006-12-05 16:35:54 -0500146};
147
Joe Perchesfe2c6332013-06-11 23:04:25 -0700148static struct ctl_table sunrpc_table[] = {
Chuck Leverfbf76682006-12-05 16:35:54 -0500149 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500150 .procname = "sunrpc",
151 .mode = 0555,
152 .child = xs_tunables_table
153 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800154 { },
Chuck Leverfbf76682006-12-05 16:35:54 -0500155};
156
157#endif
158
159/*
Chuck Lever03bf4b72005-08-25 16:25:55 -0700160 * Wait duration for a reply from the RPC portmapper.
161 */
162#define XS_BIND_TO (60U * HZ)
163
164/*
165 * Delay if a UDP socket connect error occurs. This is most likely some
166 * kind of resource problem on the local host.
167 */
168#define XS_UDP_REEST_TO (2U * HZ)
169
170/*
171 * The reestablish timeout allows clients to delay for a bit before attempting
172 * to reconnect to a server that just dropped our connection.
173 *
174 * We implement an exponential backoff when trying to reestablish a TCP
175 * transport connection with the server. Some servers like to drop a TCP
176 * connection when they are overworked, so we start with a short timeout and
177 * increase over time if the server is down or not responding.
178 */
179#define XS_TCP_INIT_REEST_TO (3U * HZ)
180#define XS_TCP_MAX_REEST_TO (5U * 60 * HZ)
181
182/*
183 * TCP idle timeout; client drops the transport socket if it is idle
184 * for this long. Note that we also timeout UDP sockets to prevent
185 * holding port numbers when there is no RPC traffic.
186 */
187#define XS_IDLE_DISC_TO (5U * 60 * HZ)
188
Jeff Laytonf895b252014-11-17 16:58:04 -0500189#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Chuck Levera246b012005-08-11 16:25:23 -0400190# undef RPC_DEBUG_DATA
Chuck Lever9903cd12005-08-11 16:25:26 -0400191# define RPCDBG_FACILITY RPCDBG_TRANS
Chuck Levera246b012005-08-11 16:25:23 -0400192#endif
193
Chuck Levera246b012005-08-11 16:25:23 -0400194#ifdef RPC_DEBUG_DATA
Chuck Lever9903cd12005-08-11 16:25:26 -0400195static void xs_pktdump(char *msg, u32 *packet, unsigned int count)
Chuck Levera246b012005-08-11 16:25:23 -0400196{
Chuck Lever9903cd12005-08-11 16:25:26 -0400197 u8 *buf = (u8 *) packet;
198 int j;
Chuck Levera246b012005-08-11 16:25:23 -0400199
Chuck Lever46121cf2007-01-31 12:14:08 -0500200 dprintk("RPC: %s\n", msg);
Chuck Levera246b012005-08-11 16:25:23 -0400201 for (j = 0; j < count && j < 128; j += 4) {
202 if (!(j & 31)) {
203 if (j)
204 dprintk("\n");
205 dprintk("0x%04x ", j);
206 }
207 dprintk("%02x%02x%02x%02x ",
208 buf[j], buf[j+1], buf[j+2], buf[j+3]);
209 }
210 dprintk("\n");
211}
212#else
Chuck Lever9903cd12005-08-11 16:25:26 -0400213static inline void xs_pktdump(char *msg, u32 *packet, unsigned int count)
Chuck Levera246b012005-08-11 16:25:23 -0400214{
215 /* NOP */
216}
217#endif
218
Trond Myklebust21180712013-12-31 13:22:59 -0500219static inline struct rpc_xprt *xprt_from_sock(struct sock *sk)
220{
221 return (struct rpc_xprt *) sk->sk_user_data;
222}
223
Chuck Lever95392c52007-08-06 11:57:58 -0400224static inline struct sockaddr *xs_addr(struct rpc_xprt *xprt)
Chuck Leveredb267a2006-08-22 20:06:18 -0400225{
Chuck Lever95392c52007-08-06 11:57:58 -0400226 return (struct sockaddr *) &xprt->addr;
227}
228
Chuck Lever176e21e2011-05-09 15:22:44 -0400229static inline struct sockaddr_un *xs_addr_un(struct rpc_xprt *xprt)
230{
231 return (struct sockaddr_un *) &xprt->addr;
232}
233
Chuck Lever95392c52007-08-06 11:57:58 -0400234static inline struct sockaddr_in *xs_addr_in(struct rpc_xprt *xprt)
235{
236 return (struct sockaddr_in *) &xprt->addr;
237}
238
239static inline struct sockaddr_in6 *xs_addr_in6(struct rpc_xprt *xprt)
240{
241 return (struct sockaddr_in6 *) &xprt->addr;
242}
243
Chuck Leverc877b842009-08-09 15:09:36 -0400244static void xs_format_common_peer_addresses(struct rpc_xprt *xprt)
Chuck Leveredb267a2006-08-22 20:06:18 -0400245{
Chuck Leverc877b842009-08-09 15:09:36 -0400246 struct sockaddr *sap = xs_addr(xprt);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400247 struct sockaddr_in6 *sin6;
248 struct sockaddr_in *sin;
Chuck Lever176e21e2011-05-09 15:22:44 -0400249 struct sockaddr_un *sun;
Chuck Leverc877b842009-08-09 15:09:36 -0400250 char buf[128];
Chuck Leveredb267a2006-08-22 20:06:18 -0400251
Chuck Lever9dc3b092009-08-09 15:09:46 -0400252 switch (sap->sa_family) {
Chuck Lever176e21e2011-05-09 15:22:44 -0400253 case AF_LOCAL:
254 sun = xs_addr_un(xprt);
255 strlcpy(buf, sun->sun_path, sizeof(buf));
256 xprt->address_strings[RPC_DISPLAY_ADDR] =
257 kstrdup(buf, GFP_KERNEL);
258 break;
Chuck Lever9dc3b092009-08-09 15:09:46 -0400259 case AF_INET:
Chuck Lever176e21e2011-05-09 15:22:44 -0400260 (void)rpc_ntop(sap, buf, sizeof(buf));
261 xprt->address_strings[RPC_DISPLAY_ADDR] =
262 kstrdup(buf, GFP_KERNEL);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400263 sin = xs_addr_in(xprt);
Joe Perchesfc0b57912010-03-08 12:15:28 -0800264 snprintf(buf, sizeof(buf), "%08x", ntohl(sin->sin_addr.s_addr));
Chuck Lever9dc3b092009-08-09 15:09:46 -0400265 break;
266 case AF_INET6:
Chuck Lever176e21e2011-05-09 15:22:44 -0400267 (void)rpc_ntop(sap, buf, sizeof(buf));
268 xprt->address_strings[RPC_DISPLAY_ADDR] =
269 kstrdup(buf, GFP_KERNEL);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400270 sin6 = xs_addr_in6(xprt);
Joe Perchesfc0b57912010-03-08 12:15:28 -0800271 snprintf(buf, sizeof(buf), "%pi6", &sin6->sin6_addr);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400272 break;
273 default:
274 BUG();
Chuck Leveredb267a2006-08-22 20:06:18 -0400275 }
Chuck Lever176e21e2011-05-09 15:22:44 -0400276
Chuck Lever9dc3b092009-08-09 15:09:46 -0400277 xprt->address_strings[RPC_DISPLAY_HEX_ADDR] = kstrdup(buf, GFP_KERNEL);
Chuck Leveredb267a2006-08-22 20:06:18 -0400278}
279
Chuck Lever9dc3b092009-08-09 15:09:46 -0400280static void xs_format_common_peer_ports(struct rpc_xprt *xprt)
Chuck Lever4b6473f2007-08-06 11:57:12 -0400281{
Chuck Lever9dc3b092009-08-09 15:09:46 -0400282 struct sockaddr *sap = xs_addr(xprt);
283 char buf[128];
Chuck Lever4b6473f2007-08-06 11:57:12 -0400284
Joe Perches81160e662010-03-08 12:15:59 -0800285 snprintf(buf, sizeof(buf), "%u", rpc_get_port(sap));
Chuck Leverc877b842009-08-09 15:09:36 -0400286 xprt->address_strings[RPC_DISPLAY_PORT] = kstrdup(buf, GFP_KERNEL);
Chuck Lever4b6473f2007-08-06 11:57:12 -0400287
Joe Perches81160e662010-03-08 12:15:59 -0800288 snprintf(buf, sizeof(buf), "%4hx", rpc_get_port(sap));
Chuck Leverc877b842009-08-09 15:09:36 -0400289 xprt->address_strings[RPC_DISPLAY_HEX_PORT] = kstrdup(buf, GFP_KERNEL);
290}
Chuck Lever4b6473f2007-08-06 11:57:12 -0400291
Chuck Lever9dc3b092009-08-09 15:09:46 -0400292static void xs_format_peer_addresses(struct rpc_xprt *xprt,
293 const char *protocol,
294 const char *netid)
Chuck Leveredb267a2006-08-22 20:06:18 -0400295{
Chuck Leverb454ae92008-01-07 18:34:48 -0500296 xprt->address_strings[RPC_DISPLAY_PROTO] = protocol;
Chuck Leverb454ae92008-01-07 18:34:48 -0500297 xprt->address_strings[RPC_DISPLAY_NETID] = netid;
Chuck Leverc877b842009-08-09 15:09:36 -0400298 xs_format_common_peer_addresses(xprt);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400299 xs_format_common_peer_ports(xprt);
Chuck Lever4b6473f2007-08-06 11:57:12 -0400300}
301
Chuck Lever9dc3b092009-08-09 15:09:46 -0400302static void xs_update_peer_port(struct rpc_xprt *xprt)
Chuck Lever4b6473f2007-08-06 11:57:12 -0400303{
Chuck Lever9dc3b092009-08-09 15:09:46 -0400304 kfree(xprt->address_strings[RPC_DISPLAY_HEX_PORT]);
305 kfree(xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever4b6473f2007-08-06 11:57:12 -0400306
Chuck Lever9dc3b092009-08-09 15:09:46 -0400307 xs_format_common_peer_ports(xprt);
Chuck Leveredb267a2006-08-22 20:06:18 -0400308}
309
310static void xs_free_peer_addresses(struct rpc_xprt *xprt)
311{
Chuck Lever33e01dc2008-01-14 12:32:20 -0500312 unsigned int i;
313
314 for (i = 0; i < RPC_DISPLAY_MAX; i++)
315 switch (i) {
316 case RPC_DISPLAY_PROTO:
317 case RPC_DISPLAY_NETID:
318 continue;
319 default:
320 kfree(xprt->address_strings[i]);
321 }
Chuck Leveredb267a2006-08-22 20:06:18 -0400322}
323
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400324#define XS_SENDMSG_FLAGS (MSG_DONTWAIT | MSG_NOSIGNAL)
325
Trond Myklebust24c56842006-10-17 15:06:22 -0400326static int xs_send_kvec(struct socket *sock, struct sockaddr *addr, int addrlen, struct kvec *vec, unsigned int base, int more)
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400327{
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400328 struct msghdr msg = {
329 .msg_name = addr,
330 .msg_namelen = addrlen,
Trond Myklebust24c56842006-10-17 15:06:22 -0400331 .msg_flags = XS_SENDMSG_FLAGS | (more ? MSG_MORE : 0),
332 };
333 struct kvec iov = {
334 .iov_base = vec->iov_base + base,
335 .iov_len = vec->iov_len - base,
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400336 };
337
Trond Myklebust24c56842006-10-17 15:06:22 -0400338 if (iov.iov_len != 0)
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400339 return kernel_sendmsg(sock, &msg, &iov, 1, iov.iov_len);
340 return kernel_sendmsg(sock, &msg, NULL, 0, 0);
341}
342
Jason Baronf279cd02014-09-24 18:08:00 +0000343static int xs_send_pagedata(struct socket *sock, struct xdr_buf *xdr, unsigned int base, int more, bool zerocopy, int *sent_p)
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400344{
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500345 ssize_t (*do_sendpage)(struct socket *sock, struct page *page,
346 int offset, size_t size, int flags);
Trond Myklebust24c56842006-10-17 15:06:22 -0400347 struct page **ppage;
348 unsigned int remainder;
Jason Baronf279cd02014-09-24 18:08:00 +0000349 int err;
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400350
Trond Myklebust24c56842006-10-17 15:06:22 -0400351 remainder = xdr->page_len - base;
352 base += xdr->page_base;
353 ppage = xdr->pages + (base >> PAGE_SHIFT);
354 base &= ~PAGE_MASK;
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500355 do_sendpage = sock->ops->sendpage;
356 if (!zerocopy)
357 do_sendpage = sock_no_sendpage;
Trond Myklebust24c56842006-10-17 15:06:22 -0400358 for(;;) {
359 unsigned int len = min_t(unsigned int, PAGE_SIZE - base, remainder);
360 int flags = XS_SENDMSG_FLAGS;
361
362 remainder -= len;
363 if (remainder != 0 || more)
364 flags |= MSG_MORE;
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500365 err = do_sendpage(sock, *ppage, base, len, flags);
Trond Myklebust24c56842006-10-17 15:06:22 -0400366 if (remainder == 0 || err != len)
367 break;
Jason Baronf279cd02014-09-24 18:08:00 +0000368 *sent_p += err;
Trond Myklebust24c56842006-10-17 15:06:22 -0400369 ppage++;
370 base = 0;
371 }
Jason Baronf279cd02014-09-24 18:08:00 +0000372 if (err > 0) {
373 *sent_p += err;
374 err = 0;
375 }
376 return err;
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400377}
378
Chuck Lever9903cd12005-08-11 16:25:26 -0400379/**
380 * xs_sendpages - write pages directly to a socket
381 * @sock: socket to send on
382 * @addr: UDP only -- address of destination
383 * @addrlen: UDP only -- length of destination address
384 * @xdr: buffer containing this request
385 * @base: starting position in the buffer
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500386 * @zerocopy: true if it is safe to use sendpage()
Jason Baronf279cd02014-09-24 18:08:00 +0000387 * @sent_p: return the total number of bytes successfully queued for sending
Chuck Lever9903cd12005-08-11 16:25:26 -0400388 *
Chuck Levera246b012005-08-11 16:25:23 -0400389 */
Jason Baronf279cd02014-09-24 18:08:00 +0000390static int xs_sendpages(struct socket *sock, struct sockaddr *addr, int addrlen, struct xdr_buf *xdr, unsigned int base, bool zerocopy, int *sent_p)
Chuck Levera246b012005-08-11 16:25:23 -0400391{
Trond Myklebust24c56842006-10-17 15:06:22 -0400392 unsigned int remainder = xdr->len - base;
Jason Baronf279cd02014-09-24 18:08:00 +0000393 int err = 0;
394 int sent = 0;
Chuck Levera246b012005-08-11 16:25:23 -0400395
Chuck Lever262965f2005-08-11 16:25:56 -0400396 if (unlikely(!sock))
Trond Myklebustfba91af2009-03-11 14:06:41 -0400397 return -ENOTSOCK;
Chuck Lever262965f2005-08-11 16:25:56 -0400398
399 clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags);
Trond Myklebust24c56842006-10-17 15:06:22 -0400400 if (base != 0) {
401 addr = NULL;
402 addrlen = 0;
403 }
Chuck Lever262965f2005-08-11 16:25:56 -0400404
Trond Myklebust24c56842006-10-17 15:06:22 -0400405 if (base < xdr->head[0].iov_len || addr != NULL) {
406 unsigned int len = xdr->head[0].iov_len - base;
407 remainder -= len;
408 err = xs_send_kvec(sock, addr, addrlen, &xdr->head[0], base, remainder != 0);
409 if (remainder == 0 || err != len)
Chuck Levera246b012005-08-11 16:25:23 -0400410 goto out;
Jason Baronf279cd02014-09-24 18:08:00 +0000411 *sent_p += err;
Chuck Levera246b012005-08-11 16:25:23 -0400412 base = 0;
413 } else
Trond Myklebust24c56842006-10-17 15:06:22 -0400414 base -= xdr->head[0].iov_len;
Chuck Levera246b012005-08-11 16:25:23 -0400415
Trond Myklebust24c56842006-10-17 15:06:22 -0400416 if (base < xdr->page_len) {
417 unsigned int len = xdr->page_len - base;
418 remainder -= len;
Jason Baronf279cd02014-09-24 18:08:00 +0000419 err = xs_send_pagedata(sock, xdr, base, remainder != 0, zerocopy, &sent);
420 *sent_p += sent;
421 if (remainder == 0 || sent != len)
Chuck Levera246b012005-08-11 16:25:23 -0400422 goto out;
423 base = 0;
Trond Myklebust24c56842006-10-17 15:06:22 -0400424 } else
425 base -= xdr->page_len;
426
427 if (base >= xdr->tail[0].iov_len)
Jason Baronf279cd02014-09-24 18:08:00 +0000428 return 0;
Trond Myklebust24c56842006-10-17 15:06:22 -0400429 err = xs_send_kvec(sock, NULL, 0, &xdr->tail[0], base, 0);
Chuck Levera246b012005-08-11 16:25:23 -0400430out:
Jason Baronf279cd02014-09-24 18:08:00 +0000431 if (err > 0) {
432 *sent_p += err;
433 err = 0;
434 }
435 return err;
Chuck Levera246b012005-08-11 16:25:23 -0400436}
437
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400438static void xs_nospace_callback(struct rpc_task *task)
439{
440 struct sock_xprt *transport = container_of(task->tk_rqstp->rq_xprt, struct sock_xprt, xprt);
441
442 transport->inet->sk_write_pending--;
443 clear_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags);
444}
445
Chuck Lever9903cd12005-08-11 16:25:26 -0400446/**
Chuck Lever262965f2005-08-11 16:25:56 -0400447 * xs_nospace - place task on wait queue if transmit was incomplete
448 * @task: task to put to sleep
Chuck Lever9903cd12005-08-11 16:25:26 -0400449 *
Chuck Levera246b012005-08-11 16:25:23 -0400450 */
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400451static int xs_nospace(struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -0400452{
Chuck Lever262965f2005-08-11 16:25:56 -0400453 struct rpc_rqst *req = task->tk_rqstp;
454 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500455 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebust06ea0bf2014-02-11 09:15:54 -0500456 struct sock *sk = transport->inet;
Trond Myklebust24ca9a82011-11-22 14:44:28 +0200457 int ret = -EAGAIN;
Chuck Levera246b012005-08-11 16:25:23 -0400458
Chuck Lever46121cf2007-01-31 12:14:08 -0500459 dprintk("RPC: %5u xmit incomplete (%u left of %u)\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400460 task->tk_pid, req->rq_slen - req->rq_bytes_sent,
461 req->rq_slen);
462
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400463 /* Protect against races with write_space */
464 spin_lock_bh(&xprt->transport_lock);
Chuck Lever262965f2005-08-11 16:25:56 -0400465
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400466 /* Don't race with disconnect */
467 if (xprt_connected(xprt)) {
468 if (test_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags)) {
469 /*
470 * Notify TCP that we're limited by the application
471 * window size
472 */
473 set_bit(SOCK_NOSPACE, &transport->sock->flags);
Trond Myklebust06ea0bf2014-02-11 09:15:54 -0500474 sk->sk_write_pending++;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400475 /* ...and wait for more buffer space */
476 xprt_wait_for_buffer_space(task, xs_nospace_callback);
477 }
478 } else {
479 clear_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags);
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400480 ret = -ENOTCONN;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400481 }
Chuck Lever262965f2005-08-11 16:25:56 -0400482
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400483 spin_unlock_bh(&xprt->transport_lock);
Trond Myklebust06ea0bf2014-02-11 09:15:54 -0500484
485 /* Race breaker in case memory is freed before above code is called */
486 sk->sk_write_space(sk);
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400487 return ret;
Chuck Lever262965f2005-08-11 16:25:56 -0400488}
489
Chuck Lever61677ee2011-05-09 15:22:34 -0400490/*
491 * Construct a stream transport record marker in @buf.
492 */
493static inline void xs_encode_stream_record_marker(struct xdr_buf *buf)
494{
495 u32 reclen = buf->len - sizeof(rpc_fraghdr);
496 rpc_fraghdr *base = buf->head[0].iov_base;
497 *base = cpu_to_be32(RPC_LAST_STREAM_FRAGMENT | reclen);
498}
499
Chuck Lever262965f2005-08-11 16:25:56 -0400500/**
Chuck Lever176e21e2011-05-09 15:22:44 -0400501 * xs_local_send_request - write an RPC request to an AF_LOCAL socket
502 * @task: RPC task that manages the state of an RPC request
503 *
504 * Return values:
505 * 0: The request has been sent
506 * EAGAIN: The socket was blocked, please call again later to
507 * complete the request
508 * ENOTCONN: Caller needs to invoke connect logic then call again
509 * other: Some other error occured, the request was not sent
510 */
511static int xs_local_send_request(struct rpc_task *task)
512{
513 struct rpc_rqst *req = task->tk_rqstp;
514 struct rpc_xprt *xprt = req->rq_xprt;
515 struct sock_xprt *transport =
516 container_of(xprt, struct sock_xprt, xprt);
517 struct xdr_buf *xdr = &req->rq_snd_buf;
518 int status;
Jason Baronf279cd02014-09-24 18:08:00 +0000519 int sent = 0;
Chuck Lever176e21e2011-05-09 15:22:44 -0400520
521 xs_encode_stream_record_marker(&req->rq_snd_buf);
522
523 xs_pktdump("packet data:",
524 req->rq_svec->iov_base, req->rq_svec->iov_len);
525
Jason Baronf279cd02014-09-24 18:08:00 +0000526 status = xs_sendpages(transport->sock, NULL, 0, xdr, req->rq_bytes_sent,
527 true, &sent);
Chuck Lever176e21e2011-05-09 15:22:44 -0400528 dprintk("RPC: %s(%u) = %d\n",
529 __func__, xdr->len - req->rq_bytes_sent, status);
Jason Baronf279cd02014-09-24 18:08:00 +0000530 if (likely(sent > 0) || status == 0) {
531 req->rq_bytes_sent += sent;
532 req->rq_xmit_bytes_sent += sent;
Chuck Lever176e21e2011-05-09 15:22:44 -0400533 if (likely(req->rq_bytes_sent >= req->rq_slen)) {
534 req->rq_bytes_sent = 0;
535 return 0;
536 }
537 status = -EAGAIN;
538 }
539
540 switch (status) {
Trond Myklebust3601c4a2014-06-30 13:42:19 -0400541 case -ENOBUFS:
Chuck Lever176e21e2011-05-09 15:22:44 -0400542 case -EAGAIN:
543 status = xs_nospace(task);
544 break;
545 default:
546 dprintk("RPC: sendmsg returned unrecognized error %d\n",
547 -status);
548 case -EPIPE:
549 xs_close(xprt);
550 status = -ENOTCONN;
551 }
552
553 return status;
554}
555
556/**
Chuck Lever262965f2005-08-11 16:25:56 -0400557 * xs_udp_send_request - write an RPC request to a UDP socket
558 * @task: address of RPC task that manages the state of an RPC request
559 *
560 * Return values:
561 * 0: The request has been sent
562 * EAGAIN: The socket was blocked, please call again later to
563 * complete the request
564 * ENOTCONN: Caller needs to invoke connect logic then call again
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300565 * other: Some other error occurred, the request was not sent
Chuck Lever262965f2005-08-11 16:25:56 -0400566 */
567static int xs_udp_send_request(struct rpc_task *task)
568{
569 struct rpc_rqst *req = task->tk_rqstp;
570 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500571 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262965f2005-08-11 16:25:56 -0400572 struct xdr_buf *xdr = &req->rq_snd_buf;
Jason Baronf279cd02014-09-24 18:08:00 +0000573 int sent = 0;
Chuck Lever262965f2005-08-11 16:25:56 -0400574 int status;
Chuck Levera246b012005-08-11 16:25:23 -0400575
Chuck Lever9903cd12005-08-11 16:25:26 -0400576 xs_pktdump("packet data:",
Chuck Levera246b012005-08-11 16:25:23 -0400577 req->rq_svec->iov_base,
578 req->rq_svec->iov_len);
579
Trond Myklebust01d37c42009-03-11 14:09:39 -0400580 if (!xprt_bound(xprt))
581 return -ENOTCONN;
Jason Baronf279cd02014-09-24 18:08:00 +0000582 status = xs_sendpages(transport->sock, xs_addr(xprt), xprt->addrlen,
583 xdr, req->rq_bytes_sent, true, &sent);
Chuck Levera246b012005-08-11 16:25:23 -0400584
Chuck Lever46121cf2007-01-31 12:14:08 -0500585 dprintk("RPC: xs_udp_send_request(%u) = %d\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400586 xdr->len - req->rq_bytes_sent, status);
Chuck Levera246b012005-08-11 16:25:23 -0400587
Jason Baron3dedbb52014-09-24 18:08:04 +0000588 /* firewall is blocking us, don't return -EAGAIN or we end up looping */
589 if (status == -EPERM)
590 goto process_status;
591
Jason Baronf279cd02014-09-24 18:08:00 +0000592 if (sent > 0 || status == 0) {
593 req->rq_xmit_bytes_sent += sent;
594 if (sent >= req->rq_slen)
Trond Myklebust21997002007-10-01 11:43:37 -0400595 return 0;
596 /* Still some bytes left; set up for a retry later. */
Chuck Lever262965f2005-08-11 16:25:56 -0400597 status = -EAGAIN;
Trond Myklebust21997002007-10-01 11:43:37 -0400598 }
Chuck Levera246b012005-08-11 16:25:23 -0400599
Jason Baron3dedbb52014-09-24 18:08:04 +0000600process_status:
Chuck Lever262965f2005-08-11 16:25:56 -0400601 switch (status) {
Trond Myklebustfba91af2009-03-11 14:06:41 -0400602 case -ENOTSOCK:
603 status = -ENOTCONN;
604 /* Should we call xs_close() here? */
605 break;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400606 case -EAGAIN:
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400607 status = xs_nospace(task);
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400608 break;
Trond Myklebustc8485e42009-03-11 14:37:59 -0400609 default:
610 dprintk("RPC: sendmsg returned unrecognized error %d\n",
611 -status);
Chuck Lever262965f2005-08-11 16:25:56 -0400612 case -ENETUNREACH:
Trond Myklebust3601c4a2014-06-30 13:42:19 -0400613 case -ENOBUFS:
Chuck Lever262965f2005-08-11 16:25:56 -0400614 case -EPIPE:
Chuck Levera246b012005-08-11 16:25:23 -0400615 case -ECONNREFUSED:
Jason Baron3dedbb52014-09-24 18:08:04 +0000616 case -EPERM:
Chuck Levera246b012005-08-11 16:25:23 -0400617 /* When the server has died, an ICMP port unreachable message
Chuck Lever9903cd12005-08-11 16:25:26 -0400618 * prompts ECONNREFUSED. */
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400619 clear_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags);
Chuck Levera246b012005-08-11 16:25:23 -0400620 }
Bian Naimeng5fe46e92010-03-08 14:49:01 +0800621
Chuck Lever262965f2005-08-11 16:25:56 -0400622 return status;
Chuck Levera246b012005-08-11 16:25:23 -0400623}
624
Trond Myklebuste06799f2007-11-05 15:44:12 -0500625/**
626 * xs_tcp_shutdown - gracefully shut down a TCP socket
627 * @xprt: transport
628 *
629 * Initiates a graceful shutdown of the TCP socket by calling the
Trond Myklebust0efeac22015-02-09 09:26:39 -0500630 * equivalent of shutdown(SHUT_RDWR);
Trond Myklebuste06799f2007-11-05 15:44:12 -0500631 */
632static void xs_tcp_shutdown(struct rpc_xprt *xprt)
633{
634 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
635 struct socket *sock = transport->sock;
636
Trond Myklebust40b5ea02013-09-04 12:16:23 -0400637 if (sock != NULL) {
Trond Myklebust0efeac22015-02-09 09:26:39 -0500638 kernel_sock_shutdown(sock, SHUT_RDWR);
Trond Myklebust40b5ea02013-09-04 12:16:23 -0400639 trace_rpc_socket_shutdown(xprt, sock);
640 }
Trond Myklebuste06799f2007-11-05 15:44:12 -0500641}
642
Chuck Lever9903cd12005-08-11 16:25:26 -0400643/**
Chuck Lever262965f2005-08-11 16:25:56 -0400644 * xs_tcp_send_request - write an RPC request to a TCP socket
Chuck Lever9903cd12005-08-11 16:25:26 -0400645 * @task: address of RPC task that manages the state of an RPC request
646 *
647 * Return values:
Chuck Lever262965f2005-08-11 16:25:56 -0400648 * 0: The request has been sent
649 * EAGAIN: The socket was blocked, please call again later to
650 * complete the request
651 * ENOTCONN: Caller needs to invoke connect logic then call again
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300652 * other: Some other error occurred, the request was not sent
Chuck Lever9903cd12005-08-11 16:25:26 -0400653 *
654 * XXX: In the case of soft timeouts, should we eventually give up
Chuck Lever262965f2005-08-11 16:25:56 -0400655 * if sendmsg is not able to make progress?
Chuck Lever9903cd12005-08-11 16:25:26 -0400656 */
Chuck Lever262965f2005-08-11 16:25:56 -0400657static int xs_tcp_send_request(struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -0400658{
659 struct rpc_rqst *req = task->tk_rqstp;
660 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500661 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262965f2005-08-11 16:25:56 -0400662 struct xdr_buf *xdr = &req->rq_snd_buf;
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500663 bool zerocopy = true;
Chuck Leverb595bb12007-08-06 11:56:42 -0400664 int status;
Jason Baronf279cd02014-09-24 18:08:00 +0000665 int sent;
Chuck Levera246b012005-08-11 16:25:23 -0400666
Chuck Lever61677ee2011-05-09 15:22:34 -0400667 xs_encode_stream_record_marker(&req->rq_snd_buf);
Chuck Levera246b012005-08-11 16:25:23 -0400668
Chuck Lever262965f2005-08-11 16:25:56 -0400669 xs_pktdump("packet data:",
670 req->rq_svec->iov_base,
671 req->rq_svec->iov_len);
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500672 /* Don't use zero copy if this is a resend. If the RPC call
673 * completes while the socket holds a reference to the pages,
674 * then we may end up resending corrupted data.
675 */
676 if (task->tk_flags & RPC_TASK_SENT)
677 zerocopy = false;
Chuck Levera246b012005-08-11 16:25:23 -0400678
679 /* Continue transmitting the packet/record. We must be careful
680 * to cope with writespace callbacks arriving _after_ we have
Chuck Lever262965f2005-08-11 16:25:56 -0400681 * called sendmsg(). */
Chuck Levera246b012005-08-11 16:25:23 -0400682 while (1) {
Jason Baronf279cd02014-09-24 18:08:00 +0000683 sent = 0;
684 status = xs_sendpages(transport->sock, NULL, 0, xdr,
685 req->rq_bytes_sent, zerocopy, &sent);
Chuck Levera246b012005-08-11 16:25:23 -0400686
Chuck Lever46121cf2007-01-31 12:14:08 -0500687 dprintk("RPC: xs_tcp_send_request(%u) = %d\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400688 xdr->len - req->rq_bytes_sent, status);
689
Jason Baronf279cd02014-09-24 18:08:00 +0000690 if (unlikely(sent == 0 && status < 0))
Chuck Levera246b012005-08-11 16:25:23 -0400691 break;
692
Chuck Lever262965f2005-08-11 16:25:56 -0400693 /* If we've sent the entire packet, immediately
694 * reset the count of bytes sent. */
Jason Baronf279cd02014-09-24 18:08:00 +0000695 req->rq_bytes_sent += sent;
696 req->rq_xmit_bytes_sent += sent;
Chuck Lever262965f2005-08-11 16:25:56 -0400697 if (likely(req->rq_bytes_sent >= req->rq_slen)) {
698 req->rq_bytes_sent = 0;
699 return 0;
Chuck Levera246b012005-08-11 16:25:23 -0400700 }
701
Jason Baronf279cd02014-09-24 18:08:00 +0000702 if (sent != 0)
Trond Myklebust06b4b682008-04-16 16:51:38 -0400703 continue;
Chuck Levera246b012005-08-11 16:25:23 -0400704 status = -EAGAIN;
Trond Myklebust06b4b682008-04-16 16:51:38 -0400705 break;
Chuck Levera246b012005-08-11 16:25:23 -0400706 }
707
Chuck Lever262965f2005-08-11 16:25:56 -0400708 switch (status) {
Trond Myklebustfba91af2009-03-11 14:06:41 -0400709 case -ENOTSOCK:
710 status = -ENOTCONN;
711 /* Should we call xs_close() here? */
712 break;
Trond Myklebust3601c4a2014-06-30 13:42:19 -0400713 case -ENOBUFS:
Chuck Lever262965f2005-08-11 16:25:56 -0400714 case -EAGAIN:
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400715 status = xs_nospace(task);
Chuck Lever262965f2005-08-11 16:25:56 -0400716 break;
717 default:
Chuck Lever46121cf2007-01-31 12:14:08 -0500718 dprintk("RPC: sendmsg returned unrecognized error %d\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400719 -status);
Chuck Lever262965f2005-08-11 16:25:56 -0400720 case -ECONNRESET:
Chuck Lever262965f2005-08-11 16:25:56 -0400721 case -ECONNREFUSED:
722 case -ENOTCONN:
Trond Myklebust3913c782015-02-08 21:44:04 -0500723 case -EADDRINUSE:
Trond Myklebustb9d2bb22012-10-23 11:40:02 -0400724 case -EPIPE:
Chuck Lever262965f2005-08-11 16:25:56 -0400725 clear_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags);
Chuck Levera246b012005-08-11 16:25:23 -0400726 }
Bian Naimeng5fe46e92010-03-08 14:49:01 +0800727
Chuck Levera246b012005-08-11 16:25:23 -0400728 return status;
729}
730
Chuck Lever9903cd12005-08-11 16:25:26 -0400731/**
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400732 * xs_tcp_release_xprt - clean up after a tcp transmission
733 * @xprt: transport
734 * @task: rpc task
735 *
736 * This cleans up if an error causes us to abort the transmission of a request.
737 * In this case, the socket may need to be reset in order to avoid confusing
738 * the server.
739 */
740static void xs_tcp_release_xprt(struct rpc_xprt *xprt, struct rpc_task *task)
741{
742 struct rpc_rqst *req;
743
744 if (task != xprt->snd_task)
745 return;
746 if (task == NULL)
747 goto out_release;
748 req = task->tk_rqstp;
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400749 if (req == NULL)
750 goto out_release;
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400751 if (req->rq_bytes_sent == 0)
752 goto out_release;
753 if (req->rq_bytes_sent == req->rq_snd_buf.len)
754 goto out_release;
Trond Myklebusta4f08352013-01-08 09:10:21 -0500755 set_bit(XPRT_CLOSE_WAIT, &xprt->state);
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400756out_release:
757 xprt_release_xprt(xprt, task);
758}
759
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400760static void xs_save_old_callbacks(struct sock_xprt *transport, struct sock *sk)
761{
762 transport->old_data_ready = sk->sk_data_ready;
763 transport->old_state_change = sk->sk_state_change;
764 transport->old_write_space = sk->sk_write_space;
Trond Myklebust21180712013-12-31 13:22:59 -0500765 transport->old_error_report = sk->sk_error_report;
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400766}
767
768static void xs_restore_old_callbacks(struct sock_xprt *transport, struct sock *sk)
769{
770 sk->sk_data_ready = transport->old_data_ready;
771 sk->sk_state_change = transport->old_state_change;
772 sk->sk_write_space = transport->old_write_space;
Trond Myklebust21180712013-12-31 13:22:59 -0500773 sk->sk_error_report = transport->old_error_report;
774}
775
Trond Myklebustb70ae912015-02-09 09:41:32 -0500776static void xs_sock_reset_connection_flags(struct rpc_xprt *xprt)
777{
778 smp_mb__before_atomic();
779 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
780 clear_bit(XPRT_CLOSING, &xprt->state);
781 smp_mb__after_atomic();
782}
783
784static void xs_sock_mark_closed(struct rpc_xprt *xprt)
785{
786 xs_sock_reset_connection_flags(xprt);
787 /* Mark transport as closed and wake up all pending tasks */
788 xprt_disconnect_done(xprt);
789}
790
Trond Myklebust21180712013-12-31 13:22:59 -0500791/**
792 * xs_error_report - callback to handle TCP socket state errors
793 * @sk: socket
794 *
795 * Note: we don't call sock_error() since there may be a rpc_task
796 * using the socket, and so we don't want to clear sk->sk_err.
797 */
798static void xs_error_report(struct sock *sk)
799{
800 struct rpc_xprt *xprt;
801 int err;
802
803 read_lock_bh(&sk->sk_callback_lock);
804 if (!(xprt = xprt_from_sock(sk)))
805 goto out;
806
807 err = -sk->sk_err;
808 if (err == 0)
809 goto out;
Trond Myklebustb70ae912015-02-09 09:41:32 -0500810 /* Is this a reset event? */
811 if (sk->sk_state == TCP_CLOSE)
812 xs_sock_mark_closed(xprt);
Trond Myklebust21180712013-12-31 13:22:59 -0500813 dprintk("RPC: xs_error_report client %p, error=%d...\n",
814 xprt, -err);
Trond Myklebuste8353c762013-12-31 13:39:22 -0500815 trace_rpc_socket_error(xprt, sk->sk_socket, err);
Trond Myklebust21180712013-12-31 13:22:59 -0500816 xprt_wake_pending_tasks(xprt, err);
817 out:
818 read_unlock_bh(&sk->sk_callback_lock);
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400819}
820
Chuck Leverfe315e762009-03-11 14:10:21 -0400821static void xs_reset_transport(struct sock_xprt *transport)
Chuck Levera246b012005-08-11 16:25:23 -0400822{
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500823 struct socket *sock = transport->sock;
824 struct sock *sk = transport->inet;
Trond Myklebust6cc7e902015-02-08 18:35:25 -0500825 struct rpc_xprt *xprt = &transport->xprt;
Chuck Levera246b012005-08-11 16:25:23 -0400826
Chuck Leverfe315e762009-03-11 14:10:21 -0400827 if (sk == NULL)
828 return;
Chuck Lever9903cd12005-08-11 16:25:26 -0400829
Jeff Layton264d1df2015-06-03 16:14:27 -0400830 if (atomic_read(&transport->xprt.swapper))
831 sk_clear_memalloc(sk);
832
Chuck Levera246b012005-08-11 16:25:23 -0400833 write_lock_bh(&sk->sk_callback_lock);
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500834 transport->inet = NULL;
835 transport->sock = NULL;
Chuck Levera246b012005-08-11 16:25:23 -0400836
Chuck Lever9903cd12005-08-11 16:25:26 -0400837 sk->sk_user_data = NULL;
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400838
839 xs_restore_old_callbacks(transport, sk);
Chuck Levera246b012005-08-11 16:25:23 -0400840 write_unlock_bh(&sk->sk_callback_lock);
Trond Myklebust6cc7e902015-02-08 18:35:25 -0500841 xs_sock_reset_connection_flags(xprt);
Chuck Levera246b012005-08-11 16:25:23 -0400842
Trond Myklebust6cc7e902015-02-08 18:35:25 -0500843 trace_rpc_socket_close(xprt, sock);
Chuck Levera246b012005-08-11 16:25:23 -0400844 sock_release(sock);
Chuck Leverfe315e762009-03-11 14:10:21 -0400845}
846
847/**
848 * xs_close - close a socket
849 * @xprt: transport
850 *
851 * This is used when all requests are complete; ie, no DRC state remains
852 * on the server we want to save.
Trond Myklebustf75e6742009-04-21 17:18:20 -0400853 *
854 * The caller _must_ be holding XPRT_LOCKED in order to avoid issues with
855 * xs_reset_transport() zeroing the socket from underneath a writer.
Chuck Leverfe315e762009-03-11 14:10:21 -0400856 */
857static void xs_close(struct rpc_xprt *xprt)
858{
859 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
860
861 dprintk("RPC: xs_close xprt %p\n", xprt);
862
863 xs_reset_transport(transport);
Neil Brown61d0a8e2009-09-23 14:36:37 -0400864 xprt->reestablish_timeout = 0;
Chuck Leverfe315e762009-03-11 14:10:21 -0400865
Trond Myklebust62da3b22007-11-06 18:44:20 -0500866 xprt_disconnect_done(xprt);
Chuck Levera246b012005-08-11 16:25:23 -0400867}
868
Kinglong Mee315f3812014-03-24 11:07:22 +0800869static void xs_xprt_free(struct rpc_xprt *xprt)
870{
871 xs_free_peer_addresses(xprt);
872 xprt_free(xprt);
873}
874
Chuck Lever9903cd12005-08-11 16:25:26 -0400875/**
876 * xs_destroy - prepare to shutdown a transport
877 * @xprt: doomed transport
878 *
879 */
880static void xs_destroy(struct rpc_xprt *xprt)
Chuck Levera246b012005-08-11 16:25:23 -0400881{
Chuck Lever46121cf2007-01-31 12:14:08 -0500882 dprintk("RPC: xs_destroy xprt %p\n", xprt);
Chuck Lever9903cd12005-08-11 16:25:26 -0400883
Trond Myklebusta1311d82013-10-31 09:18:49 -0400884 xs_close(xprt);
Kinglong Mee315f3812014-03-24 11:07:22 +0800885 xs_xprt_free(xprt);
Trond Myklebusta1311d82013-10-31 09:18:49 -0400886 module_put(THIS_MODULE);
Chuck Levera246b012005-08-11 16:25:23 -0400887}
888
Chuck Lever176e21e2011-05-09 15:22:44 -0400889static int xs_local_copy_to_xdr(struct xdr_buf *xdr, struct sk_buff *skb)
890{
891 struct xdr_skb_reader desc = {
892 .skb = skb,
893 .offset = sizeof(rpc_fraghdr),
894 .count = skb->len - sizeof(rpc_fraghdr),
895 };
896
897 if (xdr_partial_copy_from_skb(xdr, 0, &desc, xdr_skb_read_bits) < 0)
898 return -1;
899 if (desc.count)
900 return -1;
901 return 0;
902}
903
904/**
905 * xs_local_data_ready - "data ready" callback for AF_LOCAL sockets
906 * @sk: socket with data to read
Chuck Lever176e21e2011-05-09 15:22:44 -0400907 *
908 * Currently this assumes we can read the whole reply in a single gulp.
909 */
David S. Miller676d2362014-04-11 16:15:36 -0400910static void xs_local_data_ready(struct sock *sk)
Chuck Lever176e21e2011-05-09 15:22:44 -0400911{
912 struct rpc_task *task;
913 struct rpc_xprt *xprt;
914 struct rpc_rqst *rovr;
915 struct sk_buff *skb;
916 int err, repsize, copied;
917 u32 _xid;
918 __be32 *xp;
919
920 read_lock_bh(&sk->sk_callback_lock);
921 dprintk("RPC: %s...\n", __func__);
922 xprt = xprt_from_sock(sk);
923 if (xprt == NULL)
924 goto out;
925
926 skb = skb_recv_datagram(sk, 0, 1, &err);
927 if (skb == NULL)
928 goto out;
929
Chuck Lever176e21e2011-05-09 15:22:44 -0400930 repsize = skb->len - sizeof(rpc_fraghdr);
931 if (repsize < 4) {
932 dprintk("RPC: impossible RPC reply size %d\n", repsize);
933 goto dropit;
934 }
935
936 /* Copy the XID from the skb... */
937 xp = skb_header_pointer(skb, sizeof(rpc_fraghdr), sizeof(_xid), &_xid);
938 if (xp == NULL)
939 goto dropit;
940
941 /* Look up and lock the request corresponding to the given XID */
942 spin_lock(&xprt->transport_lock);
943 rovr = xprt_lookup_rqst(xprt, *xp);
944 if (!rovr)
945 goto out_unlock;
946 task = rovr->rq_task;
947
948 copied = rovr->rq_private_buf.buflen;
949 if (copied > repsize)
950 copied = repsize;
951
952 if (xs_local_copy_to_xdr(&rovr->rq_private_buf, skb)) {
953 dprintk("RPC: sk_buff copy failed\n");
954 goto out_unlock;
955 }
956
957 xprt_complete_rqst(task, copied);
958
959 out_unlock:
960 spin_unlock(&xprt->transport_lock);
961 dropit:
962 skb_free_datagram(sk, skb);
963 out:
964 read_unlock_bh(&sk->sk_callback_lock);
965}
966
Chuck Lever9903cd12005-08-11 16:25:26 -0400967/**
968 * xs_udp_data_ready - "data ready" callback for UDP sockets
969 * @sk: socket with data to read
Chuck Lever9903cd12005-08-11 16:25:26 -0400970 *
971 */
David S. Miller676d2362014-04-11 16:15:36 -0400972static void xs_udp_data_ready(struct sock *sk)
Chuck Lever9903cd12005-08-11 16:25:26 -0400973{
974 struct rpc_task *task;
975 struct rpc_xprt *xprt;
Chuck Levera246b012005-08-11 16:25:23 -0400976 struct rpc_rqst *rovr;
Chuck Lever9903cd12005-08-11 16:25:26 -0400977 struct sk_buff *skb;
Chuck Levera246b012005-08-11 16:25:23 -0400978 int err, repsize, copied;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700979 u32 _xid;
980 __be32 *xp;
Chuck Levera246b012005-08-11 16:25:23 -0400981
Eric Dumazetf064af12010-09-22 12:43:39 +0000982 read_lock_bh(&sk->sk_callback_lock);
Chuck Lever46121cf2007-01-31 12:14:08 -0500983 dprintk("RPC: xs_udp_data_ready...\n");
Chuck Lever9903cd12005-08-11 16:25:26 -0400984 if (!(xprt = xprt_from_sock(sk)))
Chuck Levera246b012005-08-11 16:25:23 -0400985 goto out;
Chuck Levera246b012005-08-11 16:25:23 -0400986
987 if ((skb = skb_recv_datagram(sk, 0, 1, &err)) == NULL)
988 goto out;
989
Chuck Levera246b012005-08-11 16:25:23 -0400990 repsize = skb->len - sizeof(struct udphdr);
991 if (repsize < 4) {
Chuck Lever46121cf2007-01-31 12:14:08 -0500992 dprintk("RPC: impossible RPC reply size %d!\n", repsize);
Chuck Levera246b012005-08-11 16:25:23 -0400993 goto dropit;
994 }
995
996 /* Copy the XID from the skb... */
997 xp = skb_header_pointer(skb, sizeof(struct udphdr),
998 sizeof(_xid), &_xid);
999 if (xp == NULL)
1000 goto dropit;
1001
1002 /* Look up and lock the request corresponding to the given XID */
Chuck Lever4a0f8c02005-08-11 16:25:32 -04001003 spin_lock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001004 rovr = xprt_lookup_rqst(xprt, *xp);
1005 if (!rovr)
1006 goto out_unlock;
1007 task = rovr->rq_task;
1008
Chuck Levera246b012005-08-11 16:25:23 -04001009 if ((copied = rovr->rq_private_buf.buflen) > repsize)
1010 copied = repsize;
1011
1012 /* Suck it into the iovec, verify checksum if not done by hw. */
Herbert Xu1781f7f2007-12-11 11:30:32 -08001013 if (csum_partial_copy_to_xdr(&rovr->rq_private_buf, skb)) {
1014 UDPX_INC_STATS_BH(sk, UDP_MIB_INERRORS);
Chuck Levera246b012005-08-11 16:25:23 -04001015 goto out_unlock;
Herbert Xu1781f7f2007-12-11 11:30:32 -08001016 }
1017
1018 UDPX_INC_STATS_BH(sk, UDP_MIB_INDATAGRAMS);
Chuck Levera246b012005-08-11 16:25:23 -04001019
Trond Myklebust6a24dfb2013-01-08 09:48:15 -05001020 xprt_adjust_cwnd(xprt, task, copied);
Chuck Lever1570c1e2005-08-25 16:25:52 -07001021 xprt_complete_rqst(task, copied);
Chuck Levera246b012005-08-11 16:25:23 -04001022
1023 out_unlock:
Chuck Lever4a0f8c02005-08-11 16:25:32 -04001024 spin_unlock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001025 dropit:
1026 skb_free_datagram(sk, skb);
1027 out:
Eric Dumazetf064af12010-09-22 12:43:39 +00001028 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001029}
1030
Trond Myklebusta519fc72012-09-12 16:49:15 -04001031/*
1032 * Helper function to force a TCP close if the server is sending
1033 * junk and/or it has put us in CLOSE_WAIT
1034 */
1035static void xs_tcp_force_close(struct rpc_xprt *xprt)
1036{
Trond Myklebusta519fc72012-09-12 16:49:15 -04001037 xprt_force_disconnect(xprt);
1038}
1039
Chuck Leverdd456472006-12-05 16:35:44 -05001040static inline void xs_tcp_read_fraghdr(struct rpc_xprt *xprt, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001041{
Chuck Lever51971132006-12-05 16:35:19 -05001042 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001043 size_t len, used;
1044 char *p;
1045
Chuck Lever51971132006-12-05 16:35:19 -05001046 p = ((char *) &transport->tcp_fraghdr) + transport->tcp_offset;
1047 len = sizeof(transport->tcp_fraghdr) - transport->tcp_offset;
Chuck Lever9d292312006-12-05 16:35:41 -05001048 used = xdr_skb_read_bits(desc, p, len);
Chuck Lever51971132006-12-05 16:35:19 -05001049 transport->tcp_offset += used;
Chuck Levera246b012005-08-11 16:25:23 -04001050 if (used != len)
1051 return;
Chuck Lever808012f2005-08-25 16:25:49 -07001052
Chuck Lever51971132006-12-05 16:35:19 -05001053 transport->tcp_reclen = ntohl(transport->tcp_fraghdr);
1054 if (transport->tcp_reclen & RPC_LAST_STREAM_FRAGMENT)
Chuck Levere136d092006-12-05 16:35:23 -05001055 transport->tcp_flags |= TCP_RCV_LAST_FRAG;
Chuck Levera246b012005-08-11 16:25:23 -04001056 else
Chuck Levere136d092006-12-05 16:35:23 -05001057 transport->tcp_flags &= ~TCP_RCV_LAST_FRAG;
Chuck Lever51971132006-12-05 16:35:19 -05001058 transport->tcp_reclen &= RPC_FRAGMENT_SIZE_MASK;
Chuck Lever808012f2005-08-25 16:25:49 -07001059
Chuck Levere136d092006-12-05 16:35:23 -05001060 transport->tcp_flags &= ~TCP_RCV_COPY_FRAGHDR;
Chuck Lever51971132006-12-05 16:35:19 -05001061 transport->tcp_offset = 0;
Chuck Lever808012f2005-08-25 16:25:49 -07001062
Chuck Levera246b012005-08-11 16:25:23 -04001063 /* Sanity check of the record length */
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001064 if (unlikely(transport->tcp_reclen < 8)) {
Chuck Lever46121cf2007-01-31 12:14:08 -05001065 dprintk("RPC: invalid TCP record fragment length\n");
Trond Myklebusta519fc72012-09-12 16:49:15 -04001066 xs_tcp_force_close(xprt);
Chuck Lever9903cd12005-08-11 16:25:26 -04001067 return;
Chuck Levera246b012005-08-11 16:25:23 -04001068 }
Chuck Lever46121cf2007-01-31 12:14:08 -05001069 dprintk("RPC: reading TCP record fragment of length %d\n",
Chuck Lever51971132006-12-05 16:35:19 -05001070 transport->tcp_reclen);
Chuck Levera246b012005-08-11 16:25:23 -04001071}
1072
Chuck Lever51971132006-12-05 16:35:19 -05001073static void xs_tcp_check_fraghdr(struct sock_xprt *transport)
Chuck Levera246b012005-08-11 16:25:23 -04001074{
Chuck Lever51971132006-12-05 16:35:19 -05001075 if (transport->tcp_offset == transport->tcp_reclen) {
Chuck Levere136d092006-12-05 16:35:23 -05001076 transport->tcp_flags |= TCP_RCV_COPY_FRAGHDR;
Chuck Lever51971132006-12-05 16:35:19 -05001077 transport->tcp_offset = 0;
Chuck Levere136d092006-12-05 16:35:23 -05001078 if (transport->tcp_flags & TCP_RCV_LAST_FRAG) {
1079 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
1080 transport->tcp_flags |= TCP_RCV_COPY_XID;
Chuck Lever51971132006-12-05 16:35:19 -05001081 transport->tcp_copied = 0;
Chuck Levera246b012005-08-11 16:25:23 -04001082 }
1083 }
1084}
1085
Chuck Leverdd456472006-12-05 16:35:44 -05001086static inline void xs_tcp_read_xid(struct sock_xprt *transport, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001087{
1088 size_t len, used;
1089 char *p;
1090
Chuck Lever51971132006-12-05 16:35:19 -05001091 len = sizeof(transport->tcp_xid) - transport->tcp_offset;
Chuck Lever46121cf2007-01-31 12:14:08 -05001092 dprintk("RPC: reading XID (%Zu bytes)\n", len);
Chuck Lever51971132006-12-05 16:35:19 -05001093 p = ((char *) &transport->tcp_xid) + transport->tcp_offset;
Chuck Lever9d292312006-12-05 16:35:41 -05001094 used = xdr_skb_read_bits(desc, p, len);
Chuck Lever51971132006-12-05 16:35:19 -05001095 transport->tcp_offset += used;
Chuck Levera246b012005-08-11 16:25:23 -04001096 if (used != len)
1097 return;
Chuck Levere136d092006-12-05 16:35:23 -05001098 transport->tcp_flags &= ~TCP_RCV_COPY_XID;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001099 transport->tcp_flags |= TCP_RCV_READ_CALLDIR;
Chuck Lever51971132006-12-05 16:35:19 -05001100 transport->tcp_copied = 4;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001101 dprintk("RPC: reading %s XID %08x\n",
1102 (transport->tcp_flags & TCP_RPC_REPLY) ? "reply for"
1103 : "request with",
Chuck Lever51971132006-12-05 16:35:19 -05001104 ntohl(transport->tcp_xid));
1105 xs_tcp_check_fraghdr(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001106}
1107
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001108static inline void xs_tcp_read_calldir(struct sock_xprt *transport,
1109 struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001110{
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001111 size_t len, used;
1112 u32 offset;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001113 char *p;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001114
1115 /*
1116 * We want transport->tcp_offset to be 8 at the end of this routine
1117 * (4 bytes for the xid and 4 bytes for the call/reply flag).
1118 * When this function is called for the first time,
1119 * transport->tcp_offset is 4 (after having already read the xid).
1120 */
1121 offset = transport->tcp_offset - sizeof(transport->tcp_xid);
Trond Myklebustb76ce562010-06-16 13:57:32 -04001122 len = sizeof(transport->tcp_calldir) - offset;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001123 dprintk("RPC: reading CALL/REPLY flag (%Zu bytes)\n", len);
Trond Myklebustb76ce562010-06-16 13:57:32 -04001124 p = ((char *) &transport->tcp_calldir) + offset;
1125 used = xdr_skb_read_bits(desc, p, len);
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001126 transport->tcp_offset += used;
1127 if (used != len)
1128 return;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001129 transport->tcp_flags &= ~TCP_RCV_READ_CALLDIR;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001130 /*
1131 * We don't yet have the XDR buffer, so we will write the calldir
1132 * out after we get the buffer from the 'struct rpc_rqst'
1133 */
Trond Myklebustb76ce562010-06-16 13:57:32 -04001134 switch (ntohl(transport->tcp_calldir)) {
1135 case RPC_REPLY:
1136 transport->tcp_flags |= TCP_RCV_COPY_CALLDIR;
1137 transport->tcp_flags |= TCP_RCV_COPY_DATA;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001138 transport->tcp_flags |= TCP_RPC_REPLY;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001139 break;
1140 case RPC_CALL:
1141 transport->tcp_flags |= TCP_RCV_COPY_CALLDIR;
1142 transport->tcp_flags |= TCP_RCV_COPY_DATA;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001143 transport->tcp_flags &= ~TCP_RPC_REPLY;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001144 break;
1145 default:
1146 dprintk("RPC: invalid request message type\n");
Trond Myklebusta519fc72012-09-12 16:49:15 -04001147 xs_tcp_force_close(&transport->xprt);
Trond Myklebustb76ce562010-06-16 13:57:32 -04001148 }
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001149 xs_tcp_check_fraghdr(transport);
1150}
1151
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001152static inline void xs_tcp_read_common(struct rpc_xprt *xprt,
1153 struct xdr_skb_reader *desc,
1154 struct rpc_rqst *req)
Chuck Levera246b012005-08-11 16:25:23 -04001155{
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001156 struct sock_xprt *transport =
1157 container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001158 struct xdr_buf *rcvbuf;
1159 size_t len;
1160 ssize_t r;
1161
Chuck Levera246b012005-08-11 16:25:23 -04001162 rcvbuf = &req->rq_private_buf;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001163
1164 if (transport->tcp_flags & TCP_RCV_COPY_CALLDIR) {
1165 /*
1166 * Save the RPC direction in the XDR buffer
1167 */
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001168 memcpy(rcvbuf->head[0].iov_base + transport->tcp_copied,
Trond Myklebustb76ce562010-06-16 13:57:32 -04001169 &transport->tcp_calldir,
1170 sizeof(transport->tcp_calldir));
1171 transport->tcp_copied += sizeof(transport->tcp_calldir);
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001172 transport->tcp_flags &= ~TCP_RCV_COPY_CALLDIR;
Chuck Levera246b012005-08-11 16:25:23 -04001173 }
1174
Chuck Levera246b012005-08-11 16:25:23 -04001175 len = desc->count;
Chuck Lever51971132006-12-05 16:35:19 -05001176 if (len > transport->tcp_reclen - transport->tcp_offset) {
Chuck Leverdd456472006-12-05 16:35:44 -05001177 struct xdr_skb_reader my_desc;
Chuck Levera246b012005-08-11 16:25:23 -04001178
Chuck Lever51971132006-12-05 16:35:19 -05001179 len = transport->tcp_reclen - transport->tcp_offset;
Chuck Levera246b012005-08-11 16:25:23 -04001180 memcpy(&my_desc, desc, sizeof(my_desc));
1181 my_desc.count = len;
Chuck Lever51971132006-12-05 16:35:19 -05001182 r = xdr_partial_copy_from_skb(rcvbuf, transport->tcp_copied,
Chuck Lever9d292312006-12-05 16:35:41 -05001183 &my_desc, xdr_skb_read_bits);
Chuck Levera246b012005-08-11 16:25:23 -04001184 desc->count -= r;
1185 desc->offset += r;
1186 } else
Chuck Lever51971132006-12-05 16:35:19 -05001187 r = xdr_partial_copy_from_skb(rcvbuf, transport->tcp_copied,
Chuck Lever9d292312006-12-05 16:35:41 -05001188 desc, xdr_skb_read_bits);
Chuck Levera246b012005-08-11 16:25:23 -04001189
1190 if (r > 0) {
Chuck Lever51971132006-12-05 16:35:19 -05001191 transport->tcp_copied += r;
1192 transport->tcp_offset += r;
Chuck Levera246b012005-08-11 16:25:23 -04001193 }
1194 if (r != len) {
1195 /* Error when copying to the receive buffer,
1196 * usually because we weren't able to allocate
1197 * additional buffer pages. All we can do now
Chuck Levere136d092006-12-05 16:35:23 -05001198 * is turn off TCP_RCV_COPY_DATA, so the request
Chuck Levera246b012005-08-11 16:25:23 -04001199 * will not receive any additional updates,
1200 * and time out.
1201 * Any remaining data from this record will
1202 * be discarded.
1203 */
Chuck Levere136d092006-12-05 16:35:23 -05001204 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Lever46121cf2007-01-31 12:14:08 -05001205 dprintk("RPC: XID %08x truncated request\n",
Chuck Lever51971132006-12-05 16:35:19 -05001206 ntohl(transport->tcp_xid));
Chuck Lever46121cf2007-01-31 12:14:08 -05001207 dprintk("RPC: xprt = %p, tcp_copied = %lu, "
1208 "tcp_offset = %u, tcp_reclen = %u\n",
1209 xprt, transport->tcp_copied,
1210 transport->tcp_offset, transport->tcp_reclen);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001211 return;
Chuck Levera246b012005-08-11 16:25:23 -04001212 }
1213
Chuck Lever46121cf2007-01-31 12:14:08 -05001214 dprintk("RPC: XID %08x read %Zd bytes\n",
Chuck Lever51971132006-12-05 16:35:19 -05001215 ntohl(transport->tcp_xid), r);
Chuck Lever46121cf2007-01-31 12:14:08 -05001216 dprintk("RPC: xprt = %p, tcp_copied = %lu, tcp_offset = %u, "
1217 "tcp_reclen = %u\n", xprt, transport->tcp_copied,
1218 transport->tcp_offset, transport->tcp_reclen);
Chuck Levera246b012005-08-11 16:25:23 -04001219
Chuck Lever51971132006-12-05 16:35:19 -05001220 if (transport->tcp_copied == req->rq_private_buf.buflen)
Chuck Levere136d092006-12-05 16:35:23 -05001221 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Lever51971132006-12-05 16:35:19 -05001222 else if (transport->tcp_offset == transport->tcp_reclen) {
Chuck Levere136d092006-12-05 16:35:23 -05001223 if (transport->tcp_flags & TCP_RCV_LAST_FRAG)
1224 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Levera246b012005-08-11 16:25:23 -04001225 }
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001226}
1227
1228/*
1229 * Finds the request corresponding to the RPC xid and invokes the common
1230 * tcp read code to read the data.
1231 */
1232static inline int xs_tcp_read_reply(struct rpc_xprt *xprt,
1233 struct xdr_skb_reader *desc)
1234{
1235 struct sock_xprt *transport =
1236 container_of(xprt, struct sock_xprt, xprt);
1237 struct rpc_rqst *req;
1238
1239 dprintk("RPC: read reply XID %08x\n", ntohl(transport->tcp_xid));
1240
1241 /* Find and lock the request corresponding to this xid */
1242 spin_lock(&xprt->transport_lock);
1243 req = xprt_lookup_rqst(xprt, transport->tcp_xid);
1244 if (!req) {
1245 dprintk("RPC: XID %08x request not found!\n",
1246 ntohl(transport->tcp_xid));
1247 spin_unlock(&xprt->transport_lock);
1248 return -1;
1249 }
1250
1251 xs_tcp_read_common(xprt, desc, req);
1252
Chuck Levere136d092006-12-05 16:35:23 -05001253 if (!(transport->tcp_flags & TCP_RCV_COPY_DATA))
Chuck Lever51971132006-12-05 16:35:19 -05001254 xprt_complete_rqst(req->rq_task, transport->tcp_copied);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001255
Chuck Lever4a0f8c02005-08-11 16:25:32 -04001256 spin_unlock(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001257 return 0;
1258}
1259
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001260#if defined(CONFIG_SUNRPC_BACKCHANNEL)
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001261/*
1262 * Obtains an rpc_rqst previously allocated and invokes the common
1263 * tcp read code to read the data. The result is placed in the callback
1264 * queue.
1265 * If we're unable to obtain the rpc_rqst we schedule the closing of the
1266 * connection and return -1.
1267 */
Trond Myklebust2ea24492014-02-10 11:18:39 -05001268static int xs_tcp_read_callback(struct rpc_xprt *xprt,
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001269 struct xdr_skb_reader *desc)
1270{
1271 struct sock_xprt *transport =
1272 container_of(xprt, struct sock_xprt, xprt);
1273 struct rpc_rqst *req;
1274
Trond Myklebust2ea24492014-02-10 11:18:39 -05001275 /* Look up and lock the request corresponding to the given XID */
1276 spin_lock(&xprt->transport_lock);
1277 req = xprt_lookup_bc_request(xprt, transport->tcp_xid);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001278 if (req == NULL) {
Trond Myklebust2ea24492014-02-10 11:18:39 -05001279 spin_unlock(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001280 printk(KERN_WARNING "Callback slot table overflowed\n");
1281 xprt_force_disconnect(xprt);
1282 return -1;
1283 }
1284
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001285 dprintk("RPC: read callback XID %08x\n", ntohl(req->rq_xid));
1286 xs_tcp_read_common(xprt, desc, req);
1287
Trond Myklebust2ea24492014-02-10 11:18:39 -05001288 if (!(transport->tcp_flags & TCP_RCV_COPY_DATA))
1289 xprt_complete_bc_request(req, transport->tcp_copied);
1290 spin_unlock(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001291
1292 return 0;
1293}
1294
1295static inline int _xs_tcp_read_data(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
1301 return (transport->tcp_flags & TCP_RPC_REPLY) ?
1302 xs_tcp_read_reply(xprt, desc) :
1303 xs_tcp_read_callback(xprt, desc);
1304}
1305#else
1306static inline int _xs_tcp_read_data(struct rpc_xprt *xprt,
1307 struct xdr_skb_reader *desc)
1308{
1309 return xs_tcp_read_reply(xprt, desc);
1310}
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001311#endif /* CONFIG_SUNRPC_BACKCHANNEL */
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001312
1313/*
1314 * Read data off the transport. This can be either an RPC_CALL or an
1315 * RPC_REPLY. Relay the processing to helper functions.
1316 */
1317static void xs_tcp_read_data(struct rpc_xprt *xprt,
1318 struct xdr_skb_reader *desc)
1319{
1320 struct sock_xprt *transport =
1321 container_of(xprt, struct sock_xprt, xprt);
1322
1323 if (_xs_tcp_read_data(xprt, desc) == 0)
1324 xs_tcp_check_fraghdr(transport);
1325 else {
1326 /*
1327 * The transport_lock protects the request handling.
1328 * There's no need to hold it to update the tcp_flags.
1329 */
1330 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
1331 }
Chuck Levera246b012005-08-11 16:25:23 -04001332}
1333
Chuck Leverdd456472006-12-05 16:35:44 -05001334static inline void xs_tcp_read_discard(struct sock_xprt *transport, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001335{
1336 size_t len;
1337
Chuck Lever51971132006-12-05 16:35:19 -05001338 len = transport->tcp_reclen - transport->tcp_offset;
Chuck Levera246b012005-08-11 16:25:23 -04001339 if (len > desc->count)
1340 len = desc->count;
1341 desc->count -= len;
1342 desc->offset += len;
Chuck Lever51971132006-12-05 16:35:19 -05001343 transport->tcp_offset += len;
Chuck Lever46121cf2007-01-31 12:14:08 -05001344 dprintk("RPC: discarded %Zu bytes\n", len);
Chuck Lever51971132006-12-05 16:35:19 -05001345 xs_tcp_check_fraghdr(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001346}
1347
Chuck Lever9903cd12005-08-11 16:25:26 -04001348static 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 -04001349{
1350 struct rpc_xprt *xprt = rd_desc->arg.data;
Chuck Lever51971132006-12-05 16:35:19 -05001351 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Leverdd456472006-12-05 16:35:44 -05001352 struct xdr_skb_reader desc = {
Chuck Levera246b012005-08-11 16:25:23 -04001353 .skb = skb,
1354 .offset = offset,
1355 .count = len,
Chuck Lever9903cd12005-08-11 16:25:26 -04001356 };
Chuck Levera246b012005-08-11 16:25:23 -04001357
Chuck Lever46121cf2007-01-31 12:14:08 -05001358 dprintk("RPC: xs_tcp_data_recv started\n");
Chuck Levera246b012005-08-11 16:25:23 -04001359 do {
Jeff Layton1a867a02014-10-28 14:24:14 -04001360 trace_xs_tcp_data_recv(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001361 /* Read in a new fragment marker if necessary */
1362 /* Can we ever really expect to get completely empty fragments? */
Chuck Levere136d092006-12-05 16:35:23 -05001363 if (transport->tcp_flags & TCP_RCV_COPY_FRAGHDR) {
Chuck Lever9903cd12005-08-11 16:25:26 -04001364 xs_tcp_read_fraghdr(xprt, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001365 continue;
1366 }
1367 /* Read in the xid if necessary */
Chuck Levere136d092006-12-05 16:35:23 -05001368 if (transport->tcp_flags & TCP_RCV_COPY_XID) {
Chuck Lever51971132006-12-05 16:35:19 -05001369 xs_tcp_read_xid(transport, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001370 continue;
1371 }
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001372 /* Read in the call/reply flag */
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001373 if (transport->tcp_flags & TCP_RCV_READ_CALLDIR) {
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001374 xs_tcp_read_calldir(transport, &desc);
1375 continue;
1376 }
Chuck Levera246b012005-08-11 16:25:23 -04001377 /* Read in the request data */
Chuck Levere136d092006-12-05 16:35:23 -05001378 if (transport->tcp_flags & TCP_RCV_COPY_DATA) {
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001379 xs_tcp_read_data(xprt, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001380 continue;
1381 }
1382 /* Skip over any trailing bytes on short reads */
Chuck Lever51971132006-12-05 16:35:19 -05001383 xs_tcp_read_discard(transport, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001384 } while (desc.count);
Jeff Layton1a867a02014-10-28 14:24:14 -04001385 trace_xs_tcp_data_recv(transport);
Chuck Lever46121cf2007-01-31 12:14:08 -05001386 dprintk("RPC: xs_tcp_data_recv done\n");
Chuck Levera246b012005-08-11 16:25:23 -04001387 return len - desc.count;
1388}
1389
Chuck Lever9903cd12005-08-11 16:25:26 -04001390/**
1391 * xs_tcp_data_ready - "data ready" callback for TCP sockets
1392 * @sk: socket with data to read
Chuck Lever9903cd12005-08-11 16:25:26 -04001393 *
1394 */
David S. Miller676d2362014-04-11 16:15:36 -04001395static void xs_tcp_data_ready(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -04001396{
1397 struct rpc_xprt *xprt;
1398 read_descriptor_t rd_desc;
Trond Myklebustff2d7db2008-02-25 21:40:51 -08001399 int read;
Jeff Layton3705ad62014-10-28 14:24:13 -04001400 unsigned long total = 0;
Chuck Levera246b012005-08-11 16:25:23 -04001401
Chuck Lever46121cf2007-01-31 12:14:08 -05001402 dprintk("RPC: xs_tcp_data_ready...\n");
1403
Eric Dumazetf064af12010-09-22 12:43:39 +00001404 read_lock_bh(&sk->sk_callback_lock);
Jeff Layton3705ad62014-10-28 14:24:13 -04001405 if (!(xprt = xprt_from_sock(sk))) {
1406 read = 0;
Chuck Levera246b012005-08-11 16:25:23 -04001407 goto out;
Jeff Layton3705ad62014-10-28 14:24:13 -04001408 }
Neil Brown61d0a8e2009-09-23 14:36:37 -04001409 /* Any data means we had a useful conversation, so
1410 * the we don't need to delay the next reconnect
1411 */
1412 if (xprt->reestablish_timeout)
1413 xprt->reestablish_timeout = 0;
1414
Chuck Lever9903cd12005-08-11 16:25:26 -04001415 /* We use rd_desc to pass struct xprt to xs_tcp_data_recv */
Chuck Levera246b012005-08-11 16:25:23 -04001416 rd_desc.arg.data = xprt;
Trond Myklebustff2d7db2008-02-25 21:40:51 -08001417 do {
1418 rd_desc.count = 65536;
1419 read = tcp_read_sock(sk, &rd_desc, xs_tcp_data_recv);
Jeff Layton3705ad62014-10-28 14:24:13 -04001420 if (read > 0)
1421 total += read;
Trond Myklebustff2d7db2008-02-25 21:40:51 -08001422 } while (read > 0);
Chuck Levera246b012005-08-11 16:25:23 -04001423out:
Jeff Layton3705ad62014-10-28 14:24:13 -04001424 trace_xs_tcp_data_ready(xprt, read, total);
Eric Dumazetf064af12010-09-22 12:43:39 +00001425 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001426}
1427
Chuck Lever9903cd12005-08-11 16:25:26 -04001428/**
1429 * xs_tcp_state_change - callback to handle TCP socket state changes
1430 * @sk: socket whose state has changed
1431 *
1432 */
1433static void xs_tcp_state_change(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -04001434{
Chuck Lever9903cd12005-08-11 16:25:26 -04001435 struct rpc_xprt *xprt;
Chuck Levera246b012005-08-11 16:25:23 -04001436
Eric Dumazetf064af12010-09-22 12:43:39 +00001437 read_lock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001438 if (!(xprt = xprt_from_sock(sk)))
1439 goto out;
Chuck Lever46121cf2007-01-31 12:14:08 -05001440 dprintk("RPC: xs_tcp_state_change client %p...\n", xprt);
Andy Chittenden669502f2010-08-10 10:19:53 -04001441 dprintk("RPC: state %x conn %d dead %d zapped %d sk_shutdown %d\n",
Chuck Lever46121cf2007-01-31 12:14:08 -05001442 sk->sk_state, xprt_connected(xprt),
1443 sock_flag(sk, SOCK_DEAD),
Andy Chittenden669502f2010-08-10 10:19:53 -04001444 sock_flag(sk, SOCK_ZAPPED),
1445 sk->sk_shutdown);
Chuck Levera246b012005-08-11 16:25:23 -04001446
Trond Myklebust40b5ea02013-09-04 12:16:23 -04001447 trace_rpc_socket_state_change(xprt, sk->sk_socket);
Chuck Levera246b012005-08-11 16:25:23 -04001448 switch (sk->sk_state) {
1449 case TCP_ESTABLISHED:
Eric Dumazetf064af12010-09-22 12:43:39 +00001450 spin_lock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001451 if (!xprt_test_and_set_connected(xprt)) {
Chuck Lever51971132006-12-05 16:35:19 -05001452 struct sock_xprt *transport = container_of(xprt,
1453 struct sock_xprt, xprt);
1454
Chuck Levera246b012005-08-11 16:25:23 -04001455 /* Reset TCP record info */
Chuck Lever51971132006-12-05 16:35:19 -05001456 transport->tcp_offset = 0;
1457 transport->tcp_reclen = 0;
1458 transport->tcp_copied = 0;
Chuck Levere136d092006-12-05 16:35:23 -05001459 transport->tcp_flags =
1460 TCP_RCV_COPY_FRAGHDR | TCP_RCV_COPY_XID;
Trond Myklebust8b717982013-09-26 10:18:04 -04001461 xprt->connect_cookie++;
Chuck Lever51971132006-12-05 16:35:19 -05001462
Trond Myklebust2a491992009-03-11 14:38:00 -04001463 xprt_wake_pending_tasks(xprt, -EAGAIN);
Chuck Levera246b012005-08-11 16:25:23 -04001464 }
Eric Dumazetf064af12010-09-22 12:43:39 +00001465 spin_unlock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001466 break;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001467 case TCP_FIN_WAIT1:
1468 /* The client initiated a shutdown of the socket */
Trond Myklebust7c1d71c2008-04-17 16:52:57 -04001469 xprt->connect_cookie++;
Trond Myklebust663b8852008-01-01 18:42:12 -05001470 xprt->reestablish_timeout = 0;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001471 set_bit(XPRT_CLOSING, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001472 smp_mb__before_atomic();
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001473 clear_bit(XPRT_CONNECTED, &xprt->state);
Trond Myklebustef803672007-12-31 16:19:17 -05001474 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001475 smp_mb__after_atomic();
Chuck Levera246b012005-08-11 16:25:23 -04001476 break;
Trond Myklebust632e3bd2006-01-03 09:55:55 +01001477 case TCP_CLOSE_WAIT:
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001478 /* The server initiated a shutdown of the socket */
Trond Myklebust7c1d71c2008-04-17 16:52:57 -04001479 xprt->connect_cookie++;
Trond Myklebustd0bea452012-10-23 11:35:47 -04001480 clear_bit(XPRT_CONNECTED, &xprt->state);
Trond Myklebusta519fc72012-09-12 16:49:15 -04001481 xs_tcp_force_close(xprt);
Trond Myklebust663b8852008-01-01 18:42:12 -05001482 case TCP_CLOSING:
1483 /*
1484 * If the server closed down the connection, make sure that
1485 * we back off before reconnecting
1486 */
1487 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
1488 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001489 break;
1490 case TCP_LAST_ACK:
Trond Myklebust670f9452009-03-11 14:37:58 -04001491 set_bit(XPRT_CLOSING, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001492 smp_mb__before_atomic();
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001493 clear_bit(XPRT_CONNECTED, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001494 smp_mb__after_atomic();
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001495 break;
1496 case TCP_CLOSE:
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001497 xs_sock_mark_closed(xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001498 }
1499 out:
Eric Dumazetf064af12010-09-22 12:43:39 +00001500 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001501}
1502
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001503static void xs_write_space(struct sock *sk)
1504{
1505 struct socket *sock;
1506 struct rpc_xprt *xprt;
1507
1508 if (unlikely(!(sock = sk->sk_socket)))
1509 return;
1510 clear_bit(SOCK_NOSPACE, &sock->flags);
1511
1512 if (unlikely(!(xprt = xprt_from_sock(sk))))
1513 return;
1514 if (test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags) == 0)
1515 return;
1516
1517 xprt_write_space(xprt);
1518}
1519
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04001520/**
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001521 * xs_udp_write_space - callback invoked when socket buffer space
1522 * becomes available
Chuck Lever9903cd12005-08-11 16:25:26 -04001523 * @sk: socket whose state has changed
1524 *
Chuck Levera246b012005-08-11 16:25:23 -04001525 * Called when more output buffer space is available for this socket.
1526 * We try not to wake our writers until they can make "significant"
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001527 * progress, otherwise we'll waste resources thrashing kernel_sendmsg
Chuck Levera246b012005-08-11 16:25:23 -04001528 * with a bunch of small requests.
1529 */
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001530static void xs_udp_write_space(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -04001531{
Eric Dumazetf064af12010-09-22 12:43:39 +00001532 read_lock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001533
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001534 /* from net/core/sock.c:sock_def_write_space */
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001535 if (sock_writeable(sk))
1536 xs_write_space(sk);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001537
Eric Dumazetf064af12010-09-22 12:43:39 +00001538 read_unlock_bh(&sk->sk_callback_lock);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001539}
Chuck Levera246b012005-08-11 16:25:23 -04001540
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001541/**
1542 * xs_tcp_write_space - callback invoked when socket buffer space
1543 * becomes available
1544 * @sk: socket whose state has changed
1545 *
1546 * Called when more output buffer space is available for this socket.
1547 * We try not to wake our writers until they can make "significant"
1548 * progress, otherwise we'll waste resources thrashing kernel_sendmsg
1549 * with a bunch of small requests.
1550 */
1551static void xs_tcp_write_space(struct sock *sk)
1552{
Eric Dumazetf064af12010-09-22 12:43:39 +00001553 read_lock_bh(&sk->sk_callback_lock);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001554
1555 /* from net/core/stream.c:sk_stream_write_space */
Eric Dumazet64dc6132013-07-22 20:26:31 -07001556 if (sk_stream_is_writeable(sk))
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001557 xs_write_space(sk);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001558
Eric Dumazetf064af12010-09-22 12:43:39 +00001559 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001560}
1561
Chuck Lever470056c2005-08-25 16:25:56 -07001562static void xs_udp_do_set_buffer_size(struct rpc_xprt *xprt)
Chuck Levera246b012005-08-11 16:25:23 -04001563{
Chuck Leveree0ac0c2006-12-05 16:35:15 -05001564 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
1565 struct sock *sk = transport->inet;
Chuck Levera246b012005-08-11 16:25:23 -04001566
Chuck Lever7c6e0662006-12-05 16:35:30 -05001567 if (transport->rcvsize) {
Chuck Levera246b012005-08-11 16:25:23 -04001568 sk->sk_userlocks |= SOCK_RCVBUF_LOCK;
Chuck Lever7c6e0662006-12-05 16:35:30 -05001569 sk->sk_rcvbuf = transport->rcvsize * xprt->max_reqs * 2;
Chuck Levera246b012005-08-11 16:25:23 -04001570 }
Chuck Lever7c6e0662006-12-05 16:35:30 -05001571 if (transport->sndsize) {
Chuck Levera246b012005-08-11 16:25:23 -04001572 sk->sk_userlocks |= SOCK_SNDBUF_LOCK;
Chuck Lever7c6e0662006-12-05 16:35:30 -05001573 sk->sk_sndbuf = transport->sndsize * xprt->max_reqs * 2;
Chuck Levera246b012005-08-11 16:25:23 -04001574 sk->sk_write_space(sk);
1575 }
1576}
1577
Chuck Lever43118c22005-08-25 16:25:49 -07001578/**
Chuck Lever470056c2005-08-25 16:25:56 -07001579 * xs_udp_set_buffer_size - set send and receive limits
Chuck Lever43118c22005-08-25 16:25:49 -07001580 * @xprt: generic transport
Chuck Lever470056c2005-08-25 16:25:56 -07001581 * @sndsize: requested size of send buffer, in bytes
1582 * @rcvsize: requested size of receive buffer, in bytes
Chuck Lever43118c22005-08-25 16:25:49 -07001583 *
Chuck Lever470056c2005-08-25 16:25:56 -07001584 * Set socket send and receive buffer size limits.
Chuck Lever43118c22005-08-25 16:25:49 -07001585 */
Chuck Lever470056c2005-08-25 16:25:56 -07001586static void xs_udp_set_buffer_size(struct rpc_xprt *xprt, size_t sndsize, size_t rcvsize)
Chuck Lever43118c22005-08-25 16:25:49 -07001587{
Chuck Lever7c6e0662006-12-05 16:35:30 -05001588 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
1589
1590 transport->sndsize = 0;
Chuck Lever470056c2005-08-25 16:25:56 -07001591 if (sndsize)
Chuck Lever7c6e0662006-12-05 16:35:30 -05001592 transport->sndsize = sndsize + 1024;
1593 transport->rcvsize = 0;
Chuck Lever470056c2005-08-25 16:25:56 -07001594 if (rcvsize)
Chuck Lever7c6e0662006-12-05 16:35:30 -05001595 transport->rcvsize = rcvsize + 1024;
Chuck Lever470056c2005-08-25 16:25:56 -07001596
1597 xs_udp_do_set_buffer_size(xprt);
Chuck Lever43118c22005-08-25 16:25:49 -07001598}
1599
Chuck Lever46c0ee82005-08-25 16:25:52 -07001600/**
1601 * xs_udp_timer - called when a retransmit timeout occurs on a UDP transport
1602 * @task: task that timed out
1603 *
1604 * Adjust the congestion window after a retransmit timeout has occurred.
1605 */
Trond Myklebust6a24dfb2013-01-08 09:48:15 -05001606static void xs_udp_timer(struct rpc_xprt *xprt, struct rpc_task *task)
Chuck Lever46c0ee82005-08-25 16:25:52 -07001607{
Trond Myklebust6a24dfb2013-01-08 09:48:15 -05001608 xprt_adjust_cwnd(xprt, task, -ETIMEDOUT);
Chuck Lever46c0ee82005-08-25 16:25:52 -07001609}
1610
Chuck Leverb85d8802006-05-25 01:40:49 -04001611static unsigned short xs_get_random_port(void)
1612{
1613 unsigned short range = xprt_max_resvport - xprt_min_resvport;
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05001614 unsigned short rand = (unsigned short) prandom_u32() % range;
Chuck Leverb85d8802006-05-25 01:40:49 -04001615 return rand + xprt_min_resvport;
1616}
1617
Chuck Lever92200412006-01-03 09:55:51 +01001618/**
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001619 * xs_set_reuseaddr_port - set the socket's port and address reuse options
1620 * @sock: socket
1621 *
1622 * Note that this function has to be called on all sockets that share the
1623 * same port, and it must be called before binding.
1624 */
1625static void xs_sock_set_reuseport(struct socket *sock)
1626{
Trond Myklebust402e23b2015-02-09 17:20:14 -05001627 int opt = 1;
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001628
Trond Myklebust402e23b2015-02-09 17:20:14 -05001629 kernel_setsockopt(sock, SOL_SOCKET, SO_REUSEPORT,
1630 (char *)&opt, sizeof(opt));
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001631}
1632
1633static unsigned short xs_sock_getport(struct socket *sock)
1634{
1635 struct sockaddr_storage buf;
1636 int buflen;
1637 unsigned short port = 0;
1638
1639 if (kernel_getsockname(sock, (struct sockaddr *)&buf, &buflen) < 0)
1640 goto out;
1641 switch (buf.ss_family) {
1642 case AF_INET6:
1643 port = ntohs(((struct sockaddr_in6 *)&buf)->sin6_port);
1644 break;
1645 case AF_INET:
1646 port = ntohs(((struct sockaddr_in *)&buf)->sin_port);
1647 }
1648out:
1649 return port;
1650}
1651
1652/**
Chuck Lever92200412006-01-03 09:55:51 +01001653 * xs_set_port - reset the port number in the remote endpoint address
1654 * @xprt: generic transport
1655 * @port: new port number
1656 *
1657 */
1658static void xs_set_port(struct rpc_xprt *xprt, unsigned short port)
1659{
Chuck Lever46121cf2007-01-31 12:14:08 -05001660 dprintk("RPC: setting port for xprt %p to %u\n", xprt, port);
Chuck Leverc4efcb12006-08-22 20:06:19 -04001661
Chuck Lever9dc3b092009-08-09 15:09:46 -04001662 rpc_set_port(xs_addr(xprt), port);
1663 xs_update_peer_port(xprt);
Chuck Lever92200412006-01-03 09:55:51 +01001664}
1665
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001666static void xs_set_srcport(struct sock_xprt *transport, struct socket *sock)
1667{
1668 if (transport->srcport == 0)
1669 transport->srcport = xs_sock_getport(sock);
1670}
1671
Pavel Emelyanov5d4ec932010-10-04 16:51:23 +04001672static unsigned short xs_get_srcport(struct sock_xprt *transport)
Trond Myklebust67a391d2007-11-05 17:40:58 -05001673{
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001674 unsigned short port = transport->srcport;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001675
1676 if (port == 0 && transport->xprt.resvport)
1677 port = xs_get_random_port();
1678 return port;
1679}
1680
Pavel Emelyanovbaaf4e42010-10-04 16:51:56 +04001681static unsigned short xs_next_srcport(struct sock_xprt *transport, unsigned short port)
Trond Myklebust67a391d2007-11-05 17:40:58 -05001682{
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001683 if (transport->srcport != 0)
1684 transport->srcport = 0;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001685 if (!transport->xprt.resvport)
1686 return 0;
1687 if (port <= xprt_min_resvport || port > xprt_max_resvport)
1688 return xprt_max_resvport;
1689 return --port;
1690}
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001691static int xs_bind(struct sock_xprt *transport, struct socket *sock)
Chuck Levera246b012005-08-11 16:25:23 -04001692{
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001693 struct sockaddr_storage myaddr;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001694 int err, nloop = 0;
Pavel Emelyanov5d4ec932010-10-04 16:51:23 +04001695 unsigned short port = xs_get_srcport(transport);
Trond Myklebust67a391d2007-11-05 17:40:58 -05001696 unsigned short last;
Chuck Levera246b012005-08-11 16:25:23 -04001697
Chris Perl0f7a6222014-09-05 15:40:21 -04001698 /*
1699 * If we are asking for any ephemeral port (i.e. port == 0 &&
1700 * transport->xprt.resvport == 0), don't bind. Let the local
1701 * port selection happen implicitly when the socket is used
1702 * (for example at connect time).
1703 *
1704 * This ensures that we can continue to establish TCP
1705 * connections even when all local ephemeral ports are already
1706 * a part of some TCP connection. This makes no difference
1707 * for UDP sockets, but also doens't harm them.
1708 *
1709 * If we're asking for any reserved port (i.e. port == 0 &&
1710 * transport->xprt.resvport == 1) xs_get_srcport above will
1711 * ensure that port is non-zero and we will bind as needed.
1712 */
1713 if (port == 0)
1714 return 0;
1715
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001716 memcpy(&myaddr, &transport->srcaddr, transport->xprt.addrlen);
Chuck Levera246b012005-08-11 16:25:23 -04001717 do {
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001718 rpc_set_port((struct sockaddr *)&myaddr, port);
1719 err = kernel_bind(sock, (struct sockaddr *)&myaddr,
1720 transport->xprt.addrlen);
Chuck Levera246b012005-08-11 16:25:23 -04001721 if (err == 0) {
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001722 transport->srcport = port;
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +02001723 break;
Chuck Levera246b012005-08-11 16:25:23 -04001724 }
Trond Myklebust67a391d2007-11-05 17:40:58 -05001725 last = port;
Pavel Emelyanovbaaf4e42010-10-04 16:51:56 +04001726 port = xs_next_srcport(transport, port);
Trond Myklebust67a391d2007-11-05 17:40:58 -05001727 if (port > last)
1728 nloop++;
1729 } while (err == -EADDRINUSE && nloop != 2);
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001730
Chuck Lever4232e862010-10-20 11:52:51 -04001731 if (myaddr.ss_family == AF_INET)
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001732 dprintk("RPC: %s %pI4:%u: %s (%d)\n", __func__,
1733 &((struct sockaddr_in *)&myaddr)->sin_addr,
1734 port, err ? "failed" : "ok", err);
1735 else
1736 dprintk("RPC: %s %pI6:%u: %s (%d)\n", __func__,
1737 &((struct sockaddr_in6 *)&myaddr)->sin6_addr,
1738 port, err ? "failed" : "ok", err);
Chuck Levera246b012005-08-11 16:25:23 -04001739 return err;
1740}
1741
Chuck Lever176e21e2011-05-09 15:22:44 -04001742/*
1743 * We don't support autobind on AF_LOCAL sockets
1744 */
1745static void xs_local_rpcbind(struct rpc_task *task)
1746{
Trond Myklebust3dc0da22013-01-08 09:31:13 -05001747 rcu_read_lock();
1748 xprt_set_bound(rcu_dereference(task->tk_client->cl_xprt));
1749 rcu_read_unlock();
Chuck Lever176e21e2011-05-09 15:22:44 -04001750}
1751
1752static void xs_local_set_port(struct rpc_xprt *xprt, unsigned short port)
1753{
1754}
Chuck Levera246b012005-08-11 16:25:23 -04001755
Peter Zijlstraed075362006-12-06 20:35:24 -08001756#ifdef CONFIG_DEBUG_LOCK_ALLOC
1757static struct lock_class_key xs_key[2];
1758static struct lock_class_key xs_slock_key[2];
1759
Chuck Lever176e21e2011-05-09 15:22:44 -04001760static inline void xs_reclassify_socketu(struct socket *sock)
1761{
1762 struct sock *sk = sock->sk;
1763
Chuck Lever176e21e2011-05-09 15:22:44 -04001764 sock_lock_init_class_and_name(sk, "slock-AF_LOCAL-RPC",
1765 &xs_slock_key[1], "sk_lock-AF_LOCAL-RPC", &xs_key[1]);
1766}
1767
Chuck Lever8945ee52007-08-06 11:58:04 -04001768static inline void xs_reclassify_socket4(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -08001769{
1770 struct sock *sk = sock->sk;
Chuck Lever8945ee52007-08-06 11:58:04 -04001771
Chuck Lever8945ee52007-08-06 11:58:04 -04001772 sock_lock_init_class_and_name(sk, "slock-AF_INET-RPC",
1773 &xs_slock_key[0], "sk_lock-AF_INET-RPC", &xs_key[0]);
1774}
Peter Zijlstraed075362006-12-06 20:35:24 -08001775
Chuck Lever8945ee52007-08-06 11:58:04 -04001776static inline void xs_reclassify_socket6(struct socket *sock)
1777{
1778 struct sock *sk = sock->sk;
Peter Zijlstraed075362006-12-06 20:35:24 -08001779
Chuck Lever8945ee52007-08-06 11:58:04 -04001780 sock_lock_init_class_and_name(sk, "slock-AF_INET6-RPC",
1781 &xs_slock_key[1], "sk_lock-AF_INET6-RPC", &xs_key[1]);
Peter Zijlstraed075362006-12-06 20:35:24 -08001782}
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001783
1784static inline void xs_reclassify_socket(int family, struct socket *sock)
1785{
Weston Andros Adamson1b7a1812012-10-23 10:43:39 -04001786 WARN_ON_ONCE(sock_owned_by_user(sock->sk));
1787 if (sock_owned_by_user(sock->sk))
1788 return;
1789
Chuck Lever4232e862010-10-20 11:52:51 -04001790 switch (family) {
Chuck Lever176e21e2011-05-09 15:22:44 -04001791 case AF_LOCAL:
1792 xs_reclassify_socketu(sock);
1793 break;
Chuck Lever4232e862010-10-20 11:52:51 -04001794 case AF_INET:
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001795 xs_reclassify_socket4(sock);
Chuck Lever4232e862010-10-20 11:52:51 -04001796 break;
1797 case AF_INET6:
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001798 xs_reclassify_socket6(sock);
Chuck Lever4232e862010-10-20 11:52:51 -04001799 break;
1800 }
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001801}
Peter Zijlstraed075362006-12-06 20:35:24 -08001802#else
Chuck Lever176e21e2011-05-09 15:22:44 -04001803static inline void xs_reclassify_socketu(struct socket *sock)
1804{
1805}
1806
Chuck Lever8945ee52007-08-06 11:58:04 -04001807static inline void xs_reclassify_socket4(struct socket *sock)
1808{
1809}
1810
1811static inline void xs_reclassify_socket6(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -08001812{
1813}
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001814
1815static inline void xs_reclassify_socket(int family, struct socket *sock)
1816{
1817}
Peter Zijlstraed075362006-12-06 20:35:24 -08001818#endif
1819
NeilBrown93dc41b2013-10-31 16:14:36 +11001820static void xs_dummy_setup_socket(struct work_struct *work)
1821{
1822}
1823
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001824static struct socket *xs_create_sock(struct rpc_xprt *xprt,
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001825 struct sock_xprt *transport, int family, int type,
1826 int protocol, bool reuseport)
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001827{
1828 struct socket *sock;
1829 int err;
1830
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001831 err = __sock_create(xprt->xprt_net, family, type, protocol, &sock, 1);
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001832 if (err < 0) {
1833 dprintk("RPC: can't create %d transport socket (%d).\n",
1834 protocol, -err);
1835 goto out;
1836 }
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001837 xs_reclassify_socket(family, sock);
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001838
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001839 if (reuseport)
1840 xs_sock_set_reuseport(sock);
1841
Ben Hutchings4cea2882011-02-22 21:54:34 +00001842 err = xs_bind(transport, sock);
1843 if (err) {
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001844 sock_release(sock);
1845 goto out;
1846 }
1847
1848 return sock;
1849out:
1850 return ERR_PTR(err);
1851}
1852
Chuck Lever176e21e2011-05-09 15:22:44 -04001853static int xs_local_finish_connecting(struct rpc_xprt *xprt,
1854 struct socket *sock)
1855{
1856 struct sock_xprt *transport = container_of(xprt, struct sock_xprt,
1857 xprt);
1858
1859 if (!transport->inet) {
1860 struct sock *sk = sock->sk;
1861
1862 write_lock_bh(&sk->sk_callback_lock);
1863
1864 xs_save_old_callbacks(transport, sk);
1865
1866 sk->sk_user_data = xprt;
1867 sk->sk_data_ready = xs_local_data_ready;
1868 sk->sk_write_space = xs_udp_write_space;
Trond Myklebust21180712013-12-31 13:22:59 -05001869 sk->sk_error_report = xs_error_report;
Chuck Lever176e21e2011-05-09 15:22:44 -04001870 sk->sk_allocation = GFP_ATOMIC;
1871
1872 xprt_clear_connected(xprt);
1873
1874 /* Reset to new socket */
1875 transport->sock = sock;
1876 transport->inet = sk;
1877
1878 write_unlock_bh(&sk->sk_callback_lock);
1879 }
1880
1881 /* Tell the socket layer to start connecting... */
1882 xprt->stat.connect_count++;
1883 xprt->stat.connect_start = jiffies;
1884 return kernel_connect(sock, xs_addr(xprt), xprt->addrlen, 0);
1885}
1886
1887/**
1888 * xs_local_setup_socket - create AF_LOCAL socket, connect to a local endpoint
Chuck Lever176e21e2011-05-09 15:22:44 -04001889 * @transport: socket transport to connect
Chuck Lever176e21e2011-05-09 15:22:44 -04001890 */
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05001891static int xs_local_setup_socket(struct sock_xprt *transport)
Chuck Lever176e21e2011-05-09 15:22:44 -04001892{
Chuck Lever176e21e2011-05-09 15:22:44 -04001893 struct rpc_xprt *xprt = &transport->xprt;
1894 struct socket *sock;
1895 int status = -EIO;
1896
Chuck Lever176e21e2011-05-09 15:22:44 -04001897 status = __sock_create(xprt->xprt_net, AF_LOCAL,
1898 SOCK_STREAM, 0, &sock, 1);
1899 if (status < 0) {
1900 dprintk("RPC: can't create AF_LOCAL "
1901 "transport socket (%d).\n", -status);
1902 goto out;
1903 }
1904 xs_reclassify_socketu(sock);
1905
1906 dprintk("RPC: worker connecting xprt %p via AF_LOCAL to %s\n",
1907 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
1908
1909 status = xs_local_finish_connecting(xprt, sock);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04001910 trace_rpc_socket_connect(xprt, sock, status);
Chuck Lever176e21e2011-05-09 15:22:44 -04001911 switch (status) {
1912 case 0:
1913 dprintk("RPC: xprt %p connected to %s\n",
1914 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
1915 xprt_set_connected(xprt);
Trond Myklebust3601c4a2014-06-30 13:42:19 -04001916 case -ENOBUFS:
Chuck Lever176e21e2011-05-09 15:22:44 -04001917 break;
1918 case -ENOENT:
1919 dprintk("RPC: xprt %p: socket %s does not exist\n",
1920 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
1921 break;
Trond Myklebust4a20a982012-12-15 17:02:29 -05001922 case -ECONNREFUSED:
1923 dprintk("RPC: xprt %p: connection refused for %s\n",
1924 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
1925 break;
Chuck Lever176e21e2011-05-09 15:22:44 -04001926 default:
1927 printk(KERN_ERR "%s: unhandled error (%d) connecting to %s\n",
1928 __func__, -status,
1929 xprt->address_strings[RPC_DISPLAY_ADDR]);
1930 }
1931
1932out:
1933 xprt_clear_connecting(xprt);
1934 xprt_wake_pending_tasks(xprt, status);
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05001935 return status;
1936}
1937
Linus Torvaldsb6669732013-02-28 18:02:55 -08001938static void xs_local_connect(struct rpc_xprt *xprt, struct rpc_task *task)
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05001939{
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05001940 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
1941 int ret;
1942
1943 if (RPC_IS_ASYNC(task)) {
1944 /*
1945 * We want the AF_LOCAL connect to be resolved in the
1946 * filesystem namespace of the process making the rpc
1947 * call. Thus we connect synchronously.
1948 *
1949 * If we want to support asynchronous AF_LOCAL calls,
1950 * we'll need to figure out how to pass a namespace to
1951 * connect.
1952 */
1953 rpc_exit(task, -ENOTCONN);
1954 return;
1955 }
1956 ret = xs_local_setup_socket(transport);
1957 if (ret && !RPC_IS_SOFTCONN(task))
1958 msleep_interruptible(15000);
Chuck Lever176e21e2011-05-09 15:22:44 -04001959}
1960
Jeff Layton3c87ef62015-06-03 16:14:25 -04001961#if IS_ENABLED(CONFIG_SUNRPC_SWAP)
Jeff Laytond6e971d2015-06-03 16:14:28 -04001962/*
1963 * Note that this should be called with XPRT_LOCKED held (or when we otherwise
1964 * know that we have exclusive access to the socket), to guard against
1965 * races with xs_reset_transport.
1966 */
Mel Gormana564b8f2012-07-31 16:45:12 -07001967static void xs_set_memalloc(struct rpc_xprt *xprt)
1968{
1969 struct sock_xprt *transport = container_of(xprt, struct sock_xprt,
1970 xprt);
1971
Jeff Laytond6e971d2015-06-03 16:14:28 -04001972 /*
1973 * If there's no sock, then we have nothing to set. The
1974 * reconnecting process will get it for us.
1975 */
1976 if (!transport->inet)
1977 return;
Jeff Layton8e228132015-06-03 16:14:26 -04001978 if (atomic_read(&xprt->swapper))
Mel Gormana564b8f2012-07-31 16:45:12 -07001979 sk_set_memalloc(transport->inet);
1980}
1981
1982/**
Jeff Laytond67fa4d2015-06-03 16:14:29 -04001983 * xs_enable_swap - Tag this transport as being used for swap.
Mel Gormana564b8f2012-07-31 16:45:12 -07001984 * @xprt: transport to tag
Mel Gormana564b8f2012-07-31 16:45:12 -07001985 *
Jeff Layton8e228132015-06-03 16:14:26 -04001986 * Take a reference to this transport on behalf of the rpc_clnt, and
1987 * optionally mark it for swapping if it wasn't already.
Mel Gormana564b8f2012-07-31 16:45:12 -07001988 */
Jeff Laytond67fa4d2015-06-03 16:14:29 -04001989static int
1990xs_enable_swap(struct rpc_xprt *xprt)
Mel Gormana564b8f2012-07-31 16:45:12 -07001991{
Jeff Laytond6e971d2015-06-03 16:14:28 -04001992 struct sock_xprt *xs = container_of(xprt, struct sock_xprt, xprt);
Mel Gormana564b8f2012-07-31 16:45:12 -07001993
Jeff Laytond6e971d2015-06-03 16:14:28 -04001994 if (atomic_inc_return(&xprt->swapper) != 1)
1995 return 0;
1996 if (wait_on_bit_lock(&xprt->state, XPRT_LOCKED, TASK_KILLABLE))
1997 return -ERESTARTSYS;
1998 if (xs->inet)
1999 sk_set_memalloc(xs->inet);
2000 xprt_release_xprt(xprt, NULL);
Jeff Layton8e228132015-06-03 16:14:26 -04002001 return 0;
2002}
2003
2004/**
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002005 * xs_disable_swap - Untag this transport as being used for swap.
Jeff Layton8e228132015-06-03 16:14:26 -04002006 * @xprt: transport to tag
2007 *
2008 * Drop a "swapper" reference to this xprt on behalf of the rpc_clnt. If the
2009 * swapper refcount goes to 0, untag the socket as a memalloc socket.
2010 */
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002011static void
2012xs_disable_swap(struct rpc_xprt *xprt)
Jeff Layton8e228132015-06-03 16:14:26 -04002013{
Jeff Laytond6e971d2015-06-03 16:14:28 -04002014 struct sock_xprt *xs = container_of(xprt, struct sock_xprt, xprt);
Jeff Layton8e228132015-06-03 16:14:26 -04002015
Jeff Laytond6e971d2015-06-03 16:14:28 -04002016 if (!atomic_dec_and_test(&xprt->swapper))
2017 return;
2018 if (wait_on_bit_lock(&xprt->state, XPRT_LOCKED, TASK_KILLABLE))
2019 return;
2020 if (xs->inet)
2021 sk_clear_memalloc(xs->inet);
2022 xprt_release_xprt(xprt, NULL);
Mel Gormana564b8f2012-07-31 16:45:12 -07002023}
Mel Gormana564b8f2012-07-31 16:45:12 -07002024#else
2025static void xs_set_memalloc(struct rpc_xprt *xprt)
2026{
2027}
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002028
2029static int
2030xs_enable_swap(struct rpc_xprt *xprt)
2031{
2032 return -EINVAL;
2033}
2034
2035static void
2036xs_disable_swap(struct rpc_xprt *xprt)
2037{
2038}
Mel Gormana564b8f2012-07-31 16:45:12 -07002039#endif
2040
Chuck Lever16be2d22007-08-06 11:57:38 -04002041static void xs_udp_finish_connecting(struct rpc_xprt *xprt, struct socket *sock)
Chuck Levera246b012005-08-11 16:25:23 -04002042{
Chuck Lever16be2d22007-08-06 11:57:38 -04002043 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Leveredb267a2006-08-22 20:06:18 -04002044
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002045 if (!transport->inet) {
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002046 struct sock *sk = sock->sk;
2047
2048 write_lock_bh(&sk->sk_callback_lock);
2049
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04002050 xs_save_old_callbacks(transport, sk);
2051
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002052 sk->sk_user_data = xprt;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002053 sk->sk_data_ready = xs_udp_data_ready;
2054 sk->sk_write_space = xs_udp_write_space;
Trond Myklebustb079fa7b2005-12-13 16:13:52 -05002055 sk->sk_allocation = GFP_ATOMIC;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002056
2057 xprt_set_connected(xprt);
2058
2059 /* Reset to new socket */
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002060 transport->sock = sock;
2061 transport->inet = sk;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002062
Mel Gormana564b8f2012-07-31 16:45:12 -07002063 xs_set_memalloc(xprt);
2064
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002065 write_unlock_bh(&sk->sk_callback_lock);
2066 }
Chuck Lever470056c2005-08-25 16:25:56 -07002067 xs_udp_do_set_buffer_size(xprt);
Chuck Lever16be2d22007-08-06 11:57:38 -04002068}
2069
Pavel Emelyanov8c14ff22010-10-04 16:58:02 +04002070static void xs_udp_setup_socket(struct work_struct *work)
Chuck Levera246b012005-08-11 16:25:23 -04002071{
2072 struct sock_xprt *transport =
2073 container_of(work, struct sock_xprt, connect_worker.work);
2074 struct rpc_xprt *xprt = &transport->xprt;
2075 struct socket *sock = transport->sock;
Pavel Emelyanovb65c0312010-10-04 16:53:46 +04002076 int status = -EIO;
Chuck Levera246b012005-08-11 16:25:23 -04002077
Pavel Emelyanov8c14ff22010-10-04 16:58:02 +04002078 sock = xs_create_sock(xprt, transport,
Trond Myklebust4dda9c82015-02-08 15:00:06 -05002079 xs_addr(xprt)->sa_family, SOCK_DGRAM,
2080 IPPROTO_UDP, false);
Pavel Emelyanovb65c0312010-10-04 16:53:46 +04002081 if (IS_ERR(sock))
Chuck Levera246b012005-08-11 16:25:23 -04002082 goto out;
Chuck Lever68e220b2007-08-06 11:57:48 -04002083
Chuck Leverc740eff2009-08-09 15:09:46 -04002084 dprintk("RPC: worker connecting xprt %p via %s to "
2085 "%s (port %s)\n", xprt,
2086 xprt->address_strings[RPC_DISPLAY_PROTO],
2087 xprt->address_strings[RPC_DISPLAY_ADDR],
2088 xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever68e220b2007-08-06 11:57:48 -04002089
2090 xs_udp_finish_connecting(xprt, sock);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04002091 trace_rpc_socket_connect(xprt, sock, 0);
Chuck Levera246b012005-08-11 16:25:23 -04002092 status = 0;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002093out:
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002094 xprt_unlock_connect(xprt, transport);
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002095 xprt_clear_connecting(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002096 xprt_wake_pending_tasks(xprt, status);
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002097}
2098
Chuck Lever16be2d22007-08-06 11:57:38 -04002099static int xs_tcp_finish_connecting(struct rpc_xprt *xprt, struct socket *sock)
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002100{
Chuck Lever16be2d22007-08-06 11:57:38 -04002101 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebustfe19a962011-03-18 20:21:23 -04002102 int ret = -ENOTCONN;
Chuck Leveredb267a2006-08-22 20:06:18 -04002103
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002104 if (!transport->inet) {
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002105 struct sock *sk = sock->sk;
Trond Myklebust7f260e82013-09-24 11:25:22 -04002106 unsigned int keepidle = xprt->timeout->to_initval / HZ;
2107 unsigned int keepcnt = xprt->timeout->to_retries + 1;
2108 unsigned int opt_on = 1;
2109
2110 /* TCP Keepalive options */
2111 kernel_setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE,
2112 (char *)&opt_on, sizeof(opt_on));
2113 kernel_setsockopt(sock, SOL_TCP, TCP_KEEPIDLE,
2114 (char *)&keepidle, sizeof(keepidle));
2115 kernel_setsockopt(sock, SOL_TCP, TCP_KEEPINTVL,
2116 (char *)&keepidle, sizeof(keepidle));
2117 kernel_setsockopt(sock, SOL_TCP, TCP_KEEPCNT,
2118 (char *)&keepcnt, sizeof(keepcnt));
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002119
2120 write_lock_bh(&sk->sk_callback_lock);
2121
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04002122 xs_save_old_callbacks(transport, sk);
2123
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002124 sk->sk_user_data = xprt;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002125 sk->sk_data_ready = xs_tcp_data_ready;
2126 sk->sk_state_change = xs_tcp_state_change;
2127 sk->sk_write_space = xs_tcp_write_space;
Trond Myklebust21180712013-12-31 13:22:59 -05002128 sk->sk_error_report = xs_error_report;
Trond Myklebustb079fa7b2005-12-13 16:13:52 -05002129 sk->sk_allocation = GFP_ATOMIC;
Chuck Lever3167e122005-08-25 16:25:55 -07002130
2131 /* socket options */
Chuck Lever3167e122005-08-25 16:25:55 -07002132 sock_reset_flag(sk, SOCK_LINGER);
Chuck Lever3167e122005-08-25 16:25:55 -07002133 tcp_sk(sk)->nonagle |= TCP_NAGLE_OFF;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002134
2135 xprt_clear_connected(xprt);
2136
2137 /* Reset to new socket */
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002138 transport->sock = sock;
2139 transport->inet = sk;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002140
2141 write_unlock_bh(&sk->sk_callback_lock);
2142 }
2143
Trond Myklebust01d37c42009-03-11 14:09:39 -04002144 if (!xprt_bound(xprt))
Trond Myklebustfe19a962011-03-18 20:21:23 -04002145 goto out;
Trond Myklebust01d37c42009-03-11 14:09:39 -04002146
Mel Gormana564b8f2012-07-31 16:45:12 -07002147 xs_set_memalloc(xprt);
2148
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002149 /* Tell the socket layer to start connecting... */
Chuck Lever262ca072006-03-20 13:44:16 -05002150 xprt->stat.connect_count++;
2151 xprt->stat.connect_start = jiffies;
Trond Myklebustfe19a962011-03-18 20:21:23 -04002152 ret = kernel_connect(sock, xs_addr(xprt), xprt->addrlen, O_NONBLOCK);
2153 switch (ret) {
2154 case 0:
Trond Myklebust4dda9c82015-02-08 15:00:06 -05002155 xs_set_srcport(transport, sock);
Trond Myklebustfe19a962011-03-18 20:21:23 -04002156 case -EINPROGRESS:
2157 /* SYN_SENT! */
Trond Myklebustfe19a962011-03-18 20:21:23 -04002158 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
2159 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
2160 }
2161out:
2162 return ret;
Chuck Lever16be2d22007-08-06 11:57:38 -04002163}
2164
2165/**
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002166 * xs_tcp_setup_socket - create a TCP socket and connect to a remote endpoint
Chuck Lever16be2d22007-08-06 11:57:38 -04002167 *
2168 * Invoked by a work queue tasklet.
2169 */
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002170static void xs_tcp_setup_socket(struct work_struct *work)
Chuck Lever16be2d22007-08-06 11:57:38 -04002171{
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002172 struct sock_xprt *transport =
2173 container_of(work, struct sock_xprt, connect_worker.work);
Chuck Lever16be2d22007-08-06 11:57:38 -04002174 struct socket *sock = transport->sock;
Pavel Emelyanova9f5f0f2010-10-04 16:52:25 +04002175 struct rpc_xprt *xprt = &transport->xprt;
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002176 int status = -EIO;
Chuck Lever16be2d22007-08-06 11:57:38 -04002177
Chuck Lever16be2d22007-08-06 11:57:38 -04002178 if (!sock) {
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002179 sock = xs_create_sock(xprt, transport,
Trond Myklebust4dda9c82015-02-08 15:00:06 -05002180 xs_addr(xprt)->sa_family, SOCK_STREAM,
2181 IPPROTO_TCP, true);
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002182 if (IS_ERR(sock)) {
2183 status = PTR_ERR(sock);
Chuck Lever16be2d22007-08-06 11:57:38 -04002184 goto out;
2185 }
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002186 }
2187
Chuck Leverc740eff2009-08-09 15:09:46 -04002188 dprintk("RPC: worker connecting xprt %p via %s to "
2189 "%s (port %s)\n", xprt,
2190 xprt->address_strings[RPC_DISPLAY_PROTO],
2191 xprt->address_strings[RPC_DISPLAY_ADDR],
2192 xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever16be2d22007-08-06 11:57:38 -04002193
2194 status = xs_tcp_finish_connecting(xprt, sock);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04002195 trace_rpc_socket_connect(xprt, sock, status);
Chuck Lever46121cf2007-01-31 12:14:08 -05002196 dprintk("RPC: %p connect status %d connected %d sock state %d\n",
2197 xprt, -status, xprt_connected(xprt),
2198 sock->sk->sk_state);
Trond Myklebust2a491992009-03-11 14:38:00 -04002199 switch (status) {
Trond Myklebustf75e6742009-04-21 17:18:20 -04002200 default:
2201 printk("%s: connect returned unhandled error %d\n",
2202 __func__, status);
2203 case -EADDRNOTAVAIL:
2204 /* We're probably in TIME_WAIT. Get rid of existing socket,
2205 * and retry
2206 */
Trond Myklebusta519fc72012-09-12 16:49:15 -04002207 xs_tcp_force_close(xprt);
Trond Myklebust88b5ed72009-06-17 13:22:57 -07002208 break;
Trond Myklebust2a491992009-03-11 14:38:00 -04002209 case 0:
2210 case -EINPROGRESS:
2211 case -EALREADY:
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002212 xprt_unlock_connect(xprt, transport);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002213 xprt_clear_connecting(xprt);
2214 return;
Trond Myklebust9fcfe0c2010-03-02 13:06:21 -05002215 case -EINVAL:
2216 /* Happens, for instance, if the user specified a link
2217 * local IPv6 address without a scope-id.
2218 */
Trond Myklebust3ed5e2a2013-03-04 17:29:33 -05002219 case -ECONNREFUSED:
2220 case -ECONNRESET:
2221 case -ENETUNREACH:
Trond Myklebust3913c782015-02-08 21:44:04 -05002222 case -EADDRINUSE:
Trond Myklebust3601c4a2014-06-30 13:42:19 -04002223 case -ENOBUFS:
Trond Myklebust3ed5e2a2013-03-04 17:29:33 -05002224 /* retry with existing socket, after a delay */
Trond Myklebust4efdd922015-02-08 15:34:28 -05002225 xs_tcp_force_close(xprt);
Trond Myklebust9fcfe0c2010-03-02 13:06:21 -05002226 goto out;
Chuck Levera246b012005-08-11 16:25:23 -04002227 }
Trond Myklebust2a491992009-03-11 14:38:00 -04002228 status = -EAGAIN;
Chuck Levera246b012005-08-11 16:25:23 -04002229out:
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002230 xprt_unlock_connect(xprt, transport);
Chuck Lever2226feb2005-08-11 16:25:38 -04002231 xprt_clear_connecting(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002232 xprt_wake_pending_tasks(xprt, status);
Chuck Levera246b012005-08-11 16:25:23 -04002233}
2234
Chuck Lever68e220b2007-08-06 11:57:48 -04002235/**
Chuck Lever9903cd12005-08-11 16:25:26 -04002236 * xs_connect - connect a socket to a remote endpoint
Trond Myklebust1b092092013-01-08 09:26:49 -05002237 * @xprt: pointer to transport structure
Chuck Lever9903cd12005-08-11 16:25:26 -04002238 * @task: address of RPC task that manages state of connect request
2239 *
2240 * TCP: If the remote end dropped the connection, delay reconnecting.
Chuck Lever03bf4b72005-08-25 16:25:55 -07002241 *
2242 * UDP socket connects are synchronous, but we use a work queue anyway
2243 * to guarantee that even unprivileged user processes can set up a
2244 * socket on a privileged port.
2245 *
2246 * If a UDP socket connect fails, the delay behavior here prevents
2247 * retry floods (hard mounts).
Chuck Lever9903cd12005-08-11 16:25:26 -04002248 */
Trond Myklebust1b092092013-01-08 09:26:49 -05002249static void xs_connect(struct rpc_xprt *xprt, struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -04002250{
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002251 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002252
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002253 WARN_ON_ONCE(!xprt_lock_connect(xprt, task, transport));
2254
Trond Myklebustde84d892015-02-08 16:49:48 -05002255 /* Start by resetting any existing state */
2256 xs_reset_transport(transport);
2257
Chuck Lever09a21c42009-12-03 15:58:56 -05002258 if (transport->sock != NULL && !RPC_IS_SOFTCONN(task)) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002259 dprintk("RPC: xs_connect delayed xprt %p for %lu "
2260 "seconds\n",
Chuck Lever03bf4b72005-08-25 16:25:55 -07002261 xprt, xprt->reestablish_timeout / HZ);
Trond Myklebustc1384c92007-06-14 18:00:42 -04002262 queue_delayed_work(rpciod_workqueue,
2263 &transport->connect_worker,
2264 xprt->reestablish_timeout);
Chuck Lever03bf4b72005-08-25 16:25:55 -07002265 xprt->reestablish_timeout <<= 1;
Neil Brown61d0a8e2009-09-23 14:36:37 -04002266 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
2267 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
Chuck Lever03bf4b72005-08-25 16:25:55 -07002268 if (xprt->reestablish_timeout > XS_TCP_MAX_REEST_TO)
2269 xprt->reestablish_timeout = XS_TCP_MAX_REEST_TO;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002270 } else {
Chuck Lever46121cf2007-01-31 12:14:08 -05002271 dprintk("RPC: xs_connect scheduled xprt %p\n", xprt);
Trond Myklebustc1384c92007-06-14 18:00:42 -04002272 queue_delayed_work(rpciod_workqueue,
2273 &transport->connect_worker, 0);
Chuck Levera246b012005-08-11 16:25:23 -04002274 }
2275}
2276
Chuck Lever262ca072006-03-20 13:44:16 -05002277/**
Chuck Lever176e21e2011-05-09 15:22:44 -04002278 * xs_local_print_stats - display AF_LOCAL socket-specifc stats
2279 * @xprt: rpc_xprt struct containing statistics
2280 * @seq: output file
2281 *
2282 */
2283static void xs_local_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2284{
2285 long idle_time = 0;
2286
2287 if (xprt_connected(xprt))
2288 idle_time = (long)(jiffies - xprt->last_used) / HZ;
2289
2290 seq_printf(seq, "\txprt:\tlocal %lu %lu %lu %ld %lu %lu %lu "
Andy Adamson15a45202012-02-14 16:19:18 -05002291 "%llu %llu %lu %llu %llu\n",
Chuck Lever176e21e2011-05-09 15:22:44 -04002292 xprt->stat.bind_count,
2293 xprt->stat.connect_count,
2294 xprt->stat.connect_time,
2295 idle_time,
2296 xprt->stat.sends,
2297 xprt->stat.recvs,
2298 xprt->stat.bad_xids,
2299 xprt->stat.req_u,
Andy Adamson15a45202012-02-14 16:19:18 -05002300 xprt->stat.bklog_u,
2301 xprt->stat.max_slots,
2302 xprt->stat.sending_u,
2303 xprt->stat.pending_u);
Chuck Lever176e21e2011-05-09 15:22:44 -04002304}
2305
2306/**
Chuck Lever262ca072006-03-20 13:44:16 -05002307 * xs_udp_print_stats - display UDP socket-specifc stats
2308 * @xprt: rpc_xprt struct containing statistics
2309 * @seq: output file
2310 *
2311 */
2312static void xs_udp_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2313{
Chuck Leverc8475462006-12-05 16:35:26 -05002314 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
2315
Andy Adamson15a45202012-02-14 16:19:18 -05002316 seq_printf(seq, "\txprt:\tudp %u %lu %lu %lu %lu %llu %llu "
2317 "%lu %llu %llu\n",
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002318 transport->srcport,
Chuck Lever262ca072006-03-20 13:44:16 -05002319 xprt->stat.bind_count,
2320 xprt->stat.sends,
2321 xprt->stat.recvs,
2322 xprt->stat.bad_xids,
2323 xprt->stat.req_u,
Andy Adamson15a45202012-02-14 16:19:18 -05002324 xprt->stat.bklog_u,
2325 xprt->stat.max_slots,
2326 xprt->stat.sending_u,
2327 xprt->stat.pending_u);
Chuck Lever262ca072006-03-20 13:44:16 -05002328}
2329
2330/**
2331 * xs_tcp_print_stats - display TCP socket-specifc stats
2332 * @xprt: rpc_xprt struct containing statistics
2333 * @seq: output file
2334 *
2335 */
2336static void xs_tcp_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2337{
Chuck Leverc8475462006-12-05 16:35:26 -05002338 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262ca072006-03-20 13:44:16 -05002339 long idle_time = 0;
2340
2341 if (xprt_connected(xprt))
2342 idle_time = (long)(jiffies - xprt->last_used) / HZ;
2343
Andy Adamson15a45202012-02-14 16:19:18 -05002344 seq_printf(seq, "\txprt:\ttcp %u %lu %lu %lu %ld %lu %lu %lu "
2345 "%llu %llu %lu %llu %llu\n",
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002346 transport->srcport,
Chuck Lever262ca072006-03-20 13:44:16 -05002347 xprt->stat.bind_count,
2348 xprt->stat.connect_count,
2349 xprt->stat.connect_time,
2350 idle_time,
2351 xprt->stat.sends,
2352 xprt->stat.recvs,
2353 xprt->stat.bad_xids,
2354 xprt->stat.req_u,
Andy Adamson15a45202012-02-14 16:19:18 -05002355 xprt->stat.bklog_u,
2356 xprt->stat.max_slots,
2357 xprt->stat.sending_u,
2358 xprt->stat.pending_u);
Chuck Lever262ca072006-03-20 13:44:16 -05002359}
2360
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002361/*
2362 * Allocate a bunch of pages for a scratch buffer for the rpc code. The reason
2363 * we allocate pages instead doing a kmalloc like rpc_malloc is because we want
2364 * to use the server side send routines.
2365 */
H Hartley Sweeten5a51f132010-01-14 15:38:31 -07002366static void *bc_malloc(struct rpc_task *task, size_t size)
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002367{
2368 struct page *page;
2369 struct rpc_buffer *buf;
2370
Weston Andros Adamsonb8a13d02012-10-23 10:43:43 -04002371 WARN_ON_ONCE(size > PAGE_SIZE - sizeof(struct rpc_buffer));
2372 if (size > PAGE_SIZE - sizeof(struct rpc_buffer))
2373 return NULL;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002374
Weston Andros Adamsonb8a13d02012-10-23 10:43:43 -04002375 page = alloc_page(GFP_KERNEL);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002376 if (!page)
2377 return NULL;
2378
2379 buf = page_address(page);
2380 buf->len = PAGE_SIZE;
2381
2382 return buf->data;
2383}
2384
2385/*
2386 * Free the space allocated in the bc_alloc routine
2387 */
H Hartley Sweeten5a51f132010-01-14 15:38:31 -07002388static void bc_free(void *buffer)
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002389{
2390 struct rpc_buffer *buf;
2391
2392 if (!buffer)
2393 return;
2394
2395 buf = container_of(buffer, struct rpc_buffer, data);
2396 free_page((unsigned long)buf);
2397}
2398
2399/*
2400 * Use the svc_sock to send the callback. Must be called with svsk->sk_mutex
2401 * held. Borrows heavily from svc_tcp_sendto and xs_tcp_send_request.
2402 */
2403static int bc_sendto(struct rpc_rqst *req)
2404{
2405 int len;
2406 struct xdr_buf *xbufp = &req->rq_snd_buf;
2407 struct rpc_xprt *xprt = req->rq_xprt;
2408 struct sock_xprt *transport =
2409 container_of(xprt, struct sock_xprt, xprt);
2410 struct socket *sock = transport->sock;
2411 unsigned long headoff;
2412 unsigned long tailoff;
2413
Chuck Lever61677ee2011-05-09 15:22:34 -04002414 xs_encode_stream_record_marker(xbufp);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002415
2416 tailoff = (unsigned long)xbufp->tail[0].iov_base & ~PAGE_MASK;
2417 headoff = (unsigned long)xbufp->head[0].iov_base & ~PAGE_MASK;
2418 len = svc_send_common(sock, xbufp,
2419 virt_to_page(xbufp->head[0].iov_base), headoff,
2420 xbufp->tail[0].iov_base, tailoff);
2421
2422 if (len != xbufp->len) {
2423 printk(KERN_NOTICE "Error sending entire callback!\n");
2424 len = -EAGAIN;
2425 }
2426
2427 return len;
2428}
2429
2430/*
2431 * The send routine. Borrows from svc_send
2432 */
2433static int bc_send_request(struct rpc_task *task)
2434{
2435 struct rpc_rqst *req = task->tk_rqstp;
2436 struct svc_xprt *xprt;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002437 u32 len;
2438
2439 dprintk("sending request with xid: %08x\n", ntohl(req->rq_xid));
2440 /*
2441 * Get the server socket associated with this callback xprt
2442 */
2443 xprt = req->rq_xprt->bc_xprt;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002444
2445 /*
2446 * Grab the mutex to serialize data as the connection is shared
2447 * with the fore channel
2448 */
2449 if (!mutex_trylock(&xprt->xpt_mutex)) {
2450 rpc_sleep_on(&xprt->xpt_bc_pending, task, NULL);
2451 if (!mutex_trylock(&xprt->xpt_mutex))
2452 return -EAGAIN;
2453 rpc_wake_up_queued_task(&xprt->xpt_bc_pending, task);
2454 }
2455 if (test_bit(XPT_DEAD, &xprt->xpt_flags))
2456 len = -ENOTCONN;
2457 else
2458 len = bc_sendto(req);
2459 mutex_unlock(&xprt->xpt_mutex);
2460
2461 if (len > 0)
2462 len = 0;
2463
2464 return len;
2465}
2466
2467/*
2468 * The close routine. Since this is client initiated, we do nothing
2469 */
2470
2471static void bc_close(struct rpc_xprt *xprt)
2472{
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002473}
2474
2475/*
2476 * The xprt destroy routine. Again, because this connection is client
2477 * initiated, we do nothing
2478 */
2479
2480static void bc_destroy(struct rpc_xprt *xprt)
2481{
Kinglong Mee47f72ef2014-03-24 11:58:16 +08002482 dprintk("RPC: bc_destroy xprt %p\n", xprt);
2483
2484 xs_xprt_free(xprt);
2485 module_put(THIS_MODULE);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002486}
2487
Chuck Lever176e21e2011-05-09 15:22:44 -04002488static struct rpc_xprt_ops xs_local_ops = {
2489 .reserve_xprt = xprt_reserve_xprt,
2490 .release_xprt = xs_tcp_release_xprt,
Trond Myklebustf39c1bf2012-09-07 11:08:50 -04002491 .alloc_slot = xprt_alloc_slot,
Chuck Lever176e21e2011-05-09 15:22:44 -04002492 .rpcbind = xs_local_rpcbind,
2493 .set_port = xs_local_set_port,
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05002494 .connect = xs_local_connect,
Chuck Lever176e21e2011-05-09 15:22:44 -04002495 .buf_alloc = rpc_malloc,
2496 .buf_free = rpc_free,
2497 .send_request = xs_local_send_request,
2498 .set_retrans_timeout = xprt_set_retrans_timeout_def,
2499 .close = xs_close,
Trond Myklebusta1311d82013-10-31 09:18:49 -04002500 .destroy = xs_destroy,
Chuck Lever176e21e2011-05-09 15:22:44 -04002501 .print_stats = xs_local_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002502 .enable_swap = xs_enable_swap,
2503 .disable_swap = xs_disable_swap,
Chuck Lever176e21e2011-05-09 15:22:44 -04002504};
2505
Chuck Lever262965f2005-08-11 16:25:56 -04002506static struct rpc_xprt_ops xs_udp_ops = {
Chuck Lever43118c22005-08-25 16:25:49 -07002507 .set_buffer_size = xs_udp_set_buffer_size,
Chuck Lever12a80462005-08-25 16:25:51 -07002508 .reserve_xprt = xprt_reserve_xprt_cong,
Chuck Lever49e9a892005-08-25 16:25:51 -07002509 .release_xprt = xprt_release_xprt_cong,
Trond Myklebustf39c1bf2012-09-07 11:08:50 -04002510 .alloc_slot = xprt_alloc_slot,
Chuck Lever45160d62007-07-01 12:13:17 -04002511 .rpcbind = rpcb_getport_async,
Chuck Lever92200412006-01-03 09:55:51 +01002512 .set_port = xs_set_port,
Chuck Lever9903cd12005-08-11 16:25:26 -04002513 .connect = xs_connect,
Chuck Lever02107142006-01-03 09:55:49 +01002514 .buf_alloc = rpc_malloc,
2515 .buf_free = rpc_free,
Chuck Lever262965f2005-08-11 16:25:56 -04002516 .send_request = xs_udp_send_request,
Chuck Leverfe3aca22005-08-25 16:25:50 -07002517 .set_retrans_timeout = xprt_set_retrans_timeout_rtt,
Chuck Lever46c0ee82005-08-25 16:25:52 -07002518 .timer = xs_udp_timer,
Chuck Levera58dd392005-08-25 16:25:53 -07002519 .release_request = xprt_release_rqst_cong,
Chuck Lever262965f2005-08-11 16:25:56 -04002520 .close = xs_close,
2521 .destroy = xs_destroy,
Chuck Lever262ca072006-03-20 13:44:16 -05002522 .print_stats = xs_udp_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002523 .enable_swap = xs_enable_swap,
2524 .disable_swap = xs_disable_swap,
Chuck Lever262965f2005-08-11 16:25:56 -04002525};
2526
2527static struct rpc_xprt_ops xs_tcp_ops = {
Chuck Lever12a80462005-08-25 16:25:51 -07002528 .reserve_xprt = xprt_reserve_xprt,
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04002529 .release_xprt = xs_tcp_release_xprt,
Trond Myklebustf39c1bf2012-09-07 11:08:50 -04002530 .alloc_slot = xprt_lock_and_alloc_slot,
Chuck Lever45160d62007-07-01 12:13:17 -04002531 .rpcbind = rpcb_getport_async,
Chuck Lever92200412006-01-03 09:55:51 +01002532 .set_port = xs_set_port,
Trond Myklebust0b9e7942010-04-16 16:41:57 -04002533 .connect = xs_connect,
Chuck Lever02107142006-01-03 09:55:49 +01002534 .buf_alloc = rpc_malloc,
2535 .buf_free = rpc_free,
Chuck Lever262965f2005-08-11 16:25:56 -04002536 .send_request = xs_tcp_send_request,
Chuck Leverfe3aca22005-08-25 16:25:50 -07002537 .set_retrans_timeout = xprt_set_retrans_timeout_def,
Trond Myklebustc627d312015-02-10 11:06:04 -05002538 .close = xs_tcp_shutdown,
Chuck Lever9903cd12005-08-11 16:25:26 -04002539 .destroy = xs_destroy,
Chuck Lever262ca072006-03-20 13:44:16 -05002540 .print_stats = xs_tcp_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002541 .enable_swap = xs_enable_swap,
2542 .disable_swap = xs_disable_swap,
Chuck Levera246b012005-08-11 16:25:23 -04002543};
2544
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002545/*
2546 * The rpc_xprt_ops for the server backchannel
2547 */
2548
2549static struct rpc_xprt_ops bc_tcp_ops = {
2550 .reserve_xprt = xprt_reserve_xprt,
2551 .release_xprt = xprt_release_xprt,
Bryan Schumaker84e28a32012-09-24 13:39:01 -04002552 .alloc_slot = xprt_alloc_slot,
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002553 .buf_alloc = bc_malloc,
2554 .buf_free = bc_free,
2555 .send_request = bc_send_request,
2556 .set_retrans_timeout = xprt_set_retrans_timeout_def,
2557 .close = bc_close,
2558 .destroy = bc_destroy,
2559 .print_stats = xs_tcp_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002560 .enable_swap = xs_enable_swap,
2561 .disable_swap = xs_disable_swap,
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002562};
2563
Chuck Lever92476852010-10-20 11:53:01 -04002564static int xs_init_anyaddr(const int family, struct sockaddr *sap)
2565{
2566 static const struct sockaddr_in sin = {
2567 .sin_family = AF_INET,
2568 .sin_addr.s_addr = htonl(INADDR_ANY),
2569 };
2570 static const struct sockaddr_in6 sin6 = {
2571 .sin6_family = AF_INET6,
2572 .sin6_addr = IN6ADDR_ANY_INIT,
2573 };
2574
2575 switch (family) {
Chuck Lever176e21e2011-05-09 15:22:44 -04002576 case AF_LOCAL:
2577 break;
Chuck Lever92476852010-10-20 11:53:01 -04002578 case AF_INET:
2579 memcpy(sap, &sin, sizeof(sin));
2580 break;
2581 case AF_INET6:
2582 memcpy(sap, &sin6, sizeof(sin6));
2583 break;
2584 default:
2585 dprintk("RPC: %s: Bad address family\n", __func__);
2586 return -EAFNOSUPPORT;
2587 }
2588 return 0;
2589}
2590
\"Talpey, Thomas\3c341b0b2007-09-10 13:47:07 -04002591static struct rpc_xprt *xs_setup_xprt(struct xprt_create *args,
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002592 unsigned int slot_table_size,
2593 unsigned int max_slot_table_size)
Chuck Leverc8541ec2006-10-17 14:44:27 -04002594{
2595 struct rpc_xprt *xprt;
Chuck Leverffc2e512006-12-05 16:35:11 -05002596 struct sock_xprt *new;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002597
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002598 if (args->addrlen > sizeof(xprt->addr)) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002599 dprintk("RPC: xs_setup_xprt: address too large\n");
Chuck Leverc8541ec2006-10-17 14:44:27 -04002600 return ERR_PTR(-EBADF);
2601 }
2602
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002603 xprt = xprt_alloc(args->net, sizeof(*new), slot_table_size,
2604 max_slot_table_size);
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +04002605 if (xprt == NULL) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002606 dprintk("RPC: xs_setup_xprt: couldn't allocate "
2607 "rpc_xprt\n");
Chuck Leverc8541ec2006-10-17 14:44:27 -04002608 return ERR_PTR(-ENOMEM);
2609 }
2610
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +04002611 new = container_of(xprt, struct sock_xprt, xprt);
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002612 memcpy(&xprt->addr, args->dstaddr, args->addrlen);
2613 xprt->addrlen = args->addrlen;
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +02002614 if (args->srcaddr)
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002615 memcpy(&new->srcaddr, args->srcaddr, args->addrlen);
Chuck Lever92476852010-10-20 11:53:01 -04002616 else {
2617 int err;
2618 err = xs_init_anyaddr(args->dstaddr->sa_family,
2619 (struct sockaddr *)&new->srcaddr);
Stanislav Kinsbursky2aa13532011-11-10 14:33:23 +03002620 if (err != 0) {
2621 xprt_free(xprt);
Chuck Lever92476852010-10-20 11:53:01 -04002622 return ERR_PTR(err);
Stanislav Kinsbursky2aa13532011-11-10 14:33:23 +03002623 }
Chuck Lever92476852010-10-20 11:53:01 -04002624 }
Chuck Leverc8541ec2006-10-17 14:44:27 -04002625
2626 return xprt;
2627}
2628
Chuck Lever176e21e2011-05-09 15:22:44 -04002629static const struct rpc_timeout xs_local_default_timeout = {
2630 .to_initval = 10 * HZ,
2631 .to_maxval = 10 * HZ,
2632 .to_retries = 2,
2633};
2634
2635/**
2636 * xs_setup_local - Set up transport to use an AF_LOCAL socket
2637 * @args: rpc transport creation arguments
2638 *
2639 * AF_LOCAL is a "tpi_cots_ord" transport, just like TCP
2640 */
2641static struct rpc_xprt *xs_setup_local(struct xprt_create *args)
2642{
2643 struct sockaddr_un *sun = (struct sockaddr_un *)args->dstaddr;
2644 struct sock_xprt *transport;
2645 struct rpc_xprt *xprt;
2646 struct rpc_xprt *ret;
2647
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002648 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries,
2649 xprt_max_tcp_slot_table_entries);
Chuck Lever176e21e2011-05-09 15:22:44 -04002650 if (IS_ERR(xprt))
2651 return xprt;
2652 transport = container_of(xprt, struct sock_xprt, xprt);
2653
2654 xprt->prot = 0;
2655 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
2656 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
2657
2658 xprt->bind_timeout = XS_BIND_TO;
2659 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
2660 xprt->idle_timeout = XS_IDLE_DISC_TO;
2661
2662 xprt->ops = &xs_local_ops;
2663 xprt->timeout = &xs_local_default_timeout;
2664
NeilBrown93dc41b2013-10-31 16:14:36 +11002665 INIT_DELAYED_WORK(&transport->connect_worker,
2666 xs_dummy_setup_socket);
2667
Chuck Lever176e21e2011-05-09 15:22:44 -04002668 switch (sun->sun_family) {
2669 case AF_LOCAL:
2670 if (sun->sun_path[0] != '/') {
2671 dprintk("RPC: bad AF_LOCAL address: %s\n",
2672 sun->sun_path);
2673 ret = ERR_PTR(-EINVAL);
2674 goto out_err;
2675 }
2676 xprt_set_bound(xprt);
Chuck Lever176e21e2011-05-09 15:22:44 -04002677 xs_format_peer_addresses(xprt, "local", RPCBIND_NETID_LOCAL);
J. Bruce Fields7073ea82013-02-21 10:14:22 -05002678 ret = ERR_PTR(xs_local_setup_socket(transport));
2679 if (ret)
2680 goto out_err;
Chuck Lever176e21e2011-05-09 15:22:44 -04002681 break;
2682 default:
2683 ret = ERR_PTR(-EAFNOSUPPORT);
2684 goto out_err;
2685 }
2686
2687 dprintk("RPC: set up xprt to %s via AF_LOCAL\n",
2688 xprt->address_strings[RPC_DISPLAY_ADDR]);
2689
2690 if (try_module_get(THIS_MODULE))
2691 return xprt;
2692 ret = ERR_PTR(-EINVAL);
2693out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08002694 xs_xprt_free(xprt);
Chuck Lever176e21e2011-05-09 15:22:44 -04002695 return ret;
2696}
2697
Trond Myklebust2881ae72007-12-20 16:03:54 -05002698static const struct rpc_timeout xs_udp_default_timeout = {
2699 .to_initval = 5 * HZ,
2700 .to_maxval = 30 * HZ,
2701 .to_increment = 5 * HZ,
2702 .to_retries = 5,
2703};
2704
Chuck Lever9903cd12005-08-11 16:25:26 -04002705/**
2706 * xs_setup_udp - Set up transport to use a UDP socket
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002707 * @args: rpc transport creation arguments
Chuck Lever9903cd12005-08-11 16:25:26 -04002708 *
2709 */
Adrian Bunk483066d2007-10-24 18:24:02 +02002710static struct rpc_xprt *xs_setup_udp(struct xprt_create *args)
Chuck Levera246b012005-08-11 16:25:23 -04002711{
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002712 struct sockaddr *addr = args->dstaddr;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002713 struct rpc_xprt *xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002714 struct sock_xprt *transport;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002715 struct rpc_xprt *ret;
Chuck Levera246b012005-08-11 16:25:23 -04002716
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002717 xprt = xs_setup_xprt(args, xprt_udp_slot_table_entries,
2718 xprt_udp_slot_table_entries);
Chuck Leverc8541ec2006-10-17 14:44:27 -04002719 if (IS_ERR(xprt))
2720 return xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002721 transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002722
Chuck Leverec739ef2006-08-22 20:06:15 -04002723 xprt->prot = IPPROTO_UDP;
Chuck Lever808012f2005-08-25 16:25:49 -07002724 xprt->tsh_size = 0;
Chuck Levera246b012005-08-11 16:25:23 -04002725 /* XXX: header size can vary due to auth type, IPv6, etc. */
2726 xprt->max_payload = (1U << 16) - (MAX_HEADER << 3);
2727
Chuck Lever03bf4b72005-08-25 16:25:55 -07002728 xprt->bind_timeout = XS_BIND_TO;
Chuck Lever03bf4b72005-08-25 16:25:55 -07002729 xprt->reestablish_timeout = XS_UDP_REEST_TO;
2730 xprt->idle_timeout = XS_IDLE_DISC_TO;
Chuck Levera246b012005-08-11 16:25:23 -04002731
Chuck Lever262965f2005-08-11 16:25:56 -04002732 xprt->ops = &xs_udp_ops;
Chuck Levera246b012005-08-11 16:25:23 -04002733
Trond Myklebustba7392b2007-12-20 16:03:55 -05002734 xprt->timeout = &xs_udp_default_timeout;
Chuck Levera246b012005-08-11 16:25:23 -04002735
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002736 switch (addr->sa_family) {
2737 case AF_INET:
2738 if (((struct sockaddr_in *)addr)->sin_port != htons(0))
2739 xprt_set_bound(xprt);
2740
2741 INIT_DELAYED_WORK(&transport->connect_worker,
Pavel Emelyanov8c14ff22010-10-04 16:58:02 +04002742 xs_udp_setup_socket);
Chuck Lever9dc3b092009-08-09 15:09:46 -04002743 xs_format_peer_addresses(xprt, "udp", RPCBIND_NETID_UDP);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002744 break;
2745 case AF_INET6:
2746 if (((struct sockaddr_in6 *)addr)->sin6_port != htons(0))
2747 xprt_set_bound(xprt);
2748
2749 INIT_DELAYED_WORK(&transport->connect_worker,
Pavel Emelyanov8c14ff22010-10-04 16:58:02 +04002750 xs_udp_setup_socket);
Chuck Lever9dc3b092009-08-09 15:09:46 -04002751 xs_format_peer_addresses(xprt, "udp", RPCBIND_NETID_UDP6);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002752 break;
2753 default:
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002754 ret = ERR_PTR(-EAFNOSUPPORT);
2755 goto out_err;
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002756 }
2757
Chuck Leverc740eff2009-08-09 15:09:46 -04002758 if (xprt_bound(xprt))
2759 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
2760 xprt->address_strings[RPC_DISPLAY_ADDR],
2761 xprt->address_strings[RPC_DISPLAY_PORT],
2762 xprt->address_strings[RPC_DISPLAY_PROTO]);
2763 else
2764 dprintk("RPC: set up xprt to %s (autobind) via %s\n",
2765 xprt->address_strings[RPC_DISPLAY_ADDR],
2766 xprt->address_strings[RPC_DISPLAY_PROTO]);
Chuck Leveredb267a2006-08-22 20:06:18 -04002767
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002768 if (try_module_get(THIS_MODULE))
2769 return xprt;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002770 ret = ERR_PTR(-EINVAL);
2771out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08002772 xs_xprt_free(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002773 return ret;
Chuck Levera246b012005-08-11 16:25:23 -04002774}
2775
Trond Myklebust2881ae72007-12-20 16:03:54 -05002776static const struct rpc_timeout xs_tcp_default_timeout = {
2777 .to_initval = 60 * HZ,
2778 .to_maxval = 60 * HZ,
2779 .to_retries = 2,
2780};
2781
Chuck Lever9903cd12005-08-11 16:25:26 -04002782/**
2783 * xs_setup_tcp - Set up transport to use a TCP socket
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002784 * @args: rpc transport creation arguments
Chuck Lever9903cd12005-08-11 16:25:26 -04002785 *
2786 */
Adrian Bunk483066d2007-10-24 18:24:02 +02002787static struct rpc_xprt *xs_setup_tcp(struct xprt_create *args)
Chuck Levera246b012005-08-11 16:25:23 -04002788{
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002789 struct sockaddr *addr = args->dstaddr;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002790 struct rpc_xprt *xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002791 struct sock_xprt *transport;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002792 struct rpc_xprt *ret;
Trond Myklebustb7993ce2013-04-14 11:42:00 -04002793 unsigned int max_slot_table_size = xprt_max_tcp_slot_table_entries;
2794
2795 if (args->flags & XPRT_CREATE_INFINITE_SLOTS)
2796 max_slot_table_size = RPC_MAX_SLOT_TABLE_LIMIT;
Chuck Levera246b012005-08-11 16:25:23 -04002797
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002798 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries,
Trond Myklebustb7993ce2013-04-14 11:42:00 -04002799 max_slot_table_size);
Chuck Leverc8541ec2006-10-17 14:44:27 -04002800 if (IS_ERR(xprt))
2801 return xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002802 transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002803
Chuck Leverec739ef2006-08-22 20:06:15 -04002804 xprt->prot = IPPROTO_TCP;
Chuck Lever808012f2005-08-25 16:25:49 -07002805 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
Chuck Lever808012f2005-08-25 16:25:49 -07002806 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
Chuck Levera246b012005-08-11 16:25:23 -04002807
Chuck Lever03bf4b72005-08-25 16:25:55 -07002808 xprt->bind_timeout = XS_BIND_TO;
Chuck Lever03bf4b72005-08-25 16:25:55 -07002809 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
2810 xprt->idle_timeout = XS_IDLE_DISC_TO;
Chuck Levera246b012005-08-11 16:25:23 -04002811
Chuck Lever262965f2005-08-11 16:25:56 -04002812 xprt->ops = &xs_tcp_ops;
Trond Myklebustba7392b2007-12-20 16:03:55 -05002813 xprt->timeout = &xs_tcp_default_timeout;
Chuck Levera246b012005-08-11 16:25:23 -04002814
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002815 switch (addr->sa_family) {
2816 case AF_INET:
2817 if (((struct sockaddr_in *)addr)->sin_port != htons(0))
2818 xprt_set_bound(xprt);
2819
Chuck Lever9dc3b092009-08-09 15:09:46 -04002820 INIT_DELAYED_WORK(&transport->connect_worker,
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002821 xs_tcp_setup_socket);
Chuck Lever9dc3b092009-08-09 15:09:46 -04002822 xs_format_peer_addresses(xprt, "tcp", RPCBIND_NETID_TCP);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002823 break;
2824 case AF_INET6:
2825 if (((struct sockaddr_in6 *)addr)->sin6_port != htons(0))
2826 xprt_set_bound(xprt);
2827
Chuck Lever9dc3b092009-08-09 15:09:46 -04002828 INIT_DELAYED_WORK(&transport->connect_worker,
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002829 xs_tcp_setup_socket);
Chuck Lever9dc3b092009-08-09 15:09:46 -04002830 xs_format_peer_addresses(xprt, "tcp", RPCBIND_NETID_TCP6);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002831 break;
2832 default:
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002833 ret = ERR_PTR(-EAFNOSUPPORT);
2834 goto out_err;
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002835 }
2836
Chuck Leverc740eff2009-08-09 15:09:46 -04002837 if (xprt_bound(xprt))
2838 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
2839 xprt->address_strings[RPC_DISPLAY_ADDR],
2840 xprt->address_strings[RPC_DISPLAY_PORT],
2841 xprt->address_strings[RPC_DISPLAY_PROTO]);
2842 else
2843 dprintk("RPC: set up xprt to %s (autobind) via %s\n",
2844 xprt->address_strings[RPC_DISPLAY_ADDR],
2845 xprt->address_strings[RPC_DISPLAY_PROTO]);
2846
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002847 if (try_module_get(THIS_MODULE))
2848 return xprt;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002849 ret = ERR_PTR(-EINVAL);
2850out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08002851 xs_xprt_free(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002852 return ret;
Chuck Levera246b012005-08-11 16:25:23 -04002853}
Chuck Lever282b32e2006-12-05 16:35:51 -05002854
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002855/**
2856 * xs_setup_bc_tcp - Set up transport to use a TCP backchannel socket
2857 * @args: rpc transport creation arguments
2858 *
2859 */
2860static struct rpc_xprt *xs_setup_bc_tcp(struct xprt_create *args)
2861{
2862 struct sockaddr *addr = args->dstaddr;
2863 struct rpc_xprt *xprt;
2864 struct sock_xprt *transport;
2865 struct svc_sock *bc_sock;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002866 struct rpc_xprt *ret;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002867
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002868 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries,
2869 xprt_tcp_slot_table_entries);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002870 if (IS_ERR(xprt))
2871 return xprt;
2872 transport = container_of(xprt, struct sock_xprt, xprt);
2873
2874 xprt->prot = IPPROTO_TCP;
2875 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
2876 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
2877 xprt->timeout = &xs_tcp_default_timeout;
2878
2879 /* backchannel */
2880 xprt_set_bound(xprt);
2881 xprt->bind_timeout = 0;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002882 xprt->reestablish_timeout = 0;
2883 xprt->idle_timeout = 0;
2884
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002885 xprt->ops = &bc_tcp_ops;
2886
2887 switch (addr->sa_family) {
2888 case AF_INET:
2889 xs_format_peer_addresses(xprt, "tcp",
2890 RPCBIND_NETID_TCP);
2891 break;
2892 case AF_INET6:
2893 xs_format_peer_addresses(xprt, "tcp",
2894 RPCBIND_NETID_TCP6);
2895 break;
2896 default:
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002897 ret = ERR_PTR(-EAFNOSUPPORT);
2898 goto out_err;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002899 }
2900
Pavel Emelyanov50fa0d42010-10-05 20:49:35 +04002901 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
2902 xprt->address_strings[RPC_DISPLAY_ADDR],
2903 xprt->address_strings[RPC_DISPLAY_PORT],
2904 xprt->address_strings[RPC_DISPLAY_PROTO]);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002905
2906 /*
J. Bruce Fields99de8ea2010-12-08 12:45:44 -05002907 * Once we've associated a backchannel xprt with a connection,
Weng Meiling28303ca2013-11-30 17:56:44 +08002908 * we want to keep it around as long as the connection lasts,
2909 * in case we need to start using it for a backchannel again;
2910 * this reference won't be dropped until bc_xprt is destroyed.
J. Bruce Fields99de8ea2010-12-08 12:45:44 -05002911 */
2912 xprt_get(xprt);
2913 args->bc_xprt->xpt_bc_xprt = xprt;
2914 xprt->bc_xprt = args->bc_xprt;
2915 bc_sock = container_of(args->bc_xprt, struct svc_sock, sk_xprt);
2916 transport->sock = bc_sock->sk_sock;
2917 transport->inet = bc_sock->sk_sk;
2918
2919 /*
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002920 * Since we don't want connections for the backchannel, we set
2921 * the xprt status to connected
2922 */
2923 xprt_set_connected(xprt);
2924
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002925 if (try_module_get(THIS_MODULE))
2926 return xprt;
Kinglong Mee642aab52014-03-24 12:00:28 +08002927
2928 args->bc_xprt->xpt_bc_xprt = NULL;
J. Bruce Fields99de8ea2010-12-08 12:45:44 -05002929 xprt_put(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002930 ret = ERR_PTR(-EINVAL);
2931out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08002932 xs_xprt_free(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002933 return ret;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002934}
2935
Chuck Lever176e21e2011-05-09 15:22:44 -04002936static struct xprt_class xs_local_transport = {
2937 .list = LIST_HEAD_INIT(xs_local_transport.list),
2938 .name = "named UNIX socket",
2939 .owner = THIS_MODULE,
2940 .ident = XPRT_TRANSPORT_LOCAL,
2941 .setup = xs_setup_local,
2942};
2943
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002944static struct xprt_class xs_udp_transport = {
2945 .list = LIST_HEAD_INIT(xs_udp_transport.list),
2946 .name = "udp",
2947 .owner = THIS_MODULE,
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002948 .ident = XPRT_TRANSPORT_UDP,
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002949 .setup = xs_setup_udp,
2950};
2951
2952static struct xprt_class xs_tcp_transport = {
2953 .list = LIST_HEAD_INIT(xs_tcp_transport.list),
2954 .name = "tcp",
2955 .owner = THIS_MODULE,
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002956 .ident = XPRT_TRANSPORT_TCP,
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002957 .setup = xs_setup_tcp,
2958};
2959
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002960static struct xprt_class xs_bc_tcp_transport = {
2961 .list = LIST_HEAD_INIT(xs_bc_tcp_transport.list),
2962 .name = "tcp NFSv4.1 backchannel",
2963 .owner = THIS_MODULE,
2964 .ident = XPRT_TRANSPORT_BC_TCP,
2965 .setup = xs_setup_bc_tcp,
2966};
2967
Chuck Lever282b32e2006-12-05 16:35:51 -05002968/**
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002969 * init_socket_xprt - set up xprtsock's sysctls, register with RPC client
Chuck Lever282b32e2006-12-05 16:35:51 -05002970 *
2971 */
2972int init_socket_xprt(void)
2973{
Jeff Laytonf895b252014-11-17 16:58:04 -05002974#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Eric W. Biederman2b1bec52007-02-14 00:33:24 -08002975 if (!sunrpc_table_header)
Eric W. Biederman0b4d4142007-02-14 00:34:09 -08002976 sunrpc_table_header = register_sysctl_table(sunrpc_table);
Chuck Leverfbf76682006-12-05 16:35:54 -05002977#endif
2978
Chuck Lever176e21e2011-05-09 15:22:44 -04002979 xprt_register_transport(&xs_local_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002980 xprt_register_transport(&xs_udp_transport);
2981 xprt_register_transport(&xs_tcp_transport);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002982 xprt_register_transport(&xs_bc_tcp_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002983
Chuck Lever282b32e2006-12-05 16:35:51 -05002984 return 0;
2985}
2986
2987/**
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002988 * cleanup_socket_xprt - remove xprtsock's sysctls, unregister
Chuck Lever282b32e2006-12-05 16:35:51 -05002989 *
2990 */
2991void cleanup_socket_xprt(void)
2992{
Jeff Laytonf895b252014-11-17 16:58:04 -05002993#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Chuck Leverfbf76682006-12-05 16:35:54 -05002994 if (sunrpc_table_header) {
2995 unregister_sysctl_table(sunrpc_table_header);
2996 sunrpc_table_header = NULL;
2997 }
2998#endif
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002999
Chuck Lever176e21e2011-05-09 15:22:44 -04003000 xprt_unregister_transport(&xs_local_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003001 xprt_unregister_transport(&xs_udp_transport);
3002 xprt_unregister_transport(&xs_tcp_transport);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003003 xprt_unregister_transport(&xs_bc_tcp_transport);
Chuck Lever282b32e2006-12-05 16:35:51 -05003004}
Trond Myklebustcbf11072009-08-09 15:06:19 -04003005
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003006static int param_set_uint_minmax(const char *val,
3007 const struct kernel_param *kp,
Trond Myklebustcbf11072009-08-09 15:06:19 -04003008 unsigned int min, unsigned int max)
3009{
Daniel Walter00cfaa92014-06-21 13:06:38 +01003010 unsigned int num;
Trond Myklebustcbf11072009-08-09 15:06:19 -04003011 int ret;
3012
3013 if (!val)
3014 return -EINVAL;
Daniel Walter00cfaa92014-06-21 13:06:38 +01003015 ret = kstrtouint(val, 0, &num);
Trond Myklebustcbf11072009-08-09 15:06:19 -04003016 if (ret == -EINVAL || num < min || num > max)
3017 return -EINVAL;
3018 *((unsigned int *)kp->arg) = num;
3019 return 0;
3020}
3021
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003022static int param_set_portnr(const char *val, const struct kernel_param *kp)
Trond Myklebustcbf11072009-08-09 15:06:19 -04003023{
3024 return param_set_uint_minmax(val, kp,
3025 RPC_MIN_RESVPORT,
3026 RPC_MAX_RESVPORT);
3027}
3028
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003029static struct kernel_param_ops param_ops_portnr = {
3030 .set = param_set_portnr,
3031 .get = param_get_uint,
3032};
3033
Trond Myklebustcbf11072009-08-09 15:06:19 -04003034#define param_check_portnr(name, p) \
3035 __param_check(name, p, unsigned int);
3036
3037module_param_named(min_resvport, xprt_min_resvport, portnr, 0644);
3038module_param_named(max_resvport, xprt_max_resvport, portnr, 0644);
3039
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003040static int param_set_slot_table_size(const char *val,
3041 const struct kernel_param *kp)
Trond Myklebustcbf11072009-08-09 15:06:19 -04003042{
3043 return param_set_uint_minmax(val, kp,
3044 RPC_MIN_SLOT_TABLE,
3045 RPC_MAX_SLOT_TABLE);
3046}
3047
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003048static struct kernel_param_ops param_ops_slot_table_size = {
3049 .set = param_set_slot_table_size,
3050 .get = param_get_uint,
3051};
3052
Trond Myklebustcbf11072009-08-09 15:06:19 -04003053#define param_check_slot_table_size(name, p) \
3054 __param_check(name, p, unsigned int);
3055
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003056static int param_set_max_slot_table_size(const char *val,
3057 const struct kernel_param *kp)
3058{
3059 return param_set_uint_minmax(val, kp,
3060 RPC_MIN_SLOT_TABLE,
3061 RPC_MAX_SLOT_TABLE_LIMIT);
3062}
3063
3064static struct kernel_param_ops param_ops_max_slot_table_size = {
3065 .set = param_set_max_slot_table_size,
3066 .get = param_get_uint,
3067};
3068
3069#define param_check_max_slot_table_size(name, p) \
3070 __param_check(name, p, unsigned int);
3071
Trond Myklebustcbf11072009-08-09 15:06:19 -04003072module_param_named(tcp_slot_table_entries, xprt_tcp_slot_table_entries,
3073 slot_table_size, 0644);
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003074module_param_named(tcp_max_slot_table_entries, xprt_max_tcp_slot_table_entries,
3075 max_slot_table_size, 0644);
Trond Myklebustcbf11072009-08-09 15:06:19 -04003076module_param_named(udp_slot_table_entries, xprt_udp_slot_table_entries,
3077 slot_table_size, 0644);
3078