blob: 6630f2922f40b642ed00d87c34a6e7ed3109abb9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/net/sunrpc/svcsock.c
3 *
4 * These are the RPC server socket internals.
5 *
6 * The server scheduling algorithm does not always distribute the load
7 * evenly when servicing a single client. May need to modify the
Tom Tuckerf6150c32007-12-30 21:07:57 -06008 * svc_xprt_enqueue procedure...
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * TCP support is largely untested and may be a little slow. The problem
11 * is that we currently do two separate recvfrom's, one for the 4-byte
12 * record length, and the second for the actual record. This could possibly
13 * be improved by always reading a minimum size of around 100 bytes and
14 * tucking any superfluous bytes away in a temporary store. Still, that
15 * leaves write requests out in the rain. An alternative may be to peek at
16 * the first skb in the queue, and if it matches the next TCP sequence
17 * number, to extract the record marker. Yuck.
18 *
19 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
20 */
21
Ilpo Järvinen172589c2007-08-28 15:50:33 -070022#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/sched.h>
24#include <linux/errno.h>
25#include <linux/fcntl.h>
26#include <linux/net.h>
27#include <linux/in.h>
28#include <linux/inet.h>
29#include <linux/udp.h>
Andrew Morton91483c42005-08-09 20:20:07 -070030#include <linux/tcp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/unistd.h>
32#include <linux/slab.h>
33#include <linux/netdevice.h>
34#include <linux/skbuff.h>
NeilBrownb41b66d2006-10-02 02:17:48 -070035#include <linux/file.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080036#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <net/sock.h>
38#include <net/checksum.h>
39#include <net/ip.h>
Chuck Leverb92503b2007-02-12 00:53:36 -080040#include <net/ipv6.h>
Chuck Leverb7872fe2008-04-14 12:27:01 -040041#include <net/tcp.h>
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070042#include <net/tcp_states.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/uaccess.h>
44#include <asm/ioctls.h>
45
46#include <linux/sunrpc/types.h>
Chuck Leverad06e4b2007-02-12 00:53:32 -080047#include <linux/sunrpc/clnt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/sunrpc/xdr.h>
Chuck Leverc0401ea2008-04-14 12:27:30 -040049#include <linux/sunrpc/msg_prot.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/sunrpc/svcsock.h>
51#include <linux/sunrpc/stats.h>
Rahul Iyer4cfc7e62009-09-10 17:32:28 +030052#include <linux/sunrpc/xprt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Tom Tucker360d87382007-12-30 21:07:17 -060054#define RPCDBG_FACILITY RPCDBG_SVCXPRT
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56
57static struct svc_sock *svc_setup_socket(struct svc_serv *, struct socket *,
Chuck Lever6b174332007-02-12 00:53:28 -080058 int *errp, int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059static void svc_udp_data_ready(struct sock *, int);
60static int svc_udp_recvfrom(struct svc_rqst *);
61static int svc_udp_sendto(struct svc_rqst *);
Tom Tucker755ccea2007-12-30 21:07:27 -060062static void svc_sock_detach(struct svc_xprt *);
Trond Myklebust69b6ba32008-12-23 16:30:11 -050063static void svc_tcp_sock_detach(struct svc_xprt *);
Tom Tucker755ccea2007-12-30 21:07:27 -060064static void svc_sock_free(struct svc_xprt *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Tom Tuckerb700cbb2007-12-30 21:07:42 -060066static struct svc_xprt *svc_create_socket(struct svc_serv *, int,
Pavel Emelyanov62832c02010-09-29 16:04:18 +040067 struct net *, struct sockaddr *,
68 int, int);
Andy Adamson1f11a032011-01-06 02:04:26 +000069#if defined(CONFIG_NFS_V4_1)
70static struct svc_xprt *svc_bc_create_socket(struct svc_serv *, int,
71 struct net *, struct sockaddr *,
72 int, int);
73static void svc_bc_sock_free(struct svc_xprt *xprt);
74#endif /* CONFIG_NFS_V4_1 */
75
Peter Zijlstraed075362006-12-06 20:35:24 -080076#ifdef CONFIG_DEBUG_LOCK_ALLOC
77static struct lock_class_key svc_key[2];
78static struct lock_class_key svc_slock_key[2];
79
Tom Tucker0f0257e2007-12-30 21:08:27 -060080static void svc_reclassify_socket(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -080081{
82 struct sock *sk = sock->sk;
John Heffner02b3d342007-09-12 10:42:12 +020083 BUG_ON(sock_owned_by_user(sk));
Peter Zijlstraed075362006-12-06 20:35:24 -080084 switch (sk->sk_family) {
85 case AF_INET:
86 sock_lock_init_class_and_name(sk, "slock-AF_INET-NFSD",
Tom Tuckerdef13d72007-12-30 21:08:08 -060087 &svc_slock_key[0],
88 "sk_xprt.xpt_lock-AF_INET-NFSD",
89 &svc_key[0]);
Peter Zijlstraed075362006-12-06 20:35:24 -080090 break;
91
92 case AF_INET6:
93 sock_lock_init_class_and_name(sk, "slock-AF_INET6-NFSD",
Tom Tuckerdef13d72007-12-30 21:08:08 -060094 &svc_slock_key[1],
95 "sk_xprt.xpt_lock-AF_INET6-NFSD",
96 &svc_key[1]);
Peter Zijlstraed075362006-12-06 20:35:24 -080097 break;
98
99 default:
100 BUG();
101 }
102}
103#else
Tom Tucker0f0257e2007-12-30 21:08:27 -0600104static void svc_reclassify_socket(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -0800105{
106}
107#endif
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109/*
110 * Release an skbuff after use
111 */
Tom Tucker5148bf42007-12-30 21:07:25 -0600112static void svc_release_skb(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Tom Tucker5148bf42007-12-30 21:07:25 -0600114 struct sk_buff *skb = rqstp->rq_xprt_ctxt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116 if (skb) {
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600117 struct svc_sock *svsk =
118 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Tom Tucker5148bf42007-12-30 21:07:25 -0600119 rqstp->rq_xprt_ctxt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121 dprintk("svc: service %p, releasing skb %p\n", rqstp, skb);
Eric Dumazet9d410c72009-10-30 05:03:53 +0000122 skb_free_datagram_locked(svsk->sk_sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
125
Chuck Leverb92503b2007-02-12 00:53:36 -0800126union svc_pktinfo_u {
127 struct in_pktinfo pkti;
Chuck Leverb92503b2007-02-12 00:53:36 -0800128 struct in6_pktinfo pkti6;
Chuck Leverb92503b2007-02-12 00:53:36 -0800129};
David S. Millerbc375ea2007-04-12 13:35:59 -0700130#define SVC_PKTINFO_SPACE \
131 CMSG_SPACE(sizeof(union svc_pktinfo_u))
Chuck Leverb92503b2007-02-12 00:53:36 -0800132
133static void svc_set_cmsg_data(struct svc_rqst *rqstp, struct cmsghdr *cmh)
134{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600135 struct svc_sock *svsk =
136 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
137 switch (svsk->sk_sk->sk_family) {
Chuck Leverb92503b2007-02-12 00:53:36 -0800138 case AF_INET: {
139 struct in_pktinfo *pki = CMSG_DATA(cmh);
140
141 cmh->cmsg_level = SOL_IP;
142 cmh->cmsg_type = IP_PKTINFO;
143 pki->ipi_ifindex = 0;
144 pki->ipi_spec_dst.s_addr = rqstp->rq_daddr.addr.s_addr;
145 cmh->cmsg_len = CMSG_LEN(sizeof(*pki));
146 }
147 break;
NeilBrown5a05ed72007-03-06 01:42:22 -0800148
Chuck Leverb92503b2007-02-12 00:53:36 -0800149 case AF_INET6: {
150 struct in6_pktinfo *pki = CMSG_DATA(cmh);
151
152 cmh->cmsg_level = SOL_IPV6;
153 cmh->cmsg_type = IPV6_PKTINFO;
154 pki->ipi6_ifindex = 0;
155 ipv6_addr_copy(&pki->ipi6_addr,
156 &rqstp->rq_daddr.addr6);
157 cmh->cmsg_len = CMSG_LEN(sizeof(*pki));
158 }
159 break;
Chuck Leverb92503b2007-02-12 00:53:36 -0800160 }
Chuck Leverb92503b2007-02-12 00:53:36 -0800161}
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163/*
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300164 * send routine intended to be shared by the fore- and back-channel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 */
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300166int svc_send_common(struct socket *sock, struct xdr_buf *xdr,
167 struct page *headpage, unsigned long headoffset,
168 struct page *tailpage, unsigned long tailoffset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 int result;
171 int size;
172 struct page **ppage = xdr->pages;
173 size_t base = xdr->page_base;
174 unsigned int pglen = xdr->page_len;
175 unsigned int flags = MSG_MORE;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300176 int slen;
177 int len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 slen = xdr->len;
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 /* send head */
182 if (slen == xdr->head[0].iov_len)
183 flags = 0;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300184 len = kernel_sendpage(sock, headpage, headoffset,
NeilBrown44524352006-10-04 02:15:46 -0700185 xdr->head[0].iov_len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 if (len != xdr->head[0].iov_len)
187 goto out;
188 slen -= xdr->head[0].iov_len;
189 if (slen == 0)
190 goto out;
191
192 /* send page data */
193 size = PAGE_SIZE - base < pglen ? PAGE_SIZE - base : pglen;
194 while (pglen > 0) {
195 if (slen == size)
196 flags = 0;
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700197 result = kernel_sendpage(sock, *ppage, base, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 if (result > 0)
199 len += result;
200 if (result != size)
201 goto out;
202 slen -= size;
203 pglen -= size;
204 size = PAGE_SIZE < pglen ? PAGE_SIZE : pglen;
205 base = 0;
206 ppage++;
207 }
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 /* send tail */
210 if (xdr->tail[0].iov_len) {
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300211 result = kernel_sendpage(sock, tailpage, tailoffset,
212 xdr->tail[0].iov_len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 if (result > 0)
214 len += result;
215 }
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300216
217out:
218 return len;
219}
220
221
222/*
223 * Generic sendto routine
224 */
225static int svc_sendto(struct svc_rqst *rqstp, struct xdr_buf *xdr)
226{
227 struct svc_sock *svsk =
228 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
229 struct socket *sock = svsk->sk_sock;
230 union {
231 struct cmsghdr hdr;
232 long all[SVC_PKTINFO_SPACE / sizeof(long)];
233 } buffer;
234 struct cmsghdr *cmh = &buffer.hdr;
235 int len = 0;
236 unsigned long tailoff;
237 unsigned long headoff;
238 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
239
240 if (rqstp->rq_prot == IPPROTO_UDP) {
241 struct msghdr msg = {
242 .msg_name = &rqstp->rq_addr,
243 .msg_namelen = rqstp->rq_addrlen,
244 .msg_control = cmh,
245 .msg_controllen = sizeof(buffer),
246 .msg_flags = MSG_MORE,
247 };
248
249 svc_set_cmsg_data(rqstp, cmh);
250
251 if (sock_sendmsg(sock, &msg, 0) < 0)
252 goto out;
253 }
254
255 tailoff = ((unsigned long)xdr->tail[0].iov_base) & (PAGE_SIZE-1);
256 headoff = 0;
257 len = svc_send_common(sock, xdr, rqstp->rq_respages[0], headoff,
258 rqstp->rq_respages[0], tailoff);
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260out:
Chuck Leverad06e4b2007-02-12 00:53:32 -0800261 dprintk("svc: socket %p sendto([%p %Zu... ], %d) = %d (addr %s)\n",
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600262 svsk, xdr->head[0].iov_base, xdr->head[0].iov_len,
Chuck Leverad06e4b2007-02-12 00:53:32 -0800263 xdr->len, len, svc_print_addr(rqstp, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
265 return len;
266}
267
268/*
NeilBrown80212d52006-10-02 02:17:47 -0700269 * Report socket names for nfsdfs
270 */
Chuck Levere7942b92009-04-23 19:32:48 -0400271static int svc_one_sock_name(struct svc_sock *svsk, char *buf, int remaining)
NeilBrown80212d52006-10-02 02:17:47 -0700272{
Chuck Lever017cb472009-04-23 19:33:03 -0400273 const struct sock *sk = svsk->sk_sk;
274 const char *proto_name = sk->sk_protocol == IPPROTO_UDP ?
275 "udp" : "tcp";
NeilBrown80212d52006-10-02 02:17:47 -0700276 int len;
277
Chuck Lever017cb472009-04-23 19:33:03 -0400278 switch (sk->sk_family) {
Chuck Levere7942b92009-04-23 19:32:48 -0400279 case PF_INET:
280 len = snprintf(buf, remaining, "ipv4 %s %pI4 %d\n",
Chuck Lever017cb472009-04-23 19:33:03 -0400281 proto_name,
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000282 &inet_sk(sk)->inet_rcv_saddr,
283 inet_sk(sk)->inet_num);
NeilBrown80212d52006-10-02 02:17:47 -0700284 break;
Chuck Lever58de2f82009-04-23 19:32:55 -0400285 case PF_INET6:
286 len = snprintf(buf, remaining, "ipv6 %s %pI6 %d\n",
Chuck Lever017cb472009-04-23 19:33:03 -0400287 proto_name,
288 &inet6_sk(sk)->rcv_saddr,
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000289 inet_sk(sk)->inet_num);
NeilBrown80212d52006-10-02 02:17:47 -0700290 break;
291 default:
Chuck Levere7942b92009-04-23 19:32:48 -0400292 len = snprintf(buf, remaining, "*unknown-%d*\n",
Chuck Lever017cb472009-04-23 19:33:03 -0400293 sk->sk_family);
NeilBrown80212d52006-10-02 02:17:47 -0700294 }
Chuck Levere7942b92009-04-23 19:32:48 -0400295
296 if (len >= remaining) {
297 *buf = '\0';
298 return -ENAMETOOLONG;
NeilBrown80212d52006-10-02 02:17:47 -0700299 }
300 return len;
301}
302
Chuck Lever8435d342009-04-23 19:32:40 -0400303/**
304 * svc_sock_names - construct a list of listener names in a string
305 * @serv: pointer to RPC service
306 * @buf: pointer to a buffer to fill in with socket names
307 * @buflen: size of the buffer to be filled
308 * @toclose: pointer to '\0'-terminated C string containing the name
309 * of a listener to be closed
310 *
311 * Fills in @buf with a '\n'-separated list of names of listener
312 * sockets. If @toclose is not NULL, the socket named by @toclose
313 * is closed, and is not included in the output list.
314 *
315 * Returns positive length of the socket name string, or a negative
316 * errno value on error.
317 */
318int svc_sock_names(struct svc_serv *serv, char *buf, const size_t buflen,
319 const char *toclose)
NeilBrown80212d52006-10-02 02:17:47 -0700320{
NeilBrownb41b66d2006-10-02 02:17:48 -0700321 struct svc_sock *svsk, *closesk = NULL;
NeilBrown80212d52006-10-02 02:17:47 -0700322 int len = 0;
323
324 if (!serv)
325 return 0;
Chuck Levere7942b92009-04-23 19:32:48 -0400326
NeilBrownaaf68cf2007-02-08 14:20:30 -0800327 spin_lock_bh(&serv->sv_lock);
Tom Tucker7a182082007-12-30 21:07:53 -0600328 list_for_each_entry(svsk, &serv->sv_permsocks, sk_xprt.xpt_list) {
Chuck Levere7942b92009-04-23 19:32:48 -0400329 int onelen = svc_one_sock_name(svsk, buf + len, buflen - len);
330 if (onelen < 0) {
331 len = onelen;
332 break;
333 }
334 if (toclose && strcmp(toclose, buf + len) == 0)
NeilBrownb41b66d2006-10-02 02:17:48 -0700335 closesk = svsk;
336 else
337 len += onelen;
NeilBrown80212d52006-10-02 02:17:47 -0700338 }
NeilBrownaaf68cf2007-02-08 14:20:30 -0800339 spin_unlock_bh(&serv->sv_lock);
Chuck Levere7942b92009-04-23 19:32:48 -0400340
NeilBrownb41b66d2006-10-02 02:17:48 -0700341 if (closesk)
NeilBrown5680c442006-10-04 02:15:45 -0700342 /* Should unregister with portmap, but you cannot
343 * unregister just one protocol...
344 */
Tom Tucker7a182082007-12-30 21:07:53 -0600345 svc_close_xprt(&closesk->sk_xprt);
NeilBrown37a03472006-10-04 02:15:44 -0700346 else if (toclose)
347 return -ENOENT;
NeilBrown80212d52006-10-02 02:17:47 -0700348 return len;
349}
Trond Myklebust24c37672008-12-23 16:30:12 -0500350EXPORT_SYMBOL_GPL(svc_sock_names);
NeilBrown80212d52006-10-02 02:17:47 -0700351
352/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 * Check input queue length
354 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600355static int svc_recv_available(struct svc_sock *svsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 struct socket *sock = svsk->sk_sock;
358 int avail, err;
359
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700360 err = kernel_sock_ioctl(sock, TIOCINQ, (unsigned long) &avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 return (err >= 0)? avail : err;
363}
364
365/*
366 * Generic recvfrom routine.
367 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600368static int svc_recvfrom(struct svc_rqst *rqstp, struct kvec *iov, int nr,
369 int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600371 struct svc_sock *svsk =
372 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Chuck Lever1ba95102007-02-12 00:53:31 -0800373 struct msghdr msg = {
374 .msg_flags = MSG_DONTWAIT,
375 };
376 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Tom Tucker260c1d12007-12-30 21:08:29 -0600378 rqstp->rq_xprt_hlen = 0;
379
Chuck Lever1ba95102007-02-12 00:53:31 -0800380 len = kernel_recvmsg(svsk->sk_sock, &msg, iov, nr, buflen,
381 msg.msg_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 dprintk("svc: socket %p recvfrom(%p, %Zu) = %d\n",
Chuck Lever1ba95102007-02-12 00:53:31 -0800384 svsk, iov[0].iov_base, iov[0].iov_len, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 return len;
386}
387
388/*
389 * Set socket snd and rcv buffer lengths
390 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600391static void svc_sock_setbufsize(struct socket *sock, unsigned int snd,
392 unsigned int rcv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
394#if 0
395 mm_segment_t oldfs;
396 oldfs = get_fs(); set_fs(KERNEL_DS);
397 sock_setsockopt(sock, SOL_SOCKET, SO_SNDBUF,
398 (char*)&snd, sizeof(snd));
399 sock_setsockopt(sock, SOL_SOCKET, SO_RCVBUF,
400 (char*)&rcv, sizeof(rcv));
401#else
402 /* sock_setsockopt limits use to sysctl_?mem_max,
403 * which isn't acceptable. Until that is made conditional
404 * on not having CAP_SYS_RESOURCE or similar, we go direct...
405 * DaveM said I could!
406 */
407 lock_sock(sock->sk);
408 sock->sk->sk_sndbuf = snd * 2;
409 sock->sk->sk_rcvbuf = rcv * 2;
J. Bruce Fields7f421832009-05-27 18:51:06 -0400410 sock->sk->sk_userlocks |= SOCK_SNDBUF_LOCK|SOCK_RCVBUF_LOCK;
Trond Myklebust47fcb032009-05-18 17:47:56 -0400411 sock->sk->sk_write_space(sock->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 release_sock(sock->sk);
413#endif
414}
415/*
416 * INET callback when data has been received on the socket.
417 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600418static void svc_udp_data_ready(struct sock *sk, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
Neil Brown939bb7e2005-09-13 01:25:39 -0700420 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Neil Brown939bb7e2005-09-13 01:25:39 -0700422 if (svsk) {
423 dprintk("svc: socket %p(inet %p), count=%d, busy=%d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600424 svsk, sk, count,
425 test_bit(XPT_BUSY, &svsk->sk_xprt.xpt_flags));
426 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600427 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700428 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000429 if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk)))
430 wake_up_interruptible(sk_sleep(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431}
432
433/*
434 * INET callback when space is newly available on the socket.
435 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600436static void svc_write_space(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
438 struct svc_sock *svsk = (struct svc_sock *)(sk->sk_user_data);
439
440 if (svsk) {
441 dprintk("svc: socket %p(inet %p), write_space busy=%d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600442 svsk, sk, test_bit(XPT_BUSY, &svsk->sk_xprt.xpt_flags));
Tom Tuckerf6150c32007-12-30 21:07:57 -0600443 svc_xprt_enqueue(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 }
445
Eric Dumazetaa395142010-04-20 13:03:51 +0000446 if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk))) {
Neil Brown939bb7e2005-09-13 01:25:39 -0700447 dprintk("RPC svc_write_space: someone sleeping on %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 svsk);
Eric Dumazetaa395142010-04-20 13:03:51 +0000449 wake_up_interruptible(sk_sleep(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 }
451}
452
Trond Myklebust47fcb032009-05-18 17:47:56 -0400453static void svc_tcp_write_space(struct sock *sk)
454{
455 struct socket *sock = sk->sk_socket;
456
457 if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk) && sock)
458 clear_bit(SOCK_NOSPACE, &sock->flags);
459 svc_write_space(sk);
460}
461
Tom Tucker9dbc2402007-12-30 21:08:12 -0600462/*
Chuck Lever7702ce42009-07-13 10:54:26 -0400463 * See net/ipv6/ip_sockglue.c : ip_cmsg_recv_pktinfo
464 */
465static int svc_udp_get_dest_address4(struct svc_rqst *rqstp,
466 struct cmsghdr *cmh)
467{
468 struct in_pktinfo *pki = CMSG_DATA(cmh);
469 if (cmh->cmsg_type != IP_PKTINFO)
470 return 0;
471 rqstp->rq_daddr.addr.s_addr = pki->ipi_spec_dst.s_addr;
472 return 1;
473}
474
475/*
476 * See net/ipv6/datagram.c : datagram_recv_ctl
477 */
478static int svc_udp_get_dest_address6(struct svc_rqst *rqstp,
479 struct cmsghdr *cmh)
480{
481 struct in6_pktinfo *pki = CMSG_DATA(cmh);
482 if (cmh->cmsg_type != IPV6_PKTINFO)
483 return 0;
484 ipv6_addr_copy(&rqstp->rq_daddr.addr6, &pki->ipi6_addr);
485 return 1;
486}
487
488/*
Tom Tucker9dbc2402007-12-30 21:08:12 -0600489 * Copy the UDP datagram's destination address to the rqstp structure.
490 * The 'destination' address in this case is the address to which the
491 * peer sent the datagram, i.e. our local address. For multihomed
492 * hosts, this can change from msg to msg. Note that only the IP
493 * address changes, the port number should remain the same.
494 */
Chuck Lever7702ce42009-07-13 10:54:26 -0400495static int svc_udp_get_dest_address(struct svc_rqst *rqstp,
496 struct cmsghdr *cmh)
Chuck Lever95756482007-02-12 00:53:38 -0800497{
Chuck Lever7702ce42009-07-13 10:54:26 -0400498 switch (cmh->cmsg_level) {
499 case SOL_IP:
500 return svc_udp_get_dest_address4(rqstp, cmh);
501 case SOL_IPV6:
502 return svc_udp_get_dest_address6(rqstp, cmh);
Chuck Lever95756482007-02-12 00:53:38 -0800503 }
Chuck Lever7702ce42009-07-13 10:54:26 -0400504
505 return 0;
Chuck Lever95756482007-02-12 00:53:38 -0800506}
507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508/*
509 * Receive a datagram from a UDP socket.
510 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600511static int svc_udp_recvfrom(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600513 struct svc_sock *svsk =
514 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600515 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 struct sk_buff *skb;
David S. Millerbc375ea2007-04-12 13:35:59 -0700517 union {
518 struct cmsghdr hdr;
519 long all[SVC_PKTINFO_SPACE / sizeof(long)];
520 } buffer;
521 struct cmsghdr *cmh = &buffer.hdr;
NeilBrown7a37f572007-03-06 01:42:21 -0800522 struct msghdr msg = {
523 .msg_name = svc_addr(rqstp),
524 .msg_control = cmh,
525 .msg_controllen = sizeof(buffer),
526 .msg_flags = MSG_DONTWAIT,
527 };
Chuck Leverabc5c442009-04-23 19:31:25 -0400528 size_t len;
529 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Tom Tucker02fc6c32007-12-30 21:07:48 -0600531 if (test_and_clear_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 /* udp sockets need large rcvbuf as all pending
533 * requests are still in that buffer. sndbuf must
534 * also be large enough that there is enough space
Greg Banks3262c812006-10-02 02:17:58 -0700535 * for one reply per thread. We count all threads
536 * rather than threads in a particular pool, which
537 * provides an upper bound on the number of threads
538 * which will access the socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 */
540 svc_sock_setbufsize(svsk->sk_sock,
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700541 (serv->sv_nrthreads+3) * serv->sv_max_mesg,
542 (serv->sv_nrthreads+3) * serv->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Tom Tucker02fc6c32007-12-30 21:07:48 -0600544 clear_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
NeilBrown05ed6902007-05-09 02:34:55 -0700545 skb = NULL;
546 err = kernel_recvmsg(svsk->sk_sock, &msg, NULL,
547 0, 0, MSG_PEEK | MSG_DONTWAIT);
548 if (err >= 0)
549 skb = skb_recv_datagram(svsk->sk_sk, 0, 1, &err);
550
551 if (skb == NULL) {
552 if (err != -EAGAIN) {
553 /* possibly an icmp error */
554 dprintk("svc: recvfrom returned error %d\n", -err);
Tom Tucker02fc6c32007-12-30 21:07:48 -0600555 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 }
NeilBrown05ed6902007-05-09 02:34:55 -0700557 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
Tom Tucker9dbc2402007-12-30 21:08:12 -0600559 len = svc_addr_len(svc_addr(rqstp));
Chuck Leverabc5c442009-04-23 19:31:25 -0400560 if (len == 0)
561 return -EAFNOSUPPORT;
Tom Tucker9dbc2402007-12-30 21:08:12 -0600562 rqstp->rq_addrlen = len;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700563 if (skb->tstamp.tv64 == 0) {
564 skb->tstamp = ktime_get_real();
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800565 /* Don't enable netstamp, sunrpc doesn't
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 need that much accuracy */
567 }
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700568 svsk->sk_sk->sk_stamp = skb->tstamp;
Tom Tucker02fc6c32007-12-30 21:07:48 -0600569 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); /* there may be more data... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 len = skb->len - sizeof(struct udphdr);
572 rqstp->rq_arg.len = len;
573
Chuck Lever95756482007-02-12 00:53:38 -0800574 rqstp->rq_prot = IPPROTO_UDP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Chuck Lever7702ce42009-07-13 10:54:26 -0400576 if (!svc_udp_get_dest_address(rqstp, cmh)) {
NeilBrown7a37f572007-03-06 01:42:21 -0800577 if (net_ratelimit())
Chuck Lever7702ce42009-07-13 10:54:26 -0400578 printk(KERN_WARNING
579 "svc: received unknown control message %d/%d; "
580 "dropping RPC reply datagram\n",
581 cmh->cmsg_level, cmh->cmsg_type);
Eric Dumazet9d410c72009-10-30 05:03:53 +0000582 skb_free_datagram_locked(svsk->sk_sk, skb);
NeilBrown7a37f572007-03-06 01:42:21 -0800583 return 0;
584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586 if (skb_is_nonlinear(skb)) {
587 /* we have to copy */
588 local_bh_disable();
589 if (csum_partial_copy_to_xdr(&rqstp->rq_arg, skb)) {
590 local_bh_enable();
591 /* checksum error */
Eric Dumazet9d410c72009-10-30 05:03:53 +0000592 skb_free_datagram_locked(svsk->sk_sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 return 0;
594 }
595 local_bh_enable();
Eric Dumazet9d410c72009-10-30 05:03:53 +0000596 skb_free_datagram_locked(svsk->sk_sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 } else {
598 /* we can use it in-place */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600599 rqstp->rq_arg.head[0].iov_base = skb->data +
600 sizeof(struct udphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 rqstp->rq_arg.head[0].iov_len = len;
Herbert Xufb286bb2005-11-10 13:01:24 -0800602 if (skb_checksum_complete(skb)) {
Eric Dumazet9d410c72009-10-30 05:03:53 +0000603 skb_free_datagram_locked(svsk->sk_sk, skb);
Herbert Xufb286bb2005-11-10 13:01:24 -0800604 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 }
Tom Tucker5148bf42007-12-30 21:07:25 -0600606 rqstp->rq_xprt_ctxt = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
608
609 rqstp->rq_arg.page_base = 0;
610 if (len <= rqstp->rq_arg.head[0].iov_len) {
611 rqstp->rq_arg.head[0].iov_len = len;
612 rqstp->rq_arg.page_len = 0;
NeilBrown44524352006-10-04 02:15:46 -0700613 rqstp->rq_respages = rqstp->rq_pages+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 } else {
615 rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len;
NeilBrown44524352006-10-04 02:15:46 -0700616 rqstp->rq_respages = rqstp->rq_pages + 1 +
Ilpo Järvinen172589c2007-08-28 15:50:33 -0700617 DIV_ROUND_UP(rqstp->rq_arg.page_len, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 }
619
620 if (serv->sv_stats)
621 serv->sv_stats->netudpcnt++;
622
623 return len;
624}
625
626static int
627svc_udp_sendto(struct svc_rqst *rqstp)
628{
629 int error;
630
631 error = svc_sendto(rqstp, &rqstp->rq_res);
632 if (error == -ECONNREFUSED)
633 /* ICMP error on earlier request. */
634 error = svc_sendto(rqstp, &rqstp->rq_res);
635
636 return error;
637}
638
Tom Tuckere831fe62007-12-30 21:07:29 -0600639static void svc_udp_prep_reply_hdr(struct svc_rqst *rqstp)
640{
641}
642
Tom Tucker323bee32007-12-30 21:07:31 -0600643static int svc_udp_has_wspace(struct svc_xprt *xprt)
644{
645 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600646 struct svc_serv *serv = xprt->xpt_server;
Tom Tucker323bee32007-12-30 21:07:31 -0600647 unsigned long required;
648
649 /*
650 * Set the SOCK_NOSPACE flag before checking the available
651 * sock space.
652 */
653 set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
Tom Tucker7a90e8c2007-12-30 21:07:55 -0600654 required = atomic_read(&svsk->sk_xprt.xpt_reserved) + serv->sv_max_mesg;
Tom Tucker323bee32007-12-30 21:07:31 -0600655 if (required*2 > sock_wspace(svsk->sk_sk))
656 return 0;
657 clear_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
658 return 1;
659}
660
Tom Tucker38a417c2007-12-30 21:07:36 -0600661static struct svc_xprt *svc_udp_accept(struct svc_xprt *xprt)
662{
663 BUG();
664 return NULL;
665}
666
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600667static struct svc_xprt *svc_udp_create(struct svc_serv *serv,
Pavel Emelyanov62832c02010-09-29 16:04:18 +0400668 struct net *net,
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600669 struct sockaddr *sa, int salen,
670 int flags)
671{
Pavel Emelyanov62832c02010-09-29 16:04:18 +0400672 return svc_create_socket(serv, IPPROTO_UDP, net, sa, salen, flags);
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600673}
674
Tom Tucker360d87382007-12-30 21:07:17 -0600675static struct svc_xprt_ops svc_udp_ops = {
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600676 .xpo_create = svc_udp_create,
Tom Tucker5d137992007-12-30 21:07:23 -0600677 .xpo_recvfrom = svc_udp_recvfrom,
678 .xpo_sendto = svc_udp_sendto,
Tom Tucker5148bf42007-12-30 21:07:25 -0600679 .xpo_release_rqst = svc_release_skb,
Tom Tucker755ccea2007-12-30 21:07:27 -0600680 .xpo_detach = svc_sock_detach,
681 .xpo_free = svc_sock_free,
Tom Tuckere831fe62007-12-30 21:07:29 -0600682 .xpo_prep_reply_hdr = svc_udp_prep_reply_hdr,
Tom Tucker323bee32007-12-30 21:07:31 -0600683 .xpo_has_wspace = svc_udp_has_wspace,
Tom Tucker38a417c2007-12-30 21:07:36 -0600684 .xpo_accept = svc_udp_accept,
Tom Tucker360d87382007-12-30 21:07:17 -0600685};
686
687static struct svc_xprt_class svc_udp_class = {
688 .xcl_name = "udp",
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600689 .xcl_owner = THIS_MODULE,
Tom Tucker360d87382007-12-30 21:07:17 -0600690 .xcl_ops = &svc_udp_ops,
Tom Tucker49023152007-12-30 21:07:21 -0600691 .xcl_max_payload = RPCSVC_MAXPAYLOAD_UDP,
Tom Tucker360d87382007-12-30 21:07:17 -0600692};
693
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600694static void svc_udp_init(struct svc_sock *svsk, struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
Chuck Lever7702ce42009-07-13 10:54:26 -0400696 int err, level, optname, one = 1;
NeilBrown7a37f572007-03-06 01:42:21 -0800697
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600698 svc_xprt_init(&svc_udp_class, &svsk->sk_xprt, serv);
Tom Tuckerdef13d72007-12-30 21:08:08 -0600699 clear_bit(XPT_CACHE_AUTH, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 svsk->sk_sk->sk_data_ready = svc_udp_data_ready;
701 svsk->sk_sk->sk_write_space = svc_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 /* initialise setting must have enough space to
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800704 * receive and respond to one request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 * svc_udp_recvfrom will re-adjust if necessary
706 */
707 svc_sock_setbufsize(svsk->sk_sock,
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600708 3 * svsk->sk_xprt.xpt_server->sv_max_mesg,
709 3 * svsk->sk_xprt.xpt_server->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Tom Tucker0f0257e2007-12-30 21:08:27 -0600711 /* data might have come in before data_ready set up */
712 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tucker02fc6c32007-12-30 21:07:48 -0600713 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
NeilBrown7a37f572007-03-06 01:42:21 -0800714
NeilBrown7a37f572007-03-06 01:42:21 -0800715 /* make sure we get destination address info */
Chuck Lever7702ce42009-07-13 10:54:26 -0400716 switch (svsk->sk_sk->sk_family) {
717 case AF_INET:
718 level = SOL_IP;
719 optname = IP_PKTINFO;
720 break;
721 case AF_INET6:
722 level = SOL_IPV6;
723 optname = IPV6_RECVPKTINFO;
724 break;
725 default:
726 BUG();
727 }
728 err = kernel_setsockopt(svsk->sk_sock, level, optname,
729 (char *)&one, sizeof(one));
730 dprintk("svc: kernel_setsockopt returned %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731}
732
733/*
734 * A data_ready event on a listening socket means there's a connection
735 * pending. Do not use state_change as a substitute for it.
736 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600737static void svc_tcp_listen_data_ready(struct sock *sk, int count_unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
Neil Brown939bb7e2005-09-13 01:25:39 -0700739 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741 dprintk("svc: socket %p TCP (listen) state change %d\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700742 sk, sk->sk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Neil Brown939bb7e2005-09-13 01:25:39 -0700744 /*
745 * This callback may called twice when a new connection
746 * is established as a child socket inherits everything
747 * from a parent LISTEN socket.
748 * 1) data_ready method of the parent socket will be called
749 * when one of child sockets become ESTABLISHED.
750 * 2) data_ready method of the child socket may be called
751 * when it receives data before the socket is accepted.
752 * In case of 2, we should ignore it silently.
753 */
754 if (sk->sk_state == TCP_LISTEN) {
755 if (svsk) {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600756 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600757 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700758 } else
759 printk("svc: socket %p: no user data\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 }
Neil Brown939bb7e2005-09-13 01:25:39 -0700761
Eric Dumazetaa395142010-04-20 13:03:51 +0000762 if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk)))
763 wake_up_interruptible_all(sk_sleep(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765
766/*
767 * A state change on a connected socket means it's dying or dead.
768 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600769static void svc_tcp_state_change(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
Neil Brown939bb7e2005-09-13 01:25:39 -0700771 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
773 dprintk("svc: socket %p TCP (connected) state change %d (svsk %p)\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700774 sk, sk->sk_state, sk->sk_user_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Neil Brown939bb7e2005-09-13 01:25:39 -0700776 if (!svsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 printk("svc: socket %p: no user data\n", sk);
Neil Brown939bb7e2005-09-13 01:25:39 -0700778 else {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600779 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600780 svc_xprt_enqueue(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000782 if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk)))
783 wake_up_interruptible_all(sk_sleep(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784}
785
Tom Tucker0f0257e2007-12-30 21:08:27 -0600786static void svc_tcp_data_ready(struct sock *sk, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787{
Neil Brown939bb7e2005-09-13 01:25:39 -0700788 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
790 dprintk("svc: socket %p TCP data ready (svsk %p)\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700791 sk, sk->sk_user_data);
792 if (svsk) {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600793 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600794 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700795 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000796 if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk)))
797 wake_up_interruptible(sk_sleep(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798}
799
800/*
801 * Accept a TCP connection
802 */
Tom Tucker38a417c2007-12-30 21:07:36 -0600803static struct svc_xprt *svc_tcp_accept(struct svc_xprt *xprt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
Tom Tucker38a417c2007-12-30 21:07:36 -0600805 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800806 struct sockaddr_storage addr;
807 struct sockaddr *sin = (struct sockaddr *) &addr;
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600808 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 struct socket *sock = svsk->sk_sock;
810 struct socket *newsock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 struct svc_sock *newsvsk;
812 int err, slen;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +0300813 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815 dprintk("svc: tcp_accept %p sock %p\n", svsk, sock);
816 if (!sock)
Tom Tucker38a417c2007-12-30 21:07:36 -0600817 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Tom Tucker02fc6c32007-12-30 21:07:48 -0600819 clear_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700820 err = kernel_accept(sock, &newsock, O_NONBLOCK);
821 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 if (err == -ENOMEM)
823 printk(KERN_WARNING "%s: no more sockets!\n",
824 serv->sv_name);
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700825 else if (err != -EAGAIN && net_ratelimit())
826 printk(KERN_WARNING "%s: accept failed (err %d)!\n",
827 serv->sv_name, -err);
Tom Tucker38a417c2007-12-30 21:07:36 -0600828 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 }
Tom Tucker02fc6c32007-12-30 21:07:48 -0600830 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800832 err = kernel_getpeername(newsock, sin, &slen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 if (err < 0) {
834 if (net_ratelimit())
835 printk(KERN_WARNING "%s: peername failed (err %d)!\n",
836 serv->sv_name, -err);
837 goto failed; /* aborted connection or whatever */
838 }
839
840 /* Ideally, we would want to reject connections from unauthorized
Chuck Leverad06e4b2007-02-12 00:53:32 -0800841 * hosts here, but when we get encryption, the IP of the host won't
842 * tell us anything. For now just warn about unpriv connections.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 */
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800844 if (!svc_port_is_privileged(sin)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 dprintk(KERN_WARNING
Chuck Leverad06e4b2007-02-12 00:53:32 -0800846 "%s: connect from unprivileged port: %s\n",
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800847 serv->sv_name,
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800848 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 }
Chuck Leverad06e4b2007-02-12 00:53:32 -0800850 dprintk("%s: connect from %s\n", serv->sv_name,
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800851 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
853 /* make sure that a write doesn't block forever when
854 * low on memory
855 */
856 newsock->sk->sk_sndtimeo = HZ*30;
857
Chuck Lever6b174332007-02-12 00:53:28 -0800858 if (!(newsvsk = svc_setup_socket(serv, newsock, &err,
859 (SVC_SOCK_ANONYMOUS | SVC_SOCK_TEMPORARY))))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 goto failed;
Tom Tucker9dbc2402007-12-30 21:08:12 -0600861 svc_xprt_set_remote(&newsvsk->sk_xprt, sin, slen);
Frank van Maarseveena9747692007-07-09 22:21:39 +0200862 err = kernel_getsockname(newsock, sin, &slen);
863 if (unlikely(err < 0)) {
864 dprintk("svc_tcp_accept: kernel_getsockname error %d\n", -err);
865 slen = offsetof(struct sockaddr, sa_data);
866 }
Tom Tucker9dbc2402007-12-30 21:08:12 -0600867 svc_xprt_set_local(&newsvsk->sk_xprt, sin, slen);
Chuck Lever067d7812007-02-12 00:53:30 -0800868
Tom Tuckerf9f3cc42007-12-30 21:07:40 -0600869 if (serv->sv_stats)
870 serv->sv_stats->nettcpconn++;
871
872 return &newsvsk->sk_xprt;
873
874failed:
875 sock_release(newsock);
876 return NULL;
877}
878
879/*
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300880 * Receive data.
881 * If we haven't gotten the record length yet, get the next four bytes.
882 * Otherwise try to gobble up as much as possible up to the complete
883 * record length.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 */
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300885static int svc_tcp_recv_record(struct svc_sock *svsk, struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600887 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300888 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
J. Bruce Fields7f421832009-05-27 18:51:06 -0400890 if (test_and_clear_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags))
891 /* sndbuf needs to have room for one request
892 * per thread, otherwise we can stall even when the
893 * network isn't a bottleneck.
894 *
895 * We count all threads rather than threads in a
896 * particular pool, which provides an upper bound
897 * on the number of threads which will access the socket.
898 *
899 * rcvbuf just needs to be able to hold a few requests.
900 * Normally they will be removed from the queue
901 * as soon a a complete request arrives.
902 */
903 svc_sock_setbufsize(svsk->sk_sock,
904 (serv->sv_nrthreads+3) * serv->sv_max_mesg,
905 3 * serv->sv_max_mesg);
906
Tom Tucker02fc6c32007-12-30 21:07:48 -0600907 clear_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
Chuck Leverc0401ea2008-04-14 12:27:30 -0400909 if (svsk->sk_tcplen < sizeof(rpc_fraghdr)) {
910 int want = sizeof(rpc_fraghdr) - svsk->sk_tcplen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 struct kvec iov;
912
913 iov.iov_base = ((char *) &svsk->sk_reclen) + svsk->sk_tcplen;
914 iov.iov_len = want;
915 if ((len = svc_recvfrom(rqstp, &iov, 1, want)) < 0)
916 goto error;
917 svsk->sk_tcplen += len;
918
919 if (len < want) {
Chuck Leverc0401ea2008-04-14 12:27:30 -0400920 dprintk("svc: short recvfrom while reading record "
921 "length (%d of %d)\n", len, want);
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300922 goto err_again; /* record header not complete */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 }
924
925 svsk->sk_reclen = ntohl(svsk->sk_reclen);
Chuck Leverc0401ea2008-04-14 12:27:30 -0400926 if (!(svsk->sk_reclen & RPC_LAST_STREAM_FRAGMENT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 /* FIXME: technically, a record can be fragmented,
928 * and non-terminal fragments will not have the top
929 * bit set in the fragment length header.
930 * But apparently no known nfs clients send fragmented
931 * records. */
NeilBrown34e9a632007-01-29 13:19:52 -0800932 if (net_ratelimit())
Chuck Leverc0401ea2008-04-14 12:27:30 -0400933 printk(KERN_NOTICE "RPC: multiple fragments "
934 "per record not supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 goto err_delete;
936 }
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300937
Chuck Leverc0401ea2008-04-14 12:27:30 -0400938 svsk->sk_reclen &= RPC_FRAGMENT_SIZE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 dprintk("svc: TCP record, %d bytes\n", svsk->sk_reclen);
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700940 if (svsk->sk_reclen > serv->sv_max_mesg) {
NeilBrown34e9a632007-01-29 13:19:52 -0800941 if (net_ratelimit())
Chuck Leverc0401ea2008-04-14 12:27:30 -0400942 printk(KERN_NOTICE "RPC: "
943 "fragment too large: 0x%08lx\n",
944 (unsigned long)svsk->sk_reclen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 goto err_delete;
946 }
947 }
948
949 /* Check whether enough data is available */
950 len = svc_recv_available(svsk);
951 if (len < 0)
952 goto error;
953
954 if (len < svsk->sk_reclen) {
955 dprintk("svc: incomplete TCP record (%d of %d)\n",
956 len, svsk->sk_reclen);
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300957 goto err_again; /* record not complete */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 }
959 len = svsk->sk_reclen;
Tom Tucker02fc6c32007-12-30 21:07:48 -0600960 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300962 return len;
963 error:
Neil Brownb48fa6b2010-03-01 16:51:14 +1100964 if (len == -EAGAIN)
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300965 dprintk("RPC: TCP recv_record got EAGAIN\n");
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300966 return len;
967 err_delete:
968 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
969 err_again:
970 return -EAGAIN;
971}
972
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300973static int svc_process_calldir(struct svc_sock *svsk, struct svc_rqst *rqstp,
974 struct rpc_rqst **reqpp, struct kvec *vec)
975{
976 struct rpc_rqst *req = NULL;
977 u32 *p;
978 u32 xid;
979 u32 calldir;
980 int len;
981
982 len = svc_recvfrom(rqstp, vec, 1, 8);
983 if (len < 0)
984 goto error;
985
986 p = (u32 *)rqstp->rq_arg.head[0].iov_base;
987 xid = *p++;
988 calldir = *p;
989
990 if (calldir == 0) {
991 /* REQUEST is the most common case */
992 vec[0] = rqstp->rq_arg.head[0];
993 } else {
994 /* REPLY */
995 if (svsk->sk_bc_xprt)
996 req = xprt_lookup_rqst(svsk->sk_bc_xprt, xid);
997
998 if (!req) {
999 printk(KERN_NOTICE
1000 "%s: Got unrecognized reply: "
1001 "calldir 0x%x sk_bc_xprt %p xid %08x\n",
1002 __func__, ntohl(calldir),
1003 svsk->sk_bc_xprt, xid);
1004 vec[0] = rqstp->rq_arg.head[0];
1005 goto out;
1006 }
1007
1008 memcpy(&req->rq_private_buf, &req->rq_rcv_buf,
1009 sizeof(struct xdr_buf));
1010 /* copy the xid and call direction */
1011 memcpy(req->rq_private_buf.head[0].iov_base,
1012 rqstp->rq_arg.head[0].iov_base, 8);
1013 vec[0] = req->rq_private_buf.head[0];
1014 }
1015 out:
1016 vec[0].iov_base += 8;
1017 vec[0].iov_len -= 8;
1018 len = svsk->sk_reclen - 8;
1019 error:
1020 *reqpp = req;
1021 return len;
1022}
1023
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001024/*
1025 * Receive data from a TCP socket.
1026 */
1027static int svc_tcp_recvfrom(struct svc_rqst *rqstp)
1028{
1029 struct svc_sock *svsk =
1030 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
1031 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
1032 int len;
1033 struct kvec *vec;
1034 int pnum, vlen;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001035 struct rpc_rqst *req = NULL;
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001036
1037 dprintk("svc: tcp_recv %p data %d conn %d close %d\n",
1038 svsk, test_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags),
1039 test_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags),
1040 test_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags));
1041
1042 len = svc_tcp_recv_record(svsk, rqstp);
1043 if (len < 0)
1044 goto error;
1045
NeilBrown3cc03b12006-10-04 02:15:47 -07001046 vec = rqstp->rq_vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 vec[0] = rqstp->rq_arg.head[0];
1048 vlen = PAGE_SIZE;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001049
1050 /*
1051 * We have enough data for the whole tcp record. Let's try and read the
1052 * first 8 bytes to get the xid and the call direction. We can use this
1053 * to figure out if this is a call or a reply to a callback. If
1054 * sk_reclen is < 8 (xid and calldir), then this is a malformed packet.
1055 * In that case, don't bother with the calldir and just read the data.
1056 * It will be rejected in svc_process.
1057 */
1058 if (len >= 8) {
1059 len = svc_process_calldir(svsk, rqstp, &req, vec);
1060 if (len < 0)
1061 goto err_again;
1062 vlen -= 8;
1063 }
1064
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 pnum = 1;
1066 while (vlen < len) {
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001067 vec[pnum].iov_base = (req) ?
1068 page_address(req->rq_private_buf.pages[pnum - 1]) :
1069 page_address(rqstp->rq_pages[pnum]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 vec[pnum].iov_len = PAGE_SIZE;
1071 pnum++;
1072 vlen += PAGE_SIZE;
1073 }
NeilBrown44524352006-10-04 02:15:46 -07001074 rqstp->rq_respages = &rqstp->rq_pages[pnum];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
1076 /* Now receive data */
1077 len = svc_recvfrom(rqstp, vec, pnum, len);
1078 if (len < 0)
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001079 goto err_again;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001081 /*
1082 * Account for the 8 bytes we read earlier
1083 */
1084 len += 8;
1085
1086 if (req) {
1087 xprt_complete_rqst(req->rq_task, len);
1088 len = 0;
1089 goto out;
1090 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 dprintk("svc: TCP complete record (%d bytes)\n", len);
1092 rqstp->rq_arg.len = len;
1093 rqstp->rq_arg.page_base = 0;
1094 if (len <= rqstp->rq_arg.head[0].iov_len) {
1095 rqstp->rq_arg.head[0].iov_len = len;
1096 rqstp->rq_arg.page_len = 0;
1097 } else {
1098 rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len;
1099 }
1100
Tom Tucker5148bf42007-12-30 21:07:25 -06001101 rqstp->rq_xprt_ctxt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 rqstp->rq_prot = IPPROTO_TCP;
1103
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001104out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 /* Reset TCP read info */
1106 svsk->sk_reclen = 0;
1107 svsk->sk_tcplen = 0;
1108
Tom Tucker9dbc2402007-12-30 21:08:12 -06001109 svc_xprt_copy_addrs(rqstp, &svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 if (serv->sv_stats)
1111 serv->sv_stats->nettcpcnt++;
1112
1113 return len;
1114
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001115err_again:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 if (len == -EAGAIN) {
1117 dprintk("RPC: TCP recvfrom got EAGAIN\n");
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001118 return len;
1119 }
1120error:
1121 if (len != -EAGAIN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 printk(KERN_NOTICE "%s: recvfrom returned errno %d\n",
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001123 svsk->sk_xprt.xpt_server->sv_name, -len);
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001124 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 }
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001126 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127}
1128
1129/*
1130 * Send out data on TCP socket.
1131 */
Tom Tucker0f0257e2007-12-30 21:08:27 -06001132static int svc_tcp_sendto(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133{
1134 struct xdr_buf *xbufp = &rqstp->rq_res;
1135 int sent;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001136 __be32 reclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
1138 /* Set up the first element of the reply kvec.
1139 * Any other kvecs that may be in use have been taken
1140 * care of by the server implementation itself.
1141 */
1142 reclen = htonl(0x80000000|((xbufp->len ) - 4));
1143 memcpy(xbufp->head[0].iov_base, &reclen, 4);
1144
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 sent = svc_sendto(rqstp, &rqstp->rq_res);
1146 if (sent != xbufp->len) {
Tom Tucker0f0257e2007-12-30 21:08:27 -06001147 printk(KERN_NOTICE
1148 "rpc-srv/tcp: %s: %s %d when sending %d bytes "
1149 "- shutting down socket\n",
Tom Tucker57b1d3b2007-12-30 21:08:22 -06001150 rqstp->rq_xprt->xpt_server->sv_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 (sent<0)?"got error":"sent only",
1152 sent, xbufp->len);
Tom Tucker57b1d3b2007-12-30 21:08:22 -06001153 set_bit(XPT_CLOSE, &rqstp->rq_xprt->xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -06001154 svc_xprt_enqueue(rqstp->rq_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 sent = -EAGAIN;
1156 }
1157 return sent;
1158}
1159
Tom Tuckere831fe62007-12-30 21:07:29 -06001160/*
1161 * Setup response header. TCP has a 4B record length field.
1162 */
1163static void svc_tcp_prep_reply_hdr(struct svc_rqst *rqstp)
1164{
1165 struct kvec *resv = &rqstp->rq_res.head[0];
1166
1167 /* tcp needs a space for the record length... */
1168 svc_putnl(resv, 0);
1169}
1170
Tom Tucker323bee32007-12-30 21:07:31 -06001171static int svc_tcp_has_wspace(struct svc_xprt *xprt)
1172{
Tom Tucker57b1d3b2007-12-30 21:08:22 -06001173 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
Trond Myklebust47fcb032009-05-18 17:47:56 -04001174 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Tom Tucker323bee32007-12-30 21:07:31 -06001175 int required;
Tom Tucker323bee32007-12-30 21:07:31 -06001176
Trond Myklebust47fcb032009-05-18 17:47:56 -04001177 if (test_bit(XPT_LISTENER, &xprt->xpt_flags))
1178 return 1;
1179 required = atomic_read(&xprt->xpt_reserved) + serv->sv_max_mesg;
1180 if (sk_stream_wspace(svsk->sk_sk) >= required)
1181 return 1;
Tom Tucker323bee32007-12-30 21:07:31 -06001182 set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
Trond Myklebust47fcb032009-05-18 17:47:56 -04001183 return 0;
Tom Tucker323bee32007-12-30 21:07:31 -06001184}
1185
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001186static struct svc_xprt *svc_tcp_create(struct svc_serv *serv,
Pavel Emelyanov62832c02010-09-29 16:04:18 +04001187 struct net *net,
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001188 struct sockaddr *sa, int salen,
1189 int flags)
1190{
Pavel Emelyanov62832c02010-09-29 16:04:18 +04001191 return svc_create_socket(serv, IPPROTO_TCP, net, sa, salen, flags);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001192}
1193
Andy Adamson1f11a032011-01-06 02:04:26 +00001194#if defined(CONFIG_NFS_V4_1)
1195static struct svc_xprt *svc_bc_create_socket(struct svc_serv *, int,
1196 struct net *, struct sockaddr *,
1197 int, int);
1198static void svc_bc_sock_free(struct svc_xprt *xprt);
1199
1200static struct svc_xprt *svc_bc_tcp_create(struct svc_serv *serv,
1201 struct net *net,
1202 struct sockaddr *sa, int salen,
1203 int flags)
1204{
1205 return svc_bc_create_socket(serv, IPPROTO_TCP, net, sa, salen, flags);
1206}
1207
1208static void svc_bc_tcp_sock_detach(struct svc_xprt *xprt)
1209{
1210}
1211
1212static struct svc_xprt_ops svc_tcp_bc_ops = {
1213 .xpo_create = svc_bc_tcp_create,
1214 .xpo_detach = svc_bc_tcp_sock_detach,
1215 .xpo_free = svc_bc_sock_free,
1216 .xpo_prep_reply_hdr = svc_tcp_prep_reply_hdr,
1217};
1218
1219static struct svc_xprt_class svc_tcp_bc_class = {
1220 .xcl_name = "tcp-bc",
1221 .xcl_owner = THIS_MODULE,
1222 .xcl_ops = &svc_tcp_bc_ops,
1223 .xcl_max_payload = RPCSVC_MAXPAYLOAD_TCP,
1224};
1225#endif /* CONFIG_NFS_V4_1 */
1226
Tom Tucker360d87382007-12-30 21:07:17 -06001227static struct svc_xprt_ops svc_tcp_ops = {
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001228 .xpo_create = svc_tcp_create,
Tom Tucker5d137992007-12-30 21:07:23 -06001229 .xpo_recvfrom = svc_tcp_recvfrom,
1230 .xpo_sendto = svc_tcp_sendto,
Tom Tucker5148bf42007-12-30 21:07:25 -06001231 .xpo_release_rqst = svc_release_skb,
Trond Myklebust69b6ba32008-12-23 16:30:11 -05001232 .xpo_detach = svc_tcp_sock_detach,
Tom Tucker755ccea2007-12-30 21:07:27 -06001233 .xpo_free = svc_sock_free,
Tom Tuckere831fe62007-12-30 21:07:29 -06001234 .xpo_prep_reply_hdr = svc_tcp_prep_reply_hdr,
Tom Tucker323bee32007-12-30 21:07:31 -06001235 .xpo_has_wspace = svc_tcp_has_wspace,
Tom Tucker38a417c2007-12-30 21:07:36 -06001236 .xpo_accept = svc_tcp_accept,
Tom Tucker360d87382007-12-30 21:07:17 -06001237};
1238
1239static struct svc_xprt_class svc_tcp_class = {
1240 .xcl_name = "tcp",
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001241 .xcl_owner = THIS_MODULE,
Tom Tucker360d87382007-12-30 21:07:17 -06001242 .xcl_ops = &svc_tcp_ops,
Tom Tucker49023152007-12-30 21:07:21 -06001243 .xcl_max_payload = RPCSVC_MAXPAYLOAD_TCP,
Tom Tucker360d87382007-12-30 21:07:17 -06001244};
1245
1246void svc_init_xprt_sock(void)
1247{
1248 svc_reg_xprt_class(&svc_tcp_class);
1249 svc_reg_xprt_class(&svc_udp_class);
1250}
1251
1252void svc_cleanup_xprt_sock(void)
1253{
1254 svc_unreg_xprt_class(&svc_tcp_class);
1255 svc_unreg_xprt_class(&svc_udp_class);
1256}
1257
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001258static void svc_tcp_init(struct svc_sock *svsk, struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259{
1260 struct sock *sk = svsk->sk_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001262 svc_xprt_init(&svc_tcp_class, &svsk->sk_xprt, serv);
Tom Tuckerdef13d72007-12-30 21:08:08 -06001263 set_bit(XPT_CACHE_AUTH, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 if (sk->sk_state == TCP_LISTEN) {
1265 dprintk("setting up TCP socket for listening\n");
Tom Tucker02fc6c32007-12-30 21:07:48 -06001266 set_bit(XPT_LISTENER, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 sk->sk_data_ready = svc_tcp_listen_data_ready;
Tom Tucker02fc6c32007-12-30 21:07:48 -06001268 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 } else {
1270 dprintk("setting up TCP socket for reading\n");
1271 sk->sk_state_change = svc_tcp_state_change;
1272 sk->sk_data_ready = svc_tcp_data_ready;
Trond Myklebust47fcb032009-05-18 17:47:56 -04001273 sk->sk_write_space = svc_tcp_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
1275 svsk->sk_reclen = 0;
1276 svsk->sk_tcplen = 0;
1277
Chuck Leverb7872fe2008-04-14 12:27:01 -04001278 tcp_sk(sk)->nonagle |= TCP_NAGLE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
J. Bruce Fields7f421832009-05-27 18:51:06 -04001280 /* initialise setting must have enough space to
1281 * receive and respond to one request.
1282 * svc_tcp_recvfrom will re-adjust if necessary
1283 */
1284 svc_sock_setbufsize(svsk->sk_sock,
1285 3 * svsk->sk_xprt.xpt_server->sv_max_mesg,
1286 3 * svsk->sk_xprt.xpt_server->sv_max_mesg);
1287
1288 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
Tom Tucker02fc6c32007-12-30 21:07:48 -06001289 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001290 if (sk->sk_state != TCP_ESTABLISHED)
Tom Tucker02fc6c32007-12-30 21:07:48 -06001291 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 }
1293}
1294
Tom Tucker0f0257e2007-12-30 21:08:27 -06001295void svc_sock_update_bufs(struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296{
1297 /*
1298 * The number of server threads has changed. Update
1299 * rcvbuf and sndbuf accordingly on all sockets
1300 */
Pavel Emelyanov8f3a6de2010-10-05 23:30:19 +04001301 struct svc_sock *svsk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
1303 spin_lock_bh(&serv->sv_lock);
Pavel Emelyanov8f3a6de2010-10-05 23:30:19 +04001304 list_for_each_entry(svsk, &serv->sv_permsocks, sk_xprt.xpt_list)
Tom Tucker02fc6c32007-12-30 21:07:48 -06001305 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
Pavel Emelyanov8f3a6de2010-10-05 23:30:19 +04001306 list_for_each_entry(svsk, &serv->sv_tempsocks, sk_xprt.xpt_list)
Tom Tucker02fc6c32007-12-30 21:07:48 -06001307 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 spin_unlock_bh(&serv->sv_lock);
1309}
Trond Myklebust24c37672008-12-23 16:30:12 -05001310EXPORT_SYMBOL_GPL(svc_sock_update_bufs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
1312/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 * Initialize socket for RPC use and create svc_sock struct
1314 * XXX: May want to setsockopt SO_SNDBUF and SO_RCVBUF.
1315 */
Chuck Lever6b174332007-02-12 00:53:28 -08001316static struct svc_sock *svc_setup_socket(struct svc_serv *serv,
1317 struct socket *sock,
1318 int *errp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319{
1320 struct svc_sock *svsk;
1321 struct sock *inet;
Chuck Lever6b174332007-02-12 00:53:28 -08001322 int pmap_register = !(flags & SVC_SOCK_ANONYMOUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
1324 dprintk("svc: svc_setup_socket %p\n", sock);
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001325 if (!(svsk = kzalloc(sizeof(*svsk), GFP_KERNEL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 *errp = -ENOMEM;
1327 return NULL;
1328 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
1330 inet = sock->sk;
1331
1332 /* Register socket with portmapper */
1333 if (*errp >= 0 && pmap_register)
Chuck Leverbaf01ca2009-03-18 20:46:13 -04001334 *errp = svc_register(serv, inet->sk_family, inet->sk_protocol,
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001335 ntohs(inet_sk(inet)->inet_sport));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
1337 if (*errp < 0) {
1338 kfree(svsk);
1339 return NULL;
1340 }
1341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 inet->sk_user_data = svsk;
1343 svsk->sk_sock = sock;
1344 svsk->sk_sk = inet;
1345 svsk->sk_ostate = inet->sk_state_change;
1346 svsk->sk_odata = inet->sk_data_ready;
1347 svsk->sk_owspace = inet->sk_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
1349 /* Initialize the socket */
1350 if (sock->type == SOCK_DGRAM)
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001351 svc_udp_init(svsk, serv);
J. Bruce Fields7f421832009-05-27 18:51:06 -04001352 else
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001353 svc_tcp_init(svsk, serv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 dprintk("svc: svc_setup_socket created %p (inet %p)\n",
1356 svsk, svsk->sk_sk);
1357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 return svsk;
1359}
1360
Chuck Leverbfba9ab2009-04-23 19:32:33 -04001361/**
1362 * svc_addsock - add a listener socket to an RPC service
1363 * @serv: pointer to RPC service to which to add a new listener
1364 * @fd: file descriptor of the new listener
1365 * @name_return: pointer to buffer to fill in with name of listener
1366 * @len: size of the buffer
1367 *
1368 * Fills in socket name and returns positive length of name if successful.
1369 * Name is terminated with '\n'. On error, returns a negative errno
1370 * value.
1371 */
1372int svc_addsock(struct svc_serv *serv, const int fd, char *name_return,
1373 const size_t len)
NeilBrownb41b66d2006-10-02 02:17:48 -07001374{
1375 int err = 0;
1376 struct socket *so = sockfd_lookup(fd, &err);
1377 struct svc_sock *svsk = NULL;
1378
1379 if (!so)
1380 return err;
Aime Le Rouzic205ba422010-01-26 14:03:56 -05001381 if ((so->sk->sk_family != PF_INET) && (so->sk->sk_family != PF_INET6))
NeilBrownb41b66d2006-10-02 02:17:48 -07001382 err = -EAFNOSUPPORT;
1383 else if (so->sk->sk_protocol != IPPROTO_TCP &&
1384 so->sk->sk_protocol != IPPROTO_UDP)
1385 err = -EPROTONOSUPPORT;
1386 else if (so->state > SS_UNCONNECTED)
1387 err = -EISCONN;
1388 else {
Tom Tucker2da2c212008-11-23 09:58:08 -06001389 if (!try_module_get(THIS_MODULE))
1390 err = -ENOENT;
1391 else
1392 svsk = svc_setup_socket(serv, so, &err,
1393 SVC_SOCK_DEFAULTS);
NeilBrowne79eff12007-02-12 00:53:30 -08001394 if (svsk) {
Tom Tucker9dbc2402007-12-30 21:08:12 -06001395 struct sockaddr_storage addr;
1396 struct sockaddr *sin = (struct sockaddr *)&addr;
1397 int salen;
1398 if (kernel_getsockname(svsk->sk_sock, sin, &salen) == 0)
1399 svc_xprt_set_local(&svsk->sk_xprt, sin, salen);
Tom Tucker4e5caaa2007-12-30 21:08:20 -06001400 clear_bit(XPT_TEMP, &svsk->sk_xprt.xpt_flags);
1401 spin_lock_bh(&serv->sv_lock);
1402 list_add(&svsk->sk_xprt.xpt_list, &serv->sv_permsocks);
1403 spin_unlock_bh(&serv->sv_lock);
Tom Tuckera6046f72007-12-30 21:08:01 -06001404 svc_xprt_received(&svsk->sk_xprt);
NeilBrownb41b66d2006-10-02 02:17:48 -07001405 err = 0;
Tom Tucker2da2c212008-11-23 09:58:08 -06001406 } else
1407 module_put(THIS_MODULE);
NeilBrownb41b66d2006-10-02 02:17:48 -07001408 }
1409 if (err) {
1410 sockfd_put(so);
1411 return err;
1412 }
Chuck Levere7942b92009-04-23 19:32:48 -04001413 return svc_one_sock_name(svsk, name_return, len);
NeilBrownb41b66d2006-10-02 02:17:48 -07001414}
1415EXPORT_SYMBOL_GPL(svc_addsock);
1416
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417/*
1418 * Create socket for RPC service.
1419 */
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001420static struct svc_xprt *svc_create_socket(struct svc_serv *serv,
1421 int protocol,
Pavel Emelyanov62832c02010-09-29 16:04:18 +04001422 struct net *net,
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001423 struct sockaddr *sin, int len,
1424 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425{
1426 struct svc_sock *svsk;
1427 struct socket *sock;
1428 int error;
1429 int type;
Tom Tucker9dbc2402007-12-30 21:08:12 -06001430 struct sockaddr_storage addr;
1431 struct sockaddr *newsin = (struct sockaddr *)&addr;
1432 int newlen;
Trond Myklebustc69da772009-03-30 18:59:17 -04001433 int family;
1434 int val;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +03001435 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Chuck Leverad06e4b2007-02-12 00:53:32 -08001437 dprintk("svc: svc_create_socket(%s, %d, %s)\n",
1438 serv->sv_program->pg_name, protocol,
Chuck Lever77f1f672007-02-12 00:53:39 -08001439 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
1441 if (protocol != IPPROTO_UDP && protocol != IPPROTO_TCP) {
1442 printk(KERN_WARNING "svc: only UDP and TCP "
1443 "sockets supported\n");
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001444 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Trond Myklebustc69da772009-03-30 18:59:17 -04001447 type = (protocol == IPPROTO_UDP)? SOCK_DGRAM : SOCK_STREAM;
1448 switch (sin->sa_family) {
1449 case AF_INET6:
1450 family = PF_INET6;
1451 break;
1452 case AF_INET:
1453 family = PF_INET;
1454 break;
1455 default:
1456 return ERR_PTR(-EINVAL);
1457 }
1458
Pavel Emelyanov14ec63c2010-09-29 16:06:57 +04001459 error = __sock_create(net, family, type, protocol, &sock, 1);
Chuck Lever77f1f672007-02-12 00:53:39 -08001460 if (error < 0)
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001461 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
Peter Zijlstraed075362006-12-06 20:35:24 -08001463 svc_reclassify_socket(sock);
1464
Trond Myklebustc69da772009-03-30 18:59:17 -04001465 /*
1466 * If this is an PF_INET6 listener, we want to avoid
1467 * getting requests from IPv4 remotes. Those should
1468 * be shunted to a PF_INET listener via rpcbind.
1469 */
1470 val = 1;
1471 if (family == PF_INET6)
1472 kernel_setsockopt(sock, SOL_IPV6, IPV6_V6ONLY,
1473 (char *)&val, sizeof(val));
1474
Eric Sesterhenn18114742006-09-28 14:37:07 -07001475 if (type == SOCK_STREAM)
Chuck Lever77f1f672007-02-12 00:53:39 -08001476 sock->sk->sk_reuse = 1; /* allow address reuse */
1477 error = kernel_bind(sock, sin, len);
Eric Sesterhenn18114742006-09-28 14:37:07 -07001478 if (error < 0)
1479 goto bummer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Tom Tucker9dbc2402007-12-30 21:08:12 -06001481 newlen = len;
1482 error = kernel_getsockname(sock, newsin, &newlen);
1483 if (error < 0)
1484 goto bummer;
1485
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 if (protocol == IPPROTO_TCP) {
Sridhar Samudralae6242e92006-08-07 20:58:01 -07001487 if ((error = kernel_listen(sock, 64)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 goto bummer;
1489 }
1490
NeilBrowne79eff12007-02-12 00:53:30 -08001491 if ((svsk = svc_setup_socket(serv, sock, &error, flags)) != NULL) {
Tom Tucker9dbc2402007-12-30 21:08:12 -06001492 svc_xprt_set_local(&svsk->sk_xprt, newsin, newlen);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001493 return (struct svc_xprt *)svsk;
NeilBrowne79eff12007-02-12 00:53:30 -08001494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
1496bummer:
1497 dprintk("svc: svc_create_socket error = %d\n", -error);
1498 sock_release(sock);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001499 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500}
1501
1502/*
Tom Tucker755ccea2007-12-30 21:07:27 -06001503 * Detach the svc_sock from the socket so that no
1504 * more callbacks occur.
1505 */
1506static void svc_sock_detach(struct svc_xprt *xprt)
1507{
1508 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1509 struct sock *sk = svsk->sk_sk;
1510
1511 dprintk("svc: svc_sock_detach(%p)\n", svsk);
1512
1513 /* put back the old socket callbacks */
1514 sk->sk_state_change = svsk->sk_ostate;
1515 sk->sk_data_ready = svsk->sk_odata;
1516 sk->sk_write_space = svsk->sk_owspace;
Trond Myklebust69b6ba32008-12-23 16:30:11 -05001517
Eric Dumazetaa395142010-04-20 13:03:51 +00001518 if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk)))
1519 wake_up_interruptible(sk_sleep(sk));
Trond Myklebust69b6ba32008-12-23 16:30:11 -05001520}
1521
1522/*
1523 * Disconnect the socket, and reset the callbacks
1524 */
1525static void svc_tcp_sock_detach(struct svc_xprt *xprt)
1526{
1527 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1528
1529 dprintk("svc: svc_tcp_sock_detach(%p)\n", svsk);
1530
1531 svc_sock_detach(xprt);
1532
1533 if (!test_bit(XPT_LISTENER, &xprt->xpt_flags))
1534 kernel_sock_shutdown(svsk->sk_sock, SHUT_RDWR);
Tom Tucker755ccea2007-12-30 21:07:27 -06001535}
1536
1537/*
1538 * Free the svc_sock's socket resources and the svc_sock itself.
1539 */
1540static void svc_sock_free(struct svc_xprt *xprt)
1541{
1542 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1543 dprintk("svc: svc_sock_free(%p)\n", svsk);
1544
Tom Tucker755ccea2007-12-30 21:07:27 -06001545 if (svsk->sk_sock->file)
1546 sockfd_put(svsk->sk_sock);
1547 else
1548 sock_release(svsk->sk_sock);
1549 kfree(svsk);
1550}
Benny Halevy7652e5a2009-04-01 09:23:09 -04001551
Andy Adamson1f11a032011-01-06 02:04:26 +00001552#if defined(CONFIG_NFS_V4_1)
Benny Halevy7652e5a2009-04-01 09:23:09 -04001553/*
Andy Adamson1f11a032011-01-06 02:04:26 +00001554 * Create a back channel svc_xprt which shares the fore channel socket.
Benny Halevy7652e5a2009-04-01 09:23:09 -04001555 */
Andy Adamson1f11a032011-01-06 02:04:26 +00001556static struct svc_xprt *svc_bc_create_socket(struct svc_serv *serv,
1557 int protocol,
1558 struct net *net,
1559 struct sockaddr *sin, int len,
1560 int flags)
Benny Halevy7652e5a2009-04-01 09:23:09 -04001561{
1562 struct svc_sock *svsk;
Andy Adamson1f11a032011-01-06 02:04:26 +00001563 struct svc_xprt *xprt;
Benny Halevy7652e5a2009-04-01 09:23:09 -04001564
Andy Adamson1f11a032011-01-06 02:04:26 +00001565 if (protocol != IPPROTO_TCP) {
1566 printk(KERN_WARNING "svc: only TCP sockets"
1567 " supported on shared back channel\n");
1568 return ERR_PTR(-EINVAL);
1569 }
1570
Benny Halevy7652e5a2009-04-01 09:23:09 -04001571 svsk = kzalloc(sizeof(*svsk), GFP_KERNEL);
1572 if (!svsk)
Andy Adamson1f11a032011-01-06 02:04:26 +00001573 return ERR_PTR(-ENOMEM);
Benny Halevy7652e5a2009-04-01 09:23:09 -04001574
1575 xprt = &svsk->sk_xprt;
Andy Adamson1f11a032011-01-06 02:04:26 +00001576 svc_xprt_init(&svc_tcp_bc_class, xprt, serv);
1577
1578 serv->bc_xprt = xprt;
1579
Benny Halevy7652e5a2009-04-01 09:23:09 -04001580 return xprt;
1581}
Benny Halevy7652e5a2009-04-01 09:23:09 -04001582
1583/*
Andy Adamson1f11a032011-01-06 02:04:26 +00001584 * Free a back channel svc_sock.
Benny Halevy7652e5a2009-04-01 09:23:09 -04001585 */
Andy Adamson1f11a032011-01-06 02:04:26 +00001586static void svc_bc_sock_free(struct svc_xprt *xprt)
Benny Halevy7652e5a2009-04-01 09:23:09 -04001587{
1588 if (xprt)
1589 kfree(container_of(xprt, struct svc_sock, sk_xprt));
1590}
Andy Adamson1f11a032011-01-06 02:04:26 +00001591#endif /* CONFIG_NFS_V4_1 */