blob: 8b1bda3ea5c15c19582c44352f37fcacadbc19a2 [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>
49#include <linux/sunrpc/svcsock.h>
50#include <linux/sunrpc/stats.h>
51
Tom Tucker360d8732007-12-30 21:07:17 -060052#define RPCDBG_FACILITY RPCDBG_SVCXPRT
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54
55static struct svc_sock *svc_setup_socket(struct svc_serv *, struct socket *,
Chuck Lever6b174332007-02-12 00:53:28 -080056 int *errp, int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057static void svc_udp_data_ready(struct sock *, int);
58static int svc_udp_recvfrom(struct svc_rqst *);
59static int svc_udp_sendto(struct svc_rqst *);
Tom Tucker755ccea2007-12-30 21:07:27 -060060static void svc_sock_detach(struct svc_xprt *);
61static void svc_sock_free(struct svc_xprt *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Tom Tuckerb700cbb2007-12-30 21:07:42 -060063static struct svc_xprt *svc_create_socket(struct svc_serv *, int,
64 struct sockaddr *, int, int);
Peter Zijlstraed075362006-12-06 20:35:24 -080065#ifdef CONFIG_DEBUG_LOCK_ALLOC
66static struct lock_class_key svc_key[2];
67static struct lock_class_key svc_slock_key[2];
68
Tom Tucker0f0257e2007-12-30 21:08:27 -060069static void svc_reclassify_socket(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -080070{
71 struct sock *sk = sock->sk;
John Heffner02b3d342007-09-12 10:42:12 +020072 BUG_ON(sock_owned_by_user(sk));
Peter Zijlstraed075362006-12-06 20:35:24 -080073 switch (sk->sk_family) {
74 case AF_INET:
75 sock_lock_init_class_and_name(sk, "slock-AF_INET-NFSD",
Tom Tuckerdef13d72007-12-30 21:08:08 -060076 &svc_slock_key[0],
77 "sk_xprt.xpt_lock-AF_INET-NFSD",
78 &svc_key[0]);
Peter Zijlstraed075362006-12-06 20:35:24 -080079 break;
80
81 case AF_INET6:
82 sock_lock_init_class_and_name(sk, "slock-AF_INET6-NFSD",
Tom Tuckerdef13d72007-12-30 21:08:08 -060083 &svc_slock_key[1],
84 "sk_xprt.xpt_lock-AF_INET6-NFSD",
85 &svc_key[1]);
Peter Zijlstraed075362006-12-06 20:35:24 -080086 break;
87
88 default:
89 BUG();
90 }
91}
92#else
Tom Tucker0f0257e2007-12-30 21:08:27 -060093static void svc_reclassify_socket(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -080094{
95}
96#endif
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098/*
99 * Release an skbuff after use
100 */
Tom Tucker5148bf42007-12-30 21:07:25 -0600101static void svc_release_skb(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
Tom Tucker5148bf42007-12-30 21:07:25 -0600103 struct sk_buff *skb = rqstp->rq_xprt_ctxt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 struct svc_deferred_req *dr = rqstp->rq_deferred;
105
106 if (skb) {
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600107 struct svc_sock *svsk =
108 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Tom Tucker5148bf42007-12-30 21:07:25 -0600109 rqstp->rq_xprt_ctxt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111 dprintk("svc: service %p, releasing skb %p\n", rqstp, skb);
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600112 skb_free_datagram(svsk->sk_sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 }
114 if (dr) {
115 rqstp->rq_deferred = NULL;
116 kfree(dr);
117 }
118}
119
Chuck Leverb92503b2007-02-12 00:53:36 -0800120union svc_pktinfo_u {
121 struct in_pktinfo pkti;
Chuck Leverb92503b2007-02-12 00:53:36 -0800122 struct in6_pktinfo pkti6;
Chuck Leverb92503b2007-02-12 00:53:36 -0800123};
David S. Millerbc375ea2007-04-12 13:35:59 -0700124#define SVC_PKTINFO_SPACE \
125 CMSG_SPACE(sizeof(union svc_pktinfo_u))
Chuck Leverb92503b2007-02-12 00:53:36 -0800126
127static void svc_set_cmsg_data(struct svc_rqst *rqstp, struct cmsghdr *cmh)
128{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600129 struct svc_sock *svsk =
130 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
131 switch (svsk->sk_sk->sk_family) {
Chuck Leverb92503b2007-02-12 00:53:36 -0800132 case AF_INET: {
133 struct in_pktinfo *pki = CMSG_DATA(cmh);
134
135 cmh->cmsg_level = SOL_IP;
136 cmh->cmsg_type = IP_PKTINFO;
137 pki->ipi_ifindex = 0;
138 pki->ipi_spec_dst.s_addr = rqstp->rq_daddr.addr.s_addr;
139 cmh->cmsg_len = CMSG_LEN(sizeof(*pki));
140 }
141 break;
NeilBrown5a05ed72007-03-06 01:42:22 -0800142
Chuck Leverb92503b2007-02-12 00:53:36 -0800143 case AF_INET6: {
144 struct in6_pktinfo *pki = CMSG_DATA(cmh);
145
146 cmh->cmsg_level = SOL_IPV6;
147 cmh->cmsg_type = IPV6_PKTINFO;
148 pki->ipi6_ifindex = 0;
149 ipv6_addr_copy(&pki->ipi6_addr,
150 &rqstp->rq_daddr.addr6);
151 cmh->cmsg_len = CMSG_LEN(sizeof(*pki));
152 }
153 break;
Chuck Leverb92503b2007-02-12 00:53:36 -0800154 }
155 return;
156}
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158/*
159 * Generic sendto routine
160 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600161static int svc_sendto(struct svc_rqst *rqstp, struct xdr_buf *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600163 struct svc_sock *svsk =
164 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 struct socket *sock = svsk->sk_sock;
166 int slen;
David S. Millerbc375ea2007-04-12 13:35:59 -0700167 union {
168 struct cmsghdr hdr;
169 long all[SVC_PKTINFO_SPACE / sizeof(long)];
170 } buffer;
171 struct cmsghdr *cmh = &buffer.hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 int len = 0;
173 int result;
174 int size;
175 struct page **ppage = xdr->pages;
176 size_t base = xdr->page_base;
177 unsigned int pglen = xdr->page_len;
178 unsigned int flags = MSG_MORE;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +0300179 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181 slen = xdr->len;
182
183 if (rqstp->rq_prot == IPPROTO_UDP) {
Chuck Leverb92503b2007-02-12 00:53:36 -0800184 struct msghdr msg = {
185 .msg_name = &rqstp->rq_addr,
186 .msg_namelen = rqstp->rq_addrlen,
187 .msg_control = cmh,
188 .msg_controllen = sizeof(buffer),
189 .msg_flags = MSG_MORE,
190 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Chuck Leverb92503b2007-02-12 00:53:36 -0800192 svc_set_cmsg_data(rqstp, cmh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 if (sock_sendmsg(sock, &msg, 0) < 0)
195 goto out;
196 }
197
198 /* send head */
199 if (slen == xdr->head[0].iov_len)
200 flags = 0;
NeilBrown44524352006-10-04 02:15:46 -0700201 len = kernel_sendpage(sock, rqstp->rq_respages[0], 0,
202 xdr->head[0].iov_len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 if (len != xdr->head[0].iov_len)
204 goto out;
205 slen -= xdr->head[0].iov_len;
206 if (slen == 0)
207 goto out;
208
209 /* send page data */
210 size = PAGE_SIZE - base < pglen ? PAGE_SIZE - base : pglen;
211 while (pglen > 0) {
212 if (slen == size)
213 flags = 0;
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700214 result = kernel_sendpage(sock, *ppage, base, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 if (result > 0)
216 len += result;
217 if (result != size)
218 goto out;
219 slen -= size;
220 pglen -= size;
221 size = PAGE_SIZE < pglen ? PAGE_SIZE : pglen;
222 base = 0;
223 ppage++;
224 }
225 /* send tail */
226 if (xdr->tail[0].iov_len) {
NeilBrown44524352006-10-04 02:15:46 -0700227 result = kernel_sendpage(sock, rqstp->rq_respages[0],
228 ((unsigned long)xdr->tail[0].iov_base)
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800229 & (PAGE_SIZE-1),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 xdr->tail[0].iov_len, 0);
231
232 if (result > 0)
233 len += result;
234 }
235out:
Chuck Leverad06e4b2007-02-12 00:53:32 -0800236 dprintk("svc: socket %p sendto([%p %Zu... ], %d) = %d (addr %s)\n",
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600237 svsk, xdr->head[0].iov_base, xdr->head[0].iov_len,
Chuck Leverad06e4b2007-02-12 00:53:32 -0800238 xdr->len, len, svc_print_addr(rqstp, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 return len;
241}
242
243/*
NeilBrown80212d52006-10-02 02:17:47 -0700244 * Report socket names for nfsdfs
245 */
246static int one_sock_name(char *buf, struct svc_sock *svsk)
247{
248 int len;
249
250 switch(svsk->sk_sk->sk_family) {
251 case AF_INET:
252 len = sprintf(buf, "ipv4 %s %u.%u.%u.%u %d\n",
253 svsk->sk_sk->sk_protocol==IPPROTO_UDP?
254 "udp" : "tcp",
255 NIPQUAD(inet_sk(svsk->sk_sk)->rcv_saddr),
256 inet_sk(svsk->sk_sk)->num);
257 break;
258 default:
259 len = sprintf(buf, "*unknown-%d*\n",
260 svsk->sk_sk->sk_family);
261 }
262 return len;
263}
264
265int
NeilBrownb41b66d2006-10-02 02:17:48 -0700266svc_sock_names(char *buf, struct svc_serv *serv, char *toclose)
NeilBrown80212d52006-10-02 02:17:47 -0700267{
NeilBrownb41b66d2006-10-02 02:17:48 -0700268 struct svc_sock *svsk, *closesk = NULL;
NeilBrown80212d52006-10-02 02:17:47 -0700269 int len = 0;
270
271 if (!serv)
272 return 0;
NeilBrownaaf68cf2007-02-08 14:20:30 -0800273 spin_lock_bh(&serv->sv_lock);
Tom Tucker7a182082007-12-30 21:07:53 -0600274 list_for_each_entry(svsk, &serv->sv_permsocks, sk_xprt.xpt_list) {
NeilBrown80212d52006-10-02 02:17:47 -0700275 int onelen = one_sock_name(buf+len, svsk);
NeilBrownb41b66d2006-10-02 02:17:48 -0700276 if (toclose && strcmp(toclose, buf+len) == 0)
277 closesk = svsk;
278 else
279 len += onelen;
NeilBrown80212d52006-10-02 02:17:47 -0700280 }
NeilBrownaaf68cf2007-02-08 14:20:30 -0800281 spin_unlock_bh(&serv->sv_lock);
NeilBrownb41b66d2006-10-02 02:17:48 -0700282 if (closesk)
NeilBrown5680c442006-10-04 02:15:45 -0700283 /* Should unregister with portmap, but you cannot
284 * unregister just one protocol...
285 */
Tom Tucker7a182082007-12-30 21:07:53 -0600286 svc_close_xprt(&closesk->sk_xprt);
NeilBrown37a03472006-10-04 02:15:44 -0700287 else if (toclose)
288 return -ENOENT;
NeilBrown80212d52006-10-02 02:17:47 -0700289 return len;
290}
291EXPORT_SYMBOL(svc_sock_names);
292
293/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 * Check input queue length
295 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600296static int svc_recv_available(struct svc_sock *svsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 struct socket *sock = svsk->sk_sock;
299 int avail, err;
300
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700301 err = kernel_sock_ioctl(sock, TIOCINQ, (unsigned long) &avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 return (err >= 0)? avail : err;
304}
305
306/*
307 * Generic recvfrom routine.
308 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600309static int svc_recvfrom(struct svc_rqst *rqstp, struct kvec *iov, int nr,
310 int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600312 struct svc_sock *svsk =
313 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Chuck Lever1ba95102007-02-12 00:53:31 -0800314 struct msghdr msg = {
315 .msg_flags = MSG_DONTWAIT,
316 };
317 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Tom Tucker260c1d12007-12-30 21:08:29 -0600319 rqstp->rq_xprt_hlen = 0;
320
Chuck Lever1ba95102007-02-12 00:53:31 -0800321 len = kernel_recvmsg(svsk->sk_sock, &msg, iov, nr, buflen,
322 msg.msg_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 dprintk("svc: socket %p recvfrom(%p, %Zu) = %d\n",
Chuck Lever1ba95102007-02-12 00:53:31 -0800325 svsk, iov[0].iov_base, iov[0].iov_len, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 return len;
327}
328
329/*
330 * Set socket snd and rcv buffer lengths
331 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600332static void svc_sock_setbufsize(struct socket *sock, unsigned int snd,
333 unsigned int rcv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
335#if 0
336 mm_segment_t oldfs;
337 oldfs = get_fs(); set_fs(KERNEL_DS);
338 sock_setsockopt(sock, SOL_SOCKET, SO_SNDBUF,
339 (char*)&snd, sizeof(snd));
340 sock_setsockopt(sock, SOL_SOCKET, SO_RCVBUF,
341 (char*)&rcv, sizeof(rcv));
342#else
343 /* sock_setsockopt limits use to sysctl_?mem_max,
344 * which isn't acceptable. Until that is made conditional
345 * on not having CAP_SYS_RESOURCE or similar, we go direct...
346 * DaveM said I could!
347 */
348 lock_sock(sock->sk);
349 sock->sk->sk_sndbuf = snd * 2;
350 sock->sk->sk_rcvbuf = rcv * 2;
351 sock->sk->sk_userlocks |= SOCK_SNDBUF_LOCK|SOCK_RCVBUF_LOCK;
352 release_sock(sock->sk);
353#endif
354}
355/*
356 * INET callback when data has been received on the socket.
357 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600358static void svc_udp_data_ready(struct sock *sk, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
Neil Brown939bb7e2005-09-13 01:25:39 -0700360 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Neil Brown939bb7e2005-09-13 01:25:39 -0700362 if (svsk) {
363 dprintk("svc: socket %p(inet %p), count=%d, busy=%d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600364 svsk, sk, count,
365 test_bit(XPT_BUSY, &svsk->sk_xprt.xpt_flags));
366 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600367 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700368 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
370 wake_up_interruptible(sk->sk_sleep);
371}
372
373/*
374 * INET callback when space is newly available on the socket.
375 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600376static void svc_write_space(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
378 struct svc_sock *svsk = (struct svc_sock *)(sk->sk_user_data);
379
380 if (svsk) {
381 dprintk("svc: socket %p(inet %p), write_space busy=%d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600382 svsk, sk, test_bit(XPT_BUSY, &svsk->sk_xprt.xpt_flags));
Tom Tuckerf6150c32007-12-30 21:07:57 -0600383 svc_xprt_enqueue(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 }
385
386 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep)) {
Neil Brown939bb7e2005-09-13 01:25:39 -0700387 dprintk("RPC svc_write_space: someone sleeping on %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 svsk);
389 wake_up_interruptible(sk->sk_sleep);
390 }
391}
392
Tom Tucker9dbc2402007-12-30 21:08:12 -0600393/*
394 * Copy the UDP datagram's destination address to the rqstp structure.
395 * The 'destination' address in this case is the address to which the
396 * peer sent the datagram, i.e. our local address. For multihomed
397 * hosts, this can change from msg to msg. Note that only the IP
398 * address changes, the port number should remain the same.
399 */
400static void svc_udp_get_dest_address(struct svc_rqst *rqstp,
401 struct cmsghdr *cmh)
Chuck Lever95756482007-02-12 00:53:38 -0800402{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600403 struct svc_sock *svsk =
404 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
405 switch (svsk->sk_sk->sk_family) {
Chuck Lever95756482007-02-12 00:53:38 -0800406 case AF_INET: {
NeilBrown7a37f572007-03-06 01:42:21 -0800407 struct in_pktinfo *pki = CMSG_DATA(cmh);
408 rqstp->rq_daddr.addr.s_addr = pki->ipi_spec_dst.s_addr;
Chuck Lever95756482007-02-12 00:53:38 -0800409 break;
NeilBrown7a37f572007-03-06 01:42:21 -0800410 }
Chuck Lever95756482007-02-12 00:53:38 -0800411 case AF_INET6: {
NeilBrown7a37f572007-03-06 01:42:21 -0800412 struct in6_pktinfo *pki = CMSG_DATA(cmh);
413 ipv6_addr_copy(&rqstp->rq_daddr.addr6, &pki->ipi6_addr);
Chuck Lever95756482007-02-12 00:53:38 -0800414 break;
NeilBrown7a37f572007-03-06 01:42:21 -0800415 }
Chuck Lever95756482007-02-12 00:53:38 -0800416 }
Chuck Lever95756482007-02-12 00:53:38 -0800417}
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419/*
420 * Receive a datagram from a UDP socket.
421 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600422static int svc_udp_recvfrom(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600424 struct svc_sock *svsk =
425 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600426 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 struct sk_buff *skb;
David S. Millerbc375ea2007-04-12 13:35:59 -0700428 union {
429 struct cmsghdr hdr;
430 long all[SVC_PKTINFO_SPACE / sizeof(long)];
431 } buffer;
432 struct cmsghdr *cmh = &buffer.hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 int err, len;
NeilBrown7a37f572007-03-06 01:42:21 -0800434 struct msghdr msg = {
435 .msg_name = svc_addr(rqstp),
436 .msg_control = cmh,
437 .msg_controllen = sizeof(buffer),
438 .msg_flags = MSG_DONTWAIT,
439 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Tom Tucker02fc6c32007-12-30 21:07:48 -0600441 if (test_and_clear_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 /* udp sockets need large rcvbuf as all pending
443 * requests are still in that buffer. sndbuf must
444 * also be large enough that there is enough space
Greg Banks3262c812006-10-02 02:17:58 -0700445 * for one reply per thread. We count all threads
446 * rather than threads in a particular pool, which
447 * provides an upper bound on the number of threads
448 * which will access the socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 */
450 svc_sock_setbufsize(svsk->sk_sock,
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700451 (serv->sv_nrthreads+3) * serv->sv_max_mesg,
452 (serv->sv_nrthreads+3) * serv->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Tom Tucker02fc6c32007-12-30 21:07:48 -0600454 clear_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
NeilBrown05ed6902007-05-09 02:34:55 -0700455 skb = NULL;
456 err = kernel_recvmsg(svsk->sk_sock, &msg, NULL,
457 0, 0, MSG_PEEK | MSG_DONTWAIT);
458 if (err >= 0)
459 skb = skb_recv_datagram(svsk->sk_sk, 0, 1, &err);
460
461 if (skb == NULL) {
462 if (err != -EAGAIN) {
463 /* possibly an icmp error */
464 dprintk("svc: recvfrom returned error %d\n", -err);
Tom Tucker02fc6c32007-12-30 21:07:48 -0600465 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 }
Tom Tuckera6046f72007-12-30 21:08:01 -0600467 svc_xprt_received(&svsk->sk_xprt);
NeilBrown05ed6902007-05-09 02:34:55 -0700468 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 }
Tom Tucker9dbc2402007-12-30 21:08:12 -0600470 len = svc_addr_len(svc_addr(rqstp));
471 if (len < 0)
472 return len;
473 rqstp->rq_addrlen = len;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700474 if (skb->tstamp.tv64 == 0) {
475 skb->tstamp = ktime_get_real();
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800476 /* Don't enable netstamp, sunrpc doesn't
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 need that much accuracy */
478 }
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700479 svsk->sk_sk->sk_stamp = skb->tstamp;
Tom Tucker02fc6c32007-12-30 21:07:48 -0600480 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); /* there may be more data... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482 /*
483 * Maybe more packets - kick another thread ASAP.
484 */
Tom Tuckera6046f72007-12-30 21:08:01 -0600485 svc_xprt_received(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 len = skb->len - sizeof(struct udphdr);
488 rqstp->rq_arg.len = len;
489
Chuck Lever95756482007-02-12 00:53:38 -0800490 rqstp->rq_prot = IPPROTO_UDP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
NeilBrown7a37f572007-03-06 01:42:21 -0800492 if (cmh->cmsg_level != IPPROTO_IP ||
493 cmh->cmsg_type != IP_PKTINFO) {
494 if (net_ratelimit())
495 printk("rpcsvc: received unknown control message:"
496 "%d/%d\n",
497 cmh->cmsg_level, cmh->cmsg_type);
498 skb_free_datagram(svsk->sk_sk, skb);
499 return 0;
500 }
501 svc_udp_get_dest_address(rqstp, cmh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503 if (skb_is_nonlinear(skb)) {
504 /* we have to copy */
505 local_bh_disable();
506 if (csum_partial_copy_to_xdr(&rqstp->rq_arg, skb)) {
507 local_bh_enable();
508 /* checksum error */
509 skb_free_datagram(svsk->sk_sk, skb);
510 return 0;
511 }
512 local_bh_enable();
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800513 skb_free_datagram(svsk->sk_sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 } else {
515 /* we can use it in-place */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600516 rqstp->rq_arg.head[0].iov_base = skb->data +
517 sizeof(struct udphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 rqstp->rq_arg.head[0].iov_len = len;
Herbert Xufb286bb2005-11-10 13:01:24 -0800519 if (skb_checksum_complete(skb)) {
520 skb_free_datagram(svsk->sk_sk, skb);
521 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
Tom Tucker5148bf42007-12-30 21:07:25 -0600523 rqstp->rq_xprt_ctxt = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 }
525
526 rqstp->rq_arg.page_base = 0;
527 if (len <= rqstp->rq_arg.head[0].iov_len) {
528 rqstp->rq_arg.head[0].iov_len = len;
529 rqstp->rq_arg.page_len = 0;
NeilBrown44524352006-10-04 02:15:46 -0700530 rqstp->rq_respages = rqstp->rq_pages+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 } else {
532 rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len;
NeilBrown44524352006-10-04 02:15:46 -0700533 rqstp->rq_respages = rqstp->rq_pages + 1 +
Ilpo Järvinen172589c2007-08-28 15:50:33 -0700534 DIV_ROUND_UP(rqstp->rq_arg.page_len, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 }
536
537 if (serv->sv_stats)
538 serv->sv_stats->netudpcnt++;
539
540 return len;
541}
542
543static int
544svc_udp_sendto(struct svc_rqst *rqstp)
545{
546 int error;
547
548 error = svc_sendto(rqstp, &rqstp->rq_res);
549 if (error == -ECONNREFUSED)
550 /* ICMP error on earlier request. */
551 error = svc_sendto(rqstp, &rqstp->rq_res);
552
553 return error;
554}
555
Tom Tuckere831fe62007-12-30 21:07:29 -0600556static void svc_udp_prep_reply_hdr(struct svc_rqst *rqstp)
557{
558}
559
Tom Tucker323bee32007-12-30 21:07:31 -0600560static int svc_udp_has_wspace(struct svc_xprt *xprt)
561{
562 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600563 struct svc_serv *serv = xprt->xpt_server;
Tom Tucker323bee32007-12-30 21:07:31 -0600564 unsigned long required;
565
566 /*
567 * Set the SOCK_NOSPACE flag before checking the available
568 * sock space.
569 */
570 set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
Tom Tucker7a90e8c2007-12-30 21:07:55 -0600571 required = atomic_read(&svsk->sk_xprt.xpt_reserved) + serv->sv_max_mesg;
Tom Tucker323bee32007-12-30 21:07:31 -0600572 if (required*2 > sock_wspace(svsk->sk_sk))
573 return 0;
574 clear_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
575 return 1;
576}
577
Tom Tucker38a417c2007-12-30 21:07:36 -0600578static struct svc_xprt *svc_udp_accept(struct svc_xprt *xprt)
579{
580 BUG();
581 return NULL;
582}
583
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600584static struct svc_xprt *svc_udp_create(struct svc_serv *serv,
585 struct sockaddr *sa, int salen,
586 int flags)
587{
588 return svc_create_socket(serv, IPPROTO_UDP, sa, salen, flags);
589}
590
Tom Tucker360d8732007-12-30 21:07:17 -0600591static struct svc_xprt_ops svc_udp_ops = {
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600592 .xpo_create = svc_udp_create,
Tom Tucker5d137992007-12-30 21:07:23 -0600593 .xpo_recvfrom = svc_udp_recvfrom,
594 .xpo_sendto = svc_udp_sendto,
Tom Tucker5148bf42007-12-30 21:07:25 -0600595 .xpo_release_rqst = svc_release_skb,
Tom Tucker755ccea2007-12-30 21:07:27 -0600596 .xpo_detach = svc_sock_detach,
597 .xpo_free = svc_sock_free,
Tom Tuckere831fe62007-12-30 21:07:29 -0600598 .xpo_prep_reply_hdr = svc_udp_prep_reply_hdr,
Tom Tucker323bee32007-12-30 21:07:31 -0600599 .xpo_has_wspace = svc_udp_has_wspace,
Tom Tucker38a417c2007-12-30 21:07:36 -0600600 .xpo_accept = svc_udp_accept,
Tom Tucker360d8732007-12-30 21:07:17 -0600601};
602
603static struct svc_xprt_class svc_udp_class = {
604 .xcl_name = "udp",
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600605 .xcl_owner = THIS_MODULE,
Tom Tucker360d8732007-12-30 21:07:17 -0600606 .xcl_ops = &svc_udp_ops,
Tom Tucker49023152007-12-30 21:07:21 -0600607 .xcl_max_payload = RPCSVC_MAXPAYLOAD_UDP,
Tom Tucker360d8732007-12-30 21:07:17 -0600608};
609
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600610static void svc_udp_init(struct svc_sock *svsk, struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
NeilBrown7a37f572007-03-06 01:42:21 -0800612 int one = 1;
613 mm_segment_t oldfs;
614
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600615 svc_xprt_init(&svc_udp_class, &svsk->sk_xprt, serv);
Tom Tuckerdef13d72007-12-30 21:08:08 -0600616 clear_bit(XPT_CACHE_AUTH, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 svsk->sk_sk->sk_data_ready = svc_udp_data_ready;
618 svsk->sk_sk->sk_write_space = svc_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
620 /* initialise setting must have enough space to
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800621 * receive and respond to one request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 * svc_udp_recvfrom will re-adjust if necessary
623 */
624 svc_sock_setbufsize(svsk->sk_sock,
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600625 3 * svsk->sk_xprt.xpt_server->sv_max_mesg,
626 3 * svsk->sk_xprt.xpt_server->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Tom Tucker0f0257e2007-12-30 21:08:27 -0600628 /* data might have come in before data_ready set up */
629 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tucker02fc6c32007-12-30 21:07:48 -0600630 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
NeilBrown7a37f572007-03-06 01:42:21 -0800631
632 oldfs = get_fs();
633 set_fs(KERNEL_DS);
634 /* make sure we get destination address info */
635 svsk->sk_sock->ops->setsockopt(svsk->sk_sock, IPPROTO_IP, IP_PKTINFO,
636 (char __user *)&one, sizeof(one));
637 set_fs(oldfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
639
640/*
641 * A data_ready event on a listening socket means there's a connection
642 * pending. Do not use state_change as a substitute for it.
643 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600644static void svc_tcp_listen_data_ready(struct sock *sk, int count_unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
Neil Brown939bb7e2005-09-13 01:25:39 -0700646 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
648 dprintk("svc: socket %p TCP (listen) state change %d\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700649 sk, sk->sk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Neil Brown939bb7e2005-09-13 01:25:39 -0700651 /*
652 * This callback may called twice when a new connection
653 * is established as a child socket inherits everything
654 * from a parent LISTEN socket.
655 * 1) data_ready method of the parent socket will be called
656 * when one of child sockets become ESTABLISHED.
657 * 2) data_ready method of the child socket may be called
658 * when it receives data before the socket is accepted.
659 * In case of 2, we should ignore it silently.
660 */
661 if (sk->sk_state == TCP_LISTEN) {
662 if (svsk) {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600663 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600664 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700665 } else
666 printk("svc: socket %p: no user data\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 }
Neil Brown939bb7e2005-09-13 01:25:39 -0700668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
670 wake_up_interruptible_all(sk->sk_sleep);
671}
672
673/*
674 * A state change on a connected socket means it's dying or dead.
675 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600676static void svc_tcp_state_change(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
Neil Brown939bb7e2005-09-13 01:25:39 -0700678 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
680 dprintk("svc: socket %p TCP (connected) state change %d (svsk %p)\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700681 sk, sk->sk_state, sk->sk_user_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Neil Brown939bb7e2005-09-13 01:25:39 -0700683 if (!svsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 printk("svc: socket %p: no user data\n", sk);
Neil Brown939bb7e2005-09-13 01:25:39 -0700685 else {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600686 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600687 svc_xprt_enqueue(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
690 wake_up_interruptible_all(sk->sk_sleep);
691}
692
Tom Tucker0f0257e2007-12-30 21:08:27 -0600693static void svc_tcp_data_ready(struct sock *sk, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
Neil Brown939bb7e2005-09-13 01:25:39 -0700695 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697 dprintk("svc: socket %p TCP data ready (svsk %p)\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700698 sk, sk->sk_user_data);
699 if (svsk) {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600700 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600701 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
704 wake_up_interruptible(sk->sk_sleep);
705}
706
707/*
708 * Accept a TCP connection
709 */
Tom Tucker38a417c2007-12-30 21:07:36 -0600710static struct svc_xprt *svc_tcp_accept(struct svc_xprt *xprt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711{
Tom Tucker38a417c2007-12-30 21:07:36 -0600712 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800713 struct sockaddr_storage addr;
714 struct sockaddr *sin = (struct sockaddr *) &addr;
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600715 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 struct socket *sock = svsk->sk_sock;
717 struct socket *newsock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 struct svc_sock *newsvsk;
719 int err, slen;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +0300720 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
722 dprintk("svc: tcp_accept %p sock %p\n", svsk, sock);
723 if (!sock)
Tom Tucker38a417c2007-12-30 21:07:36 -0600724 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Tom Tucker02fc6c32007-12-30 21:07:48 -0600726 clear_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700727 err = kernel_accept(sock, &newsock, O_NONBLOCK);
728 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 if (err == -ENOMEM)
730 printk(KERN_WARNING "%s: no more sockets!\n",
731 serv->sv_name);
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700732 else if (err != -EAGAIN && net_ratelimit())
733 printk(KERN_WARNING "%s: accept failed (err %d)!\n",
734 serv->sv_name, -err);
Tom Tucker38a417c2007-12-30 21:07:36 -0600735 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 }
Tom Tucker02fc6c32007-12-30 21:07:48 -0600737 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800739 err = kernel_getpeername(newsock, sin, &slen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 if (err < 0) {
741 if (net_ratelimit())
742 printk(KERN_WARNING "%s: peername failed (err %d)!\n",
743 serv->sv_name, -err);
744 goto failed; /* aborted connection or whatever */
745 }
746
747 /* Ideally, we would want to reject connections from unauthorized
Chuck Leverad06e4b2007-02-12 00:53:32 -0800748 * hosts here, but when we get encryption, the IP of the host won't
749 * tell us anything. For now just warn about unpriv connections.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 */
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800751 if (!svc_port_is_privileged(sin)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 dprintk(KERN_WARNING
Chuck Leverad06e4b2007-02-12 00:53:32 -0800753 "%s: connect from unprivileged port: %s\n",
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800754 serv->sv_name,
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800755 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 }
Chuck Leverad06e4b2007-02-12 00:53:32 -0800757 dprintk("%s: connect from %s\n", serv->sv_name,
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800758 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760 /* make sure that a write doesn't block forever when
761 * low on memory
762 */
763 newsock->sk->sk_sndtimeo = HZ*30;
764
Chuck Lever6b174332007-02-12 00:53:28 -0800765 if (!(newsvsk = svc_setup_socket(serv, newsock, &err,
766 (SVC_SOCK_ANONYMOUS | SVC_SOCK_TEMPORARY))))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 goto failed;
Tom Tucker9dbc2402007-12-30 21:08:12 -0600768 svc_xprt_set_remote(&newsvsk->sk_xprt, sin, slen);
Frank van Maarseveena9747692007-07-09 22:21:39 +0200769 err = kernel_getsockname(newsock, sin, &slen);
770 if (unlikely(err < 0)) {
771 dprintk("svc_tcp_accept: kernel_getsockname error %d\n", -err);
772 slen = offsetof(struct sockaddr, sa_data);
773 }
Tom Tucker9dbc2402007-12-30 21:08:12 -0600774 svc_xprt_set_local(&newsvsk->sk_xprt, sin, slen);
Chuck Lever067d7812007-02-12 00:53:30 -0800775
Tom Tuckerf9f3cc42007-12-30 21:07:40 -0600776 if (serv->sv_stats)
777 serv->sv_stats->nettcpconn++;
778
779 return &newsvsk->sk_xprt;
780
781failed:
782 sock_release(newsock);
783 return NULL;
784}
785
786/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 * Receive data from a TCP socket.
788 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600789static int svc_tcp_recvfrom(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600791 struct svc_sock *svsk =
792 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600793 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 int len;
NeilBrown3cc03b12006-10-04 02:15:47 -0700795 struct kvec *vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 int pnum, vlen;
797
798 dprintk("svc: tcp_recv %p data %d conn %d close %d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600799 svsk, test_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags),
800 test_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags),
801 test_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Tom Tucker02fc6c32007-12-30 21:07:48 -0600803 if (test_and_clear_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 /* sndbuf needs to have room for one request
805 * per thread, otherwise we can stall even when the
806 * network isn't a bottleneck.
Greg Banks3262c812006-10-02 02:17:58 -0700807 *
808 * We count all threads rather than threads in a
809 * particular pool, which provides an upper bound
810 * on the number of threads which will access the socket.
811 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 * rcvbuf just needs to be able to hold a few requests.
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800813 * Normally they will be removed from the queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 * as soon a a complete request arrives.
815 */
816 svc_sock_setbufsize(svsk->sk_sock,
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700817 (serv->sv_nrthreads+3) * serv->sv_max_mesg,
818 3 * serv->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Tom Tucker02fc6c32007-12-30 21:07:48 -0600820 clear_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 /* Receive data. If we haven't got the record length yet, get
823 * the next four bytes. Otherwise try to gobble up as much as
824 * possible up to the complete record length.
825 */
826 if (svsk->sk_tcplen < 4) {
827 unsigned long want = 4 - svsk->sk_tcplen;
828 struct kvec iov;
829
830 iov.iov_base = ((char *) &svsk->sk_reclen) + svsk->sk_tcplen;
831 iov.iov_len = want;
832 if ((len = svc_recvfrom(rqstp, &iov, 1, want)) < 0)
833 goto error;
834 svsk->sk_tcplen += len;
835
836 if (len < want) {
837 dprintk("svc: short recvfrom while reading record length (%d of %lu)\n",
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800838 len, want);
Tom Tuckera6046f72007-12-30 21:08:01 -0600839 svc_xprt_received(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 return -EAGAIN; /* record header not complete */
841 }
842
843 svsk->sk_reclen = ntohl(svsk->sk_reclen);
844 if (!(svsk->sk_reclen & 0x80000000)) {
845 /* FIXME: technically, a record can be fragmented,
846 * and non-terminal fragments will not have the top
847 * bit set in the fragment length header.
848 * But apparently no known nfs clients send fragmented
849 * records. */
NeilBrown34e9a632007-01-29 13:19:52 -0800850 if (net_ratelimit())
851 printk(KERN_NOTICE "RPC: bad TCP reclen 0x%08lx"
852 " (non-terminal)\n",
853 (unsigned long) svsk->sk_reclen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 goto err_delete;
855 }
856 svsk->sk_reclen &= 0x7fffffff;
857 dprintk("svc: TCP record, %d bytes\n", svsk->sk_reclen);
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700858 if (svsk->sk_reclen > serv->sv_max_mesg) {
NeilBrown34e9a632007-01-29 13:19:52 -0800859 if (net_ratelimit())
860 printk(KERN_NOTICE "RPC: bad TCP reclen 0x%08lx"
861 " (large)\n",
862 (unsigned long) svsk->sk_reclen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 goto err_delete;
864 }
865 }
866
867 /* Check whether enough data is available */
868 len = svc_recv_available(svsk);
869 if (len < 0)
870 goto error;
871
872 if (len < svsk->sk_reclen) {
873 dprintk("svc: incomplete TCP record (%d of %d)\n",
874 len, svsk->sk_reclen);
Tom Tuckera6046f72007-12-30 21:08:01 -0600875 svc_xprt_received(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 return -EAGAIN; /* record not complete */
877 }
878 len = svsk->sk_reclen;
Tom Tucker02fc6c32007-12-30 21:07:48 -0600879 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
NeilBrown3cc03b12006-10-04 02:15:47 -0700881 vec = rqstp->rq_vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 vec[0] = rqstp->rq_arg.head[0];
883 vlen = PAGE_SIZE;
884 pnum = 1;
885 while (vlen < len) {
NeilBrown44524352006-10-04 02:15:46 -0700886 vec[pnum].iov_base = page_address(rqstp->rq_pages[pnum]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 vec[pnum].iov_len = PAGE_SIZE;
888 pnum++;
889 vlen += PAGE_SIZE;
890 }
NeilBrown44524352006-10-04 02:15:46 -0700891 rqstp->rq_respages = &rqstp->rq_pages[pnum];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
893 /* Now receive data */
894 len = svc_recvfrom(rqstp, vec, pnum, len);
895 if (len < 0)
896 goto error;
897
898 dprintk("svc: TCP complete record (%d bytes)\n", len);
899 rqstp->rq_arg.len = len;
900 rqstp->rq_arg.page_base = 0;
901 if (len <= rqstp->rq_arg.head[0].iov_len) {
902 rqstp->rq_arg.head[0].iov_len = len;
903 rqstp->rq_arg.page_len = 0;
904 } else {
905 rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len;
906 }
907
Tom Tucker5148bf42007-12-30 21:07:25 -0600908 rqstp->rq_xprt_ctxt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 rqstp->rq_prot = IPPROTO_TCP;
910
911 /* Reset TCP read info */
912 svsk->sk_reclen = 0;
913 svsk->sk_tcplen = 0;
914
Tom Tucker9dbc2402007-12-30 21:08:12 -0600915 svc_xprt_copy_addrs(rqstp, &svsk->sk_xprt);
Tom Tuckera6046f72007-12-30 21:08:01 -0600916 svc_xprt_received(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 if (serv->sv_stats)
918 serv->sv_stats->nettcpcnt++;
919
920 return len;
921
922 err_delete:
Tom Tucker02fc6c32007-12-30 21:07:48 -0600923 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 return -EAGAIN;
925
926 error:
927 if (len == -EAGAIN) {
928 dprintk("RPC: TCP recvfrom got EAGAIN\n");
Tom Tuckera6046f72007-12-30 21:08:01 -0600929 svc_xprt_received(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 } else {
931 printk(KERN_NOTICE "%s: recvfrom returned errno %d\n",
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600932 svsk->sk_xprt.xpt_server->sv_name, -len);
Olaf Kirch93fbf1a2006-01-06 00:19:56 -0800933 goto err_delete;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 }
935
936 return len;
937}
938
939/*
940 * Send out data on TCP socket.
941 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600942static int svc_tcp_sendto(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943{
944 struct xdr_buf *xbufp = &rqstp->rq_res;
945 int sent;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700946 __be32 reclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 /* Set up the first element of the reply kvec.
949 * Any other kvecs that may be in use have been taken
950 * care of by the server implementation itself.
951 */
952 reclen = htonl(0x80000000|((xbufp->len ) - 4));
953 memcpy(xbufp->head[0].iov_base, &reclen, 4);
954
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600955 if (test_bit(XPT_DEAD, &rqstp->rq_xprt->xpt_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 return -ENOTCONN;
957
958 sent = svc_sendto(rqstp, &rqstp->rq_res);
959 if (sent != xbufp->len) {
Tom Tucker0f0257e2007-12-30 21:08:27 -0600960 printk(KERN_NOTICE
961 "rpc-srv/tcp: %s: %s %d when sending %d bytes "
962 "- shutting down socket\n",
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600963 rqstp->rq_xprt->xpt_server->sv_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 (sent<0)?"got error":"sent only",
965 sent, xbufp->len);
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600966 set_bit(XPT_CLOSE, &rqstp->rq_xprt->xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600967 svc_xprt_enqueue(rqstp->rq_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 sent = -EAGAIN;
969 }
970 return sent;
971}
972
Tom Tuckere831fe62007-12-30 21:07:29 -0600973/*
974 * Setup response header. TCP has a 4B record length field.
975 */
976static void svc_tcp_prep_reply_hdr(struct svc_rqst *rqstp)
977{
978 struct kvec *resv = &rqstp->rq_res.head[0];
979
980 /* tcp needs a space for the record length... */
981 svc_putnl(resv, 0);
982}
983
Tom Tucker323bee32007-12-30 21:07:31 -0600984static int svc_tcp_has_wspace(struct svc_xprt *xprt)
985{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600986 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600987 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Tom Tucker323bee32007-12-30 21:07:31 -0600988 int required;
989 int wspace;
990
991 /*
992 * Set the SOCK_NOSPACE flag before checking the available
993 * sock space.
994 */
995 set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
Tom Tucker7a90e8c2007-12-30 21:07:55 -0600996 required = atomic_read(&svsk->sk_xprt.xpt_reserved) + serv->sv_max_mesg;
Tom Tucker323bee32007-12-30 21:07:31 -0600997 wspace = sk_stream_wspace(svsk->sk_sk);
998
999 if (wspace < sk_stream_min_wspace(svsk->sk_sk))
1000 return 0;
1001 if (required * 2 > wspace)
1002 return 0;
1003
1004 clear_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
1005 return 1;
1006}
1007
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001008static struct svc_xprt *svc_tcp_create(struct svc_serv *serv,
1009 struct sockaddr *sa, int salen,
1010 int flags)
1011{
1012 return svc_create_socket(serv, IPPROTO_TCP, sa, salen, flags);
1013}
1014
Tom Tucker360d8732007-12-30 21:07:17 -06001015static struct svc_xprt_ops svc_tcp_ops = {
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001016 .xpo_create = svc_tcp_create,
Tom Tucker5d137992007-12-30 21:07:23 -06001017 .xpo_recvfrom = svc_tcp_recvfrom,
1018 .xpo_sendto = svc_tcp_sendto,
Tom Tucker5148bf42007-12-30 21:07:25 -06001019 .xpo_release_rqst = svc_release_skb,
Tom Tucker755ccea2007-12-30 21:07:27 -06001020 .xpo_detach = svc_sock_detach,
1021 .xpo_free = svc_sock_free,
Tom Tuckere831fe62007-12-30 21:07:29 -06001022 .xpo_prep_reply_hdr = svc_tcp_prep_reply_hdr,
Tom Tucker323bee32007-12-30 21:07:31 -06001023 .xpo_has_wspace = svc_tcp_has_wspace,
Tom Tucker38a417c2007-12-30 21:07:36 -06001024 .xpo_accept = svc_tcp_accept,
Tom Tucker360d8732007-12-30 21:07:17 -06001025};
1026
1027static struct svc_xprt_class svc_tcp_class = {
1028 .xcl_name = "tcp",
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001029 .xcl_owner = THIS_MODULE,
Tom Tucker360d8732007-12-30 21:07:17 -06001030 .xcl_ops = &svc_tcp_ops,
Tom Tucker49023152007-12-30 21:07:21 -06001031 .xcl_max_payload = RPCSVC_MAXPAYLOAD_TCP,
Tom Tucker360d8732007-12-30 21:07:17 -06001032};
1033
1034void svc_init_xprt_sock(void)
1035{
1036 svc_reg_xprt_class(&svc_tcp_class);
1037 svc_reg_xprt_class(&svc_udp_class);
1038}
1039
1040void svc_cleanup_xprt_sock(void)
1041{
1042 svc_unreg_xprt_class(&svc_tcp_class);
1043 svc_unreg_xprt_class(&svc_udp_class);
1044}
1045
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001046static void svc_tcp_init(struct svc_sock *svsk, struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047{
1048 struct sock *sk = svsk->sk_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001050 svc_xprt_init(&svc_tcp_class, &svsk->sk_xprt, serv);
Tom Tuckerdef13d72007-12-30 21:08:08 -06001051 set_bit(XPT_CACHE_AUTH, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 if (sk->sk_state == TCP_LISTEN) {
1053 dprintk("setting up TCP socket for listening\n");
Tom Tucker02fc6c32007-12-30 21:07:48 -06001054 set_bit(XPT_LISTENER, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 sk->sk_data_ready = svc_tcp_listen_data_ready;
Tom Tucker02fc6c32007-12-30 21:07:48 -06001056 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 } else {
1058 dprintk("setting up TCP socket for reading\n");
1059 sk->sk_state_change = svc_tcp_state_change;
1060 sk->sk_data_ready = svc_tcp_data_ready;
1061 sk->sk_write_space = svc_write_space;
1062
1063 svsk->sk_reclen = 0;
1064 svsk->sk_tcplen = 0;
1065
Chuck Leverb7872fe2008-04-14 12:27:01 -04001066 tcp_sk(sk)->nonagle |= TCP_NAGLE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
1068 /* initialise setting must have enough space to
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001069 * receive and respond to one request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 * svc_tcp_recvfrom will re-adjust if necessary
1071 */
1072 svc_sock_setbufsize(svsk->sk_sock,
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001073 3 * svsk->sk_xprt.xpt_server->sv_max_mesg,
1074 3 * svsk->sk_xprt.xpt_server->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
Tom Tucker02fc6c32007-12-30 21:07:48 -06001076 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
1077 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001078 if (sk->sk_state != TCP_ESTABLISHED)
Tom Tucker02fc6c32007-12-30 21:07:48 -06001079 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 }
1081}
1082
Tom Tucker0f0257e2007-12-30 21:08:27 -06001083void svc_sock_update_bufs(struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084{
1085 /*
1086 * The number of server threads has changed. Update
1087 * rcvbuf and sndbuf accordingly on all sockets
1088 */
1089 struct list_head *le;
1090
1091 spin_lock_bh(&serv->sv_lock);
1092 list_for_each(le, &serv->sv_permsocks) {
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001093 struct svc_sock *svsk =
Tom Tucker7a182082007-12-30 21:07:53 -06001094 list_entry(le, struct svc_sock, sk_xprt.xpt_list);
Tom Tucker02fc6c32007-12-30 21:07:48 -06001095 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 }
1097 list_for_each(le, &serv->sv_tempsocks) {
1098 struct svc_sock *svsk =
Tom Tucker7a182082007-12-30 21:07:53 -06001099 list_entry(le, struct svc_sock, sk_xprt.xpt_list);
Tom Tucker02fc6c32007-12-30 21:07:48 -06001100 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 }
1102 spin_unlock_bh(&serv->sv_lock);
1103}
Jeff Layton23d42ee2008-02-07 16:34:53 -05001104EXPORT_SYMBOL(svc_sock_update_bufs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
1106/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 * Initialize socket for RPC use and create svc_sock struct
1108 * XXX: May want to setsockopt SO_SNDBUF and SO_RCVBUF.
1109 */
Chuck Lever6b174332007-02-12 00:53:28 -08001110static struct svc_sock *svc_setup_socket(struct svc_serv *serv,
1111 struct socket *sock,
1112 int *errp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113{
1114 struct svc_sock *svsk;
1115 struct sock *inet;
Chuck Lever6b174332007-02-12 00:53:28 -08001116 int pmap_register = !(flags & SVC_SOCK_ANONYMOUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
1118 dprintk("svc: svc_setup_socket %p\n", sock);
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001119 if (!(svsk = kzalloc(sizeof(*svsk), GFP_KERNEL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 *errp = -ENOMEM;
1121 return NULL;
1122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
1124 inet = sock->sk;
1125
1126 /* Register socket with portmapper */
1127 if (*errp >= 0 && pmap_register)
1128 *errp = svc_register(serv, inet->sk_protocol,
1129 ntohs(inet_sk(inet)->sport));
1130
1131 if (*errp < 0) {
1132 kfree(svsk);
1133 return NULL;
1134 }
1135
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 inet->sk_user_data = svsk;
1137 svsk->sk_sock = sock;
1138 svsk->sk_sk = inet;
1139 svsk->sk_ostate = inet->sk_state_change;
1140 svsk->sk_odata = inet->sk_data_ready;
1141 svsk->sk_owspace = inet->sk_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
1143 /* Initialize the socket */
1144 if (sock->type == SOCK_DGRAM)
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001145 svc_udp_init(svsk, serv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 else
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001147 svc_tcp_init(svsk, serv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 dprintk("svc: svc_setup_socket created %p (inet %p)\n",
1150 svsk, svsk->sk_sk);
1151
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 return svsk;
1153}
1154
NeilBrownb41b66d2006-10-02 02:17:48 -07001155int svc_addsock(struct svc_serv *serv,
1156 int fd,
1157 char *name_return,
1158 int *proto)
1159{
1160 int err = 0;
1161 struct socket *so = sockfd_lookup(fd, &err);
1162 struct svc_sock *svsk = NULL;
1163
1164 if (!so)
1165 return err;
1166 if (so->sk->sk_family != AF_INET)
1167 err = -EAFNOSUPPORT;
1168 else if (so->sk->sk_protocol != IPPROTO_TCP &&
1169 so->sk->sk_protocol != IPPROTO_UDP)
1170 err = -EPROTONOSUPPORT;
1171 else if (so->state > SS_UNCONNECTED)
1172 err = -EISCONN;
1173 else {
Chuck Lever6b174332007-02-12 00:53:28 -08001174 svsk = svc_setup_socket(serv, so, &err, SVC_SOCK_DEFAULTS);
NeilBrowne79eff12007-02-12 00:53:30 -08001175 if (svsk) {
Tom Tucker9dbc2402007-12-30 21:08:12 -06001176 struct sockaddr_storage addr;
1177 struct sockaddr *sin = (struct sockaddr *)&addr;
1178 int salen;
1179 if (kernel_getsockname(svsk->sk_sock, sin, &salen) == 0)
1180 svc_xprt_set_local(&svsk->sk_xprt, sin, salen);
Tom Tucker4e5caaa2007-12-30 21:08:20 -06001181 clear_bit(XPT_TEMP, &svsk->sk_xprt.xpt_flags);
1182 spin_lock_bh(&serv->sv_lock);
1183 list_add(&svsk->sk_xprt.xpt_list, &serv->sv_permsocks);
1184 spin_unlock_bh(&serv->sv_lock);
Tom Tuckera6046f72007-12-30 21:08:01 -06001185 svc_xprt_received(&svsk->sk_xprt);
NeilBrownb41b66d2006-10-02 02:17:48 -07001186 err = 0;
NeilBrowne79eff12007-02-12 00:53:30 -08001187 }
NeilBrownb41b66d2006-10-02 02:17:48 -07001188 }
1189 if (err) {
1190 sockfd_put(so);
1191 return err;
1192 }
1193 if (proto) *proto = so->sk->sk_protocol;
1194 return one_sock_name(name_return, svsk);
1195}
1196EXPORT_SYMBOL_GPL(svc_addsock);
1197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198/*
1199 * Create socket for RPC service.
1200 */
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001201static struct svc_xprt *svc_create_socket(struct svc_serv *serv,
1202 int protocol,
1203 struct sockaddr *sin, int len,
1204 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205{
1206 struct svc_sock *svsk;
1207 struct socket *sock;
1208 int error;
1209 int type;
Tom Tucker9dbc2402007-12-30 21:08:12 -06001210 struct sockaddr_storage addr;
1211 struct sockaddr *newsin = (struct sockaddr *)&addr;
1212 int newlen;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +03001213 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
Chuck Leverad06e4b2007-02-12 00:53:32 -08001215 dprintk("svc: svc_create_socket(%s, %d, %s)\n",
1216 serv->sv_program->pg_name, protocol,
Chuck Lever77f1f672007-02-12 00:53:39 -08001217 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
1219 if (protocol != IPPROTO_UDP && protocol != IPPROTO_TCP) {
1220 printk(KERN_WARNING "svc: only UDP and TCP "
1221 "sockets supported\n");
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001222 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 }
1224 type = (protocol == IPPROTO_UDP)? SOCK_DGRAM : SOCK_STREAM;
1225
Chuck Lever77f1f672007-02-12 00:53:39 -08001226 error = sock_create_kern(sin->sa_family, type, protocol, &sock);
1227 if (error < 0)
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001228 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
Peter Zijlstraed075362006-12-06 20:35:24 -08001230 svc_reclassify_socket(sock);
1231
Eric Sesterhenn18114742006-09-28 14:37:07 -07001232 if (type == SOCK_STREAM)
Chuck Lever77f1f672007-02-12 00:53:39 -08001233 sock->sk->sk_reuse = 1; /* allow address reuse */
1234 error = kernel_bind(sock, sin, len);
Eric Sesterhenn18114742006-09-28 14:37:07 -07001235 if (error < 0)
1236 goto bummer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Tom Tucker9dbc2402007-12-30 21:08:12 -06001238 newlen = len;
1239 error = kernel_getsockname(sock, newsin, &newlen);
1240 if (error < 0)
1241 goto bummer;
1242
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 if (protocol == IPPROTO_TCP) {
Sridhar Samudralae6242e92006-08-07 20:58:01 -07001244 if ((error = kernel_listen(sock, 64)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 goto bummer;
1246 }
1247
NeilBrowne79eff12007-02-12 00:53:30 -08001248 if ((svsk = svc_setup_socket(serv, sock, &error, flags)) != NULL) {
Tom Tucker9dbc2402007-12-30 21:08:12 -06001249 svc_xprt_set_local(&svsk->sk_xprt, newsin, newlen);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001250 return (struct svc_xprt *)svsk;
NeilBrowne79eff12007-02-12 00:53:30 -08001251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
1253bummer:
1254 dprintk("svc: svc_create_socket error = %d\n", -error);
1255 sock_release(sock);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001256 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257}
1258
1259/*
Tom Tucker755ccea2007-12-30 21:07:27 -06001260 * Detach the svc_sock from the socket so that no
1261 * more callbacks occur.
1262 */
1263static void svc_sock_detach(struct svc_xprt *xprt)
1264{
1265 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1266 struct sock *sk = svsk->sk_sk;
1267
1268 dprintk("svc: svc_sock_detach(%p)\n", svsk);
1269
1270 /* put back the old socket callbacks */
1271 sk->sk_state_change = svsk->sk_ostate;
1272 sk->sk_data_ready = svsk->sk_odata;
1273 sk->sk_write_space = svsk->sk_owspace;
1274}
1275
1276/*
1277 * Free the svc_sock's socket resources and the svc_sock itself.
1278 */
1279static void svc_sock_free(struct svc_xprt *xprt)
1280{
1281 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1282 dprintk("svc: svc_sock_free(%p)\n", svsk);
1283
Tom Tucker755ccea2007-12-30 21:07:27 -06001284 if (svsk->sk_sock->file)
1285 sockfd_put(svsk->sk_sock);
1286 else
1287 sock_release(svsk->sk_sock);
1288 kfree(svsk);
1289}