blob: bee41546575471cb85d036efbbed1e87e9370638 [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>
22#include <linux/slab.h>
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -040023#include <linux/module.h>
Chuck Levera246b012005-08-11 16:25:23 -040024#include <linux/capability.h>
Chuck Levera246b012005-08-11 16:25:23 -040025#include <linux/pagemap.h>
26#include <linux/errno.h>
27#include <linux/socket.h>
28#include <linux/in.h>
29#include <linux/net.h>
30#include <linux/mm.h>
31#include <linux/udp.h>
32#include <linux/tcp.h>
33#include <linux/sunrpc/clnt.h>
Chuck Lever02107142006-01-03 09:55:49 +010034#include <linux/sunrpc/sched.h>
Rahul Iyer4cfc7e62009-09-10 17:32:28 +030035#include <linux/sunrpc/svcsock.h>
\"Talpey, Thomas\49c36fc2007-09-10 13:47:31 -040036#include <linux/sunrpc/xprtsock.h>
Chuck Levera246b012005-08-11 16:25:23 -040037#include <linux/file.h>
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -040038#ifdef CONFIG_NFS_V4_1
39#include <linux/sunrpc/bc_xprt.h>
40#endif
Chuck Levera246b012005-08-11 16:25:23 -040041
42#include <net/sock.h>
43#include <net/checksum.h>
44#include <net/udp.h>
45#include <net/tcp.h>
46
Rahul Iyer4cfc7e62009-09-10 17:32:28 +030047#include "sunrpc.h"
Chuck Lever9903cd12005-08-11 16:25:26 -040048/*
Chuck Leverc556b752005-11-01 12:24:48 -050049 * xprtsock tunables
50 */
51unsigned int xprt_udp_slot_table_entries = RPC_DEF_SLOT_TABLE;
52unsigned int xprt_tcp_slot_table_entries = RPC_DEF_SLOT_TABLE;
53
54unsigned int xprt_min_resvport = RPC_DEF_MIN_RESVPORT;
55unsigned int xprt_max_resvport = RPC_DEF_MAX_RESVPORT;
56
Trond Myklebust7d1e8252009-03-11 14:38:03 -040057#define XS_TCP_LINGER_TO (15U * HZ)
Trond Myklebust25fe6142009-03-11 14:38:03 -040058static unsigned int xs_tcp_fin_timeout __read_mostly = XS_TCP_LINGER_TO;
Trond Myklebust7d1e8252009-03-11 14:38:03 -040059
Chuck Leverc556b752005-11-01 12:24:48 -050060/*
Chuck Leverfbf76682006-12-05 16:35:54 -050061 * We can register our own files under /proc/sys/sunrpc by
62 * calling register_sysctl_table() again. The files in that
63 * directory become the union of all files registered there.
64 *
65 * We simply need to make sure that we don't collide with
66 * someone else's file names!
67 */
68
69#ifdef RPC_DEBUG
70
71static unsigned int min_slot_table_size = RPC_MIN_SLOT_TABLE;
72static unsigned int max_slot_table_size = RPC_MAX_SLOT_TABLE;
73static unsigned int xprt_min_resvport_limit = RPC_MIN_RESVPORT;
74static unsigned int xprt_max_resvport_limit = RPC_MAX_RESVPORT;
75
76static struct ctl_table_header *sunrpc_table_header;
77
78/*
79 * FIXME: changing the UDP slot table size should also resize the UDP
80 * socket buffers for existing UDP transports
81 */
82static ctl_table xs_tunables_table[] = {
83 {
84 .ctl_name = CTL_SLOTTABLE_UDP,
85 .procname = "udp_slot_table_entries",
86 .data = &xprt_udp_slot_table_entries,
87 .maxlen = sizeof(unsigned int),
88 .mode = 0644,
89 .proc_handler = &proc_dointvec_minmax,
90 .strategy = &sysctl_intvec,
91 .extra1 = &min_slot_table_size,
92 .extra2 = &max_slot_table_size
93 },
94 {
95 .ctl_name = CTL_SLOTTABLE_TCP,
96 .procname = "tcp_slot_table_entries",
97 .data = &xprt_tcp_slot_table_entries,
98 .maxlen = sizeof(unsigned int),
99 .mode = 0644,
100 .proc_handler = &proc_dointvec_minmax,
101 .strategy = &sysctl_intvec,
102 .extra1 = &min_slot_table_size,
103 .extra2 = &max_slot_table_size
104 },
105 {
106 .ctl_name = CTL_MIN_RESVPORT,
107 .procname = "min_resvport",
108 .data = &xprt_min_resvport,
109 .maxlen = sizeof(unsigned int),
110 .mode = 0644,
111 .proc_handler = &proc_dointvec_minmax,
112 .strategy = &sysctl_intvec,
113 .extra1 = &xprt_min_resvport_limit,
114 .extra2 = &xprt_max_resvport_limit
115 },
116 {
117 .ctl_name = CTL_MAX_RESVPORT,
118 .procname = "max_resvport",
119 .data = &xprt_max_resvport,
120 .maxlen = sizeof(unsigned int),
121 .mode = 0644,
122 .proc_handler = &proc_dointvec_minmax,
123 .strategy = &sysctl_intvec,
124 .extra1 = &xprt_min_resvport_limit,
125 .extra2 = &xprt_max_resvport_limit
126 },
127 {
Trond Myklebust25fe6142009-03-11 14:38:03 -0400128 .procname = "tcp_fin_timeout",
129 .data = &xs_tcp_fin_timeout,
130 .maxlen = sizeof(xs_tcp_fin_timeout),
131 .mode = 0644,
132 .proc_handler = &proc_dointvec_jiffies,
133 .strategy = sysctl_jiffies
134 },
135 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500136 .ctl_name = 0,
137 },
138};
139
140static ctl_table sunrpc_table[] = {
141 {
142 .ctl_name = CTL_SUNRPC,
143 .procname = "sunrpc",
144 .mode = 0555,
145 .child = xs_tunables_table
146 },
147 {
148 .ctl_name = 0,
149 },
150};
151
152#endif
153
154/*
Chuck Lever03bf4b72005-08-25 16:25:55 -0700155 * Time out for an RPC UDP socket connect. UDP socket connects are
156 * synchronous, but we set a timeout anyway in case of resource
157 * exhaustion on the local host.
158 */
159#define XS_UDP_CONN_TO (5U * HZ)
160
161/*
162 * Wait duration for an RPC TCP connection to be established. Solaris
163 * NFS over TCP uses 60 seconds, for example, which is in line with how
164 * long a server takes to reboot.
165 */
166#define XS_TCP_CONN_TO (60U * HZ)
167
168/*
169 * Wait duration for a reply from the RPC portmapper.
170 */
171#define XS_BIND_TO (60U * HZ)
172
173/*
174 * Delay if a UDP socket connect error occurs. This is most likely some
175 * kind of resource problem on the local host.
176 */
177#define XS_UDP_REEST_TO (2U * HZ)
178
179/*
180 * The reestablish timeout allows clients to delay for a bit before attempting
181 * to reconnect to a server that just dropped our connection.
182 *
183 * We implement an exponential backoff when trying to reestablish a TCP
184 * transport connection with the server. Some servers like to drop a TCP
185 * connection when they are overworked, so we start with a short timeout and
186 * increase over time if the server is down or not responding.
187 */
188#define XS_TCP_INIT_REEST_TO (3U * HZ)
189#define XS_TCP_MAX_REEST_TO (5U * 60 * HZ)
190
191/*
192 * TCP idle timeout; client drops the transport socket if it is idle
193 * for this long. Note that we also timeout UDP sockets to prevent
194 * holding port numbers when there is no RPC traffic.
195 */
196#define XS_IDLE_DISC_TO (5U * 60 * HZ)
197
Chuck Levera246b012005-08-11 16:25:23 -0400198#ifdef RPC_DEBUG
199# undef RPC_DEBUG_DATA
Chuck Lever9903cd12005-08-11 16:25:26 -0400200# define RPCDBG_FACILITY RPCDBG_TRANS
Chuck Levera246b012005-08-11 16:25:23 -0400201#endif
202
Chuck Levera246b012005-08-11 16:25:23 -0400203#ifdef RPC_DEBUG_DATA
Chuck Lever9903cd12005-08-11 16:25:26 -0400204static void xs_pktdump(char *msg, u32 *packet, unsigned int count)
Chuck Levera246b012005-08-11 16:25:23 -0400205{
Chuck Lever9903cd12005-08-11 16:25:26 -0400206 u8 *buf = (u8 *) packet;
207 int j;
Chuck Levera246b012005-08-11 16:25:23 -0400208
Chuck Lever46121cf2007-01-31 12:14:08 -0500209 dprintk("RPC: %s\n", msg);
Chuck Levera246b012005-08-11 16:25:23 -0400210 for (j = 0; j < count && j < 128; j += 4) {
211 if (!(j & 31)) {
212 if (j)
213 dprintk("\n");
214 dprintk("0x%04x ", j);
215 }
216 dprintk("%02x%02x%02x%02x ",
217 buf[j], buf[j+1], buf[j+2], buf[j+3]);
218 }
219 dprintk("\n");
220}
221#else
Chuck Lever9903cd12005-08-11 16:25:26 -0400222static inline void xs_pktdump(char *msg, u32 *packet, unsigned int count)
Chuck Levera246b012005-08-11 16:25:23 -0400223{
224 /* NOP */
225}
226#endif
227
Chuck Leverffc2e512006-12-05 16:35:11 -0500228struct sock_xprt {
229 struct rpc_xprt xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500230
231 /*
232 * Network layer
233 */
234 struct socket * sock;
235 struct sock * inet;
Chuck Lever51971132006-12-05 16:35:19 -0500236
237 /*
238 * State of TCP reply receive
239 */
240 __be32 tcp_fraghdr,
241 tcp_xid;
242
243 u32 tcp_offset,
244 tcp_reclen;
245
246 unsigned long tcp_copied,
247 tcp_flags;
Chuck Leverc8475462006-12-05 16:35:26 -0500248
249 /*
250 * Connection of transports
251 */
Trond Myklebust34161db2006-12-07 15:48:15 -0500252 struct delayed_work connect_worker;
Chuck Leverfbfffbd2009-08-09 15:09:46 -0400253 struct sockaddr_storage srcaddr;
254 unsigned short srcport;
Chuck Lever7c6e0662006-12-05 16:35:30 -0500255
256 /*
257 * UDP socket buffer size parameters
258 */
259 size_t rcvsize,
260 sndsize;
Chuck Lever314dfd72006-12-05 16:35:34 -0500261
262 /*
263 * Saved socket callback addresses
264 */
265 void (*old_data_ready)(struct sock *, int);
266 void (*old_state_change)(struct sock *);
267 void (*old_write_space)(struct sock *);
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400268 void (*old_error_report)(struct sock *);
Chuck Leverffc2e512006-12-05 16:35:11 -0500269};
270
Chuck Levere136d092006-12-05 16:35:23 -0500271/*
272 * TCP receive state flags
273 */
274#define TCP_RCV_LAST_FRAG (1UL << 0)
275#define TCP_RCV_COPY_FRAGHDR (1UL << 1)
276#define TCP_RCV_COPY_XID (1UL << 2)
277#define TCP_RCV_COPY_DATA (1UL << 3)
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -0400278#define TCP_RCV_READ_CALLDIR (1UL << 4)
279#define TCP_RCV_COPY_CALLDIR (1UL << 5)
Ricardo Labiaga18dca022009-04-01 09:22:53 -0400280
281/*
282 * TCP RPC flags
283 */
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -0400284#define TCP_RPC_REPLY (1UL << 6)
Chuck Levere136d092006-12-05 16:35:23 -0500285
Chuck Lever95392c52007-08-06 11:57:58 -0400286static inline struct sockaddr *xs_addr(struct rpc_xprt *xprt)
Chuck Leveredb267a2006-08-22 20:06:18 -0400287{
Chuck Lever95392c52007-08-06 11:57:58 -0400288 return (struct sockaddr *) &xprt->addr;
289}
290
291static inline struct sockaddr_in *xs_addr_in(struct rpc_xprt *xprt)
292{
293 return (struct sockaddr_in *) &xprt->addr;
294}
295
296static inline struct sockaddr_in6 *xs_addr_in6(struct rpc_xprt *xprt)
297{
298 return (struct sockaddr_in6 *) &xprt->addr;
299}
300
Chuck Leverc877b842009-08-09 15:09:36 -0400301static void xs_format_common_peer_addresses(struct rpc_xprt *xprt)
Chuck Leveredb267a2006-08-22 20:06:18 -0400302{
Chuck Leverc877b842009-08-09 15:09:36 -0400303 struct sockaddr *sap = xs_addr(xprt);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400304 struct sockaddr_in6 *sin6;
305 struct sockaddr_in *sin;
Chuck Leverc877b842009-08-09 15:09:36 -0400306 char buf[128];
Chuck Leveredb267a2006-08-22 20:06:18 -0400307
Chuck Leverc877b842009-08-09 15:09:36 -0400308 (void)rpc_ntop(sap, buf, sizeof(buf));
309 xprt->address_strings[RPC_DISPLAY_ADDR] = kstrdup(buf, GFP_KERNEL);
310
Chuck Lever9dc3b092009-08-09 15:09:46 -0400311 switch (sap->sa_family) {
312 case AF_INET:
313 sin = xs_addr_in(xprt);
314 (void)snprintf(buf, sizeof(buf), "%02x%02x%02x%02x",
315 NIPQUAD(sin->sin_addr.s_addr));
316 break;
317 case AF_INET6:
318 sin6 = xs_addr_in6(xprt);
319 (void)snprintf(buf, sizeof(buf), "%pi6", &sin6->sin6_addr);
320 break;
321 default:
322 BUG();
Chuck Leveredb267a2006-08-22 20:06:18 -0400323 }
Chuck Lever9dc3b092009-08-09 15:09:46 -0400324 xprt->address_strings[RPC_DISPLAY_HEX_ADDR] = kstrdup(buf, GFP_KERNEL);
Chuck Leveredb267a2006-08-22 20:06:18 -0400325}
326
Chuck Lever9dc3b092009-08-09 15:09:46 -0400327static void xs_format_common_peer_ports(struct rpc_xprt *xprt)
Chuck Lever4b6473f2007-08-06 11:57:12 -0400328{
Chuck Lever9dc3b092009-08-09 15:09:46 -0400329 struct sockaddr *sap = xs_addr(xprt);
330 char buf[128];
Chuck Lever4b6473f2007-08-06 11:57:12 -0400331
Chuck Leverc877b842009-08-09 15:09:36 -0400332 (void)snprintf(buf, sizeof(buf), "%u", rpc_get_port(sap));
333 xprt->address_strings[RPC_DISPLAY_PORT] = kstrdup(buf, GFP_KERNEL);
Chuck Lever4b6473f2007-08-06 11:57:12 -0400334
Chuck Leverc877b842009-08-09 15:09:36 -0400335 (void)snprintf(buf, sizeof(buf), "%4hx", rpc_get_port(sap));
336 xprt->address_strings[RPC_DISPLAY_HEX_PORT] = kstrdup(buf, GFP_KERNEL);
337}
Chuck Lever4b6473f2007-08-06 11:57:12 -0400338
Chuck Lever9dc3b092009-08-09 15:09:46 -0400339static void xs_format_peer_addresses(struct rpc_xprt *xprt,
340 const char *protocol,
341 const char *netid)
Chuck Leveredb267a2006-08-22 20:06:18 -0400342{
Chuck Leverb454ae92008-01-07 18:34:48 -0500343 xprt->address_strings[RPC_DISPLAY_PROTO] = protocol;
Chuck Leverb454ae92008-01-07 18:34:48 -0500344 xprt->address_strings[RPC_DISPLAY_NETID] = netid;
Chuck Leverc877b842009-08-09 15:09:36 -0400345 xs_format_common_peer_addresses(xprt);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400346 xs_format_common_peer_ports(xprt);
Chuck Lever4b6473f2007-08-06 11:57:12 -0400347}
348
Chuck Lever9dc3b092009-08-09 15:09:46 -0400349static void xs_update_peer_port(struct rpc_xprt *xprt)
Chuck Lever4b6473f2007-08-06 11:57:12 -0400350{
Chuck Lever9dc3b092009-08-09 15:09:46 -0400351 kfree(xprt->address_strings[RPC_DISPLAY_HEX_PORT]);
352 kfree(xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever4b6473f2007-08-06 11:57:12 -0400353
Chuck Lever9dc3b092009-08-09 15:09:46 -0400354 xs_format_common_peer_ports(xprt);
Chuck Leveredb267a2006-08-22 20:06:18 -0400355}
356
357static void xs_free_peer_addresses(struct rpc_xprt *xprt)
358{
Chuck Lever33e01dc2008-01-14 12:32:20 -0500359 unsigned int i;
360
361 for (i = 0; i < RPC_DISPLAY_MAX; i++)
362 switch (i) {
363 case RPC_DISPLAY_PROTO:
364 case RPC_DISPLAY_NETID:
365 continue;
366 default:
367 kfree(xprt->address_strings[i]);
368 }
Chuck Leveredb267a2006-08-22 20:06:18 -0400369}
370
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400371#define XS_SENDMSG_FLAGS (MSG_DONTWAIT | MSG_NOSIGNAL)
372
Trond Myklebust24c56842006-10-17 15:06:22 -0400373static 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 -0400374{
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400375 struct msghdr msg = {
376 .msg_name = addr,
377 .msg_namelen = addrlen,
Trond Myklebust24c56842006-10-17 15:06:22 -0400378 .msg_flags = XS_SENDMSG_FLAGS | (more ? MSG_MORE : 0),
379 };
380 struct kvec iov = {
381 .iov_base = vec->iov_base + base,
382 .iov_len = vec->iov_len - base,
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400383 };
384
Trond Myklebust24c56842006-10-17 15:06:22 -0400385 if (iov.iov_len != 0)
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400386 return kernel_sendmsg(sock, &msg, &iov, 1, iov.iov_len);
387 return kernel_sendmsg(sock, &msg, NULL, 0, 0);
388}
389
Trond Myklebust24c56842006-10-17 15:06:22 -0400390static int xs_send_pagedata(struct socket *sock, struct xdr_buf *xdr, unsigned int base, int more)
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400391{
Trond Myklebust24c56842006-10-17 15:06:22 -0400392 struct page **ppage;
393 unsigned int remainder;
394 int err, sent = 0;
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400395
Trond Myklebust24c56842006-10-17 15:06:22 -0400396 remainder = xdr->page_len - base;
397 base += xdr->page_base;
398 ppage = xdr->pages + (base >> PAGE_SHIFT);
399 base &= ~PAGE_MASK;
400 for(;;) {
401 unsigned int len = min_t(unsigned int, PAGE_SIZE - base, remainder);
402 int flags = XS_SENDMSG_FLAGS;
403
404 remainder -= len;
405 if (remainder != 0 || more)
406 flags |= MSG_MORE;
407 err = sock->ops->sendpage(sock, *ppage, base, len, flags);
408 if (remainder == 0 || err != len)
409 break;
410 sent += err;
411 ppage++;
412 base = 0;
413 }
414 if (sent == 0)
415 return err;
416 if (err > 0)
417 sent += err;
418 return sent;
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400419}
420
Chuck Lever9903cd12005-08-11 16:25:26 -0400421/**
422 * xs_sendpages - write pages directly to a socket
423 * @sock: socket to send on
424 * @addr: UDP only -- address of destination
425 * @addrlen: UDP only -- length of destination address
426 * @xdr: buffer containing this request
427 * @base: starting position in the buffer
428 *
Chuck Levera246b012005-08-11 16:25:23 -0400429 */
Trond Myklebust24c56842006-10-17 15:06:22 -0400430static 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 -0400431{
Trond Myklebust24c56842006-10-17 15:06:22 -0400432 unsigned int remainder = xdr->len - base;
433 int err, sent = 0;
Chuck Levera246b012005-08-11 16:25:23 -0400434
Chuck Lever262965f2005-08-11 16:25:56 -0400435 if (unlikely(!sock))
Trond Myklebustfba91af2009-03-11 14:06:41 -0400436 return -ENOTSOCK;
Chuck Lever262965f2005-08-11 16:25:56 -0400437
438 clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags);
Trond Myklebust24c56842006-10-17 15:06:22 -0400439 if (base != 0) {
440 addr = NULL;
441 addrlen = 0;
442 }
Chuck Lever262965f2005-08-11 16:25:56 -0400443
Trond Myklebust24c56842006-10-17 15:06:22 -0400444 if (base < xdr->head[0].iov_len || addr != NULL) {
445 unsigned int len = xdr->head[0].iov_len - base;
446 remainder -= len;
447 err = xs_send_kvec(sock, addr, addrlen, &xdr->head[0], base, remainder != 0);
448 if (remainder == 0 || err != len)
Chuck Levera246b012005-08-11 16:25:23 -0400449 goto out;
Trond Myklebust24c56842006-10-17 15:06:22 -0400450 sent += err;
Chuck Levera246b012005-08-11 16:25:23 -0400451 base = 0;
452 } else
Trond Myklebust24c56842006-10-17 15:06:22 -0400453 base -= xdr->head[0].iov_len;
Chuck Levera246b012005-08-11 16:25:23 -0400454
Trond Myklebust24c56842006-10-17 15:06:22 -0400455 if (base < xdr->page_len) {
456 unsigned int len = xdr->page_len - base;
457 remainder -= len;
458 err = xs_send_pagedata(sock, xdr, base, remainder != 0);
459 if (remainder == 0 || err != len)
Chuck Levera246b012005-08-11 16:25:23 -0400460 goto out;
Trond Myklebust24c56842006-10-17 15:06:22 -0400461 sent += err;
Chuck Levera246b012005-08-11 16:25:23 -0400462 base = 0;
Trond Myklebust24c56842006-10-17 15:06:22 -0400463 } else
464 base -= xdr->page_len;
465
466 if (base >= xdr->tail[0].iov_len)
467 return sent;
468 err = xs_send_kvec(sock, NULL, 0, &xdr->tail[0], base, 0);
Chuck Levera246b012005-08-11 16:25:23 -0400469out:
Trond Myklebust24c56842006-10-17 15:06:22 -0400470 if (sent == 0)
471 return err;
472 if (err > 0)
473 sent += err;
474 return sent;
Chuck Levera246b012005-08-11 16:25:23 -0400475}
476
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400477static void xs_nospace_callback(struct rpc_task *task)
478{
479 struct sock_xprt *transport = container_of(task->tk_rqstp->rq_xprt, struct sock_xprt, xprt);
480
481 transport->inet->sk_write_pending--;
482 clear_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags);
483}
484
Chuck Lever9903cd12005-08-11 16:25:26 -0400485/**
Chuck Lever262965f2005-08-11 16:25:56 -0400486 * xs_nospace - place task on wait queue if transmit was incomplete
487 * @task: task to put to sleep
Chuck Lever9903cd12005-08-11 16:25:26 -0400488 *
Chuck Levera246b012005-08-11 16:25:23 -0400489 */
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400490static int xs_nospace(struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -0400491{
Chuck Lever262965f2005-08-11 16:25:56 -0400492 struct rpc_rqst *req = task->tk_rqstp;
493 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500494 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400495 int ret = 0;
Chuck Levera246b012005-08-11 16:25:23 -0400496
Chuck Lever46121cf2007-01-31 12:14:08 -0500497 dprintk("RPC: %5u xmit incomplete (%u left of %u)\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400498 task->tk_pid, req->rq_slen - req->rq_bytes_sent,
499 req->rq_slen);
500
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400501 /* Protect against races with write_space */
502 spin_lock_bh(&xprt->transport_lock);
Chuck Lever262965f2005-08-11 16:25:56 -0400503
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400504 /* Don't race with disconnect */
505 if (xprt_connected(xprt)) {
506 if (test_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags)) {
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400507 ret = -EAGAIN;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400508 /*
509 * Notify TCP that we're limited by the application
510 * window size
511 */
512 set_bit(SOCK_NOSPACE, &transport->sock->flags);
513 transport->inet->sk_write_pending++;
514 /* ...and wait for more buffer space */
515 xprt_wait_for_buffer_space(task, xs_nospace_callback);
516 }
517 } else {
518 clear_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags);
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400519 ret = -ENOTCONN;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400520 }
Chuck Lever262965f2005-08-11 16:25:56 -0400521
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400522 spin_unlock_bh(&xprt->transport_lock);
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400523 return ret;
Chuck Lever262965f2005-08-11 16:25:56 -0400524}
525
526/**
527 * xs_udp_send_request - write an RPC request to a UDP socket
528 * @task: address of RPC task that manages the state of an RPC request
529 *
530 * Return values:
531 * 0: The request has been sent
532 * EAGAIN: The socket was blocked, please call again later to
533 * complete the request
534 * ENOTCONN: Caller needs to invoke connect logic then call again
535 * other: Some other error occured, the request was not sent
536 */
537static int xs_udp_send_request(struct rpc_task *task)
538{
539 struct rpc_rqst *req = task->tk_rqstp;
540 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500541 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262965f2005-08-11 16:25:56 -0400542 struct xdr_buf *xdr = &req->rq_snd_buf;
543 int status;
Chuck Levera246b012005-08-11 16:25:23 -0400544
Chuck Lever9903cd12005-08-11 16:25:26 -0400545 xs_pktdump("packet data:",
Chuck Levera246b012005-08-11 16:25:23 -0400546 req->rq_svec->iov_base,
547 req->rq_svec->iov_len);
548
Trond Myklebust01d37c42009-03-11 14:09:39 -0400549 if (!xprt_bound(xprt))
550 return -ENOTCONN;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500551 status = xs_sendpages(transport->sock,
Chuck Lever95392c52007-08-06 11:57:58 -0400552 xs_addr(xprt),
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500553 xprt->addrlen, xdr,
554 req->rq_bytes_sent);
Chuck Levera246b012005-08-11 16:25:23 -0400555
Chuck Lever46121cf2007-01-31 12:14:08 -0500556 dprintk("RPC: xs_udp_send_request(%u) = %d\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400557 xdr->len - req->rq_bytes_sent, status);
Chuck Levera246b012005-08-11 16:25:23 -0400558
Trond Myklebust21997002007-10-01 11:43:37 -0400559 if (status >= 0) {
560 task->tk_bytes_sent += status;
561 if (status >= req->rq_slen)
562 return 0;
563 /* Still some bytes left; set up for a retry later. */
Chuck Lever262965f2005-08-11 16:25:56 -0400564 status = -EAGAIN;
Trond Myklebust21997002007-10-01 11:43:37 -0400565 }
Trond Myklebustc8485e42009-03-11 14:37:59 -0400566 if (!transport->sock)
567 goto out;
Chuck Levera246b012005-08-11 16:25:23 -0400568
Chuck Lever262965f2005-08-11 16:25:56 -0400569 switch (status) {
Trond Myklebustfba91af2009-03-11 14:06:41 -0400570 case -ENOTSOCK:
571 status = -ENOTCONN;
572 /* Should we call xs_close() here? */
573 break;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400574 case -EAGAIN:
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400575 status = xs_nospace(task);
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400576 break;
Trond Myklebustc8485e42009-03-11 14:37:59 -0400577 default:
578 dprintk("RPC: sendmsg returned unrecognized error %d\n",
579 -status);
Chuck Lever262965f2005-08-11 16:25:56 -0400580 case -ENETUNREACH:
581 case -EPIPE:
Chuck Levera246b012005-08-11 16:25:23 -0400582 case -ECONNREFUSED:
583 /* When the server has died, an ICMP port unreachable message
Chuck Lever9903cd12005-08-11 16:25:26 -0400584 * prompts ECONNREFUSED. */
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400585 clear_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags);
Chuck Levera246b012005-08-11 16:25:23 -0400586 }
Trond Myklebustc8485e42009-03-11 14:37:59 -0400587out:
Chuck Lever262965f2005-08-11 16:25:56 -0400588 return status;
Chuck Levera246b012005-08-11 16:25:23 -0400589}
590
Trond Myklebuste06799f2007-11-05 15:44:12 -0500591/**
592 * xs_tcp_shutdown - gracefully shut down a TCP socket
593 * @xprt: transport
594 *
595 * Initiates a graceful shutdown of the TCP socket by calling the
596 * equivalent of shutdown(SHUT_WR);
597 */
598static void xs_tcp_shutdown(struct rpc_xprt *xprt)
599{
600 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
601 struct socket *sock = transport->sock;
602
603 if (sock != NULL)
604 kernel_sock_shutdown(sock, SHUT_WR);
605}
606
Chuck Lever808012f2005-08-25 16:25:49 -0700607static inline void xs_encode_tcp_record_marker(struct xdr_buf *buf)
608{
609 u32 reclen = buf->len - sizeof(rpc_fraghdr);
610 rpc_fraghdr *base = buf->head[0].iov_base;
611 *base = htonl(RPC_LAST_STREAM_FRAGMENT | reclen);
612}
613
Chuck Lever9903cd12005-08-11 16:25:26 -0400614/**
Chuck Lever262965f2005-08-11 16:25:56 -0400615 * xs_tcp_send_request - write an RPC request to a TCP socket
Chuck Lever9903cd12005-08-11 16:25:26 -0400616 * @task: address of RPC task that manages the state of an RPC request
617 *
618 * Return values:
Chuck Lever262965f2005-08-11 16:25:56 -0400619 * 0: The request has been sent
620 * EAGAIN: The socket was blocked, please call again later to
621 * complete the request
622 * ENOTCONN: Caller needs to invoke connect logic then call again
623 * other: Some other error occured, the request was not sent
Chuck Lever9903cd12005-08-11 16:25:26 -0400624 *
625 * XXX: In the case of soft timeouts, should we eventually give up
Chuck Lever262965f2005-08-11 16:25:56 -0400626 * if sendmsg is not able to make progress?
Chuck Lever9903cd12005-08-11 16:25:26 -0400627 */
Chuck Lever262965f2005-08-11 16:25:56 -0400628static int xs_tcp_send_request(struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -0400629{
630 struct rpc_rqst *req = task->tk_rqstp;
631 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500632 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262965f2005-08-11 16:25:56 -0400633 struct xdr_buf *xdr = &req->rq_snd_buf;
Chuck Leverb595bb12007-08-06 11:56:42 -0400634 int status;
Chuck Levera246b012005-08-11 16:25:23 -0400635
Chuck Lever808012f2005-08-25 16:25:49 -0700636 xs_encode_tcp_record_marker(&req->rq_snd_buf);
Chuck Levera246b012005-08-11 16:25:23 -0400637
Chuck Lever262965f2005-08-11 16:25:56 -0400638 xs_pktdump("packet data:",
639 req->rq_svec->iov_base,
640 req->rq_svec->iov_len);
Chuck Levera246b012005-08-11 16:25:23 -0400641
642 /* Continue transmitting the packet/record. We must be careful
643 * to cope with writespace callbacks arriving _after_ we have
Chuck Lever262965f2005-08-11 16:25:56 -0400644 * called sendmsg(). */
Chuck Levera246b012005-08-11 16:25:23 -0400645 while (1) {
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500646 status = xs_sendpages(transport->sock,
647 NULL, 0, xdr, req->rq_bytes_sent);
Chuck Levera246b012005-08-11 16:25:23 -0400648
Chuck Lever46121cf2007-01-31 12:14:08 -0500649 dprintk("RPC: xs_tcp_send_request(%u) = %d\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400650 xdr->len - req->rq_bytes_sent, status);
651
652 if (unlikely(status < 0))
Chuck Levera246b012005-08-11 16:25:23 -0400653 break;
654
Chuck Lever262965f2005-08-11 16:25:56 -0400655 /* If we've sent the entire packet, immediately
656 * reset the count of bytes sent. */
657 req->rq_bytes_sent += status;
Chuck Leveref759a22006-03-20 13:44:17 -0500658 task->tk_bytes_sent += status;
Chuck Lever262965f2005-08-11 16:25:56 -0400659 if (likely(req->rq_bytes_sent >= req->rq_slen)) {
660 req->rq_bytes_sent = 0;
661 return 0;
Chuck Levera246b012005-08-11 16:25:23 -0400662 }
663
Trond Myklebust06b4b682008-04-16 16:51:38 -0400664 if (status != 0)
665 continue;
Chuck Levera246b012005-08-11 16:25:23 -0400666 status = -EAGAIN;
Trond Myklebust06b4b682008-04-16 16:51:38 -0400667 break;
Chuck Levera246b012005-08-11 16:25:23 -0400668 }
Trond Myklebustc8485e42009-03-11 14:37:59 -0400669 if (!transport->sock)
670 goto out;
Chuck Levera246b012005-08-11 16:25:23 -0400671
Chuck Lever262965f2005-08-11 16:25:56 -0400672 switch (status) {
Trond Myklebustfba91af2009-03-11 14:06:41 -0400673 case -ENOTSOCK:
674 status = -ENOTCONN;
675 /* Should we call xs_close() here? */
676 break;
Chuck Lever262965f2005-08-11 16:25:56 -0400677 case -EAGAIN:
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400678 status = xs_nospace(task);
Chuck Lever262965f2005-08-11 16:25:56 -0400679 break;
680 default:
Chuck Lever46121cf2007-01-31 12:14:08 -0500681 dprintk("RPC: sendmsg returned unrecognized error %d\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400682 -status);
Chuck Lever262965f2005-08-11 16:25:56 -0400683 case -ECONNRESET:
Trond Myklebust55420c22009-03-11 15:29:24 -0400684 case -EPIPE:
Trond Myklebuste06799f2007-11-05 15:44:12 -0500685 xs_tcp_shutdown(xprt);
Chuck Lever262965f2005-08-11 16:25:56 -0400686 case -ECONNREFUSED:
687 case -ENOTCONN:
Chuck Lever262965f2005-08-11 16:25:56 -0400688 clear_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags);
Chuck Levera246b012005-08-11 16:25:23 -0400689 }
Trond Myklebustc8485e42009-03-11 14:37:59 -0400690out:
Chuck Levera246b012005-08-11 16:25:23 -0400691 return status;
692}
693
Chuck Lever9903cd12005-08-11 16:25:26 -0400694/**
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400695 * xs_tcp_release_xprt - clean up after a tcp transmission
696 * @xprt: transport
697 * @task: rpc task
698 *
699 * This cleans up if an error causes us to abort the transmission of a request.
700 * In this case, the socket may need to be reset in order to avoid confusing
701 * the server.
702 */
703static void xs_tcp_release_xprt(struct rpc_xprt *xprt, struct rpc_task *task)
704{
705 struct rpc_rqst *req;
706
707 if (task != xprt->snd_task)
708 return;
709 if (task == NULL)
710 goto out_release;
711 req = task->tk_rqstp;
712 if (req->rq_bytes_sent == 0)
713 goto out_release;
714 if (req->rq_bytes_sent == req->rq_snd_buf.len)
715 goto out_release;
716 set_bit(XPRT_CLOSE_WAIT, &task->tk_xprt->state);
717out_release:
718 xprt_release_xprt(xprt, task);
719}
720
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400721static void xs_save_old_callbacks(struct sock_xprt *transport, struct sock *sk)
722{
723 transport->old_data_ready = sk->sk_data_ready;
724 transport->old_state_change = sk->sk_state_change;
725 transport->old_write_space = sk->sk_write_space;
726 transport->old_error_report = sk->sk_error_report;
727}
728
729static void xs_restore_old_callbacks(struct sock_xprt *transport, struct sock *sk)
730{
731 sk->sk_data_ready = transport->old_data_ready;
732 sk->sk_state_change = transport->old_state_change;
733 sk->sk_write_space = transport->old_write_space;
734 sk->sk_error_report = transport->old_error_report;
735}
736
Chuck Leverfe315e762009-03-11 14:10:21 -0400737static void xs_reset_transport(struct sock_xprt *transport)
Chuck Levera246b012005-08-11 16:25:23 -0400738{
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500739 struct socket *sock = transport->sock;
740 struct sock *sk = transport->inet;
Chuck Levera246b012005-08-11 16:25:23 -0400741
Chuck Leverfe315e762009-03-11 14:10:21 -0400742 if (sk == NULL)
743 return;
Chuck Lever9903cd12005-08-11 16:25:26 -0400744
Chuck Levera246b012005-08-11 16:25:23 -0400745 write_lock_bh(&sk->sk_callback_lock);
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500746 transport->inet = NULL;
747 transport->sock = NULL;
Chuck Levera246b012005-08-11 16:25:23 -0400748
Chuck Lever9903cd12005-08-11 16:25:26 -0400749 sk->sk_user_data = NULL;
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400750
751 xs_restore_old_callbacks(transport, sk);
Chuck Levera246b012005-08-11 16:25:23 -0400752 write_unlock_bh(&sk->sk_callback_lock);
753
Chuck Lever9903cd12005-08-11 16:25:26 -0400754 sk->sk_no_check = 0;
Chuck Levera246b012005-08-11 16:25:23 -0400755
756 sock_release(sock);
Chuck Leverfe315e762009-03-11 14:10:21 -0400757}
758
759/**
760 * xs_close - close a socket
761 * @xprt: transport
762 *
763 * This is used when all requests are complete; ie, no DRC state remains
764 * on the server we want to save.
Trond Myklebustf75e6742009-04-21 17:18:20 -0400765 *
766 * The caller _must_ be holding XPRT_LOCKED in order to avoid issues with
767 * xs_reset_transport() zeroing the socket from underneath a writer.
Chuck Leverfe315e762009-03-11 14:10:21 -0400768 */
769static void xs_close(struct rpc_xprt *xprt)
770{
771 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
772
773 dprintk("RPC: xs_close xprt %p\n", xprt);
774
775 xs_reset_transport(transport);
776
Trond Myklebust632e3bd2006-01-03 09:55:55 +0100777 smp_mb__before_clear_bit();
Trond Myklebust7d1e8252009-03-11 14:38:03 -0400778 clear_bit(XPRT_CONNECTION_ABORT, &xprt->state);
Trond Myklebust632e3bd2006-01-03 09:55:55 +0100779 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
Trond Myklebust3b948ae2007-11-05 17:42:39 -0500780 clear_bit(XPRT_CLOSING, &xprt->state);
Trond Myklebust632e3bd2006-01-03 09:55:55 +0100781 smp_mb__after_clear_bit();
Trond Myklebust62da3b22007-11-06 18:44:20 -0500782 xprt_disconnect_done(xprt);
Chuck Levera246b012005-08-11 16:25:23 -0400783}
784
Trond Myklebustf75e6742009-04-21 17:18:20 -0400785static void xs_tcp_close(struct rpc_xprt *xprt)
786{
787 if (test_and_clear_bit(XPRT_CONNECTION_CLOSE, &xprt->state))
788 xs_close(xprt);
789 else
790 xs_tcp_shutdown(xprt);
791}
792
Chuck Lever9903cd12005-08-11 16:25:26 -0400793/**
794 * xs_destroy - prepare to shutdown a transport
795 * @xprt: doomed transport
796 *
797 */
798static void xs_destroy(struct rpc_xprt *xprt)
Chuck Levera246b012005-08-11 16:25:23 -0400799{
Chuck Leverc8475462006-12-05 16:35:26 -0500800 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
801
Chuck Lever46121cf2007-01-31 12:14:08 -0500802 dprintk("RPC: xs_destroy xprt %p\n", xprt);
Chuck Lever9903cd12005-08-11 16:25:26 -0400803
Trond Myklebustc1384c92007-06-14 18:00:42 -0400804 cancel_rearming_delayed_work(&transport->connect_worker);
Chuck Levera246b012005-08-11 16:25:23 -0400805
Chuck Lever9903cd12005-08-11 16:25:26 -0400806 xs_close(xprt);
Chuck Leveredb267a2006-08-22 20:06:18 -0400807 xs_free_peer_addresses(xprt);
Chuck Levera246b012005-08-11 16:25:23 -0400808 kfree(xprt->slot);
Chuck Leverc8541ec2006-10-17 14:44:27 -0400809 kfree(xprt);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -0400810 module_put(THIS_MODULE);
Chuck Levera246b012005-08-11 16:25:23 -0400811}
812
Chuck Lever9903cd12005-08-11 16:25:26 -0400813static inline struct rpc_xprt *xprt_from_sock(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -0400814{
Chuck Lever9903cd12005-08-11 16:25:26 -0400815 return (struct rpc_xprt *) sk->sk_user_data;
816}
817
818/**
819 * xs_udp_data_ready - "data ready" callback for UDP sockets
820 * @sk: socket with data to read
821 * @len: how much data to read
822 *
823 */
824static void xs_udp_data_ready(struct sock *sk, int len)
825{
826 struct rpc_task *task;
827 struct rpc_xprt *xprt;
Chuck Levera246b012005-08-11 16:25:23 -0400828 struct rpc_rqst *rovr;
Chuck Lever9903cd12005-08-11 16:25:26 -0400829 struct sk_buff *skb;
Chuck Levera246b012005-08-11 16:25:23 -0400830 int err, repsize, copied;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700831 u32 _xid;
832 __be32 *xp;
Chuck Levera246b012005-08-11 16:25:23 -0400833
834 read_lock(&sk->sk_callback_lock);
Chuck Lever46121cf2007-01-31 12:14:08 -0500835 dprintk("RPC: xs_udp_data_ready...\n");
Chuck Lever9903cd12005-08-11 16:25:26 -0400836 if (!(xprt = xprt_from_sock(sk)))
Chuck Levera246b012005-08-11 16:25:23 -0400837 goto out;
Chuck Levera246b012005-08-11 16:25:23 -0400838
839 if ((skb = skb_recv_datagram(sk, 0, 1, &err)) == NULL)
840 goto out;
841
842 if (xprt->shutdown)
843 goto dropit;
844
845 repsize = skb->len - sizeof(struct udphdr);
846 if (repsize < 4) {
Chuck Lever46121cf2007-01-31 12:14:08 -0500847 dprintk("RPC: impossible RPC reply size %d!\n", repsize);
Chuck Levera246b012005-08-11 16:25:23 -0400848 goto dropit;
849 }
850
851 /* Copy the XID from the skb... */
852 xp = skb_header_pointer(skb, sizeof(struct udphdr),
853 sizeof(_xid), &_xid);
854 if (xp == NULL)
855 goto dropit;
856
857 /* Look up and lock the request corresponding to the given XID */
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400858 spin_lock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -0400859 rovr = xprt_lookup_rqst(xprt, *xp);
860 if (!rovr)
861 goto out_unlock;
862 task = rovr->rq_task;
863
Chuck Levera246b012005-08-11 16:25:23 -0400864 if ((copied = rovr->rq_private_buf.buflen) > repsize)
865 copied = repsize;
866
867 /* Suck it into the iovec, verify checksum if not done by hw. */
Herbert Xu1781f7f2007-12-11 11:30:32 -0800868 if (csum_partial_copy_to_xdr(&rovr->rq_private_buf, skb)) {
869 UDPX_INC_STATS_BH(sk, UDP_MIB_INERRORS);
Chuck Levera246b012005-08-11 16:25:23 -0400870 goto out_unlock;
Herbert Xu1781f7f2007-12-11 11:30:32 -0800871 }
872
873 UDPX_INC_STATS_BH(sk, UDP_MIB_INDATAGRAMS);
Chuck Levera246b012005-08-11 16:25:23 -0400874
875 /* Something worked... */
Eric Dumazetadf30902009-06-02 05:19:30 +0000876 dst_confirm(skb_dst(skb));
Chuck Levera246b012005-08-11 16:25:23 -0400877
Chuck Lever1570c1e2005-08-25 16:25:52 -0700878 xprt_adjust_cwnd(task, copied);
879 xprt_update_rtt(task);
880 xprt_complete_rqst(task, copied);
Chuck Levera246b012005-08-11 16:25:23 -0400881
882 out_unlock:
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400883 spin_unlock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -0400884 dropit:
885 skb_free_datagram(sk, skb);
886 out:
887 read_unlock(&sk->sk_callback_lock);
888}
889
Chuck Leverdd456472006-12-05 16:35:44 -0500890static inline void xs_tcp_read_fraghdr(struct rpc_xprt *xprt, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -0400891{
Chuck Lever51971132006-12-05 16:35:19 -0500892 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -0400893 size_t len, used;
894 char *p;
895
Chuck Lever51971132006-12-05 16:35:19 -0500896 p = ((char *) &transport->tcp_fraghdr) + transport->tcp_offset;
897 len = sizeof(transport->tcp_fraghdr) - transport->tcp_offset;
Chuck Lever9d292312006-12-05 16:35:41 -0500898 used = xdr_skb_read_bits(desc, p, len);
Chuck Lever51971132006-12-05 16:35:19 -0500899 transport->tcp_offset += used;
Chuck Levera246b012005-08-11 16:25:23 -0400900 if (used != len)
901 return;
Chuck Lever808012f2005-08-25 16:25:49 -0700902
Chuck Lever51971132006-12-05 16:35:19 -0500903 transport->tcp_reclen = ntohl(transport->tcp_fraghdr);
904 if (transport->tcp_reclen & RPC_LAST_STREAM_FRAGMENT)
Chuck Levere136d092006-12-05 16:35:23 -0500905 transport->tcp_flags |= TCP_RCV_LAST_FRAG;
Chuck Levera246b012005-08-11 16:25:23 -0400906 else
Chuck Levere136d092006-12-05 16:35:23 -0500907 transport->tcp_flags &= ~TCP_RCV_LAST_FRAG;
Chuck Lever51971132006-12-05 16:35:19 -0500908 transport->tcp_reclen &= RPC_FRAGMENT_SIZE_MASK;
Chuck Lever808012f2005-08-25 16:25:49 -0700909
Chuck Levere136d092006-12-05 16:35:23 -0500910 transport->tcp_flags &= ~TCP_RCV_COPY_FRAGHDR;
Chuck Lever51971132006-12-05 16:35:19 -0500911 transport->tcp_offset = 0;
Chuck Lever808012f2005-08-25 16:25:49 -0700912
Chuck Levera246b012005-08-11 16:25:23 -0400913 /* Sanity check of the record length */
Ricardo Labiaga18dca022009-04-01 09:22:53 -0400914 if (unlikely(transport->tcp_reclen < 8)) {
Chuck Lever46121cf2007-01-31 12:14:08 -0500915 dprintk("RPC: invalid TCP record fragment length\n");
Trond Myklebust3ebb0672007-11-06 18:40:12 -0500916 xprt_force_disconnect(xprt);
Chuck Lever9903cd12005-08-11 16:25:26 -0400917 return;
Chuck Levera246b012005-08-11 16:25:23 -0400918 }
Chuck Lever46121cf2007-01-31 12:14:08 -0500919 dprintk("RPC: reading TCP record fragment of length %d\n",
Chuck Lever51971132006-12-05 16:35:19 -0500920 transport->tcp_reclen);
Chuck Levera246b012005-08-11 16:25:23 -0400921}
922
Chuck Lever51971132006-12-05 16:35:19 -0500923static void xs_tcp_check_fraghdr(struct sock_xprt *transport)
Chuck Levera246b012005-08-11 16:25:23 -0400924{
Chuck Lever51971132006-12-05 16:35:19 -0500925 if (transport->tcp_offset == transport->tcp_reclen) {
Chuck Levere136d092006-12-05 16:35:23 -0500926 transport->tcp_flags |= TCP_RCV_COPY_FRAGHDR;
Chuck Lever51971132006-12-05 16:35:19 -0500927 transport->tcp_offset = 0;
Chuck Levere136d092006-12-05 16:35:23 -0500928 if (transport->tcp_flags & TCP_RCV_LAST_FRAG) {
929 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
930 transport->tcp_flags |= TCP_RCV_COPY_XID;
Chuck Lever51971132006-12-05 16:35:19 -0500931 transport->tcp_copied = 0;
Chuck Levera246b012005-08-11 16:25:23 -0400932 }
933 }
934}
935
Chuck Leverdd456472006-12-05 16:35:44 -0500936static inline void xs_tcp_read_xid(struct sock_xprt *transport, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -0400937{
938 size_t len, used;
939 char *p;
940
Chuck Lever51971132006-12-05 16:35:19 -0500941 len = sizeof(transport->tcp_xid) - transport->tcp_offset;
Chuck Lever46121cf2007-01-31 12:14:08 -0500942 dprintk("RPC: reading XID (%Zu bytes)\n", len);
Chuck Lever51971132006-12-05 16:35:19 -0500943 p = ((char *) &transport->tcp_xid) + transport->tcp_offset;
Chuck Lever9d292312006-12-05 16:35:41 -0500944 used = xdr_skb_read_bits(desc, p, len);
Chuck Lever51971132006-12-05 16:35:19 -0500945 transport->tcp_offset += used;
Chuck Levera246b012005-08-11 16:25:23 -0400946 if (used != len)
947 return;
Chuck Levere136d092006-12-05 16:35:23 -0500948 transport->tcp_flags &= ~TCP_RCV_COPY_XID;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -0400949 transport->tcp_flags |= TCP_RCV_READ_CALLDIR;
Chuck Lever51971132006-12-05 16:35:19 -0500950 transport->tcp_copied = 4;
Ricardo Labiaga18dca022009-04-01 09:22:53 -0400951 dprintk("RPC: reading %s XID %08x\n",
952 (transport->tcp_flags & TCP_RPC_REPLY) ? "reply for"
953 : "request with",
Chuck Lever51971132006-12-05 16:35:19 -0500954 ntohl(transport->tcp_xid));
955 xs_tcp_check_fraghdr(transport);
Chuck Levera246b012005-08-11 16:25:23 -0400956}
957
Ricardo Labiaga18dca022009-04-01 09:22:53 -0400958static inline void xs_tcp_read_calldir(struct sock_xprt *transport,
959 struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -0400960{
Ricardo Labiaga18dca022009-04-01 09:22:53 -0400961 size_t len, used;
962 u32 offset;
963 __be32 calldir;
964
965 /*
966 * We want transport->tcp_offset to be 8 at the end of this routine
967 * (4 bytes for the xid and 4 bytes for the call/reply flag).
968 * When this function is called for the first time,
969 * transport->tcp_offset is 4 (after having already read the xid).
970 */
971 offset = transport->tcp_offset - sizeof(transport->tcp_xid);
972 len = sizeof(calldir) - offset;
973 dprintk("RPC: reading CALL/REPLY flag (%Zu bytes)\n", len);
974 used = xdr_skb_read_bits(desc, &calldir, len);
975 transport->tcp_offset += used;
976 if (used != len)
977 return;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -0400978 transport->tcp_flags &= ~TCP_RCV_READ_CALLDIR;
979 transport->tcp_flags |= TCP_RCV_COPY_CALLDIR;
Ricardo Labiaga18dca022009-04-01 09:22:53 -0400980 transport->tcp_flags |= TCP_RCV_COPY_DATA;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -0400981 /*
982 * We don't yet have the XDR buffer, so we will write the calldir
983 * out after we get the buffer from the 'struct rpc_rqst'
984 */
Ricardo Labiaga18dca022009-04-01 09:22:53 -0400985 if (ntohl(calldir) == RPC_REPLY)
986 transport->tcp_flags |= TCP_RPC_REPLY;
987 else
988 transport->tcp_flags &= ~TCP_RPC_REPLY;
989 dprintk("RPC: reading %s CALL/REPLY flag %08x\n",
990 (transport->tcp_flags & TCP_RPC_REPLY) ?
991 "reply for" : "request with", calldir);
992 xs_tcp_check_fraghdr(transport);
993}
994
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -0400995static inline void xs_tcp_read_common(struct rpc_xprt *xprt,
996 struct xdr_skb_reader *desc,
997 struct rpc_rqst *req)
Chuck Levera246b012005-08-11 16:25:23 -0400998{
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -0400999 struct sock_xprt *transport =
1000 container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001001 struct xdr_buf *rcvbuf;
1002 size_t len;
1003 ssize_t r;
1004
Chuck Levera246b012005-08-11 16:25:23 -04001005 rcvbuf = &req->rq_private_buf;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001006
1007 if (transport->tcp_flags & TCP_RCV_COPY_CALLDIR) {
1008 /*
1009 * Save the RPC direction in the XDR buffer
1010 */
1011 __be32 calldir = transport->tcp_flags & TCP_RPC_REPLY ?
1012 htonl(RPC_REPLY) : 0;
1013
1014 memcpy(rcvbuf->head[0].iov_base + transport->tcp_copied,
1015 &calldir, sizeof(calldir));
1016 transport->tcp_copied += sizeof(calldir);
1017 transport->tcp_flags &= ~TCP_RCV_COPY_CALLDIR;
Chuck Levera246b012005-08-11 16:25:23 -04001018 }
1019
Chuck Levera246b012005-08-11 16:25:23 -04001020 len = desc->count;
Chuck Lever51971132006-12-05 16:35:19 -05001021 if (len > transport->tcp_reclen - transport->tcp_offset) {
Chuck Leverdd456472006-12-05 16:35:44 -05001022 struct xdr_skb_reader my_desc;
Chuck Levera246b012005-08-11 16:25:23 -04001023
Chuck Lever51971132006-12-05 16:35:19 -05001024 len = transport->tcp_reclen - transport->tcp_offset;
Chuck Levera246b012005-08-11 16:25:23 -04001025 memcpy(&my_desc, desc, sizeof(my_desc));
1026 my_desc.count = len;
Chuck Lever51971132006-12-05 16:35:19 -05001027 r = xdr_partial_copy_from_skb(rcvbuf, transport->tcp_copied,
Chuck Lever9d292312006-12-05 16:35:41 -05001028 &my_desc, xdr_skb_read_bits);
Chuck Levera246b012005-08-11 16:25:23 -04001029 desc->count -= r;
1030 desc->offset += r;
1031 } else
Chuck Lever51971132006-12-05 16:35:19 -05001032 r = xdr_partial_copy_from_skb(rcvbuf, transport->tcp_copied,
Chuck Lever9d292312006-12-05 16:35:41 -05001033 desc, xdr_skb_read_bits);
Chuck Levera246b012005-08-11 16:25:23 -04001034
1035 if (r > 0) {
Chuck Lever51971132006-12-05 16:35:19 -05001036 transport->tcp_copied += r;
1037 transport->tcp_offset += r;
Chuck Levera246b012005-08-11 16:25:23 -04001038 }
1039 if (r != len) {
1040 /* Error when copying to the receive buffer,
1041 * usually because we weren't able to allocate
1042 * additional buffer pages. All we can do now
Chuck Levere136d092006-12-05 16:35:23 -05001043 * is turn off TCP_RCV_COPY_DATA, so the request
Chuck Levera246b012005-08-11 16:25:23 -04001044 * will not receive any additional updates,
1045 * and time out.
1046 * Any remaining data from this record will
1047 * be discarded.
1048 */
Chuck Levere136d092006-12-05 16:35:23 -05001049 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Lever46121cf2007-01-31 12:14:08 -05001050 dprintk("RPC: XID %08x truncated request\n",
Chuck Lever51971132006-12-05 16:35:19 -05001051 ntohl(transport->tcp_xid));
Chuck Lever46121cf2007-01-31 12:14:08 -05001052 dprintk("RPC: xprt = %p, tcp_copied = %lu, "
1053 "tcp_offset = %u, tcp_reclen = %u\n",
1054 xprt, transport->tcp_copied,
1055 transport->tcp_offset, transport->tcp_reclen);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001056 return;
Chuck Levera246b012005-08-11 16:25:23 -04001057 }
1058
Chuck Lever46121cf2007-01-31 12:14:08 -05001059 dprintk("RPC: XID %08x read %Zd bytes\n",
Chuck Lever51971132006-12-05 16:35:19 -05001060 ntohl(transport->tcp_xid), r);
Chuck Lever46121cf2007-01-31 12:14:08 -05001061 dprintk("RPC: xprt = %p, tcp_copied = %lu, tcp_offset = %u, "
1062 "tcp_reclen = %u\n", xprt, transport->tcp_copied,
1063 transport->tcp_offset, transport->tcp_reclen);
Chuck Levera246b012005-08-11 16:25:23 -04001064
Chuck Lever51971132006-12-05 16:35:19 -05001065 if (transport->tcp_copied == req->rq_private_buf.buflen)
Chuck Levere136d092006-12-05 16:35:23 -05001066 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Lever51971132006-12-05 16:35:19 -05001067 else if (transport->tcp_offset == transport->tcp_reclen) {
Chuck Levere136d092006-12-05 16:35:23 -05001068 if (transport->tcp_flags & TCP_RCV_LAST_FRAG)
1069 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Levera246b012005-08-11 16:25:23 -04001070 }
1071
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001072 return;
1073}
1074
1075/*
1076 * Finds the request corresponding to the RPC xid and invokes the common
1077 * tcp read code to read the data.
1078 */
1079static inline int xs_tcp_read_reply(struct rpc_xprt *xprt,
1080 struct xdr_skb_reader *desc)
1081{
1082 struct sock_xprt *transport =
1083 container_of(xprt, struct sock_xprt, xprt);
1084 struct rpc_rqst *req;
1085
1086 dprintk("RPC: read reply XID %08x\n", ntohl(transport->tcp_xid));
1087
1088 /* Find and lock the request corresponding to this xid */
1089 spin_lock(&xprt->transport_lock);
1090 req = xprt_lookup_rqst(xprt, transport->tcp_xid);
1091 if (!req) {
1092 dprintk("RPC: XID %08x request not found!\n",
1093 ntohl(transport->tcp_xid));
1094 spin_unlock(&xprt->transport_lock);
1095 return -1;
1096 }
1097
1098 xs_tcp_read_common(xprt, desc, req);
1099
Chuck Levere136d092006-12-05 16:35:23 -05001100 if (!(transport->tcp_flags & TCP_RCV_COPY_DATA))
Chuck Lever51971132006-12-05 16:35:19 -05001101 xprt_complete_rqst(req->rq_task, transport->tcp_copied);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001102
Chuck Lever4a0f8c02005-08-11 16:25:32 -04001103 spin_unlock(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001104 return 0;
1105}
1106
1107#if defined(CONFIG_NFS_V4_1)
1108/*
1109 * Obtains an rpc_rqst previously allocated and invokes the common
1110 * tcp read code to read the data. The result is placed in the callback
1111 * queue.
1112 * If we're unable to obtain the rpc_rqst we schedule the closing of the
1113 * connection and return -1.
1114 */
1115static inline int xs_tcp_read_callback(struct rpc_xprt *xprt,
1116 struct xdr_skb_reader *desc)
1117{
1118 struct sock_xprt *transport =
1119 container_of(xprt, struct sock_xprt, xprt);
1120 struct rpc_rqst *req;
1121
1122 req = xprt_alloc_bc_request(xprt);
1123 if (req == NULL) {
1124 printk(KERN_WARNING "Callback slot table overflowed\n");
1125 xprt_force_disconnect(xprt);
1126 return -1;
1127 }
1128
1129 req->rq_xid = transport->tcp_xid;
1130 dprintk("RPC: read callback XID %08x\n", ntohl(req->rq_xid));
1131 xs_tcp_read_common(xprt, desc, req);
1132
1133 if (!(transport->tcp_flags & TCP_RCV_COPY_DATA)) {
1134 struct svc_serv *bc_serv = xprt->bc_serv;
1135
1136 /*
1137 * Add callback request to callback list. The callback
1138 * service sleeps on the sv_cb_waitq waiting for new
1139 * requests. Wake it up after adding enqueing the
1140 * request.
1141 */
1142 dprintk("RPC: add callback request to list\n");
1143 spin_lock(&bc_serv->sv_cb_lock);
1144 list_add(&req->rq_bc_list, &bc_serv->sv_cb_list);
1145 spin_unlock(&bc_serv->sv_cb_lock);
1146 wake_up(&bc_serv->sv_cb_waitq);
1147 }
1148
1149 req->rq_private_buf.len = transport->tcp_copied;
1150
1151 return 0;
1152}
1153
1154static inline int _xs_tcp_read_data(struct rpc_xprt *xprt,
1155 struct xdr_skb_reader *desc)
1156{
1157 struct sock_xprt *transport =
1158 container_of(xprt, struct sock_xprt, xprt);
1159
1160 return (transport->tcp_flags & TCP_RPC_REPLY) ?
1161 xs_tcp_read_reply(xprt, desc) :
1162 xs_tcp_read_callback(xprt, desc);
1163}
1164#else
1165static inline int _xs_tcp_read_data(struct rpc_xprt *xprt,
1166 struct xdr_skb_reader *desc)
1167{
1168 return xs_tcp_read_reply(xprt, desc);
1169}
1170#endif /* CONFIG_NFS_V4_1 */
1171
1172/*
1173 * Read data off the transport. This can be either an RPC_CALL or an
1174 * RPC_REPLY. Relay the processing to helper functions.
1175 */
1176static void xs_tcp_read_data(struct rpc_xprt *xprt,
1177 struct xdr_skb_reader *desc)
1178{
1179 struct sock_xprt *transport =
1180 container_of(xprt, struct sock_xprt, xprt);
1181
1182 if (_xs_tcp_read_data(xprt, desc) == 0)
1183 xs_tcp_check_fraghdr(transport);
1184 else {
1185 /*
1186 * The transport_lock protects the request handling.
1187 * There's no need to hold it to update the tcp_flags.
1188 */
1189 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
1190 }
Chuck Levera246b012005-08-11 16:25:23 -04001191}
1192
Chuck Leverdd456472006-12-05 16:35:44 -05001193static inline void xs_tcp_read_discard(struct sock_xprt *transport, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001194{
1195 size_t len;
1196
Chuck Lever51971132006-12-05 16:35:19 -05001197 len = transport->tcp_reclen - transport->tcp_offset;
Chuck Levera246b012005-08-11 16:25:23 -04001198 if (len > desc->count)
1199 len = desc->count;
1200 desc->count -= len;
1201 desc->offset += len;
Chuck Lever51971132006-12-05 16:35:19 -05001202 transport->tcp_offset += len;
Chuck Lever46121cf2007-01-31 12:14:08 -05001203 dprintk("RPC: discarded %Zu bytes\n", len);
Chuck Lever51971132006-12-05 16:35:19 -05001204 xs_tcp_check_fraghdr(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001205}
1206
Chuck Lever9903cd12005-08-11 16:25:26 -04001207static 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 -04001208{
1209 struct rpc_xprt *xprt = rd_desc->arg.data;
Chuck Lever51971132006-12-05 16:35:19 -05001210 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Leverdd456472006-12-05 16:35:44 -05001211 struct xdr_skb_reader desc = {
Chuck Levera246b012005-08-11 16:25:23 -04001212 .skb = skb,
1213 .offset = offset,
1214 .count = len,
Chuck Lever9903cd12005-08-11 16:25:26 -04001215 };
Chuck Levera246b012005-08-11 16:25:23 -04001216
Chuck Lever46121cf2007-01-31 12:14:08 -05001217 dprintk("RPC: xs_tcp_data_recv started\n");
Chuck Levera246b012005-08-11 16:25:23 -04001218 do {
1219 /* Read in a new fragment marker if necessary */
1220 /* Can we ever really expect to get completely empty fragments? */
Chuck Levere136d092006-12-05 16:35:23 -05001221 if (transport->tcp_flags & TCP_RCV_COPY_FRAGHDR) {
Chuck Lever9903cd12005-08-11 16:25:26 -04001222 xs_tcp_read_fraghdr(xprt, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001223 continue;
1224 }
1225 /* Read in the xid if necessary */
Chuck Levere136d092006-12-05 16:35:23 -05001226 if (transport->tcp_flags & TCP_RCV_COPY_XID) {
Chuck Lever51971132006-12-05 16:35:19 -05001227 xs_tcp_read_xid(transport, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001228 continue;
1229 }
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001230 /* Read in the call/reply flag */
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001231 if (transport->tcp_flags & TCP_RCV_READ_CALLDIR) {
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001232 xs_tcp_read_calldir(transport, &desc);
1233 continue;
1234 }
Chuck Levera246b012005-08-11 16:25:23 -04001235 /* Read in the request data */
Chuck Levere136d092006-12-05 16:35:23 -05001236 if (transport->tcp_flags & TCP_RCV_COPY_DATA) {
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001237 xs_tcp_read_data(xprt, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001238 continue;
1239 }
1240 /* Skip over any trailing bytes on short reads */
Chuck Lever51971132006-12-05 16:35:19 -05001241 xs_tcp_read_discard(transport, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001242 } while (desc.count);
Chuck Lever46121cf2007-01-31 12:14:08 -05001243 dprintk("RPC: xs_tcp_data_recv done\n");
Chuck Levera246b012005-08-11 16:25:23 -04001244 return len - desc.count;
1245}
1246
Chuck Lever9903cd12005-08-11 16:25:26 -04001247/**
1248 * xs_tcp_data_ready - "data ready" callback for TCP sockets
1249 * @sk: socket with data to read
1250 * @bytes: how much data to read
1251 *
1252 */
1253static void xs_tcp_data_ready(struct sock *sk, int bytes)
Chuck Levera246b012005-08-11 16:25:23 -04001254{
1255 struct rpc_xprt *xprt;
1256 read_descriptor_t rd_desc;
Trond Myklebustff2d7db2008-02-25 21:40:51 -08001257 int read;
Chuck Levera246b012005-08-11 16:25:23 -04001258
Chuck Lever46121cf2007-01-31 12:14:08 -05001259 dprintk("RPC: xs_tcp_data_ready...\n");
1260
Chuck Levera246b012005-08-11 16:25:23 -04001261 read_lock(&sk->sk_callback_lock);
Chuck Lever9903cd12005-08-11 16:25:26 -04001262 if (!(xprt = xprt_from_sock(sk)))
Chuck Levera246b012005-08-11 16:25:23 -04001263 goto out;
Chuck Levera246b012005-08-11 16:25:23 -04001264 if (xprt->shutdown)
1265 goto out;
1266
Chuck Lever9903cd12005-08-11 16:25:26 -04001267 /* We use rd_desc to pass struct xprt to xs_tcp_data_recv */
Chuck Levera246b012005-08-11 16:25:23 -04001268 rd_desc.arg.data = xprt;
Trond Myklebustff2d7db2008-02-25 21:40:51 -08001269 do {
1270 rd_desc.count = 65536;
1271 read = tcp_read_sock(sk, &rd_desc, xs_tcp_data_recv);
1272 } while (read > 0);
Chuck Levera246b012005-08-11 16:25:23 -04001273out:
1274 read_unlock(&sk->sk_callback_lock);
1275}
1276
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001277/*
1278 * Do the equivalent of linger/linger2 handling for dealing with
1279 * broken servers that don't close the socket in a timely
1280 * fashion
1281 */
1282static void xs_tcp_schedule_linger_timeout(struct rpc_xprt *xprt,
1283 unsigned long timeout)
1284{
1285 struct sock_xprt *transport;
1286
1287 if (xprt_test_and_set_connecting(xprt))
1288 return;
1289 set_bit(XPRT_CONNECTION_ABORT, &xprt->state);
1290 transport = container_of(xprt, struct sock_xprt, xprt);
1291 queue_delayed_work(rpciod_workqueue, &transport->connect_worker,
1292 timeout);
1293}
1294
1295static void xs_tcp_cancel_linger_timeout(struct rpc_xprt *xprt)
1296{
1297 struct sock_xprt *transport;
1298
1299 transport = container_of(xprt, struct sock_xprt, xprt);
1300
1301 if (!test_bit(XPRT_CONNECTION_ABORT, &xprt->state) ||
1302 !cancel_delayed_work(&transport->connect_worker))
1303 return;
1304 clear_bit(XPRT_CONNECTION_ABORT, &xprt->state);
1305 xprt_clear_connecting(xprt);
1306}
1307
1308static void xs_sock_mark_closed(struct rpc_xprt *xprt)
1309{
1310 smp_mb__before_clear_bit();
1311 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
1312 clear_bit(XPRT_CLOSING, &xprt->state);
1313 smp_mb__after_clear_bit();
1314 /* Mark transport as closed and wake up all pending tasks */
1315 xprt_disconnect_done(xprt);
1316}
1317
Chuck Lever9903cd12005-08-11 16:25:26 -04001318/**
1319 * xs_tcp_state_change - callback to handle TCP socket state changes
1320 * @sk: socket whose state has changed
1321 *
1322 */
1323static void xs_tcp_state_change(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -04001324{
Chuck Lever9903cd12005-08-11 16:25:26 -04001325 struct rpc_xprt *xprt;
Chuck Levera246b012005-08-11 16:25:23 -04001326
1327 read_lock(&sk->sk_callback_lock);
1328 if (!(xprt = xprt_from_sock(sk)))
1329 goto out;
Chuck Lever46121cf2007-01-31 12:14:08 -05001330 dprintk("RPC: xs_tcp_state_change client %p...\n", xprt);
1331 dprintk("RPC: state %x conn %d dead %d zapped %d\n",
1332 sk->sk_state, xprt_connected(xprt),
1333 sock_flag(sk, SOCK_DEAD),
1334 sock_flag(sk, SOCK_ZAPPED));
Chuck Levera246b012005-08-11 16:25:23 -04001335
1336 switch (sk->sk_state) {
1337 case TCP_ESTABLISHED:
Chuck Lever4a0f8c02005-08-11 16:25:32 -04001338 spin_lock_bh(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001339 if (!xprt_test_and_set_connected(xprt)) {
Chuck Lever51971132006-12-05 16:35:19 -05001340 struct sock_xprt *transport = container_of(xprt,
1341 struct sock_xprt, xprt);
1342
Chuck Levera246b012005-08-11 16:25:23 -04001343 /* Reset TCP record info */
Chuck Lever51971132006-12-05 16:35:19 -05001344 transport->tcp_offset = 0;
1345 transport->tcp_reclen = 0;
1346 transport->tcp_copied = 0;
Chuck Levere136d092006-12-05 16:35:23 -05001347 transport->tcp_flags =
1348 TCP_RCV_COPY_FRAGHDR | TCP_RCV_COPY_XID;
Chuck Lever51971132006-12-05 16:35:19 -05001349
Trond Myklebust2a491992009-03-11 14:38:00 -04001350 xprt_wake_pending_tasks(xprt, -EAGAIN);
Chuck Levera246b012005-08-11 16:25:23 -04001351 }
Chuck Lever4a0f8c02005-08-11 16:25:32 -04001352 spin_unlock_bh(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001353 break;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001354 case TCP_FIN_WAIT1:
1355 /* The client initiated a shutdown of the socket */
Trond Myklebust7c1d71c2008-04-17 16:52:57 -04001356 xprt->connect_cookie++;
Trond Myklebust663b8852008-01-01 18:42:12 -05001357 xprt->reestablish_timeout = 0;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001358 set_bit(XPRT_CLOSING, &xprt->state);
1359 smp_mb__before_clear_bit();
1360 clear_bit(XPRT_CONNECTED, &xprt->state);
Trond Myklebustef803672007-12-31 16:19:17 -05001361 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001362 smp_mb__after_clear_bit();
Trond Myklebust25fe6142009-03-11 14:38:03 -04001363 xs_tcp_schedule_linger_timeout(xprt, xs_tcp_fin_timeout);
Chuck Levera246b012005-08-11 16:25:23 -04001364 break;
Trond Myklebust632e3bd2006-01-03 09:55:55 +01001365 case TCP_CLOSE_WAIT:
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001366 /* The server initiated a shutdown of the socket */
Trond Myklebust66af1e552007-11-06 10:18:36 -05001367 xprt_force_disconnect(xprt);
Trond Myklebust663b8852008-01-01 18:42:12 -05001368 case TCP_SYN_SENT:
Trond Myklebust7c1d71c2008-04-17 16:52:57 -04001369 xprt->connect_cookie++;
Trond Myklebust663b8852008-01-01 18:42:12 -05001370 case TCP_CLOSING:
1371 /*
1372 * If the server closed down the connection, make sure that
1373 * we back off before reconnecting
1374 */
1375 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
1376 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001377 break;
1378 case TCP_LAST_ACK:
Trond Myklebust670f9452009-03-11 14:37:58 -04001379 set_bit(XPRT_CLOSING, &xprt->state);
Trond Myklebust25fe6142009-03-11 14:38:03 -04001380 xs_tcp_schedule_linger_timeout(xprt, xs_tcp_fin_timeout);
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001381 smp_mb__before_clear_bit();
1382 clear_bit(XPRT_CONNECTED, &xprt->state);
1383 smp_mb__after_clear_bit();
1384 break;
1385 case TCP_CLOSE:
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001386 xs_tcp_cancel_linger_timeout(xprt);
1387 xs_sock_mark_closed(xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001388 }
1389 out:
1390 read_unlock(&sk->sk_callback_lock);
1391}
1392
Chuck Lever9903cd12005-08-11 16:25:26 -04001393/**
Trond Myklebust482f32e2009-03-11 14:38:00 -04001394 * xs_error_report - callback mainly for catching socket errors
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04001395 * @sk: socket
1396 */
Trond Myklebust482f32e2009-03-11 14:38:00 -04001397static void xs_error_report(struct sock *sk)
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04001398{
1399 struct rpc_xprt *xprt;
1400
1401 read_lock(&sk->sk_callback_lock);
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04001402 if (!(xprt = xprt_from_sock(sk)))
1403 goto out;
1404 dprintk("RPC: %s client %p...\n"
1405 "RPC: error %d\n",
1406 __func__, xprt, sk->sk_err);
Trond Myklebust482f32e2009-03-11 14:38:00 -04001407 xprt_wake_pending_tasks(xprt, -EAGAIN);
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04001408out:
1409 read_unlock(&sk->sk_callback_lock);
1410}
1411
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001412static void xs_write_space(struct sock *sk)
1413{
1414 struct socket *sock;
1415 struct rpc_xprt *xprt;
1416
1417 if (unlikely(!(sock = sk->sk_socket)))
1418 return;
1419 clear_bit(SOCK_NOSPACE, &sock->flags);
1420
1421 if (unlikely(!(xprt = xprt_from_sock(sk))))
1422 return;
1423 if (test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags) == 0)
1424 return;
1425
1426 xprt_write_space(xprt);
1427}
1428
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04001429/**
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001430 * xs_udp_write_space - callback invoked when socket buffer space
1431 * becomes available
Chuck Lever9903cd12005-08-11 16:25:26 -04001432 * @sk: socket whose state has changed
1433 *
Chuck Levera246b012005-08-11 16:25:23 -04001434 * Called when more output buffer space is available for this socket.
1435 * We try not to wake our writers until they can make "significant"
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001436 * progress, otherwise we'll waste resources thrashing kernel_sendmsg
Chuck Levera246b012005-08-11 16:25:23 -04001437 * with a bunch of small requests.
1438 */
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001439static void xs_udp_write_space(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -04001440{
Chuck Levera246b012005-08-11 16:25:23 -04001441 read_lock(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001442
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001443 /* from net/core/sock.c:sock_def_write_space */
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001444 if (sock_writeable(sk))
1445 xs_write_space(sk);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001446
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001447 read_unlock(&sk->sk_callback_lock);
1448}
Chuck Levera246b012005-08-11 16:25:23 -04001449
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001450/**
1451 * xs_tcp_write_space - callback invoked when socket buffer space
1452 * becomes available
1453 * @sk: socket whose state has changed
1454 *
1455 * Called when more output buffer space is available for this socket.
1456 * We try not to wake our writers until they can make "significant"
1457 * progress, otherwise we'll waste resources thrashing kernel_sendmsg
1458 * with a bunch of small requests.
1459 */
1460static void xs_tcp_write_space(struct sock *sk)
1461{
1462 read_lock(&sk->sk_callback_lock);
1463
1464 /* from net/core/stream.c:sk_stream_write_space */
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001465 if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk))
1466 xs_write_space(sk);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001467
Chuck Levera246b012005-08-11 16:25:23 -04001468 read_unlock(&sk->sk_callback_lock);
1469}
1470
Chuck Lever470056c2005-08-25 16:25:56 -07001471static void xs_udp_do_set_buffer_size(struct rpc_xprt *xprt)
Chuck Levera246b012005-08-11 16:25:23 -04001472{
Chuck Leveree0ac0c2006-12-05 16:35:15 -05001473 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
1474 struct sock *sk = transport->inet;
Chuck Levera246b012005-08-11 16:25:23 -04001475
Chuck Lever7c6e0662006-12-05 16:35:30 -05001476 if (transport->rcvsize) {
Chuck Levera246b012005-08-11 16:25:23 -04001477 sk->sk_userlocks |= SOCK_RCVBUF_LOCK;
Chuck Lever7c6e0662006-12-05 16:35:30 -05001478 sk->sk_rcvbuf = transport->rcvsize * xprt->max_reqs * 2;
Chuck Levera246b012005-08-11 16:25:23 -04001479 }
Chuck Lever7c6e0662006-12-05 16:35:30 -05001480 if (transport->sndsize) {
Chuck Levera246b012005-08-11 16:25:23 -04001481 sk->sk_userlocks |= SOCK_SNDBUF_LOCK;
Chuck Lever7c6e0662006-12-05 16:35:30 -05001482 sk->sk_sndbuf = transport->sndsize * xprt->max_reqs * 2;
Chuck Levera246b012005-08-11 16:25:23 -04001483 sk->sk_write_space(sk);
1484 }
1485}
1486
Chuck Lever43118c22005-08-25 16:25:49 -07001487/**
Chuck Lever470056c2005-08-25 16:25:56 -07001488 * xs_udp_set_buffer_size - set send and receive limits
Chuck Lever43118c22005-08-25 16:25:49 -07001489 * @xprt: generic transport
Chuck Lever470056c2005-08-25 16:25:56 -07001490 * @sndsize: requested size of send buffer, in bytes
1491 * @rcvsize: requested size of receive buffer, in bytes
Chuck Lever43118c22005-08-25 16:25:49 -07001492 *
Chuck Lever470056c2005-08-25 16:25:56 -07001493 * Set socket send and receive buffer size limits.
Chuck Lever43118c22005-08-25 16:25:49 -07001494 */
Chuck Lever470056c2005-08-25 16:25:56 -07001495static void xs_udp_set_buffer_size(struct rpc_xprt *xprt, size_t sndsize, size_t rcvsize)
Chuck Lever43118c22005-08-25 16:25:49 -07001496{
Chuck Lever7c6e0662006-12-05 16:35:30 -05001497 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
1498
1499 transport->sndsize = 0;
Chuck Lever470056c2005-08-25 16:25:56 -07001500 if (sndsize)
Chuck Lever7c6e0662006-12-05 16:35:30 -05001501 transport->sndsize = sndsize + 1024;
1502 transport->rcvsize = 0;
Chuck Lever470056c2005-08-25 16:25:56 -07001503 if (rcvsize)
Chuck Lever7c6e0662006-12-05 16:35:30 -05001504 transport->rcvsize = rcvsize + 1024;
Chuck Lever470056c2005-08-25 16:25:56 -07001505
1506 xs_udp_do_set_buffer_size(xprt);
Chuck Lever43118c22005-08-25 16:25:49 -07001507}
1508
Chuck Lever46c0ee82005-08-25 16:25:52 -07001509/**
1510 * xs_udp_timer - called when a retransmit timeout occurs on a UDP transport
1511 * @task: task that timed out
1512 *
1513 * Adjust the congestion window after a retransmit timeout has occurred.
1514 */
1515static void xs_udp_timer(struct rpc_task *task)
1516{
1517 xprt_adjust_cwnd(task, -ETIMEDOUT);
1518}
1519
Chuck Leverb85d8802006-05-25 01:40:49 -04001520static unsigned short xs_get_random_port(void)
1521{
1522 unsigned short range = xprt_max_resvport - xprt_min_resvport;
1523 unsigned short rand = (unsigned short) net_random() % range;
1524 return rand + xprt_min_resvport;
1525}
1526
Chuck Lever92200412006-01-03 09:55:51 +01001527/**
1528 * xs_set_port - reset the port number in the remote endpoint address
1529 * @xprt: generic transport
1530 * @port: new port number
1531 *
1532 */
1533static void xs_set_port(struct rpc_xprt *xprt, unsigned short port)
1534{
Chuck Lever46121cf2007-01-31 12:14:08 -05001535 dprintk("RPC: setting port for xprt %p to %u\n", xprt, port);
Chuck Leverc4efcb12006-08-22 20:06:19 -04001536
Chuck Lever9dc3b092009-08-09 15:09:46 -04001537 rpc_set_port(xs_addr(xprt), port);
1538 xs_update_peer_port(xprt);
Chuck Lever92200412006-01-03 09:55:51 +01001539}
1540
Trond Myklebust67a391d2007-11-05 17:40:58 -05001541static unsigned short xs_get_srcport(struct sock_xprt *transport, struct socket *sock)
1542{
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001543 unsigned short port = transport->srcport;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001544
1545 if (port == 0 && transport->xprt.resvport)
1546 port = xs_get_random_port();
1547 return port;
1548}
1549
1550static unsigned short xs_next_srcport(struct sock_xprt *transport, struct socket *sock, unsigned short port)
1551{
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001552 if (transport->srcport != 0)
1553 transport->srcport = 0;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001554 if (!transport->xprt.resvport)
1555 return 0;
1556 if (port <= xprt_min_resvport || port > xprt_max_resvport)
1557 return xprt_max_resvport;
1558 return --port;
1559}
1560
Chuck Lever7dc753f2007-08-06 11:57:28 -04001561static int xs_bind4(struct sock_xprt *transport, struct socket *sock)
Chuck Levera246b012005-08-11 16:25:23 -04001562{
1563 struct sockaddr_in myaddr = {
1564 .sin_family = AF_INET,
1565 };
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +02001566 struct sockaddr_in *sa;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001567 int err, nloop = 0;
1568 unsigned short port = xs_get_srcport(transport, sock);
1569 unsigned short last;
Chuck Levera246b012005-08-11 16:25:23 -04001570
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001571 sa = (struct sockaddr_in *)&transport->srcaddr;
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +02001572 myaddr.sin_addr = sa->sin_addr;
Chuck Levera246b012005-08-11 16:25:23 -04001573 do {
1574 myaddr.sin_port = htons(port);
Sridhar Samudralae6242e92006-08-07 20:58:01 -07001575 err = kernel_bind(sock, (struct sockaddr *) &myaddr,
Chuck Levera246b012005-08-11 16:25:23 -04001576 sizeof(myaddr));
Trond Myklebust67a391d2007-11-05 17:40:58 -05001577 if (port == 0)
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +02001578 break;
Chuck Levera246b012005-08-11 16:25:23 -04001579 if (err == 0) {
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001580 transport->srcport = port;
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +02001581 break;
Chuck Levera246b012005-08-11 16:25:23 -04001582 }
Trond Myklebust67a391d2007-11-05 17:40:58 -05001583 last = port;
1584 port = xs_next_srcport(transport, sock, port);
1585 if (port > last)
1586 nloop++;
1587 } while (err == -EADDRINUSE && nloop != 2);
Harvey Harrison21454aa2008-10-31 00:54:56 -07001588 dprintk("RPC: %s %pI4:%u: %s (%d)\n",
1589 __func__, &myaddr.sin_addr,
Chuck Lever7dc753f2007-08-06 11:57:28 -04001590 port, err ? "failed" : "ok", err);
Chuck Levera246b012005-08-11 16:25:23 -04001591 return err;
1592}
1593
Chuck Lever90058d32007-08-06 11:57:33 -04001594static int xs_bind6(struct sock_xprt *transport, struct socket *sock)
1595{
1596 struct sockaddr_in6 myaddr = {
1597 .sin6_family = AF_INET6,
1598 };
1599 struct sockaddr_in6 *sa;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001600 int err, nloop = 0;
1601 unsigned short port = xs_get_srcport(transport, sock);
1602 unsigned short last;
Chuck Lever90058d32007-08-06 11:57:33 -04001603
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001604 sa = (struct sockaddr_in6 *)&transport->srcaddr;
Chuck Lever90058d32007-08-06 11:57:33 -04001605 myaddr.sin6_addr = sa->sin6_addr;
1606 do {
1607 myaddr.sin6_port = htons(port);
1608 err = kernel_bind(sock, (struct sockaddr *) &myaddr,
1609 sizeof(myaddr));
Trond Myklebust67a391d2007-11-05 17:40:58 -05001610 if (port == 0)
Chuck Lever90058d32007-08-06 11:57:33 -04001611 break;
1612 if (err == 0) {
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001613 transport->srcport = port;
Chuck Lever90058d32007-08-06 11:57:33 -04001614 break;
1615 }
Trond Myklebust67a391d2007-11-05 17:40:58 -05001616 last = port;
1617 port = xs_next_srcport(transport, sock, port);
1618 if (port > last)
1619 nloop++;
1620 } while (err == -EADDRINUSE && nloop != 2);
Harvey Harrison5b095d9892008-10-29 12:52:50 -07001621 dprintk("RPC: xs_bind6 %pI6:%u: %s (%d)\n",
Harvey Harrisonfdb46ee2008-10-28 16:10:17 -07001622 &myaddr.sin6_addr, port, err ? "failed" : "ok", err);
Chuck Levera246b012005-08-11 16:25:23 -04001623 return err;
1624}
1625
Peter Zijlstraed075362006-12-06 20:35:24 -08001626#ifdef CONFIG_DEBUG_LOCK_ALLOC
1627static struct lock_class_key xs_key[2];
1628static struct lock_class_key xs_slock_key[2];
1629
Chuck Lever8945ee52007-08-06 11:58:04 -04001630static inline void xs_reclassify_socket4(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -08001631{
1632 struct sock *sk = sock->sk;
Chuck Lever8945ee52007-08-06 11:58:04 -04001633
John Heffner02b3d342007-09-12 10:42:12 +02001634 BUG_ON(sock_owned_by_user(sk));
Chuck Lever8945ee52007-08-06 11:58:04 -04001635 sock_lock_init_class_and_name(sk, "slock-AF_INET-RPC",
1636 &xs_slock_key[0], "sk_lock-AF_INET-RPC", &xs_key[0]);
1637}
Peter Zijlstraed075362006-12-06 20:35:24 -08001638
Chuck Lever8945ee52007-08-06 11:58:04 -04001639static inline void xs_reclassify_socket6(struct socket *sock)
1640{
1641 struct sock *sk = sock->sk;
Peter Zijlstraed075362006-12-06 20:35:24 -08001642
Linus Torvaldsf4921af2007-10-15 10:46:05 -07001643 BUG_ON(sock_owned_by_user(sk));
Chuck Lever8945ee52007-08-06 11:58:04 -04001644 sock_lock_init_class_and_name(sk, "slock-AF_INET6-RPC",
1645 &xs_slock_key[1], "sk_lock-AF_INET6-RPC", &xs_key[1]);
Peter Zijlstraed075362006-12-06 20:35:24 -08001646}
1647#else
Chuck Lever8945ee52007-08-06 11:58:04 -04001648static inline void xs_reclassify_socket4(struct socket *sock)
1649{
1650}
1651
1652static inline void xs_reclassify_socket6(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -08001653{
1654}
1655#endif
1656
Chuck Lever16be2d22007-08-06 11:57:38 -04001657static void xs_udp_finish_connecting(struct rpc_xprt *xprt, struct socket *sock)
Chuck Levera246b012005-08-11 16:25:23 -04001658{
Chuck Lever16be2d22007-08-06 11:57:38 -04001659 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Leveredb267a2006-08-22 20:06:18 -04001660
Chuck Leveree0ac0c2006-12-05 16:35:15 -05001661 if (!transport->inet) {
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001662 struct sock *sk = sock->sk;
1663
1664 write_lock_bh(&sk->sk_callback_lock);
1665
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04001666 xs_save_old_callbacks(transport, sk);
1667
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001668 sk->sk_user_data = xprt;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001669 sk->sk_data_ready = xs_udp_data_ready;
1670 sk->sk_write_space = xs_udp_write_space;
Trond Myklebust482f32e2009-03-11 14:38:00 -04001671 sk->sk_error_report = xs_error_report;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001672 sk->sk_no_check = UDP_CSUM_NORCV;
Trond Myklebustb079fa7b2005-12-13 16:13:52 -05001673 sk->sk_allocation = GFP_ATOMIC;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001674
1675 xprt_set_connected(xprt);
1676
1677 /* Reset to new socket */
Chuck Leveree0ac0c2006-12-05 16:35:15 -05001678 transport->sock = sock;
1679 transport->inet = sk;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001680
1681 write_unlock_bh(&sk->sk_callback_lock);
1682 }
Chuck Lever470056c2005-08-25 16:25:56 -07001683 xs_udp_do_set_buffer_size(xprt);
Chuck Lever16be2d22007-08-06 11:57:38 -04001684}
1685
Chuck Levera246b012005-08-11 16:25:23 -04001686/**
Chuck Lever9c3d72d2007-08-06 11:57:43 -04001687 * xs_udp_connect_worker4 - set up a UDP socket
Chuck Levera246b012005-08-11 16:25:23 -04001688 * @work: RPC transport to connect
1689 *
1690 * Invoked by a work queue tasklet.
1691 */
Chuck Lever9c3d72d2007-08-06 11:57:43 -04001692static void xs_udp_connect_worker4(struct work_struct *work)
Chuck Levera246b012005-08-11 16:25:23 -04001693{
1694 struct sock_xprt *transport =
1695 container_of(work, struct sock_xprt, connect_worker.work);
1696 struct rpc_xprt *xprt = &transport->xprt;
1697 struct socket *sock = transport->sock;
1698 int err, status = -EIO;
1699
Trond Myklebust01d37c42009-03-11 14:09:39 -04001700 if (xprt->shutdown)
Chuck Lever9903cd12005-08-11 16:25:26 -04001701 goto out;
1702
Chuck Levera246b012005-08-11 16:25:23 -04001703 /* Start by resetting any existing state */
Chuck Leverfe315e762009-03-11 14:10:21 -04001704 xs_reset_transport(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001705
Chuck Leverfe315e762009-03-11 14:10:21 -04001706 err = sock_create_kern(PF_INET, SOCK_DGRAM, IPPROTO_UDP, &sock);
1707 if (err < 0) {
Chuck Lever9903cd12005-08-11 16:25:26 -04001708 dprintk("RPC: can't create UDP transport socket (%d).\n", -err);
Chuck Levera246b012005-08-11 16:25:23 -04001709 goto out;
1710 }
Chuck Lever8945ee52007-08-06 11:58:04 -04001711 xs_reclassify_socket4(sock);
Chuck Levera246b012005-08-11 16:25:23 -04001712
Chuck Lever7dc753f2007-08-06 11:57:28 -04001713 if (xs_bind4(transport, sock)) {
Chuck Lever9903cd12005-08-11 16:25:26 -04001714 sock_release(sock);
1715 goto out;
Chuck Levera246b012005-08-11 16:25:23 -04001716 }
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001717
Chuck Leverc740eff2009-08-09 15:09:46 -04001718 dprintk("RPC: worker connecting xprt %p via %s to "
1719 "%s (port %s)\n", xprt,
1720 xprt->address_strings[RPC_DISPLAY_PROTO],
1721 xprt->address_strings[RPC_DISPLAY_ADDR],
1722 xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001723
Chuck Lever16be2d22007-08-06 11:57:38 -04001724 xs_udp_finish_connecting(xprt, sock);
Chuck Levera246b012005-08-11 16:25:23 -04001725 status = 0;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001726out:
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001727 xprt_clear_connecting(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001728 xprt_wake_pending_tasks(xprt, status);
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001729}
1730
Chuck Lever68e220b2007-08-06 11:57:48 -04001731/**
1732 * xs_udp_connect_worker6 - set up a UDP socket
1733 * @work: RPC transport to connect
1734 *
1735 * Invoked by a work queue tasklet.
1736 */
1737static void xs_udp_connect_worker6(struct work_struct *work)
1738{
1739 struct sock_xprt *transport =
1740 container_of(work, struct sock_xprt, connect_worker.work);
1741 struct rpc_xprt *xprt = &transport->xprt;
1742 struct socket *sock = transport->sock;
1743 int err, status = -EIO;
1744
Trond Myklebust01d37c42009-03-11 14:09:39 -04001745 if (xprt->shutdown)
Chuck Lever68e220b2007-08-06 11:57:48 -04001746 goto out;
1747
1748 /* Start by resetting any existing state */
Chuck Leverfe315e762009-03-11 14:10:21 -04001749 xs_reset_transport(transport);
Chuck Lever68e220b2007-08-06 11:57:48 -04001750
Chuck Leverfe315e762009-03-11 14:10:21 -04001751 err = sock_create_kern(PF_INET6, SOCK_DGRAM, IPPROTO_UDP, &sock);
1752 if (err < 0) {
Chuck Lever68e220b2007-08-06 11:57:48 -04001753 dprintk("RPC: can't create UDP transport socket (%d).\n", -err);
1754 goto out;
1755 }
Chuck Lever8945ee52007-08-06 11:58:04 -04001756 xs_reclassify_socket6(sock);
Chuck Lever68e220b2007-08-06 11:57:48 -04001757
1758 if (xs_bind6(transport, sock) < 0) {
1759 sock_release(sock);
1760 goto out;
1761 }
1762
Chuck Leverc740eff2009-08-09 15:09:46 -04001763 dprintk("RPC: worker connecting xprt %p via %s to "
1764 "%s (port %s)\n", xprt,
1765 xprt->address_strings[RPC_DISPLAY_PROTO],
1766 xprt->address_strings[RPC_DISPLAY_ADDR],
1767 xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever68e220b2007-08-06 11:57:48 -04001768
1769 xs_udp_finish_connecting(xprt, sock);
Chuck Levera246b012005-08-11 16:25:23 -04001770 status = 0;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001771out:
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001772 xprt_clear_connecting(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001773 xprt_wake_pending_tasks(xprt, status);
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001774}
1775
Chuck Lever3167e122005-08-25 16:25:55 -07001776/*
1777 * We need to preserve the port number so the reply cache on the server can
1778 * find our cached RPC replies when we get around to reconnecting.
1779 */
Trond Myklebust40d25492009-03-11 14:37:58 -04001780static void xs_abort_connection(struct rpc_xprt *xprt, struct sock_xprt *transport)
Chuck Lever3167e122005-08-25 16:25:55 -07001781{
1782 int result;
Chuck Lever3167e122005-08-25 16:25:55 -07001783 struct sockaddr any;
1784
Chuck Lever46121cf2007-01-31 12:14:08 -05001785 dprintk("RPC: disconnecting xprt %p to reuse port\n", xprt);
Chuck Lever3167e122005-08-25 16:25:55 -07001786
1787 /*
1788 * Disconnect the transport socket by doing a connect operation
1789 * with AF_UNSPEC. This should return immediately...
1790 */
1791 memset(&any, 0, sizeof(any));
1792 any.sa_family = AF_UNSPEC;
Chuck Leveree0ac0c2006-12-05 16:35:15 -05001793 result = kernel_connect(transport->sock, &any, sizeof(any), 0);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001794 if (!result)
1795 xs_sock_mark_closed(xprt);
1796 else
Chuck Lever46121cf2007-01-31 12:14:08 -05001797 dprintk("RPC: AF_UNSPEC connect return code %d\n",
Chuck Lever3167e122005-08-25 16:25:55 -07001798 result);
1799}
1800
Trond Myklebust40d25492009-03-11 14:37:58 -04001801static void xs_tcp_reuse_connection(struct rpc_xprt *xprt, struct sock_xprt *transport)
1802{
1803 unsigned int state = transport->inet->sk_state;
1804
1805 if (state == TCP_CLOSE && transport->sock->state == SS_UNCONNECTED)
1806 return;
1807 if ((1 << state) & (TCPF_ESTABLISHED|TCPF_SYN_SENT))
1808 return;
1809 xs_abort_connection(xprt, transport);
1810}
1811
Chuck Lever16be2d22007-08-06 11:57:38 -04001812static int xs_tcp_finish_connecting(struct rpc_xprt *xprt, struct socket *sock)
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001813{
Chuck Lever16be2d22007-08-06 11:57:38 -04001814 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Leveredb267a2006-08-22 20:06:18 -04001815
Chuck Leveree0ac0c2006-12-05 16:35:15 -05001816 if (!transport->inet) {
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001817 struct sock *sk = sock->sk;
1818
1819 write_lock_bh(&sk->sk_callback_lock);
1820
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04001821 xs_save_old_callbacks(transport, sk);
1822
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001823 sk->sk_user_data = xprt;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001824 sk->sk_data_ready = xs_tcp_data_ready;
1825 sk->sk_state_change = xs_tcp_state_change;
1826 sk->sk_write_space = xs_tcp_write_space;
Trond Myklebust482f32e2009-03-11 14:38:00 -04001827 sk->sk_error_report = xs_error_report;
Trond Myklebustb079fa7b2005-12-13 16:13:52 -05001828 sk->sk_allocation = GFP_ATOMIC;
Chuck Lever3167e122005-08-25 16:25:55 -07001829
1830 /* socket options */
1831 sk->sk_userlocks |= SOCK_BINDPORT_LOCK;
1832 sock_reset_flag(sk, SOCK_LINGER);
1833 tcp_sk(sk)->linger2 = 0;
1834 tcp_sk(sk)->nonagle |= TCP_NAGLE_OFF;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001835
1836 xprt_clear_connected(xprt);
1837
1838 /* Reset to new socket */
Chuck Leveree0ac0c2006-12-05 16:35:15 -05001839 transport->sock = sock;
1840 transport->inet = sk;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001841
1842 write_unlock_bh(&sk->sk_callback_lock);
1843 }
1844
Trond Myklebust01d37c42009-03-11 14:09:39 -04001845 if (!xprt_bound(xprt))
1846 return -ENOTCONN;
1847
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001848 /* Tell the socket layer to start connecting... */
Chuck Lever262ca072006-03-20 13:44:16 -05001849 xprt->stat.connect_count++;
1850 xprt->stat.connect_start = jiffies;
Chuck Lever95392c52007-08-06 11:57:58 -04001851 return kernel_connect(sock, xs_addr(xprt), xprt->addrlen, O_NONBLOCK);
Chuck Lever16be2d22007-08-06 11:57:38 -04001852}
1853
1854/**
Trond Myklebustb61d59f2009-03-11 14:38:04 -04001855 * xs_tcp_setup_socket - create a TCP socket and connect to a remote endpoint
1856 * @xprt: RPC transport to connect
1857 * @transport: socket transport to connect
1858 * @create_sock: function to create a socket of the correct type
Chuck Lever16be2d22007-08-06 11:57:38 -04001859 *
1860 * Invoked by a work queue tasklet.
1861 */
Trond Myklebustb61d59f2009-03-11 14:38:04 -04001862static void xs_tcp_setup_socket(struct rpc_xprt *xprt,
1863 struct sock_xprt *transport,
1864 struct socket *(*create_sock)(struct rpc_xprt *,
1865 struct sock_xprt *))
Chuck Lever16be2d22007-08-06 11:57:38 -04001866{
Chuck Lever16be2d22007-08-06 11:57:38 -04001867 struct socket *sock = transport->sock;
Trond Myklebustb61d59f2009-03-11 14:38:04 -04001868 int status = -EIO;
Chuck Lever16be2d22007-08-06 11:57:38 -04001869
Trond Myklebust01d37c42009-03-11 14:09:39 -04001870 if (xprt->shutdown)
Chuck Lever16be2d22007-08-06 11:57:38 -04001871 goto out;
1872
1873 if (!sock) {
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001874 clear_bit(XPRT_CONNECTION_ABORT, &xprt->state);
Trond Myklebustb61d59f2009-03-11 14:38:04 -04001875 sock = create_sock(xprt, transport);
1876 if (IS_ERR(sock)) {
1877 status = PTR_ERR(sock);
Chuck Lever16be2d22007-08-06 11:57:38 -04001878 goto out;
1879 }
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001880 } else {
1881 int abort_and_exit;
1882
1883 abort_and_exit = test_and_clear_bit(XPRT_CONNECTION_ABORT,
1884 &xprt->state);
Chuck Lever16be2d22007-08-06 11:57:38 -04001885 /* "close" the socket, preserving the local port */
Trond Myklebust40d25492009-03-11 14:37:58 -04001886 xs_tcp_reuse_connection(xprt, transport);
Chuck Lever16be2d22007-08-06 11:57:38 -04001887
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001888 if (abort_and_exit)
1889 goto out_eagain;
1890 }
1891
Chuck Leverc740eff2009-08-09 15:09:46 -04001892 dprintk("RPC: worker connecting xprt %p via %s to "
1893 "%s (port %s)\n", xprt,
1894 xprt->address_strings[RPC_DISPLAY_PROTO],
1895 xprt->address_strings[RPC_DISPLAY_ADDR],
1896 xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever16be2d22007-08-06 11:57:38 -04001897
1898 status = xs_tcp_finish_connecting(xprt, sock);
Chuck Lever46121cf2007-01-31 12:14:08 -05001899 dprintk("RPC: %p connect status %d connected %d sock state %d\n",
1900 xprt, -status, xprt_connected(xprt),
1901 sock->sk->sk_state);
Trond Myklebust2a491992009-03-11 14:38:00 -04001902 switch (status) {
Trond Myklebustf75e6742009-04-21 17:18:20 -04001903 default:
1904 printk("%s: connect returned unhandled error %d\n",
1905 __func__, status);
1906 case -EADDRNOTAVAIL:
1907 /* We're probably in TIME_WAIT. Get rid of existing socket,
1908 * and retry
1909 */
1910 set_bit(XPRT_CONNECTION_CLOSE, &xprt->state);
1911 xprt_force_disconnect(xprt);
Trond Myklebust88b5ed72009-06-17 13:22:57 -07001912 break;
Trond Myklebust8a2cec22009-03-11 14:38:01 -04001913 case -ECONNREFUSED:
1914 case -ECONNRESET:
1915 case -ENETUNREACH:
1916 /* retry with existing socket, after a delay */
Trond Myklebust2a491992009-03-11 14:38:00 -04001917 case 0:
1918 case -EINPROGRESS:
1919 case -EALREADY:
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001920 xprt_clear_connecting(xprt);
1921 return;
Chuck Levera246b012005-08-11 16:25:23 -04001922 }
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001923out_eagain:
Trond Myklebust2a491992009-03-11 14:38:00 -04001924 status = -EAGAIN;
Chuck Levera246b012005-08-11 16:25:23 -04001925out:
Chuck Lever2226feb2005-08-11 16:25:38 -04001926 xprt_clear_connecting(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001927 xprt_wake_pending_tasks(xprt, status);
Chuck Levera246b012005-08-11 16:25:23 -04001928}
1929
Trond Myklebustb61d59f2009-03-11 14:38:04 -04001930static struct socket *xs_create_tcp_sock4(struct rpc_xprt *xprt,
1931 struct sock_xprt *transport)
1932{
1933 struct socket *sock;
1934 int err;
1935
1936 /* start from scratch */
1937 err = sock_create_kern(PF_INET, SOCK_STREAM, IPPROTO_TCP, &sock);
1938 if (err < 0) {
1939 dprintk("RPC: can't create TCP transport socket (%d).\n",
1940 -err);
1941 goto out_err;
1942 }
1943 xs_reclassify_socket4(sock);
1944
1945 if (xs_bind4(transport, sock) < 0) {
1946 sock_release(sock);
1947 goto out_err;
1948 }
1949 return sock;
1950out_err:
1951 return ERR_PTR(-EIO);
1952}
1953
1954/**
Chuck Levera246b012005-08-11 16:25:23 -04001955 * xs_tcp_connect_worker4 - connect a TCP socket to a remote endpoint
1956 * @work: RPC transport to connect
1957 *
1958 * Invoked by a work queue tasklet.
1959 */
1960static void xs_tcp_connect_worker4(struct work_struct *work)
1961{
1962 struct sock_xprt *transport =
1963 container_of(work, struct sock_xprt, connect_worker.work);
1964 struct rpc_xprt *xprt = &transport->xprt;
Chuck Levera246b012005-08-11 16:25:23 -04001965
Trond Myklebustb61d59f2009-03-11 14:38:04 -04001966 xs_tcp_setup_socket(xprt, transport, xs_create_tcp_sock4);
1967}
Chuck Levera246b012005-08-11 16:25:23 -04001968
Trond Myklebustb61d59f2009-03-11 14:38:04 -04001969static struct socket *xs_create_tcp_sock6(struct rpc_xprt *xprt,
1970 struct sock_xprt *transport)
1971{
1972 struct socket *sock;
1973 int err;
Chuck Lever9903cd12005-08-11 16:25:26 -04001974
Trond Myklebustb61d59f2009-03-11 14:38:04 -04001975 /* start from scratch */
1976 err = sock_create_kern(PF_INET6, SOCK_STREAM, IPPROTO_TCP, &sock);
1977 if (err < 0) {
1978 dprintk("RPC: can't create TCP transport socket (%d).\n",
1979 -err);
1980 goto out_err;
Chuck Levera246b012005-08-11 16:25:23 -04001981 }
Trond Myklebustb61d59f2009-03-11 14:38:04 -04001982 xs_reclassify_socket6(sock);
1983
1984 if (xs_bind6(transport, sock) < 0) {
1985 sock_release(sock);
1986 goto out_err;
1987 }
1988 return sock;
1989out_err:
1990 return ERR_PTR(-EIO);
Chuck Levera246b012005-08-11 16:25:23 -04001991}
1992
Chuck Lever9903cd12005-08-11 16:25:26 -04001993/**
Chuck Lever68e220b2007-08-06 11:57:48 -04001994 * xs_tcp_connect_worker6 - connect a TCP socket to a remote endpoint
1995 * @work: RPC transport to connect
1996 *
1997 * Invoked by a work queue tasklet.
1998 */
1999static void xs_tcp_connect_worker6(struct work_struct *work)
2000{
2001 struct sock_xprt *transport =
2002 container_of(work, struct sock_xprt, connect_worker.work);
2003 struct rpc_xprt *xprt = &transport->xprt;
Chuck Lever68e220b2007-08-06 11:57:48 -04002004
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002005 xs_tcp_setup_socket(xprt, transport, xs_create_tcp_sock6);
Chuck Lever68e220b2007-08-06 11:57:48 -04002006}
2007
2008/**
Chuck Lever9903cd12005-08-11 16:25:26 -04002009 * xs_connect - connect a socket to a remote endpoint
2010 * @task: address of RPC task that manages state of connect request
2011 *
2012 * TCP: If the remote end dropped the connection, delay reconnecting.
Chuck Lever03bf4b72005-08-25 16:25:55 -07002013 *
2014 * UDP socket connects are synchronous, but we use a work queue anyway
2015 * to guarantee that even unprivileged user processes can set up a
2016 * socket on a privileged port.
2017 *
2018 * If a UDP socket connect fails, the delay behavior here prevents
2019 * retry floods (hard mounts).
Chuck Lever9903cd12005-08-11 16:25:26 -04002020 */
2021static void xs_connect(struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -04002022{
2023 struct rpc_xprt *xprt = task->tk_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002024 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002025
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002026 if (xprt_test_and_set_connecting(xprt))
2027 return;
2028
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002029 if (transport->sock != NULL) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002030 dprintk("RPC: xs_connect delayed xprt %p for %lu "
2031 "seconds\n",
Chuck Lever03bf4b72005-08-25 16:25:55 -07002032 xprt, xprt->reestablish_timeout / HZ);
Trond Myklebustc1384c92007-06-14 18:00:42 -04002033 queue_delayed_work(rpciod_workqueue,
2034 &transport->connect_worker,
2035 xprt->reestablish_timeout);
Chuck Lever03bf4b72005-08-25 16:25:55 -07002036 xprt->reestablish_timeout <<= 1;
2037 if (xprt->reestablish_timeout > XS_TCP_MAX_REEST_TO)
2038 xprt->reestablish_timeout = XS_TCP_MAX_REEST_TO;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002039 } else {
Chuck Lever46121cf2007-01-31 12:14:08 -05002040 dprintk("RPC: xs_connect scheduled xprt %p\n", xprt);
Trond Myklebustc1384c92007-06-14 18:00:42 -04002041 queue_delayed_work(rpciod_workqueue,
2042 &transport->connect_worker, 0);
Chuck Levera246b012005-08-11 16:25:23 -04002043 }
2044}
2045
Trond Myklebuste06799f2007-11-05 15:44:12 -05002046static void xs_tcp_connect(struct rpc_task *task)
2047{
2048 struct rpc_xprt *xprt = task->tk_xprt;
2049
Trond Myklebuste06799f2007-11-05 15:44:12 -05002050 /* Exit if we need to wait for socket shutdown to complete */
2051 if (test_bit(XPRT_CLOSING, &xprt->state))
2052 return;
2053 xs_connect(task);
2054}
2055
Chuck Lever262ca072006-03-20 13:44:16 -05002056/**
2057 * xs_udp_print_stats - display UDP socket-specifc stats
2058 * @xprt: rpc_xprt struct containing statistics
2059 * @seq: output file
2060 *
2061 */
2062static void xs_udp_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2063{
Chuck Leverc8475462006-12-05 16:35:26 -05002064 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
2065
Chuck Lever262ca072006-03-20 13:44:16 -05002066 seq_printf(seq, "\txprt:\tudp %u %lu %lu %lu %lu %Lu %Lu\n",
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002067 transport->srcport,
Chuck Lever262ca072006-03-20 13:44:16 -05002068 xprt->stat.bind_count,
2069 xprt->stat.sends,
2070 xprt->stat.recvs,
2071 xprt->stat.bad_xids,
2072 xprt->stat.req_u,
2073 xprt->stat.bklog_u);
2074}
2075
2076/**
2077 * xs_tcp_print_stats - display TCP socket-specifc stats
2078 * @xprt: rpc_xprt struct containing statistics
2079 * @seq: output file
2080 *
2081 */
2082static void xs_tcp_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2083{
Chuck Leverc8475462006-12-05 16:35:26 -05002084 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262ca072006-03-20 13:44:16 -05002085 long idle_time = 0;
2086
2087 if (xprt_connected(xprt))
2088 idle_time = (long)(jiffies - xprt->last_used) / HZ;
2089
2090 seq_printf(seq, "\txprt:\ttcp %u %lu %lu %lu %ld %lu %lu %lu %Lu %Lu\n",
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002091 transport->srcport,
Chuck Lever262ca072006-03-20 13:44:16 -05002092 xprt->stat.bind_count,
2093 xprt->stat.connect_count,
2094 xprt->stat.connect_time,
2095 idle_time,
2096 xprt->stat.sends,
2097 xprt->stat.recvs,
2098 xprt->stat.bad_xids,
2099 xprt->stat.req_u,
2100 xprt->stat.bklog_u);
2101}
2102
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002103/*
2104 * Allocate a bunch of pages for a scratch buffer for the rpc code. The reason
2105 * we allocate pages instead doing a kmalloc like rpc_malloc is because we want
2106 * to use the server side send routines.
2107 */
2108void *bc_malloc(struct rpc_task *task, size_t size)
2109{
2110 struct page *page;
2111 struct rpc_buffer *buf;
2112
2113 BUG_ON(size > PAGE_SIZE - sizeof(struct rpc_buffer));
2114 page = alloc_page(GFP_KERNEL);
2115
2116 if (!page)
2117 return NULL;
2118
2119 buf = page_address(page);
2120 buf->len = PAGE_SIZE;
2121
2122 return buf->data;
2123}
2124
2125/*
2126 * Free the space allocated in the bc_alloc routine
2127 */
2128void bc_free(void *buffer)
2129{
2130 struct rpc_buffer *buf;
2131
2132 if (!buffer)
2133 return;
2134
2135 buf = container_of(buffer, struct rpc_buffer, data);
2136 free_page((unsigned long)buf);
2137}
2138
2139/*
2140 * Use the svc_sock to send the callback. Must be called with svsk->sk_mutex
2141 * held. Borrows heavily from svc_tcp_sendto and xs_tcp_send_request.
2142 */
2143static int bc_sendto(struct rpc_rqst *req)
2144{
2145 int len;
2146 struct xdr_buf *xbufp = &req->rq_snd_buf;
2147 struct rpc_xprt *xprt = req->rq_xprt;
2148 struct sock_xprt *transport =
2149 container_of(xprt, struct sock_xprt, xprt);
2150 struct socket *sock = transport->sock;
2151 unsigned long headoff;
2152 unsigned long tailoff;
2153
2154 /*
2155 * Set up the rpc header and record marker stuff
2156 */
2157 xs_encode_tcp_record_marker(xbufp);
2158
2159 tailoff = (unsigned long)xbufp->tail[0].iov_base & ~PAGE_MASK;
2160 headoff = (unsigned long)xbufp->head[0].iov_base & ~PAGE_MASK;
2161 len = svc_send_common(sock, xbufp,
2162 virt_to_page(xbufp->head[0].iov_base), headoff,
2163 xbufp->tail[0].iov_base, tailoff);
2164
2165 if (len != xbufp->len) {
2166 printk(KERN_NOTICE "Error sending entire callback!\n");
2167 len = -EAGAIN;
2168 }
2169
2170 return len;
2171}
2172
2173/*
2174 * The send routine. Borrows from svc_send
2175 */
2176static int bc_send_request(struct rpc_task *task)
2177{
2178 struct rpc_rqst *req = task->tk_rqstp;
2179 struct svc_xprt *xprt;
2180 struct svc_sock *svsk;
2181 u32 len;
2182
2183 dprintk("sending request with xid: %08x\n", ntohl(req->rq_xid));
2184 /*
2185 * Get the server socket associated with this callback xprt
2186 */
2187 xprt = req->rq_xprt->bc_xprt;
2188 svsk = container_of(xprt, struct svc_sock, sk_xprt);
2189
2190 /*
2191 * Grab the mutex to serialize data as the connection is shared
2192 * with the fore channel
2193 */
2194 if (!mutex_trylock(&xprt->xpt_mutex)) {
2195 rpc_sleep_on(&xprt->xpt_bc_pending, task, NULL);
2196 if (!mutex_trylock(&xprt->xpt_mutex))
2197 return -EAGAIN;
2198 rpc_wake_up_queued_task(&xprt->xpt_bc_pending, task);
2199 }
2200 if (test_bit(XPT_DEAD, &xprt->xpt_flags))
2201 len = -ENOTCONN;
2202 else
2203 len = bc_sendto(req);
2204 mutex_unlock(&xprt->xpt_mutex);
2205
2206 if (len > 0)
2207 len = 0;
2208
2209 return len;
2210}
2211
2212/*
2213 * The close routine. Since this is client initiated, we do nothing
2214 */
2215
2216static void bc_close(struct rpc_xprt *xprt)
2217{
2218 return;
2219}
2220
2221/*
2222 * The xprt destroy routine. Again, because this connection is client
2223 * initiated, we do nothing
2224 */
2225
2226static void bc_destroy(struct rpc_xprt *xprt)
2227{
2228 return;
2229}
2230
Chuck Lever262965f2005-08-11 16:25:56 -04002231static struct rpc_xprt_ops xs_udp_ops = {
Chuck Lever43118c22005-08-25 16:25:49 -07002232 .set_buffer_size = xs_udp_set_buffer_size,
Chuck Lever12a80462005-08-25 16:25:51 -07002233 .reserve_xprt = xprt_reserve_xprt_cong,
Chuck Lever49e9a892005-08-25 16:25:51 -07002234 .release_xprt = xprt_release_xprt_cong,
Chuck Lever45160d62007-07-01 12:13:17 -04002235 .rpcbind = rpcb_getport_async,
Chuck Lever92200412006-01-03 09:55:51 +01002236 .set_port = xs_set_port,
Chuck Lever9903cd12005-08-11 16:25:26 -04002237 .connect = xs_connect,
Chuck Lever02107142006-01-03 09:55:49 +01002238 .buf_alloc = rpc_malloc,
2239 .buf_free = rpc_free,
Chuck Lever262965f2005-08-11 16:25:56 -04002240 .send_request = xs_udp_send_request,
Chuck Leverfe3aca22005-08-25 16:25:50 -07002241 .set_retrans_timeout = xprt_set_retrans_timeout_rtt,
Chuck Lever46c0ee82005-08-25 16:25:52 -07002242 .timer = xs_udp_timer,
Chuck Levera58dd392005-08-25 16:25:53 -07002243 .release_request = xprt_release_rqst_cong,
Chuck Lever262965f2005-08-11 16:25:56 -04002244 .close = xs_close,
2245 .destroy = xs_destroy,
Chuck Lever262ca072006-03-20 13:44:16 -05002246 .print_stats = xs_udp_print_stats,
Chuck Lever262965f2005-08-11 16:25:56 -04002247};
2248
2249static struct rpc_xprt_ops xs_tcp_ops = {
Chuck Lever12a80462005-08-25 16:25:51 -07002250 .reserve_xprt = xprt_reserve_xprt,
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04002251 .release_xprt = xs_tcp_release_xprt,
Chuck Lever45160d62007-07-01 12:13:17 -04002252 .rpcbind = rpcb_getport_async,
Chuck Lever92200412006-01-03 09:55:51 +01002253 .set_port = xs_set_port,
Trond Myklebuste06799f2007-11-05 15:44:12 -05002254 .connect = xs_tcp_connect,
Chuck Lever02107142006-01-03 09:55:49 +01002255 .buf_alloc = rpc_malloc,
2256 .buf_free = rpc_free,
Chuck Lever262965f2005-08-11 16:25:56 -04002257 .send_request = xs_tcp_send_request,
Chuck Leverfe3aca22005-08-25 16:25:50 -07002258 .set_retrans_timeout = xprt_set_retrans_timeout_def,
Ricardo Labiaga0d90ba12009-04-01 09:23:04 -04002259#if defined(CONFIG_NFS_V4_1)
2260 .release_request = bc_release_request,
2261#endif /* CONFIG_NFS_V4_1 */
Trond Myklebustf75e6742009-04-21 17:18:20 -04002262 .close = xs_tcp_close,
Chuck Lever9903cd12005-08-11 16:25:26 -04002263 .destroy = xs_destroy,
Chuck Lever262ca072006-03-20 13:44:16 -05002264 .print_stats = xs_tcp_print_stats,
Chuck Levera246b012005-08-11 16:25:23 -04002265};
2266
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002267/*
2268 * The rpc_xprt_ops for the server backchannel
2269 */
2270
2271static struct rpc_xprt_ops bc_tcp_ops = {
2272 .reserve_xprt = xprt_reserve_xprt,
2273 .release_xprt = xprt_release_xprt,
2274 .buf_alloc = bc_malloc,
2275 .buf_free = bc_free,
2276 .send_request = bc_send_request,
2277 .set_retrans_timeout = xprt_set_retrans_timeout_def,
2278 .close = bc_close,
2279 .destroy = bc_destroy,
2280 .print_stats = xs_tcp_print_stats,
2281};
2282
\"Talpey, Thomas\3c341b0b2007-09-10 13:47:07 -04002283static struct rpc_xprt *xs_setup_xprt(struct xprt_create *args,
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002284 unsigned int slot_table_size)
Chuck Leverc8541ec2006-10-17 14:44:27 -04002285{
2286 struct rpc_xprt *xprt;
Chuck Leverffc2e512006-12-05 16:35:11 -05002287 struct sock_xprt *new;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002288
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002289 if (args->addrlen > sizeof(xprt->addr)) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002290 dprintk("RPC: xs_setup_xprt: address too large\n");
Chuck Leverc8541ec2006-10-17 14:44:27 -04002291 return ERR_PTR(-EBADF);
2292 }
2293
Chuck Leverffc2e512006-12-05 16:35:11 -05002294 new = kzalloc(sizeof(*new), GFP_KERNEL);
2295 if (new == NULL) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002296 dprintk("RPC: xs_setup_xprt: couldn't allocate "
2297 "rpc_xprt\n");
Chuck Leverc8541ec2006-10-17 14:44:27 -04002298 return ERR_PTR(-ENOMEM);
2299 }
Chuck Leverffc2e512006-12-05 16:35:11 -05002300 xprt = &new->xprt;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002301
2302 xprt->max_reqs = slot_table_size;
2303 xprt->slot = kcalloc(xprt->max_reqs, sizeof(struct rpc_rqst), GFP_KERNEL);
2304 if (xprt->slot == NULL) {
2305 kfree(xprt);
Chuck Lever46121cf2007-01-31 12:14:08 -05002306 dprintk("RPC: xs_setup_xprt: couldn't allocate slot "
2307 "table\n");
Chuck Leverc8541ec2006-10-17 14:44:27 -04002308 return ERR_PTR(-ENOMEM);
2309 }
2310
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002311 memcpy(&xprt->addr, args->dstaddr, args->addrlen);
2312 xprt->addrlen = args->addrlen;
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +02002313 if (args->srcaddr)
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002314 memcpy(&new->srcaddr, args->srcaddr, args->addrlen);
Chuck Leverc8541ec2006-10-17 14:44:27 -04002315
2316 return xprt;
2317}
2318
Trond Myklebust2881ae72007-12-20 16:03:54 -05002319static const struct rpc_timeout xs_udp_default_timeout = {
2320 .to_initval = 5 * HZ,
2321 .to_maxval = 30 * HZ,
2322 .to_increment = 5 * HZ,
2323 .to_retries = 5,
2324};
2325
Chuck Lever9903cd12005-08-11 16:25:26 -04002326/**
2327 * xs_setup_udp - Set up transport to use a UDP socket
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002328 * @args: rpc transport creation arguments
Chuck Lever9903cd12005-08-11 16:25:26 -04002329 *
2330 */
Adrian Bunk483066d2007-10-24 18:24:02 +02002331static struct rpc_xprt *xs_setup_udp(struct xprt_create *args)
Chuck Levera246b012005-08-11 16:25:23 -04002332{
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002333 struct sockaddr *addr = args->dstaddr;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002334 struct rpc_xprt *xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002335 struct sock_xprt *transport;
Chuck Levera246b012005-08-11 16:25:23 -04002336
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002337 xprt = xs_setup_xprt(args, xprt_udp_slot_table_entries);
Chuck Leverc8541ec2006-10-17 14:44:27 -04002338 if (IS_ERR(xprt))
2339 return xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002340 transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002341
Chuck Leverec739ef2006-08-22 20:06:15 -04002342 xprt->prot = IPPROTO_UDP;
Chuck Lever808012f2005-08-25 16:25:49 -07002343 xprt->tsh_size = 0;
Chuck Levera246b012005-08-11 16:25:23 -04002344 /* XXX: header size can vary due to auth type, IPv6, etc. */
2345 xprt->max_payload = (1U << 16) - (MAX_HEADER << 3);
2346
Chuck Lever03bf4b72005-08-25 16:25:55 -07002347 xprt->bind_timeout = XS_BIND_TO;
2348 xprt->connect_timeout = XS_UDP_CONN_TO;
2349 xprt->reestablish_timeout = XS_UDP_REEST_TO;
2350 xprt->idle_timeout = XS_IDLE_DISC_TO;
Chuck Levera246b012005-08-11 16:25:23 -04002351
Chuck Lever262965f2005-08-11 16:25:56 -04002352 xprt->ops = &xs_udp_ops;
Chuck Levera246b012005-08-11 16:25:23 -04002353
Trond Myklebustba7392b2007-12-20 16:03:55 -05002354 xprt->timeout = &xs_udp_default_timeout;
Chuck Levera246b012005-08-11 16:25:23 -04002355
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002356 switch (addr->sa_family) {
2357 case AF_INET:
2358 if (((struct sockaddr_in *)addr)->sin_port != htons(0))
2359 xprt_set_bound(xprt);
2360
2361 INIT_DELAYED_WORK(&transport->connect_worker,
2362 xs_udp_connect_worker4);
Chuck Lever9dc3b092009-08-09 15:09:46 -04002363 xs_format_peer_addresses(xprt, "udp", RPCBIND_NETID_UDP);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002364 break;
2365 case AF_INET6:
2366 if (((struct sockaddr_in6 *)addr)->sin6_port != htons(0))
2367 xprt_set_bound(xprt);
2368
2369 INIT_DELAYED_WORK(&transport->connect_worker,
2370 xs_udp_connect_worker6);
Chuck Lever9dc3b092009-08-09 15:09:46 -04002371 xs_format_peer_addresses(xprt, "udp", RPCBIND_NETID_UDP6);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002372 break;
2373 default:
2374 kfree(xprt);
2375 return ERR_PTR(-EAFNOSUPPORT);
2376 }
2377
Chuck Leverc740eff2009-08-09 15:09:46 -04002378 if (xprt_bound(xprt))
2379 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
2380 xprt->address_strings[RPC_DISPLAY_ADDR],
2381 xprt->address_strings[RPC_DISPLAY_PORT],
2382 xprt->address_strings[RPC_DISPLAY_PROTO]);
2383 else
2384 dprintk("RPC: set up xprt to %s (autobind) via %s\n",
2385 xprt->address_strings[RPC_DISPLAY_ADDR],
2386 xprt->address_strings[RPC_DISPLAY_PROTO]);
Chuck Leveredb267a2006-08-22 20:06:18 -04002387
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002388 if (try_module_get(THIS_MODULE))
2389 return xprt;
2390
2391 kfree(xprt->slot);
2392 kfree(xprt);
2393 return ERR_PTR(-EINVAL);
Chuck Levera246b012005-08-11 16:25:23 -04002394}
2395
Trond Myklebust2881ae72007-12-20 16:03:54 -05002396static const struct rpc_timeout xs_tcp_default_timeout = {
2397 .to_initval = 60 * HZ,
2398 .to_maxval = 60 * HZ,
2399 .to_retries = 2,
2400};
2401
Chuck Lever9903cd12005-08-11 16:25:26 -04002402/**
2403 * xs_setup_tcp - Set up transport to use a TCP socket
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002404 * @args: rpc transport creation arguments
Chuck Lever9903cd12005-08-11 16:25:26 -04002405 *
2406 */
Adrian Bunk483066d2007-10-24 18:24:02 +02002407static struct rpc_xprt *xs_setup_tcp(struct xprt_create *args)
Chuck Levera246b012005-08-11 16:25:23 -04002408{
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002409 struct sockaddr *addr = args->dstaddr;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002410 struct rpc_xprt *xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002411 struct sock_xprt *transport;
Chuck Levera246b012005-08-11 16:25:23 -04002412
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002413 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries);
Chuck Leverc8541ec2006-10-17 14:44:27 -04002414 if (IS_ERR(xprt))
2415 return xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002416 transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002417
Chuck Leverec739ef2006-08-22 20:06:15 -04002418 xprt->prot = IPPROTO_TCP;
Chuck Lever808012f2005-08-25 16:25:49 -07002419 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
Chuck Lever808012f2005-08-25 16:25:49 -07002420 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
Chuck Levera246b012005-08-11 16:25:23 -04002421
Chuck Lever03bf4b72005-08-25 16:25:55 -07002422 xprt->bind_timeout = XS_BIND_TO;
2423 xprt->connect_timeout = XS_TCP_CONN_TO;
2424 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
2425 xprt->idle_timeout = XS_IDLE_DISC_TO;
Chuck Levera246b012005-08-11 16:25:23 -04002426
Chuck Lever262965f2005-08-11 16:25:56 -04002427 xprt->ops = &xs_tcp_ops;
Trond Myklebustba7392b2007-12-20 16:03:55 -05002428 xprt->timeout = &xs_tcp_default_timeout;
Chuck Levera246b012005-08-11 16:25:23 -04002429
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002430 switch (addr->sa_family) {
2431 case AF_INET:
2432 if (((struct sockaddr_in *)addr)->sin_port != htons(0))
2433 xprt_set_bound(xprt);
2434
Chuck Lever9dc3b092009-08-09 15:09:46 -04002435 INIT_DELAYED_WORK(&transport->connect_worker,
2436 xs_tcp_connect_worker4);
2437 xs_format_peer_addresses(xprt, "tcp", RPCBIND_NETID_TCP);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002438 break;
2439 case AF_INET6:
2440 if (((struct sockaddr_in6 *)addr)->sin6_port != htons(0))
2441 xprt_set_bound(xprt);
2442
Chuck Lever9dc3b092009-08-09 15:09:46 -04002443 INIT_DELAYED_WORK(&transport->connect_worker,
2444 xs_tcp_connect_worker6);
2445 xs_format_peer_addresses(xprt, "tcp", RPCBIND_NETID_TCP6);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002446 break;
2447 default:
2448 kfree(xprt);
2449 return ERR_PTR(-EAFNOSUPPORT);
2450 }
2451
Chuck Leverc740eff2009-08-09 15:09:46 -04002452 if (xprt_bound(xprt))
2453 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
2454 xprt->address_strings[RPC_DISPLAY_ADDR],
2455 xprt->address_strings[RPC_DISPLAY_PORT],
2456 xprt->address_strings[RPC_DISPLAY_PROTO]);
2457 else
2458 dprintk("RPC: set up xprt to %s (autobind) via %s\n",
2459 xprt->address_strings[RPC_DISPLAY_ADDR],
2460 xprt->address_strings[RPC_DISPLAY_PROTO]);
2461
Chuck Leveredb267a2006-08-22 20:06:18 -04002462
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002463 if (try_module_get(THIS_MODULE))
2464 return xprt;
2465
2466 kfree(xprt->slot);
2467 kfree(xprt);
2468 return ERR_PTR(-EINVAL);
Chuck Levera246b012005-08-11 16:25:23 -04002469}
Chuck Lever282b32e2006-12-05 16:35:51 -05002470
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002471/**
2472 * xs_setup_bc_tcp - Set up transport to use a TCP backchannel socket
2473 * @args: rpc transport creation arguments
2474 *
2475 */
2476static struct rpc_xprt *xs_setup_bc_tcp(struct xprt_create *args)
2477{
2478 struct sockaddr *addr = args->dstaddr;
2479 struct rpc_xprt *xprt;
2480 struct sock_xprt *transport;
2481 struct svc_sock *bc_sock;
2482
2483 if (!args->bc_xprt)
2484 ERR_PTR(-EINVAL);
2485
2486 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries);
2487 if (IS_ERR(xprt))
2488 return xprt;
2489 transport = container_of(xprt, struct sock_xprt, xprt);
2490
2491 xprt->prot = IPPROTO_TCP;
2492 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
2493 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
2494 xprt->timeout = &xs_tcp_default_timeout;
2495
2496 /* backchannel */
2497 xprt_set_bound(xprt);
2498 xprt->bind_timeout = 0;
2499 xprt->connect_timeout = 0;
2500 xprt->reestablish_timeout = 0;
2501 xprt->idle_timeout = 0;
2502
2503 /*
2504 * The backchannel uses the same socket connection as the
2505 * forechannel
2506 */
2507 xprt->bc_xprt = args->bc_xprt;
2508 bc_sock = container_of(args->bc_xprt, struct svc_sock, sk_xprt);
2509 bc_sock->sk_bc_xprt = xprt;
2510 transport->sock = bc_sock->sk_sock;
2511 transport->inet = bc_sock->sk_sk;
2512
2513 xprt->ops = &bc_tcp_ops;
2514
2515 switch (addr->sa_family) {
2516 case AF_INET:
2517 xs_format_peer_addresses(xprt, "tcp",
2518 RPCBIND_NETID_TCP);
2519 break;
2520 case AF_INET6:
2521 xs_format_peer_addresses(xprt, "tcp",
2522 RPCBIND_NETID_TCP6);
2523 break;
2524 default:
2525 kfree(xprt);
2526 return ERR_PTR(-EAFNOSUPPORT);
2527 }
2528
2529 if (xprt_bound(xprt))
2530 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
2531 xprt->address_strings[RPC_DISPLAY_ADDR],
2532 xprt->address_strings[RPC_DISPLAY_PORT],
2533 xprt->address_strings[RPC_DISPLAY_PROTO]);
2534 else
2535 dprintk("RPC: set up xprt to %s (autobind) via %s\n",
2536 xprt->address_strings[RPC_DISPLAY_ADDR],
2537 xprt->address_strings[RPC_DISPLAY_PROTO]);
2538
2539 /*
2540 * Since we don't want connections for the backchannel, we set
2541 * the xprt status to connected
2542 */
2543 xprt_set_connected(xprt);
2544
2545
2546 if (try_module_get(THIS_MODULE))
2547 return xprt;
2548 kfree(xprt->slot);
2549 kfree(xprt);
2550 return ERR_PTR(-EINVAL);
2551}
2552
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002553static struct xprt_class xs_udp_transport = {
2554 .list = LIST_HEAD_INIT(xs_udp_transport.list),
2555 .name = "udp",
2556 .owner = THIS_MODULE,
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002557 .ident = XPRT_TRANSPORT_UDP,
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002558 .setup = xs_setup_udp,
2559};
2560
2561static struct xprt_class xs_tcp_transport = {
2562 .list = LIST_HEAD_INIT(xs_tcp_transport.list),
2563 .name = "tcp",
2564 .owner = THIS_MODULE,
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002565 .ident = XPRT_TRANSPORT_TCP,
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002566 .setup = xs_setup_tcp,
2567};
2568
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002569static struct xprt_class xs_bc_tcp_transport = {
2570 .list = LIST_HEAD_INIT(xs_bc_tcp_transport.list),
2571 .name = "tcp NFSv4.1 backchannel",
2572 .owner = THIS_MODULE,
2573 .ident = XPRT_TRANSPORT_BC_TCP,
2574 .setup = xs_setup_bc_tcp,
2575};
2576
Chuck Lever282b32e2006-12-05 16:35:51 -05002577/**
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002578 * init_socket_xprt - set up xprtsock's sysctls, register with RPC client
Chuck Lever282b32e2006-12-05 16:35:51 -05002579 *
2580 */
2581int init_socket_xprt(void)
2582{
Chuck Leverfbf76682006-12-05 16:35:54 -05002583#ifdef RPC_DEBUG
Eric W. Biederman2b1bec52007-02-14 00:33:24 -08002584 if (!sunrpc_table_header)
Eric W. Biederman0b4d4142007-02-14 00:34:09 -08002585 sunrpc_table_header = register_sysctl_table(sunrpc_table);
Chuck Leverfbf76682006-12-05 16:35:54 -05002586#endif
2587
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002588 xprt_register_transport(&xs_udp_transport);
2589 xprt_register_transport(&xs_tcp_transport);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002590 xprt_register_transport(&xs_bc_tcp_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002591
Chuck Lever282b32e2006-12-05 16:35:51 -05002592 return 0;
2593}
2594
2595/**
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002596 * cleanup_socket_xprt - remove xprtsock's sysctls, unregister
Chuck Lever282b32e2006-12-05 16:35:51 -05002597 *
2598 */
2599void cleanup_socket_xprt(void)
2600{
Chuck Leverfbf76682006-12-05 16:35:54 -05002601#ifdef RPC_DEBUG
2602 if (sunrpc_table_header) {
2603 unregister_sysctl_table(sunrpc_table_header);
2604 sunrpc_table_header = NULL;
2605 }
2606#endif
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002607
2608 xprt_unregister_transport(&xs_udp_transport);
2609 xprt_unregister_transport(&xs_tcp_transport);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002610 xprt_unregister_transport(&xs_bc_tcp_transport);
Chuck Lever282b32e2006-12-05 16:35:51 -05002611}
Trond Myklebustcbf11072009-08-09 15:06:19 -04002612
2613static int param_set_uint_minmax(const char *val, struct kernel_param *kp,
2614 unsigned int min, unsigned int max)
2615{
2616 unsigned long num;
2617 int ret;
2618
2619 if (!val)
2620 return -EINVAL;
2621 ret = strict_strtoul(val, 0, &num);
2622 if (ret == -EINVAL || num < min || num > max)
2623 return -EINVAL;
2624 *((unsigned int *)kp->arg) = num;
2625 return 0;
2626}
2627
2628static int param_set_portnr(const char *val, struct kernel_param *kp)
2629{
2630 return param_set_uint_minmax(val, kp,
2631 RPC_MIN_RESVPORT,
2632 RPC_MAX_RESVPORT);
2633}
2634
2635static int param_get_portnr(char *buffer, struct kernel_param *kp)
2636{
2637 return param_get_uint(buffer, kp);
2638}
2639#define param_check_portnr(name, p) \
2640 __param_check(name, p, unsigned int);
2641
2642module_param_named(min_resvport, xprt_min_resvport, portnr, 0644);
2643module_param_named(max_resvport, xprt_max_resvport, portnr, 0644);
2644
2645static int param_set_slot_table_size(const char *val, struct kernel_param *kp)
2646{
2647 return param_set_uint_minmax(val, kp,
2648 RPC_MIN_SLOT_TABLE,
2649 RPC_MAX_SLOT_TABLE);
2650}
2651
2652static int param_get_slot_table_size(char *buffer, struct kernel_param *kp)
2653{
2654 return param_get_uint(buffer, kp);
2655}
2656#define param_check_slot_table_size(name, p) \
2657 __param_check(name, p, unsigned int);
2658
2659module_param_named(tcp_slot_table_entries, xprt_tcp_slot_table_entries,
2660 slot_table_size, 0644);
2661module_param_named(udp_slot_table_entries, xprt_udp_slot_table_entries,
2662 slot_table_size, 0644);
2663