blob: d802e941d365e9b53bf7c6be04bd1555bc0d1144 [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 }
NeilBrown39423022010-11-15 11:27:01 +1100334 if (toclose && strcmp(toclose, buf + len) == 0) {
NeilBrownb41b66d2006-10-02 02:17:48 -0700335 closesk = svsk;
NeilBrown39423022010-11-15 11:27:01 +1100336 svc_xprt_get(&closesk->sk_xprt);
337 } else
NeilBrownb41b66d2006-10-02 02:17:48 -0700338 len += onelen;
NeilBrown80212d52006-10-02 02:17:47 -0700339 }
NeilBrownaaf68cf2007-02-08 14:20:30 -0800340 spin_unlock_bh(&serv->sv_lock);
Chuck Levere7942b92009-04-23 19:32:48 -0400341
NeilBrown39423022010-11-15 11:27:01 +1100342 if (closesk) {
NeilBrown5680c442006-10-04 02:15:45 -0700343 /* Should unregister with portmap, but you cannot
344 * unregister just one protocol...
345 */
Tom Tucker7a182082007-12-30 21:07:53 -0600346 svc_close_xprt(&closesk->sk_xprt);
NeilBrown39423022010-11-15 11:27:01 +1100347 svc_xprt_put(&closesk->sk_xprt);
348 } else if (toclose)
NeilBrown37a03472006-10-04 02:15:44 -0700349 return -ENOENT;
NeilBrown80212d52006-10-02 02:17:47 -0700350 return len;
351}
Trond Myklebust24c37672008-12-23 16:30:12 -0500352EXPORT_SYMBOL_GPL(svc_sock_names);
NeilBrown80212d52006-10-02 02:17:47 -0700353
354/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 * Check input queue length
356 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600357static int svc_recv_available(struct svc_sock *svsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 struct socket *sock = svsk->sk_sock;
360 int avail, err;
361
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700362 err = kernel_sock_ioctl(sock, TIOCINQ, (unsigned long) &avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 return (err >= 0)? avail : err;
365}
366
367/*
368 * Generic recvfrom routine.
369 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600370static int svc_recvfrom(struct svc_rqst *rqstp, struct kvec *iov, int nr,
371 int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600373 struct svc_sock *svsk =
374 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Chuck Lever1ba95102007-02-12 00:53:31 -0800375 struct msghdr msg = {
376 .msg_flags = MSG_DONTWAIT,
377 };
378 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Tom Tucker260c1d12007-12-30 21:08:29 -0600380 rqstp->rq_xprt_hlen = 0;
381
Chuck Lever1ba95102007-02-12 00:53:31 -0800382 len = kernel_recvmsg(svsk->sk_sock, &msg, iov, nr, buflen,
383 msg.msg_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 dprintk("svc: socket %p recvfrom(%p, %Zu) = %d\n",
Chuck Lever1ba95102007-02-12 00:53:31 -0800386 svsk, iov[0].iov_base, iov[0].iov_len, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 return len;
388}
389
390/*
391 * Set socket snd and rcv buffer lengths
392 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600393static void svc_sock_setbufsize(struct socket *sock, unsigned int snd,
394 unsigned int rcv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
396#if 0
397 mm_segment_t oldfs;
398 oldfs = get_fs(); set_fs(KERNEL_DS);
399 sock_setsockopt(sock, SOL_SOCKET, SO_SNDBUF,
400 (char*)&snd, sizeof(snd));
401 sock_setsockopt(sock, SOL_SOCKET, SO_RCVBUF,
402 (char*)&rcv, sizeof(rcv));
403#else
404 /* sock_setsockopt limits use to sysctl_?mem_max,
405 * which isn't acceptable. Until that is made conditional
406 * on not having CAP_SYS_RESOURCE or similar, we go direct...
407 * DaveM said I could!
408 */
409 lock_sock(sock->sk);
410 sock->sk->sk_sndbuf = snd * 2;
411 sock->sk->sk_rcvbuf = rcv * 2;
J. Bruce Fields7f421832009-05-27 18:51:06 -0400412 sock->sk->sk_userlocks |= SOCK_SNDBUF_LOCK|SOCK_RCVBUF_LOCK;
Trond Myklebust47fcb032009-05-18 17:47:56 -0400413 sock->sk->sk_write_space(sock->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 release_sock(sock->sk);
415#endif
416}
417/*
418 * INET callback when data has been received on the socket.
419 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600420static void svc_udp_data_ready(struct sock *sk, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
Neil Brown939bb7e2005-09-13 01:25:39 -0700422 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Neil Brown939bb7e2005-09-13 01:25:39 -0700424 if (svsk) {
425 dprintk("svc: socket %p(inet %p), count=%d, busy=%d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600426 svsk, sk, count,
427 test_bit(XPT_BUSY, &svsk->sk_xprt.xpt_flags));
428 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600429 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700430 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000431 if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk)))
432 wake_up_interruptible(sk_sleep(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
435/*
436 * INET callback when space is newly available on the socket.
437 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600438static void svc_write_space(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
440 struct svc_sock *svsk = (struct svc_sock *)(sk->sk_user_data);
441
442 if (svsk) {
443 dprintk("svc: socket %p(inet %p), write_space busy=%d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600444 svsk, sk, test_bit(XPT_BUSY, &svsk->sk_xprt.xpt_flags));
Tom Tuckerf6150c32007-12-30 21:07:57 -0600445 svc_xprt_enqueue(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 }
447
Eric Dumazetaa395142010-04-20 13:03:51 +0000448 if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk))) {
Neil Brown939bb7e2005-09-13 01:25:39 -0700449 dprintk("RPC svc_write_space: someone sleeping on %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 svsk);
Eric Dumazetaa395142010-04-20 13:03:51 +0000451 wake_up_interruptible(sk_sleep(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 }
453}
454
Trond Myklebust47fcb032009-05-18 17:47:56 -0400455static void svc_tcp_write_space(struct sock *sk)
456{
457 struct socket *sock = sk->sk_socket;
458
459 if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk) && sock)
460 clear_bit(SOCK_NOSPACE, &sock->flags);
461 svc_write_space(sk);
462}
463
Tom Tucker9dbc2402007-12-30 21:08:12 -0600464/*
Chuck Lever7702ce42009-07-13 10:54:26 -0400465 * See net/ipv6/ip_sockglue.c : ip_cmsg_recv_pktinfo
466 */
467static int svc_udp_get_dest_address4(struct svc_rqst *rqstp,
468 struct cmsghdr *cmh)
469{
470 struct in_pktinfo *pki = CMSG_DATA(cmh);
471 if (cmh->cmsg_type != IP_PKTINFO)
472 return 0;
473 rqstp->rq_daddr.addr.s_addr = pki->ipi_spec_dst.s_addr;
474 return 1;
475}
476
477/*
478 * See net/ipv6/datagram.c : datagram_recv_ctl
479 */
480static int svc_udp_get_dest_address6(struct svc_rqst *rqstp,
481 struct cmsghdr *cmh)
482{
483 struct in6_pktinfo *pki = CMSG_DATA(cmh);
484 if (cmh->cmsg_type != IPV6_PKTINFO)
485 return 0;
486 ipv6_addr_copy(&rqstp->rq_daddr.addr6, &pki->ipi6_addr);
487 return 1;
488}
489
490/*
Tom Tucker9dbc2402007-12-30 21:08:12 -0600491 * Copy the UDP datagram's destination address to the rqstp structure.
492 * The 'destination' address in this case is the address to which the
493 * peer sent the datagram, i.e. our local address. For multihomed
494 * hosts, this can change from msg to msg. Note that only the IP
495 * address changes, the port number should remain the same.
496 */
Chuck Lever7702ce42009-07-13 10:54:26 -0400497static int svc_udp_get_dest_address(struct svc_rqst *rqstp,
498 struct cmsghdr *cmh)
Chuck Lever95756482007-02-12 00:53:38 -0800499{
Chuck Lever7702ce42009-07-13 10:54:26 -0400500 switch (cmh->cmsg_level) {
501 case SOL_IP:
502 return svc_udp_get_dest_address4(rqstp, cmh);
503 case SOL_IPV6:
504 return svc_udp_get_dest_address6(rqstp, cmh);
Chuck Lever95756482007-02-12 00:53:38 -0800505 }
Chuck Lever7702ce42009-07-13 10:54:26 -0400506
507 return 0;
Chuck Lever95756482007-02-12 00:53:38 -0800508}
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510/*
511 * Receive a datagram from a UDP socket.
512 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600513static int svc_udp_recvfrom(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600515 struct svc_sock *svsk =
516 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600517 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 struct sk_buff *skb;
David S. Millerbc375ea2007-04-12 13:35:59 -0700519 union {
520 struct cmsghdr hdr;
521 long all[SVC_PKTINFO_SPACE / sizeof(long)];
522 } buffer;
523 struct cmsghdr *cmh = &buffer.hdr;
NeilBrown7a37f572007-03-06 01:42:21 -0800524 struct msghdr msg = {
525 .msg_name = svc_addr(rqstp),
526 .msg_control = cmh,
527 .msg_controllen = sizeof(buffer),
528 .msg_flags = MSG_DONTWAIT,
529 };
Chuck Leverabc5c442009-04-23 19:31:25 -0400530 size_t len;
531 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Tom Tucker02fc6c32007-12-30 21:07:48 -0600533 if (test_and_clear_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 /* udp sockets need large rcvbuf as all pending
535 * requests are still in that buffer. sndbuf must
536 * also be large enough that there is enough space
Greg Banks3262c812006-10-02 02:17:58 -0700537 * for one reply per thread. We count all threads
538 * rather than threads in a particular pool, which
539 * provides an upper bound on the number of threads
540 * which will access the socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 */
542 svc_sock_setbufsize(svsk->sk_sock,
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700543 (serv->sv_nrthreads+3) * serv->sv_max_mesg,
544 (serv->sv_nrthreads+3) * serv->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Tom Tucker02fc6c32007-12-30 21:07:48 -0600546 clear_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
NeilBrown05ed6902007-05-09 02:34:55 -0700547 skb = NULL;
548 err = kernel_recvmsg(svsk->sk_sock, &msg, NULL,
549 0, 0, MSG_PEEK | MSG_DONTWAIT);
550 if (err >= 0)
551 skb = skb_recv_datagram(svsk->sk_sk, 0, 1, &err);
552
553 if (skb == NULL) {
554 if (err != -EAGAIN) {
555 /* possibly an icmp error */
556 dprintk("svc: recvfrom returned error %d\n", -err);
Tom Tucker02fc6c32007-12-30 21:07:48 -0600557 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
NeilBrown05ed6902007-05-09 02:34:55 -0700559 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 }
Tom Tucker9dbc2402007-12-30 21:08:12 -0600561 len = svc_addr_len(svc_addr(rqstp));
Chuck Leverabc5c442009-04-23 19:31:25 -0400562 if (len == 0)
563 return -EAFNOSUPPORT;
Tom Tucker9dbc2402007-12-30 21:08:12 -0600564 rqstp->rq_addrlen = len;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700565 if (skb->tstamp.tv64 == 0) {
566 skb->tstamp = ktime_get_real();
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800567 /* Don't enable netstamp, sunrpc doesn't
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 need that much accuracy */
569 }
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700570 svsk->sk_sk->sk_stamp = skb->tstamp;
Tom Tucker02fc6c32007-12-30 21:07:48 -0600571 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); /* there may be more data... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 len = skb->len - sizeof(struct udphdr);
574 rqstp->rq_arg.len = len;
575
Chuck Lever95756482007-02-12 00:53:38 -0800576 rqstp->rq_prot = IPPROTO_UDP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Chuck Lever7702ce42009-07-13 10:54:26 -0400578 if (!svc_udp_get_dest_address(rqstp, cmh)) {
NeilBrown7a37f572007-03-06 01:42:21 -0800579 if (net_ratelimit())
Chuck Lever7702ce42009-07-13 10:54:26 -0400580 printk(KERN_WARNING
581 "svc: received unknown control message %d/%d; "
582 "dropping RPC reply datagram\n",
583 cmh->cmsg_level, cmh->cmsg_type);
Eric Dumazet9d410c72009-10-30 05:03:53 +0000584 skb_free_datagram_locked(svsk->sk_sk, skb);
NeilBrown7a37f572007-03-06 01:42:21 -0800585 return 0;
586 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588 if (skb_is_nonlinear(skb)) {
589 /* we have to copy */
590 local_bh_disable();
591 if (csum_partial_copy_to_xdr(&rqstp->rq_arg, skb)) {
592 local_bh_enable();
593 /* checksum error */
Eric Dumazet9d410c72009-10-30 05:03:53 +0000594 skb_free_datagram_locked(svsk->sk_sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 return 0;
596 }
597 local_bh_enable();
Eric Dumazet9d410c72009-10-30 05:03:53 +0000598 skb_free_datagram_locked(svsk->sk_sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 } else {
600 /* we can use it in-place */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600601 rqstp->rq_arg.head[0].iov_base = skb->data +
602 sizeof(struct udphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 rqstp->rq_arg.head[0].iov_len = len;
Herbert Xufb286bb2005-11-10 13:01:24 -0800604 if (skb_checksum_complete(skb)) {
Eric Dumazet9d410c72009-10-30 05:03:53 +0000605 skb_free_datagram_locked(svsk->sk_sk, skb);
Herbert Xufb286bb2005-11-10 13:01:24 -0800606 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
Tom Tucker5148bf42007-12-30 21:07:25 -0600608 rqstp->rq_xprt_ctxt = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 }
610
611 rqstp->rq_arg.page_base = 0;
612 if (len <= rqstp->rq_arg.head[0].iov_len) {
613 rqstp->rq_arg.head[0].iov_len = len;
614 rqstp->rq_arg.page_len = 0;
NeilBrown44524352006-10-04 02:15:46 -0700615 rqstp->rq_respages = rqstp->rq_pages+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 } else {
617 rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len;
NeilBrown44524352006-10-04 02:15:46 -0700618 rqstp->rq_respages = rqstp->rq_pages + 1 +
Ilpo Järvinen172589c2007-08-28 15:50:33 -0700619 DIV_ROUND_UP(rqstp->rq_arg.page_len, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 }
621
622 if (serv->sv_stats)
623 serv->sv_stats->netudpcnt++;
624
625 return len;
626}
627
628static int
629svc_udp_sendto(struct svc_rqst *rqstp)
630{
631 int error;
632
633 error = svc_sendto(rqstp, &rqstp->rq_res);
634 if (error == -ECONNREFUSED)
635 /* ICMP error on earlier request. */
636 error = svc_sendto(rqstp, &rqstp->rq_res);
637
638 return error;
639}
640
Tom Tuckere831fe62007-12-30 21:07:29 -0600641static void svc_udp_prep_reply_hdr(struct svc_rqst *rqstp)
642{
643}
644
Tom Tucker323bee32007-12-30 21:07:31 -0600645static int svc_udp_has_wspace(struct svc_xprt *xprt)
646{
647 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600648 struct svc_serv *serv = xprt->xpt_server;
Tom Tucker323bee32007-12-30 21:07:31 -0600649 unsigned long required;
650
651 /*
652 * Set the SOCK_NOSPACE flag before checking the available
653 * sock space.
654 */
655 set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
Tom Tucker7a90e8c2007-12-30 21:07:55 -0600656 required = atomic_read(&svsk->sk_xprt.xpt_reserved) + serv->sv_max_mesg;
Tom Tucker323bee32007-12-30 21:07:31 -0600657 if (required*2 > sock_wspace(svsk->sk_sk))
658 return 0;
659 clear_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
660 return 1;
661}
662
Tom Tucker38a417c2007-12-30 21:07:36 -0600663static struct svc_xprt *svc_udp_accept(struct svc_xprt *xprt)
664{
665 BUG();
666 return NULL;
667}
668
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600669static struct svc_xprt *svc_udp_create(struct svc_serv *serv,
Pavel Emelyanov62832c02010-09-29 16:04:18 +0400670 struct net *net,
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600671 struct sockaddr *sa, int salen,
672 int flags)
673{
Pavel Emelyanov62832c02010-09-29 16:04:18 +0400674 return svc_create_socket(serv, IPPROTO_UDP, net, sa, salen, flags);
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600675}
676
Tom Tucker360d87382007-12-30 21:07:17 -0600677static struct svc_xprt_ops svc_udp_ops = {
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600678 .xpo_create = svc_udp_create,
Tom Tucker5d137992007-12-30 21:07:23 -0600679 .xpo_recvfrom = svc_udp_recvfrom,
680 .xpo_sendto = svc_udp_sendto,
Tom Tucker5148bf42007-12-30 21:07:25 -0600681 .xpo_release_rqst = svc_release_skb,
Tom Tucker755ccea2007-12-30 21:07:27 -0600682 .xpo_detach = svc_sock_detach,
683 .xpo_free = svc_sock_free,
Tom Tuckere831fe62007-12-30 21:07:29 -0600684 .xpo_prep_reply_hdr = svc_udp_prep_reply_hdr,
Tom Tucker323bee32007-12-30 21:07:31 -0600685 .xpo_has_wspace = svc_udp_has_wspace,
Tom Tucker38a417c2007-12-30 21:07:36 -0600686 .xpo_accept = svc_udp_accept,
Tom Tucker360d87382007-12-30 21:07:17 -0600687};
688
689static struct svc_xprt_class svc_udp_class = {
690 .xcl_name = "udp",
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600691 .xcl_owner = THIS_MODULE,
Tom Tucker360d87382007-12-30 21:07:17 -0600692 .xcl_ops = &svc_udp_ops,
Tom Tucker49023152007-12-30 21:07:21 -0600693 .xcl_max_payload = RPCSVC_MAXPAYLOAD_UDP,
Tom Tucker360d87382007-12-30 21:07:17 -0600694};
695
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600696static void svc_udp_init(struct svc_sock *svsk, struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
Chuck Lever7702ce42009-07-13 10:54:26 -0400698 int err, level, optname, one = 1;
NeilBrown7a37f572007-03-06 01:42:21 -0800699
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600700 svc_xprt_init(&svc_udp_class, &svsk->sk_xprt, serv);
Tom Tuckerdef13d72007-12-30 21:08:08 -0600701 clear_bit(XPT_CACHE_AUTH, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 svsk->sk_sk->sk_data_ready = svc_udp_data_ready;
703 svsk->sk_sk->sk_write_space = svc_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705 /* initialise setting must have enough space to
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800706 * receive and respond to one request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 * svc_udp_recvfrom will re-adjust if necessary
708 */
709 svc_sock_setbufsize(svsk->sk_sock,
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600710 3 * svsk->sk_xprt.xpt_server->sv_max_mesg,
711 3 * svsk->sk_xprt.xpt_server->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Tom Tucker0f0257e2007-12-30 21:08:27 -0600713 /* data might have come in before data_ready set up */
714 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tucker02fc6c32007-12-30 21:07:48 -0600715 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
NeilBrown7a37f572007-03-06 01:42:21 -0800716
NeilBrown7a37f572007-03-06 01:42:21 -0800717 /* make sure we get destination address info */
Chuck Lever7702ce42009-07-13 10:54:26 -0400718 switch (svsk->sk_sk->sk_family) {
719 case AF_INET:
720 level = SOL_IP;
721 optname = IP_PKTINFO;
722 break;
723 case AF_INET6:
724 level = SOL_IPV6;
725 optname = IPV6_RECVPKTINFO;
726 break;
727 default:
728 BUG();
729 }
730 err = kernel_setsockopt(svsk->sk_sock, level, optname,
731 (char *)&one, sizeof(one));
732 dprintk("svc: kernel_setsockopt returned %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733}
734
735/*
736 * A data_ready event on a listening socket means there's a connection
737 * pending. Do not use state_change as a substitute for it.
738 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600739static void svc_tcp_listen_data_ready(struct sock *sk, int count_unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
Neil Brown939bb7e2005-09-13 01:25:39 -0700741 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
743 dprintk("svc: socket %p TCP (listen) state change %d\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700744 sk, sk->sk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Neil Brown939bb7e2005-09-13 01:25:39 -0700746 /*
747 * This callback may called twice when a new connection
748 * is established as a child socket inherits everything
749 * from a parent LISTEN socket.
750 * 1) data_ready method of the parent socket will be called
751 * when one of child sockets become ESTABLISHED.
752 * 2) data_ready method of the child socket may be called
753 * when it receives data before the socket is accepted.
754 * In case of 2, we should ignore it silently.
755 */
756 if (sk->sk_state == TCP_LISTEN) {
757 if (svsk) {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600758 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600759 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700760 } else
761 printk("svc: socket %p: no user data\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 }
Neil Brown939bb7e2005-09-13 01:25:39 -0700763
Eric Dumazetaa395142010-04-20 13:03:51 +0000764 if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk)))
765 wake_up_interruptible_all(sk_sleep(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767
768/*
769 * A state change on a connected socket means it's dying or dead.
770 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600771static void svc_tcp_state_change(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772{
Neil Brown939bb7e2005-09-13 01:25:39 -0700773 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
775 dprintk("svc: socket %p TCP (connected) state change %d (svsk %p)\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700776 sk, sk->sk_state, sk->sk_user_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Neil Brown939bb7e2005-09-13 01:25:39 -0700778 if (!svsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 printk("svc: socket %p: no user data\n", sk);
Neil Brown939bb7e2005-09-13 01:25:39 -0700780 else {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600781 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600782 svc_xprt_enqueue(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000784 if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk)))
785 wake_up_interruptible_all(sk_sleep(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786}
787
Tom Tucker0f0257e2007-12-30 21:08:27 -0600788static void svc_tcp_data_ready(struct sock *sk, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
Neil Brown939bb7e2005-09-13 01:25:39 -0700790 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792 dprintk("svc: socket %p TCP data ready (svsk %p)\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700793 sk, sk->sk_user_data);
794 if (svsk) {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600795 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600796 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700797 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000798 if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk)))
799 wake_up_interruptible(sk_sleep(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800}
801
802/*
803 * Accept a TCP connection
804 */
Tom Tucker38a417c2007-12-30 21:07:36 -0600805static struct svc_xprt *svc_tcp_accept(struct svc_xprt *xprt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
Tom Tucker38a417c2007-12-30 21:07:36 -0600807 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800808 struct sockaddr_storage addr;
809 struct sockaddr *sin = (struct sockaddr *) &addr;
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600810 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 struct socket *sock = svsk->sk_sock;
812 struct socket *newsock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 struct svc_sock *newsvsk;
814 int err, slen;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +0300815 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 dprintk("svc: tcp_accept %p sock %p\n", svsk, sock);
818 if (!sock)
Tom Tucker38a417c2007-12-30 21:07:36 -0600819 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Tom Tucker02fc6c32007-12-30 21:07:48 -0600821 clear_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700822 err = kernel_accept(sock, &newsock, O_NONBLOCK);
823 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 if (err == -ENOMEM)
825 printk(KERN_WARNING "%s: no more sockets!\n",
826 serv->sv_name);
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700827 else if (err != -EAGAIN && net_ratelimit())
828 printk(KERN_WARNING "%s: accept failed (err %d)!\n",
829 serv->sv_name, -err);
Tom Tucker38a417c2007-12-30 21:07:36 -0600830 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 }
Tom Tucker02fc6c32007-12-30 21:07:48 -0600832 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800834 err = kernel_getpeername(newsock, sin, &slen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 if (err < 0) {
836 if (net_ratelimit())
837 printk(KERN_WARNING "%s: peername failed (err %d)!\n",
838 serv->sv_name, -err);
839 goto failed; /* aborted connection or whatever */
840 }
841
842 /* Ideally, we would want to reject connections from unauthorized
Chuck Leverad06e4b2007-02-12 00:53:32 -0800843 * hosts here, but when we get encryption, the IP of the host won't
844 * tell us anything. For now just warn about unpriv connections.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 */
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800846 if (!svc_port_is_privileged(sin)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 dprintk(KERN_WARNING
Chuck Leverad06e4b2007-02-12 00:53:32 -0800848 "%s: connect from unprivileged port: %s\n",
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800849 serv->sv_name,
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800850 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 }
Chuck Leverad06e4b2007-02-12 00:53:32 -0800852 dprintk("%s: connect from %s\n", serv->sv_name,
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800853 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
855 /* make sure that a write doesn't block forever when
856 * low on memory
857 */
858 newsock->sk->sk_sndtimeo = HZ*30;
859
Chuck Lever6b174332007-02-12 00:53:28 -0800860 if (!(newsvsk = svc_setup_socket(serv, newsock, &err,
861 (SVC_SOCK_ANONYMOUS | SVC_SOCK_TEMPORARY))))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 goto failed;
Tom Tucker9dbc2402007-12-30 21:08:12 -0600863 svc_xprt_set_remote(&newsvsk->sk_xprt, sin, slen);
Frank van Maarseveena9747692007-07-09 22:21:39 +0200864 err = kernel_getsockname(newsock, sin, &slen);
865 if (unlikely(err < 0)) {
866 dprintk("svc_tcp_accept: kernel_getsockname error %d\n", -err);
867 slen = offsetof(struct sockaddr, sa_data);
868 }
Tom Tucker9dbc2402007-12-30 21:08:12 -0600869 svc_xprt_set_local(&newsvsk->sk_xprt, sin, slen);
Chuck Lever067d7812007-02-12 00:53:30 -0800870
Tom Tuckerf9f3cc42007-12-30 21:07:40 -0600871 if (serv->sv_stats)
872 serv->sv_stats->nettcpconn++;
873
874 return &newsvsk->sk_xprt;
875
876failed:
877 sock_release(newsock);
878 return NULL;
879}
880
881/*
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300882 * Receive data.
883 * If we haven't gotten the record length yet, get the next four bytes.
884 * Otherwise try to gobble up as much as possible up to the complete
885 * record length.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 */
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300887static int svc_tcp_recv_record(struct svc_sock *svsk, struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600889 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300890 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
J. Bruce Fields7f421832009-05-27 18:51:06 -0400892 if (test_and_clear_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags))
893 /* sndbuf needs to have room for one request
894 * per thread, otherwise we can stall even when the
895 * network isn't a bottleneck.
896 *
897 * We count all threads rather than threads in a
898 * particular pool, which provides an upper bound
899 * on the number of threads which will access the socket.
900 *
901 * rcvbuf just needs to be able to hold a few requests.
902 * Normally they will be removed from the queue
903 * as soon a a complete request arrives.
904 */
905 svc_sock_setbufsize(svsk->sk_sock,
906 (serv->sv_nrthreads+3) * serv->sv_max_mesg,
907 3 * serv->sv_max_mesg);
908
Tom Tucker02fc6c32007-12-30 21:07:48 -0600909 clear_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Chuck Leverc0401ea2008-04-14 12:27:30 -0400911 if (svsk->sk_tcplen < sizeof(rpc_fraghdr)) {
912 int want = sizeof(rpc_fraghdr) - svsk->sk_tcplen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 struct kvec iov;
914
915 iov.iov_base = ((char *) &svsk->sk_reclen) + svsk->sk_tcplen;
916 iov.iov_len = want;
917 if ((len = svc_recvfrom(rqstp, &iov, 1, want)) < 0)
918 goto error;
919 svsk->sk_tcplen += len;
920
921 if (len < want) {
Chuck Leverc0401ea2008-04-14 12:27:30 -0400922 dprintk("svc: short recvfrom while reading record "
923 "length (%d of %d)\n", len, want);
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300924 goto err_again; /* record header not complete */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 }
926
927 svsk->sk_reclen = ntohl(svsk->sk_reclen);
Chuck Leverc0401ea2008-04-14 12:27:30 -0400928 if (!(svsk->sk_reclen & RPC_LAST_STREAM_FRAGMENT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 /* FIXME: technically, a record can be fragmented,
930 * and non-terminal fragments will not have the top
931 * bit set in the fragment length header.
932 * But apparently no known nfs clients send fragmented
933 * records. */
NeilBrown34e9a632007-01-29 13:19:52 -0800934 if (net_ratelimit())
Chuck Leverc0401ea2008-04-14 12:27:30 -0400935 printk(KERN_NOTICE "RPC: multiple fragments "
936 "per record not supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 goto err_delete;
938 }
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300939
Chuck Leverc0401ea2008-04-14 12:27:30 -0400940 svsk->sk_reclen &= RPC_FRAGMENT_SIZE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 dprintk("svc: TCP record, %d bytes\n", svsk->sk_reclen);
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700942 if (svsk->sk_reclen > serv->sv_max_mesg) {
NeilBrown34e9a632007-01-29 13:19:52 -0800943 if (net_ratelimit())
Chuck Leverc0401ea2008-04-14 12:27:30 -0400944 printk(KERN_NOTICE "RPC: "
945 "fragment too large: 0x%08lx\n",
946 (unsigned long)svsk->sk_reclen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 goto err_delete;
948 }
949 }
950
951 /* Check whether enough data is available */
952 len = svc_recv_available(svsk);
953 if (len < 0)
954 goto error;
955
956 if (len < svsk->sk_reclen) {
957 dprintk("svc: incomplete TCP record (%d of %d)\n",
958 len, svsk->sk_reclen);
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300959 goto err_again; /* record not complete */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 }
961 len = svsk->sk_reclen;
Tom Tucker02fc6c32007-12-30 21:07:48 -0600962 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300964 return len;
965 error:
Neil Brownb48fa6b2010-03-01 16:51:14 +1100966 if (len == -EAGAIN)
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300967 dprintk("RPC: TCP recv_record got EAGAIN\n");
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300968 return len;
969 err_delete:
970 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
971 err_again:
972 return -EAGAIN;
973}
974
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300975static int svc_process_calldir(struct svc_sock *svsk, struct svc_rqst *rqstp,
976 struct rpc_rqst **reqpp, struct kvec *vec)
977{
978 struct rpc_rqst *req = NULL;
979 u32 *p;
980 u32 xid;
981 u32 calldir;
982 int len;
983
984 len = svc_recvfrom(rqstp, vec, 1, 8);
985 if (len < 0)
986 goto error;
987
988 p = (u32 *)rqstp->rq_arg.head[0].iov_base;
989 xid = *p++;
990 calldir = *p;
991
992 if (calldir == 0) {
993 /* REQUEST is the most common case */
994 vec[0] = rqstp->rq_arg.head[0];
995 } else {
996 /* REPLY */
J. Bruce Fieldsd75faea2010-11-30 19:15:01 -0500997 struct rpc_xprt *bc_xprt = svsk->sk_xprt.xpt_bc_xprt;
998
999 if (bc_xprt)
1000 req = xprt_lookup_rqst(bc_xprt, xid);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001001
1002 if (!req) {
1003 printk(KERN_NOTICE
1004 "%s: Got unrecognized reply: "
J. Bruce Fieldsd75faea2010-11-30 19:15:01 -05001005 "calldir 0x%x xpt_bc_xprt %p xid %08x\n",
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001006 __func__, ntohl(calldir),
J. Bruce Fieldsd75faea2010-11-30 19:15:01 -05001007 bc_xprt, xid);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001008 vec[0] = rqstp->rq_arg.head[0];
1009 goto out;
1010 }
1011
1012 memcpy(&req->rq_private_buf, &req->rq_rcv_buf,
1013 sizeof(struct xdr_buf));
1014 /* copy the xid and call direction */
1015 memcpy(req->rq_private_buf.head[0].iov_base,
1016 rqstp->rq_arg.head[0].iov_base, 8);
1017 vec[0] = req->rq_private_buf.head[0];
1018 }
1019 out:
1020 vec[0].iov_base += 8;
1021 vec[0].iov_len -= 8;
1022 len = svsk->sk_reclen - 8;
1023 error:
1024 *reqpp = req;
1025 return len;
1026}
1027
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001028/*
1029 * Receive data from a TCP socket.
1030 */
1031static int svc_tcp_recvfrom(struct svc_rqst *rqstp)
1032{
1033 struct svc_sock *svsk =
1034 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
1035 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
1036 int len;
1037 struct kvec *vec;
1038 int pnum, vlen;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001039 struct rpc_rqst *req = NULL;
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001040
1041 dprintk("svc: tcp_recv %p data %d conn %d close %d\n",
1042 svsk, test_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags),
1043 test_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags),
1044 test_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags));
1045
1046 len = svc_tcp_recv_record(svsk, rqstp);
1047 if (len < 0)
1048 goto error;
1049
NeilBrown3cc03b12006-10-04 02:15:47 -07001050 vec = rqstp->rq_vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 vec[0] = rqstp->rq_arg.head[0];
1052 vlen = PAGE_SIZE;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001053
1054 /*
1055 * We have enough data for the whole tcp record. Let's try and read the
1056 * first 8 bytes to get the xid and the call direction. We can use this
1057 * to figure out if this is a call or a reply to a callback. If
1058 * sk_reclen is < 8 (xid and calldir), then this is a malformed packet.
1059 * In that case, don't bother with the calldir and just read the data.
1060 * It will be rejected in svc_process.
1061 */
1062 if (len >= 8) {
1063 len = svc_process_calldir(svsk, rqstp, &req, vec);
1064 if (len < 0)
1065 goto err_again;
1066 vlen -= 8;
1067 }
1068
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 pnum = 1;
1070 while (vlen < len) {
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001071 vec[pnum].iov_base = (req) ?
1072 page_address(req->rq_private_buf.pages[pnum - 1]) :
1073 page_address(rqstp->rq_pages[pnum]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 vec[pnum].iov_len = PAGE_SIZE;
1075 pnum++;
1076 vlen += PAGE_SIZE;
1077 }
NeilBrown44524352006-10-04 02:15:46 -07001078 rqstp->rq_respages = &rqstp->rq_pages[pnum];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
1080 /* Now receive data */
1081 len = svc_recvfrom(rqstp, vec, pnum, len);
1082 if (len < 0)
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001083 goto err_again;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001085 /*
1086 * Account for the 8 bytes we read earlier
1087 */
1088 len += 8;
1089
1090 if (req) {
1091 xprt_complete_rqst(req->rq_task, len);
1092 len = 0;
1093 goto out;
1094 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 dprintk("svc: TCP complete record (%d bytes)\n", len);
1096 rqstp->rq_arg.len = len;
1097 rqstp->rq_arg.page_base = 0;
1098 if (len <= rqstp->rq_arg.head[0].iov_len) {
1099 rqstp->rq_arg.head[0].iov_len = len;
1100 rqstp->rq_arg.page_len = 0;
1101 } else {
1102 rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len;
1103 }
1104
Tom Tucker5148bf42007-12-30 21:07:25 -06001105 rqstp->rq_xprt_ctxt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 rqstp->rq_prot = IPPROTO_TCP;
1107
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001108out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 /* Reset TCP read info */
1110 svsk->sk_reclen = 0;
1111 svsk->sk_tcplen = 0;
1112
Tom Tucker9dbc2402007-12-30 21:08:12 -06001113 svc_xprt_copy_addrs(rqstp, &svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 if (serv->sv_stats)
1115 serv->sv_stats->nettcpcnt++;
1116
1117 return len;
1118
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001119err_again:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 if (len == -EAGAIN) {
1121 dprintk("RPC: TCP recvfrom got EAGAIN\n");
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001122 return len;
1123 }
1124error:
1125 if (len != -EAGAIN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 printk(KERN_NOTICE "%s: recvfrom returned errno %d\n",
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001127 svsk->sk_xprt.xpt_server->sv_name, -len);
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001128 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 }
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001130 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131}
1132
1133/*
1134 * Send out data on TCP socket.
1135 */
Tom Tucker0f0257e2007-12-30 21:08:27 -06001136static int svc_tcp_sendto(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137{
1138 struct xdr_buf *xbufp = &rqstp->rq_res;
1139 int sent;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001140 __be32 reclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
1142 /* Set up the first element of the reply kvec.
1143 * Any other kvecs that may be in use have been taken
1144 * care of by the server implementation itself.
1145 */
1146 reclen = htonl(0x80000000|((xbufp->len ) - 4));
1147 memcpy(xbufp->head[0].iov_base, &reclen, 4);
1148
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 sent = svc_sendto(rqstp, &rqstp->rq_res);
1150 if (sent != xbufp->len) {
Tom Tucker0f0257e2007-12-30 21:08:27 -06001151 printk(KERN_NOTICE
1152 "rpc-srv/tcp: %s: %s %d when sending %d bytes "
1153 "- shutting down socket\n",
Tom Tucker57b1d3b2007-12-30 21:08:22 -06001154 rqstp->rq_xprt->xpt_server->sv_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 (sent<0)?"got error":"sent only",
1156 sent, xbufp->len);
Tom Tucker57b1d3b2007-12-30 21:08:22 -06001157 set_bit(XPT_CLOSE, &rqstp->rq_xprt->xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -06001158 svc_xprt_enqueue(rqstp->rq_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 sent = -EAGAIN;
1160 }
1161 return sent;
1162}
1163
Tom Tuckere831fe62007-12-30 21:07:29 -06001164/*
1165 * Setup response header. TCP has a 4B record length field.
1166 */
1167static void svc_tcp_prep_reply_hdr(struct svc_rqst *rqstp)
1168{
1169 struct kvec *resv = &rqstp->rq_res.head[0];
1170
1171 /* tcp needs a space for the record length... */
1172 svc_putnl(resv, 0);
1173}
1174
Tom Tucker323bee32007-12-30 21:07:31 -06001175static int svc_tcp_has_wspace(struct svc_xprt *xprt)
1176{
Tom Tucker57b1d3b2007-12-30 21:08:22 -06001177 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
Trond Myklebust47fcb032009-05-18 17:47:56 -04001178 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Tom Tucker323bee32007-12-30 21:07:31 -06001179 int required;
Tom Tucker323bee32007-12-30 21:07:31 -06001180
Trond Myklebust47fcb032009-05-18 17:47:56 -04001181 if (test_bit(XPT_LISTENER, &xprt->xpt_flags))
1182 return 1;
1183 required = atomic_read(&xprt->xpt_reserved) + serv->sv_max_mesg;
1184 if (sk_stream_wspace(svsk->sk_sk) >= required)
1185 return 1;
Tom Tucker323bee32007-12-30 21:07:31 -06001186 set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
Trond Myklebust47fcb032009-05-18 17:47:56 -04001187 return 0;
Tom Tucker323bee32007-12-30 21:07:31 -06001188}
1189
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001190static struct svc_xprt *svc_tcp_create(struct svc_serv *serv,
Pavel Emelyanov62832c02010-09-29 16:04:18 +04001191 struct net *net,
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001192 struct sockaddr *sa, int salen,
1193 int flags)
1194{
Pavel Emelyanov62832c02010-09-29 16:04:18 +04001195 return svc_create_socket(serv, IPPROTO_TCP, net, sa, salen, flags);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001196}
1197
Andy Adamson1f11a032011-01-06 02:04:26 +00001198#if defined(CONFIG_NFS_V4_1)
1199static struct svc_xprt *svc_bc_create_socket(struct svc_serv *, int,
1200 struct net *, struct sockaddr *,
1201 int, int);
1202static void svc_bc_sock_free(struct svc_xprt *xprt);
1203
1204static struct svc_xprt *svc_bc_tcp_create(struct svc_serv *serv,
1205 struct net *net,
1206 struct sockaddr *sa, int salen,
1207 int flags)
1208{
1209 return svc_bc_create_socket(serv, IPPROTO_TCP, net, sa, salen, flags);
1210}
1211
1212static void svc_bc_tcp_sock_detach(struct svc_xprt *xprt)
1213{
1214}
1215
1216static struct svc_xprt_ops svc_tcp_bc_ops = {
1217 .xpo_create = svc_bc_tcp_create,
1218 .xpo_detach = svc_bc_tcp_sock_detach,
1219 .xpo_free = svc_bc_sock_free,
1220 .xpo_prep_reply_hdr = svc_tcp_prep_reply_hdr,
1221};
1222
1223static struct svc_xprt_class svc_tcp_bc_class = {
1224 .xcl_name = "tcp-bc",
1225 .xcl_owner = THIS_MODULE,
1226 .xcl_ops = &svc_tcp_bc_ops,
1227 .xcl_max_payload = RPCSVC_MAXPAYLOAD_TCP,
1228};
Andy Adamson16b2d1e2011-01-06 02:04:27 +00001229
1230static void svc_init_bc_xprt_sock(void)
1231{
1232 svc_reg_xprt_class(&svc_tcp_bc_class);
1233}
1234
1235static void svc_cleanup_bc_xprt_sock(void)
1236{
1237 svc_unreg_xprt_class(&svc_tcp_bc_class);
1238}
1239#else /* CONFIG_NFS_V4_1 */
1240static void svc_init_bc_xprt_sock(void)
1241{
1242}
1243
1244static void svc_cleanup_bc_xprt_sock(void)
1245{
1246}
Andy Adamson1f11a032011-01-06 02:04:26 +00001247#endif /* CONFIG_NFS_V4_1 */
1248
Tom Tucker360d87382007-12-30 21:07:17 -06001249static struct svc_xprt_ops svc_tcp_ops = {
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001250 .xpo_create = svc_tcp_create,
Tom Tucker5d137992007-12-30 21:07:23 -06001251 .xpo_recvfrom = svc_tcp_recvfrom,
1252 .xpo_sendto = svc_tcp_sendto,
Tom Tucker5148bf42007-12-30 21:07:25 -06001253 .xpo_release_rqst = svc_release_skb,
Trond Myklebust69b6ba32008-12-23 16:30:11 -05001254 .xpo_detach = svc_tcp_sock_detach,
Tom Tucker755ccea2007-12-30 21:07:27 -06001255 .xpo_free = svc_sock_free,
Tom Tuckere831fe62007-12-30 21:07:29 -06001256 .xpo_prep_reply_hdr = svc_tcp_prep_reply_hdr,
Tom Tucker323bee32007-12-30 21:07:31 -06001257 .xpo_has_wspace = svc_tcp_has_wspace,
Tom Tucker38a417c2007-12-30 21:07:36 -06001258 .xpo_accept = svc_tcp_accept,
Tom Tucker360d87382007-12-30 21:07:17 -06001259};
1260
1261static struct svc_xprt_class svc_tcp_class = {
1262 .xcl_name = "tcp",
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001263 .xcl_owner = THIS_MODULE,
Tom Tucker360d87382007-12-30 21:07:17 -06001264 .xcl_ops = &svc_tcp_ops,
Tom Tucker49023152007-12-30 21:07:21 -06001265 .xcl_max_payload = RPCSVC_MAXPAYLOAD_TCP,
Tom Tucker360d87382007-12-30 21:07:17 -06001266};
1267
1268void svc_init_xprt_sock(void)
1269{
1270 svc_reg_xprt_class(&svc_tcp_class);
1271 svc_reg_xprt_class(&svc_udp_class);
Andy Adamson16b2d1e2011-01-06 02:04:27 +00001272 svc_init_bc_xprt_sock();
Tom Tucker360d87382007-12-30 21:07:17 -06001273}
1274
1275void svc_cleanup_xprt_sock(void)
1276{
1277 svc_unreg_xprt_class(&svc_tcp_class);
1278 svc_unreg_xprt_class(&svc_udp_class);
Andy Adamson16b2d1e2011-01-06 02:04:27 +00001279 svc_cleanup_bc_xprt_sock();
Tom Tucker360d87382007-12-30 21:07:17 -06001280}
1281
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001282static void svc_tcp_init(struct svc_sock *svsk, struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283{
1284 struct sock *sk = svsk->sk_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001286 svc_xprt_init(&svc_tcp_class, &svsk->sk_xprt, serv);
Tom Tuckerdef13d72007-12-30 21:08:08 -06001287 set_bit(XPT_CACHE_AUTH, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 if (sk->sk_state == TCP_LISTEN) {
1289 dprintk("setting up TCP socket for listening\n");
Tom Tucker02fc6c32007-12-30 21:07:48 -06001290 set_bit(XPT_LISTENER, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 sk->sk_data_ready = svc_tcp_listen_data_ready;
Tom Tucker02fc6c32007-12-30 21:07:48 -06001292 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 } else {
1294 dprintk("setting up TCP socket for reading\n");
1295 sk->sk_state_change = svc_tcp_state_change;
1296 sk->sk_data_ready = svc_tcp_data_ready;
Trond Myklebust47fcb032009-05-18 17:47:56 -04001297 sk->sk_write_space = svc_tcp_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
1299 svsk->sk_reclen = 0;
1300 svsk->sk_tcplen = 0;
1301
Chuck Leverb7872fe2008-04-14 12:27:01 -04001302 tcp_sk(sk)->nonagle |= TCP_NAGLE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
J. Bruce Fields7f421832009-05-27 18:51:06 -04001304 /* initialise setting must have enough space to
1305 * receive and respond to one request.
1306 * svc_tcp_recvfrom will re-adjust if necessary
1307 */
1308 svc_sock_setbufsize(svsk->sk_sock,
1309 3 * svsk->sk_xprt.xpt_server->sv_max_mesg,
1310 3 * svsk->sk_xprt.xpt_server->sv_max_mesg);
1311
1312 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
Tom Tucker02fc6c32007-12-30 21:07:48 -06001313 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001314 if (sk->sk_state != TCP_ESTABLISHED)
Tom Tucker02fc6c32007-12-30 21:07:48 -06001315 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 }
1317}
1318
Tom Tucker0f0257e2007-12-30 21:08:27 -06001319void svc_sock_update_bufs(struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320{
1321 /*
1322 * The number of server threads has changed. Update
1323 * rcvbuf and sndbuf accordingly on all sockets
1324 */
Pavel Emelyanov8f3a6de2010-10-05 23:30:19 +04001325 struct svc_sock *svsk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
1327 spin_lock_bh(&serv->sv_lock);
Pavel Emelyanov8f3a6de2010-10-05 23:30:19 +04001328 list_for_each_entry(svsk, &serv->sv_permsocks, sk_xprt.xpt_list)
Tom Tucker02fc6c32007-12-30 21:07:48 -06001329 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
Pavel Emelyanov8f3a6de2010-10-05 23:30:19 +04001330 list_for_each_entry(svsk, &serv->sv_tempsocks, sk_xprt.xpt_list)
Tom Tucker02fc6c32007-12-30 21:07:48 -06001331 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 spin_unlock_bh(&serv->sv_lock);
1333}
Trond Myklebust24c37672008-12-23 16:30:12 -05001334EXPORT_SYMBOL_GPL(svc_sock_update_bufs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 * Initialize socket for RPC use and create svc_sock struct
1338 * XXX: May want to setsockopt SO_SNDBUF and SO_RCVBUF.
1339 */
Chuck Lever6b174332007-02-12 00:53:28 -08001340static struct svc_sock *svc_setup_socket(struct svc_serv *serv,
1341 struct socket *sock,
1342 int *errp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343{
1344 struct svc_sock *svsk;
1345 struct sock *inet;
Chuck Lever6b174332007-02-12 00:53:28 -08001346 int pmap_register = !(flags & SVC_SOCK_ANONYMOUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
1348 dprintk("svc: svc_setup_socket %p\n", sock);
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001349 if (!(svsk = kzalloc(sizeof(*svsk), GFP_KERNEL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 *errp = -ENOMEM;
1351 return NULL;
1352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
1354 inet = sock->sk;
1355
1356 /* Register socket with portmapper */
1357 if (*errp >= 0 && pmap_register)
Chuck Leverbaf01ca2009-03-18 20:46:13 -04001358 *errp = svc_register(serv, inet->sk_family, inet->sk_protocol,
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001359 ntohs(inet_sk(inet)->inet_sport));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
1361 if (*errp < 0) {
1362 kfree(svsk);
1363 return NULL;
1364 }
1365
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 inet->sk_user_data = svsk;
1367 svsk->sk_sock = sock;
1368 svsk->sk_sk = inet;
1369 svsk->sk_ostate = inet->sk_state_change;
1370 svsk->sk_odata = inet->sk_data_ready;
1371 svsk->sk_owspace = inet->sk_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
1373 /* Initialize the socket */
1374 if (sock->type == SOCK_DGRAM)
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001375 svc_udp_init(svsk, serv);
J. Bruce Fields7f421832009-05-27 18:51:06 -04001376 else
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001377 svc_tcp_init(svsk, serv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 dprintk("svc: svc_setup_socket created %p (inet %p)\n",
1380 svsk, svsk->sk_sk);
1381
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 return svsk;
1383}
1384
Chuck Leverbfba9ab2009-04-23 19:32:33 -04001385/**
1386 * svc_addsock - add a listener socket to an RPC service
1387 * @serv: pointer to RPC service to which to add a new listener
1388 * @fd: file descriptor of the new listener
1389 * @name_return: pointer to buffer to fill in with name of listener
1390 * @len: size of the buffer
1391 *
1392 * Fills in socket name and returns positive length of name if successful.
1393 * Name is terminated with '\n'. On error, returns a negative errno
1394 * value.
1395 */
1396int svc_addsock(struct svc_serv *serv, const int fd, char *name_return,
1397 const size_t len)
NeilBrownb41b66d2006-10-02 02:17:48 -07001398{
1399 int err = 0;
1400 struct socket *so = sockfd_lookup(fd, &err);
1401 struct svc_sock *svsk = NULL;
1402
1403 if (!so)
1404 return err;
Aime Le Rouzic205ba422010-01-26 14:03:56 -05001405 if ((so->sk->sk_family != PF_INET) && (so->sk->sk_family != PF_INET6))
NeilBrownb41b66d2006-10-02 02:17:48 -07001406 err = -EAFNOSUPPORT;
1407 else if (so->sk->sk_protocol != IPPROTO_TCP &&
1408 so->sk->sk_protocol != IPPROTO_UDP)
1409 err = -EPROTONOSUPPORT;
1410 else if (so->state > SS_UNCONNECTED)
1411 err = -EISCONN;
1412 else {
Tom Tucker2da2c212008-11-23 09:58:08 -06001413 if (!try_module_get(THIS_MODULE))
1414 err = -ENOENT;
1415 else
1416 svsk = svc_setup_socket(serv, so, &err,
1417 SVC_SOCK_DEFAULTS);
NeilBrowne79eff12007-02-12 00:53:30 -08001418 if (svsk) {
Tom Tucker9dbc2402007-12-30 21:08:12 -06001419 struct sockaddr_storage addr;
1420 struct sockaddr *sin = (struct sockaddr *)&addr;
1421 int salen;
1422 if (kernel_getsockname(svsk->sk_sock, sin, &salen) == 0)
1423 svc_xprt_set_local(&svsk->sk_xprt, sin, salen);
Tom Tucker4e5caaa2007-12-30 21:08:20 -06001424 clear_bit(XPT_TEMP, &svsk->sk_xprt.xpt_flags);
1425 spin_lock_bh(&serv->sv_lock);
1426 list_add(&svsk->sk_xprt.xpt_list, &serv->sv_permsocks);
1427 spin_unlock_bh(&serv->sv_lock);
Tom Tuckera6046f72007-12-30 21:08:01 -06001428 svc_xprt_received(&svsk->sk_xprt);
NeilBrownb41b66d2006-10-02 02:17:48 -07001429 err = 0;
Tom Tucker2da2c212008-11-23 09:58:08 -06001430 } else
1431 module_put(THIS_MODULE);
NeilBrownb41b66d2006-10-02 02:17:48 -07001432 }
1433 if (err) {
1434 sockfd_put(so);
1435 return err;
1436 }
Chuck Levere7942b92009-04-23 19:32:48 -04001437 return svc_one_sock_name(svsk, name_return, len);
NeilBrownb41b66d2006-10-02 02:17:48 -07001438}
1439EXPORT_SYMBOL_GPL(svc_addsock);
1440
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441/*
1442 * Create socket for RPC service.
1443 */
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001444static struct svc_xprt *svc_create_socket(struct svc_serv *serv,
1445 int protocol,
Pavel Emelyanov62832c02010-09-29 16:04:18 +04001446 struct net *net,
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001447 struct sockaddr *sin, int len,
1448 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449{
1450 struct svc_sock *svsk;
1451 struct socket *sock;
1452 int error;
1453 int type;
Tom Tucker9dbc2402007-12-30 21:08:12 -06001454 struct sockaddr_storage addr;
1455 struct sockaddr *newsin = (struct sockaddr *)&addr;
1456 int newlen;
Trond Myklebustc69da772009-03-30 18:59:17 -04001457 int family;
1458 int val;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +03001459 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
Chuck Leverad06e4b2007-02-12 00:53:32 -08001461 dprintk("svc: svc_create_socket(%s, %d, %s)\n",
1462 serv->sv_program->pg_name, protocol,
Chuck Lever77f1f672007-02-12 00:53:39 -08001463 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
1465 if (protocol != IPPROTO_UDP && protocol != IPPROTO_TCP) {
1466 printk(KERN_WARNING "svc: only UDP and TCP "
1467 "sockets supported\n");
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001468 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Trond Myklebustc69da772009-03-30 18:59:17 -04001471 type = (protocol == IPPROTO_UDP)? SOCK_DGRAM : SOCK_STREAM;
1472 switch (sin->sa_family) {
1473 case AF_INET6:
1474 family = PF_INET6;
1475 break;
1476 case AF_INET:
1477 family = PF_INET;
1478 break;
1479 default:
1480 return ERR_PTR(-EINVAL);
1481 }
1482
Pavel Emelyanov14ec63c2010-09-29 16:06:57 +04001483 error = __sock_create(net, family, type, protocol, &sock, 1);
Chuck Lever77f1f672007-02-12 00:53:39 -08001484 if (error < 0)
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001485 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
Peter Zijlstraed075362006-12-06 20:35:24 -08001487 svc_reclassify_socket(sock);
1488
Trond Myklebustc69da772009-03-30 18:59:17 -04001489 /*
1490 * If this is an PF_INET6 listener, we want to avoid
1491 * getting requests from IPv4 remotes. Those should
1492 * be shunted to a PF_INET listener via rpcbind.
1493 */
1494 val = 1;
1495 if (family == PF_INET6)
1496 kernel_setsockopt(sock, SOL_IPV6, IPV6_V6ONLY,
1497 (char *)&val, sizeof(val));
1498
Eric Sesterhenn18114742006-09-28 14:37:07 -07001499 if (type == SOCK_STREAM)
Chuck Lever77f1f672007-02-12 00:53:39 -08001500 sock->sk->sk_reuse = 1; /* allow address reuse */
1501 error = kernel_bind(sock, sin, len);
Eric Sesterhenn18114742006-09-28 14:37:07 -07001502 if (error < 0)
1503 goto bummer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Tom Tucker9dbc2402007-12-30 21:08:12 -06001505 newlen = len;
1506 error = kernel_getsockname(sock, newsin, &newlen);
1507 if (error < 0)
1508 goto bummer;
1509
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 if (protocol == IPPROTO_TCP) {
Sridhar Samudralae6242e92006-08-07 20:58:01 -07001511 if ((error = kernel_listen(sock, 64)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 goto bummer;
1513 }
1514
NeilBrowne79eff12007-02-12 00:53:30 -08001515 if ((svsk = svc_setup_socket(serv, sock, &error, flags)) != NULL) {
Tom Tucker9dbc2402007-12-30 21:08:12 -06001516 svc_xprt_set_local(&svsk->sk_xprt, newsin, newlen);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001517 return (struct svc_xprt *)svsk;
NeilBrowne79eff12007-02-12 00:53:30 -08001518 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
1520bummer:
1521 dprintk("svc: svc_create_socket error = %d\n", -error);
1522 sock_release(sock);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001523 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524}
1525
1526/*
Tom Tucker755ccea2007-12-30 21:07:27 -06001527 * Detach the svc_sock from the socket so that no
1528 * more callbacks occur.
1529 */
1530static void svc_sock_detach(struct svc_xprt *xprt)
1531{
1532 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1533 struct sock *sk = svsk->sk_sk;
1534
1535 dprintk("svc: svc_sock_detach(%p)\n", svsk);
1536
1537 /* put back the old socket callbacks */
1538 sk->sk_state_change = svsk->sk_ostate;
1539 sk->sk_data_ready = svsk->sk_odata;
1540 sk->sk_write_space = svsk->sk_owspace;
Trond Myklebust69b6ba32008-12-23 16:30:11 -05001541
Eric Dumazetaa395142010-04-20 13:03:51 +00001542 if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk)))
1543 wake_up_interruptible(sk_sleep(sk));
Trond Myklebust69b6ba32008-12-23 16:30:11 -05001544}
1545
1546/*
1547 * Disconnect the socket, and reset the callbacks
1548 */
1549static void svc_tcp_sock_detach(struct svc_xprt *xprt)
1550{
1551 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1552
1553 dprintk("svc: svc_tcp_sock_detach(%p)\n", svsk);
1554
1555 svc_sock_detach(xprt);
1556
1557 if (!test_bit(XPT_LISTENER, &xprt->xpt_flags))
1558 kernel_sock_shutdown(svsk->sk_sock, SHUT_RDWR);
Tom Tucker755ccea2007-12-30 21:07:27 -06001559}
1560
1561/*
1562 * Free the svc_sock's socket resources and the svc_sock itself.
1563 */
1564static void svc_sock_free(struct svc_xprt *xprt)
1565{
1566 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1567 dprintk("svc: svc_sock_free(%p)\n", svsk);
1568
Tom Tucker755ccea2007-12-30 21:07:27 -06001569 if (svsk->sk_sock->file)
1570 sockfd_put(svsk->sk_sock);
1571 else
1572 sock_release(svsk->sk_sock);
1573 kfree(svsk);
1574}
Benny Halevy7652e5a2009-04-01 09:23:09 -04001575
Andy Adamson1f11a032011-01-06 02:04:26 +00001576#if defined(CONFIG_NFS_V4_1)
Benny Halevy7652e5a2009-04-01 09:23:09 -04001577/*
Andy Adamson1f11a032011-01-06 02:04:26 +00001578 * Create a back channel svc_xprt which shares the fore channel socket.
Benny Halevy7652e5a2009-04-01 09:23:09 -04001579 */
Andy Adamson1f11a032011-01-06 02:04:26 +00001580static struct svc_xprt *svc_bc_create_socket(struct svc_serv *serv,
1581 int protocol,
1582 struct net *net,
1583 struct sockaddr *sin, int len,
1584 int flags)
Benny Halevy7652e5a2009-04-01 09:23:09 -04001585{
1586 struct svc_sock *svsk;
Andy Adamson1f11a032011-01-06 02:04:26 +00001587 struct svc_xprt *xprt;
Benny Halevy7652e5a2009-04-01 09:23:09 -04001588
Andy Adamson1f11a032011-01-06 02:04:26 +00001589 if (protocol != IPPROTO_TCP) {
1590 printk(KERN_WARNING "svc: only TCP sockets"
1591 " supported on shared back channel\n");
1592 return ERR_PTR(-EINVAL);
1593 }
1594
Benny Halevy7652e5a2009-04-01 09:23:09 -04001595 svsk = kzalloc(sizeof(*svsk), GFP_KERNEL);
1596 if (!svsk)
Andy Adamson1f11a032011-01-06 02:04:26 +00001597 return ERR_PTR(-ENOMEM);
Benny Halevy7652e5a2009-04-01 09:23:09 -04001598
1599 xprt = &svsk->sk_xprt;
Andy Adamson1f11a032011-01-06 02:04:26 +00001600 svc_xprt_init(&svc_tcp_bc_class, xprt, serv);
1601
Andy Adamson4a19de02011-01-06 02:04:35 +00001602 serv->sv_bc_xprt = xprt;
Andy Adamson1f11a032011-01-06 02:04:26 +00001603
Benny Halevy7652e5a2009-04-01 09:23:09 -04001604 return xprt;
1605}
Benny Halevy7652e5a2009-04-01 09:23:09 -04001606
1607/*
Andy Adamson1f11a032011-01-06 02:04:26 +00001608 * Free a back channel svc_sock.
Benny Halevy7652e5a2009-04-01 09:23:09 -04001609 */
Andy Adamson1f11a032011-01-06 02:04:26 +00001610static void svc_bc_sock_free(struct svc_xprt *xprt)
Benny Halevy7652e5a2009-04-01 09:23:09 -04001611{
Andy Adamson778be232011-01-25 15:38:01 +00001612 if (xprt)
Benny Halevy7652e5a2009-04-01 09:23:09 -04001613 kfree(container_of(xprt, struct svc_sock, sk_xprt));
1614}
Andy Adamson1f11a032011-01-06 02:04:26 +00001615#endif /* CONFIG_NFS_V4_1 */