blob: 62d0dac8f7807f9fbfbe3fbc10315e5386197b89 [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>
Chuck Lever02107142006-01-03 09:55:49 +010036#include <linux/sunrpc/sched.h>
Rahul Iyer4cfc7e62009-09-10 17:32:28 +030037#include <linux/sunrpc/svcsock.h>
\"Talpey, Thomas\49c36fc2007-09-10 13:47:31 -040038#include <linux/sunrpc/xprtsock.h>
Chuck Levera246b012005-08-11 16:25:23 -040039#include <linux/file.h>
Trond Myklebust9e00abc2011-07-13 19:20:49 -040040#ifdef CONFIG_SUNRPC_BACKCHANNEL
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -040041#include <linux/sunrpc/bc_xprt.h>
42#endif
Chuck Levera246b012005-08-11 16:25:23 -040043
44#include <net/sock.h>
45#include <net/checksum.h>
46#include <net/udp.h>
47#include <net/tcp.h>
48
Rahul Iyer4cfc7e62009-09-10 17:32:28 +030049#include "sunrpc.h"
Chuck Lever176e21e2011-05-09 15:22:44 -040050
51static void xs_close(struct rpc_xprt *xprt);
52
Chuck Lever9903cd12005-08-11 16:25:26 -040053/*
Chuck Leverc556b752005-11-01 12:24:48 -050054 * xprtsock tunables
55 */
Trond Myklebust09acfea2012-03-11 15:22:54 -040056static unsigned int xprt_udp_slot_table_entries = RPC_DEF_SLOT_TABLE;
57static unsigned int xprt_tcp_slot_table_entries = RPC_MIN_SLOT_TABLE;
58static unsigned int xprt_max_tcp_slot_table_entries = RPC_MAX_SLOT_TABLE;
Chuck Leverc556b752005-11-01 12:24:48 -050059
Trond Myklebust09acfea2012-03-11 15:22:54 -040060static unsigned int xprt_min_resvport = RPC_DEF_MIN_RESVPORT;
61static unsigned int xprt_max_resvport = RPC_DEF_MAX_RESVPORT;
Chuck Leverc556b752005-11-01 12:24:48 -050062
Trond Myklebust7d1e8252009-03-11 14:38:03 -040063#define XS_TCP_LINGER_TO (15U * HZ)
Trond Myklebust25fe6142009-03-11 14:38:03 -040064static unsigned int xs_tcp_fin_timeout __read_mostly = XS_TCP_LINGER_TO;
Trond Myklebust7d1e8252009-03-11 14:38:03 -040065
Chuck Leverc556b752005-11-01 12:24:48 -050066/*
Chuck Leverfbf76682006-12-05 16:35:54 -050067 * We can register our own files under /proc/sys/sunrpc by
68 * calling register_sysctl_table() again. The files in that
69 * directory become the union of all files registered there.
70 *
71 * We simply need to make sure that we don't collide with
72 * someone else's file names!
73 */
74
75#ifdef RPC_DEBUG
76
77static unsigned int min_slot_table_size = RPC_MIN_SLOT_TABLE;
78static unsigned int max_slot_table_size = RPC_MAX_SLOT_TABLE;
Trond Myklebustd9ba1312011-07-17 18:11:30 -040079static unsigned int max_tcp_slot_table_limit = RPC_MAX_SLOT_TABLE_LIMIT;
Chuck Leverfbf76682006-12-05 16:35:54 -050080static unsigned int xprt_min_resvport_limit = RPC_MIN_RESVPORT;
81static unsigned int xprt_max_resvport_limit = RPC_MAX_RESVPORT;
82
83static struct ctl_table_header *sunrpc_table_header;
84
85/*
86 * FIXME: changing the UDP slot table size should also resize the UDP
87 * socket buffers for existing UDP transports
88 */
89static ctl_table xs_tunables_table[] = {
90 {
Chuck Leverfbf76682006-12-05 16:35:54 -050091 .procname = "udp_slot_table_entries",
92 .data = &xprt_udp_slot_table_entries,
93 .maxlen = sizeof(unsigned int),
94 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -080095 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -050096 .extra1 = &min_slot_table_size,
97 .extra2 = &max_slot_table_size
98 },
99 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500100 .procname = "tcp_slot_table_entries",
101 .data = &xprt_tcp_slot_table_entries,
102 .maxlen = sizeof(unsigned int),
103 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800104 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -0500105 .extra1 = &min_slot_table_size,
106 .extra2 = &max_slot_table_size
107 },
108 {
Trond Myklebustd9ba1312011-07-17 18:11:30 -0400109 .procname = "tcp_max_slot_table_entries",
110 .data = &xprt_max_tcp_slot_table_entries,
111 .maxlen = sizeof(unsigned int),
112 .mode = 0644,
113 .proc_handler = proc_dointvec_minmax,
114 .extra1 = &min_slot_table_size,
115 .extra2 = &max_tcp_slot_table_limit
116 },
117 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500118 .procname = "min_resvport",
119 .data = &xprt_min_resvport,
120 .maxlen = sizeof(unsigned int),
121 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800122 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -0500123 .extra1 = &xprt_min_resvport_limit,
124 .extra2 = &xprt_max_resvport_limit
125 },
126 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500127 .procname = "max_resvport",
128 .data = &xprt_max_resvport,
129 .maxlen = sizeof(unsigned int),
130 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800131 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -0500132 .extra1 = &xprt_min_resvport_limit,
133 .extra2 = &xprt_max_resvport_limit
134 },
135 {
Trond Myklebust25fe6142009-03-11 14:38:03 -0400136 .procname = "tcp_fin_timeout",
137 .data = &xs_tcp_fin_timeout,
138 .maxlen = sizeof(xs_tcp_fin_timeout),
139 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800140 .proc_handler = proc_dointvec_jiffies,
Trond Myklebust25fe6142009-03-11 14:38:03 -0400141 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800142 { },
Chuck Leverfbf76682006-12-05 16:35:54 -0500143};
144
145static ctl_table sunrpc_table[] = {
146 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500147 .procname = "sunrpc",
148 .mode = 0555,
149 .child = xs_tunables_table
150 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800151 { },
Chuck Leverfbf76682006-12-05 16:35:54 -0500152};
153
154#endif
155
156/*
Chuck Lever03bf4b72005-08-25 16:25:55 -0700157 * Wait duration for a reply from the RPC portmapper.
158 */
159#define XS_BIND_TO (60U * HZ)
160
161/*
162 * Delay if a UDP socket connect error occurs. This is most likely some
163 * kind of resource problem on the local host.
164 */
165#define XS_UDP_REEST_TO (2U * HZ)
166
167/*
168 * The reestablish timeout allows clients to delay for a bit before attempting
169 * to reconnect to a server that just dropped our connection.
170 *
171 * We implement an exponential backoff when trying to reestablish a TCP
172 * transport connection with the server. Some servers like to drop a TCP
173 * connection when they are overworked, so we start with a short timeout and
174 * increase over time if the server is down or not responding.
175 */
176#define XS_TCP_INIT_REEST_TO (3U * HZ)
177#define XS_TCP_MAX_REEST_TO (5U * 60 * HZ)
178
179/*
180 * TCP idle timeout; client drops the transport socket if it is idle
181 * for this long. Note that we also timeout UDP sockets to prevent
182 * holding port numbers when there is no RPC traffic.
183 */
184#define XS_IDLE_DISC_TO (5U * 60 * HZ)
185
Chuck Levera246b012005-08-11 16:25:23 -0400186#ifdef RPC_DEBUG
187# undef RPC_DEBUG_DATA
Chuck Lever9903cd12005-08-11 16:25:26 -0400188# define RPCDBG_FACILITY RPCDBG_TRANS
Chuck Levera246b012005-08-11 16:25:23 -0400189#endif
190
Chuck Levera246b012005-08-11 16:25:23 -0400191#ifdef RPC_DEBUG_DATA
Chuck Lever9903cd12005-08-11 16:25:26 -0400192static void xs_pktdump(char *msg, u32 *packet, unsigned int count)
Chuck Levera246b012005-08-11 16:25:23 -0400193{
Chuck Lever9903cd12005-08-11 16:25:26 -0400194 u8 *buf = (u8 *) packet;
195 int j;
Chuck Levera246b012005-08-11 16:25:23 -0400196
Chuck Lever46121cf2007-01-31 12:14:08 -0500197 dprintk("RPC: %s\n", msg);
Chuck Levera246b012005-08-11 16:25:23 -0400198 for (j = 0; j < count && j < 128; j += 4) {
199 if (!(j & 31)) {
200 if (j)
201 dprintk("\n");
202 dprintk("0x%04x ", j);
203 }
204 dprintk("%02x%02x%02x%02x ",
205 buf[j], buf[j+1], buf[j+2], buf[j+3]);
206 }
207 dprintk("\n");
208}
209#else
Chuck Lever9903cd12005-08-11 16:25:26 -0400210static inline void xs_pktdump(char *msg, u32 *packet, unsigned int count)
Chuck Levera246b012005-08-11 16:25:23 -0400211{
212 /* NOP */
213}
214#endif
215
Chuck Leverffc2e512006-12-05 16:35:11 -0500216struct sock_xprt {
217 struct rpc_xprt xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500218
219 /*
220 * Network layer
221 */
222 struct socket * sock;
223 struct sock * inet;
Chuck Lever51971132006-12-05 16:35:19 -0500224
225 /*
226 * State of TCP reply receive
227 */
228 __be32 tcp_fraghdr,
Trond Myklebustb76ce562010-06-16 13:57:32 -0400229 tcp_xid,
230 tcp_calldir;
Chuck Lever51971132006-12-05 16:35:19 -0500231
232 u32 tcp_offset,
233 tcp_reclen;
234
235 unsigned long tcp_copied,
236 tcp_flags;
Chuck Leverc8475462006-12-05 16:35:26 -0500237
238 /*
239 * Connection of transports
240 */
Trond Myklebust34161db2006-12-07 15:48:15 -0500241 struct delayed_work connect_worker;
Chuck Leverfbfffbd2009-08-09 15:09:46 -0400242 struct sockaddr_storage srcaddr;
243 unsigned short srcport;
Chuck Lever7c6e0662006-12-05 16:35:30 -0500244
245 /*
246 * UDP socket buffer size parameters
247 */
248 size_t rcvsize,
249 sndsize;
Chuck Lever314dfd72006-12-05 16:35:34 -0500250
251 /*
252 * Saved socket callback addresses
253 */
254 void (*old_data_ready)(struct sock *, int);
255 void (*old_state_change)(struct sock *);
256 void (*old_write_space)(struct sock *);
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400257 void (*old_error_report)(struct sock *);
Chuck Leverffc2e512006-12-05 16:35:11 -0500258};
259
Chuck Levere136d092006-12-05 16:35:23 -0500260/*
261 * TCP receive state flags
262 */
263#define TCP_RCV_LAST_FRAG (1UL << 0)
264#define TCP_RCV_COPY_FRAGHDR (1UL << 1)
265#define TCP_RCV_COPY_XID (1UL << 2)
266#define TCP_RCV_COPY_DATA (1UL << 3)
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -0400267#define TCP_RCV_READ_CALLDIR (1UL << 4)
268#define TCP_RCV_COPY_CALLDIR (1UL << 5)
Ricardo Labiaga18dca022009-04-01 09:22:53 -0400269
270/*
271 * TCP RPC flags
272 */
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -0400273#define TCP_RPC_REPLY (1UL << 6)
Chuck Levere136d092006-12-05 16:35:23 -0500274
Chuck Lever95392c52007-08-06 11:57:58 -0400275static inline struct sockaddr *xs_addr(struct rpc_xprt *xprt)
Chuck Leveredb267a2006-08-22 20:06:18 -0400276{
Chuck Lever95392c52007-08-06 11:57:58 -0400277 return (struct sockaddr *) &xprt->addr;
278}
279
Chuck Lever176e21e2011-05-09 15:22:44 -0400280static inline struct sockaddr_un *xs_addr_un(struct rpc_xprt *xprt)
281{
282 return (struct sockaddr_un *) &xprt->addr;
283}
284
Chuck Lever95392c52007-08-06 11:57:58 -0400285static inline struct sockaddr_in *xs_addr_in(struct rpc_xprt *xprt)
286{
287 return (struct sockaddr_in *) &xprt->addr;
288}
289
290static inline struct sockaddr_in6 *xs_addr_in6(struct rpc_xprt *xprt)
291{
292 return (struct sockaddr_in6 *) &xprt->addr;
293}
294
Chuck Leverc877b842009-08-09 15:09:36 -0400295static void xs_format_common_peer_addresses(struct rpc_xprt *xprt)
Chuck Leveredb267a2006-08-22 20:06:18 -0400296{
Chuck Leverc877b842009-08-09 15:09:36 -0400297 struct sockaddr *sap = xs_addr(xprt);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400298 struct sockaddr_in6 *sin6;
299 struct sockaddr_in *sin;
Chuck Lever176e21e2011-05-09 15:22:44 -0400300 struct sockaddr_un *sun;
Chuck Leverc877b842009-08-09 15:09:36 -0400301 char buf[128];
Chuck Leveredb267a2006-08-22 20:06:18 -0400302
Chuck Lever9dc3b092009-08-09 15:09:46 -0400303 switch (sap->sa_family) {
Chuck Lever176e21e2011-05-09 15:22:44 -0400304 case AF_LOCAL:
305 sun = xs_addr_un(xprt);
306 strlcpy(buf, sun->sun_path, sizeof(buf));
307 xprt->address_strings[RPC_DISPLAY_ADDR] =
308 kstrdup(buf, GFP_KERNEL);
309 break;
Chuck Lever9dc3b092009-08-09 15:09:46 -0400310 case AF_INET:
Chuck Lever176e21e2011-05-09 15:22:44 -0400311 (void)rpc_ntop(sap, buf, sizeof(buf));
312 xprt->address_strings[RPC_DISPLAY_ADDR] =
313 kstrdup(buf, GFP_KERNEL);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400314 sin = xs_addr_in(xprt);
Joe Perchesfc0b57912010-03-08 12:15:28 -0800315 snprintf(buf, sizeof(buf), "%08x", ntohl(sin->sin_addr.s_addr));
Chuck Lever9dc3b092009-08-09 15:09:46 -0400316 break;
317 case AF_INET6:
Chuck Lever176e21e2011-05-09 15:22:44 -0400318 (void)rpc_ntop(sap, buf, sizeof(buf));
319 xprt->address_strings[RPC_DISPLAY_ADDR] =
320 kstrdup(buf, GFP_KERNEL);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400321 sin6 = xs_addr_in6(xprt);
Joe Perchesfc0b57912010-03-08 12:15:28 -0800322 snprintf(buf, sizeof(buf), "%pi6", &sin6->sin6_addr);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400323 break;
324 default:
325 BUG();
Chuck Leveredb267a2006-08-22 20:06:18 -0400326 }
Chuck Lever176e21e2011-05-09 15:22:44 -0400327
Chuck Lever9dc3b092009-08-09 15:09:46 -0400328 xprt->address_strings[RPC_DISPLAY_HEX_ADDR] = kstrdup(buf, GFP_KERNEL);
Chuck Leveredb267a2006-08-22 20:06:18 -0400329}
330
Chuck Lever9dc3b092009-08-09 15:09:46 -0400331static void xs_format_common_peer_ports(struct rpc_xprt *xprt)
Chuck Lever4b6473f2007-08-06 11:57:12 -0400332{
Chuck Lever9dc3b092009-08-09 15:09:46 -0400333 struct sockaddr *sap = xs_addr(xprt);
334 char buf[128];
Chuck Lever4b6473f2007-08-06 11:57:12 -0400335
Joe Perches81160e662010-03-08 12:15:59 -0800336 snprintf(buf, sizeof(buf), "%u", rpc_get_port(sap));
Chuck Leverc877b842009-08-09 15:09:36 -0400337 xprt->address_strings[RPC_DISPLAY_PORT] = kstrdup(buf, GFP_KERNEL);
Chuck Lever4b6473f2007-08-06 11:57:12 -0400338
Joe Perches81160e662010-03-08 12:15:59 -0800339 snprintf(buf, sizeof(buf), "%4hx", rpc_get_port(sap));
Chuck Leverc877b842009-08-09 15:09:36 -0400340 xprt->address_strings[RPC_DISPLAY_HEX_PORT] = kstrdup(buf, GFP_KERNEL);
341}
Chuck Lever4b6473f2007-08-06 11:57:12 -0400342
Chuck Lever9dc3b092009-08-09 15:09:46 -0400343static void xs_format_peer_addresses(struct rpc_xprt *xprt,
344 const char *protocol,
345 const char *netid)
Chuck Leveredb267a2006-08-22 20:06:18 -0400346{
Chuck Leverb454ae92008-01-07 18:34:48 -0500347 xprt->address_strings[RPC_DISPLAY_PROTO] = protocol;
Chuck Leverb454ae92008-01-07 18:34:48 -0500348 xprt->address_strings[RPC_DISPLAY_NETID] = netid;
Chuck Leverc877b842009-08-09 15:09:36 -0400349 xs_format_common_peer_addresses(xprt);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400350 xs_format_common_peer_ports(xprt);
Chuck Lever4b6473f2007-08-06 11:57:12 -0400351}
352
Chuck Lever9dc3b092009-08-09 15:09:46 -0400353static void xs_update_peer_port(struct rpc_xprt *xprt)
Chuck Lever4b6473f2007-08-06 11:57:12 -0400354{
Chuck Lever9dc3b092009-08-09 15:09:46 -0400355 kfree(xprt->address_strings[RPC_DISPLAY_HEX_PORT]);
356 kfree(xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever4b6473f2007-08-06 11:57:12 -0400357
Chuck Lever9dc3b092009-08-09 15:09:46 -0400358 xs_format_common_peer_ports(xprt);
Chuck Leveredb267a2006-08-22 20:06:18 -0400359}
360
361static void xs_free_peer_addresses(struct rpc_xprt *xprt)
362{
Chuck Lever33e01dc2008-01-14 12:32:20 -0500363 unsigned int i;
364
365 for (i = 0; i < RPC_DISPLAY_MAX; i++)
366 switch (i) {
367 case RPC_DISPLAY_PROTO:
368 case RPC_DISPLAY_NETID:
369 continue;
370 default:
371 kfree(xprt->address_strings[i]);
372 }
Chuck Leveredb267a2006-08-22 20:06:18 -0400373}
374
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400375#define XS_SENDMSG_FLAGS (MSG_DONTWAIT | MSG_NOSIGNAL)
376
Trond Myklebust24c56842006-10-17 15:06:22 -0400377static 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 -0400378{
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400379 struct msghdr msg = {
380 .msg_name = addr,
381 .msg_namelen = addrlen,
Trond Myklebust24c56842006-10-17 15:06:22 -0400382 .msg_flags = XS_SENDMSG_FLAGS | (more ? MSG_MORE : 0),
383 };
384 struct kvec iov = {
385 .iov_base = vec->iov_base + base,
386 .iov_len = vec->iov_len - base,
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400387 };
388
Trond Myklebust24c56842006-10-17 15:06:22 -0400389 if (iov.iov_len != 0)
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400390 return kernel_sendmsg(sock, &msg, &iov, 1, iov.iov_len);
391 return kernel_sendmsg(sock, &msg, NULL, 0, 0);
392}
393
Trond Myklebust24c56842006-10-17 15:06:22 -0400394static int xs_send_pagedata(struct socket *sock, struct xdr_buf *xdr, unsigned int base, int more)
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400395{
Trond Myklebust24c56842006-10-17 15:06:22 -0400396 struct page **ppage;
397 unsigned int remainder;
398 int err, sent = 0;
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400399
Trond Myklebust24c56842006-10-17 15:06:22 -0400400 remainder = xdr->page_len - base;
401 base += xdr->page_base;
402 ppage = xdr->pages + (base >> PAGE_SHIFT);
403 base &= ~PAGE_MASK;
404 for(;;) {
405 unsigned int len = min_t(unsigned int, PAGE_SIZE - base, remainder);
406 int flags = XS_SENDMSG_FLAGS;
407
408 remainder -= len;
409 if (remainder != 0 || more)
410 flags |= MSG_MORE;
411 err = sock->ops->sendpage(sock, *ppage, base, len, flags);
412 if (remainder == 0 || err != len)
413 break;
414 sent += err;
415 ppage++;
416 base = 0;
417 }
418 if (sent == 0)
419 return err;
420 if (err > 0)
421 sent += err;
422 return sent;
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400423}
424
Chuck Lever9903cd12005-08-11 16:25:26 -0400425/**
426 * xs_sendpages - write pages directly to a socket
427 * @sock: socket to send on
428 * @addr: UDP only -- address of destination
429 * @addrlen: UDP only -- length of destination address
430 * @xdr: buffer containing this request
431 * @base: starting position in the buffer
432 *
Chuck Levera246b012005-08-11 16:25:23 -0400433 */
Trond Myklebust24c56842006-10-17 15:06:22 -0400434static int xs_sendpages(struct socket *sock, struct sockaddr *addr, int addrlen, struct xdr_buf *xdr, unsigned int base)
Chuck Levera246b012005-08-11 16:25:23 -0400435{
Trond Myklebust24c56842006-10-17 15:06:22 -0400436 unsigned int remainder = xdr->len - base;
437 int err, sent = 0;
Chuck Levera246b012005-08-11 16:25:23 -0400438
Chuck Lever262965f2005-08-11 16:25:56 -0400439 if (unlikely(!sock))
Trond Myklebustfba91af2009-03-11 14:06:41 -0400440 return -ENOTSOCK;
Chuck Lever262965f2005-08-11 16:25:56 -0400441
442 clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags);
Trond Myklebust24c56842006-10-17 15:06:22 -0400443 if (base != 0) {
444 addr = NULL;
445 addrlen = 0;
446 }
Chuck Lever262965f2005-08-11 16:25:56 -0400447
Trond Myklebust24c56842006-10-17 15:06:22 -0400448 if (base < xdr->head[0].iov_len || addr != NULL) {
449 unsigned int len = xdr->head[0].iov_len - base;
450 remainder -= len;
451 err = xs_send_kvec(sock, addr, addrlen, &xdr->head[0], base, remainder != 0);
452 if (remainder == 0 || err != len)
Chuck Levera246b012005-08-11 16:25:23 -0400453 goto out;
Trond Myklebust24c56842006-10-17 15:06:22 -0400454 sent += err;
Chuck Levera246b012005-08-11 16:25:23 -0400455 base = 0;
456 } else
Trond Myklebust24c56842006-10-17 15:06:22 -0400457 base -= xdr->head[0].iov_len;
Chuck Levera246b012005-08-11 16:25:23 -0400458
Trond Myklebust24c56842006-10-17 15:06:22 -0400459 if (base < xdr->page_len) {
460 unsigned int len = xdr->page_len - base;
461 remainder -= len;
462 err = xs_send_pagedata(sock, xdr, base, remainder != 0);
463 if (remainder == 0 || err != len)
Chuck Levera246b012005-08-11 16:25:23 -0400464 goto out;
Trond Myklebust24c56842006-10-17 15:06:22 -0400465 sent += err;
Chuck Levera246b012005-08-11 16:25:23 -0400466 base = 0;
Trond Myklebust24c56842006-10-17 15:06:22 -0400467 } else
468 base -= xdr->page_len;
469
470 if (base >= xdr->tail[0].iov_len)
471 return sent;
472 err = xs_send_kvec(sock, NULL, 0, &xdr->tail[0], base, 0);
Chuck Levera246b012005-08-11 16:25:23 -0400473out:
Trond Myklebust24c56842006-10-17 15:06:22 -0400474 if (sent == 0)
475 return err;
476 if (err > 0)
477 sent += err;
478 return sent;
Chuck Levera246b012005-08-11 16:25:23 -0400479}
480
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400481static void xs_nospace_callback(struct rpc_task *task)
482{
483 struct sock_xprt *transport = container_of(task->tk_rqstp->rq_xprt, struct sock_xprt, xprt);
484
485 transport->inet->sk_write_pending--;
486 clear_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags);
487}
488
Chuck Lever9903cd12005-08-11 16:25:26 -0400489/**
Chuck Lever262965f2005-08-11 16:25:56 -0400490 * xs_nospace - place task on wait queue if transmit was incomplete
491 * @task: task to put to sleep
Chuck Lever9903cd12005-08-11 16:25:26 -0400492 *
Chuck Levera246b012005-08-11 16:25:23 -0400493 */
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400494static int xs_nospace(struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -0400495{
Chuck Lever262965f2005-08-11 16:25:56 -0400496 struct rpc_rqst *req = task->tk_rqstp;
497 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500498 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebust24ca9a82011-11-22 14:44:28 +0200499 int ret = -EAGAIN;
Chuck Levera246b012005-08-11 16:25:23 -0400500
Chuck Lever46121cf2007-01-31 12:14:08 -0500501 dprintk("RPC: %5u xmit incomplete (%u left of %u)\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400502 task->tk_pid, req->rq_slen - req->rq_bytes_sent,
503 req->rq_slen);
504
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400505 /* Protect against races with write_space */
506 spin_lock_bh(&xprt->transport_lock);
Chuck Lever262965f2005-08-11 16:25:56 -0400507
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400508 /* Don't race with disconnect */
509 if (xprt_connected(xprt)) {
510 if (test_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags)) {
511 /*
512 * Notify TCP that we're limited by the application
513 * window size
514 */
515 set_bit(SOCK_NOSPACE, &transport->sock->flags);
516 transport->inet->sk_write_pending++;
517 /* ...and wait for more buffer space */
518 xprt_wait_for_buffer_space(task, xs_nospace_callback);
519 }
520 } else {
521 clear_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags);
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400522 ret = -ENOTCONN;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400523 }
Chuck Lever262965f2005-08-11 16:25:56 -0400524
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400525 spin_unlock_bh(&xprt->transport_lock);
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400526 return ret;
Chuck Lever262965f2005-08-11 16:25:56 -0400527}
528
Chuck Lever61677ee2011-05-09 15:22:34 -0400529/*
530 * Construct a stream transport record marker in @buf.
531 */
532static inline void xs_encode_stream_record_marker(struct xdr_buf *buf)
533{
534 u32 reclen = buf->len - sizeof(rpc_fraghdr);
535 rpc_fraghdr *base = buf->head[0].iov_base;
536 *base = cpu_to_be32(RPC_LAST_STREAM_FRAGMENT | reclen);
537}
538
Chuck Lever262965f2005-08-11 16:25:56 -0400539/**
Chuck Lever176e21e2011-05-09 15:22:44 -0400540 * xs_local_send_request - write an RPC request to an AF_LOCAL socket
541 * @task: RPC task that manages the state of an RPC request
542 *
543 * Return values:
544 * 0: The request has been sent
545 * EAGAIN: The socket was blocked, please call again later to
546 * complete the request
547 * ENOTCONN: Caller needs to invoke connect logic then call again
548 * other: Some other error occured, the request was not sent
549 */
550static int xs_local_send_request(struct rpc_task *task)
551{
552 struct rpc_rqst *req = task->tk_rqstp;
553 struct rpc_xprt *xprt = req->rq_xprt;
554 struct sock_xprt *transport =
555 container_of(xprt, struct sock_xprt, xprt);
556 struct xdr_buf *xdr = &req->rq_snd_buf;
557 int status;
558
559 xs_encode_stream_record_marker(&req->rq_snd_buf);
560
561 xs_pktdump("packet data:",
562 req->rq_svec->iov_base, req->rq_svec->iov_len);
563
564 status = xs_sendpages(transport->sock, NULL, 0,
565 xdr, req->rq_bytes_sent);
566 dprintk("RPC: %s(%u) = %d\n",
567 __func__, xdr->len - req->rq_bytes_sent, status);
568 if (likely(status >= 0)) {
569 req->rq_bytes_sent += status;
570 req->rq_xmit_bytes_sent += status;
571 if (likely(req->rq_bytes_sent >= req->rq_slen)) {
572 req->rq_bytes_sent = 0;
573 return 0;
574 }
575 status = -EAGAIN;
576 }
577
578 switch (status) {
579 case -EAGAIN:
580 status = xs_nospace(task);
581 break;
582 default:
583 dprintk("RPC: sendmsg returned unrecognized error %d\n",
584 -status);
585 case -EPIPE:
586 xs_close(xprt);
587 status = -ENOTCONN;
588 }
589
590 return status;
591}
592
593/**
Chuck Lever262965f2005-08-11 16:25:56 -0400594 * xs_udp_send_request - write an RPC request to a UDP socket
595 * @task: address of RPC task that manages the state of an RPC request
596 *
597 * Return values:
598 * 0: The request has been sent
599 * EAGAIN: The socket was blocked, please call again later to
600 * complete the request
601 * ENOTCONN: Caller needs to invoke connect logic then call again
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300602 * other: Some other error occurred, the request was not sent
Chuck Lever262965f2005-08-11 16:25:56 -0400603 */
604static int xs_udp_send_request(struct rpc_task *task)
605{
606 struct rpc_rqst *req = task->tk_rqstp;
607 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500608 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262965f2005-08-11 16:25:56 -0400609 struct xdr_buf *xdr = &req->rq_snd_buf;
610 int status;
Chuck Levera246b012005-08-11 16:25:23 -0400611
Chuck Lever9903cd12005-08-11 16:25:26 -0400612 xs_pktdump("packet data:",
Chuck Levera246b012005-08-11 16:25:23 -0400613 req->rq_svec->iov_base,
614 req->rq_svec->iov_len);
615
Trond Myklebust01d37c42009-03-11 14:09:39 -0400616 if (!xprt_bound(xprt))
617 return -ENOTCONN;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500618 status = xs_sendpages(transport->sock,
Chuck Lever95392c52007-08-06 11:57:58 -0400619 xs_addr(xprt),
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500620 xprt->addrlen, xdr,
621 req->rq_bytes_sent);
Chuck Levera246b012005-08-11 16:25:23 -0400622
Chuck Lever46121cf2007-01-31 12:14:08 -0500623 dprintk("RPC: xs_udp_send_request(%u) = %d\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400624 xdr->len - req->rq_bytes_sent, status);
Chuck Levera246b012005-08-11 16:25:23 -0400625
Trond Myklebust21997002007-10-01 11:43:37 -0400626 if (status >= 0) {
Trond Myklebustd60dbb22010-05-13 12:51:49 -0400627 req->rq_xmit_bytes_sent += status;
Trond Myklebust21997002007-10-01 11:43:37 -0400628 if (status >= req->rq_slen)
629 return 0;
630 /* Still some bytes left; set up for a retry later. */
Chuck Lever262965f2005-08-11 16:25:56 -0400631 status = -EAGAIN;
Trond Myklebust21997002007-10-01 11:43:37 -0400632 }
Chuck Levera246b012005-08-11 16:25:23 -0400633
Chuck Lever262965f2005-08-11 16:25:56 -0400634 switch (status) {
Trond Myklebustfba91af2009-03-11 14:06:41 -0400635 case -ENOTSOCK:
636 status = -ENOTCONN;
637 /* Should we call xs_close() here? */
638 break;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400639 case -EAGAIN:
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400640 status = xs_nospace(task);
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400641 break;
Trond Myklebustc8485e42009-03-11 14:37:59 -0400642 default:
643 dprintk("RPC: sendmsg returned unrecognized error %d\n",
644 -status);
Chuck Lever262965f2005-08-11 16:25:56 -0400645 case -ENETUNREACH:
646 case -EPIPE:
Chuck Levera246b012005-08-11 16:25:23 -0400647 case -ECONNREFUSED:
648 /* When the server has died, an ICMP port unreachable message
Chuck Lever9903cd12005-08-11 16:25:26 -0400649 * prompts ECONNREFUSED. */
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400650 clear_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags);
Chuck Levera246b012005-08-11 16:25:23 -0400651 }
Bian Naimeng5fe46e92010-03-08 14:49:01 +0800652
Chuck Lever262965f2005-08-11 16:25:56 -0400653 return status;
Chuck Levera246b012005-08-11 16:25:23 -0400654}
655
Trond Myklebuste06799f2007-11-05 15:44:12 -0500656/**
657 * xs_tcp_shutdown - gracefully shut down a TCP socket
658 * @xprt: transport
659 *
660 * Initiates a graceful shutdown of the TCP socket by calling the
661 * equivalent of shutdown(SHUT_WR);
662 */
663static void xs_tcp_shutdown(struct rpc_xprt *xprt)
664{
665 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
666 struct socket *sock = transport->sock;
667
668 if (sock != NULL)
669 kernel_sock_shutdown(sock, SHUT_WR);
670}
671
Chuck Lever9903cd12005-08-11 16:25:26 -0400672/**
Chuck Lever262965f2005-08-11 16:25:56 -0400673 * xs_tcp_send_request - write an RPC request to a TCP socket
Chuck Lever9903cd12005-08-11 16:25:26 -0400674 * @task: address of RPC task that manages the state of an RPC request
675 *
676 * Return values:
Chuck Lever262965f2005-08-11 16:25:56 -0400677 * 0: The request has been sent
678 * EAGAIN: The socket was blocked, please call again later to
679 * complete the request
680 * ENOTCONN: Caller needs to invoke connect logic then call again
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300681 * other: Some other error occurred, the request was not sent
Chuck Lever9903cd12005-08-11 16:25:26 -0400682 *
683 * XXX: In the case of soft timeouts, should we eventually give up
Chuck Lever262965f2005-08-11 16:25:56 -0400684 * if sendmsg is not able to make progress?
Chuck Lever9903cd12005-08-11 16:25:26 -0400685 */
Chuck Lever262965f2005-08-11 16:25:56 -0400686static int xs_tcp_send_request(struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -0400687{
688 struct rpc_rqst *req = task->tk_rqstp;
689 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500690 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262965f2005-08-11 16:25:56 -0400691 struct xdr_buf *xdr = &req->rq_snd_buf;
Chuck Leverb595bb12007-08-06 11:56:42 -0400692 int status;
Chuck Levera246b012005-08-11 16:25:23 -0400693
Chuck Lever61677ee2011-05-09 15:22:34 -0400694 xs_encode_stream_record_marker(&req->rq_snd_buf);
Chuck Levera246b012005-08-11 16:25:23 -0400695
Chuck Lever262965f2005-08-11 16:25:56 -0400696 xs_pktdump("packet data:",
697 req->rq_svec->iov_base,
698 req->rq_svec->iov_len);
Chuck Levera246b012005-08-11 16:25:23 -0400699
700 /* Continue transmitting the packet/record. We must be careful
701 * to cope with writespace callbacks arriving _after_ we have
Chuck Lever262965f2005-08-11 16:25:56 -0400702 * called sendmsg(). */
Chuck Levera246b012005-08-11 16:25:23 -0400703 while (1) {
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500704 status = xs_sendpages(transport->sock,
705 NULL, 0, xdr, req->rq_bytes_sent);
Chuck Levera246b012005-08-11 16:25:23 -0400706
Chuck Lever46121cf2007-01-31 12:14:08 -0500707 dprintk("RPC: xs_tcp_send_request(%u) = %d\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400708 xdr->len - req->rq_bytes_sent, status);
709
710 if (unlikely(status < 0))
Chuck Levera246b012005-08-11 16:25:23 -0400711 break;
712
Chuck Lever262965f2005-08-11 16:25:56 -0400713 /* If we've sent the entire packet, immediately
714 * reset the count of bytes sent. */
715 req->rq_bytes_sent += status;
Trond Myklebustd60dbb22010-05-13 12:51:49 -0400716 req->rq_xmit_bytes_sent += status;
Chuck Lever262965f2005-08-11 16:25:56 -0400717 if (likely(req->rq_bytes_sent >= req->rq_slen)) {
718 req->rq_bytes_sent = 0;
719 return 0;
Chuck Levera246b012005-08-11 16:25:23 -0400720 }
721
Trond Myklebust06b4b682008-04-16 16:51:38 -0400722 if (status != 0)
723 continue;
Chuck Levera246b012005-08-11 16:25:23 -0400724 status = -EAGAIN;
Trond Myklebust06b4b682008-04-16 16:51:38 -0400725 break;
Chuck Levera246b012005-08-11 16:25:23 -0400726 }
727
Chuck Lever262965f2005-08-11 16:25:56 -0400728 switch (status) {
Trond Myklebustfba91af2009-03-11 14:06:41 -0400729 case -ENOTSOCK:
730 status = -ENOTCONN;
731 /* Should we call xs_close() here? */
732 break;
Chuck Lever262965f2005-08-11 16:25:56 -0400733 case -EAGAIN:
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400734 status = xs_nospace(task);
Chuck Lever262965f2005-08-11 16:25:56 -0400735 break;
736 default:
Chuck Lever46121cf2007-01-31 12:14:08 -0500737 dprintk("RPC: sendmsg returned unrecognized error %d\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400738 -status);
Chuck Lever262965f2005-08-11 16:25:56 -0400739 case -ECONNRESET:
Trond Myklebust55420c22009-03-11 15:29:24 -0400740 case -EPIPE:
Trond Myklebuste06799f2007-11-05 15:44:12 -0500741 xs_tcp_shutdown(xprt);
Chuck Lever262965f2005-08-11 16:25:56 -0400742 case -ECONNREFUSED:
743 case -ENOTCONN:
Chuck Lever262965f2005-08-11 16:25:56 -0400744 clear_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags);
Chuck Levera246b012005-08-11 16:25:23 -0400745 }
Bian Naimeng5fe46e92010-03-08 14:49:01 +0800746
Chuck Levera246b012005-08-11 16:25:23 -0400747 return status;
748}
749
Chuck Lever9903cd12005-08-11 16:25:26 -0400750/**
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400751 * xs_tcp_release_xprt - clean up after a tcp transmission
752 * @xprt: transport
753 * @task: rpc task
754 *
755 * This cleans up if an error causes us to abort the transmission of a request.
756 * In this case, the socket may need to be reset in order to avoid confusing
757 * the server.
758 */
759static void xs_tcp_release_xprt(struct rpc_xprt *xprt, struct rpc_task *task)
760{
761 struct rpc_rqst *req;
762
763 if (task != xprt->snd_task)
764 return;
765 if (task == NULL)
766 goto out_release;
767 req = task->tk_rqstp;
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400768 if (req == NULL)
769 goto out_release;
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400770 if (req->rq_bytes_sent == 0)
771 goto out_release;
772 if (req->rq_bytes_sent == req->rq_snd_buf.len)
773 goto out_release;
774 set_bit(XPRT_CLOSE_WAIT, &task->tk_xprt->state);
775out_release:
776 xprt_release_xprt(xprt, task);
777}
778
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400779static void xs_save_old_callbacks(struct sock_xprt *transport, struct sock *sk)
780{
781 transport->old_data_ready = sk->sk_data_ready;
782 transport->old_state_change = sk->sk_state_change;
783 transport->old_write_space = sk->sk_write_space;
784 transport->old_error_report = sk->sk_error_report;
785}
786
787static void xs_restore_old_callbacks(struct sock_xprt *transport, struct sock *sk)
788{
789 sk->sk_data_ready = transport->old_data_ready;
790 sk->sk_state_change = transport->old_state_change;
791 sk->sk_write_space = transport->old_write_space;
792 sk->sk_error_report = transport->old_error_report;
793}
794
Chuck Leverfe315e72009-03-11 14:10:21 -0400795static void xs_reset_transport(struct sock_xprt *transport)
Chuck Levera246b012005-08-11 16:25:23 -0400796{
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500797 struct socket *sock = transport->sock;
798 struct sock *sk = transport->inet;
Chuck Levera246b012005-08-11 16:25:23 -0400799
Chuck Leverfe315e72009-03-11 14:10:21 -0400800 if (sk == NULL)
801 return;
Chuck Lever9903cd12005-08-11 16:25:26 -0400802
Trond Myklebust246408d2011-03-22 18:40:10 -0400803 transport->srcport = 0;
804
Chuck Levera246b012005-08-11 16:25:23 -0400805 write_lock_bh(&sk->sk_callback_lock);
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500806 transport->inet = NULL;
807 transport->sock = NULL;
Chuck Levera246b012005-08-11 16:25:23 -0400808
Chuck Lever9903cd12005-08-11 16:25:26 -0400809 sk->sk_user_data = NULL;
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400810
811 xs_restore_old_callbacks(transport, sk);
Chuck Levera246b012005-08-11 16:25:23 -0400812 write_unlock_bh(&sk->sk_callback_lock);
813
Chuck Lever9903cd12005-08-11 16:25:26 -0400814 sk->sk_no_check = 0;
Chuck Levera246b012005-08-11 16:25:23 -0400815
816 sock_release(sock);
Chuck Leverfe315e72009-03-11 14:10:21 -0400817}
818
819/**
820 * xs_close - close a socket
821 * @xprt: transport
822 *
823 * This is used when all requests are complete; ie, no DRC state remains
824 * on the server we want to save.
Trond Myklebustf75e6742009-04-21 17:18:20 -0400825 *
826 * The caller _must_ be holding XPRT_LOCKED in order to avoid issues with
827 * xs_reset_transport() zeroing the socket from underneath a writer.
Chuck Leverfe315e72009-03-11 14:10:21 -0400828 */
829static void xs_close(struct rpc_xprt *xprt)
830{
831 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
832
833 dprintk("RPC: xs_close xprt %p\n", xprt);
834
835 xs_reset_transport(transport);
Neil Brown61d0a8e2009-09-23 14:36:37 -0400836 xprt->reestablish_timeout = 0;
Chuck Leverfe315e72009-03-11 14:10:21 -0400837
Trond Myklebust632e3bd2006-01-03 09:55:55 +0100838 smp_mb__before_clear_bit();
Trond Myklebust7d1e8252009-03-11 14:38:03 -0400839 clear_bit(XPRT_CONNECTION_ABORT, &xprt->state);
Trond Myklebust632e3bd2006-01-03 09:55:55 +0100840 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
Trond Myklebust3b948ae2007-11-05 17:42:39 -0500841 clear_bit(XPRT_CLOSING, &xprt->state);
Trond Myklebust632e3bd2006-01-03 09:55:55 +0100842 smp_mb__after_clear_bit();
Trond Myklebust62da3b22007-11-06 18:44:20 -0500843 xprt_disconnect_done(xprt);
Chuck Levera246b012005-08-11 16:25:23 -0400844}
845
Trond Myklebustf75e6742009-04-21 17:18:20 -0400846static void xs_tcp_close(struct rpc_xprt *xprt)
847{
848 if (test_and_clear_bit(XPRT_CONNECTION_CLOSE, &xprt->state))
849 xs_close(xprt);
850 else
851 xs_tcp_shutdown(xprt);
852}
853
Chuck Lever9903cd12005-08-11 16:25:26 -0400854/**
855 * xs_destroy - prepare to shutdown a transport
856 * @xprt: doomed transport
857 *
858 */
859static void xs_destroy(struct rpc_xprt *xprt)
Chuck Levera246b012005-08-11 16:25:23 -0400860{
Chuck Leverc8475462006-12-05 16:35:26 -0500861 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
862
Chuck Lever46121cf2007-01-31 12:14:08 -0500863 dprintk("RPC: xs_destroy xprt %p\n", xprt);
Chuck Lever9903cd12005-08-11 16:25:26 -0400864
Tejun Heoafe2c512010-12-14 16:21:17 +0100865 cancel_delayed_work_sync(&transport->connect_worker);
Chuck Levera246b012005-08-11 16:25:23 -0400866
Chuck Lever9903cd12005-08-11 16:25:26 -0400867 xs_close(xprt);
Chuck Leveredb267a2006-08-22 20:06:18 -0400868 xs_free_peer_addresses(xprt);
Pavel Emelyanove204e622010-09-29 16:03:13 +0400869 xprt_free(xprt);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -0400870 module_put(THIS_MODULE);
Chuck Levera246b012005-08-11 16:25:23 -0400871}
872
Chuck Lever9903cd12005-08-11 16:25:26 -0400873static inline struct rpc_xprt *xprt_from_sock(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -0400874{
Chuck Lever9903cd12005-08-11 16:25:26 -0400875 return (struct rpc_xprt *) sk->sk_user_data;
876}
877
Chuck Lever176e21e2011-05-09 15:22:44 -0400878static int xs_local_copy_to_xdr(struct xdr_buf *xdr, struct sk_buff *skb)
879{
880 struct xdr_skb_reader desc = {
881 .skb = skb,
882 .offset = sizeof(rpc_fraghdr),
883 .count = skb->len - sizeof(rpc_fraghdr),
884 };
885
886 if (xdr_partial_copy_from_skb(xdr, 0, &desc, xdr_skb_read_bits) < 0)
887 return -1;
888 if (desc.count)
889 return -1;
890 return 0;
891}
892
893/**
894 * xs_local_data_ready - "data ready" callback for AF_LOCAL sockets
895 * @sk: socket with data to read
896 * @len: how much data to read
897 *
898 * Currently this assumes we can read the whole reply in a single gulp.
899 */
900static void xs_local_data_ready(struct sock *sk, int len)
901{
902 struct rpc_task *task;
903 struct rpc_xprt *xprt;
904 struct rpc_rqst *rovr;
905 struct sk_buff *skb;
906 int err, repsize, copied;
907 u32 _xid;
908 __be32 *xp;
909
910 read_lock_bh(&sk->sk_callback_lock);
911 dprintk("RPC: %s...\n", __func__);
912 xprt = xprt_from_sock(sk);
913 if (xprt == NULL)
914 goto out;
915
916 skb = skb_recv_datagram(sk, 0, 1, &err);
917 if (skb == NULL)
918 goto out;
919
920 if (xprt->shutdown)
921 goto dropit;
922
923 repsize = skb->len - sizeof(rpc_fraghdr);
924 if (repsize < 4) {
925 dprintk("RPC: impossible RPC reply size %d\n", repsize);
926 goto dropit;
927 }
928
929 /* Copy the XID from the skb... */
930 xp = skb_header_pointer(skb, sizeof(rpc_fraghdr), sizeof(_xid), &_xid);
931 if (xp == NULL)
932 goto dropit;
933
934 /* Look up and lock the request corresponding to the given XID */
935 spin_lock(&xprt->transport_lock);
936 rovr = xprt_lookup_rqst(xprt, *xp);
937 if (!rovr)
938 goto out_unlock;
939 task = rovr->rq_task;
940
941 copied = rovr->rq_private_buf.buflen;
942 if (copied > repsize)
943 copied = repsize;
944
945 if (xs_local_copy_to_xdr(&rovr->rq_private_buf, skb)) {
946 dprintk("RPC: sk_buff copy failed\n");
947 goto out_unlock;
948 }
949
950 xprt_complete_rqst(task, copied);
951
952 out_unlock:
953 spin_unlock(&xprt->transport_lock);
954 dropit:
955 skb_free_datagram(sk, skb);
956 out:
957 read_unlock_bh(&sk->sk_callback_lock);
958}
959
Chuck Lever9903cd12005-08-11 16:25:26 -0400960/**
961 * xs_udp_data_ready - "data ready" callback for UDP sockets
962 * @sk: socket with data to read
963 * @len: how much data to read
964 *
965 */
966static void xs_udp_data_ready(struct sock *sk, int len)
967{
968 struct rpc_task *task;
969 struct rpc_xprt *xprt;
Chuck Levera246b012005-08-11 16:25:23 -0400970 struct rpc_rqst *rovr;
Chuck Lever9903cd12005-08-11 16:25:26 -0400971 struct sk_buff *skb;
Chuck Levera246b012005-08-11 16:25:23 -0400972 int err, repsize, copied;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700973 u32 _xid;
974 __be32 *xp;
Chuck Levera246b012005-08-11 16:25:23 -0400975
Eric Dumazetf064af12010-09-22 12:43:39 +0000976 read_lock_bh(&sk->sk_callback_lock);
Chuck Lever46121cf2007-01-31 12:14:08 -0500977 dprintk("RPC: xs_udp_data_ready...\n");
Chuck Lever9903cd12005-08-11 16:25:26 -0400978 if (!(xprt = xprt_from_sock(sk)))
Chuck Levera246b012005-08-11 16:25:23 -0400979 goto out;
Chuck Levera246b012005-08-11 16:25:23 -0400980
981 if ((skb = skb_recv_datagram(sk, 0, 1, &err)) == NULL)
982 goto out;
983
984 if (xprt->shutdown)
985 goto dropit;
986
987 repsize = skb->len - sizeof(struct udphdr);
988 if (repsize < 4) {
Chuck Lever46121cf2007-01-31 12:14:08 -0500989 dprintk("RPC: impossible RPC reply size %d!\n", repsize);
Chuck Levera246b012005-08-11 16:25:23 -0400990 goto dropit;
991 }
992
993 /* Copy the XID from the skb... */
994 xp = skb_header_pointer(skb, sizeof(struct udphdr),
995 sizeof(_xid), &_xid);
996 if (xp == NULL)
997 goto dropit;
998
999 /* Look up and lock the request corresponding to the given XID */
Chuck Lever4a0f8c02005-08-11 16:25:32 -04001000 spin_lock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001001 rovr = xprt_lookup_rqst(xprt, *xp);
1002 if (!rovr)
1003 goto out_unlock;
1004 task = rovr->rq_task;
1005
Chuck Levera246b012005-08-11 16:25:23 -04001006 if ((copied = rovr->rq_private_buf.buflen) > repsize)
1007 copied = repsize;
1008
1009 /* Suck it into the iovec, verify checksum if not done by hw. */
Herbert Xu1781f7f2007-12-11 11:30:32 -08001010 if (csum_partial_copy_to_xdr(&rovr->rq_private_buf, skb)) {
1011 UDPX_INC_STATS_BH(sk, UDP_MIB_INERRORS);
Chuck Levera246b012005-08-11 16:25:23 -04001012 goto out_unlock;
Herbert Xu1781f7f2007-12-11 11:30:32 -08001013 }
1014
1015 UDPX_INC_STATS_BH(sk, UDP_MIB_INDATAGRAMS);
Chuck Levera246b012005-08-11 16:25:23 -04001016
Chuck Lever1570c1e2005-08-25 16:25:52 -07001017 xprt_adjust_cwnd(task, copied);
Chuck Lever1570c1e2005-08-25 16:25:52 -07001018 xprt_complete_rqst(task, copied);
Chuck Levera246b012005-08-11 16:25:23 -04001019
1020 out_unlock:
Chuck Lever4a0f8c02005-08-11 16:25:32 -04001021 spin_unlock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001022 dropit:
1023 skb_free_datagram(sk, skb);
1024 out:
Eric Dumazetf064af12010-09-22 12:43:39 +00001025 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001026}
1027
Chuck Leverdd456472006-12-05 16:35:44 -05001028static inline void xs_tcp_read_fraghdr(struct rpc_xprt *xprt, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001029{
Chuck Lever51971132006-12-05 16:35:19 -05001030 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001031 size_t len, used;
1032 char *p;
1033
Chuck Lever51971132006-12-05 16:35:19 -05001034 p = ((char *) &transport->tcp_fraghdr) + transport->tcp_offset;
1035 len = sizeof(transport->tcp_fraghdr) - transport->tcp_offset;
Chuck Lever9d292312006-12-05 16:35:41 -05001036 used = xdr_skb_read_bits(desc, p, len);
Chuck Lever51971132006-12-05 16:35:19 -05001037 transport->tcp_offset += used;
Chuck Levera246b012005-08-11 16:25:23 -04001038 if (used != len)
1039 return;
Chuck Lever808012f2005-08-25 16:25:49 -07001040
Chuck Lever51971132006-12-05 16:35:19 -05001041 transport->tcp_reclen = ntohl(transport->tcp_fraghdr);
1042 if (transport->tcp_reclen & RPC_LAST_STREAM_FRAGMENT)
Chuck Levere136d092006-12-05 16:35:23 -05001043 transport->tcp_flags |= TCP_RCV_LAST_FRAG;
Chuck Levera246b012005-08-11 16:25:23 -04001044 else
Chuck Levere136d092006-12-05 16:35:23 -05001045 transport->tcp_flags &= ~TCP_RCV_LAST_FRAG;
Chuck Lever51971132006-12-05 16:35:19 -05001046 transport->tcp_reclen &= RPC_FRAGMENT_SIZE_MASK;
Chuck Lever808012f2005-08-25 16:25:49 -07001047
Chuck Levere136d092006-12-05 16:35:23 -05001048 transport->tcp_flags &= ~TCP_RCV_COPY_FRAGHDR;
Chuck Lever51971132006-12-05 16:35:19 -05001049 transport->tcp_offset = 0;
Chuck Lever808012f2005-08-25 16:25:49 -07001050
Chuck Levera246b012005-08-11 16:25:23 -04001051 /* Sanity check of the record length */
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001052 if (unlikely(transport->tcp_reclen < 8)) {
Chuck Lever46121cf2007-01-31 12:14:08 -05001053 dprintk("RPC: invalid TCP record fragment length\n");
Trond Myklebust3ebb0672007-11-06 18:40:12 -05001054 xprt_force_disconnect(xprt);
Chuck Lever9903cd12005-08-11 16:25:26 -04001055 return;
Chuck Levera246b012005-08-11 16:25:23 -04001056 }
Chuck Lever46121cf2007-01-31 12:14:08 -05001057 dprintk("RPC: reading TCP record fragment of length %d\n",
Chuck Lever51971132006-12-05 16:35:19 -05001058 transport->tcp_reclen);
Chuck Levera246b012005-08-11 16:25:23 -04001059}
1060
Chuck Lever51971132006-12-05 16:35:19 -05001061static void xs_tcp_check_fraghdr(struct sock_xprt *transport)
Chuck Levera246b012005-08-11 16:25:23 -04001062{
Chuck Lever51971132006-12-05 16:35:19 -05001063 if (transport->tcp_offset == transport->tcp_reclen) {
Chuck Levere136d092006-12-05 16:35:23 -05001064 transport->tcp_flags |= TCP_RCV_COPY_FRAGHDR;
Chuck Lever51971132006-12-05 16:35:19 -05001065 transport->tcp_offset = 0;
Chuck Levere136d092006-12-05 16:35:23 -05001066 if (transport->tcp_flags & TCP_RCV_LAST_FRAG) {
1067 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
1068 transport->tcp_flags |= TCP_RCV_COPY_XID;
Chuck Lever51971132006-12-05 16:35:19 -05001069 transport->tcp_copied = 0;
Chuck Levera246b012005-08-11 16:25:23 -04001070 }
1071 }
1072}
1073
Chuck Leverdd456472006-12-05 16:35:44 -05001074static inline void xs_tcp_read_xid(struct sock_xprt *transport, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001075{
1076 size_t len, used;
1077 char *p;
1078
Chuck Lever51971132006-12-05 16:35:19 -05001079 len = sizeof(transport->tcp_xid) - transport->tcp_offset;
Chuck Lever46121cf2007-01-31 12:14:08 -05001080 dprintk("RPC: reading XID (%Zu bytes)\n", len);
Chuck Lever51971132006-12-05 16:35:19 -05001081 p = ((char *) &transport->tcp_xid) + transport->tcp_offset;
Chuck Lever9d292312006-12-05 16:35:41 -05001082 used = xdr_skb_read_bits(desc, p, len);
Chuck Lever51971132006-12-05 16:35:19 -05001083 transport->tcp_offset += used;
Chuck Levera246b012005-08-11 16:25:23 -04001084 if (used != len)
1085 return;
Chuck Levere136d092006-12-05 16:35:23 -05001086 transport->tcp_flags &= ~TCP_RCV_COPY_XID;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001087 transport->tcp_flags |= TCP_RCV_READ_CALLDIR;
Chuck Lever51971132006-12-05 16:35:19 -05001088 transport->tcp_copied = 4;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001089 dprintk("RPC: reading %s XID %08x\n",
1090 (transport->tcp_flags & TCP_RPC_REPLY) ? "reply for"
1091 : "request with",
Chuck Lever51971132006-12-05 16:35:19 -05001092 ntohl(transport->tcp_xid));
1093 xs_tcp_check_fraghdr(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001094}
1095
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001096static inline void xs_tcp_read_calldir(struct sock_xprt *transport,
1097 struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001098{
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001099 size_t len, used;
1100 u32 offset;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001101 char *p;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001102
1103 /*
1104 * We want transport->tcp_offset to be 8 at the end of this routine
1105 * (4 bytes for the xid and 4 bytes for the call/reply flag).
1106 * When this function is called for the first time,
1107 * transport->tcp_offset is 4 (after having already read the xid).
1108 */
1109 offset = transport->tcp_offset - sizeof(transport->tcp_xid);
Trond Myklebustb76ce562010-06-16 13:57:32 -04001110 len = sizeof(transport->tcp_calldir) - offset;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001111 dprintk("RPC: reading CALL/REPLY flag (%Zu bytes)\n", len);
Trond Myklebustb76ce562010-06-16 13:57:32 -04001112 p = ((char *) &transport->tcp_calldir) + offset;
1113 used = xdr_skb_read_bits(desc, p, len);
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001114 transport->tcp_offset += used;
1115 if (used != len)
1116 return;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001117 transport->tcp_flags &= ~TCP_RCV_READ_CALLDIR;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001118 /*
1119 * We don't yet have the XDR buffer, so we will write the calldir
1120 * out after we get the buffer from the 'struct rpc_rqst'
1121 */
Trond Myklebustb76ce562010-06-16 13:57:32 -04001122 switch (ntohl(transport->tcp_calldir)) {
1123 case RPC_REPLY:
1124 transport->tcp_flags |= TCP_RCV_COPY_CALLDIR;
1125 transport->tcp_flags |= TCP_RCV_COPY_DATA;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001126 transport->tcp_flags |= TCP_RPC_REPLY;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001127 break;
1128 case RPC_CALL:
1129 transport->tcp_flags |= TCP_RCV_COPY_CALLDIR;
1130 transport->tcp_flags |= TCP_RCV_COPY_DATA;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001131 transport->tcp_flags &= ~TCP_RPC_REPLY;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001132 break;
1133 default:
1134 dprintk("RPC: invalid request message type\n");
1135 xprt_force_disconnect(&transport->xprt);
1136 }
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001137 xs_tcp_check_fraghdr(transport);
1138}
1139
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001140static inline void xs_tcp_read_common(struct rpc_xprt *xprt,
1141 struct xdr_skb_reader *desc,
1142 struct rpc_rqst *req)
Chuck Levera246b012005-08-11 16:25:23 -04001143{
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001144 struct sock_xprt *transport =
1145 container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001146 struct xdr_buf *rcvbuf;
1147 size_t len;
1148 ssize_t r;
1149
Chuck Levera246b012005-08-11 16:25:23 -04001150 rcvbuf = &req->rq_private_buf;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001151
1152 if (transport->tcp_flags & TCP_RCV_COPY_CALLDIR) {
1153 /*
1154 * Save the RPC direction in the XDR buffer
1155 */
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001156 memcpy(rcvbuf->head[0].iov_base + transport->tcp_copied,
Trond Myklebustb76ce562010-06-16 13:57:32 -04001157 &transport->tcp_calldir,
1158 sizeof(transport->tcp_calldir));
1159 transport->tcp_copied += sizeof(transport->tcp_calldir);
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001160 transport->tcp_flags &= ~TCP_RCV_COPY_CALLDIR;
Chuck Levera246b012005-08-11 16:25:23 -04001161 }
1162
Chuck Levera246b012005-08-11 16:25:23 -04001163 len = desc->count;
Chuck Lever51971132006-12-05 16:35:19 -05001164 if (len > transport->tcp_reclen - transport->tcp_offset) {
Chuck Leverdd456472006-12-05 16:35:44 -05001165 struct xdr_skb_reader my_desc;
Chuck Levera246b012005-08-11 16:25:23 -04001166
Chuck Lever51971132006-12-05 16:35:19 -05001167 len = transport->tcp_reclen - transport->tcp_offset;
Chuck Levera246b012005-08-11 16:25:23 -04001168 memcpy(&my_desc, desc, sizeof(my_desc));
1169 my_desc.count = len;
Chuck Lever51971132006-12-05 16:35:19 -05001170 r = xdr_partial_copy_from_skb(rcvbuf, transport->tcp_copied,
Chuck Lever9d292312006-12-05 16:35:41 -05001171 &my_desc, xdr_skb_read_bits);
Chuck Levera246b012005-08-11 16:25:23 -04001172 desc->count -= r;
1173 desc->offset += r;
1174 } else
Chuck Lever51971132006-12-05 16:35:19 -05001175 r = xdr_partial_copy_from_skb(rcvbuf, transport->tcp_copied,
Chuck Lever9d292312006-12-05 16:35:41 -05001176 desc, xdr_skb_read_bits);
Chuck Levera246b012005-08-11 16:25:23 -04001177
1178 if (r > 0) {
Chuck Lever51971132006-12-05 16:35:19 -05001179 transport->tcp_copied += r;
1180 transport->tcp_offset += r;
Chuck Levera246b012005-08-11 16:25:23 -04001181 }
1182 if (r != len) {
1183 /* Error when copying to the receive buffer,
1184 * usually because we weren't able to allocate
1185 * additional buffer pages. All we can do now
Chuck Levere136d092006-12-05 16:35:23 -05001186 * is turn off TCP_RCV_COPY_DATA, so the request
Chuck Levera246b012005-08-11 16:25:23 -04001187 * will not receive any additional updates,
1188 * and time out.
1189 * Any remaining data from this record will
1190 * be discarded.
1191 */
Chuck Levere136d092006-12-05 16:35:23 -05001192 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Lever46121cf2007-01-31 12:14:08 -05001193 dprintk("RPC: XID %08x truncated request\n",
Chuck Lever51971132006-12-05 16:35:19 -05001194 ntohl(transport->tcp_xid));
Chuck Lever46121cf2007-01-31 12:14:08 -05001195 dprintk("RPC: xprt = %p, tcp_copied = %lu, "
1196 "tcp_offset = %u, tcp_reclen = %u\n",
1197 xprt, transport->tcp_copied,
1198 transport->tcp_offset, transport->tcp_reclen);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001199 return;
Chuck Levera246b012005-08-11 16:25:23 -04001200 }
1201
Chuck Lever46121cf2007-01-31 12:14:08 -05001202 dprintk("RPC: XID %08x read %Zd bytes\n",
Chuck Lever51971132006-12-05 16:35:19 -05001203 ntohl(transport->tcp_xid), r);
Chuck Lever46121cf2007-01-31 12:14:08 -05001204 dprintk("RPC: xprt = %p, tcp_copied = %lu, tcp_offset = %u, "
1205 "tcp_reclen = %u\n", xprt, transport->tcp_copied,
1206 transport->tcp_offset, transport->tcp_reclen);
Chuck Levera246b012005-08-11 16:25:23 -04001207
Chuck Lever51971132006-12-05 16:35:19 -05001208 if (transport->tcp_copied == req->rq_private_buf.buflen)
Chuck Levere136d092006-12-05 16:35:23 -05001209 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Lever51971132006-12-05 16:35:19 -05001210 else if (transport->tcp_offset == transport->tcp_reclen) {
Chuck Levere136d092006-12-05 16:35:23 -05001211 if (transport->tcp_flags & TCP_RCV_LAST_FRAG)
1212 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Levera246b012005-08-11 16:25:23 -04001213 }
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001214}
1215
1216/*
1217 * Finds the request corresponding to the RPC xid and invokes the common
1218 * tcp read code to read the data.
1219 */
1220static inline int xs_tcp_read_reply(struct rpc_xprt *xprt,
1221 struct xdr_skb_reader *desc)
1222{
1223 struct sock_xprt *transport =
1224 container_of(xprt, struct sock_xprt, xprt);
1225 struct rpc_rqst *req;
1226
1227 dprintk("RPC: read reply XID %08x\n", ntohl(transport->tcp_xid));
1228
1229 /* Find and lock the request corresponding to this xid */
1230 spin_lock(&xprt->transport_lock);
1231 req = xprt_lookup_rqst(xprt, transport->tcp_xid);
1232 if (!req) {
1233 dprintk("RPC: XID %08x request not found!\n",
1234 ntohl(transport->tcp_xid));
1235 spin_unlock(&xprt->transport_lock);
1236 return -1;
1237 }
1238
1239 xs_tcp_read_common(xprt, desc, req);
1240
Chuck Levere136d092006-12-05 16:35:23 -05001241 if (!(transport->tcp_flags & TCP_RCV_COPY_DATA))
Chuck Lever51971132006-12-05 16:35:19 -05001242 xprt_complete_rqst(req->rq_task, transport->tcp_copied);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001243
Chuck Lever4a0f8c02005-08-11 16:25:32 -04001244 spin_unlock(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001245 return 0;
1246}
1247
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001248#if defined(CONFIG_SUNRPC_BACKCHANNEL)
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001249/*
1250 * Obtains an rpc_rqst previously allocated and invokes the common
1251 * tcp read code to read the data. The result is placed in the callback
1252 * queue.
1253 * If we're unable to obtain the rpc_rqst we schedule the closing of the
1254 * connection and return -1.
1255 */
1256static inline int xs_tcp_read_callback(struct rpc_xprt *xprt,
1257 struct xdr_skb_reader *desc)
1258{
1259 struct sock_xprt *transport =
1260 container_of(xprt, struct sock_xprt, xprt);
1261 struct rpc_rqst *req;
1262
1263 req = xprt_alloc_bc_request(xprt);
1264 if (req == NULL) {
1265 printk(KERN_WARNING "Callback slot table overflowed\n");
1266 xprt_force_disconnect(xprt);
1267 return -1;
1268 }
1269
1270 req->rq_xid = transport->tcp_xid;
1271 dprintk("RPC: read callback XID %08x\n", ntohl(req->rq_xid));
1272 xs_tcp_read_common(xprt, desc, req);
1273
1274 if (!(transport->tcp_flags & TCP_RCV_COPY_DATA)) {
1275 struct svc_serv *bc_serv = xprt->bc_serv;
1276
1277 /*
1278 * Add callback request to callback list. The callback
1279 * service sleeps on the sv_cb_waitq waiting for new
1280 * requests. Wake it up after adding enqueing the
1281 * request.
1282 */
1283 dprintk("RPC: add callback request to list\n");
1284 spin_lock(&bc_serv->sv_cb_lock);
1285 list_add(&req->rq_bc_list, &bc_serv->sv_cb_list);
1286 spin_unlock(&bc_serv->sv_cb_lock);
1287 wake_up(&bc_serv->sv_cb_waitq);
1288 }
1289
1290 req->rq_private_buf.len = transport->tcp_copied;
1291
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 {
1360 /* Read in a new fragment marker if necessary */
1361 /* Can we ever really expect to get completely empty fragments? */
Chuck Levere136d092006-12-05 16:35:23 -05001362 if (transport->tcp_flags & TCP_RCV_COPY_FRAGHDR) {
Chuck Lever9903cd12005-08-11 16:25:26 -04001363 xs_tcp_read_fraghdr(xprt, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001364 continue;
1365 }
1366 /* Read in the xid if necessary */
Chuck Levere136d092006-12-05 16:35:23 -05001367 if (transport->tcp_flags & TCP_RCV_COPY_XID) {
Chuck Lever51971132006-12-05 16:35:19 -05001368 xs_tcp_read_xid(transport, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001369 continue;
1370 }
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001371 /* Read in the call/reply flag */
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001372 if (transport->tcp_flags & TCP_RCV_READ_CALLDIR) {
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001373 xs_tcp_read_calldir(transport, &desc);
1374 continue;
1375 }
Chuck Levera246b012005-08-11 16:25:23 -04001376 /* Read in the request data */
Chuck Levere136d092006-12-05 16:35:23 -05001377 if (transport->tcp_flags & TCP_RCV_COPY_DATA) {
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001378 xs_tcp_read_data(xprt, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001379 continue;
1380 }
1381 /* Skip over any trailing bytes on short reads */
Chuck Lever51971132006-12-05 16:35:19 -05001382 xs_tcp_read_discard(transport, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001383 } while (desc.count);
Chuck Lever46121cf2007-01-31 12:14:08 -05001384 dprintk("RPC: xs_tcp_data_recv done\n");
Chuck Levera246b012005-08-11 16:25:23 -04001385 return len - desc.count;
1386}
1387
Chuck Lever9903cd12005-08-11 16:25:26 -04001388/**
1389 * xs_tcp_data_ready - "data ready" callback for TCP sockets
1390 * @sk: socket with data to read
1391 * @bytes: how much data to read
1392 *
1393 */
1394static void xs_tcp_data_ready(struct sock *sk, int bytes)
Chuck Levera246b012005-08-11 16:25:23 -04001395{
1396 struct rpc_xprt *xprt;
1397 read_descriptor_t rd_desc;
Trond Myklebustff2d7db2008-02-25 21:40:51 -08001398 int read;
Chuck Levera246b012005-08-11 16:25:23 -04001399
Chuck Lever46121cf2007-01-31 12:14:08 -05001400 dprintk("RPC: xs_tcp_data_ready...\n");
1401
Eric Dumazetf064af12010-09-22 12:43:39 +00001402 read_lock_bh(&sk->sk_callback_lock);
Chuck Lever9903cd12005-08-11 16:25:26 -04001403 if (!(xprt = xprt_from_sock(sk)))
Chuck Levera246b012005-08-11 16:25:23 -04001404 goto out;
Chuck Levera246b012005-08-11 16:25:23 -04001405 if (xprt->shutdown)
1406 goto out;
1407
Neil Brown61d0a8e2009-09-23 14:36:37 -04001408 /* Any data means we had a useful conversation, so
1409 * the we don't need to delay the next reconnect
1410 */
1411 if (xprt->reestablish_timeout)
1412 xprt->reestablish_timeout = 0;
1413
Chuck Lever9903cd12005-08-11 16:25:26 -04001414 /* We use rd_desc to pass struct xprt to xs_tcp_data_recv */
Chuck Levera246b012005-08-11 16:25:23 -04001415 rd_desc.arg.data = xprt;
Trond Myklebustff2d7db2008-02-25 21:40:51 -08001416 do {
1417 rd_desc.count = 65536;
1418 read = tcp_read_sock(sk, &rd_desc, xs_tcp_data_recv);
1419 } while (read > 0);
Chuck Levera246b012005-08-11 16:25:23 -04001420out:
Eric Dumazetf064af12010-09-22 12:43:39 +00001421 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001422}
1423
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001424/*
1425 * Do the equivalent of linger/linger2 handling for dealing with
1426 * broken servers that don't close the socket in a timely
1427 * fashion
1428 */
1429static void xs_tcp_schedule_linger_timeout(struct rpc_xprt *xprt,
1430 unsigned long timeout)
1431{
1432 struct sock_xprt *transport;
1433
1434 if (xprt_test_and_set_connecting(xprt))
1435 return;
1436 set_bit(XPRT_CONNECTION_ABORT, &xprt->state);
1437 transport = container_of(xprt, struct sock_xprt, xprt);
1438 queue_delayed_work(rpciod_workqueue, &transport->connect_worker,
1439 timeout);
1440}
1441
1442static void xs_tcp_cancel_linger_timeout(struct rpc_xprt *xprt)
1443{
1444 struct sock_xprt *transport;
1445
1446 transport = container_of(xprt, struct sock_xprt, xprt);
1447
1448 if (!test_bit(XPRT_CONNECTION_ABORT, &xprt->state) ||
1449 !cancel_delayed_work(&transport->connect_worker))
1450 return;
1451 clear_bit(XPRT_CONNECTION_ABORT, &xprt->state);
1452 xprt_clear_connecting(xprt);
1453}
1454
1455static void xs_sock_mark_closed(struct rpc_xprt *xprt)
1456{
1457 smp_mb__before_clear_bit();
1458 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
1459 clear_bit(XPRT_CLOSING, &xprt->state);
1460 smp_mb__after_clear_bit();
1461 /* Mark transport as closed and wake up all pending tasks */
1462 xprt_disconnect_done(xprt);
1463}
1464
Chuck Lever9903cd12005-08-11 16:25:26 -04001465/**
1466 * xs_tcp_state_change - callback to handle TCP socket state changes
1467 * @sk: socket whose state has changed
1468 *
1469 */
1470static void xs_tcp_state_change(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -04001471{
Chuck Lever9903cd12005-08-11 16:25:26 -04001472 struct rpc_xprt *xprt;
Chuck Levera246b012005-08-11 16:25:23 -04001473
Eric Dumazetf064af12010-09-22 12:43:39 +00001474 read_lock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001475 if (!(xprt = xprt_from_sock(sk)))
1476 goto out;
Chuck Lever46121cf2007-01-31 12:14:08 -05001477 dprintk("RPC: xs_tcp_state_change client %p...\n", xprt);
Andy Chittenden669502f2010-08-10 10:19:53 -04001478 dprintk("RPC: state %x conn %d dead %d zapped %d sk_shutdown %d\n",
Chuck Lever46121cf2007-01-31 12:14:08 -05001479 sk->sk_state, xprt_connected(xprt),
1480 sock_flag(sk, SOCK_DEAD),
Andy Chittenden669502f2010-08-10 10:19:53 -04001481 sock_flag(sk, SOCK_ZAPPED),
1482 sk->sk_shutdown);
Chuck Levera246b012005-08-11 16:25:23 -04001483
1484 switch (sk->sk_state) {
1485 case TCP_ESTABLISHED:
Eric Dumazetf064af12010-09-22 12:43:39 +00001486 spin_lock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001487 if (!xprt_test_and_set_connected(xprt)) {
Chuck Lever51971132006-12-05 16:35:19 -05001488 struct sock_xprt *transport = container_of(xprt,
1489 struct sock_xprt, xprt);
1490
Chuck Levera246b012005-08-11 16:25:23 -04001491 /* Reset TCP record info */
Chuck Lever51971132006-12-05 16:35:19 -05001492 transport->tcp_offset = 0;
1493 transport->tcp_reclen = 0;
1494 transport->tcp_copied = 0;
Chuck Levere136d092006-12-05 16:35:23 -05001495 transport->tcp_flags =
1496 TCP_RCV_COPY_FRAGHDR | TCP_RCV_COPY_XID;
Chuck Lever51971132006-12-05 16:35:19 -05001497
Trond Myklebust2a491992009-03-11 14:38:00 -04001498 xprt_wake_pending_tasks(xprt, -EAGAIN);
Chuck Levera246b012005-08-11 16:25:23 -04001499 }
Eric Dumazetf064af12010-09-22 12:43:39 +00001500 spin_unlock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001501 break;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001502 case TCP_FIN_WAIT1:
1503 /* The client initiated a shutdown of the socket */
Trond Myklebust7c1d71c2008-04-17 16:52:57 -04001504 xprt->connect_cookie++;
Trond Myklebust663b8852008-01-01 18:42:12 -05001505 xprt->reestablish_timeout = 0;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001506 set_bit(XPRT_CLOSING, &xprt->state);
1507 smp_mb__before_clear_bit();
1508 clear_bit(XPRT_CONNECTED, &xprt->state);
Trond Myklebustef803672007-12-31 16:19:17 -05001509 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001510 smp_mb__after_clear_bit();
Trond Myklebust25fe6142009-03-11 14:38:03 -04001511 xs_tcp_schedule_linger_timeout(xprt, xs_tcp_fin_timeout);
Chuck Levera246b012005-08-11 16:25:23 -04001512 break;
Trond Myklebust632e3bd2006-01-03 09:55:55 +01001513 case TCP_CLOSE_WAIT:
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001514 /* The server initiated a shutdown of the socket */
Trond Myklebust66af1e52007-11-06 10:18:36 -05001515 xprt_force_disconnect(xprt);
Trond Myklebust7c1d71c2008-04-17 16:52:57 -04001516 xprt->connect_cookie++;
Trond Myklebust663b8852008-01-01 18:42:12 -05001517 case TCP_CLOSING:
1518 /*
1519 * If the server closed down the connection, make sure that
1520 * we back off before reconnecting
1521 */
1522 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
1523 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001524 break;
1525 case TCP_LAST_ACK:
Trond Myklebust670f9452009-03-11 14:37:58 -04001526 set_bit(XPRT_CLOSING, &xprt->state);
Trond Myklebust25fe6142009-03-11 14:38:03 -04001527 xs_tcp_schedule_linger_timeout(xprt, xs_tcp_fin_timeout);
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001528 smp_mb__before_clear_bit();
1529 clear_bit(XPRT_CONNECTED, &xprt->state);
1530 smp_mb__after_clear_bit();
1531 break;
1532 case TCP_CLOSE:
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001533 xs_tcp_cancel_linger_timeout(xprt);
1534 xs_sock_mark_closed(xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001535 }
1536 out:
Eric Dumazetf064af12010-09-22 12:43:39 +00001537 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001538}
1539
Chuck Lever9903cd12005-08-11 16:25:26 -04001540/**
Trond Myklebust482f32e2009-03-11 14:38:00 -04001541 * xs_error_report - callback mainly for catching socket errors
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04001542 * @sk: socket
1543 */
Trond Myklebust482f32e2009-03-11 14:38:00 -04001544static void xs_error_report(struct sock *sk)
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04001545{
1546 struct rpc_xprt *xprt;
1547
Eric Dumazetf064af12010-09-22 12:43:39 +00001548 read_lock_bh(&sk->sk_callback_lock);
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04001549 if (!(xprt = xprt_from_sock(sk)))
1550 goto out;
1551 dprintk("RPC: %s client %p...\n"
1552 "RPC: error %d\n",
1553 __func__, xprt, sk->sk_err);
Trond Myklebust482f32e2009-03-11 14:38:00 -04001554 xprt_wake_pending_tasks(xprt, -EAGAIN);
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04001555out:
Eric Dumazetf064af12010-09-22 12:43:39 +00001556 read_unlock_bh(&sk->sk_callback_lock);
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04001557}
1558
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001559static void xs_write_space(struct sock *sk)
1560{
1561 struct socket *sock;
1562 struct rpc_xprt *xprt;
1563
1564 if (unlikely(!(sock = sk->sk_socket)))
1565 return;
1566 clear_bit(SOCK_NOSPACE, &sock->flags);
1567
1568 if (unlikely(!(xprt = xprt_from_sock(sk))))
1569 return;
1570 if (test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags) == 0)
1571 return;
1572
1573 xprt_write_space(xprt);
1574}
1575
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04001576/**
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001577 * xs_udp_write_space - callback invoked when socket buffer space
1578 * becomes available
Chuck Lever9903cd12005-08-11 16:25:26 -04001579 * @sk: socket whose state has changed
1580 *
Chuck Levera246b012005-08-11 16:25:23 -04001581 * Called when more output buffer space is available for this socket.
1582 * We try not to wake our writers until they can make "significant"
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001583 * progress, otherwise we'll waste resources thrashing kernel_sendmsg
Chuck Levera246b012005-08-11 16:25:23 -04001584 * with a bunch of small requests.
1585 */
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001586static void xs_udp_write_space(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -04001587{
Eric Dumazetf064af12010-09-22 12:43:39 +00001588 read_lock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001589
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001590 /* from net/core/sock.c:sock_def_write_space */
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001591 if (sock_writeable(sk))
1592 xs_write_space(sk);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001593
Eric Dumazetf064af12010-09-22 12:43:39 +00001594 read_unlock_bh(&sk->sk_callback_lock);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001595}
Chuck Levera246b012005-08-11 16:25:23 -04001596
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001597/**
1598 * xs_tcp_write_space - callback invoked when socket buffer space
1599 * becomes available
1600 * @sk: socket whose state has changed
1601 *
1602 * Called when more output buffer space is available for this socket.
1603 * We try not to wake our writers until they can make "significant"
1604 * progress, otherwise we'll waste resources thrashing kernel_sendmsg
1605 * with a bunch of small requests.
1606 */
1607static void xs_tcp_write_space(struct sock *sk)
1608{
Eric Dumazetf064af12010-09-22 12:43:39 +00001609 read_lock_bh(&sk->sk_callback_lock);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001610
1611 /* from net/core/stream.c:sk_stream_write_space */
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001612 if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk))
1613 xs_write_space(sk);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001614
Eric Dumazetf064af12010-09-22 12:43:39 +00001615 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001616}
1617
Chuck Lever470056c2005-08-25 16:25:56 -07001618static void xs_udp_do_set_buffer_size(struct rpc_xprt *xprt)
Chuck Levera246b012005-08-11 16:25:23 -04001619{
Chuck Leveree0ac0c2006-12-05 16:35:15 -05001620 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
1621 struct sock *sk = transport->inet;
Chuck Levera246b012005-08-11 16:25:23 -04001622
Chuck Lever7c6e0662006-12-05 16:35:30 -05001623 if (transport->rcvsize) {
Chuck Levera246b012005-08-11 16:25:23 -04001624 sk->sk_userlocks |= SOCK_RCVBUF_LOCK;
Chuck Lever7c6e0662006-12-05 16:35:30 -05001625 sk->sk_rcvbuf = transport->rcvsize * xprt->max_reqs * 2;
Chuck Levera246b012005-08-11 16:25:23 -04001626 }
Chuck Lever7c6e0662006-12-05 16:35:30 -05001627 if (transport->sndsize) {
Chuck Levera246b012005-08-11 16:25:23 -04001628 sk->sk_userlocks |= SOCK_SNDBUF_LOCK;
Chuck Lever7c6e0662006-12-05 16:35:30 -05001629 sk->sk_sndbuf = transport->sndsize * xprt->max_reqs * 2;
Chuck Levera246b012005-08-11 16:25:23 -04001630 sk->sk_write_space(sk);
1631 }
1632}
1633
Chuck Lever43118c22005-08-25 16:25:49 -07001634/**
Chuck Lever470056c2005-08-25 16:25:56 -07001635 * xs_udp_set_buffer_size - set send and receive limits
Chuck Lever43118c22005-08-25 16:25:49 -07001636 * @xprt: generic transport
Chuck Lever470056c2005-08-25 16:25:56 -07001637 * @sndsize: requested size of send buffer, in bytes
1638 * @rcvsize: requested size of receive buffer, in bytes
Chuck Lever43118c22005-08-25 16:25:49 -07001639 *
Chuck Lever470056c2005-08-25 16:25:56 -07001640 * Set socket send and receive buffer size limits.
Chuck Lever43118c22005-08-25 16:25:49 -07001641 */
Chuck Lever470056c2005-08-25 16:25:56 -07001642static void xs_udp_set_buffer_size(struct rpc_xprt *xprt, size_t sndsize, size_t rcvsize)
Chuck Lever43118c22005-08-25 16:25:49 -07001643{
Chuck Lever7c6e0662006-12-05 16:35:30 -05001644 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
1645
1646 transport->sndsize = 0;
Chuck Lever470056c2005-08-25 16:25:56 -07001647 if (sndsize)
Chuck Lever7c6e0662006-12-05 16:35:30 -05001648 transport->sndsize = sndsize + 1024;
1649 transport->rcvsize = 0;
Chuck Lever470056c2005-08-25 16:25:56 -07001650 if (rcvsize)
Chuck Lever7c6e0662006-12-05 16:35:30 -05001651 transport->rcvsize = rcvsize + 1024;
Chuck Lever470056c2005-08-25 16:25:56 -07001652
1653 xs_udp_do_set_buffer_size(xprt);
Chuck Lever43118c22005-08-25 16:25:49 -07001654}
1655
Chuck Lever46c0ee82005-08-25 16:25:52 -07001656/**
1657 * xs_udp_timer - called when a retransmit timeout occurs on a UDP transport
1658 * @task: task that timed out
1659 *
1660 * Adjust the congestion window after a retransmit timeout has occurred.
1661 */
1662static void xs_udp_timer(struct rpc_task *task)
1663{
1664 xprt_adjust_cwnd(task, -ETIMEDOUT);
1665}
1666
Chuck Leverb85d8802006-05-25 01:40:49 -04001667static unsigned short xs_get_random_port(void)
1668{
1669 unsigned short range = xprt_max_resvport - xprt_min_resvport;
1670 unsigned short rand = (unsigned short) net_random() % range;
1671 return rand + xprt_min_resvport;
1672}
1673
Chuck Lever92200412006-01-03 09:55:51 +01001674/**
1675 * xs_set_port - reset the port number in the remote endpoint address
1676 * @xprt: generic transport
1677 * @port: new port number
1678 *
1679 */
1680static void xs_set_port(struct rpc_xprt *xprt, unsigned short port)
1681{
Chuck Lever46121cf2007-01-31 12:14:08 -05001682 dprintk("RPC: setting port for xprt %p to %u\n", xprt, port);
Chuck Leverc4efcb12006-08-22 20:06:19 -04001683
Chuck Lever9dc3b092009-08-09 15:09:46 -04001684 rpc_set_port(xs_addr(xprt), port);
1685 xs_update_peer_port(xprt);
Chuck Lever92200412006-01-03 09:55:51 +01001686}
1687
Pavel Emelyanov5d4ec932010-10-04 16:51:23 +04001688static unsigned short xs_get_srcport(struct sock_xprt *transport)
Trond Myklebust67a391d2007-11-05 17:40:58 -05001689{
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001690 unsigned short port = transport->srcport;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001691
1692 if (port == 0 && transport->xprt.resvport)
1693 port = xs_get_random_port();
1694 return port;
1695}
1696
Pavel Emelyanovbaaf4e42010-10-04 16:51:56 +04001697static unsigned short xs_next_srcport(struct sock_xprt *transport, unsigned short port)
Trond Myklebust67a391d2007-11-05 17:40:58 -05001698{
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001699 if (transport->srcport != 0)
1700 transport->srcport = 0;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001701 if (!transport->xprt.resvport)
1702 return 0;
1703 if (port <= xprt_min_resvport || port > xprt_max_resvport)
1704 return xprt_max_resvport;
1705 return --port;
1706}
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001707static int xs_bind(struct sock_xprt *transport, struct socket *sock)
Chuck Levera246b012005-08-11 16:25:23 -04001708{
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001709 struct sockaddr_storage myaddr;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001710 int err, nloop = 0;
Pavel Emelyanov5d4ec932010-10-04 16:51:23 +04001711 unsigned short port = xs_get_srcport(transport);
Trond Myklebust67a391d2007-11-05 17:40:58 -05001712 unsigned short last;
Chuck Levera246b012005-08-11 16:25:23 -04001713
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001714 memcpy(&myaddr, &transport->srcaddr, transport->xprt.addrlen);
Chuck Levera246b012005-08-11 16:25:23 -04001715 do {
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001716 rpc_set_port((struct sockaddr *)&myaddr, port);
1717 err = kernel_bind(sock, (struct sockaddr *)&myaddr,
1718 transport->xprt.addrlen);
Trond Myklebust67a391d2007-11-05 17:40:58 -05001719 if (port == 0)
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +02001720 break;
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 Lever4232e8632010-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{
1747 xprt_set_bound(task->tk_xprt);
1748}
1749
1750static void xs_local_set_port(struct rpc_xprt *xprt, unsigned short port)
1751{
1752}
Chuck Levera246b012005-08-11 16:25:23 -04001753
Peter Zijlstraed075362006-12-06 20:35:24 -08001754#ifdef CONFIG_DEBUG_LOCK_ALLOC
1755static struct lock_class_key xs_key[2];
1756static struct lock_class_key xs_slock_key[2];
1757
Chuck Lever176e21e2011-05-09 15:22:44 -04001758static inline void xs_reclassify_socketu(struct socket *sock)
1759{
1760 struct sock *sk = sock->sk;
1761
1762 BUG_ON(sock_owned_by_user(sk));
1763 sock_lock_init_class_and_name(sk, "slock-AF_LOCAL-RPC",
1764 &xs_slock_key[1], "sk_lock-AF_LOCAL-RPC", &xs_key[1]);
1765}
1766
Chuck Lever8945ee52007-08-06 11:58:04 -04001767static inline void xs_reclassify_socket4(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -08001768{
1769 struct sock *sk = sock->sk;
Chuck Lever8945ee52007-08-06 11:58:04 -04001770
John Heffner02b3d342007-09-12 10:42:12 +02001771 BUG_ON(sock_owned_by_user(sk));
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
Linus Torvaldsf4921af2007-10-15 10:46:05 -07001780 BUG_ON(sock_owned_by_user(sk));
Chuck Lever8945ee52007-08-06 11:58:04 -04001781 sock_lock_init_class_and_name(sk, "slock-AF_INET6-RPC",
1782 &xs_slock_key[1], "sk_lock-AF_INET6-RPC", &xs_key[1]);
Peter Zijlstraed075362006-12-06 20:35:24 -08001783}
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001784
1785static inline void xs_reclassify_socket(int family, struct socket *sock)
1786{
Chuck Lever4232e8632010-10-20 11:52:51 -04001787 switch (family) {
Chuck Lever176e21e2011-05-09 15:22:44 -04001788 case AF_LOCAL:
1789 xs_reclassify_socketu(sock);
1790 break;
Chuck Lever4232e8632010-10-20 11:52:51 -04001791 case AF_INET:
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001792 xs_reclassify_socket4(sock);
Chuck Lever4232e8632010-10-20 11:52:51 -04001793 break;
1794 case AF_INET6:
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001795 xs_reclassify_socket6(sock);
Chuck Lever4232e8632010-10-20 11:52:51 -04001796 break;
1797 }
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001798}
Peter Zijlstraed075362006-12-06 20:35:24 -08001799#else
Chuck Lever176e21e2011-05-09 15:22:44 -04001800static inline void xs_reclassify_socketu(struct socket *sock)
1801{
1802}
1803
Chuck Lever8945ee52007-08-06 11:58:04 -04001804static inline void xs_reclassify_socket4(struct socket *sock)
1805{
1806}
1807
1808static inline void xs_reclassify_socket6(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -08001809{
1810}
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001811
1812static inline void xs_reclassify_socket(int family, struct socket *sock)
1813{
1814}
Peter Zijlstraed075362006-12-06 20:35:24 -08001815#endif
1816
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001817static struct socket *xs_create_sock(struct rpc_xprt *xprt,
1818 struct sock_xprt *transport, int family, int type, int protocol)
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001819{
1820 struct socket *sock;
1821 int err;
1822
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001823 err = __sock_create(xprt->xprt_net, family, type, protocol, &sock, 1);
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001824 if (err < 0) {
1825 dprintk("RPC: can't create %d transport socket (%d).\n",
1826 protocol, -err);
1827 goto out;
1828 }
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001829 xs_reclassify_socket(family, sock);
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001830
Ben Hutchings4cea2882011-02-22 21:54:34 +00001831 err = xs_bind(transport, sock);
1832 if (err) {
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001833 sock_release(sock);
1834 goto out;
1835 }
1836
1837 return sock;
1838out:
1839 return ERR_PTR(err);
1840}
1841
Chuck Lever176e21e2011-05-09 15:22:44 -04001842static int xs_local_finish_connecting(struct rpc_xprt *xprt,
1843 struct socket *sock)
1844{
1845 struct sock_xprt *transport = container_of(xprt, struct sock_xprt,
1846 xprt);
1847
1848 if (!transport->inet) {
1849 struct sock *sk = sock->sk;
1850
1851 write_lock_bh(&sk->sk_callback_lock);
1852
1853 xs_save_old_callbacks(transport, sk);
1854
1855 sk->sk_user_data = xprt;
1856 sk->sk_data_ready = xs_local_data_ready;
1857 sk->sk_write_space = xs_udp_write_space;
1858 sk->sk_error_report = xs_error_report;
1859 sk->sk_allocation = GFP_ATOMIC;
1860
1861 xprt_clear_connected(xprt);
1862
1863 /* Reset to new socket */
1864 transport->sock = sock;
1865 transport->inet = sk;
1866
1867 write_unlock_bh(&sk->sk_callback_lock);
1868 }
1869
1870 /* Tell the socket layer to start connecting... */
1871 xprt->stat.connect_count++;
1872 xprt->stat.connect_start = jiffies;
1873 return kernel_connect(sock, xs_addr(xprt), xprt->addrlen, 0);
1874}
1875
1876/**
1877 * xs_local_setup_socket - create AF_LOCAL socket, connect to a local endpoint
1878 * @xprt: RPC transport to connect
1879 * @transport: socket transport to connect
1880 * @create_sock: function to create a socket of the correct type
1881 *
1882 * Invoked by a work queue tasklet.
1883 */
1884static void xs_local_setup_socket(struct work_struct *work)
1885{
1886 struct sock_xprt *transport =
1887 container_of(work, struct sock_xprt, connect_worker.work);
1888 struct rpc_xprt *xprt = &transport->xprt;
1889 struct socket *sock;
1890 int status = -EIO;
1891
1892 if (xprt->shutdown)
1893 goto out;
1894
1895 clear_bit(XPRT_CONNECTION_ABORT, &xprt->state);
1896 status = __sock_create(xprt->xprt_net, AF_LOCAL,
1897 SOCK_STREAM, 0, &sock, 1);
1898 if (status < 0) {
1899 dprintk("RPC: can't create AF_LOCAL "
1900 "transport socket (%d).\n", -status);
1901 goto out;
1902 }
1903 xs_reclassify_socketu(sock);
1904
1905 dprintk("RPC: worker connecting xprt %p via AF_LOCAL to %s\n",
1906 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
1907
1908 status = xs_local_finish_connecting(xprt, sock);
1909 switch (status) {
1910 case 0:
1911 dprintk("RPC: xprt %p connected to %s\n",
1912 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
1913 xprt_set_connected(xprt);
1914 break;
1915 case -ENOENT:
1916 dprintk("RPC: xprt %p: socket %s does not exist\n",
1917 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
1918 break;
1919 default:
1920 printk(KERN_ERR "%s: unhandled error (%d) connecting to %s\n",
1921 __func__, -status,
1922 xprt->address_strings[RPC_DISPLAY_ADDR]);
1923 }
1924
1925out:
1926 xprt_clear_connecting(xprt);
1927 xprt_wake_pending_tasks(xprt, status);
1928}
1929
Chuck Lever16be2d22007-08-06 11:57:38 -04001930static void xs_udp_finish_connecting(struct rpc_xprt *xprt, struct socket *sock)
Chuck Levera246b012005-08-11 16:25:23 -04001931{
Chuck Lever16be2d22007-08-06 11:57:38 -04001932 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Leveredb267a2006-08-22 20:06:18 -04001933
Chuck Leveree0ac0c2006-12-05 16:35:15 -05001934 if (!transport->inet) {
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001935 struct sock *sk = sock->sk;
1936
1937 write_lock_bh(&sk->sk_callback_lock);
1938
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04001939 xs_save_old_callbacks(transport, sk);
1940
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001941 sk->sk_user_data = xprt;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001942 sk->sk_data_ready = xs_udp_data_ready;
1943 sk->sk_write_space = xs_udp_write_space;
Trond Myklebust482f32e2009-03-11 14:38:00 -04001944 sk->sk_error_report = xs_error_report;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001945 sk->sk_no_check = UDP_CSUM_NORCV;
Trond Myklebustb079fa7b2005-12-13 16:13:52 -05001946 sk->sk_allocation = GFP_ATOMIC;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001947
1948 xprt_set_connected(xprt);
1949
1950 /* Reset to new socket */
Chuck Leveree0ac0c2006-12-05 16:35:15 -05001951 transport->sock = sock;
1952 transport->inet = sk;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001953
1954 write_unlock_bh(&sk->sk_callback_lock);
1955 }
Chuck Lever470056c2005-08-25 16:25:56 -07001956 xs_udp_do_set_buffer_size(xprt);
Chuck Lever16be2d22007-08-06 11:57:38 -04001957}
1958
Pavel Emelyanov8c14ff22010-10-04 16:58:02 +04001959static void xs_udp_setup_socket(struct work_struct *work)
Chuck Levera246b012005-08-11 16:25:23 -04001960{
1961 struct sock_xprt *transport =
1962 container_of(work, struct sock_xprt, connect_worker.work);
1963 struct rpc_xprt *xprt = &transport->xprt;
1964 struct socket *sock = transport->sock;
Pavel Emelyanovb65c0312010-10-04 16:53:46 +04001965 int status = -EIO;
Chuck Levera246b012005-08-11 16:25:23 -04001966
Trond Myklebust01d37c42009-03-11 14:09:39 -04001967 if (xprt->shutdown)
Chuck Lever9903cd12005-08-11 16:25:26 -04001968 goto out;
1969
Chuck Levera246b012005-08-11 16:25:23 -04001970 /* Start by resetting any existing state */
Chuck Leverfe315e72009-03-11 14:10:21 -04001971 xs_reset_transport(transport);
Pavel Emelyanov8c14ff22010-10-04 16:58:02 +04001972 sock = xs_create_sock(xprt, transport,
1973 xs_addr(xprt)->sa_family, SOCK_DGRAM, IPPROTO_UDP);
Pavel Emelyanovb65c0312010-10-04 16:53:46 +04001974 if (IS_ERR(sock))
Chuck Levera246b012005-08-11 16:25:23 -04001975 goto out;
Chuck Lever68e220b2007-08-06 11:57:48 -04001976
Chuck Leverc740eff2009-08-09 15:09:46 -04001977 dprintk("RPC: worker connecting xprt %p via %s to "
1978 "%s (port %s)\n", xprt,
1979 xprt->address_strings[RPC_DISPLAY_PROTO],
1980 xprt->address_strings[RPC_DISPLAY_ADDR],
1981 xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever68e220b2007-08-06 11:57:48 -04001982
1983 xs_udp_finish_connecting(xprt, sock);
Chuck Levera246b012005-08-11 16:25:23 -04001984 status = 0;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001985out:
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001986 xprt_clear_connecting(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001987 xprt_wake_pending_tasks(xprt, status);
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001988}
1989
Chuck Lever3167e122005-08-25 16:25:55 -07001990/*
1991 * We need to preserve the port number so the reply cache on the server can
1992 * find our cached RPC replies when we get around to reconnecting.
1993 */
Pavel Emelyanov58dddac2010-10-04 16:52:55 +04001994static void xs_abort_connection(struct sock_xprt *transport)
Chuck Lever3167e122005-08-25 16:25:55 -07001995{
1996 int result;
Chuck Lever3167e122005-08-25 16:25:55 -07001997 struct sockaddr any;
1998
Pavel Emelyanov58dddac2010-10-04 16:52:55 +04001999 dprintk("RPC: disconnecting xprt %p to reuse port\n", transport);
Chuck Lever3167e122005-08-25 16:25:55 -07002000
2001 /*
2002 * Disconnect the transport socket by doing a connect operation
2003 * with AF_UNSPEC. This should return immediately...
2004 */
2005 memset(&any, 0, sizeof(any));
2006 any.sa_family = AF_UNSPEC;
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002007 result = kernel_connect(transport->sock, &any, sizeof(any), 0);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002008 if (!result)
Pavel Emelyanov58dddac2010-10-04 16:52:55 +04002009 xs_sock_mark_closed(&transport->xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002010 else
Chuck Lever46121cf2007-01-31 12:14:08 -05002011 dprintk("RPC: AF_UNSPEC connect return code %d\n",
Chuck Lever3167e122005-08-25 16:25:55 -07002012 result);
2013}
2014
Pavel Emelyanov58dddac2010-10-04 16:52:55 +04002015static void xs_tcp_reuse_connection(struct sock_xprt *transport)
Trond Myklebust40d25492009-03-11 14:37:58 -04002016{
2017 unsigned int state = transport->inet->sk_state;
2018
Andy Chittenden669502f2010-08-10 10:19:53 -04002019 if (state == TCP_CLOSE && transport->sock->state == SS_UNCONNECTED) {
2020 /* we don't need to abort the connection if the socket
2021 * hasn't undergone a shutdown
2022 */
2023 if (transport->inet->sk_shutdown == 0)
2024 return;
2025 dprintk("RPC: %s: TCP_CLOSEd and sk_shutdown set to %d\n",
2026 __func__, transport->inet->sk_shutdown);
2027 }
2028 if ((1 << state) & (TCPF_ESTABLISHED|TCPF_SYN_SENT)) {
2029 /* we don't need to abort the connection if the socket
2030 * hasn't undergone a shutdown
2031 */
2032 if (transport->inet->sk_shutdown == 0)
2033 return;
2034 dprintk("RPC: %s: ESTABLISHED/SYN_SENT "
2035 "sk_shutdown set to %d\n",
2036 __func__, transport->inet->sk_shutdown);
2037 }
Pavel Emelyanov58dddac2010-10-04 16:52:55 +04002038 xs_abort_connection(transport);
Trond Myklebust40d25492009-03-11 14:37:58 -04002039}
2040
Chuck Lever16be2d22007-08-06 11:57:38 -04002041static int xs_tcp_finish_connecting(struct rpc_xprt *xprt, struct socket *sock)
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002042{
Chuck Lever16be2d22007-08-06 11:57:38 -04002043 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebustfe19a962011-03-18 20:21:23 -04002044 int ret = -ENOTCONN;
Chuck Leveredb267a2006-08-22 20:06:18 -04002045
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002046 if (!transport->inet) {
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002047 struct sock *sk = sock->sk;
2048
2049 write_lock_bh(&sk->sk_callback_lock);
2050
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04002051 xs_save_old_callbacks(transport, sk);
2052
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002053 sk->sk_user_data = xprt;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002054 sk->sk_data_ready = xs_tcp_data_ready;
2055 sk->sk_state_change = xs_tcp_state_change;
2056 sk->sk_write_space = xs_tcp_write_space;
Trond Myklebust482f32e2009-03-11 14:38:00 -04002057 sk->sk_error_report = xs_error_report;
Trond Myklebustb079fa7b2005-12-13 16:13:52 -05002058 sk->sk_allocation = GFP_ATOMIC;
Chuck Lever3167e122005-08-25 16:25:55 -07002059
2060 /* socket options */
2061 sk->sk_userlocks |= SOCK_BINDPORT_LOCK;
2062 sock_reset_flag(sk, SOCK_LINGER);
2063 tcp_sk(sk)->linger2 = 0;
2064 tcp_sk(sk)->nonagle |= TCP_NAGLE_OFF;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002065
2066 xprt_clear_connected(xprt);
2067
2068 /* Reset to new socket */
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002069 transport->sock = sock;
2070 transport->inet = sk;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002071
2072 write_unlock_bh(&sk->sk_callback_lock);
2073 }
2074
Trond Myklebust01d37c42009-03-11 14:09:39 -04002075 if (!xprt_bound(xprt))
Trond Myklebustfe19a962011-03-18 20:21:23 -04002076 goto out;
Trond Myklebust01d37c42009-03-11 14:09:39 -04002077
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002078 /* Tell the socket layer to start connecting... */
Chuck Lever262ca072006-03-20 13:44:16 -05002079 xprt->stat.connect_count++;
2080 xprt->stat.connect_start = jiffies;
Trond Myklebustfe19a962011-03-18 20:21:23 -04002081 ret = kernel_connect(sock, xs_addr(xprt), xprt->addrlen, O_NONBLOCK);
2082 switch (ret) {
2083 case 0:
2084 case -EINPROGRESS:
2085 /* SYN_SENT! */
2086 xprt->connect_cookie++;
2087 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
2088 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
2089 }
2090out:
2091 return ret;
Chuck Lever16be2d22007-08-06 11:57:38 -04002092}
2093
2094/**
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002095 * xs_tcp_setup_socket - create a TCP socket and connect to a remote endpoint
2096 * @xprt: RPC transport to connect
2097 * @transport: socket transport to connect
2098 * @create_sock: function to create a socket of the correct type
Chuck Lever16be2d22007-08-06 11:57:38 -04002099 *
2100 * Invoked by a work queue tasklet.
2101 */
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002102static void xs_tcp_setup_socket(struct work_struct *work)
Chuck Lever16be2d22007-08-06 11:57:38 -04002103{
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002104 struct sock_xprt *transport =
2105 container_of(work, struct sock_xprt, connect_worker.work);
Chuck Lever16be2d22007-08-06 11:57:38 -04002106 struct socket *sock = transport->sock;
Pavel Emelyanova9f5f0f2010-10-04 16:52:25 +04002107 struct rpc_xprt *xprt = &transport->xprt;
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002108 int status = -EIO;
Chuck Lever16be2d22007-08-06 11:57:38 -04002109
Trond Myklebust01d37c42009-03-11 14:09:39 -04002110 if (xprt->shutdown)
Chuck Lever16be2d22007-08-06 11:57:38 -04002111 goto out;
2112
2113 if (!sock) {
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002114 clear_bit(XPRT_CONNECTION_ABORT, &xprt->state);
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002115 sock = xs_create_sock(xprt, transport,
2116 xs_addr(xprt)->sa_family, SOCK_STREAM, IPPROTO_TCP);
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002117 if (IS_ERR(sock)) {
2118 status = PTR_ERR(sock);
Chuck Lever16be2d22007-08-06 11:57:38 -04002119 goto out;
2120 }
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002121 } else {
2122 int abort_and_exit;
2123
2124 abort_and_exit = test_and_clear_bit(XPRT_CONNECTION_ABORT,
2125 &xprt->state);
Chuck Lever16be2d22007-08-06 11:57:38 -04002126 /* "close" the socket, preserving the local port */
Pavel Emelyanov58dddac2010-10-04 16:52:55 +04002127 xs_tcp_reuse_connection(transport);
Chuck Lever16be2d22007-08-06 11:57:38 -04002128
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002129 if (abort_and_exit)
2130 goto out_eagain;
2131 }
2132
Chuck Leverc740eff2009-08-09 15:09:46 -04002133 dprintk("RPC: worker connecting xprt %p via %s to "
2134 "%s (port %s)\n", xprt,
2135 xprt->address_strings[RPC_DISPLAY_PROTO],
2136 xprt->address_strings[RPC_DISPLAY_ADDR],
2137 xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever16be2d22007-08-06 11:57:38 -04002138
2139 status = xs_tcp_finish_connecting(xprt, sock);
Chuck Lever46121cf2007-01-31 12:14:08 -05002140 dprintk("RPC: %p connect status %d connected %d sock state %d\n",
2141 xprt, -status, xprt_connected(xprt),
2142 sock->sk->sk_state);
Trond Myklebust2a491992009-03-11 14:38:00 -04002143 switch (status) {
Trond Myklebustf75e6742009-04-21 17:18:20 -04002144 default:
2145 printk("%s: connect returned unhandled error %d\n",
2146 __func__, status);
2147 case -EADDRNOTAVAIL:
2148 /* We're probably in TIME_WAIT. Get rid of existing socket,
2149 * and retry
2150 */
2151 set_bit(XPRT_CONNECTION_CLOSE, &xprt->state);
2152 xprt_force_disconnect(xprt);
Trond Myklebust88b5ed72009-06-17 13:22:57 -07002153 break;
Trond Myklebust8a2cec22009-03-11 14:38:01 -04002154 case -ECONNREFUSED:
2155 case -ECONNRESET:
2156 case -ENETUNREACH:
2157 /* retry with existing socket, after a delay */
Trond Myklebust2a491992009-03-11 14:38:00 -04002158 case 0:
2159 case -EINPROGRESS:
2160 case -EALREADY:
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002161 xprt_clear_connecting(xprt);
2162 return;
Trond Myklebust9fcfe0c2010-03-02 13:06:21 -05002163 case -EINVAL:
2164 /* Happens, for instance, if the user specified a link
2165 * local IPv6 address without a scope-id.
2166 */
2167 goto out;
Chuck Levera246b012005-08-11 16:25:23 -04002168 }
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002169out_eagain:
Trond Myklebust2a491992009-03-11 14:38:00 -04002170 status = -EAGAIN;
Chuck Levera246b012005-08-11 16:25:23 -04002171out:
Chuck Lever2226feb2005-08-11 16:25:38 -04002172 xprt_clear_connecting(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002173 xprt_wake_pending_tasks(xprt, status);
Chuck Levera246b012005-08-11 16:25:23 -04002174}
2175
Chuck Lever68e220b2007-08-06 11:57:48 -04002176/**
Chuck Lever9903cd12005-08-11 16:25:26 -04002177 * xs_connect - connect a socket to a remote endpoint
2178 * @task: address of RPC task that manages state of connect request
2179 *
2180 * TCP: If the remote end dropped the connection, delay reconnecting.
Chuck Lever03bf4b72005-08-25 16:25:55 -07002181 *
2182 * UDP socket connects are synchronous, but we use a work queue anyway
2183 * to guarantee that even unprivileged user processes can set up a
2184 * socket on a privileged port.
2185 *
2186 * If a UDP socket connect fails, the delay behavior here prevents
2187 * retry floods (hard mounts).
Chuck Lever9903cd12005-08-11 16:25:26 -04002188 */
2189static void xs_connect(struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -04002190{
2191 struct rpc_xprt *xprt = task->tk_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002192 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002193
Chuck Lever09a21c42009-12-03 15:58:56 -05002194 if (transport->sock != NULL && !RPC_IS_SOFTCONN(task)) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002195 dprintk("RPC: xs_connect delayed xprt %p for %lu "
2196 "seconds\n",
Chuck Lever03bf4b72005-08-25 16:25:55 -07002197 xprt, xprt->reestablish_timeout / HZ);
Trond Myklebustc1384c92007-06-14 18:00:42 -04002198 queue_delayed_work(rpciod_workqueue,
2199 &transport->connect_worker,
2200 xprt->reestablish_timeout);
Chuck Lever03bf4b72005-08-25 16:25:55 -07002201 xprt->reestablish_timeout <<= 1;
Neil Brown61d0a8e2009-09-23 14:36:37 -04002202 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
2203 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
Chuck Lever03bf4b72005-08-25 16:25:55 -07002204 if (xprt->reestablish_timeout > XS_TCP_MAX_REEST_TO)
2205 xprt->reestablish_timeout = XS_TCP_MAX_REEST_TO;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002206 } else {
Chuck Lever46121cf2007-01-31 12:14:08 -05002207 dprintk("RPC: xs_connect scheduled xprt %p\n", xprt);
Trond Myklebustc1384c92007-06-14 18:00:42 -04002208 queue_delayed_work(rpciod_workqueue,
2209 &transport->connect_worker, 0);
Chuck Levera246b012005-08-11 16:25:23 -04002210 }
2211}
2212
Chuck Lever262ca072006-03-20 13:44:16 -05002213/**
Chuck Lever176e21e2011-05-09 15:22:44 -04002214 * xs_local_print_stats - display AF_LOCAL socket-specifc stats
2215 * @xprt: rpc_xprt struct containing statistics
2216 * @seq: output file
2217 *
2218 */
2219static void xs_local_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2220{
2221 long idle_time = 0;
2222
2223 if (xprt_connected(xprt))
2224 idle_time = (long)(jiffies - xprt->last_used) / HZ;
2225
2226 seq_printf(seq, "\txprt:\tlocal %lu %lu %lu %ld %lu %lu %lu "
Andy Adamson15a45202012-02-14 16:19:18 -05002227 "%llu %llu %lu %llu %llu\n",
Chuck Lever176e21e2011-05-09 15:22:44 -04002228 xprt->stat.bind_count,
2229 xprt->stat.connect_count,
2230 xprt->stat.connect_time,
2231 idle_time,
2232 xprt->stat.sends,
2233 xprt->stat.recvs,
2234 xprt->stat.bad_xids,
2235 xprt->stat.req_u,
Andy Adamson15a45202012-02-14 16:19:18 -05002236 xprt->stat.bklog_u,
2237 xprt->stat.max_slots,
2238 xprt->stat.sending_u,
2239 xprt->stat.pending_u);
Chuck Lever176e21e2011-05-09 15:22:44 -04002240}
2241
2242/**
Chuck Lever262ca072006-03-20 13:44:16 -05002243 * xs_udp_print_stats - display UDP socket-specifc stats
2244 * @xprt: rpc_xprt struct containing statistics
2245 * @seq: output file
2246 *
2247 */
2248static void xs_udp_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2249{
Chuck Leverc8475462006-12-05 16:35:26 -05002250 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
2251
Andy Adamson15a45202012-02-14 16:19:18 -05002252 seq_printf(seq, "\txprt:\tudp %u %lu %lu %lu %lu %llu %llu "
2253 "%lu %llu %llu\n",
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002254 transport->srcport,
Chuck Lever262ca072006-03-20 13:44:16 -05002255 xprt->stat.bind_count,
2256 xprt->stat.sends,
2257 xprt->stat.recvs,
2258 xprt->stat.bad_xids,
2259 xprt->stat.req_u,
Andy Adamson15a45202012-02-14 16:19:18 -05002260 xprt->stat.bklog_u,
2261 xprt->stat.max_slots,
2262 xprt->stat.sending_u,
2263 xprt->stat.pending_u);
Chuck Lever262ca072006-03-20 13:44:16 -05002264}
2265
2266/**
2267 * xs_tcp_print_stats - display TCP socket-specifc stats
2268 * @xprt: rpc_xprt struct containing statistics
2269 * @seq: output file
2270 *
2271 */
2272static void xs_tcp_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2273{
Chuck Leverc8475462006-12-05 16:35:26 -05002274 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262ca072006-03-20 13:44:16 -05002275 long idle_time = 0;
2276
2277 if (xprt_connected(xprt))
2278 idle_time = (long)(jiffies - xprt->last_used) / HZ;
2279
Andy Adamson15a45202012-02-14 16:19:18 -05002280 seq_printf(seq, "\txprt:\ttcp %u %lu %lu %lu %ld %lu %lu %lu "
2281 "%llu %llu %lu %llu %llu\n",
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002282 transport->srcport,
Chuck Lever262ca072006-03-20 13:44:16 -05002283 xprt->stat.bind_count,
2284 xprt->stat.connect_count,
2285 xprt->stat.connect_time,
2286 idle_time,
2287 xprt->stat.sends,
2288 xprt->stat.recvs,
2289 xprt->stat.bad_xids,
2290 xprt->stat.req_u,
Andy Adamson15a45202012-02-14 16:19:18 -05002291 xprt->stat.bklog_u,
2292 xprt->stat.max_slots,
2293 xprt->stat.sending_u,
2294 xprt->stat.pending_u);
Chuck Lever262ca072006-03-20 13:44:16 -05002295}
2296
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002297/*
2298 * Allocate a bunch of pages for a scratch buffer for the rpc code. The reason
2299 * we allocate pages instead doing a kmalloc like rpc_malloc is because we want
2300 * to use the server side send routines.
2301 */
H Hartley Sweeten5a51f132010-01-14 15:38:31 -07002302static void *bc_malloc(struct rpc_task *task, size_t size)
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002303{
2304 struct page *page;
2305 struct rpc_buffer *buf;
2306
2307 BUG_ON(size > PAGE_SIZE - sizeof(struct rpc_buffer));
2308 page = alloc_page(GFP_KERNEL);
2309
2310 if (!page)
2311 return NULL;
2312
2313 buf = page_address(page);
2314 buf->len = PAGE_SIZE;
2315
2316 return buf->data;
2317}
2318
2319/*
2320 * Free the space allocated in the bc_alloc routine
2321 */
H Hartley Sweeten5a51f132010-01-14 15:38:31 -07002322static void bc_free(void *buffer)
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002323{
2324 struct rpc_buffer *buf;
2325
2326 if (!buffer)
2327 return;
2328
2329 buf = container_of(buffer, struct rpc_buffer, data);
2330 free_page((unsigned long)buf);
2331}
2332
2333/*
2334 * Use the svc_sock to send the callback. Must be called with svsk->sk_mutex
2335 * held. Borrows heavily from svc_tcp_sendto and xs_tcp_send_request.
2336 */
2337static int bc_sendto(struct rpc_rqst *req)
2338{
2339 int len;
2340 struct xdr_buf *xbufp = &req->rq_snd_buf;
2341 struct rpc_xprt *xprt = req->rq_xprt;
2342 struct sock_xprt *transport =
2343 container_of(xprt, struct sock_xprt, xprt);
2344 struct socket *sock = transport->sock;
2345 unsigned long headoff;
2346 unsigned long tailoff;
2347
Chuck Lever61677ee2011-05-09 15:22:34 -04002348 xs_encode_stream_record_marker(xbufp);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002349
2350 tailoff = (unsigned long)xbufp->tail[0].iov_base & ~PAGE_MASK;
2351 headoff = (unsigned long)xbufp->head[0].iov_base & ~PAGE_MASK;
2352 len = svc_send_common(sock, xbufp,
2353 virt_to_page(xbufp->head[0].iov_base), headoff,
2354 xbufp->tail[0].iov_base, tailoff);
2355
2356 if (len != xbufp->len) {
2357 printk(KERN_NOTICE "Error sending entire callback!\n");
2358 len = -EAGAIN;
2359 }
2360
2361 return len;
2362}
2363
2364/*
2365 * The send routine. Borrows from svc_send
2366 */
2367static int bc_send_request(struct rpc_task *task)
2368{
2369 struct rpc_rqst *req = task->tk_rqstp;
2370 struct svc_xprt *xprt;
2371 struct svc_sock *svsk;
2372 u32 len;
2373
2374 dprintk("sending request with xid: %08x\n", ntohl(req->rq_xid));
2375 /*
2376 * Get the server socket associated with this callback xprt
2377 */
2378 xprt = req->rq_xprt->bc_xprt;
2379 svsk = container_of(xprt, struct svc_sock, sk_xprt);
2380
2381 /*
2382 * Grab the mutex to serialize data as the connection is shared
2383 * with the fore channel
2384 */
2385 if (!mutex_trylock(&xprt->xpt_mutex)) {
2386 rpc_sleep_on(&xprt->xpt_bc_pending, task, NULL);
2387 if (!mutex_trylock(&xprt->xpt_mutex))
2388 return -EAGAIN;
2389 rpc_wake_up_queued_task(&xprt->xpt_bc_pending, task);
2390 }
2391 if (test_bit(XPT_DEAD, &xprt->xpt_flags))
2392 len = -ENOTCONN;
2393 else
2394 len = bc_sendto(req);
2395 mutex_unlock(&xprt->xpt_mutex);
2396
2397 if (len > 0)
2398 len = 0;
2399
2400 return len;
2401}
2402
2403/*
2404 * The close routine. Since this is client initiated, we do nothing
2405 */
2406
2407static void bc_close(struct rpc_xprt *xprt)
2408{
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002409}
2410
2411/*
2412 * The xprt destroy routine. Again, because this connection is client
2413 * initiated, we do nothing
2414 */
2415
2416static void bc_destroy(struct rpc_xprt *xprt)
2417{
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002418}
2419
Chuck Lever176e21e2011-05-09 15:22:44 -04002420static struct rpc_xprt_ops xs_local_ops = {
2421 .reserve_xprt = xprt_reserve_xprt,
2422 .release_xprt = xs_tcp_release_xprt,
2423 .rpcbind = xs_local_rpcbind,
2424 .set_port = xs_local_set_port,
2425 .connect = xs_connect,
2426 .buf_alloc = rpc_malloc,
2427 .buf_free = rpc_free,
2428 .send_request = xs_local_send_request,
2429 .set_retrans_timeout = xprt_set_retrans_timeout_def,
2430 .close = xs_close,
2431 .destroy = xs_destroy,
2432 .print_stats = xs_local_print_stats,
2433};
2434
Chuck Lever262965f2005-08-11 16:25:56 -04002435static struct rpc_xprt_ops xs_udp_ops = {
Chuck Lever43118c22005-08-25 16:25:49 -07002436 .set_buffer_size = xs_udp_set_buffer_size,
Chuck Lever12a80462005-08-25 16:25:51 -07002437 .reserve_xprt = xprt_reserve_xprt_cong,
Chuck Lever49e9a892005-08-25 16:25:51 -07002438 .release_xprt = xprt_release_xprt_cong,
Chuck Lever45160d62007-07-01 12:13:17 -04002439 .rpcbind = rpcb_getport_async,
Chuck Lever92200412006-01-03 09:55:51 +01002440 .set_port = xs_set_port,
Chuck Lever9903cd12005-08-11 16:25:26 -04002441 .connect = xs_connect,
Chuck Lever02107142006-01-03 09:55:49 +01002442 .buf_alloc = rpc_malloc,
2443 .buf_free = rpc_free,
Chuck Lever262965f2005-08-11 16:25:56 -04002444 .send_request = xs_udp_send_request,
Chuck Leverfe3aca22005-08-25 16:25:50 -07002445 .set_retrans_timeout = xprt_set_retrans_timeout_rtt,
Chuck Lever46c0ee82005-08-25 16:25:52 -07002446 .timer = xs_udp_timer,
Chuck Levera58dd392005-08-25 16:25:53 -07002447 .release_request = xprt_release_rqst_cong,
Chuck Lever262965f2005-08-11 16:25:56 -04002448 .close = xs_close,
2449 .destroy = xs_destroy,
Chuck Lever262ca072006-03-20 13:44:16 -05002450 .print_stats = xs_udp_print_stats,
Chuck Lever262965f2005-08-11 16:25:56 -04002451};
2452
2453static struct rpc_xprt_ops xs_tcp_ops = {
Chuck Lever12a80462005-08-25 16:25:51 -07002454 .reserve_xprt = xprt_reserve_xprt,
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04002455 .release_xprt = xs_tcp_release_xprt,
Chuck Lever45160d62007-07-01 12:13:17 -04002456 .rpcbind = rpcb_getport_async,
Chuck Lever92200412006-01-03 09:55:51 +01002457 .set_port = xs_set_port,
Trond Myklebust0b9e7942010-04-16 16:41:57 -04002458 .connect = xs_connect,
Chuck Lever02107142006-01-03 09:55:49 +01002459 .buf_alloc = rpc_malloc,
2460 .buf_free = rpc_free,
Chuck Lever262965f2005-08-11 16:25:56 -04002461 .send_request = xs_tcp_send_request,
Chuck Leverfe3aca22005-08-25 16:25:50 -07002462 .set_retrans_timeout = xprt_set_retrans_timeout_def,
Trond Myklebustf75e6742009-04-21 17:18:20 -04002463 .close = xs_tcp_close,
Chuck Lever9903cd12005-08-11 16:25:26 -04002464 .destroy = xs_destroy,
Chuck Lever262ca072006-03-20 13:44:16 -05002465 .print_stats = xs_tcp_print_stats,
Chuck Levera246b012005-08-11 16:25:23 -04002466};
2467
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002468/*
2469 * The rpc_xprt_ops for the server backchannel
2470 */
2471
2472static struct rpc_xprt_ops bc_tcp_ops = {
2473 .reserve_xprt = xprt_reserve_xprt,
2474 .release_xprt = xprt_release_xprt,
J. Bruce Fields92769102012-03-23 15:25:03 -04002475 .rpcbind = xs_local_rpcbind,
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002476 .buf_alloc = bc_malloc,
2477 .buf_free = bc_free,
2478 .send_request = bc_send_request,
2479 .set_retrans_timeout = xprt_set_retrans_timeout_def,
2480 .close = bc_close,
2481 .destroy = bc_destroy,
2482 .print_stats = xs_tcp_print_stats,
2483};
2484
Chuck Lever92476852010-10-20 11:53:01 -04002485static int xs_init_anyaddr(const int family, struct sockaddr *sap)
2486{
2487 static const struct sockaddr_in sin = {
2488 .sin_family = AF_INET,
2489 .sin_addr.s_addr = htonl(INADDR_ANY),
2490 };
2491 static const struct sockaddr_in6 sin6 = {
2492 .sin6_family = AF_INET6,
2493 .sin6_addr = IN6ADDR_ANY_INIT,
2494 };
2495
2496 switch (family) {
Chuck Lever176e21e2011-05-09 15:22:44 -04002497 case AF_LOCAL:
2498 break;
Chuck Lever92476852010-10-20 11:53:01 -04002499 case AF_INET:
2500 memcpy(sap, &sin, sizeof(sin));
2501 break;
2502 case AF_INET6:
2503 memcpy(sap, &sin6, sizeof(sin6));
2504 break;
2505 default:
2506 dprintk("RPC: %s: Bad address family\n", __func__);
2507 return -EAFNOSUPPORT;
2508 }
2509 return 0;
2510}
2511
\"Talpey, Thomas\3c341b0b2007-09-10 13:47:07 -04002512static struct rpc_xprt *xs_setup_xprt(struct xprt_create *args,
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002513 unsigned int slot_table_size,
2514 unsigned int max_slot_table_size)
Chuck Leverc8541ec2006-10-17 14:44:27 -04002515{
2516 struct rpc_xprt *xprt;
Chuck Leverffc2e512006-12-05 16:35:11 -05002517 struct sock_xprt *new;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002518
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002519 if (args->addrlen > sizeof(xprt->addr)) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002520 dprintk("RPC: xs_setup_xprt: address too large\n");
Chuck Leverc8541ec2006-10-17 14:44:27 -04002521 return ERR_PTR(-EBADF);
2522 }
2523
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002524 xprt = xprt_alloc(args->net, sizeof(*new), slot_table_size,
2525 max_slot_table_size);
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +04002526 if (xprt == NULL) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002527 dprintk("RPC: xs_setup_xprt: couldn't allocate "
2528 "rpc_xprt\n");
Chuck Leverc8541ec2006-10-17 14:44:27 -04002529 return ERR_PTR(-ENOMEM);
2530 }
2531
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +04002532 new = container_of(xprt, struct sock_xprt, xprt);
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002533 memcpy(&xprt->addr, args->dstaddr, args->addrlen);
2534 xprt->addrlen = args->addrlen;
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +02002535 if (args->srcaddr)
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002536 memcpy(&new->srcaddr, args->srcaddr, args->addrlen);
Chuck Lever92476852010-10-20 11:53:01 -04002537 else {
2538 int err;
2539 err = xs_init_anyaddr(args->dstaddr->sa_family,
2540 (struct sockaddr *)&new->srcaddr);
Stanislav Kinsbursky2aa13532011-11-10 14:33:23 +03002541 if (err != 0) {
2542 xprt_free(xprt);
Chuck Lever92476852010-10-20 11:53:01 -04002543 return ERR_PTR(err);
Stanislav Kinsbursky2aa13532011-11-10 14:33:23 +03002544 }
Chuck Lever92476852010-10-20 11:53:01 -04002545 }
Chuck Leverc8541ec2006-10-17 14:44:27 -04002546
2547 return xprt;
2548}
2549
Chuck Lever176e21e2011-05-09 15:22:44 -04002550static const struct rpc_timeout xs_local_default_timeout = {
2551 .to_initval = 10 * HZ,
2552 .to_maxval = 10 * HZ,
2553 .to_retries = 2,
2554};
2555
2556/**
2557 * xs_setup_local - Set up transport to use an AF_LOCAL socket
2558 * @args: rpc transport creation arguments
2559 *
2560 * AF_LOCAL is a "tpi_cots_ord" transport, just like TCP
2561 */
2562static struct rpc_xprt *xs_setup_local(struct xprt_create *args)
2563{
2564 struct sockaddr_un *sun = (struct sockaddr_un *)args->dstaddr;
2565 struct sock_xprt *transport;
2566 struct rpc_xprt *xprt;
2567 struct rpc_xprt *ret;
2568
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002569 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries,
2570 xprt_max_tcp_slot_table_entries);
Chuck Lever176e21e2011-05-09 15:22:44 -04002571 if (IS_ERR(xprt))
2572 return xprt;
2573 transport = container_of(xprt, struct sock_xprt, xprt);
2574
2575 xprt->prot = 0;
2576 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
2577 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
2578
2579 xprt->bind_timeout = XS_BIND_TO;
2580 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
2581 xprt->idle_timeout = XS_IDLE_DISC_TO;
2582
2583 xprt->ops = &xs_local_ops;
2584 xprt->timeout = &xs_local_default_timeout;
2585
2586 switch (sun->sun_family) {
2587 case AF_LOCAL:
2588 if (sun->sun_path[0] != '/') {
2589 dprintk("RPC: bad AF_LOCAL address: %s\n",
2590 sun->sun_path);
2591 ret = ERR_PTR(-EINVAL);
2592 goto out_err;
2593 }
2594 xprt_set_bound(xprt);
2595 INIT_DELAYED_WORK(&transport->connect_worker,
2596 xs_local_setup_socket);
2597 xs_format_peer_addresses(xprt, "local", RPCBIND_NETID_LOCAL);
2598 break;
2599 default:
2600 ret = ERR_PTR(-EAFNOSUPPORT);
2601 goto out_err;
2602 }
2603
2604 dprintk("RPC: set up xprt to %s via AF_LOCAL\n",
2605 xprt->address_strings[RPC_DISPLAY_ADDR]);
2606
2607 if (try_module_get(THIS_MODULE))
2608 return xprt;
2609 ret = ERR_PTR(-EINVAL);
2610out_err:
2611 xprt_free(xprt);
2612 return ret;
2613}
2614
Trond Myklebust2881ae72007-12-20 16:03:54 -05002615static const struct rpc_timeout xs_udp_default_timeout = {
2616 .to_initval = 5 * HZ,
2617 .to_maxval = 30 * HZ,
2618 .to_increment = 5 * HZ,
2619 .to_retries = 5,
2620};
2621
Chuck Lever9903cd12005-08-11 16:25:26 -04002622/**
2623 * xs_setup_udp - Set up transport to use a UDP socket
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002624 * @args: rpc transport creation arguments
Chuck Lever9903cd12005-08-11 16:25:26 -04002625 *
2626 */
Adrian Bunk483066d2007-10-24 18:24:02 +02002627static struct rpc_xprt *xs_setup_udp(struct xprt_create *args)
Chuck Levera246b012005-08-11 16:25:23 -04002628{
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002629 struct sockaddr *addr = args->dstaddr;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002630 struct rpc_xprt *xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002631 struct sock_xprt *transport;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002632 struct rpc_xprt *ret;
Chuck Levera246b012005-08-11 16:25:23 -04002633
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002634 xprt = xs_setup_xprt(args, xprt_udp_slot_table_entries,
2635 xprt_udp_slot_table_entries);
Chuck Leverc8541ec2006-10-17 14:44:27 -04002636 if (IS_ERR(xprt))
2637 return xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002638 transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002639
Chuck Leverec739ef2006-08-22 20:06:15 -04002640 xprt->prot = IPPROTO_UDP;
Chuck Lever808012f2005-08-25 16:25:49 -07002641 xprt->tsh_size = 0;
Chuck Levera246b012005-08-11 16:25:23 -04002642 /* XXX: header size can vary due to auth type, IPv6, etc. */
2643 xprt->max_payload = (1U << 16) - (MAX_HEADER << 3);
2644
Chuck Lever03bf4b72005-08-25 16:25:55 -07002645 xprt->bind_timeout = XS_BIND_TO;
Chuck Lever03bf4b72005-08-25 16:25:55 -07002646 xprt->reestablish_timeout = XS_UDP_REEST_TO;
2647 xprt->idle_timeout = XS_IDLE_DISC_TO;
Chuck Levera246b012005-08-11 16:25:23 -04002648
Chuck Lever262965f2005-08-11 16:25:56 -04002649 xprt->ops = &xs_udp_ops;
Chuck Levera246b012005-08-11 16:25:23 -04002650
Trond Myklebustba7392b2007-12-20 16:03:55 -05002651 xprt->timeout = &xs_udp_default_timeout;
Chuck Levera246b012005-08-11 16:25:23 -04002652
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002653 switch (addr->sa_family) {
2654 case AF_INET:
2655 if (((struct sockaddr_in *)addr)->sin_port != htons(0))
2656 xprt_set_bound(xprt);
2657
2658 INIT_DELAYED_WORK(&transport->connect_worker,
Pavel Emelyanov8c14ff22010-10-04 16:58:02 +04002659 xs_udp_setup_socket);
Chuck Lever9dc3b092009-08-09 15:09:46 -04002660 xs_format_peer_addresses(xprt, "udp", RPCBIND_NETID_UDP);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002661 break;
2662 case AF_INET6:
2663 if (((struct sockaddr_in6 *)addr)->sin6_port != htons(0))
2664 xprt_set_bound(xprt);
2665
2666 INIT_DELAYED_WORK(&transport->connect_worker,
Pavel Emelyanov8c14ff22010-10-04 16:58:02 +04002667 xs_udp_setup_socket);
Chuck Lever9dc3b092009-08-09 15:09:46 -04002668 xs_format_peer_addresses(xprt, "udp", RPCBIND_NETID_UDP6);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002669 break;
2670 default:
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002671 ret = ERR_PTR(-EAFNOSUPPORT);
2672 goto out_err;
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002673 }
2674
Chuck Leverc740eff2009-08-09 15:09:46 -04002675 if (xprt_bound(xprt))
2676 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
2677 xprt->address_strings[RPC_DISPLAY_ADDR],
2678 xprt->address_strings[RPC_DISPLAY_PORT],
2679 xprt->address_strings[RPC_DISPLAY_PROTO]);
2680 else
2681 dprintk("RPC: set up xprt to %s (autobind) via %s\n",
2682 xprt->address_strings[RPC_DISPLAY_ADDR],
2683 xprt->address_strings[RPC_DISPLAY_PROTO]);
Chuck Leveredb267a2006-08-22 20:06:18 -04002684
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002685 if (try_module_get(THIS_MODULE))
2686 return xprt;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002687 ret = ERR_PTR(-EINVAL);
2688out_err:
Pavel Emelyanove204e622010-09-29 16:03:13 +04002689 xprt_free(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002690 return ret;
Chuck Levera246b012005-08-11 16:25:23 -04002691}
2692
Trond Myklebust2881ae72007-12-20 16:03:54 -05002693static const struct rpc_timeout xs_tcp_default_timeout = {
2694 .to_initval = 60 * HZ,
2695 .to_maxval = 60 * HZ,
2696 .to_retries = 2,
2697};
2698
Chuck Lever9903cd12005-08-11 16:25:26 -04002699/**
2700 * xs_setup_tcp - Set up transport to use a TCP socket
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002701 * @args: rpc transport creation arguments
Chuck Lever9903cd12005-08-11 16:25:26 -04002702 *
2703 */
Adrian Bunk483066d2007-10-24 18:24:02 +02002704static struct rpc_xprt *xs_setup_tcp(struct xprt_create *args)
Chuck Levera246b012005-08-11 16:25:23 -04002705{
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002706 struct sockaddr *addr = args->dstaddr;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002707 struct rpc_xprt *xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002708 struct sock_xprt *transport;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002709 struct rpc_xprt *ret;
Chuck Levera246b012005-08-11 16:25:23 -04002710
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002711 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries,
2712 xprt_max_tcp_slot_table_entries);
Chuck Leverc8541ec2006-10-17 14:44:27 -04002713 if (IS_ERR(xprt))
2714 return xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002715 transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002716
Chuck Leverec739ef2006-08-22 20:06:15 -04002717 xprt->prot = IPPROTO_TCP;
Chuck Lever808012f2005-08-25 16:25:49 -07002718 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
Chuck Lever808012f2005-08-25 16:25:49 -07002719 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
Chuck Levera246b012005-08-11 16:25:23 -04002720
Chuck Lever03bf4b72005-08-25 16:25:55 -07002721 xprt->bind_timeout = XS_BIND_TO;
Chuck Lever03bf4b72005-08-25 16:25:55 -07002722 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
2723 xprt->idle_timeout = XS_IDLE_DISC_TO;
Chuck Levera246b012005-08-11 16:25:23 -04002724
Chuck Lever262965f2005-08-11 16:25:56 -04002725 xprt->ops = &xs_tcp_ops;
Trond Myklebustba7392b2007-12-20 16:03:55 -05002726 xprt->timeout = &xs_tcp_default_timeout;
Chuck Levera246b012005-08-11 16:25:23 -04002727
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002728 switch (addr->sa_family) {
2729 case AF_INET:
2730 if (((struct sockaddr_in *)addr)->sin_port != htons(0))
2731 xprt_set_bound(xprt);
2732
Chuck Lever9dc3b092009-08-09 15:09:46 -04002733 INIT_DELAYED_WORK(&transport->connect_worker,
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002734 xs_tcp_setup_socket);
Chuck Lever9dc3b092009-08-09 15:09:46 -04002735 xs_format_peer_addresses(xprt, "tcp", RPCBIND_NETID_TCP);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002736 break;
2737 case AF_INET6:
2738 if (((struct sockaddr_in6 *)addr)->sin6_port != htons(0))
2739 xprt_set_bound(xprt);
2740
Chuck Lever9dc3b092009-08-09 15:09:46 -04002741 INIT_DELAYED_WORK(&transport->connect_worker,
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002742 xs_tcp_setup_socket);
Chuck Lever9dc3b092009-08-09 15:09:46 -04002743 xs_format_peer_addresses(xprt, "tcp", RPCBIND_NETID_TCP6);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002744 break;
2745 default:
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002746 ret = ERR_PTR(-EAFNOSUPPORT);
2747 goto out_err;
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002748 }
2749
Chuck Leverc740eff2009-08-09 15:09:46 -04002750 if (xprt_bound(xprt))
2751 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
2752 xprt->address_strings[RPC_DISPLAY_ADDR],
2753 xprt->address_strings[RPC_DISPLAY_PORT],
2754 xprt->address_strings[RPC_DISPLAY_PROTO]);
2755 else
2756 dprintk("RPC: set up xprt to %s (autobind) via %s\n",
2757 xprt->address_strings[RPC_DISPLAY_ADDR],
2758 xprt->address_strings[RPC_DISPLAY_PROTO]);
2759
Chuck Leveredb267a2006-08-22 20:06:18 -04002760
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002761 if (try_module_get(THIS_MODULE))
2762 return xprt;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002763 ret = ERR_PTR(-EINVAL);
2764out_err:
Pavel Emelyanove204e622010-09-29 16:03:13 +04002765 xprt_free(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002766 return ret;
Chuck Levera246b012005-08-11 16:25:23 -04002767}
Chuck Lever282b32e2006-12-05 16:35:51 -05002768
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002769/**
2770 * xs_setup_bc_tcp - Set up transport to use a TCP backchannel socket
2771 * @args: rpc transport creation arguments
2772 *
2773 */
2774static struct rpc_xprt *xs_setup_bc_tcp(struct xprt_create *args)
2775{
2776 struct sockaddr *addr = args->dstaddr;
2777 struct rpc_xprt *xprt;
2778 struct sock_xprt *transport;
2779 struct svc_sock *bc_sock;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002780 struct rpc_xprt *ret;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002781
J. Bruce Fieldsf0418aa2010-12-08 13:48:19 -05002782 if (args->bc_xprt->xpt_bc_xprt) {
2783 /*
2784 * This server connection already has a backchannel
2785 * export; we can't create a new one, as we wouldn't be
2786 * able to match replies based on xid any more. So,
2787 * reuse the already-existing one:
2788 */
2789 return args->bc_xprt->xpt_bc_xprt;
2790 }
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002791 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries,
2792 xprt_tcp_slot_table_entries);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002793 if (IS_ERR(xprt))
2794 return xprt;
2795 transport = container_of(xprt, struct sock_xprt, xprt);
2796
2797 xprt->prot = IPPROTO_TCP;
2798 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
2799 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
2800 xprt->timeout = &xs_tcp_default_timeout;
2801
2802 /* backchannel */
2803 xprt_set_bound(xprt);
2804 xprt->bind_timeout = 0;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002805 xprt->reestablish_timeout = 0;
2806 xprt->idle_timeout = 0;
2807
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002808 xprt->ops = &bc_tcp_ops;
2809
2810 switch (addr->sa_family) {
2811 case AF_INET:
2812 xs_format_peer_addresses(xprt, "tcp",
2813 RPCBIND_NETID_TCP);
2814 break;
2815 case AF_INET6:
2816 xs_format_peer_addresses(xprt, "tcp",
2817 RPCBIND_NETID_TCP6);
2818 break;
2819 default:
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002820 ret = ERR_PTR(-EAFNOSUPPORT);
2821 goto out_err;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002822 }
2823
Pavel Emelyanov50fa0d42010-10-05 20:49:35 +04002824 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
2825 xprt->address_strings[RPC_DISPLAY_ADDR],
2826 xprt->address_strings[RPC_DISPLAY_PORT],
2827 xprt->address_strings[RPC_DISPLAY_PROTO]);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002828
2829 /*
J. Bruce Fields99de8ea2010-12-08 12:45:44 -05002830 * Once we've associated a backchannel xprt with a connection,
2831 * we want to keep it around as long as long as the connection
2832 * lasts, in case we need to start using it for a backchannel
2833 * again; this reference won't be dropped until bc_xprt is
2834 * destroyed.
2835 */
2836 xprt_get(xprt);
2837 args->bc_xprt->xpt_bc_xprt = xprt;
2838 xprt->bc_xprt = args->bc_xprt;
2839 bc_sock = container_of(args->bc_xprt, struct svc_sock, sk_xprt);
2840 transport->sock = bc_sock->sk_sock;
2841 transport->inet = bc_sock->sk_sk;
2842
2843 /*
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002844 * Since we don't want connections for the backchannel, we set
2845 * the xprt status to connected
2846 */
2847 xprt_set_connected(xprt);
2848
2849
2850 if (try_module_get(THIS_MODULE))
2851 return xprt;
J. Bruce Fields99de8ea2010-12-08 12:45:44 -05002852 xprt_put(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002853 ret = ERR_PTR(-EINVAL);
2854out_err:
Pavel Emelyanove204e622010-09-29 16:03:13 +04002855 xprt_free(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002856 return ret;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002857}
2858
Chuck Lever176e21e2011-05-09 15:22:44 -04002859static struct xprt_class xs_local_transport = {
2860 .list = LIST_HEAD_INIT(xs_local_transport.list),
2861 .name = "named UNIX socket",
2862 .owner = THIS_MODULE,
2863 .ident = XPRT_TRANSPORT_LOCAL,
2864 .setup = xs_setup_local,
2865};
2866
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002867static struct xprt_class xs_udp_transport = {
2868 .list = LIST_HEAD_INIT(xs_udp_transport.list),
2869 .name = "udp",
2870 .owner = THIS_MODULE,
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002871 .ident = XPRT_TRANSPORT_UDP,
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002872 .setup = xs_setup_udp,
2873};
2874
2875static struct xprt_class xs_tcp_transport = {
2876 .list = LIST_HEAD_INIT(xs_tcp_transport.list),
2877 .name = "tcp",
2878 .owner = THIS_MODULE,
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002879 .ident = XPRT_TRANSPORT_TCP,
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002880 .setup = xs_setup_tcp,
2881};
2882
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002883static struct xprt_class xs_bc_tcp_transport = {
2884 .list = LIST_HEAD_INIT(xs_bc_tcp_transport.list),
2885 .name = "tcp NFSv4.1 backchannel",
2886 .owner = THIS_MODULE,
2887 .ident = XPRT_TRANSPORT_BC_TCP,
2888 .setup = xs_setup_bc_tcp,
2889};
2890
Chuck Lever282b32e2006-12-05 16:35:51 -05002891/**
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002892 * init_socket_xprt - set up xprtsock's sysctls, register with RPC client
Chuck Lever282b32e2006-12-05 16:35:51 -05002893 *
2894 */
2895int init_socket_xprt(void)
2896{
Chuck Leverfbf76682006-12-05 16:35:54 -05002897#ifdef RPC_DEBUG
Eric W. Biederman2b1bec52007-02-14 00:33:24 -08002898 if (!sunrpc_table_header)
Eric W. Biederman0b4d4142007-02-14 00:34:09 -08002899 sunrpc_table_header = register_sysctl_table(sunrpc_table);
Chuck Leverfbf76682006-12-05 16:35:54 -05002900#endif
2901
Chuck Lever176e21e2011-05-09 15:22:44 -04002902 xprt_register_transport(&xs_local_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002903 xprt_register_transport(&xs_udp_transport);
2904 xprt_register_transport(&xs_tcp_transport);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002905 xprt_register_transport(&xs_bc_tcp_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002906
Chuck Lever282b32e2006-12-05 16:35:51 -05002907 return 0;
2908}
2909
2910/**
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002911 * cleanup_socket_xprt - remove xprtsock's sysctls, unregister
Chuck Lever282b32e2006-12-05 16:35:51 -05002912 *
2913 */
2914void cleanup_socket_xprt(void)
2915{
Chuck Leverfbf76682006-12-05 16:35:54 -05002916#ifdef RPC_DEBUG
2917 if (sunrpc_table_header) {
2918 unregister_sysctl_table(sunrpc_table_header);
2919 sunrpc_table_header = NULL;
2920 }
2921#endif
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002922
Chuck Lever176e21e2011-05-09 15:22:44 -04002923 xprt_unregister_transport(&xs_local_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002924 xprt_unregister_transport(&xs_udp_transport);
2925 xprt_unregister_transport(&xs_tcp_transport);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002926 xprt_unregister_transport(&xs_bc_tcp_transport);
Chuck Lever282b32e2006-12-05 16:35:51 -05002927}
Trond Myklebustcbf11072009-08-09 15:06:19 -04002928
Rusty Russell9bbb9e52010-08-11 23:04:12 -06002929static int param_set_uint_minmax(const char *val,
2930 const struct kernel_param *kp,
Trond Myklebustcbf11072009-08-09 15:06:19 -04002931 unsigned int min, unsigned int max)
2932{
2933 unsigned long num;
2934 int ret;
2935
2936 if (!val)
2937 return -EINVAL;
2938 ret = strict_strtoul(val, 0, &num);
2939 if (ret == -EINVAL || num < min || num > max)
2940 return -EINVAL;
2941 *((unsigned int *)kp->arg) = num;
2942 return 0;
2943}
2944
Rusty Russell9bbb9e52010-08-11 23:04:12 -06002945static int param_set_portnr(const char *val, const struct kernel_param *kp)
Trond Myklebustcbf11072009-08-09 15:06:19 -04002946{
2947 return param_set_uint_minmax(val, kp,
2948 RPC_MIN_RESVPORT,
2949 RPC_MAX_RESVPORT);
2950}
2951
Rusty Russell9bbb9e52010-08-11 23:04:12 -06002952static struct kernel_param_ops param_ops_portnr = {
2953 .set = param_set_portnr,
2954 .get = param_get_uint,
2955};
2956
Trond Myklebustcbf11072009-08-09 15:06:19 -04002957#define param_check_portnr(name, p) \
2958 __param_check(name, p, unsigned int);
2959
2960module_param_named(min_resvport, xprt_min_resvport, portnr, 0644);
2961module_param_named(max_resvport, xprt_max_resvport, portnr, 0644);
2962
Rusty Russell9bbb9e52010-08-11 23:04:12 -06002963static int param_set_slot_table_size(const char *val,
2964 const struct kernel_param *kp)
Trond Myklebustcbf11072009-08-09 15:06:19 -04002965{
2966 return param_set_uint_minmax(val, kp,
2967 RPC_MIN_SLOT_TABLE,
2968 RPC_MAX_SLOT_TABLE);
2969}
2970
Rusty Russell9bbb9e52010-08-11 23:04:12 -06002971static struct kernel_param_ops param_ops_slot_table_size = {
2972 .set = param_set_slot_table_size,
2973 .get = param_get_uint,
2974};
2975
Trond Myklebustcbf11072009-08-09 15:06:19 -04002976#define param_check_slot_table_size(name, p) \
2977 __param_check(name, p, unsigned int);
2978
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002979static int param_set_max_slot_table_size(const char *val,
2980 const struct kernel_param *kp)
2981{
2982 return param_set_uint_minmax(val, kp,
2983 RPC_MIN_SLOT_TABLE,
2984 RPC_MAX_SLOT_TABLE_LIMIT);
2985}
2986
2987static struct kernel_param_ops param_ops_max_slot_table_size = {
2988 .set = param_set_max_slot_table_size,
2989 .get = param_get_uint,
2990};
2991
2992#define param_check_max_slot_table_size(name, p) \
2993 __param_check(name, p, unsigned int);
2994
Trond Myklebustcbf11072009-08-09 15:06:19 -04002995module_param_named(tcp_slot_table_entries, xprt_tcp_slot_table_entries,
2996 slot_table_size, 0644);
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002997module_param_named(tcp_max_slot_table_entries, xprt_max_tcp_slot_table_entries,
2998 max_slot_table_size, 0644);
Trond Myklebustcbf11072009-08-09 15:06:19 -04002999module_param_named(udp_slot_table_entries, xprt_udp_slot_table_entries,
3000 slot_table_size, 0644);
3001