2 * linux/net/sunrpc/svcsock.c
4 * These are the RPC server socket internals.
6 * The server scheduling algorithm does not always distribute the load
7 * evenly when servicing a single client. May need to modify the
8 * svc_xprt_enqueue procedure...
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.
19 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
22 #include <linux/kernel.h>
23 #include <linux/sched.h>
24 #include <linux/errno.h>
25 #include <linux/fcntl.h>
26 #include <linux/net.h>
28 #include <linux/inet.h>
29 #include <linux/udp.h>
30 #include <linux/tcp.h>
31 #include <linux/unistd.h>
32 #include <linux/slab.h>
33 #include <linux/netdevice.h>
34 #include <linux/skbuff.h>
35 #include <linux/file.h>
36 #include <linux/freezer.h>
38 #include <net/checksum.h>
42 #include <net/tcp_states.h>
43 #include <asm/uaccess.h>
44 #include <asm/ioctls.h>
46 #include <linux/sunrpc/types.h>
47 #include <linux/sunrpc/clnt.h>
48 #include <linux/sunrpc/xdr.h>
49 #include <linux/sunrpc/msg_prot.h>
50 #include <linux/sunrpc/svcsock.h>
51 #include <linux/sunrpc/stats.h>
52 #include <linux/sunrpc/xprt.h>
54 #define RPCDBG_FACILITY RPCDBG_SVCXPRT
57 static struct svc_sock
*svc_setup_socket(struct svc_serv
*, struct socket
*,
58 int *errp
, int flags
);
59 static void svc_udp_data_ready(struct sock
*, int);
60 static int svc_udp_recvfrom(struct svc_rqst
*);
61 static int svc_udp_sendto(struct svc_rqst
*);
62 static void svc_sock_detach(struct svc_xprt
*);
63 static void svc_tcp_sock_detach(struct svc_xprt
*);
64 static void svc_sock_free(struct svc_xprt
*);
66 static struct svc_xprt
*svc_create_socket(struct svc_serv
*, int,
67 struct sockaddr
*, int, int);
68 #ifdef CONFIG_DEBUG_LOCK_ALLOC
69 static struct lock_class_key svc_key
[2];
70 static struct lock_class_key svc_slock_key
[2];
72 static void svc_reclassify_socket(struct socket
*sock
)
74 struct sock
*sk
= sock
->sk
;
75 BUG_ON(sock_owned_by_user(sk
));
76 switch (sk
->sk_family
) {
78 sock_lock_init_class_and_name(sk
, "slock-AF_INET-NFSD",
80 "sk_xprt.xpt_lock-AF_INET-NFSD",
85 sock_lock_init_class_and_name(sk
, "slock-AF_INET6-NFSD",
87 "sk_xprt.xpt_lock-AF_INET6-NFSD",
96 static void svc_reclassify_socket(struct socket
*sock
)
102 * Release an skbuff after use
104 static void svc_release_skb(struct svc_rqst
*rqstp
)
106 struct sk_buff
*skb
= rqstp
->rq_xprt_ctxt
;
109 struct svc_sock
*svsk
=
110 container_of(rqstp
->rq_xprt
, struct svc_sock
, sk_xprt
);
111 rqstp
->rq_xprt_ctxt
= NULL
;
113 dprintk("svc: service %p, releasing skb %p\n", rqstp
, skb
);
114 skb_free_datagram_locked(svsk
->sk_sk
, skb
);
118 union svc_pktinfo_u
{
119 struct in_pktinfo pkti
;
120 struct in6_pktinfo pkti6
;
122 #define SVC_PKTINFO_SPACE \
123 CMSG_SPACE(sizeof(union svc_pktinfo_u))
125 static void svc_set_cmsg_data(struct svc_rqst
*rqstp
, struct cmsghdr
*cmh
)
127 struct svc_sock
*svsk
=
128 container_of(rqstp
->rq_xprt
, struct svc_sock
, sk_xprt
);
129 switch (svsk
->sk_sk
->sk_family
) {
131 struct in_pktinfo
*pki
= CMSG_DATA(cmh
);
133 cmh
->cmsg_level
= SOL_IP
;
134 cmh
->cmsg_type
= IP_PKTINFO
;
135 pki
->ipi_ifindex
= 0;
136 pki
->ipi_spec_dst
.s_addr
= rqstp
->rq_daddr
.addr
.s_addr
;
137 cmh
->cmsg_len
= CMSG_LEN(sizeof(*pki
));
142 struct in6_pktinfo
*pki
= CMSG_DATA(cmh
);
144 cmh
->cmsg_level
= SOL_IPV6
;
145 cmh
->cmsg_type
= IPV6_PKTINFO
;
146 pki
->ipi6_ifindex
= 0;
147 ipv6_addr_copy(&pki
->ipi6_addr
,
148 &rqstp
->rq_daddr
.addr6
);
149 cmh
->cmsg_len
= CMSG_LEN(sizeof(*pki
));
157 * send routine intended to be shared by the fore- and back-channel
159 int svc_send_common(struct socket
*sock
, struct xdr_buf
*xdr
,
160 struct page
*headpage
, unsigned long headoffset
,
161 struct page
*tailpage
, unsigned long tailoffset
)
165 struct page
**ppage
= xdr
->pages
;
166 size_t base
= xdr
->page_base
;
167 unsigned int pglen
= xdr
->page_len
;
168 unsigned int flags
= MSG_MORE
;
175 if (slen
== xdr
->head
[0].iov_len
)
177 len
= kernel_sendpage(sock
, headpage
, headoffset
,
178 xdr
->head
[0].iov_len
, flags
);
179 if (len
!= xdr
->head
[0].iov_len
)
181 slen
-= xdr
->head
[0].iov_len
;
186 size
= PAGE_SIZE
- base
< pglen
? PAGE_SIZE
- base
: pglen
;
190 result
= kernel_sendpage(sock
, *ppage
, base
, size
, flags
);
197 size
= PAGE_SIZE
< pglen
? PAGE_SIZE
: pglen
;
203 if (xdr
->tail
[0].iov_len
) {
204 result
= kernel_sendpage(sock
, tailpage
, tailoffset
,
205 xdr
->tail
[0].iov_len
, 0);
216 * Generic sendto routine
218 static int svc_sendto(struct svc_rqst
*rqstp
, struct xdr_buf
*xdr
)
220 struct svc_sock
*svsk
=
221 container_of(rqstp
->rq_xprt
, struct svc_sock
, sk_xprt
);
222 struct socket
*sock
= svsk
->sk_sock
;
225 long all
[SVC_PKTINFO_SPACE
/ sizeof(long)];
227 struct cmsghdr
*cmh
= &buffer
.hdr
;
229 unsigned long tailoff
;
230 unsigned long headoff
;
231 RPC_IFDEBUG(char buf
[RPC_MAX_ADDRBUFLEN
]);
233 if (rqstp
->rq_prot
== IPPROTO_UDP
) {
234 struct msghdr msg
= {
235 .msg_name
= &rqstp
->rq_addr
,
236 .msg_namelen
= rqstp
->rq_addrlen
,
238 .msg_controllen
= sizeof(buffer
),
239 .msg_flags
= MSG_MORE
,
242 svc_set_cmsg_data(rqstp
, cmh
);
244 if (sock_sendmsg(sock
, &msg
, 0) < 0)
248 tailoff
= ((unsigned long)xdr
->tail
[0].iov_base
) & (PAGE_SIZE
-1);
250 len
= svc_send_common(sock
, xdr
, rqstp
->rq_respages
[0], headoff
,
251 rqstp
->rq_respages
[0], tailoff
);
254 dprintk("svc: socket %p sendto([%p %Zu... ], %d) = %d (addr %s)\n",
255 svsk
, xdr
->head
[0].iov_base
, xdr
->head
[0].iov_len
,
256 xdr
->len
, len
, svc_print_addr(rqstp
, buf
, sizeof(buf
)));
262 * Report socket names for nfsdfs
264 static int svc_one_sock_name(struct svc_sock
*svsk
, char *buf
, int remaining
)
266 const struct sock
*sk
= svsk
->sk_sk
;
267 const char *proto_name
= sk
->sk_protocol
== IPPROTO_UDP
?
271 switch (sk
->sk_family
) {
273 len
= snprintf(buf
, remaining
, "ipv4 %s %pI4 %d\n",
275 &inet_sk(sk
)->inet_rcv_saddr
,
276 inet_sk(sk
)->inet_num
);
279 len
= snprintf(buf
, remaining
, "ipv6 %s %pI6 %d\n",
281 &inet6_sk(sk
)->rcv_saddr
,
282 inet_sk(sk
)->inet_num
);
285 len
= snprintf(buf
, remaining
, "*unknown-%d*\n",
289 if (len
>= remaining
) {
291 return -ENAMETOOLONG
;
297 * svc_sock_names - construct a list of listener names in a string
298 * @serv: pointer to RPC service
299 * @buf: pointer to a buffer to fill in with socket names
300 * @buflen: size of the buffer to be filled
301 * @toclose: pointer to '\0'-terminated C string containing the name
302 * of a listener to be closed
304 * Fills in @buf with a '\n'-separated list of names of listener
305 * sockets. If @toclose is not NULL, the socket named by @toclose
306 * is closed, and is not included in the output list.
308 * Returns positive length of the socket name string, or a negative
309 * errno value on error.
311 int svc_sock_names(struct svc_serv
*serv
, char *buf
, const size_t buflen
,
314 struct svc_sock
*svsk
, *closesk
= NULL
;
320 spin_lock_bh(&serv
->sv_lock
);
321 list_for_each_entry(svsk
, &serv
->sv_permsocks
, sk_xprt
.xpt_list
) {
322 int onelen
= svc_one_sock_name(svsk
, buf
+ len
, buflen
- len
);
327 if (toclose
&& strcmp(toclose
, buf
+ len
) == 0)
332 spin_unlock_bh(&serv
->sv_lock
);
335 /* Should unregister with portmap, but you cannot
336 * unregister just one protocol...
338 svc_close_xprt(&closesk
->sk_xprt
);
343 EXPORT_SYMBOL_GPL(svc_sock_names
);
346 * Check input queue length
348 static int svc_recv_available(struct svc_sock
*svsk
)
350 struct socket
*sock
= svsk
->sk_sock
;
353 err
= kernel_sock_ioctl(sock
, TIOCINQ
, (unsigned long) &avail
);
355 return (err
>= 0)? avail
: err
;
359 * Generic recvfrom routine.
361 static int svc_recvfrom(struct svc_rqst
*rqstp
, struct kvec
*iov
, int nr
,
364 struct svc_sock
*svsk
=
365 container_of(rqstp
->rq_xprt
, struct svc_sock
, sk_xprt
);
366 struct msghdr msg
= {
367 .msg_flags
= MSG_DONTWAIT
,
371 rqstp
->rq_xprt_hlen
= 0;
373 len
= kernel_recvmsg(svsk
->sk_sock
, &msg
, iov
, nr
, buflen
,
376 dprintk("svc: socket %p recvfrom(%p, %Zu) = %d\n",
377 svsk
, iov
[0].iov_base
, iov
[0].iov_len
, len
);
382 * Set socket snd and rcv buffer lengths
384 static void svc_sock_setbufsize(struct socket
*sock
, unsigned int snd
,
389 oldfs
= get_fs(); set_fs(KERNEL_DS
);
390 sock_setsockopt(sock
, SOL_SOCKET
, SO_SNDBUF
,
391 (char*)&snd
, sizeof(snd
));
392 sock_setsockopt(sock
, SOL_SOCKET
, SO_RCVBUF
,
393 (char*)&rcv
, sizeof(rcv
));
395 /* sock_setsockopt limits use to sysctl_?mem_max,
396 * which isn't acceptable. Until that is made conditional
397 * on not having CAP_SYS_RESOURCE or similar, we go direct...
398 * DaveM said I could!
401 sock
->sk
->sk_sndbuf
= snd
* 2;
402 sock
->sk
->sk_rcvbuf
= rcv
* 2;
403 sock
->sk
->sk_userlocks
|= SOCK_SNDBUF_LOCK
|SOCK_RCVBUF_LOCK
;
404 sock
->sk
->sk_write_space(sock
->sk
);
405 release_sock(sock
->sk
);
409 * INET callback when data has been received on the socket.
411 static void svc_udp_data_ready(struct sock
*sk
, int count
)
413 struct svc_sock
*svsk
= (struct svc_sock
*)sk
->sk_user_data
;
416 dprintk("svc: socket %p(inet %p), count=%d, busy=%d\n",
418 test_bit(XPT_BUSY
, &svsk
->sk_xprt
.xpt_flags
));
419 set_bit(XPT_DATA
, &svsk
->sk_xprt
.xpt_flags
);
420 svc_xprt_enqueue(&svsk
->sk_xprt
);
422 if (sk
->sk_sleep
&& waitqueue_active(sk
->sk_sleep
))
423 wake_up_interruptible(sk
->sk_sleep
);
427 * INET callback when space is newly available on the socket.
429 static void svc_write_space(struct sock
*sk
)
431 struct svc_sock
*svsk
= (struct svc_sock
*)(sk
->sk_user_data
);
434 dprintk("svc: socket %p(inet %p), write_space busy=%d\n",
435 svsk
, sk
, test_bit(XPT_BUSY
, &svsk
->sk_xprt
.xpt_flags
));
436 svc_xprt_enqueue(&svsk
->sk_xprt
);
439 if (sk
->sk_sleep
&& waitqueue_active(sk
->sk_sleep
)) {
440 dprintk("RPC svc_write_space: someone sleeping on %p\n",
442 wake_up_interruptible(sk
->sk_sleep
);
446 static void svc_tcp_write_space(struct sock
*sk
)
448 struct socket
*sock
= sk
->sk_socket
;
450 if (sk_stream_wspace(sk
) >= sk_stream_min_wspace(sk
) && sock
)
451 clear_bit(SOCK_NOSPACE
, &sock
->flags
);
456 * See net/ipv6/ip_sockglue.c : ip_cmsg_recv_pktinfo
458 static int svc_udp_get_dest_address4(struct svc_rqst
*rqstp
,
461 struct in_pktinfo
*pki
= CMSG_DATA(cmh
);
462 if (cmh
->cmsg_type
!= IP_PKTINFO
)
464 rqstp
->rq_daddr
.addr
.s_addr
= pki
->ipi_spec_dst
.s_addr
;
469 * See net/ipv6/datagram.c : datagram_recv_ctl
471 static int svc_udp_get_dest_address6(struct svc_rqst
*rqstp
,
474 struct in6_pktinfo
*pki
= CMSG_DATA(cmh
);
475 if (cmh
->cmsg_type
!= IPV6_PKTINFO
)
477 ipv6_addr_copy(&rqstp
->rq_daddr
.addr6
, &pki
->ipi6_addr
);
482 * Copy the UDP datagram's destination address to the rqstp structure.
483 * The 'destination' address in this case is the address to which the
484 * peer sent the datagram, i.e. our local address. For multihomed
485 * hosts, this can change from msg to msg. Note that only the IP
486 * address changes, the port number should remain the same.
488 static int svc_udp_get_dest_address(struct svc_rqst
*rqstp
,
491 switch (cmh
->cmsg_level
) {
493 return svc_udp_get_dest_address4(rqstp
, cmh
);
495 return svc_udp_get_dest_address6(rqstp
, cmh
);
502 * Receive a datagram from a UDP socket.
504 static int svc_udp_recvfrom(struct svc_rqst
*rqstp
)
506 struct svc_sock
*svsk
=
507 container_of(rqstp
->rq_xprt
, struct svc_sock
, sk_xprt
);
508 struct svc_serv
*serv
= svsk
->sk_xprt
.xpt_server
;
512 long all
[SVC_PKTINFO_SPACE
/ sizeof(long)];
514 struct cmsghdr
*cmh
= &buffer
.hdr
;
515 struct msghdr msg
= {
516 .msg_name
= svc_addr(rqstp
),
518 .msg_controllen
= sizeof(buffer
),
519 .msg_flags
= MSG_DONTWAIT
,
524 if (test_and_clear_bit(XPT_CHNGBUF
, &svsk
->sk_xprt
.xpt_flags
))
525 /* udp sockets need large rcvbuf as all pending
526 * requests are still in that buffer. sndbuf must
527 * also be large enough that there is enough space
528 * for one reply per thread. We count all threads
529 * rather than threads in a particular pool, which
530 * provides an upper bound on the number of threads
531 * which will access the socket.
533 svc_sock_setbufsize(svsk
->sk_sock
,
534 (serv
->sv_nrthreads
+3) * serv
->sv_max_mesg
,
535 (serv
->sv_nrthreads
+3) * serv
->sv_max_mesg
);
537 clear_bit(XPT_DATA
, &svsk
->sk_xprt
.xpt_flags
);
539 err
= kernel_recvmsg(svsk
->sk_sock
, &msg
, NULL
,
540 0, 0, MSG_PEEK
| MSG_DONTWAIT
);
542 skb
= skb_recv_datagram(svsk
->sk_sk
, 0, 1, &err
);
545 if (err
!= -EAGAIN
) {
546 /* possibly an icmp error */
547 dprintk("svc: recvfrom returned error %d\n", -err
);
548 set_bit(XPT_DATA
, &svsk
->sk_xprt
.xpt_flags
);
550 svc_xprt_received(&svsk
->sk_xprt
);
553 len
= svc_addr_len(svc_addr(rqstp
));
555 return -EAFNOSUPPORT
;
556 rqstp
->rq_addrlen
= len
;
557 if (skb
->tstamp
.tv64
== 0) {
558 skb
->tstamp
= ktime_get_real();
559 /* Don't enable netstamp, sunrpc doesn't
560 need that much accuracy */
562 svsk
->sk_sk
->sk_stamp
= skb
->tstamp
;
563 set_bit(XPT_DATA
, &svsk
->sk_xprt
.xpt_flags
); /* there may be more data... */
566 * Maybe more packets - kick another thread ASAP.
568 svc_xprt_received(&svsk
->sk_xprt
);
570 len
= skb
->len
- sizeof(struct udphdr
);
571 rqstp
->rq_arg
.len
= len
;
573 rqstp
->rq_prot
= IPPROTO_UDP
;
575 if (!svc_udp_get_dest_address(rqstp
, cmh
)) {
578 "svc: received unknown control message %d/%d; "
579 "dropping RPC reply datagram\n",
580 cmh
->cmsg_level
, cmh
->cmsg_type
);
581 skb_free_datagram_locked(svsk
->sk_sk
, skb
);
585 if (skb_is_nonlinear(skb
)) {
586 /* we have to copy */
588 if (csum_partial_copy_to_xdr(&rqstp
->rq_arg
, skb
)) {
591 skb_free_datagram_locked(svsk
->sk_sk
, skb
);
595 skb_free_datagram_locked(svsk
->sk_sk
, skb
);
597 /* we can use it in-place */
598 rqstp
->rq_arg
.head
[0].iov_base
= skb
->data
+
599 sizeof(struct udphdr
);
600 rqstp
->rq_arg
.head
[0].iov_len
= len
;
601 if (skb_checksum_complete(skb
)) {
602 skb_free_datagram_locked(svsk
->sk_sk
, skb
);
605 rqstp
->rq_xprt_ctxt
= skb
;
608 rqstp
->rq_arg
.page_base
= 0;
609 if (len
<= rqstp
->rq_arg
.head
[0].iov_len
) {
610 rqstp
->rq_arg
.head
[0].iov_len
= len
;
611 rqstp
->rq_arg
.page_len
= 0;
612 rqstp
->rq_respages
= rqstp
->rq_pages
+1;
614 rqstp
->rq_arg
.page_len
= len
- rqstp
->rq_arg
.head
[0].iov_len
;
615 rqstp
->rq_respages
= rqstp
->rq_pages
+ 1 +
616 DIV_ROUND_UP(rqstp
->rq_arg
.page_len
, PAGE_SIZE
);
620 serv
->sv_stats
->netudpcnt
++;
626 svc_udp_sendto(struct svc_rqst
*rqstp
)
630 error
= svc_sendto(rqstp
, &rqstp
->rq_res
);
631 if (error
== -ECONNREFUSED
)
632 /* ICMP error on earlier request. */
633 error
= svc_sendto(rqstp
, &rqstp
->rq_res
);
638 static void svc_udp_prep_reply_hdr(struct svc_rqst
*rqstp
)
642 static int svc_udp_has_wspace(struct svc_xprt
*xprt
)
644 struct svc_sock
*svsk
= container_of(xprt
, struct svc_sock
, sk_xprt
);
645 struct svc_serv
*serv
= xprt
->xpt_server
;
646 unsigned long required
;
649 * Set the SOCK_NOSPACE flag before checking the available
652 set_bit(SOCK_NOSPACE
, &svsk
->sk_sock
->flags
);
653 required
= atomic_read(&svsk
->sk_xprt
.xpt_reserved
) + serv
->sv_max_mesg
;
654 if (required
*2 > sock_wspace(svsk
->sk_sk
))
656 clear_bit(SOCK_NOSPACE
, &svsk
->sk_sock
->flags
);
660 static struct svc_xprt
*svc_udp_accept(struct svc_xprt
*xprt
)
666 static struct svc_xprt
*svc_udp_create(struct svc_serv
*serv
,
667 struct sockaddr
*sa
, int salen
,
670 return svc_create_socket(serv
, IPPROTO_UDP
, sa
, salen
, flags
);
673 static struct svc_xprt_ops svc_udp_ops
= {
674 .xpo_create
= svc_udp_create
,
675 .xpo_recvfrom
= svc_udp_recvfrom
,
676 .xpo_sendto
= svc_udp_sendto
,
677 .xpo_release_rqst
= svc_release_skb
,
678 .xpo_detach
= svc_sock_detach
,
679 .xpo_free
= svc_sock_free
,
680 .xpo_prep_reply_hdr
= svc_udp_prep_reply_hdr
,
681 .xpo_has_wspace
= svc_udp_has_wspace
,
682 .xpo_accept
= svc_udp_accept
,
685 static struct svc_xprt_class svc_udp_class
= {
687 .xcl_owner
= THIS_MODULE
,
688 .xcl_ops
= &svc_udp_ops
,
689 .xcl_max_payload
= RPCSVC_MAXPAYLOAD_UDP
,
692 static void svc_udp_init(struct svc_sock
*svsk
, struct svc_serv
*serv
)
694 int err
, level
, optname
, one
= 1;
696 svc_xprt_init(&svc_udp_class
, &svsk
->sk_xprt
, serv
);
697 clear_bit(XPT_CACHE_AUTH
, &svsk
->sk_xprt
.xpt_flags
);
698 svsk
->sk_sk
->sk_data_ready
= svc_udp_data_ready
;
699 svsk
->sk_sk
->sk_write_space
= svc_write_space
;
701 /* initialise setting must have enough space to
702 * receive and respond to one request.
703 * svc_udp_recvfrom will re-adjust if necessary
705 svc_sock_setbufsize(svsk
->sk_sock
,
706 3 * svsk
->sk_xprt
.xpt_server
->sv_max_mesg
,
707 3 * svsk
->sk_xprt
.xpt_server
->sv_max_mesg
);
709 /* data might have come in before data_ready set up */
710 set_bit(XPT_DATA
, &svsk
->sk_xprt
.xpt_flags
);
711 set_bit(XPT_CHNGBUF
, &svsk
->sk_xprt
.xpt_flags
);
713 /* make sure we get destination address info */
714 switch (svsk
->sk_sk
->sk_family
) {
717 optname
= IP_PKTINFO
;
721 optname
= IPV6_RECVPKTINFO
;
726 err
= kernel_setsockopt(svsk
->sk_sock
, level
, optname
,
727 (char *)&one
, sizeof(one
));
728 dprintk("svc: kernel_setsockopt returned %d\n", err
);
732 * A data_ready event on a listening socket means there's a connection
733 * pending. Do not use state_change as a substitute for it.
735 static void svc_tcp_listen_data_ready(struct sock
*sk
, int count_unused
)
737 struct svc_sock
*svsk
= (struct svc_sock
*)sk
->sk_user_data
;
739 dprintk("svc: socket %p TCP (listen) state change %d\n",
743 * This callback may called twice when a new connection
744 * is established as a child socket inherits everything
745 * from a parent LISTEN socket.
746 * 1) data_ready method of the parent socket will be called
747 * when one of child sockets become ESTABLISHED.
748 * 2) data_ready method of the child socket may be called
749 * when it receives data before the socket is accepted.
750 * In case of 2, we should ignore it silently.
752 if (sk
->sk_state
== TCP_LISTEN
) {
754 set_bit(XPT_CONN
, &svsk
->sk_xprt
.xpt_flags
);
755 svc_xprt_enqueue(&svsk
->sk_xprt
);
757 printk("svc: socket %p: no user data\n", sk
);
760 if (sk
->sk_sleep
&& waitqueue_active(sk
->sk_sleep
))
761 wake_up_interruptible_all(sk
->sk_sleep
);
765 * A state change on a connected socket means it's dying or dead.
767 static void svc_tcp_state_change(struct sock
*sk
)
769 struct svc_sock
*svsk
= (struct svc_sock
*)sk
->sk_user_data
;
771 dprintk("svc: socket %p TCP (connected) state change %d (svsk %p)\n",
772 sk
, sk
->sk_state
, sk
->sk_user_data
);
775 printk("svc: socket %p: no user data\n", sk
);
777 set_bit(XPT_CLOSE
, &svsk
->sk_xprt
.xpt_flags
);
778 svc_xprt_enqueue(&svsk
->sk_xprt
);
780 if (sk
->sk_sleep
&& waitqueue_active(sk
->sk_sleep
))
781 wake_up_interruptible_all(sk
->sk_sleep
);
784 static void svc_tcp_data_ready(struct sock
*sk
, int count
)
786 struct svc_sock
*svsk
= (struct svc_sock
*)sk
->sk_user_data
;
788 dprintk("svc: socket %p TCP data ready (svsk %p)\n",
789 sk
, sk
->sk_user_data
);
791 set_bit(XPT_DATA
, &svsk
->sk_xprt
.xpt_flags
);
792 svc_xprt_enqueue(&svsk
->sk_xprt
);
794 if (sk
->sk_sleep
&& waitqueue_active(sk
->sk_sleep
))
795 wake_up_interruptible(sk
->sk_sleep
);
799 * Accept a TCP connection
801 static struct svc_xprt
*svc_tcp_accept(struct svc_xprt
*xprt
)
803 struct svc_sock
*svsk
= container_of(xprt
, struct svc_sock
, sk_xprt
);
804 struct sockaddr_storage addr
;
805 struct sockaddr
*sin
= (struct sockaddr
*) &addr
;
806 struct svc_serv
*serv
= svsk
->sk_xprt
.xpt_server
;
807 struct socket
*sock
= svsk
->sk_sock
;
808 struct socket
*newsock
;
809 struct svc_sock
*newsvsk
;
811 RPC_IFDEBUG(char buf
[RPC_MAX_ADDRBUFLEN
]);
813 dprintk("svc: tcp_accept %p sock %p\n", svsk
, sock
);
817 clear_bit(XPT_CONN
, &svsk
->sk_xprt
.xpt_flags
);
818 err
= kernel_accept(sock
, &newsock
, O_NONBLOCK
);
821 printk(KERN_WARNING
"%s: no more sockets!\n",
823 else if (err
!= -EAGAIN
&& net_ratelimit())
824 printk(KERN_WARNING
"%s: accept failed (err %d)!\n",
825 serv
->sv_name
, -err
);
828 set_bit(XPT_CONN
, &svsk
->sk_xprt
.xpt_flags
);
830 err
= kernel_getpeername(newsock
, sin
, &slen
);
833 printk(KERN_WARNING
"%s: peername failed (err %d)!\n",
834 serv
->sv_name
, -err
);
835 goto failed
; /* aborted connection or whatever */
838 /* Ideally, we would want to reject connections from unauthorized
839 * hosts here, but when we get encryption, the IP of the host won't
840 * tell us anything. For now just warn about unpriv connections.
842 if (!svc_port_is_privileged(sin
)) {
844 "%s: connect from unprivileged port: %s\n",
846 __svc_print_addr(sin
, buf
, sizeof(buf
)));
848 dprintk("%s: connect from %s\n", serv
->sv_name
,
849 __svc_print_addr(sin
, buf
, sizeof(buf
)));
851 /* make sure that a write doesn't block forever when
854 newsock
->sk
->sk_sndtimeo
= HZ
*30;
856 if (!(newsvsk
= svc_setup_socket(serv
, newsock
, &err
,
857 (SVC_SOCK_ANONYMOUS
| SVC_SOCK_TEMPORARY
))))
859 svc_xprt_set_remote(&newsvsk
->sk_xprt
, sin
, slen
);
860 err
= kernel_getsockname(newsock
, sin
, &slen
);
861 if (unlikely(err
< 0)) {
862 dprintk("svc_tcp_accept: kernel_getsockname error %d\n", -err
);
863 slen
= offsetof(struct sockaddr
, sa_data
);
865 svc_xprt_set_local(&newsvsk
->sk_xprt
, sin
, slen
);
868 serv
->sv_stats
->nettcpconn
++;
870 return &newsvsk
->sk_xprt
;
873 sock_release(newsock
);
879 * If we haven't gotten the record length yet, get the next four bytes.
880 * Otherwise try to gobble up as much as possible up to the complete
883 static int svc_tcp_recv_record(struct svc_sock
*svsk
, struct svc_rqst
*rqstp
)
885 struct svc_serv
*serv
= svsk
->sk_xprt
.xpt_server
;
888 if (test_and_clear_bit(XPT_CHNGBUF
, &svsk
->sk_xprt
.xpt_flags
))
889 /* sndbuf needs to have room for one request
890 * per thread, otherwise we can stall even when the
891 * network isn't a bottleneck.
893 * We count all threads rather than threads in a
894 * particular pool, which provides an upper bound
895 * on the number of threads which will access the socket.
897 * rcvbuf just needs to be able to hold a few requests.
898 * Normally they will be removed from the queue
899 * as soon a a complete request arrives.
901 svc_sock_setbufsize(svsk
->sk_sock
,
902 (serv
->sv_nrthreads
+3) * serv
->sv_max_mesg
,
903 3 * serv
->sv_max_mesg
);
905 clear_bit(XPT_DATA
, &svsk
->sk_xprt
.xpt_flags
);
907 if (svsk
->sk_tcplen
< sizeof(rpc_fraghdr
)) {
908 int want
= sizeof(rpc_fraghdr
) - svsk
->sk_tcplen
;
911 iov
.iov_base
= ((char *) &svsk
->sk_reclen
) + svsk
->sk_tcplen
;
913 if ((len
= svc_recvfrom(rqstp
, &iov
, 1, want
)) < 0)
915 svsk
->sk_tcplen
+= len
;
918 dprintk("svc: short recvfrom while reading record "
919 "length (%d of %d)\n", len
, want
);
920 svc_xprt_received(&svsk
->sk_xprt
);
921 goto err_again
; /* record header not complete */
924 svsk
->sk_reclen
= ntohl(svsk
->sk_reclen
);
925 if (!(svsk
->sk_reclen
& RPC_LAST_STREAM_FRAGMENT
)) {
926 /* FIXME: technically, a record can be fragmented,
927 * and non-terminal fragments will not have the top
928 * bit set in the fragment length header.
929 * But apparently no known nfs clients send fragmented
932 printk(KERN_NOTICE
"RPC: multiple fragments "
933 "per record not supported\n");
937 svsk
->sk_reclen
&= RPC_FRAGMENT_SIZE_MASK
;
938 dprintk("svc: TCP record, %d bytes\n", svsk
->sk_reclen
);
939 if (svsk
->sk_reclen
> serv
->sv_max_mesg
) {
941 printk(KERN_NOTICE
"RPC: "
942 "fragment too large: 0x%08lx\n",
943 (unsigned long)svsk
->sk_reclen
);
948 /* Check whether enough data is available */
949 len
= svc_recv_available(svsk
);
953 if (len
< svsk
->sk_reclen
) {
954 dprintk("svc: incomplete TCP record (%d of %d)\n",
955 len
, svsk
->sk_reclen
);
956 svc_xprt_received(&svsk
->sk_xprt
);
957 goto err_again
; /* record not complete */
959 len
= svsk
->sk_reclen
;
960 set_bit(XPT_DATA
, &svsk
->sk_xprt
.xpt_flags
);
964 if (len
== -EAGAIN
) {
965 dprintk("RPC: TCP recv_record got EAGAIN\n");
966 svc_xprt_received(&svsk
->sk_xprt
);
970 set_bit(XPT_CLOSE
, &svsk
->sk_xprt
.xpt_flags
);
971 svc_xprt_received(&svsk
->sk_xprt
);
976 static int svc_process_calldir(struct svc_sock
*svsk
, struct svc_rqst
*rqstp
,
977 struct rpc_rqst
**reqpp
, struct kvec
*vec
)
979 struct rpc_rqst
*req
= NULL
;
985 len
= svc_recvfrom(rqstp
, vec
, 1, 8);
989 p
= (u32
*)rqstp
->rq_arg
.head
[0].iov_base
;
994 /* REQUEST is the most common case */
995 vec
[0] = rqstp
->rq_arg
.head
[0];
998 if (svsk
->sk_bc_xprt
)
999 req
= xprt_lookup_rqst(svsk
->sk_bc_xprt
, xid
);
1003 "%s: Got unrecognized reply: "
1004 "calldir 0x%x sk_bc_xprt %p xid %08x\n",
1005 __func__
, ntohl(calldir
),
1006 svsk
->sk_bc_xprt
, xid
);
1007 vec
[0] = rqstp
->rq_arg
.head
[0];
1011 memcpy(&req
->rq_private_buf
, &req
->rq_rcv_buf
,
1012 sizeof(struct xdr_buf
));
1013 /* copy the xid and call direction */
1014 memcpy(req
->rq_private_buf
.head
[0].iov_base
,
1015 rqstp
->rq_arg
.head
[0].iov_base
, 8);
1016 vec
[0] = req
->rq_private_buf
.head
[0];
1019 vec
[0].iov_base
+= 8;
1020 vec
[0].iov_len
-= 8;
1021 len
= svsk
->sk_reclen
- 8;
1028 * Receive data from a TCP socket.
1030 static int svc_tcp_recvfrom(struct svc_rqst
*rqstp
)
1032 struct svc_sock
*svsk
=
1033 container_of(rqstp
->rq_xprt
, struct svc_sock
, sk_xprt
);
1034 struct svc_serv
*serv
= svsk
->sk_xprt
.xpt_server
;
1038 struct rpc_rqst
*req
= NULL
;
1040 dprintk("svc: tcp_recv %p data %d conn %d close %d\n",
1041 svsk
, test_bit(XPT_DATA
, &svsk
->sk_xprt
.xpt_flags
),
1042 test_bit(XPT_CONN
, &svsk
->sk_xprt
.xpt_flags
),
1043 test_bit(XPT_CLOSE
, &svsk
->sk_xprt
.xpt_flags
));
1045 len
= svc_tcp_recv_record(svsk
, rqstp
);
1049 vec
= rqstp
->rq_vec
;
1050 vec
[0] = rqstp
->rq_arg
.head
[0];
1054 * We have enough data for the whole tcp record. Let's try and read the
1055 * first 8 bytes to get the xid and the call direction. We can use this
1056 * to figure out if this is a call or a reply to a callback. If
1057 * sk_reclen is < 8 (xid and calldir), then this is a malformed packet.
1058 * In that case, don't bother with the calldir and just read the data.
1059 * It will be rejected in svc_process.
1062 len
= svc_process_calldir(svsk
, rqstp
, &req
, vec
);
1069 while (vlen
< len
) {
1070 vec
[pnum
].iov_base
= (req
) ?
1071 page_address(req
->rq_private_buf
.pages
[pnum
- 1]) :
1072 page_address(rqstp
->rq_pages
[pnum
]);
1073 vec
[pnum
].iov_len
= PAGE_SIZE
;
1077 rqstp
->rq_respages
= &rqstp
->rq_pages
[pnum
];
1079 /* Now receive data */
1080 len
= svc_recvfrom(rqstp
, vec
, pnum
, len
);
1085 * Account for the 8 bytes we read earlier
1090 xprt_complete_rqst(req
->rq_task
, len
);
1094 dprintk("svc: TCP complete record (%d bytes)\n", len
);
1095 rqstp
->rq_arg
.len
= len
;
1096 rqstp
->rq_arg
.page_base
= 0;
1097 if (len
<= rqstp
->rq_arg
.head
[0].iov_len
) {
1098 rqstp
->rq_arg
.head
[0].iov_len
= len
;
1099 rqstp
->rq_arg
.page_len
= 0;
1101 rqstp
->rq_arg
.page_len
= len
- rqstp
->rq_arg
.head
[0].iov_len
;
1104 rqstp
->rq_xprt_ctxt
= NULL
;
1105 rqstp
->rq_prot
= IPPROTO_TCP
;
1108 /* Reset TCP read info */
1109 svsk
->sk_reclen
= 0;
1110 svsk
->sk_tcplen
= 0;
1112 svc_xprt_copy_addrs(rqstp
, &svsk
->sk_xprt
);
1113 svc_xprt_received(&svsk
->sk_xprt
);
1115 serv
->sv_stats
->nettcpcnt
++;
1120 if (len
== -EAGAIN
) {
1121 dprintk("RPC: TCP recvfrom got EAGAIN\n");
1122 svc_xprt_received(&svsk
->sk_xprt
);
1126 if (len
!= -EAGAIN
) {
1127 printk(KERN_NOTICE
"%s: recvfrom returned errno %d\n",
1128 svsk
->sk_xprt
.xpt_server
->sv_name
, -len
);
1129 set_bit(XPT_CLOSE
, &svsk
->sk_xprt
.xpt_flags
);
1135 * Send out data on TCP socket.
1137 static int svc_tcp_sendto(struct svc_rqst
*rqstp
)
1139 struct xdr_buf
*xbufp
= &rqstp
->rq_res
;
1143 /* Set up the first element of the reply kvec.
1144 * Any other kvecs that may be in use have been taken
1145 * care of by the server implementation itself.
1147 reclen
= htonl(0x80000000|((xbufp
->len
) - 4));
1148 memcpy(xbufp
->head
[0].iov_base
, &reclen
, 4);
1150 if (test_bit(XPT_DEAD
, &rqstp
->rq_xprt
->xpt_flags
))
1153 sent
= svc_sendto(rqstp
, &rqstp
->rq_res
);
1154 if (sent
!= xbufp
->len
) {
1156 "rpc-srv/tcp: %s: %s %d when sending %d bytes "
1157 "- shutting down socket\n",
1158 rqstp
->rq_xprt
->xpt_server
->sv_name
,
1159 (sent
<0)?"got error":"sent only",
1161 set_bit(XPT_CLOSE
, &rqstp
->rq_xprt
->xpt_flags
);
1162 svc_xprt_enqueue(rqstp
->rq_xprt
);
1169 * Setup response header. TCP has a 4B record length field.
1171 static void svc_tcp_prep_reply_hdr(struct svc_rqst
*rqstp
)
1173 struct kvec
*resv
= &rqstp
->rq_res
.head
[0];
1175 /* tcp needs a space for the record length... */
1179 static int svc_tcp_has_wspace(struct svc_xprt
*xprt
)
1181 struct svc_sock
*svsk
= container_of(xprt
, struct svc_sock
, sk_xprt
);
1182 struct svc_serv
*serv
= svsk
->sk_xprt
.xpt_server
;
1185 if (test_bit(XPT_LISTENER
, &xprt
->xpt_flags
))
1187 required
= atomic_read(&xprt
->xpt_reserved
) + serv
->sv_max_mesg
;
1188 if (sk_stream_wspace(svsk
->sk_sk
) >= required
)
1190 set_bit(SOCK_NOSPACE
, &svsk
->sk_sock
->flags
);
1194 static struct svc_xprt
*svc_tcp_create(struct svc_serv
*serv
,
1195 struct sockaddr
*sa
, int salen
,
1198 return svc_create_socket(serv
, IPPROTO_TCP
, sa
, salen
, flags
);
1201 static struct svc_xprt_ops svc_tcp_ops
= {
1202 .xpo_create
= svc_tcp_create
,
1203 .xpo_recvfrom
= svc_tcp_recvfrom
,
1204 .xpo_sendto
= svc_tcp_sendto
,
1205 .xpo_release_rqst
= svc_release_skb
,
1206 .xpo_detach
= svc_tcp_sock_detach
,
1207 .xpo_free
= svc_sock_free
,
1208 .xpo_prep_reply_hdr
= svc_tcp_prep_reply_hdr
,
1209 .xpo_has_wspace
= svc_tcp_has_wspace
,
1210 .xpo_accept
= svc_tcp_accept
,
1213 static struct svc_xprt_class svc_tcp_class
= {
1215 .xcl_owner
= THIS_MODULE
,
1216 .xcl_ops
= &svc_tcp_ops
,
1217 .xcl_max_payload
= RPCSVC_MAXPAYLOAD_TCP
,
1220 void svc_init_xprt_sock(void)
1222 svc_reg_xprt_class(&svc_tcp_class
);
1223 svc_reg_xprt_class(&svc_udp_class
);
1226 void svc_cleanup_xprt_sock(void)
1228 svc_unreg_xprt_class(&svc_tcp_class
);
1229 svc_unreg_xprt_class(&svc_udp_class
);
1232 static void svc_tcp_init(struct svc_sock
*svsk
, struct svc_serv
*serv
)
1234 struct sock
*sk
= svsk
->sk_sk
;
1236 svc_xprt_init(&svc_tcp_class
, &svsk
->sk_xprt
, serv
);
1237 set_bit(XPT_CACHE_AUTH
, &svsk
->sk_xprt
.xpt_flags
);
1238 if (sk
->sk_state
== TCP_LISTEN
) {
1239 dprintk("setting up TCP socket for listening\n");
1240 set_bit(XPT_LISTENER
, &svsk
->sk_xprt
.xpt_flags
);
1241 sk
->sk_data_ready
= svc_tcp_listen_data_ready
;
1242 set_bit(XPT_CONN
, &svsk
->sk_xprt
.xpt_flags
);
1244 dprintk("setting up TCP socket for reading\n");
1245 sk
->sk_state_change
= svc_tcp_state_change
;
1246 sk
->sk_data_ready
= svc_tcp_data_ready
;
1247 sk
->sk_write_space
= svc_tcp_write_space
;
1249 svsk
->sk_reclen
= 0;
1250 svsk
->sk_tcplen
= 0;
1252 tcp_sk(sk
)->nonagle
|= TCP_NAGLE_OFF
;
1254 /* initialise setting must have enough space to
1255 * receive and respond to one request.
1256 * svc_tcp_recvfrom will re-adjust if necessary
1258 svc_sock_setbufsize(svsk
->sk_sock
,
1259 3 * svsk
->sk_xprt
.xpt_server
->sv_max_mesg
,
1260 3 * svsk
->sk_xprt
.xpt_server
->sv_max_mesg
);
1262 set_bit(XPT_CHNGBUF
, &svsk
->sk_xprt
.xpt_flags
);
1263 set_bit(XPT_DATA
, &svsk
->sk_xprt
.xpt_flags
);
1264 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1265 set_bit(XPT_CLOSE
, &svsk
->sk_xprt
.xpt_flags
);
1269 void svc_sock_update_bufs(struct svc_serv
*serv
)
1272 * The number of server threads has changed. Update
1273 * rcvbuf and sndbuf accordingly on all sockets
1275 struct list_head
*le
;
1277 spin_lock_bh(&serv
->sv_lock
);
1278 list_for_each(le
, &serv
->sv_permsocks
) {
1279 struct svc_sock
*svsk
=
1280 list_entry(le
, struct svc_sock
, sk_xprt
.xpt_list
);
1281 set_bit(XPT_CHNGBUF
, &svsk
->sk_xprt
.xpt_flags
);
1283 list_for_each(le
, &serv
->sv_tempsocks
) {
1284 struct svc_sock
*svsk
=
1285 list_entry(le
, struct svc_sock
, sk_xprt
.xpt_list
);
1286 set_bit(XPT_CHNGBUF
, &svsk
->sk_xprt
.xpt_flags
);
1288 spin_unlock_bh(&serv
->sv_lock
);
1290 EXPORT_SYMBOL_GPL(svc_sock_update_bufs
);
1293 * Initialize socket for RPC use and create svc_sock struct
1294 * XXX: May want to setsockopt SO_SNDBUF and SO_RCVBUF.
1296 static struct svc_sock
*svc_setup_socket(struct svc_serv
*serv
,
1297 struct socket
*sock
,
1298 int *errp
, int flags
)
1300 struct svc_sock
*svsk
;
1302 int pmap_register
= !(flags
& SVC_SOCK_ANONYMOUS
);
1304 dprintk("svc: svc_setup_socket %p\n", sock
);
1305 if (!(svsk
= kzalloc(sizeof(*svsk
), GFP_KERNEL
))) {
1312 /* Register socket with portmapper */
1313 if (*errp
>= 0 && pmap_register
)
1314 *errp
= svc_register(serv
, inet
->sk_family
, inet
->sk_protocol
,
1315 ntohs(inet_sk(inet
)->inet_sport
));
1322 inet
->sk_user_data
= svsk
;
1323 svsk
->sk_sock
= sock
;
1325 svsk
->sk_ostate
= inet
->sk_state_change
;
1326 svsk
->sk_odata
= inet
->sk_data_ready
;
1327 svsk
->sk_owspace
= inet
->sk_write_space
;
1329 /* Initialize the socket */
1330 if (sock
->type
== SOCK_DGRAM
)
1331 svc_udp_init(svsk
, serv
);
1333 svc_tcp_init(svsk
, serv
);
1335 dprintk("svc: svc_setup_socket created %p (inet %p)\n",
1342 * svc_addsock - add a listener socket to an RPC service
1343 * @serv: pointer to RPC service to which to add a new listener
1344 * @fd: file descriptor of the new listener
1345 * @name_return: pointer to buffer to fill in with name of listener
1346 * @len: size of the buffer
1348 * Fills in socket name and returns positive length of name if successful.
1349 * Name is terminated with '\n'. On error, returns a negative errno
1352 int svc_addsock(struct svc_serv
*serv
, const int fd
, char *name_return
,
1356 struct socket
*so
= sockfd_lookup(fd
, &err
);
1357 struct svc_sock
*svsk
= NULL
;
1361 if ((so
->sk
->sk_family
!= PF_INET
) && (so
->sk
->sk_family
!= PF_INET6
))
1362 err
= -EAFNOSUPPORT
;
1363 else if (so
->sk
->sk_protocol
!= IPPROTO_TCP
&&
1364 so
->sk
->sk_protocol
!= IPPROTO_UDP
)
1365 err
= -EPROTONOSUPPORT
;
1366 else if (so
->state
> SS_UNCONNECTED
)
1369 if (!try_module_get(THIS_MODULE
))
1372 svsk
= svc_setup_socket(serv
, so
, &err
,
1375 struct sockaddr_storage addr
;
1376 struct sockaddr
*sin
= (struct sockaddr
*)&addr
;
1378 if (kernel_getsockname(svsk
->sk_sock
, sin
, &salen
) == 0)
1379 svc_xprt_set_local(&svsk
->sk_xprt
, sin
, salen
);
1380 clear_bit(XPT_TEMP
, &svsk
->sk_xprt
.xpt_flags
);
1381 spin_lock_bh(&serv
->sv_lock
);
1382 list_add(&svsk
->sk_xprt
.xpt_list
, &serv
->sv_permsocks
);
1383 spin_unlock_bh(&serv
->sv_lock
);
1384 svc_xprt_received(&svsk
->sk_xprt
);
1387 module_put(THIS_MODULE
);
1393 return svc_one_sock_name(svsk
, name_return
, len
);
1395 EXPORT_SYMBOL_GPL(svc_addsock
);
1398 * Create socket for RPC service.
1400 static struct svc_xprt
*svc_create_socket(struct svc_serv
*serv
,
1402 struct sockaddr
*sin
, int len
,
1405 struct svc_sock
*svsk
;
1406 struct socket
*sock
;
1409 struct sockaddr_storage addr
;
1410 struct sockaddr
*newsin
= (struct sockaddr
*)&addr
;
1414 RPC_IFDEBUG(char buf
[RPC_MAX_ADDRBUFLEN
]);
1416 dprintk("svc: svc_create_socket(%s, %d, %s)\n",
1417 serv
->sv_program
->pg_name
, protocol
,
1418 __svc_print_addr(sin
, buf
, sizeof(buf
)));
1420 if (protocol
!= IPPROTO_UDP
&& protocol
!= IPPROTO_TCP
) {
1421 printk(KERN_WARNING
"svc: only UDP and TCP "
1422 "sockets supported\n");
1423 return ERR_PTR(-EINVAL
);
1426 type
= (protocol
== IPPROTO_UDP
)? SOCK_DGRAM
: SOCK_STREAM
;
1427 switch (sin
->sa_family
) {
1435 return ERR_PTR(-EINVAL
);
1438 error
= sock_create_kern(family
, type
, protocol
, &sock
);
1440 return ERR_PTR(error
);
1442 svc_reclassify_socket(sock
);
1445 * If this is an PF_INET6 listener, we want to avoid
1446 * getting requests from IPv4 remotes. Those should
1447 * be shunted to a PF_INET listener via rpcbind.
1450 if (family
== PF_INET6
)
1451 kernel_setsockopt(sock
, SOL_IPV6
, IPV6_V6ONLY
,
1452 (char *)&val
, sizeof(val
));
1454 if (type
== SOCK_STREAM
)
1455 sock
->sk
->sk_reuse
= 1; /* allow address reuse */
1456 error
= kernel_bind(sock
, sin
, len
);
1461 error
= kernel_getsockname(sock
, newsin
, &newlen
);
1465 if (protocol
== IPPROTO_TCP
) {
1466 if ((error
= kernel_listen(sock
, 64)) < 0)
1470 if ((svsk
= svc_setup_socket(serv
, sock
, &error
, flags
)) != NULL
) {
1471 svc_xprt_set_local(&svsk
->sk_xprt
, newsin
, newlen
);
1472 return (struct svc_xprt
*)svsk
;
1476 dprintk("svc: svc_create_socket error = %d\n", -error
);
1478 return ERR_PTR(error
);
1482 * Detach the svc_sock from the socket so that no
1483 * more callbacks occur.
1485 static void svc_sock_detach(struct svc_xprt
*xprt
)
1487 struct svc_sock
*svsk
= container_of(xprt
, struct svc_sock
, sk_xprt
);
1488 struct sock
*sk
= svsk
->sk_sk
;
1490 dprintk("svc: svc_sock_detach(%p)\n", svsk
);
1492 /* put back the old socket callbacks */
1493 sk
->sk_state_change
= svsk
->sk_ostate
;
1494 sk
->sk_data_ready
= svsk
->sk_odata
;
1495 sk
->sk_write_space
= svsk
->sk_owspace
;
1497 if (sk
->sk_sleep
&& waitqueue_active(sk
->sk_sleep
))
1498 wake_up_interruptible(sk
->sk_sleep
);
1502 * Disconnect the socket, and reset the callbacks
1504 static void svc_tcp_sock_detach(struct svc_xprt
*xprt
)
1506 struct svc_sock
*svsk
= container_of(xprt
, struct svc_sock
, sk_xprt
);
1508 dprintk("svc: svc_tcp_sock_detach(%p)\n", svsk
);
1510 svc_sock_detach(xprt
);
1512 if (!test_bit(XPT_LISTENER
, &xprt
->xpt_flags
))
1513 kernel_sock_shutdown(svsk
->sk_sock
, SHUT_RDWR
);
1517 * Free the svc_sock's socket resources and the svc_sock itself.
1519 static void svc_sock_free(struct svc_xprt
*xprt
)
1521 struct svc_sock
*svsk
= container_of(xprt
, struct svc_sock
, sk_xprt
);
1522 dprintk("svc: svc_sock_free(%p)\n", svsk
);
1524 if (svsk
->sk_sock
->file
)
1525 sockfd_put(svsk
->sk_sock
);
1527 sock_release(svsk
->sk_sock
);
1532 * Create a svc_xprt.
1534 * For internal use only (e.g. nfsv4.1 backchannel).
1535 * Callers should typically use the xpo_create() method.
1537 struct svc_xprt
*svc_sock_create(struct svc_serv
*serv
, int prot
)
1539 struct svc_sock
*svsk
;
1540 struct svc_xprt
*xprt
= NULL
;
1542 dprintk("svc: %s\n", __func__
);
1543 svsk
= kzalloc(sizeof(*svsk
), GFP_KERNEL
);
1547 xprt
= &svsk
->sk_xprt
;
1548 if (prot
== IPPROTO_TCP
)
1549 svc_xprt_init(&svc_tcp_class
, xprt
, serv
);
1550 else if (prot
== IPPROTO_UDP
)
1551 svc_xprt_init(&svc_udp_class
, xprt
, serv
);
1555 dprintk("svc: %s return %p\n", __func__
, xprt
);
1558 EXPORT_SYMBOL_GPL(svc_sock_create
);
1561 * Destroy a svc_sock.
1563 void svc_sock_destroy(struct svc_xprt
*xprt
)
1566 kfree(container_of(xprt
, struct svc_sock
, sk_xprt
));
1568 EXPORT_SYMBOL_GPL(svc_sock_destroy
);