blob: 61d4a3281f94f1c104a9c53f2e3d4cd6575e6f4b [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 Tucker360d8732007-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{
245 int len;
246
247 switch(svsk->sk_sk->sk_family) {
Chuck Levere7942b92009-04-23 19:32:48 -0400248 case PF_INET:
249 len = snprintf(buf, remaining, "ipv4 %s %pI4 %d\n",
Harvey Harrison21454aa2008-10-31 00:54:56 -0700250 svsk->sk_sk->sk_protocol == IPPROTO_UDP ?
NeilBrown80212d52006-10-02 02:17:47 -0700251 "udp" : "tcp",
Harvey Harrison21454aa2008-10-31 00:54:56 -0700252 &inet_sk(svsk->sk_sk)->rcv_saddr,
NeilBrown80212d52006-10-02 02:17:47 -0700253 inet_sk(svsk->sk_sk)->num);
254 break;
255 default:
Chuck Levere7942b92009-04-23 19:32:48 -0400256 len = snprintf(buf, remaining, "*unknown-%d*\n",
NeilBrown80212d52006-10-02 02:17:47 -0700257 svsk->sk_sk->sk_family);
258 }
Chuck Levere7942b92009-04-23 19:32:48 -0400259
260 if (len >= remaining) {
261 *buf = '\0';
262 return -ENAMETOOLONG;
263 }
NeilBrown80212d52006-10-02 02:17:47 -0700264 return len;
265}
266
Chuck Lever8435d342009-04-23 19:32:40 -0400267/**
268 * svc_sock_names - construct a list of listener names in a string
269 * @serv: pointer to RPC service
270 * @buf: pointer to a buffer to fill in with socket names
271 * @buflen: size of the buffer to be filled
272 * @toclose: pointer to '\0'-terminated C string containing the name
273 * of a listener to be closed
274 *
275 * Fills in @buf with a '\n'-separated list of names of listener
276 * sockets. If @toclose is not NULL, the socket named by @toclose
277 * is closed, and is not included in the output list.
278 *
279 * Returns positive length of the socket name string, or a negative
280 * errno value on error.
281 */
282int svc_sock_names(struct svc_serv *serv, char *buf, const size_t buflen,
283 const char *toclose)
NeilBrown80212d52006-10-02 02:17:47 -0700284{
NeilBrownb41b66d2006-10-02 02:17:48 -0700285 struct svc_sock *svsk, *closesk = NULL;
NeilBrown80212d52006-10-02 02:17:47 -0700286 int len = 0;
287
288 if (!serv)
289 return 0;
Chuck Levere7942b92009-04-23 19:32:48 -0400290
NeilBrownaaf68cf2007-02-08 14:20:30 -0800291 spin_lock_bh(&serv->sv_lock);
Tom Tucker7a182082007-12-30 21:07:53 -0600292 list_for_each_entry(svsk, &serv->sv_permsocks, sk_xprt.xpt_list) {
Chuck Levere7942b92009-04-23 19:32:48 -0400293 int onelen = svc_one_sock_name(svsk, buf + len, buflen - len);
294 if (onelen < 0) {
295 len = onelen;
296 break;
297 }
298 if (toclose && strcmp(toclose, buf + len) == 0)
NeilBrownb41b66d2006-10-02 02:17:48 -0700299 closesk = svsk;
300 else
301 len += onelen;
NeilBrown80212d52006-10-02 02:17:47 -0700302 }
NeilBrownaaf68cf2007-02-08 14:20:30 -0800303 spin_unlock_bh(&serv->sv_lock);
Chuck Levere7942b92009-04-23 19:32:48 -0400304
NeilBrownb41b66d2006-10-02 02:17:48 -0700305 if (closesk)
NeilBrown5680c442006-10-04 02:15:45 -0700306 /* Should unregister with portmap, but you cannot
307 * unregister just one protocol...
308 */
Tom Tucker7a182082007-12-30 21:07:53 -0600309 svc_close_xprt(&closesk->sk_xprt);
NeilBrown37a03472006-10-04 02:15:44 -0700310 else if (toclose)
311 return -ENOENT;
NeilBrown80212d52006-10-02 02:17:47 -0700312 return len;
313}
Trond Myklebust24c37672008-12-23 16:30:12 -0500314EXPORT_SYMBOL_GPL(svc_sock_names);
NeilBrown80212d52006-10-02 02:17:47 -0700315
316/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 * Check input queue length
318 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600319static int svc_recv_available(struct svc_sock *svsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 struct socket *sock = svsk->sk_sock;
322 int avail, err;
323
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700324 err = kernel_sock_ioctl(sock, TIOCINQ, (unsigned long) &avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 return (err >= 0)? avail : err;
327}
328
329/*
330 * Generic recvfrom routine.
331 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600332static int svc_recvfrom(struct svc_rqst *rqstp, struct kvec *iov, int nr,
333 int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600335 struct svc_sock *svsk =
336 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Chuck Lever1ba95102007-02-12 00:53:31 -0800337 struct msghdr msg = {
338 .msg_flags = MSG_DONTWAIT,
339 };
340 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Tom Tucker260c1d12007-12-30 21:08:29 -0600342 rqstp->rq_xprt_hlen = 0;
343
Chuck Lever1ba95102007-02-12 00:53:31 -0800344 len = kernel_recvmsg(svsk->sk_sock, &msg, iov, nr, buflen,
345 msg.msg_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 dprintk("svc: socket %p recvfrom(%p, %Zu) = %d\n",
Chuck Lever1ba95102007-02-12 00:53:31 -0800348 svsk, iov[0].iov_base, iov[0].iov_len, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 return len;
350}
351
352/*
353 * Set socket snd and rcv buffer lengths
354 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600355static void svc_sock_setbufsize(struct socket *sock, unsigned int snd,
356 unsigned int rcv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
358#if 0
359 mm_segment_t oldfs;
360 oldfs = get_fs(); set_fs(KERNEL_DS);
361 sock_setsockopt(sock, SOL_SOCKET, SO_SNDBUF,
362 (char*)&snd, sizeof(snd));
363 sock_setsockopt(sock, SOL_SOCKET, SO_RCVBUF,
364 (char*)&rcv, sizeof(rcv));
365#else
366 /* sock_setsockopt limits use to sysctl_?mem_max,
367 * which isn't acceptable. Until that is made conditional
368 * on not having CAP_SYS_RESOURCE or similar, we go direct...
369 * DaveM said I could!
370 */
371 lock_sock(sock->sk);
372 sock->sk->sk_sndbuf = snd * 2;
373 sock->sk->sk_rcvbuf = rcv * 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 release_sock(sock->sk);
375#endif
376}
377/*
378 * INET callback when data has been received on the socket.
379 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600380static void svc_udp_data_ready(struct sock *sk, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
Neil Brown939bb7e2005-09-13 01:25:39 -0700382 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Neil Brown939bb7e2005-09-13 01:25:39 -0700384 if (svsk) {
385 dprintk("svc: socket %p(inet %p), count=%d, busy=%d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600386 svsk, sk, count,
387 test_bit(XPT_BUSY, &svsk->sk_xprt.xpt_flags));
388 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600389 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700390 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
392 wake_up_interruptible(sk->sk_sleep);
393}
394
395/*
396 * INET callback when space is newly available on the socket.
397 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600398static void svc_write_space(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
400 struct svc_sock *svsk = (struct svc_sock *)(sk->sk_user_data);
401
402 if (svsk) {
403 dprintk("svc: socket %p(inet %p), write_space busy=%d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600404 svsk, sk, test_bit(XPT_BUSY, &svsk->sk_xprt.xpt_flags));
Tom Tuckerf6150c32007-12-30 21:07:57 -0600405 svc_xprt_enqueue(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 }
407
408 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep)) {
Neil Brown939bb7e2005-09-13 01:25:39 -0700409 dprintk("RPC svc_write_space: someone sleeping on %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 svsk);
411 wake_up_interruptible(sk->sk_sleep);
412 }
413}
414
Tom Tucker9dbc2402007-12-30 21:08:12 -0600415/*
416 * Copy the UDP datagram's destination address to the rqstp structure.
417 * The 'destination' address in this case is the address to which the
418 * peer sent the datagram, i.e. our local address. For multihomed
419 * hosts, this can change from msg to msg. Note that only the IP
420 * address changes, the port number should remain the same.
421 */
422static void svc_udp_get_dest_address(struct svc_rqst *rqstp,
423 struct cmsghdr *cmh)
Chuck Lever95756482007-02-12 00:53:38 -0800424{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600425 struct svc_sock *svsk =
426 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
427 switch (svsk->sk_sk->sk_family) {
Chuck Lever95756482007-02-12 00:53:38 -0800428 case AF_INET: {
NeilBrown7a37f572007-03-06 01:42:21 -0800429 struct in_pktinfo *pki = CMSG_DATA(cmh);
430 rqstp->rq_daddr.addr.s_addr = pki->ipi_spec_dst.s_addr;
Chuck Lever95756482007-02-12 00:53:38 -0800431 break;
NeilBrown7a37f572007-03-06 01:42:21 -0800432 }
Chuck Lever95756482007-02-12 00:53:38 -0800433 case AF_INET6: {
NeilBrown7a37f572007-03-06 01:42:21 -0800434 struct in6_pktinfo *pki = CMSG_DATA(cmh);
435 ipv6_addr_copy(&rqstp->rq_daddr.addr6, &pki->ipi6_addr);
Chuck Lever95756482007-02-12 00:53:38 -0800436 break;
NeilBrown7a37f572007-03-06 01:42:21 -0800437 }
Chuck Lever95756482007-02-12 00:53:38 -0800438 }
Chuck Lever95756482007-02-12 00:53:38 -0800439}
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441/*
442 * Receive a datagram from a UDP socket.
443 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600444static int svc_udp_recvfrom(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600446 struct svc_sock *svsk =
447 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600448 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 struct sk_buff *skb;
David S. Millerbc375ea2007-04-12 13:35:59 -0700450 union {
451 struct cmsghdr hdr;
452 long all[SVC_PKTINFO_SPACE / sizeof(long)];
453 } buffer;
454 struct cmsghdr *cmh = &buffer.hdr;
NeilBrown7a37f572007-03-06 01:42:21 -0800455 struct msghdr msg = {
456 .msg_name = svc_addr(rqstp),
457 .msg_control = cmh,
458 .msg_controllen = sizeof(buffer),
459 .msg_flags = MSG_DONTWAIT,
460 };
Chuck Leverabc5c442009-04-23 19:31:25 -0400461 size_t len;
462 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Tom Tucker02fc6c32007-12-30 21:07:48 -0600464 if (test_and_clear_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 /* udp sockets need large rcvbuf as all pending
466 * requests are still in that buffer. sndbuf must
467 * also be large enough that there is enough space
Greg Banks3262c812006-10-02 02:17:58 -0700468 * for one reply per thread. We count all threads
469 * rather than threads in a particular pool, which
470 * provides an upper bound on the number of threads
471 * which will access the socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 */
473 svc_sock_setbufsize(svsk->sk_sock,
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700474 (serv->sv_nrthreads+3) * serv->sv_max_mesg,
475 (serv->sv_nrthreads+3) * serv->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Tom Tucker02fc6c32007-12-30 21:07:48 -0600477 clear_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
NeilBrown05ed6902007-05-09 02:34:55 -0700478 skb = NULL;
479 err = kernel_recvmsg(svsk->sk_sock, &msg, NULL,
480 0, 0, MSG_PEEK | MSG_DONTWAIT);
481 if (err >= 0)
482 skb = skb_recv_datagram(svsk->sk_sk, 0, 1, &err);
483
484 if (skb == NULL) {
485 if (err != -EAGAIN) {
486 /* possibly an icmp error */
487 dprintk("svc: recvfrom returned error %d\n", -err);
Tom Tucker02fc6c32007-12-30 21:07:48 -0600488 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 }
Tom Tuckera6046f72007-12-30 21:08:01 -0600490 svc_xprt_received(&svsk->sk_xprt);
NeilBrown05ed6902007-05-09 02:34:55 -0700491 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 }
Tom Tucker9dbc2402007-12-30 21:08:12 -0600493 len = svc_addr_len(svc_addr(rqstp));
Chuck Leverabc5c442009-04-23 19:31:25 -0400494 if (len == 0)
495 return -EAFNOSUPPORT;
Tom Tucker9dbc2402007-12-30 21:08:12 -0600496 rqstp->rq_addrlen = len;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700497 if (skb->tstamp.tv64 == 0) {
498 skb->tstamp = ktime_get_real();
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800499 /* Don't enable netstamp, sunrpc doesn't
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 need that much accuracy */
501 }
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700502 svsk->sk_sk->sk_stamp = skb->tstamp;
Tom Tucker02fc6c32007-12-30 21:07:48 -0600503 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); /* there may be more data... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 /*
506 * Maybe more packets - kick another thread ASAP.
507 */
Tom Tuckera6046f72007-12-30 21:08:01 -0600508 svc_xprt_received(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510 len = skb->len - sizeof(struct udphdr);
511 rqstp->rq_arg.len = len;
512
Chuck Lever95756482007-02-12 00:53:38 -0800513 rqstp->rq_prot = IPPROTO_UDP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
NeilBrown7a37f572007-03-06 01:42:21 -0800515 if (cmh->cmsg_level != IPPROTO_IP ||
516 cmh->cmsg_type != IP_PKTINFO) {
517 if (net_ratelimit())
518 printk("rpcsvc: received unknown control message:"
519 "%d/%d\n",
520 cmh->cmsg_level, cmh->cmsg_type);
521 skb_free_datagram(svsk->sk_sk, skb);
522 return 0;
523 }
524 svc_udp_get_dest_address(rqstp, cmh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
526 if (skb_is_nonlinear(skb)) {
527 /* we have to copy */
528 local_bh_disable();
529 if (csum_partial_copy_to_xdr(&rqstp->rq_arg, skb)) {
530 local_bh_enable();
531 /* checksum error */
532 skb_free_datagram(svsk->sk_sk, skb);
533 return 0;
534 }
535 local_bh_enable();
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800536 skb_free_datagram(svsk->sk_sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 } else {
538 /* we can use it in-place */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600539 rqstp->rq_arg.head[0].iov_base = skb->data +
540 sizeof(struct udphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 rqstp->rq_arg.head[0].iov_len = len;
Herbert Xufb286bb2005-11-10 13:01:24 -0800542 if (skb_checksum_complete(skb)) {
543 skb_free_datagram(svsk->sk_sk, skb);
544 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 }
Tom Tucker5148bf42007-12-30 21:07:25 -0600546 rqstp->rq_xprt_ctxt = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 }
548
549 rqstp->rq_arg.page_base = 0;
550 if (len <= rqstp->rq_arg.head[0].iov_len) {
551 rqstp->rq_arg.head[0].iov_len = len;
552 rqstp->rq_arg.page_len = 0;
NeilBrown44524352006-10-04 02:15:46 -0700553 rqstp->rq_respages = rqstp->rq_pages+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 } else {
555 rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len;
NeilBrown44524352006-10-04 02:15:46 -0700556 rqstp->rq_respages = rqstp->rq_pages + 1 +
Ilpo Järvinen172589c2007-08-28 15:50:33 -0700557 DIV_ROUND_UP(rqstp->rq_arg.page_len, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
559
560 if (serv->sv_stats)
561 serv->sv_stats->netudpcnt++;
562
563 return len;
564}
565
566static int
567svc_udp_sendto(struct svc_rqst *rqstp)
568{
569 int error;
570
571 error = svc_sendto(rqstp, &rqstp->rq_res);
572 if (error == -ECONNREFUSED)
573 /* ICMP error on earlier request. */
574 error = svc_sendto(rqstp, &rqstp->rq_res);
575
576 return error;
577}
578
Tom Tuckere831fe62007-12-30 21:07:29 -0600579static void svc_udp_prep_reply_hdr(struct svc_rqst *rqstp)
580{
581}
582
Tom Tucker323bee32007-12-30 21:07:31 -0600583static int svc_udp_has_wspace(struct svc_xprt *xprt)
584{
585 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600586 struct svc_serv *serv = xprt->xpt_server;
Tom Tucker323bee32007-12-30 21:07:31 -0600587 unsigned long required;
588
589 /*
590 * Set the SOCK_NOSPACE flag before checking the available
591 * sock space.
592 */
593 set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
Tom Tucker7a90e8c2007-12-30 21:07:55 -0600594 required = atomic_read(&svsk->sk_xprt.xpt_reserved) + serv->sv_max_mesg;
Tom Tucker323bee32007-12-30 21:07:31 -0600595 if (required*2 > sock_wspace(svsk->sk_sk))
596 return 0;
597 clear_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
598 return 1;
599}
600
Tom Tucker38a417c2007-12-30 21:07:36 -0600601static struct svc_xprt *svc_udp_accept(struct svc_xprt *xprt)
602{
603 BUG();
604 return NULL;
605}
606
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600607static struct svc_xprt *svc_udp_create(struct svc_serv *serv,
608 struct sockaddr *sa, int salen,
609 int flags)
610{
611 return svc_create_socket(serv, IPPROTO_UDP, sa, salen, flags);
612}
613
Tom Tucker360d8732007-12-30 21:07:17 -0600614static struct svc_xprt_ops svc_udp_ops = {
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600615 .xpo_create = svc_udp_create,
Tom Tucker5d137992007-12-30 21:07:23 -0600616 .xpo_recvfrom = svc_udp_recvfrom,
617 .xpo_sendto = svc_udp_sendto,
Tom Tucker5148bf42007-12-30 21:07:25 -0600618 .xpo_release_rqst = svc_release_skb,
Tom Tucker755ccea2007-12-30 21:07:27 -0600619 .xpo_detach = svc_sock_detach,
620 .xpo_free = svc_sock_free,
Tom Tuckere831fe62007-12-30 21:07:29 -0600621 .xpo_prep_reply_hdr = svc_udp_prep_reply_hdr,
Tom Tucker323bee32007-12-30 21:07:31 -0600622 .xpo_has_wspace = svc_udp_has_wspace,
Tom Tucker38a417c2007-12-30 21:07:36 -0600623 .xpo_accept = svc_udp_accept,
Tom Tucker360d8732007-12-30 21:07:17 -0600624};
625
626static struct svc_xprt_class svc_udp_class = {
627 .xcl_name = "udp",
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600628 .xcl_owner = THIS_MODULE,
Tom Tucker360d8732007-12-30 21:07:17 -0600629 .xcl_ops = &svc_udp_ops,
Tom Tucker49023152007-12-30 21:07:21 -0600630 .xcl_max_payload = RPCSVC_MAXPAYLOAD_UDP,
Tom Tucker360d8732007-12-30 21:07:17 -0600631};
632
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600633static void svc_udp_init(struct svc_sock *svsk, struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634{
NeilBrown7a37f572007-03-06 01:42:21 -0800635 int one = 1;
636 mm_segment_t oldfs;
637
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600638 svc_xprt_init(&svc_udp_class, &svsk->sk_xprt, serv);
Tom Tuckerdef13d72007-12-30 21:08:08 -0600639 clear_bit(XPT_CACHE_AUTH, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 svsk->sk_sk->sk_data_ready = svc_udp_data_ready;
641 svsk->sk_sk->sk_write_space = svc_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
643 /* initialise setting must have enough space to
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800644 * receive and respond to one request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 * svc_udp_recvfrom will re-adjust if necessary
646 */
647 svc_sock_setbufsize(svsk->sk_sock,
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600648 3 * svsk->sk_xprt.xpt_server->sv_max_mesg,
649 3 * svsk->sk_xprt.xpt_server->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Tom Tucker0f0257e2007-12-30 21:08:27 -0600651 /* data might have come in before data_ready set up */
652 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tucker02fc6c32007-12-30 21:07:48 -0600653 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
NeilBrown7a37f572007-03-06 01:42:21 -0800654
655 oldfs = get_fs();
656 set_fs(KERNEL_DS);
657 /* make sure we get destination address info */
658 svsk->sk_sock->ops->setsockopt(svsk->sk_sock, IPPROTO_IP, IP_PKTINFO,
659 (char __user *)&one, sizeof(one));
660 set_fs(oldfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661}
662
663/*
664 * A data_ready event on a listening socket means there's a connection
665 * pending. Do not use state_change as a substitute for it.
666 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600667static void svc_tcp_listen_data_ready(struct sock *sk, int count_unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
Neil Brown939bb7e2005-09-13 01:25:39 -0700669 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
671 dprintk("svc: socket %p TCP (listen) state change %d\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700672 sk, sk->sk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Neil Brown939bb7e2005-09-13 01:25:39 -0700674 /*
675 * This callback may called twice when a new connection
676 * is established as a child socket inherits everything
677 * from a parent LISTEN socket.
678 * 1) data_ready method of the parent socket will be called
679 * when one of child sockets become ESTABLISHED.
680 * 2) data_ready method of the child socket may be called
681 * when it receives data before the socket is accepted.
682 * In case of 2, we should ignore it silently.
683 */
684 if (sk->sk_state == TCP_LISTEN) {
685 if (svsk) {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600686 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600687 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700688 } else
689 printk("svc: socket %p: no user data\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 }
Neil Brown939bb7e2005-09-13 01:25:39 -0700691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
693 wake_up_interruptible_all(sk->sk_sleep);
694}
695
696/*
697 * A state change on a connected socket means it's dying or dead.
698 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600699static void svc_tcp_state_change(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
Neil Brown939bb7e2005-09-13 01:25:39 -0700701 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 dprintk("svc: socket %p TCP (connected) state change %d (svsk %p)\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700704 sk, sk->sk_state, sk->sk_user_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Neil Brown939bb7e2005-09-13 01:25:39 -0700706 if (!svsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 printk("svc: socket %p: no user data\n", sk);
Neil Brown939bb7e2005-09-13 01:25:39 -0700708 else {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600709 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600710 svc_xprt_enqueue(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
713 wake_up_interruptible_all(sk->sk_sleep);
714}
715
Tom Tucker0f0257e2007-12-30 21:08:27 -0600716static void svc_tcp_data_ready(struct sock *sk, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
Neil Brown939bb7e2005-09-13 01:25:39 -0700718 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
720 dprintk("svc: socket %p TCP data ready (svsk %p)\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700721 sk, sk->sk_user_data);
722 if (svsk) {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600723 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600724 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700725 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
727 wake_up_interruptible(sk->sk_sleep);
728}
729
730/*
731 * Accept a TCP connection
732 */
Tom Tucker38a417c2007-12-30 21:07:36 -0600733static struct svc_xprt *svc_tcp_accept(struct svc_xprt *xprt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
Tom Tucker38a417c2007-12-30 21:07:36 -0600735 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800736 struct sockaddr_storage addr;
737 struct sockaddr *sin = (struct sockaddr *) &addr;
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600738 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 struct socket *sock = svsk->sk_sock;
740 struct socket *newsock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 struct svc_sock *newsvsk;
742 int err, slen;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +0300743 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
745 dprintk("svc: tcp_accept %p sock %p\n", svsk, sock);
746 if (!sock)
Tom Tucker38a417c2007-12-30 21:07:36 -0600747 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Tom Tucker02fc6c32007-12-30 21:07:48 -0600749 clear_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700750 err = kernel_accept(sock, &newsock, O_NONBLOCK);
751 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 if (err == -ENOMEM)
753 printk(KERN_WARNING "%s: no more sockets!\n",
754 serv->sv_name);
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700755 else if (err != -EAGAIN && net_ratelimit())
756 printk(KERN_WARNING "%s: accept failed (err %d)!\n",
757 serv->sv_name, -err);
Tom Tucker38a417c2007-12-30 21:07:36 -0600758 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 }
Tom Tucker02fc6c32007-12-30 21:07:48 -0600760 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800762 err = kernel_getpeername(newsock, sin, &slen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 if (err < 0) {
764 if (net_ratelimit())
765 printk(KERN_WARNING "%s: peername failed (err %d)!\n",
766 serv->sv_name, -err);
767 goto failed; /* aborted connection or whatever */
768 }
769
770 /* Ideally, we would want to reject connections from unauthorized
Chuck Leverad06e4b2007-02-12 00:53:32 -0800771 * hosts here, but when we get encryption, the IP of the host won't
772 * tell us anything. For now just warn about unpriv connections.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 */
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800774 if (!svc_port_is_privileged(sin)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 dprintk(KERN_WARNING
Chuck Leverad06e4b2007-02-12 00:53:32 -0800776 "%s: connect from unprivileged port: %s\n",
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800777 serv->sv_name,
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800778 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 }
Chuck Leverad06e4b2007-02-12 00:53:32 -0800780 dprintk("%s: connect from %s\n", serv->sv_name,
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800781 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
783 /* make sure that a write doesn't block forever when
784 * low on memory
785 */
786 newsock->sk->sk_sndtimeo = HZ*30;
787
Chuck Lever6b174332007-02-12 00:53:28 -0800788 if (!(newsvsk = svc_setup_socket(serv, newsock, &err,
789 (SVC_SOCK_ANONYMOUS | SVC_SOCK_TEMPORARY))))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 goto failed;
Tom Tucker9dbc2402007-12-30 21:08:12 -0600791 svc_xprt_set_remote(&newsvsk->sk_xprt, sin, slen);
Frank van Maarseveena9747692007-07-09 22:21:39 +0200792 err = kernel_getsockname(newsock, sin, &slen);
793 if (unlikely(err < 0)) {
794 dprintk("svc_tcp_accept: kernel_getsockname error %d\n", -err);
795 slen = offsetof(struct sockaddr, sa_data);
796 }
Tom Tucker9dbc2402007-12-30 21:08:12 -0600797 svc_xprt_set_local(&newsvsk->sk_xprt, sin, slen);
Chuck Lever067d7812007-02-12 00:53:30 -0800798
Tom Tuckerf9f3cc42007-12-30 21:07:40 -0600799 if (serv->sv_stats)
800 serv->sv_stats->nettcpconn++;
801
802 return &newsvsk->sk_xprt;
803
804failed:
805 sock_release(newsock);
806 return NULL;
807}
808
809/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 * Receive data from a TCP socket.
811 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600812static int svc_tcp_recvfrom(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600814 struct svc_sock *svsk =
815 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600816 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 int len;
NeilBrown3cc03b12006-10-04 02:15:47 -0700818 struct kvec *vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 int pnum, vlen;
820
821 dprintk("svc: tcp_recv %p data %d conn %d close %d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600822 svsk, test_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags),
823 test_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags),
824 test_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Tom Tucker02fc6c32007-12-30 21:07:48 -0600826 clear_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
828 /* Receive data. If we haven't got the record length yet, get
829 * the next four bytes. Otherwise try to gobble up as much as
830 * possible up to the complete record length.
831 */
Chuck Leverc0401ea2008-04-14 12:27:30 -0400832 if (svsk->sk_tcplen < sizeof(rpc_fraghdr)) {
833 int want = sizeof(rpc_fraghdr) - svsk->sk_tcplen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 struct kvec iov;
835
836 iov.iov_base = ((char *) &svsk->sk_reclen) + svsk->sk_tcplen;
837 iov.iov_len = want;
838 if ((len = svc_recvfrom(rqstp, &iov, 1, want)) < 0)
839 goto error;
840 svsk->sk_tcplen += len;
841
842 if (len < want) {
Chuck Leverc0401ea2008-04-14 12:27:30 -0400843 dprintk("svc: short recvfrom while reading record "
844 "length (%d of %d)\n", len, want);
Tom Tuckera6046f72007-12-30 21:08:01 -0600845 svc_xprt_received(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 return -EAGAIN; /* record header not complete */
847 }
848
849 svsk->sk_reclen = ntohl(svsk->sk_reclen);
Chuck Leverc0401ea2008-04-14 12:27:30 -0400850 if (!(svsk->sk_reclen & RPC_LAST_STREAM_FRAGMENT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 /* FIXME: technically, a record can be fragmented,
852 * and non-terminal fragments will not have the top
853 * bit set in the fragment length header.
854 * But apparently no known nfs clients send fragmented
855 * records. */
NeilBrown34e9a632007-01-29 13:19:52 -0800856 if (net_ratelimit())
Chuck Leverc0401ea2008-04-14 12:27:30 -0400857 printk(KERN_NOTICE "RPC: multiple fragments "
858 "per record not supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 goto err_delete;
860 }
Chuck Leverc0401ea2008-04-14 12:27:30 -0400861 svsk->sk_reclen &= RPC_FRAGMENT_SIZE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 dprintk("svc: TCP record, %d bytes\n", svsk->sk_reclen);
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700863 if (svsk->sk_reclen > serv->sv_max_mesg) {
NeilBrown34e9a632007-01-29 13:19:52 -0800864 if (net_ratelimit())
Chuck Leverc0401ea2008-04-14 12:27:30 -0400865 printk(KERN_NOTICE "RPC: "
866 "fragment too large: 0x%08lx\n",
867 (unsigned long)svsk->sk_reclen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 goto err_delete;
869 }
870 }
871
872 /* Check whether enough data is available */
873 len = svc_recv_available(svsk);
874 if (len < 0)
875 goto error;
876
877 if (len < svsk->sk_reclen) {
878 dprintk("svc: incomplete TCP record (%d of %d)\n",
879 len, svsk->sk_reclen);
Tom Tuckera6046f72007-12-30 21:08:01 -0600880 svc_xprt_received(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 return -EAGAIN; /* record not complete */
882 }
883 len = svsk->sk_reclen;
Tom Tucker02fc6c32007-12-30 21:07:48 -0600884 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
NeilBrown3cc03b12006-10-04 02:15:47 -0700886 vec = rqstp->rq_vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 vec[0] = rqstp->rq_arg.head[0];
888 vlen = PAGE_SIZE;
889 pnum = 1;
890 while (vlen < len) {
NeilBrown44524352006-10-04 02:15:46 -0700891 vec[pnum].iov_base = page_address(rqstp->rq_pages[pnum]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 vec[pnum].iov_len = PAGE_SIZE;
893 pnum++;
894 vlen += PAGE_SIZE;
895 }
NeilBrown44524352006-10-04 02:15:46 -0700896 rqstp->rq_respages = &rqstp->rq_pages[pnum];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
898 /* Now receive data */
899 len = svc_recvfrom(rqstp, vec, pnum, len);
900 if (len < 0)
901 goto error;
902
903 dprintk("svc: TCP complete record (%d bytes)\n", len);
904 rqstp->rq_arg.len = len;
905 rqstp->rq_arg.page_base = 0;
906 if (len <= rqstp->rq_arg.head[0].iov_len) {
907 rqstp->rq_arg.head[0].iov_len = len;
908 rqstp->rq_arg.page_len = 0;
909 } else {
910 rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len;
911 }
912
Tom Tucker5148bf42007-12-30 21:07:25 -0600913 rqstp->rq_xprt_ctxt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 rqstp->rq_prot = IPPROTO_TCP;
915
916 /* Reset TCP read info */
917 svsk->sk_reclen = 0;
918 svsk->sk_tcplen = 0;
919
Tom Tucker9dbc2402007-12-30 21:08:12 -0600920 svc_xprt_copy_addrs(rqstp, &svsk->sk_xprt);
Tom Tuckera6046f72007-12-30 21:08:01 -0600921 svc_xprt_received(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 if (serv->sv_stats)
923 serv->sv_stats->nettcpcnt++;
924
925 return len;
926
927 err_delete:
Tom Tucker02fc6c32007-12-30 21:07:48 -0600928 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 return -EAGAIN;
930
931 error:
932 if (len == -EAGAIN) {
933 dprintk("RPC: TCP recvfrom got EAGAIN\n");
Tom Tuckera6046f72007-12-30 21:08:01 -0600934 svc_xprt_received(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 } else {
936 printk(KERN_NOTICE "%s: recvfrom returned errno %d\n",
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600937 svsk->sk_xprt.xpt_server->sv_name, -len);
Olaf Kirch93fbf1a2006-01-06 00:19:56 -0800938 goto err_delete;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 }
940
941 return len;
942}
943
944/*
945 * Send out data on TCP socket.
946 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600947static int svc_tcp_sendto(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948{
949 struct xdr_buf *xbufp = &rqstp->rq_res;
950 int sent;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700951 __be32 reclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
953 /* Set up the first element of the reply kvec.
954 * Any other kvecs that may be in use have been taken
955 * care of by the server implementation itself.
956 */
957 reclen = htonl(0x80000000|((xbufp->len ) - 4));
958 memcpy(xbufp->head[0].iov_base, &reclen, 4);
959
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600960 if (test_bit(XPT_DEAD, &rqstp->rq_xprt->xpt_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 return -ENOTCONN;
962
963 sent = svc_sendto(rqstp, &rqstp->rq_res);
964 if (sent != xbufp->len) {
Tom Tucker0f0257e2007-12-30 21:08:27 -0600965 printk(KERN_NOTICE
966 "rpc-srv/tcp: %s: %s %d when sending %d bytes "
967 "- shutting down socket\n",
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600968 rqstp->rq_xprt->xpt_server->sv_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 (sent<0)?"got error":"sent only",
970 sent, xbufp->len);
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600971 set_bit(XPT_CLOSE, &rqstp->rq_xprt->xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600972 svc_xprt_enqueue(rqstp->rq_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 sent = -EAGAIN;
974 }
975 return sent;
976}
977
Tom Tuckere831fe62007-12-30 21:07:29 -0600978/*
979 * Setup response header. TCP has a 4B record length field.
980 */
981static void svc_tcp_prep_reply_hdr(struct svc_rqst *rqstp)
982{
983 struct kvec *resv = &rqstp->rq_res.head[0];
984
985 /* tcp needs a space for the record length... */
986 svc_putnl(resv, 0);
987}
988
Tom Tucker323bee32007-12-30 21:07:31 -0600989static int svc_tcp_has_wspace(struct svc_xprt *xprt)
990{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600991 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600992 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Tom Tucker323bee32007-12-30 21:07:31 -0600993 int required;
994 int wspace;
995
996 /*
997 * Set the SOCK_NOSPACE flag before checking the available
998 * sock space.
999 */
1000 set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
Tom Tucker7a90e8c2007-12-30 21:07:55 -06001001 required = atomic_read(&svsk->sk_xprt.xpt_reserved) + serv->sv_max_mesg;
Tom Tucker323bee32007-12-30 21:07:31 -06001002 wspace = sk_stream_wspace(svsk->sk_sk);
1003
1004 if (wspace < sk_stream_min_wspace(svsk->sk_sk))
1005 return 0;
1006 if (required * 2 > wspace)
1007 return 0;
1008
1009 clear_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
1010 return 1;
1011}
1012
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001013static struct svc_xprt *svc_tcp_create(struct svc_serv *serv,
1014 struct sockaddr *sa, int salen,
1015 int flags)
1016{
1017 return svc_create_socket(serv, IPPROTO_TCP, sa, salen, flags);
1018}
1019
Tom Tucker360d8732007-12-30 21:07:17 -06001020static struct svc_xprt_ops svc_tcp_ops = {
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001021 .xpo_create = svc_tcp_create,
Tom Tucker5d137992007-12-30 21:07:23 -06001022 .xpo_recvfrom = svc_tcp_recvfrom,
1023 .xpo_sendto = svc_tcp_sendto,
Tom Tucker5148bf42007-12-30 21:07:25 -06001024 .xpo_release_rqst = svc_release_skb,
Trond Myklebust69b6ba32008-12-23 16:30:11 -05001025 .xpo_detach = svc_tcp_sock_detach,
Tom Tucker755ccea2007-12-30 21:07:27 -06001026 .xpo_free = svc_sock_free,
Tom Tuckere831fe62007-12-30 21:07:29 -06001027 .xpo_prep_reply_hdr = svc_tcp_prep_reply_hdr,
Tom Tucker323bee32007-12-30 21:07:31 -06001028 .xpo_has_wspace = svc_tcp_has_wspace,
Tom Tucker38a417c2007-12-30 21:07:36 -06001029 .xpo_accept = svc_tcp_accept,
Tom Tucker360d8732007-12-30 21:07:17 -06001030};
1031
1032static struct svc_xprt_class svc_tcp_class = {
1033 .xcl_name = "tcp",
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001034 .xcl_owner = THIS_MODULE,
Tom Tucker360d8732007-12-30 21:07:17 -06001035 .xcl_ops = &svc_tcp_ops,
Tom Tucker49023152007-12-30 21:07:21 -06001036 .xcl_max_payload = RPCSVC_MAXPAYLOAD_TCP,
Tom Tucker360d8732007-12-30 21:07:17 -06001037};
1038
1039void svc_init_xprt_sock(void)
1040{
1041 svc_reg_xprt_class(&svc_tcp_class);
1042 svc_reg_xprt_class(&svc_udp_class);
1043}
1044
1045void svc_cleanup_xprt_sock(void)
1046{
1047 svc_unreg_xprt_class(&svc_tcp_class);
1048 svc_unreg_xprt_class(&svc_udp_class);
1049}
1050
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001051static void svc_tcp_init(struct svc_sock *svsk, struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052{
1053 struct sock *sk = svsk->sk_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001055 svc_xprt_init(&svc_tcp_class, &svsk->sk_xprt, serv);
Tom Tuckerdef13d72007-12-30 21:08:08 -06001056 set_bit(XPT_CACHE_AUTH, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 if (sk->sk_state == TCP_LISTEN) {
1058 dprintk("setting up TCP socket for listening\n");
Tom Tucker02fc6c32007-12-30 21:07:48 -06001059 set_bit(XPT_LISTENER, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 sk->sk_data_ready = svc_tcp_listen_data_ready;
Tom Tucker02fc6c32007-12-30 21:07:48 -06001061 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 } else {
1063 dprintk("setting up TCP socket for reading\n");
1064 sk->sk_state_change = svc_tcp_state_change;
1065 sk->sk_data_ready = svc_tcp_data_ready;
1066 sk->sk_write_space = svc_write_space;
1067
1068 svsk->sk_reclen = 0;
1069 svsk->sk_tcplen = 0;
1070
Chuck Leverb7872fe2008-04-14 12:27:01 -04001071 tcp_sk(sk)->nonagle |= TCP_NAGLE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Tom Tucker02fc6c32007-12-30 21:07:48 -06001073 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001074 if (sk->sk_state != TCP_ESTABLISHED)
Tom Tucker02fc6c32007-12-30 21:07:48 -06001075 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 }
1077}
1078
Tom Tucker0f0257e2007-12-30 21:08:27 -06001079void svc_sock_update_bufs(struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080{
1081 /*
1082 * The number of server threads has changed. Update
1083 * rcvbuf and sndbuf accordingly on all sockets
1084 */
1085 struct list_head *le;
1086
1087 spin_lock_bh(&serv->sv_lock);
1088 list_for_each(le, &serv->sv_permsocks) {
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001089 struct svc_sock *svsk =
Tom Tucker7a182082007-12-30 21:07:53 -06001090 list_entry(le, struct svc_sock, sk_xprt.xpt_list);
Tom Tucker02fc6c32007-12-30 21:07:48 -06001091 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 }
1093 list_for_each(le, &serv->sv_tempsocks) {
1094 struct svc_sock *svsk =
Tom Tucker7a182082007-12-30 21:07:53 -06001095 list_entry(le, struct svc_sock, sk_xprt.xpt_list);
Tom Tucker02fc6c32007-12-30 21:07:48 -06001096 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 }
1098 spin_unlock_bh(&serv->sv_lock);
1099}
Trond Myklebust24c37672008-12-23 16:30:12 -05001100EXPORT_SYMBOL_GPL(svc_sock_update_bufs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
1102/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 * Initialize socket for RPC use and create svc_sock struct
1104 * XXX: May want to setsockopt SO_SNDBUF and SO_RCVBUF.
1105 */
Chuck Lever6b174332007-02-12 00:53:28 -08001106static struct svc_sock *svc_setup_socket(struct svc_serv *serv,
1107 struct socket *sock,
1108 int *errp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109{
1110 struct svc_sock *svsk;
1111 struct sock *inet;
Chuck Lever6b174332007-02-12 00:53:28 -08001112 int pmap_register = !(flags & SVC_SOCK_ANONYMOUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
1114 dprintk("svc: svc_setup_socket %p\n", sock);
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001115 if (!(svsk = kzalloc(sizeof(*svsk), GFP_KERNEL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 *errp = -ENOMEM;
1117 return NULL;
1118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
1120 inet = sock->sk;
1121
1122 /* Register socket with portmapper */
1123 if (*errp >= 0 && pmap_register)
Chuck Leverbaf01ca2009-03-18 20:46:13 -04001124 *errp = svc_register(serv, inet->sk_family, inet->sk_protocol,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 ntohs(inet_sk(inet)->sport));
1126
1127 if (*errp < 0) {
1128 kfree(svsk);
1129 return NULL;
1130 }
1131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 inet->sk_user_data = svsk;
1133 svsk->sk_sock = sock;
1134 svsk->sk_sk = inet;
1135 svsk->sk_ostate = inet->sk_state_change;
1136 svsk->sk_odata = inet->sk_data_ready;
1137 svsk->sk_owspace = inet->sk_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
1139 /* Initialize the socket */
1140 if (sock->type == SOCK_DGRAM)
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001141 svc_udp_init(svsk, serv);
Olga Kornievskaia47a14ef2008-10-21 14:13:47 -04001142 else {
1143 /* initialise setting must have enough space to
1144 * receive and respond to one request.
1145 */
1146 svc_sock_setbufsize(svsk->sk_sock, 4 * serv->sv_max_mesg,
1147 4 * serv->sv_max_mesg);
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001148 svc_tcp_init(svsk, serv);
Olga Kornievskaia47a14ef2008-10-21 14:13:47 -04001149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 dprintk("svc: svc_setup_socket created %p (inet %p)\n",
1152 svsk, svsk->sk_sk);
1153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 return svsk;
1155}
1156
Chuck Leverbfba9ab2009-04-23 19:32:33 -04001157/**
1158 * svc_addsock - add a listener socket to an RPC service
1159 * @serv: pointer to RPC service to which to add a new listener
1160 * @fd: file descriptor of the new listener
1161 * @name_return: pointer to buffer to fill in with name of listener
1162 * @len: size of the buffer
1163 *
1164 * Fills in socket name and returns positive length of name if successful.
1165 * Name is terminated with '\n'. On error, returns a negative errno
1166 * value.
1167 */
1168int svc_addsock(struct svc_serv *serv, const int fd, char *name_return,
1169 const size_t len)
NeilBrownb41b66d2006-10-02 02:17:48 -07001170{
1171 int err = 0;
1172 struct socket *so = sockfd_lookup(fd, &err);
1173 struct svc_sock *svsk = NULL;
1174
1175 if (!so)
1176 return err;
1177 if (so->sk->sk_family != AF_INET)
1178 err = -EAFNOSUPPORT;
1179 else if (so->sk->sk_protocol != IPPROTO_TCP &&
1180 so->sk->sk_protocol != IPPROTO_UDP)
1181 err = -EPROTONOSUPPORT;
1182 else if (so->state > SS_UNCONNECTED)
1183 err = -EISCONN;
1184 else {
Tom Tucker2da2c212008-11-23 09:58:08 -06001185 if (!try_module_get(THIS_MODULE))
1186 err = -ENOENT;
1187 else
1188 svsk = svc_setup_socket(serv, so, &err,
1189 SVC_SOCK_DEFAULTS);
NeilBrowne79eff12007-02-12 00:53:30 -08001190 if (svsk) {
Tom Tucker9dbc2402007-12-30 21:08:12 -06001191 struct sockaddr_storage addr;
1192 struct sockaddr *sin = (struct sockaddr *)&addr;
1193 int salen;
1194 if (kernel_getsockname(svsk->sk_sock, sin, &salen) == 0)
1195 svc_xprt_set_local(&svsk->sk_xprt, sin, salen);
Tom Tucker4e5caaa2007-12-30 21:08:20 -06001196 clear_bit(XPT_TEMP, &svsk->sk_xprt.xpt_flags);
1197 spin_lock_bh(&serv->sv_lock);
1198 list_add(&svsk->sk_xprt.xpt_list, &serv->sv_permsocks);
1199 spin_unlock_bh(&serv->sv_lock);
Tom Tuckera6046f72007-12-30 21:08:01 -06001200 svc_xprt_received(&svsk->sk_xprt);
NeilBrownb41b66d2006-10-02 02:17:48 -07001201 err = 0;
Tom Tucker2da2c212008-11-23 09:58:08 -06001202 } else
1203 module_put(THIS_MODULE);
NeilBrownb41b66d2006-10-02 02:17:48 -07001204 }
1205 if (err) {
1206 sockfd_put(so);
1207 return err;
1208 }
Chuck Levere7942b92009-04-23 19:32:48 -04001209 return svc_one_sock_name(svsk, name_return, len);
NeilBrownb41b66d2006-10-02 02:17:48 -07001210}
1211EXPORT_SYMBOL_GPL(svc_addsock);
1212
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213/*
1214 * Create socket for RPC service.
1215 */
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001216static struct svc_xprt *svc_create_socket(struct svc_serv *serv,
1217 int protocol,
1218 struct sockaddr *sin, int len,
1219 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220{
1221 struct svc_sock *svsk;
1222 struct socket *sock;
1223 int error;
1224 int type;
Tom Tucker9dbc2402007-12-30 21:08:12 -06001225 struct sockaddr_storage addr;
1226 struct sockaddr *newsin = (struct sockaddr *)&addr;
1227 int newlen;
Trond Myklebustc69da772009-03-30 18:59:17 -04001228 int family;
1229 int val;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +03001230 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
Chuck Leverad06e4b2007-02-12 00:53:32 -08001232 dprintk("svc: svc_create_socket(%s, %d, %s)\n",
1233 serv->sv_program->pg_name, protocol,
Chuck Lever77f1f672007-02-12 00:53:39 -08001234 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
1236 if (protocol != IPPROTO_UDP && protocol != IPPROTO_TCP) {
1237 printk(KERN_WARNING "svc: only UDP and TCP "
1238 "sockets supported\n");
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001239 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
Trond Myklebustc69da772009-03-30 18:59:17 -04001242 type = (protocol == IPPROTO_UDP)? SOCK_DGRAM : SOCK_STREAM;
1243 switch (sin->sa_family) {
1244 case AF_INET6:
1245 family = PF_INET6;
1246 break;
1247 case AF_INET:
1248 family = PF_INET;
1249 break;
1250 default:
1251 return ERR_PTR(-EINVAL);
1252 }
1253
1254 error = sock_create_kern(family, type, protocol, &sock);
Chuck Lever77f1f672007-02-12 00:53:39 -08001255 if (error < 0)
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001256 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
Peter Zijlstraed075362006-12-06 20:35:24 -08001258 svc_reclassify_socket(sock);
1259
Trond Myklebustc69da772009-03-30 18:59:17 -04001260 /*
1261 * If this is an PF_INET6 listener, we want to avoid
1262 * getting requests from IPv4 remotes. Those should
1263 * be shunted to a PF_INET listener via rpcbind.
1264 */
1265 val = 1;
1266 if (family == PF_INET6)
1267 kernel_setsockopt(sock, SOL_IPV6, IPV6_V6ONLY,
1268 (char *)&val, sizeof(val));
1269
Eric Sesterhenn18114742006-09-28 14:37:07 -07001270 if (type == SOCK_STREAM)
Chuck Lever77f1f672007-02-12 00:53:39 -08001271 sock->sk->sk_reuse = 1; /* allow address reuse */
1272 error = kernel_bind(sock, sin, len);
Eric Sesterhenn18114742006-09-28 14:37:07 -07001273 if (error < 0)
1274 goto bummer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
Tom Tucker9dbc2402007-12-30 21:08:12 -06001276 newlen = len;
1277 error = kernel_getsockname(sock, newsin, &newlen);
1278 if (error < 0)
1279 goto bummer;
1280
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 if (protocol == IPPROTO_TCP) {
Sridhar Samudralae6242e92006-08-07 20:58:01 -07001282 if ((error = kernel_listen(sock, 64)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 goto bummer;
1284 }
1285
NeilBrowne79eff12007-02-12 00:53:30 -08001286 if ((svsk = svc_setup_socket(serv, sock, &error, flags)) != NULL) {
Tom Tucker9dbc2402007-12-30 21:08:12 -06001287 svc_xprt_set_local(&svsk->sk_xprt, newsin, newlen);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001288 return (struct svc_xprt *)svsk;
NeilBrowne79eff12007-02-12 00:53:30 -08001289 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
1291bummer:
1292 dprintk("svc: svc_create_socket error = %d\n", -error);
1293 sock_release(sock);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001294 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295}
1296
1297/*
Tom Tucker755ccea2007-12-30 21:07:27 -06001298 * Detach the svc_sock from the socket so that no
1299 * more callbacks occur.
1300 */
1301static void svc_sock_detach(struct svc_xprt *xprt)
1302{
1303 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1304 struct sock *sk = svsk->sk_sk;
1305
1306 dprintk("svc: svc_sock_detach(%p)\n", svsk);
1307
1308 /* put back the old socket callbacks */
1309 sk->sk_state_change = svsk->sk_ostate;
1310 sk->sk_data_ready = svsk->sk_odata;
1311 sk->sk_write_space = svsk->sk_owspace;
Trond Myklebust69b6ba32008-12-23 16:30:11 -05001312
1313 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
1314 wake_up_interruptible(sk->sk_sleep);
1315}
1316
1317/*
1318 * Disconnect the socket, and reset the callbacks
1319 */
1320static void svc_tcp_sock_detach(struct svc_xprt *xprt)
1321{
1322 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1323
1324 dprintk("svc: svc_tcp_sock_detach(%p)\n", svsk);
1325
1326 svc_sock_detach(xprt);
1327
1328 if (!test_bit(XPT_LISTENER, &xprt->xpt_flags))
1329 kernel_sock_shutdown(svsk->sk_sock, SHUT_RDWR);
Tom Tucker755ccea2007-12-30 21:07:27 -06001330}
1331
1332/*
1333 * Free the svc_sock's socket resources and the svc_sock itself.
1334 */
1335static void svc_sock_free(struct svc_xprt *xprt)
1336{
1337 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1338 dprintk("svc: svc_sock_free(%p)\n", svsk);
1339
Tom Tucker755ccea2007-12-30 21:07:27 -06001340 if (svsk->sk_sock->file)
1341 sockfd_put(svsk->sk_sock);
1342 else
1343 sock_release(svsk->sk_sock);
1344 kfree(svsk);
1345}