blob: 4e6d406264a0e00d9e25a75c824d711750c405fd [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>
52
Tom Tucker360d87382007-12-30 21:07:17 -060053#define RPCDBG_FACILITY RPCDBG_SVCXPRT
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55
56static struct svc_sock *svc_setup_socket(struct svc_serv *, struct socket *,
Chuck Lever6b174332007-02-12 00:53:28 -080057 int *errp, int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058static void svc_udp_data_ready(struct sock *, int);
59static int svc_udp_recvfrom(struct svc_rqst *);
60static int svc_udp_sendto(struct svc_rqst *);
Tom Tucker755ccea2007-12-30 21:07:27 -060061static void svc_sock_detach(struct svc_xprt *);
Trond Myklebust69b6ba32008-12-23 16:30:11 -050062static void svc_tcp_sock_detach(struct svc_xprt *);
Tom Tucker755ccea2007-12-30 21:07:27 -060063static void svc_sock_free(struct svc_xprt *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Tom Tuckerb700cbb2007-12-30 21:07:42 -060065static struct svc_xprt *svc_create_socket(struct svc_serv *, int,
66 struct sockaddr *, int, int);
Peter Zijlstraed075362006-12-06 20:35:24 -080067#ifdef CONFIG_DEBUG_LOCK_ALLOC
68static struct lock_class_key svc_key[2];
69static struct lock_class_key svc_slock_key[2];
70
Tom Tucker0f0257e2007-12-30 21:08:27 -060071static void svc_reclassify_socket(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -080072{
73 struct sock *sk = sock->sk;
John Heffner02b3d342007-09-12 10:42:12 +020074 BUG_ON(sock_owned_by_user(sk));
Peter Zijlstraed075362006-12-06 20:35:24 -080075 switch (sk->sk_family) {
76 case AF_INET:
77 sock_lock_init_class_and_name(sk, "slock-AF_INET-NFSD",
Tom Tuckerdef13d72007-12-30 21:08:08 -060078 &svc_slock_key[0],
79 "sk_xprt.xpt_lock-AF_INET-NFSD",
80 &svc_key[0]);
Peter Zijlstraed075362006-12-06 20:35:24 -080081 break;
82
83 case AF_INET6:
84 sock_lock_init_class_and_name(sk, "slock-AF_INET6-NFSD",
Tom Tuckerdef13d72007-12-30 21:08:08 -060085 &svc_slock_key[1],
86 "sk_xprt.xpt_lock-AF_INET6-NFSD",
87 &svc_key[1]);
Peter Zijlstraed075362006-12-06 20:35:24 -080088 break;
89
90 default:
91 BUG();
92 }
93}
94#else
Tom Tucker0f0257e2007-12-30 21:08:27 -060095static void svc_reclassify_socket(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -080096{
97}
98#endif
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100/*
101 * Release an skbuff after use
102 */
Tom Tucker5148bf42007-12-30 21:07:25 -0600103static void svc_release_skb(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
Tom Tucker5148bf42007-12-30 21:07:25 -0600105 struct sk_buff *skb = rqstp->rq_xprt_ctxt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107 if (skb) {
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600108 struct svc_sock *svsk =
109 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Tom Tucker5148bf42007-12-30 21:07:25 -0600110 rqstp->rq_xprt_ctxt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112 dprintk("svc: service %p, releasing skb %p\n", rqstp, skb);
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600113 skb_free_datagram(svsk->sk_sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
116
Chuck Leverb92503b2007-02-12 00:53:36 -0800117union svc_pktinfo_u {
118 struct in_pktinfo pkti;
Chuck Leverb92503b2007-02-12 00:53:36 -0800119 struct in6_pktinfo pkti6;
Chuck Leverb92503b2007-02-12 00:53:36 -0800120};
David S. Millerbc375ea2007-04-12 13:35:59 -0700121#define SVC_PKTINFO_SPACE \
122 CMSG_SPACE(sizeof(union svc_pktinfo_u))
Chuck Leverb92503b2007-02-12 00:53:36 -0800123
124static void svc_set_cmsg_data(struct svc_rqst *rqstp, struct cmsghdr *cmh)
125{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600126 struct svc_sock *svsk =
127 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
128 switch (svsk->sk_sk->sk_family) {
Chuck Leverb92503b2007-02-12 00:53:36 -0800129 case AF_INET: {
130 struct in_pktinfo *pki = CMSG_DATA(cmh);
131
132 cmh->cmsg_level = SOL_IP;
133 cmh->cmsg_type = IP_PKTINFO;
134 pki->ipi_ifindex = 0;
135 pki->ipi_spec_dst.s_addr = rqstp->rq_daddr.addr.s_addr;
136 cmh->cmsg_len = CMSG_LEN(sizeof(*pki));
137 }
138 break;
NeilBrown5a05ed72007-03-06 01:42:22 -0800139
Chuck Leverb92503b2007-02-12 00:53:36 -0800140 case AF_INET6: {
141 struct in6_pktinfo *pki = CMSG_DATA(cmh);
142
143 cmh->cmsg_level = SOL_IPV6;
144 cmh->cmsg_type = IPV6_PKTINFO;
145 pki->ipi6_ifindex = 0;
146 ipv6_addr_copy(&pki->ipi6_addr,
147 &rqstp->rq_daddr.addr6);
148 cmh->cmsg_len = CMSG_LEN(sizeof(*pki));
149 }
150 break;
Chuck Leverb92503b2007-02-12 00:53:36 -0800151 }
152 return;
153}
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155/*
156 * Generic sendto routine
157 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600158static int svc_sendto(struct svc_rqst *rqstp, struct xdr_buf *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600160 struct svc_sock *svsk =
161 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 struct socket *sock = svsk->sk_sock;
163 int slen;
David S. Millerbc375ea2007-04-12 13:35:59 -0700164 union {
165 struct cmsghdr hdr;
166 long all[SVC_PKTINFO_SPACE / sizeof(long)];
167 } buffer;
168 struct cmsghdr *cmh = &buffer.hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 int len = 0;
170 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;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +0300176 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 slen = xdr->len;
179
180 if (rqstp->rq_prot == IPPROTO_UDP) {
Chuck Leverb92503b2007-02-12 00:53:36 -0800181 struct msghdr msg = {
182 .msg_name = &rqstp->rq_addr,
183 .msg_namelen = rqstp->rq_addrlen,
184 .msg_control = cmh,
185 .msg_controllen = sizeof(buffer),
186 .msg_flags = MSG_MORE,
187 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Chuck Leverb92503b2007-02-12 00:53:36 -0800189 svc_set_cmsg_data(rqstp, cmh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191 if (sock_sendmsg(sock, &msg, 0) < 0)
192 goto out;
193 }
194
195 /* send head */
196 if (slen == xdr->head[0].iov_len)
197 flags = 0;
NeilBrown44524352006-10-04 02:15:46 -0700198 len = kernel_sendpage(sock, rqstp->rq_respages[0], 0,
199 xdr->head[0].iov_len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 if (len != xdr->head[0].iov_len)
201 goto out;
202 slen -= xdr->head[0].iov_len;
203 if (slen == 0)
204 goto out;
205
206 /* send page data */
207 size = PAGE_SIZE - base < pglen ? PAGE_SIZE - base : pglen;
208 while (pglen > 0) {
209 if (slen == size)
210 flags = 0;
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700211 result = kernel_sendpage(sock, *ppage, base, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 if (result > 0)
213 len += result;
214 if (result != size)
215 goto out;
216 slen -= size;
217 pglen -= size;
218 size = PAGE_SIZE < pglen ? PAGE_SIZE : pglen;
219 base = 0;
220 ppage++;
221 }
222 /* send tail */
223 if (xdr->tail[0].iov_len) {
NeilBrown44524352006-10-04 02:15:46 -0700224 result = kernel_sendpage(sock, rqstp->rq_respages[0],
225 ((unsigned long)xdr->tail[0].iov_base)
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800226 & (PAGE_SIZE-1),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 xdr->tail[0].iov_len, 0);
228
229 if (result > 0)
230 len += result;
231 }
232out:
Chuck Leverad06e4b2007-02-12 00:53:32 -0800233 dprintk("svc: socket %p sendto([%p %Zu... ], %d) = %d (addr %s)\n",
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600234 svsk, xdr->head[0].iov_base, xdr->head[0].iov_len,
Chuck Leverad06e4b2007-02-12 00:53:32 -0800235 xdr->len, len, svc_print_addr(rqstp, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 return len;
238}
239
240/*
NeilBrown80212d52006-10-02 02:17:47 -0700241 * Report socket names for nfsdfs
242 */
Chuck Levere7942b92009-04-23 19:32:48 -0400243static int svc_one_sock_name(struct svc_sock *svsk, char *buf, int remaining)
NeilBrown80212d52006-10-02 02:17:47 -0700244{
Chuck Lever017cb472009-04-23 19:33:03 -0400245 const struct sock *sk = svsk->sk_sk;
246 const char *proto_name = sk->sk_protocol == IPPROTO_UDP ?
247 "udp" : "tcp";
NeilBrown80212d52006-10-02 02:17:47 -0700248 int len;
249
Chuck Lever017cb472009-04-23 19:33:03 -0400250 switch (sk->sk_family) {
Chuck Levere7942b92009-04-23 19:32:48 -0400251 case PF_INET:
252 len = snprintf(buf, remaining, "ipv4 %s %pI4 %d\n",
Chuck Lever017cb472009-04-23 19:33:03 -0400253 proto_name,
254 &inet_sk(sk)->rcv_saddr,
255 inet_sk(sk)->num);
NeilBrown80212d52006-10-02 02:17:47 -0700256 break;
Chuck Lever58de2f82009-04-23 19:32:55 -0400257 case PF_INET6:
258 len = snprintf(buf, remaining, "ipv6 %s %pI6 %d\n",
Chuck Lever017cb472009-04-23 19:33:03 -0400259 proto_name,
260 &inet6_sk(sk)->rcv_saddr,
261 inet_sk(sk)->num);
Chuck Lever58de2f82009-04-23 19:32:55 -0400262 break;
NeilBrown80212d52006-10-02 02:17:47 -0700263 default:
Chuck Levere7942b92009-04-23 19:32:48 -0400264 len = snprintf(buf, remaining, "*unknown-%d*\n",
Chuck Lever017cb472009-04-23 19:33:03 -0400265 sk->sk_family);
NeilBrown80212d52006-10-02 02:17:47 -0700266 }
Chuck Levere7942b92009-04-23 19:32:48 -0400267
268 if (len >= remaining) {
269 *buf = '\0';
270 return -ENAMETOOLONG;
271 }
NeilBrown80212d52006-10-02 02:17:47 -0700272 return len;
273}
274
Chuck Lever8435d342009-04-23 19:32:40 -0400275/**
276 * svc_sock_names - construct a list of listener names in a string
277 * @serv: pointer to RPC service
278 * @buf: pointer to a buffer to fill in with socket names
279 * @buflen: size of the buffer to be filled
280 * @toclose: pointer to '\0'-terminated C string containing the name
281 * of a listener to be closed
282 *
283 * Fills in @buf with a '\n'-separated list of names of listener
284 * sockets. If @toclose is not NULL, the socket named by @toclose
285 * is closed, and is not included in the output list.
286 *
287 * Returns positive length of the socket name string, or a negative
288 * errno value on error.
289 */
290int svc_sock_names(struct svc_serv *serv, char *buf, const size_t buflen,
291 const char *toclose)
NeilBrown80212d52006-10-02 02:17:47 -0700292{
NeilBrownb41b66d2006-10-02 02:17:48 -0700293 struct svc_sock *svsk, *closesk = NULL;
NeilBrown80212d52006-10-02 02:17:47 -0700294 int len = 0;
295
296 if (!serv)
297 return 0;
Chuck Levere7942b92009-04-23 19:32:48 -0400298
NeilBrownaaf68cf2007-02-08 14:20:30 -0800299 spin_lock_bh(&serv->sv_lock);
Tom Tucker7a182082007-12-30 21:07:53 -0600300 list_for_each_entry(svsk, &serv->sv_permsocks, sk_xprt.xpt_list) {
Chuck Levere7942b92009-04-23 19:32:48 -0400301 int onelen = svc_one_sock_name(svsk, buf + len, buflen - len);
302 if (onelen < 0) {
303 len = onelen;
304 break;
305 }
306 if (toclose && strcmp(toclose, buf + len) == 0)
NeilBrownb41b66d2006-10-02 02:17:48 -0700307 closesk = svsk;
308 else
309 len += onelen;
NeilBrown80212d52006-10-02 02:17:47 -0700310 }
NeilBrownaaf68cf2007-02-08 14:20:30 -0800311 spin_unlock_bh(&serv->sv_lock);
Chuck Levere7942b92009-04-23 19:32:48 -0400312
NeilBrownb41b66d2006-10-02 02:17:48 -0700313 if (closesk)
NeilBrown5680c442006-10-04 02:15:45 -0700314 /* Should unregister with portmap, but you cannot
315 * unregister just one protocol...
316 */
Tom Tucker7a182082007-12-30 21:07:53 -0600317 svc_close_xprt(&closesk->sk_xprt);
NeilBrown37a03472006-10-04 02:15:44 -0700318 else if (toclose)
319 return -ENOENT;
NeilBrown80212d52006-10-02 02:17:47 -0700320 return len;
321}
Trond Myklebust24c37672008-12-23 16:30:12 -0500322EXPORT_SYMBOL_GPL(svc_sock_names);
NeilBrown80212d52006-10-02 02:17:47 -0700323
324/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 * Check input queue length
326 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600327static int svc_recv_available(struct svc_sock *svsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 struct socket *sock = svsk->sk_sock;
330 int avail, err;
331
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700332 err = kernel_sock_ioctl(sock, TIOCINQ, (unsigned long) &avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334 return (err >= 0)? avail : err;
335}
336
337/*
338 * Generic recvfrom routine.
339 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600340static int svc_recvfrom(struct svc_rqst *rqstp, struct kvec *iov, int nr,
341 int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600343 struct svc_sock *svsk =
344 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Chuck Lever1ba95102007-02-12 00:53:31 -0800345 struct msghdr msg = {
346 .msg_flags = MSG_DONTWAIT,
347 };
348 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Tom Tucker260c1d12007-12-30 21:08:29 -0600350 rqstp->rq_xprt_hlen = 0;
351
Chuck Lever1ba95102007-02-12 00:53:31 -0800352 len = kernel_recvmsg(svsk->sk_sock, &msg, iov, nr, buflen,
353 msg.msg_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 dprintk("svc: socket %p recvfrom(%p, %Zu) = %d\n",
Chuck Lever1ba95102007-02-12 00:53:31 -0800356 svsk, iov[0].iov_base, iov[0].iov_len, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 return len;
358}
359
360/*
361 * Set socket snd and rcv buffer lengths
362 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600363static void svc_sock_setbufsize(struct socket *sock, unsigned int snd,
364 unsigned int rcv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
366#if 0
367 mm_segment_t oldfs;
368 oldfs = get_fs(); set_fs(KERNEL_DS);
369 sock_setsockopt(sock, SOL_SOCKET, SO_SNDBUF,
370 (char*)&snd, sizeof(snd));
371 sock_setsockopt(sock, SOL_SOCKET, SO_RCVBUF,
372 (char*)&rcv, sizeof(rcv));
373#else
374 /* sock_setsockopt limits use to sysctl_?mem_max,
375 * which isn't acceptable. Until that is made conditional
376 * on not having CAP_SYS_RESOURCE or similar, we go direct...
377 * DaveM said I could!
378 */
379 lock_sock(sock->sk);
380 sock->sk->sk_sndbuf = snd * 2;
381 sock->sk->sk_rcvbuf = rcv * 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 release_sock(sock->sk);
383#endif
384}
385/*
386 * INET callback when data has been received on the socket.
387 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600388static void svc_udp_data_ready(struct sock *sk, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
Neil Brown939bb7e2005-09-13 01:25:39 -0700390 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Neil Brown939bb7e2005-09-13 01:25:39 -0700392 if (svsk) {
393 dprintk("svc: socket %p(inet %p), count=%d, busy=%d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600394 svsk, sk, count,
395 test_bit(XPT_BUSY, &svsk->sk_xprt.xpt_flags));
396 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600397 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
400 wake_up_interruptible(sk->sk_sleep);
401}
402
403/*
404 * INET callback when space is newly available on the socket.
405 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600406static void svc_write_space(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
408 struct svc_sock *svsk = (struct svc_sock *)(sk->sk_user_data);
409
410 if (svsk) {
411 dprintk("svc: socket %p(inet %p), write_space busy=%d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600412 svsk, sk, test_bit(XPT_BUSY, &svsk->sk_xprt.xpt_flags));
Tom Tuckerf6150c32007-12-30 21:07:57 -0600413 svc_xprt_enqueue(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 }
415
416 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep)) {
Neil Brown939bb7e2005-09-13 01:25:39 -0700417 dprintk("RPC svc_write_space: someone sleeping on %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 svsk);
419 wake_up_interruptible(sk->sk_sleep);
420 }
421}
422
Tom Tucker9dbc2402007-12-30 21:08:12 -0600423/*
424 * Copy the UDP datagram's destination address to the rqstp structure.
425 * The 'destination' address in this case is the address to which the
426 * peer sent the datagram, i.e. our local address. For multihomed
427 * hosts, this can change from msg to msg. Note that only the IP
428 * address changes, the port number should remain the same.
429 */
430static void svc_udp_get_dest_address(struct svc_rqst *rqstp,
431 struct cmsghdr *cmh)
Chuck Lever95756482007-02-12 00:53:38 -0800432{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600433 struct svc_sock *svsk =
434 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
435 switch (svsk->sk_sk->sk_family) {
Chuck Lever95756482007-02-12 00:53:38 -0800436 case AF_INET: {
NeilBrown7a37f572007-03-06 01:42:21 -0800437 struct in_pktinfo *pki = CMSG_DATA(cmh);
438 rqstp->rq_daddr.addr.s_addr = pki->ipi_spec_dst.s_addr;
Chuck Lever95756482007-02-12 00:53:38 -0800439 break;
NeilBrown7a37f572007-03-06 01:42:21 -0800440 }
Chuck Lever95756482007-02-12 00:53:38 -0800441 case AF_INET6: {
NeilBrown7a37f572007-03-06 01:42:21 -0800442 struct in6_pktinfo *pki = CMSG_DATA(cmh);
443 ipv6_addr_copy(&rqstp->rq_daddr.addr6, &pki->ipi6_addr);
Chuck Lever95756482007-02-12 00:53:38 -0800444 break;
NeilBrown7a37f572007-03-06 01:42:21 -0800445 }
Chuck Lever95756482007-02-12 00:53:38 -0800446 }
Chuck Lever95756482007-02-12 00:53:38 -0800447}
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449/*
450 * Receive a datagram from a UDP socket.
451 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600452static int svc_udp_recvfrom(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600454 struct svc_sock *svsk =
455 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600456 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 struct sk_buff *skb;
David S. Millerbc375ea2007-04-12 13:35:59 -0700458 union {
459 struct cmsghdr hdr;
460 long all[SVC_PKTINFO_SPACE / sizeof(long)];
461 } buffer;
462 struct cmsghdr *cmh = &buffer.hdr;
NeilBrown7a37f572007-03-06 01:42:21 -0800463 struct msghdr msg = {
464 .msg_name = svc_addr(rqstp),
465 .msg_control = cmh,
466 .msg_controllen = sizeof(buffer),
467 .msg_flags = MSG_DONTWAIT,
468 };
Chuck Leverabc5c442009-04-23 19:31:25 -0400469 size_t len;
470 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Tom Tucker02fc6c32007-12-30 21:07:48 -0600472 if (test_and_clear_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 /* udp sockets need large rcvbuf as all pending
474 * requests are still in that buffer. sndbuf must
475 * also be large enough that there is enough space
Greg Banks3262c812006-10-02 02:17:58 -0700476 * for one reply per thread. We count all threads
477 * rather than threads in a particular pool, which
478 * provides an upper bound on the number of threads
479 * which will access the socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 */
481 svc_sock_setbufsize(svsk->sk_sock,
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700482 (serv->sv_nrthreads+3) * serv->sv_max_mesg,
483 (serv->sv_nrthreads+3) * serv->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Tom Tucker02fc6c32007-12-30 21:07:48 -0600485 clear_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
NeilBrown05ed6902007-05-09 02:34:55 -0700486 skb = NULL;
487 err = kernel_recvmsg(svsk->sk_sock, &msg, NULL,
488 0, 0, MSG_PEEK | MSG_DONTWAIT);
489 if (err >= 0)
490 skb = skb_recv_datagram(svsk->sk_sk, 0, 1, &err);
491
492 if (skb == NULL) {
493 if (err != -EAGAIN) {
494 /* possibly an icmp error */
495 dprintk("svc: recvfrom returned error %d\n", -err);
Tom Tucker02fc6c32007-12-30 21:07:48 -0600496 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
Tom Tuckera6046f72007-12-30 21:08:01 -0600498 svc_xprt_received(&svsk->sk_xprt);
NeilBrown05ed6902007-05-09 02:34:55 -0700499 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 }
Tom Tucker9dbc2402007-12-30 21:08:12 -0600501 len = svc_addr_len(svc_addr(rqstp));
Chuck Leverabc5c442009-04-23 19:31:25 -0400502 if (len == 0)
503 return -EAFNOSUPPORT;
Tom Tucker9dbc2402007-12-30 21:08:12 -0600504 rqstp->rq_addrlen = len;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700505 if (skb->tstamp.tv64 == 0) {
506 skb->tstamp = ktime_get_real();
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800507 /* Don't enable netstamp, sunrpc doesn't
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 need that much accuracy */
509 }
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700510 svsk->sk_sk->sk_stamp = skb->tstamp;
Tom Tucker02fc6c32007-12-30 21:07:48 -0600511 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); /* there may be more data... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513 /*
514 * Maybe more packets - kick another thread ASAP.
515 */
Tom Tuckera6046f72007-12-30 21:08:01 -0600516 svc_xprt_received(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518 len = skb->len - sizeof(struct udphdr);
519 rqstp->rq_arg.len = len;
520
Chuck Lever95756482007-02-12 00:53:38 -0800521 rqstp->rq_prot = IPPROTO_UDP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
NeilBrown7a37f572007-03-06 01:42:21 -0800523 if (cmh->cmsg_level != IPPROTO_IP ||
524 cmh->cmsg_type != IP_PKTINFO) {
525 if (net_ratelimit())
526 printk("rpcsvc: received unknown control message:"
527 "%d/%d\n",
528 cmh->cmsg_level, cmh->cmsg_type);
529 skb_free_datagram(svsk->sk_sk, skb);
530 return 0;
531 }
532 svc_udp_get_dest_address(rqstp, cmh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534 if (skb_is_nonlinear(skb)) {
535 /* we have to copy */
536 local_bh_disable();
537 if (csum_partial_copy_to_xdr(&rqstp->rq_arg, skb)) {
538 local_bh_enable();
539 /* checksum error */
540 skb_free_datagram(svsk->sk_sk, skb);
541 return 0;
542 }
543 local_bh_enable();
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800544 skb_free_datagram(svsk->sk_sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 } else {
546 /* we can use it in-place */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600547 rqstp->rq_arg.head[0].iov_base = skb->data +
548 sizeof(struct udphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 rqstp->rq_arg.head[0].iov_len = len;
Herbert Xufb286bb2005-11-10 13:01:24 -0800550 if (skb_checksum_complete(skb)) {
551 skb_free_datagram(svsk->sk_sk, skb);
552 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 }
Tom Tucker5148bf42007-12-30 21:07:25 -0600554 rqstp->rq_xprt_ctxt = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 }
556
557 rqstp->rq_arg.page_base = 0;
558 if (len <= rqstp->rq_arg.head[0].iov_len) {
559 rqstp->rq_arg.head[0].iov_len = len;
560 rqstp->rq_arg.page_len = 0;
NeilBrown44524352006-10-04 02:15:46 -0700561 rqstp->rq_respages = rqstp->rq_pages+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 } else {
563 rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len;
NeilBrown44524352006-10-04 02:15:46 -0700564 rqstp->rq_respages = rqstp->rq_pages + 1 +
Ilpo Järvinen172589c2007-08-28 15:50:33 -0700565 DIV_ROUND_UP(rqstp->rq_arg.page_len, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 }
567
568 if (serv->sv_stats)
569 serv->sv_stats->netudpcnt++;
570
571 return len;
572}
573
574static int
575svc_udp_sendto(struct svc_rqst *rqstp)
576{
577 int error;
578
579 error = svc_sendto(rqstp, &rqstp->rq_res);
580 if (error == -ECONNREFUSED)
581 /* ICMP error on earlier request. */
582 error = svc_sendto(rqstp, &rqstp->rq_res);
583
584 return error;
585}
586
Tom Tuckere831fe62007-12-30 21:07:29 -0600587static void svc_udp_prep_reply_hdr(struct svc_rqst *rqstp)
588{
589}
590
Tom Tucker323bee32007-12-30 21:07:31 -0600591static int svc_udp_has_wspace(struct svc_xprt *xprt)
592{
593 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600594 struct svc_serv *serv = xprt->xpt_server;
Tom Tucker323bee32007-12-30 21:07:31 -0600595 unsigned long required;
596
597 /*
598 * Set the SOCK_NOSPACE flag before checking the available
599 * sock space.
600 */
601 set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
Tom Tucker7a90e8c2007-12-30 21:07:55 -0600602 required = atomic_read(&svsk->sk_xprt.xpt_reserved) + serv->sv_max_mesg;
Tom Tucker323bee32007-12-30 21:07:31 -0600603 if (required*2 > sock_wspace(svsk->sk_sk))
604 return 0;
605 clear_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
606 return 1;
607}
608
Tom Tucker38a417c2007-12-30 21:07:36 -0600609static struct svc_xprt *svc_udp_accept(struct svc_xprt *xprt)
610{
611 BUG();
612 return NULL;
613}
614
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600615static struct svc_xprt *svc_udp_create(struct svc_serv *serv,
616 struct sockaddr *sa, int salen,
617 int flags)
618{
619 return svc_create_socket(serv, IPPROTO_UDP, sa, salen, flags);
620}
621
Tom Tucker360d87382007-12-30 21:07:17 -0600622static struct svc_xprt_ops svc_udp_ops = {
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600623 .xpo_create = svc_udp_create,
Tom Tucker5d137992007-12-30 21:07:23 -0600624 .xpo_recvfrom = svc_udp_recvfrom,
625 .xpo_sendto = svc_udp_sendto,
Tom Tucker5148bf42007-12-30 21:07:25 -0600626 .xpo_release_rqst = svc_release_skb,
Tom Tucker755ccea2007-12-30 21:07:27 -0600627 .xpo_detach = svc_sock_detach,
628 .xpo_free = svc_sock_free,
Tom Tuckere831fe62007-12-30 21:07:29 -0600629 .xpo_prep_reply_hdr = svc_udp_prep_reply_hdr,
Tom Tucker323bee32007-12-30 21:07:31 -0600630 .xpo_has_wspace = svc_udp_has_wspace,
Tom Tucker38a417c2007-12-30 21:07:36 -0600631 .xpo_accept = svc_udp_accept,
Tom Tucker360d87382007-12-30 21:07:17 -0600632};
633
634static struct svc_xprt_class svc_udp_class = {
635 .xcl_name = "udp",
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600636 .xcl_owner = THIS_MODULE,
Tom Tucker360d87382007-12-30 21:07:17 -0600637 .xcl_ops = &svc_udp_ops,
Tom Tucker49023152007-12-30 21:07:21 -0600638 .xcl_max_payload = RPCSVC_MAXPAYLOAD_UDP,
Tom Tucker360d87382007-12-30 21:07:17 -0600639};
640
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600641static void svc_udp_init(struct svc_sock *svsk, struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
NeilBrown7a37f572007-03-06 01:42:21 -0800643 int one = 1;
644 mm_segment_t oldfs;
645
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600646 svc_xprt_init(&svc_udp_class, &svsk->sk_xprt, serv);
Tom Tuckerdef13d72007-12-30 21:08:08 -0600647 clear_bit(XPT_CACHE_AUTH, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 svsk->sk_sk->sk_data_ready = svc_udp_data_ready;
649 svsk->sk_sk->sk_write_space = svc_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651 /* initialise setting must have enough space to
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800652 * receive and respond to one request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 * svc_udp_recvfrom will re-adjust if necessary
654 */
655 svc_sock_setbufsize(svsk->sk_sock,
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600656 3 * svsk->sk_xprt.xpt_server->sv_max_mesg,
657 3 * svsk->sk_xprt.xpt_server->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Tom Tucker0f0257e2007-12-30 21:08:27 -0600659 /* data might have come in before data_ready set up */
660 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tucker02fc6c32007-12-30 21:07:48 -0600661 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
NeilBrown7a37f572007-03-06 01:42:21 -0800662
663 oldfs = get_fs();
664 set_fs(KERNEL_DS);
665 /* make sure we get destination address info */
666 svsk->sk_sock->ops->setsockopt(svsk->sk_sock, IPPROTO_IP, IP_PKTINFO,
667 (char __user *)&one, sizeof(one));
668 set_fs(oldfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669}
670
671/*
672 * A data_ready event on a listening socket means there's a connection
673 * pending. Do not use state_change as a substitute for it.
674 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600675static void svc_tcp_listen_data_ready(struct sock *sk, int count_unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
Neil Brown939bb7e2005-09-13 01:25:39 -0700677 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
679 dprintk("svc: socket %p TCP (listen) state change %d\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700680 sk, sk->sk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Neil Brown939bb7e2005-09-13 01:25:39 -0700682 /*
683 * This callback may called twice when a new connection
684 * is established as a child socket inherits everything
685 * from a parent LISTEN socket.
686 * 1) data_ready method of the parent socket will be called
687 * when one of child sockets become ESTABLISHED.
688 * 2) data_ready method of the child socket may be called
689 * when it receives data before the socket is accepted.
690 * In case of 2, we should ignore it silently.
691 */
692 if (sk->sk_state == TCP_LISTEN) {
693 if (svsk) {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600694 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600695 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700696 } else
697 printk("svc: socket %p: no user data\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 }
Neil Brown939bb7e2005-09-13 01:25:39 -0700699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
701 wake_up_interruptible_all(sk->sk_sleep);
702}
703
704/*
705 * A state change on a connected socket means it's dying or dead.
706 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600707static void svc_tcp_state_change(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708{
Neil Brown939bb7e2005-09-13 01:25:39 -0700709 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711 dprintk("svc: socket %p TCP (connected) state change %d (svsk %p)\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700712 sk, sk->sk_state, sk->sk_user_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Neil Brown939bb7e2005-09-13 01:25:39 -0700714 if (!svsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 printk("svc: socket %p: no user data\n", sk);
Neil Brown939bb7e2005-09-13 01:25:39 -0700716 else {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600717 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600718 svc_xprt_enqueue(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
721 wake_up_interruptible_all(sk->sk_sleep);
722}
723
Tom Tucker0f0257e2007-12-30 21:08:27 -0600724static void svc_tcp_data_ready(struct sock *sk, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725{
Neil Brown939bb7e2005-09-13 01:25:39 -0700726 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
728 dprintk("svc: socket %p TCP data ready (svsk %p)\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700729 sk, sk->sk_user_data);
730 if (svsk) {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600731 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600732 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700733 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
735 wake_up_interruptible(sk->sk_sleep);
736}
737
738/*
739 * Accept a TCP connection
740 */
Tom Tucker38a417c2007-12-30 21:07:36 -0600741static struct svc_xprt *svc_tcp_accept(struct svc_xprt *xprt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
Tom Tucker38a417c2007-12-30 21:07:36 -0600743 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800744 struct sockaddr_storage addr;
745 struct sockaddr *sin = (struct sockaddr *) &addr;
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600746 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 struct socket *sock = svsk->sk_sock;
748 struct socket *newsock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 struct svc_sock *newsvsk;
750 int err, slen;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +0300751 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
753 dprintk("svc: tcp_accept %p sock %p\n", svsk, sock);
754 if (!sock)
Tom Tucker38a417c2007-12-30 21:07:36 -0600755 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Tom Tucker02fc6c32007-12-30 21:07:48 -0600757 clear_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700758 err = kernel_accept(sock, &newsock, O_NONBLOCK);
759 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 if (err == -ENOMEM)
761 printk(KERN_WARNING "%s: no more sockets!\n",
762 serv->sv_name);
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700763 else if (err != -EAGAIN && net_ratelimit())
764 printk(KERN_WARNING "%s: accept failed (err %d)!\n",
765 serv->sv_name, -err);
Tom Tucker38a417c2007-12-30 21:07:36 -0600766 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 }
Tom Tucker02fc6c32007-12-30 21:07:48 -0600768 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800770 err = kernel_getpeername(newsock, sin, &slen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 if (err < 0) {
772 if (net_ratelimit())
773 printk(KERN_WARNING "%s: peername failed (err %d)!\n",
774 serv->sv_name, -err);
775 goto failed; /* aborted connection or whatever */
776 }
777
778 /* Ideally, we would want to reject connections from unauthorized
Chuck Leverad06e4b2007-02-12 00:53:32 -0800779 * hosts here, but when we get encryption, the IP of the host won't
780 * tell us anything. For now just warn about unpriv connections.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 */
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800782 if (!svc_port_is_privileged(sin)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 dprintk(KERN_WARNING
Chuck Leverad06e4b2007-02-12 00:53:32 -0800784 "%s: connect from unprivileged port: %s\n",
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800785 serv->sv_name,
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800786 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 }
Chuck Leverad06e4b2007-02-12 00:53:32 -0800788 dprintk("%s: connect from %s\n", serv->sv_name,
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800789 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791 /* make sure that a write doesn't block forever when
792 * low on memory
793 */
794 newsock->sk->sk_sndtimeo = HZ*30;
795
Chuck Lever6b174332007-02-12 00:53:28 -0800796 if (!(newsvsk = svc_setup_socket(serv, newsock, &err,
797 (SVC_SOCK_ANONYMOUS | SVC_SOCK_TEMPORARY))))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 goto failed;
Tom Tucker9dbc2402007-12-30 21:08:12 -0600799 svc_xprt_set_remote(&newsvsk->sk_xprt, sin, slen);
Frank van Maarseveena9747692007-07-09 22:21:39 +0200800 err = kernel_getsockname(newsock, sin, &slen);
801 if (unlikely(err < 0)) {
802 dprintk("svc_tcp_accept: kernel_getsockname error %d\n", -err);
803 slen = offsetof(struct sockaddr, sa_data);
804 }
Tom Tucker9dbc2402007-12-30 21:08:12 -0600805 svc_xprt_set_local(&newsvsk->sk_xprt, sin, slen);
Chuck Lever067d7812007-02-12 00:53:30 -0800806
Tom Tuckerf9f3cc42007-12-30 21:07:40 -0600807 if (serv->sv_stats)
808 serv->sv_stats->nettcpconn++;
809
810 return &newsvsk->sk_xprt;
811
812failed:
813 sock_release(newsock);
814 return NULL;
815}
816
817/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 * Receive data from a TCP socket.
819 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600820static int svc_tcp_recvfrom(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600822 struct svc_sock *svsk =
823 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600824 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 int len;
NeilBrown3cc03b12006-10-04 02:15:47 -0700826 struct kvec *vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 int pnum, vlen;
828
829 dprintk("svc: tcp_recv %p data %d conn %d close %d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600830 svsk, test_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags),
831 test_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags),
832 test_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Tom Tucker02fc6c32007-12-30 21:07:48 -0600834 clear_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
836 /* Receive data. If we haven't got the record length yet, get
837 * the next four bytes. Otherwise try to gobble up as much as
838 * possible up to the complete record length.
839 */
Chuck Leverc0401ea2008-04-14 12:27:30 -0400840 if (svsk->sk_tcplen < sizeof(rpc_fraghdr)) {
841 int want = sizeof(rpc_fraghdr) - svsk->sk_tcplen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 struct kvec iov;
843
844 iov.iov_base = ((char *) &svsk->sk_reclen) + svsk->sk_tcplen;
845 iov.iov_len = want;
846 if ((len = svc_recvfrom(rqstp, &iov, 1, want)) < 0)
847 goto error;
848 svsk->sk_tcplen += len;
849
850 if (len < want) {
Chuck Leverc0401ea2008-04-14 12:27:30 -0400851 dprintk("svc: short recvfrom while reading record "
852 "length (%d of %d)\n", len, want);
Tom Tuckera6046f72007-12-30 21:08:01 -0600853 svc_xprt_received(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 return -EAGAIN; /* record header not complete */
855 }
856
857 svsk->sk_reclen = ntohl(svsk->sk_reclen);
Chuck Leverc0401ea2008-04-14 12:27:30 -0400858 if (!(svsk->sk_reclen & RPC_LAST_STREAM_FRAGMENT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 /* FIXME: technically, a record can be fragmented,
860 * and non-terminal fragments will not have the top
861 * bit set in the fragment length header.
862 * But apparently no known nfs clients send fragmented
863 * records. */
NeilBrown34e9a632007-01-29 13:19:52 -0800864 if (net_ratelimit())
Chuck Leverc0401ea2008-04-14 12:27:30 -0400865 printk(KERN_NOTICE "RPC: multiple fragments "
866 "per record not supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 goto err_delete;
868 }
Chuck Leverc0401ea2008-04-14 12:27:30 -0400869 svsk->sk_reclen &= RPC_FRAGMENT_SIZE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 dprintk("svc: TCP record, %d bytes\n", svsk->sk_reclen);
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700871 if (svsk->sk_reclen > serv->sv_max_mesg) {
NeilBrown34e9a632007-01-29 13:19:52 -0800872 if (net_ratelimit())
Chuck Leverc0401ea2008-04-14 12:27:30 -0400873 printk(KERN_NOTICE "RPC: "
874 "fragment too large: 0x%08lx\n",
875 (unsigned long)svsk->sk_reclen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 goto err_delete;
877 }
878 }
879
880 /* Check whether enough data is available */
881 len = svc_recv_available(svsk);
882 if (len < 0)
883 goto error;
884
885 if (len < svsk->sk_reclen) {
886 dprintk("svc: incomplete TCP record (%d of %d)\n",
887 len, svsk->sk_reclen);
Tom Tuckera6046f72007-12-30 21:08:01 -0600888 svc_xprt_received(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 return -EAGAIN; /* record not complete */
890 }
891 len = svsk->sk_reclen;
Tom Tucker02fc6c32007-12-30 21:07:48 -0600892 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
NeilBrown3cc03b12006-10-04 02:15:47 -0700894 vec = rqstp->rq_vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 vec[0] = rqstp->rq_arg.head[0];
896 vlen = PAGE_SIZE;
897 pnum = 1;
898 while (vlen < len) {
NeilBrown44524352006-10-04 02:15:46 -0700899 vec[pnum].iov_base = page_address(rqstp->rq_pages[pnum]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 vec[pnum].iov_len = PAGE_SIZE;
901 pnum++;
902 vlen += PAGE_SIZE;
903 }
NeilBrown44524352006-10-04 02:15:46 -0700904 rqstp->rq_respages = &rqstp->rq_pages[pnum];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
906 /* Now receive data */
907 len = svc_recvfrom(rqstp, vec, pnum, len);
908 if (len < 0)
909 goto error;
910
911 dprintk("svc: TCP complete record (%d bytes)\n", len);
912 rqstp->rq_arg.len = len;
913 rqstp->rq_arg.page_base = 0;
914 if (len <= rqstp->rq_arg.head[0].iov_len) {
915 rqstp->rq_arg.head[0].iov_len = len;
916 rqstp->rq_arg.page_len = 0;
917 } else {
918 rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len;
919 }
920
Tom Tucker5148bf42007-12-30 21:07:25 -0600921 rqstp->rq_xprt_ctxt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 rqstp->rq_prot = IPPROTO_TCP;
923
924 /* Reset TCP read info */
925 svsk->sk_reclen = 0;
926 svsk->sk_tcplen = 0;
927
Tom Tucker9dbc2402007-12-30 21:08:12 -0600928 svc_xprt_copy_addrs(rqstp, &svsk->sk_xprt);
Tom Tuckera6046f72007-12-30 21:08:01 -0600929 svc_xprt_received(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 if (serv->sv_stats)
931 serv->sv_stats->nettcpcnt++;
932
933 return len;
934
935 err_delete:
Tom Tucker02fc6c32007-12-30 21:07:48 -0600936 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 return -EAGAIN;
938
939 error:
940 if (len == -EAGAIN) {
941 dprintk("RPC: TCP recvfrom got EAGAIN\n");
Tom Tuckera6046f72007-12-30 21:08:01 -0600942 svc_xprt_received(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 } else {
944 printk(KERN_NOTICE "%s: recvfrom returned errno %d\n",
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600945 svsk->sk_xprt.xpt_server->sv_name, -len);
Olaf Kirch93fbf1a2006-01-06 00:19:56 -0800946 goto err_delete;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 }
948
949 return len;
950}
951
952/*
953 * Send out data on TCP socket.
954 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600955static int svc_tcp_sendto(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{
957 struct xdr_buf *xbufp = &rqstp->rq_res;
958 int sent;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700959 __be32 reclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
961 /* Set up the first element of the reply kvec.
962 * Any other kvecs that may be in use have been taken
963 * care of by the server implementation itself.
964 */
965 reclen = htonl(0x80000000|((xbufp->len ) - 4));
966 memcpy(xbufp->head[0].iov_base, &reclen, 4);
967
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600968 if (test_bit(XPT_DEAD, &rqstp->rq_xprt->xpt_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 return -ENOTCONN;
970
971 sent = svc_sendto(rqstp, &rqstp->rq_res);
972 if (sent != xbufp->len) {
Tom Tucker0f0257e2007-12-30 21:08:27 -0600973 printk(KERN_NOTICE
974 "rpc-srv/tcp: %s: %s %d when sending %d bytes "
975 "- shutting down socket\n",
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600976 rqstp->rq_xprt->xpt_server->sv_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 (sent<0)?"got error":"sent only",
978 sent, xbufp->len);
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600979 set_bit(XPT_CLOSE, &rqstp->rq_xprt->xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600980 svc_xprt_enqueue(rqstp->rq_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 sent = -EAGAIN;
982 }
983 return sent;
984}
985
Tom Tuckere831fe62007-12-30 21:07:29 -0600986/*
987 * Setup response header. TCP has a 4B record length field.
988 */
989static void svc_tcp_prep_reply_hdr(struct svc_rqst *rqstp)
990{
991 struct kvec *resv = &rqstp->rq_res.head[0];
992
993 /* tcp needs a space for the record length... */
994 svc_putnl(resv, 0);
995}
996
Tom Tucker323bee32007-12-30 21:07:31 -0600997static int svc_tcp_has_wspace(struct svc_xprt *xprt)
998{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600999 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001000 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Tom Tucker323bee32007-12-30 21:07:31 -06001001 int required;
1002 int wspace;
1003
1004 /*
1005 * Set the SOCK_NOSPACE flag before checking the available
1006 * sock space.
1007 */
1008 set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
Tom Tucker7a90e8c2007-12-30 21:07:55 -06001009 required = atomic_read(&svsk->sk_xprt.xpt_reserved) + serv->sv_max_mesg;
Tom Tucker323bee32007-12-30 21:07:31 -06001010 wspace = sk_stream_wspace(svsk->sk_sk);
1011
1012 if (wspace < sk_stream_min_wspace(svsk->sk_sk))
1013 return 0;
1014 if (required * 2 > wspace)
1015 return 0;
1016
1017 clear_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
1018 return 1;
1019}
1020
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001021static struct svc_xprt *svc_tcp_create(struct svc_serv *serv,
1022 struct sockaddr *sa, int salen,
1023 int flags)
1024{
1025 return svc_create_socket(serv, IPPROTO_TCP, sa, salen, flags);
1026}
1027
Tom Tucker360d87382007-12-30 21:07:17 -06001028static struct svc_xprt_ops svc_tcp_ops = {
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001029 .xpo_create = svc_tcp_create,
Tom Tucker5d137992007-12-30 21:07:23 -06001030 .xpo_recvfrom = svc_tcp_recvfrom,
1031 .xpo_sendto = svc_tcp_sendto,
Tom Tucker5148bf42007-12-30 21:07:25 -06001032 .xpo_release_rqst = svc_release_skb,
Trond Myklebust69b6ba32008-12-23 16:30:11 -05001033 .xpo_detach = svc_tcp_sock_detach,
Tom Tucker755ccea2007-12-30 21:07:27 -06001034 .xpo_free = svc_sock_free,
Tom Tuckere831fe62007-12-30 21:07:29 -06001035 .xpo_prep_reply_hdr = svc_tcp_prep_reply_hdr,
Tom Tucker323bee32007-12-30 21:07:31 -06001036 .xpo_has_wspace = svc_tcp_has_wspace,
Tom Tucker38a417c2007-12-30 21:07:36 -06001037 .xpo_accept = svc_tcp_accept,
Tom Tucker360d87382007-12-30 21:07:17 -06001038};
1039
1040static struct svc_xprt_class svc_tcp_class = {
1041 .xcl_name = "tcp",
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001042 .xcl_owner = THIS_MODULE,
Tom Tucker360d87382007-12-30 21:07:17 -06001043 .xcl_ops = &svc_tcp_ops,
Tom Tucker49023152007-12-30 21:07:21 -06001044 .xcl_max_payload = RPCSVC_MAXPAYLOAD_TCP,
Tom Tucker360d87382007-12-30 21:07:17 -06001045};
1046
1047void svc_init_xprt_sock(void)
1048{
1049 svc_reg_xprt_class(&svc_tcp_class);
1050 svc_reg_xprt_class(&svc_udp_class);
1051}
1052
1053void svc_cleanup_xprt_sock(void)
1054{
1055 svc_unreg_xprt_class(&svc_tcp_class);
1056 svc_unreg_xprt_class(&svc_udp_class);
1057}
1058
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001059static void svc_tcp_init(struct svc_sock *svsk, struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060{
1061 struct sock *sk = svsk->sk_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001063 svc_xprt_init(&svc_tcp_class, &svsk->sk_xprt, serv);
Tom Tuckerdef13d72007-12-30 21:08:08 -06001064 set_bit(XPT_CACHE_AUTH, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 if (sk->sk_state == TCP_LISTEN) {
1066 dprintk("setting up TCP socket for listening\n");
Tom Tucker02fc6c32007-12-30 21:07:48 -06001067 set_bit(XPT_LISTENER, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 sk->sk_data_ready = svc_tcp_listen_data_ready;
Tom Tucker02fc6c32007-12-30 21:07:48 -06001069 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 } else {
1071 dprintk("setting up TCP socket for reading\n");
1072 sk->sk_state_change = svc_tcp_state_change;
1073 sk->sk_data_ready = svc_tcp_data_ready;
1074 sk->sk_write_space = svc_write_space;
1075
1076 svsk->sk_reclen = 0;
1077 svsk->sk_tcplen = 0;
1078
Chuck Leverb7872fe2008-04-14 12:27:01 -04001079 tcp_sk(sk)->nonagle |= TCP_NAGLE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Tom Tucker02fc6c32007-12-30 21:07:48 -06001081 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001082 if (sk->sk_state != TCP_ESTABLISHED)
Tom Tucker02fc6c32007-12-30 21:07:48 -06001083 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 }
1085}
1086
Tom Tucker0f0257e2007-12-30 21:08:27 -06001087void svc_sock_update_bufs(struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
1089 /*
1090 * The number of server threads has changed. Update
1091 * rcvbuf and sndbuf accordingly on all sockets
1092 */
1093 struct list_head *le;
1094
1095 spin_lock_bh(&serv->sv_lock);
1096 list_for_each(le, &serv->sv_permsocks) {
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001097 struct svc_sock *svsk =
Tom Tucker7a182082007-12-30 21:07:53 -06001098 list_entry(le, struct svc_sock, sk_xprt.xpt_list);
Tom Tucker02fc6c32007-12-30 21:07:48 -06001099 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 }
1101 list_for_each(le, &serv->sv_tempsocks) {
1102 struct svc_sock *svsk =
Tom Tucker7a182082007-12-30 21:07:53 -06001103 list_entry(le, struct svc_sock, sk_xprt.xpt_list);
Tom Tucker02fc6c32007-12-30 21:07:48 -06001104 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 }
1106 spin_unlock_bh(&serv->sv_lock);
1107}
Trond Myklebust24c37672008-12-23 16:30:12 -05001108EXPORT_SYMBOL_GPL(svc_sock_update_bufs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
1110/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 * Initialize socket for RPC use and create svc_sock struct
1112 * XXX: May want to setsockopt SO_SNDBUF and SO_RCVBUF.
1113 */
Chuck Lever6b174332007-02-12 00:53:28 -08001114static struct svc_sock *svc_setup_socket(struct svc_serv *serv,
1115 struct socket *sock,
1116 int *errp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117{
1118 struct svc_sock *svsk;
1119 struct sock *inet;
Chuck Lever6b174332007-02-12 00:53:28 -08001120 int pmap_register = !(flags & SVC_SOCK_ANONYMOUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
1122 dprintk("svc: svc_setup_socket %p\n", sock);
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001123 if (!(svsk = kzalloc(sizeof(*svsk), GFP_KERNEL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 *errp = -ENOMEM;
1125 return NULL;
1126 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
1128 inet = sock->sk;
1129
1130 /* Register socket with portmapper */
1131 if (*errp >= 0 && pmap_register)
Chuck Leverbaf01ca2009-03-18 20:46:13 -04001132 *errp = svc_register(serv, inet->sk_family, inet->sk_protocol,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 ntohs(inet_sk(inet)->sport));
1134
1135 if (*errp < 0) {
1136 kfree(svsk);
1137 return NULL;
1138 }
1139
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 inet->sk_user_data = svsk;
1141 svsk->sk_sock = sock;
1142 svsk->sk_sk = inet;
1143 svsk->sk_ostate = inet->sk_state_change;
1144 svsk->sk_odata = inet->sk_data_ready;
1145 svsk->sk_owspace = inet->sk_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
1147 /* Initialize the socket */
1148 if (sock->type == SOCK_DGRAM)
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001149 svc_udp_init(svsk, serv);
Olga Kornievskaia47a14ef2008-10-21 14:13:47 -04001150 else {
1151 /* initialise setting must have enough space to
1152 * receive and respond to one request.
1153 */
1154 svc_sock_setbufsize(svsk->sk_sock, 4 * serv->sv_max_mesg,
1155 4 * serv->sv_max_mesg);
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001156 svc_tcp_init(svsk, serv);
Olga Kornievskaia47a14ef2008-10-21 14:13:47 -04001157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 dprintk("svc: svc_setup_socket created %p (inet %p)\n",
1160 svsk, svsk->sk_sk);
1161
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 return svsk;
1163}
1164
Chuck Leverbfba9ab2009-04-23 19:32:33 -04001165/**
1166 * svc_addsock - add a listener socket to an RPC service
1167 * @serv: pointer to RPC service to which to add a new listener
1168 * @fd: file descriptor of the new listener
1169 * @name_return: pointer to buffer to fill in with name of listener
1170 * @len: size of the buffer
1171 *
1172 * Fills in socket name and returns positive length of name if successful.
1173 * Name is terminated with '\n'. On error, returns a negative errno
1174 * value.
1175 */
1176int svc_addsock(struct svc_serv *serv, const int fd, char *name_return,
1177 const size_t len)
NeilBrownb41b66d2006-10-02 02:17:48 -07001178{
1179 int err = 0;
1180 struct socket *so = sockfd_lookup(fd, &err);
1181 struct svc_sock *svsk = NULL;
1182
1183 if (!so)
1184 return err;
1185 if (so->sk->sk_family != AF_INET)
1186 err = -EAFNOSUPPORT;
1187 else if (so->sk->sk_protocol != IPPROTO_TCP &&
1188 so->sk->sk_protocol != IPPROTO_UDP)
1189 err = -EPROTONOSUPPORT;
1190 else if (so->state > SS_UNCONNECTED)
1191 err = -EISCONN;
1192 else {
Tom Tucker2da2c212008-11-23 09:58:08 -06001193 if (!try_module_get(THIS_MODULE))
1194 err = -ENOENT;
1195 else
1196 svsk = svc_setup_socket(serv, so, &err,
1197 SVC_SOCK_DEFAULTS);
NeilBrowne79eff12007-02-12 00:53:30 -08001198 if (svsk) {
Tom Tucker9dbc2402007-12-30 21:08:12 -06001199 struct sockaddr_storage addr;
1200 struct sockaddr *sin = (struct sockaddr *)&addr;
1201 int salen;
1202 if (kernel_getsockname(svsk->sk_sock, sin, &salen) == 0)
1203 svc_xprt_set_local(&svsk->sk_xprt, sin, salen);
Tom Tucker4e5caaa2007-12-30 21:08:20 -06001204 clear_bit(XPT_TEMP, &svsk->sk_xprt.xpt_flags);
1205 spin_lock_bh(&serv->sv_lock);
1206 list_add(&svsk->sk_xprt.xpt_list, &serv->sv_permsocks);
1207 spin_unlock_bh(&serv->sv_lock);
Tom Tuckera6046f72007-12-30 21:08:01 -06001208 svc_xprt_received(&svsk->sk_xprt);
NeilBrownb41b66d2006-10-02 02:17:48 -07001209 err = 0;
Tom Tucker2da2c212008-11-23 09:58:08 -06001210 } else
1211 module_put(THIS_MODULE);
NeilBrownb41b66d2006-10-02 02:17:48 -07001212 }
1213 if (err) {
1214 sockfd_put(so);
1215 return err;
1216 }
Chuck Levere7942b92009-04-23 19:32:48 -04001217 return svc_one_sock_name(svsk, name_return, len);
NeilBrownb41b66d2006-10-02 02:17:48 -07001218}
1219EXPORT_SYMBOL_GPL(svc_addsock);
1220
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221/*
1222 * Create socket for RPC service.
1223 */
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001224static struct svc_xprt *svc_create_socket(struct svc_serv *serv,
1225 int protocol,
1226 struct sockaddr *sin, int len,
1227 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228{
1229 struct svc_sock *svsk;
1230 struct socket *sock;
1231 int error;
1232 int type;
Tom Tucker9dbc2402007-12-30 21:08:12 -06001233 struct sockaddr_storage addr;
1234 struct sockaddr *newsin = (struct sockaddr *)&addr;
1235 int newlen;
Trond Myklebustc69da772009-03-30 18:59:17 -04001236 int family;
1237 int val;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +03001238 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Chuck Leverad06e4b2007-02-12 00:53:32 -08001240 dprintk("svc: svc_create_socket(%s, %d, %s)\n",
1241 serv->sv_program->pg_name, protocol,
Chuck Lever77f1f672007-02-12 00:53:39 -08001242 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
1244 if (protocol != IPPROTO_UDP && protocol != IPPROTO_TCP) {
1245 printk(KERN_WARNING "svc: only UDP and TCP "
1246 "sockets supported\n");
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001247 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Trond Myklebustc69da772009-03-30 18:59:17 -04001250 type = (protocol == IPPROTO_UDP)? SOCK_DGRAM : SOCK_STREAM;
1251 switch (sin->sa_family) {
1252 case AF_INET6:
1253 family = PF_INET6;
1254 break;
1255 case AF_INET:
1256 family = PF_INET;
1257 break;
1258 default:
1259 return ERR_PTR(-EINVAL);
1260 }
1261
1262 error = sock_create_kern(family, type, protocol, &sock);
Chuck Lever77f1f672007-02-12 00:53:39 -08001263 if (error < 0)
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001264 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Peter Zijlstraed075362006-12-06 20:35:24 -08001266 svc_reclassify_socket(sock);
1267
Trond Myklebustc69da772009-03-30 18:59:17 -04001268 /*
1269 * If this is an PF_INET6 listener, we want to avoid
1270 * getting requests from IPv4 remotes. Those should
1271 * be shunted to a PF_INET listener via rpcbind.
1272 */
1273 val = 1;
1274 if (family == PF_INET6)
1275 kernel_setsockopt(sock, SOL_IPV6, IPV6_V6ONLY,
1276 (char *)&val, sizeof(val));
1277
Eric Sesterhenn18114742006-09-28 14:37:07 -07001278 if (type == SOCK_STREAM)
Chuck Lever77f1f672007-02-12 00:53:39 -08001279 sock->sk->sk_reuse = 1; /* allow address reuse */
1280 error = kernel_bind(sock, sin, len);
Eric Sesterhenn18114742006-09-28 14:37:07 -07001281 if (error < 0)
1282 goto bummer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Tom Tucker9dbc2402007-12-30 21:08:12 -06001284 newlen = len;
1285 error = kernel_getsockname(sock, newsin, &newlen);
1286 if (error < 0)
1287 goto bummer;
1288
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 if (protocol == IPPROTO_TCP) {
Sridhar Samudralae6242e92006-08-07 20:58:01 -07001290 if ((error = kernel_listen(sock, 64)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 goto bummer;
1292 }
1293
NeilBrowne79eff12007-02-12 00:53:30 -08001294 if ((svsk = svc_setup_socket(serv, sock, &error, flags)) != NULL) {
Tom Tucker9dbc2402007-12-30 21:08:12 -06001295 svc_xprt_set_local(&svsk->sk_xprt, newsin, newlen);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001296 return (struct svc_xprt *)svsk;
NeilBrowne79eff12007-02-12 00:53:30 -08001297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
1299bummer:
1300 dprintk("svc: svc_create_socket error = %d\n", -error);
1301 sock_release(sock);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001302 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303}
1304
1305/*
Tom Tucker755ccea2007-12-30 21:07:27 -06001306 * Detach the svc_sock from the socket so that no
1307 * more callbacks occur.
1308 */
1309static void svc_sock_detach(struct svc_xprt *xprt)
1310{
1311 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1312 struct sock *sk = svsk->sk_sk;
1313
1314 dprintk("svc: svc_sock_detach(%p)\n", svsk);
1315
1316 /* put back the old socket callbacks */
1317 sk->sk_state_change = svsk->sk_ostate;
1318 sk->sk_data_ready = svsk->sk_odata;
1319 sk->sk_write_space = svsk->sk_owspace;
Trond Myklebust69b6ba32008-12-23 16:30:11 -05001320
1321 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
1322 wake_up_interruptible(sk->sk_sleep);
1323}
1324
1325/*
1326 * Disconnect the socket, and reset the callbacks
1327 */
1328static void svc_tcp_sock_detach(struct svc_xprt *xprt)
1329{
1330 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1331
1332 dprintk("svc: svc_tcp_sock_detach(%p)\n", svsk);
1333
1334 svc_sock_detach(xprt);
1335
1336 if (!test_bit(XPT_LISTENER, &xprt->xpt_flags))
1337 kernel_sock_shutdown(svsk->sk_sock, SHUT_RDWR);
Tom Tucker755ccea2007-12-30 21:07:27 -06001338}
1339
1340/*
1341 * Free the svc_sock's socket resources and the svc_sock itself.
1342 */
1343static void svc_sock_free(struct svc_xprt *xprt)
1344{
1345 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1346 dprintk("svc: svc_sock_free(%p)\n", svsk);
1347
Tom Tucker755ccea2007-12-30 21:07:27 -06001348 if (svsk->sk_sock->file)
1349 sockfd_put(svsk->sk_sock);
1350 else
1351 sock_release(svsk->sk_sock);
1352 kfree(svsk);
1353}