2 * net/tipc/socket.c: TIPC socket API
4 * Copyright (c) 2001-2007, 2012-2016, Ericsson AB
5 * Copyright (c) 2004-2008, 2010-2013, Wind River Systems
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the names of the copyright holders nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
20 * Alternatively, this software may be distributed under the terms of the
21 * GNU General Public License ("GPL") version 2 as published by the Free
22 * Software Foundation.
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34 * POSSIBILITY OF SUCH DAMAGE.
37 #include <linux/rhashtable.h>
38 #include <linux/sched/signal.h>
41 #include "name_table.h"
44 #include "name_distr.h"
49 #define CONN_TIMEOUT_DEFAULT 8000 /* default connect timeout = 8s */
50 #define CONN_PROBING_INTERVAL msecs_to_jiffies(3600000) /* [ms] => 1 h */
51 #define TIPC_FWD_MSG 1
52 #define TIPC_MAX_PORT 0xffffffff
53 #define TIPC_MIN_PORT 1
54 #define TIPC_ACK_RATE 4 /* ACK at 1/4 of of rcv window size */
57 TIPC_LISTEN
= TCP_LISTEN
,
58 TIPC_ESTABLISHED
= TCP_ESTABLISHED
,
59 TIPC_OPEN
= TCP_CLOSE
,
60 TIPC_DISCONNECTING
= TCP_CLOSE_WAIT
,
61 TIPC_CONNECTING
= TCP_SYN_SENT
,
65 * struct tipc_sock - TIPC socket structure
66 * @sk: socket - interacts with 'port' and with user via the socket API
67 * @conn_type: TIPC type used when connection was established
68 * @conn_instance: TIPC instance used when connection was established
69 * @published: non-zero if port has one or more associated names
70 * @max_pkt: maximum packet size "hint" used when building messages sent by port
71 * @portid: unique port identity in TIPC socket hash table
72 * @phdr: preformatted message header used when sending messages
73 * #cong_links: list of congested links
74 * @publications: list of publications for port
75 * @blocking_link: address of the congested link we are currently sleeping on
76 * @pub_count: total # of publications port has made during its lifetime
78 * @conn_timeout: the time we can wait for an unresponded setup request
79 * @dupl_rcvcnt: number of bytes counted twice, in both backlog and rcv queue
80 * @cong_link_cnt: number of congested links
81 * @sent_unacked: # messages sent by socket, and not yet acked by peer
82 * @rcv_unacked: # messages read by user, but not yet acked back to peer
83 * @peer: 'connected' peer for dgram/rdm
84 * @node: hash table node
85 * @mc_method: cookie for use between socket and broadcast layer
86 * @rcu: rcu struct for tipc_sock
96 struct list_head cong_links
;
97 struct list_head publications
;
100 atomic_t dupl_rcvcnt
;
108 struct sockaddr_tipc peer
;
109 struct rhash_head node
;
110 struct tipc_mc_method mc_method
;
114 static int tipc_backlog_rcv(struct sock
*sk
, struct sk_buff
*skb
);
115 static void tipc_data_ready(struct sock
*sk
);
116 static void tipc_write_space(struct sock
*sk
);
117 static void tipc_sock_destruct(struct sock
*sk
);
118 static int tipc_release(struct socket
*sock
);
119 static int tipc_accept(struct socket
*sock
, struct socket
*new_sock
, int flags
,
121 static void tipc_sk_timeout(unsigned long data
);
122 static int tipc_sk_publish(struct tipc_sock
*tsk
, uint scope
,
123 struct tipc_name_seq
const *seq
);
124 static int tipc_sk_withdraw(struct tipc_sock
*tsk
, uint scope
,
125 struct tipc_name_seq
const *seq
);
126 static struct tipc_sock
*tipc_sk_lookup(struct net
*net
, u32 portid
);
127 static int tipc_sk_insert(struct tipc_sock
*tsk
);
128 static void tipc_sk_remove(struct tipc_sock
*tsk
);
129 static int __tipc_sendstream(struct socket
*sock
, struct msghdr
*m
, size_t dsz
);
130 static int __tipc_sendmsg(struct socket
*sock
, struct msghdr
*m
, size_t dsz
);
132 static const struct proto_ops packet_ops
;
133 static const struct proto_ops stream_ops
;
134 static const struct proto_ops msg_ops
;
135 static struct proto tipc_proto
;
136 static const struct rhashtable_params tsk_rht_params
;
138 static u32
tsk_own_node(struct tipc_sock
*tsk
)
140 return msg_prevnode(&tsk
->phdr
);
143 static u32
tsk_peer_node(struct tipc_sock
*tsk
)
145 return msg_destnode(&tsk
->phdr
);
148 static u32
tsk_peer_port(struct tipc_sock
*tsk
)
150 return msg_destport(&tsk
->phdr
);
153 static bool tsk_unreliable(struct tipc_sock
*tsk
)
155 return msg_src_droppable(&tsk
->phdr
) != 0;
158 static void tsk_set_unreliable(struct tipc_sock
*tsk
, bool unreliable
)
160 msg_set_src_droppable(&tsk
->phdr
, unreliable
? 1 : 0);
163 static bool tsk_unreturnable(struct tipc_sock
*tsk
)
165 return msg_dest_droppable(&tsk
->phdr
) != 0;
168 static void tsk_set_unreturnable(struct tipc_sock
*tsk
, bool unreturnable
)
170 msg_set_dest_droppable(&tsk
->phdr
, unreturnable
? 1 : 0);
173 static int tsk_importance(struct tipc_sock
*tsk
)
175 return msg_importance(&tsk
->phdr
);
178 static int tsk_set_importance(struct tipc_sock
*tsk
, int imp
)
180 if (imp
> TIPC_CRITICAL_IMPORTANCE
)
182 msg_set_importance(&tsk
->phdr
, (u32
)imp
);
186 static struct tipc_sock
*tipc_sk(const struct sock
*sk
)
188 return container_of(sk
, struct tipc_sock
, sk
);
191 static bool tsk_conn_cong(struct tipc_sock
*tsk
)
193 return tsk
->snt_unacked
> tsk
->snd_win
;
196 /* tsk_blocks(): translate a buffer size in bytes to number of
197 * advertisable blocks, taking into account the ratio truesize(len)/len
198 * We can trust that this ratio is always < 4 for len >= FLOWCTL_BLK_SZ
200 static u16
tsk_adv_blocks(int len
)
202 return len
/ FLOWCTL_BLK_SZ
/ 4;
205 /* tsk_inc(): increment counter for sent or received data
206 * - If block based flow control is not supported by peer we
207 * fall back to message based ditto, incrementing the counter
209 static u16
tsk_inc(struct tipc_sock
*tsk
, int msglen
)
211 if (likely(tsk
->peer_caps
& TIPC_BLOCK_FLOWCTL
))
212 return ((msglen
/ FLOWCTL_BLK_SZ
) + 1);
217 * tsk_advance_rx_queue - discard first buffer in socket receive queue
219 * Caller must hold socket lock
221 static void tsk_advance_rx_queue(struct sock
*sk
)
223 kfree_skb(__skb_dequeue(&sk
->sk_receive_queue
));
226 /* tipc_sk_respond() : send response message back to sender
228 static void tipc_sk_respond(struct sock
*sk
, struct sk_buff
*skb
, int err
)
232 u32 onode
= tipc_own_addr(sock_net(sk
));
234 if (!tipc_msg_reverse(onode
, &skb
, err
))
237 dnode
= msg_destnode(buf_msg(skb
));
238 selector
= msg_origport(buf_msg(skb
));
239 tipc_node_xmit_skb(sock_net(sk
), skb
, dnode
, selector
);
243 * tsk_rej_rx_queue - reject all buffers in socket receive queue
245 * Caller must hold socket lock
247 static void tsk_rej_rx_queue(struct sock
*sk
)
251 while ((skb
= __skb_dequeue(&sk
->sk_receive_queue
)))
252 tipc_sk_respond(sk
, skb
, TIPC_ERR_NO_PORT
);
255 static bool tipc_sk_connected(struct sock
*sk
)
257 return sk
->sk_state
== TIPC_ESTABLISHED
;
260 /* tipc_sk_type_connectionless - check if the socket is datagram socket
263 * Returns true if connection less, false otherwise
265 static bool tipc_sk_type_connectionless(struct sock
*sk
)
267 return sk
->sk_type
== SOCK_RDM
|| sk
->sk_type
== SOCK_DGRAM
;
270 /* tsk_peer_msg - verify if message was sent by connected port's peer
272 * Handles cases where the node's network address has changed from
273 * the default of <0.0.0> to its configured setting.
275 static bool tsk_peer_msg(struct tipc_sock
*tsk
, struct tipc_msg
*msg
)
277 struct sock
*sk
= &tsk
->sk
;
278 struct tipc_net
*tn
= net_generic(sock_net(sk
), tipc_net_id
);
279 u32 peer_port
= tsk_peer_port(tsk
);
283 if (unlikely(!tipc_sk_connected(sk
)))
286 if (unlikely(msg_origport(msg
) != peer_port
))
289 orig_node
= msg_orignode(msg
);
290 peer_node
= tsk_peer_node(tsk
);
292 if (likely(orig_node
== peer_node
))
295 if (!orig_node
&& (peer_node
== tn
->own_addr
))
298 if (!peer_node
&& (orig_node
== tn
->own_addr
))
304 /* tipc_set_sk_state - set the sk_state of the socket
307 * Caller must hold socket lock
309 * Returns 0 on success, errno otherwise
311 static int tipc_set_sk_state(struct sock
*sk
, int state
)
313 int oldsk_state
= sk
->sk_state
;
321 case TIPC_CONNECTING
:
322 if (oldsk_state
== TIPC_OPEN
)
325 case TIPC_ESTABLISHED
:
326 if (oldsk_state
== TIPC_CONNECTING
||
327 oldsk_state
== TIPC_OPEN
)
330 case TIPC_DISCONNECTING
:
331 if (oldsk_state
== TIPC_CONNECTING
||
332 oldsk_state
== TIPC_ESTABLISHED
)
338 sk
->sk_state
= state
;
343 static int tipc_sk_sock_err(struct socket
*sock
, long *timeout
)
345 struct sock
*sk
= sock
->sk
;
346 int err
= sock_error(sk
);
347 int typ
= sock
->type
;
351 if (typ
== SOCK_STREAM
|| typ
== SOCK_SEQPACKET
) {
352 if (sk
->sk_state
== TIPC_DISCONNECTING
)
354 else if (!tipc_sk_connected(sk
))
359 if (signal_pending(current
))
360 return sock_intr_errno(*timeout
);
365 #define tipc_wait_for_cond(sock_, timeo_, condition_) \
370 while ((rc_ = !(condition_))) { \
371 DEFINE_WAIT_FUNC(wait_, woken_wake_function); \
373 rc_ = tipc_sk_sock_err((sock_), timeo_); \
376 prepare_to_wait(sk_sleep(sk_), &wait_, TASK_INTERRUPTIBLE); \
378 *(timeo_) = wait_woken(&wait_, TASK_INTERRUPTIBLE, *(timeo_)); \
379 sched_annotate_sleep(); \
381 remove_wait_queue(sk_sleep(sk_), &wait_); \
387 * tipc_sk_create - create a TIPC socket
388 * @net: network namespace (must be default network)
389 * @sock: pre-allocated socket structure
390 * @protocol: protocol indicator (must be 0)
391 * @kern: caused by kernel or by userspace?
393 * This routine creates additional data structures used by the TIPC socket,
394 * initializes them, and links them together.
396 * Returns 0 on success, errno otherwise
398 static int tipc_sk_create(struct net
*net
, struct socket
*sock
,
399 int protocol
, int kern
)
402 const struct proto_ops
*ops
;
404 struct tipc_sock
*tsk
;
405 struct tipc_msg
*msg
;
407 /* Validate arguments */
408 if (unlikely(protocol
!= 0))
409 return -EPROTONOSUPPORT
;
411 switch (sock
->type
) {
426 /* Allocate socket's protocol area */
427 sk
= sk_alloc(net
, AF_TIPC
, GFP_KERNEL
, &tipc_proto
, kern
);
432 tsk
->max_pkt
= MAX_PKT_DEFAULT
;
433 INIT_LIST_HEAD(&tsk
->publications
);
434 INIT_LIST_HEAD(&tsk
->cong_links
);
436 tn
= net_generic(sock_net(sk
), tipc_net_id
);
438 /* Finish initializing socket data structures */
440 sock_init_data(sock
, sk
);
441 tipc_set_sk_state(sk
, TIPC_OPEN
);
442 if (tipc_sk_insert(tsk
)) {
443 pr_warn("Socket create failed; port number exhausted\n");
447 /* Ensure tsk is visible before we read own_addr. */
450 tipc_msg_init(tn
->own_addr
, msg
, TIPC_LOW_IMPORTANCE
, TIPC_NAMED_MSG
,
453 msg_set_origport(msg
, tsk
->portid
);
454 setup_timer(&sk
->sk_timer
, tipc_sk_timeout
, (unsigned long)tsk
);
456 sk
->sk_backlog_rcv
= tipc_backlog_rcv
;
457 sk
->sk_rcvbuf
= sysctl_tipc_rmem
[1];
458 sk
->sk_data_ready
= tipc_data_ready
;
459 sk
->sk_write_space
= tipc_write_space
;
460 sk
->sk_destruct
= tipc_sock_destruct
;
461 tsk
->conn_timeout
= CONN_TIMEOUT_DEFAULT
;
462 atomic_set(&tsk
->dupl_rcvcnt
, 0);
464 /* Start out with safe limits until we receive an advertised window */
465 tsk
->snd_win
= tsk_adv_blocks(RCVBUF_MIN
);
466 tsk
->rcv_win
= tsk
->snd_win
;
468 if (tipc_sk_type_connectionless(sk
)) {
469 tsk_set_unreturnable(tsk
, true);
470 if (sock
->type
== SOCK_DGRAM
)
471 tsk_set_unreliable(tsk
, true);
477 static void tipc_sk_callback(struct rcu_head
*head
)
479 struct tipc_sock
*tsk
= container_of(head
, struct tipc_sock
, rcu
);
484 /* Caller should hold socket lock for the socket. */
485 static void __tipc_shutdown(struct socket
*sock
, int error
)
487 struct sock
*sk
= sock
->sk
;
488 struct tipc_sock
*tsk
= tipc_sk(sk
);
489 struct net
*net
= sock_net(sk
);
490 long timeout
= CONN_TIMEOUT_DEFAULT
;
491 u32 dnode
= tsk_peer_node(tsk
);
494 /* Avoid that hi-prio shutdown msgs bypass msgs in link wakeup queue */
495 tipc_wait_for_cond(sock
, &timeout
, (!tsk
->cong_link_cnt
&&
496 !tsk_conn_cong(tsk
)));
498 /* Reject all unreceived messages, except on an active connection
499 * (which disconnects locally & sends a 'FIN+' to peer).
501 while ((skb
= __skb_dequeue(&sk
->sk_receive_queue
)) != NULL
) {
502 if (TIPC_SKB_CB(skb
)->bytes_read
) {
506 if (!tipc_sk_type_connectionless(sk
) &&
507 sk
->sk_state
!= TIPC_DISCONNECTING
) {
508 tipc_set_sk_state(sk
, TIPC_DISCONNECTING
);
509 tipc_node_remove_conn(net
, dnode
, tsk
->portid
);
511 tipc_sk_respond(sk
, skb
, error
);
514 if (tipc_sk_type_connectionless(sk
))
517 if (sk
->sk_state
!= TIPC_DISCONNECTING
) {
518 skb
= tipc_msg_create(TIPC_CRITICAL_IMPORTANCE
,
519 TIPC_CONN_MSG
, SHORT_H_SIZE
, 0, dnode
,
520 tsk_own_node(tsk
), tsk_peer_port(tsk
),
523 tipc_node_xmit_skb(net
, skb
, dnode
, tsk
->portid
);
524 tipc_node_remove_conn(net
, dnode
, tsk
->portid
);
525 tipc_set_sk_state(sk
, TIPC_DISCONNECTING
);
530 * tipc_release - destroy a TIPC socket
531 * @sock: socket to destroy
533 * This routine cleans up any messages that are still queued on the socket.
534 * For DGRAM and RDM socket types, all queued messages are rejected.
535 * For SEQPACKET and STREAM socket types, the first message is rejected
536 * and any others are discarded. (If the first message on a STREAM socket
537 * is partially-read, it is discarded and the next one is rejected instead.)
539 * NOTE: Rejected messages are not necessarily returned to the sender! They
540 * are returned or discarded according to the "destination droppable" setting
541 * specified for the message by the sender.
543 * Returns 0 on success, errno otherwise
545 static int tipc_release(struct socket
*sock
)
547 struct sock
*sk
= sock
->sk
;
548 struct tipc_sock
*tsk
;
551 * Exit if socket isn't fully initialized (occurs when a failed accept()
552 * releases a pre-allocated child socket that was never used)
560 __tipc_shutdown(sock
, TIPC_ERR_NO_PORT
);
561 sk
->sk_shutdown
= SHUTDOWN_MASK
;
562 tipc_sk_withdraw(tsk
, 0, NULL
);
563 sk_stop_timer(sk
, &sk
->sk_timer
);
566 /* Reject any messages that accumulated in backlog queue */
568 u32_list_purge(&tsk
->cong_links
);
569 tsk
->cong_link_cnt
= 0;
570 call_rcu(&tsk
->rcu
, tipc_sk_callback
);
577 * tipc_bind - associate or disassocate TIPC name(s) with a socket
578 * @sock: socket structure
579 * @uaddr: socket address describing name(s) and desired operation
580 * @uaddr_len: size of socket address data structure
582 * Name and name sequence binding is indicated using a positive scope value;
583 * a negative scope value unbinds the specified name. Specifying no name
584 * (i.e. a socket address length of 0) unbinds all names from the socket.
586 * Returns 0 on success, errno otherwise
588 * NOTE: This routine doesn't need to take the socket lock since it doesn't
589 * access any non-constant socket information.
591 static int tipc_bind(struct socket
*sock
, struct sockaddr
*uaddr
,
594 struct sock
*sk
= sock
->sk
;
595 struct sockaddr_tipc
*addr
= (struct sockaddr_tipc
*)uaddr
;
596 struct tipc_sock
*tsk
= tipc_sk(sk
);
600 if (unlikely(!uaddr_len
)) {
601 res
= tipc_sk_withdraw(tsk
, 0, NULL
);
605 if (uaddr_len
< sizeof(struct sockaddr_tipc
)) {
609 if (addr
->family
!= AF_TIPC
) {
614 if (addr
->addrtype
== TIPC_ADDR_NAME
)
615 addr
->addr
.nameseq
.upper
= addr
->addr
.nameseq
.lower
;
616 else if (addr
->addrtype
!= TIPC_ADDR_NAMESEQ
) {
621 if ((addr
->addr
.nameseq
.type
< TIPC_RESERVED_TYPES
) &&
622 (addr
->addr
.nameseq
.type
!= TIPC_TOP_SRV
) &&
623 (addr
->addr
.nameseq
.type
!= TIPC_CFG_SRV
)) {
628 res
= (addr
->scope
> 0) ?
629 tipc_sk_publish(tsk
, addr
->scope
, &addr
->addr
.nameseq
) :
630 tipc_sk_withdraw(tsk
, -addr
->scope
, &addr
->addr
.nameseq
);
637 * tipc_getname - get port ID of socket or peer socket
638 * @sock: socket structure
639 * @uaddr: area for returned socket address
640 * @uaddr_len: area for returned length of socket address
641 * @peer: 0 = own ID, 1 = current peer ID, 2 = current/former peer ID
643 * Returns 0 on success, errno otherwise
645 * NOTE: This routine doesn't need to take the socket lock since it only
646 * accesses socket information that is unchanging (or which changes in
647 * a completely predictable manner).
649 static int tipc_getname(struct socket
*sock
, struct sockaddr
*uaddr
,
650 int *uaddr_len
, int peer
)
652 struct sockaddr_tipc
*addr
= (struct sockaddr_tipc
*)uaddr
;
653 struct sock
*sk
= sock
->sk
;
654 struct tipc_sock
*tsk
= tipc_sk(sk
);
655 struct tipc_net
*tn
= net_generic(sock_net(sock
->sk
), tipc_net_id
);
657 memset(addr
, 0, sizeof(*addr
));
659 if ((!tipc_sk_connected(sk
)) &&
660 ((peer
!= 2) || (sk
->sk_state
!= TIPC_DISCONNECTING
)))
662 addr
->addr
.id
.ref
= tsk_peer_port(tsk
);
663 addr
->addr
.id
.node
= tsk_peer_node(tsk
);
665 addr
->addr
.id
.ref
= tsk
->portid
;
666 addr
->addr
.id
.node
= tn
->own_addr
;
669 *uaddr_len
= sizeof(*addr
);
670 addr
->addrtype
= TIPC_ADDR_ID
;
671 addr
->family
= AF_TIPC
;
673 addr
->addr
.name
.domain
= 0;
679 * tipc_poll - read and possibly block on pollmask
680 * @file: file structure associated with the socket
681 * @sock: socket for which to calculate the poll bits
684 * Returns pollmask value
687 * It appears that the usual socket locking mechanisms are not useful here
688 * since the pollmask info is potentially out-of-date the moment this routine
689 * exits. TCP and other protocols seem to rely on higher level poll routines
690 * to handle any preventable race conditions, so TIPC will do the same ...
692 * IMPORTANT: The fact that a read or write operation is indicated does NOT
693 * imply that the operation will succeed, merely that it should be performed
694 * and will not block.
696 static unsigned int tipc_poll(struct file
*file
, struct socket
*sock
,
699 struct sock
*sk
= sock
->sk
;
700 struct tipc_sock
*tsk
= tipc_sk(sk
);
703 sock_poll_wait(file
, sk_sleep(sk
), wait
);
705 if (sk
->sk_shutdown
& RCV_SHUTDOWN
)
706 mask
|= POLLRDHUP
| POLLIN
| POLLRDNORM
;
707 if (sk
->sk_shutdown
== SHUTDOWN_MASK
)
710 switch (sk
->sk_state
) {
711 case TIPC_ESTABLISHED
:
712 if (!tsk
->cong_link_cnt
&& !tsk_conn_cong(tsk
))
716 case TIPC_CONNECTING
:
717 if (!skb_queue_empty(&sk
->sk_receive_queue
))
718 mask
|= (POLLIN
| POLLRDNORM
);
721 if (!tsk
->cong_link_cnt
)
723 if (tipc_sk_type_connectionless(sk
) &&
724 (!skb_queue_empty(&sk
->sk_receive_queue
)))
725 mask
|= (POLLIN
| POLLRDNORM
);
727 case TIPC_DISCONNECTING
:
728 mask
= (POLLIN
| POLLRDNORM
| POLLHUP
);
736 * tipc_sendmcast - send multicast message
737 * @sock: socket structure
738 * @seq: destination address
739 * @msg: message to send
740 * @dlen: length of data to send
741 * @timeout: timeout to wait for wakeup
743 * Called from function tipc_sendmsg(), which has done all sanity checks
744 * Returns the number of bytes sent on success, or errno
746 static int tipc_sendmcast(struct socket
*sock
, struct tipc_name_seq
*seq
,
747 struct msghdr
*msg
, size_t dlen
, long timeout
)
749 struct sock
*sk
= sock
->sk
;
750 struct tipc_sock
*tsk
= tipc_sk(sk
);
751 struct tipc_msg
*hdr
= &tsk
->phdr
;
752 struct net
*net
= sock_net(sk
);
753 int mtu
= tipc_bcast_get_mtu(net
);
754 struct tipc_mc_method
*method
= &tsk
->mc_method
;
755 u32 domain
= addr_domain(net
, TIPC_CLUSTER_SCOPE
);
756 struct sk_buff_head pkts
;
757 struct tipc_nlist dsts
;
760 /* Block or return if any destination link is congested */
761 rc
= tipc_wait_for_cond(sock
, &timeout
, !tsk
->cong_link_cnt
);
765 /* Lookup destination nodes */
766 tipc_nlist_init(&dsts
, tipc_own_addr(net
));
767 tipc_nametbl_lookup_dst_nodes(net
, seq
->type
, seq
->lower
,
768 seq
->upper
, domain
, &dsts
);
769 if (!dsts
.local
&& !dsts
.remote
)
770 return -EHOSTUNREACH
;
772 /* Build message header */
773 msg_set_type(hdr
, TIPC_MCAST_MSG
);
774 msg_set_hdr_sz(hdr
, MCAST_H_SIZE
);
775 msg_set_lookup_scope(hdr
, TIPC_CLUSTER_SCOPE
);
776 msg_set_destport(hdr
, 0);
777 msg_set_destnode(hdr
, 0);
778 msg_set_nametype(hdr
, seq
->type
);
779 msg_set_namelower(hdr
, seq
->lower
);
780 msg_set_nameupper(hdr
, seq
->upper
);
782 /* Build message as chain of buffers */
783 skb_queue_head_init(&pkts
);
784 rc
= tipc_msg_build(hdr
, msg
, 0, dlen
, mtu
, &pkts
);
786 /* Send message if build was successful */
787 if (unlikely(rc
== dlen
))
788 rc
= tipc_mcast_xmit(net
, &pkts
, method
, &dsts
,
789 &tsk
->cong_link_cnt
);
791 tipc_nlist_purge(&dsts
);
793 return rc
? rc
: dlen
;
797 * tipc_sk_mcast_rcv - Deliver multicast messages to all destination sockets
798 * @arrvq: queue with arriving messages, to be cloned after destination lookup
799 * @inputq: queue with cloned messages, delivered to socket after dest lookup
801 * Multi-threaded: parallel calls with reference to same queues may occur
803 void tipc_sk_mcast_rcv(struct net
*net
, struct sk_buff_head
*arrvq
,
804 struct sk_buff_head
*inputq
)
806 struct tipc_msg
*msg
;
807 struct list_head dports
;
809 u32 scope
= TIPC_CLUSTER_SCOPE
;
810 struct sk_buff_head tmpq
;
812 struct sk_buff
*skb
, *_skb
;
814 __skb_queue_head_init(&tmpq
);
815 INIT_LIST_HEAD(&dports
);
817 skb
= tipc_skb_peek(arrvq
, &inputq
->lock
);
818 for (; skb
; skb
= tipc_skb_peek(arrvq
, &inputq
->lock
)) {
820 hsz
= skb_headroom(skb
) + msg_hdr_sz(msg
);
822 if (in_own_node(net
, msg_orignode(msg
)))
823 scope
= TIPC_NODE_SCOPE
;
825 /* Create destination port list and message clones: */
826 tipc_nametbl_mc_translate(net
,
827 msg_nametype(msg
), msg_namelower(msg
),
828 msg_nameupper(msg
), scope
, &dports
);
829 portid
= u32_pop(&dports
);
830 for (; portid
; portid
= u32_pop(&dports
)) {
831 _skb
= __pskb_copy(skb
, hsz
, GFP_ATOMIC
);
833 msg_set_destport(buf_msg(_skb
), portid
);
834 __skb_queue_tail(&tmpq
, _skb
);
837 pr_warn("Failed to clone mcast rcv buffer\n");
839 /* Append to inputq if not already done by other thread */
840 spin_lock_bh(&inputq
->lock
);
841 if (skb_peek(arrvq
) == skb
) {
842 skb_queue_splice_tail_init(&tmpq
, inputq
);
843 kfree_skb(__skb_dequeue(arrvq
));
845 spin_unlock_bh(&inputq
->lock
);
846 __skb_queue_purge(&tmpq
);
849 tipc_sk_rcv(net
, inputq
);
853 * tipc_sk_proto_rcv - receive a connection mng protocol message
854 * @tsk: receiving socket
855 * @skb: pointer to message buffer.
857 static void tipc_sk_proto_rcv(struct tipc_sock
*tsk
, struct sk_buff
*skb
,
858 struct sk_buff_head
*xmitq
)
860 struct sock
*sk
= &tsk
->sk
;
861 u32 onode
= tsk_own_node(tsk
);
862 struct tipc_msg
*hdr
= buf_msg(skb
);
863 int mtyp
= msg_type(hdr
);
866 /* Ignore if connection cannot be validated: */
867 if (!tsk_peer_msg(tsk
, hdr
))
870 if (unlikely(msg_errcode(hdr
))) {
871 tipc_set_sk_state(sk
, TIPC_DISCONNECTING
);
872 tipc_node_remove_conn(sock_net(sk
), tsk_peer_node(tsk
),
874 sk
->sk_state_change(sk
);
878 tsk
->probe_unacked
= false;
880 if (mtyp
== CONN_PROBE
) {
881 msg_set_type(hdr
, CONN_PROBE_REPLY
);
882 if (tipc_msg_reverse(onode
, &skb
, TIPC_OK
))
883 __skb_queue_tail(xmitq
, skb
);
885 } else if (mtyp
== CONN_ACK
) {
886 conn_cong
= tsk_conn_cong(tsk
);
887 tsk
->snt_unacked
-= msg_conn_ack(hdr
);
888 if (tsk
->peer_caps
& TIPC_BLOCK_FLOWCTL
)
889 tsk
->snd_win
= msg_adv_win(hdr
);
891 sk
->sk_write_space(sk
);
892 } else if (mtyp
!= CONN_PROBE_REPLY
) {
893 pr_warn("Received unknown CONN_PROTO msg\n");
900 * tipc_sendmsg - send message in connectionless manner
901 * @sock: socket structure
902 * @m: message to send
903 * @dsz: amount of user data to be sent
905 * Message must have an destination specified explicitly.
906 * Used for SOCK_RDM and SOCK_DGRAM messages,
907 * and for 'SYN' messages on SOCK_SEQPACKET and SOCK_STREAM connections.
908 * (Note: 'SYN+' is prohibited on SOCK_STREAM.)
910 * Returns the number of bytes sent on success, or errno otherwise
912 static int tipc_sendmsg(struct socket
*sock
,
913 struct msghdr
*m
, size_t dsz
)
915 struct sock
*sk
= sock
->sk
;
919 ret
= __tipc_sendmsg(sock
, m
, dsz
);
925 static int __tipc_sendmsg(struct socket
*sock
, struct msghdr
*m
, size_t dlen
)
927 struct sock
*sk
= sock
->sk
;
928 struct net
*net
= sock_net(sk
);
929 struct tipc_sock
*tsk
= tipc_sk(sk
);
930 DECLARE_SOCKADDR(struct sockaddr_tipc
*, dest
, m
->msg_name
);
931 long timeout
= sock_sndtimeo(sk
, m
->msg_flags
& MSG_DONTWAIT
);
932 struct list_head
*clinks
= &tsk
->cong_links
;
933 bool syn
= !tipc_sk_type_connectionless(sk
);
934 struct tipc_msg
*hdr
= &tsk
->phdr
;
935 struct tipc_name_seq
*seq
;
936 struct sk_buff_head pkts
;
937 u32 type
, inst
, domain
;
941 if (unlikely(dlen
> TIPC_MAX_USER_MSG_SIZE
))
944 if (unlikely(!dest
)) {
946 if (!syn
|| dest
->family
!= AF_TIPC
)
947 return -EDESTADDRREQ
;
950 if (unlikely(m
->msg_namelen
< sizeof(*dest
)))
953 if (unlikely(dest
->family
!= AF_TIPC
))
957 if (sk
->sk_state
== TIPC_LISTEN
)
959 if (sk
->sk_state
!= TIPC_OPEN
)
963 if (dest
->addrtype
== TIPC_ADDR_NAME
) {
964 tsk
->conn_type
= dest
->addr
.name
.name
.type
;
965 tsk
->conn_instance
= dest
->addr
.name
.name
.instance
;
969 seq
= &dest
->addr
.nameseq
;
970 if (dest
->addrtype
== TIPC_ADDR_MCAST
)
971 return tipc_sendmcast(sock
, seq
, m
, dlen
, timeout
);
973 if (dest
->addrtype
== TIPC_ADDR_NAME
) {
974 type
= dest
->addr
.name
.name
.type
;
975 inst
= dest
->addr
.name
.name
.instance
;
976 domain
= dest
->addr
.name
.domain
;
978 msg_set_type(hdr
, TIPC_NAMED_MSG
);
979 msg_set_hdr_sz(hdr
, NAMED_H_SIZE
);
980 msg_set_nametype(hdr
, type
);
981 msg_set_nameinst(hdr
, inst
);
982 msg_set_lookup_scope(hdr
, tipc_addr_scope(domain
));
983 dport
= tipc_nametbl_translate(net
, type
, inst
, &dnode
);
984 msg_set_destnode(hdr
, dnode
);
985 msg_set_destport(hdr
, dport
);
986 if (unlikely(!dport
&& !dnode
))
987 return -EHOSTUNREACH
;
989 } else if (dest
->addrtype
== TIPC_ADDR_ID
) {
990 dnode
= dest
->addr
.id
.node
;
991 msg_set_type(hdr
, TIPC_DIRECT_MSG
);
992 msg_set_lookup_scope(hdr
, 0);
993 msg_set_destnode(hdr
, dnode
);
994 msg_set_destport(hdr
, dest
->addr
.id
.ref
);
995 msg_set_hdr_sz(hdr
, BASIC_H_SIZE
);
998 /* Block or return if destination link is congested */
999 rc
= tipc_wait_for_cond(sock
, &timeout
, !u32_find(clinks
, dnode
));
1003 skb_queue_head_init(&pkts
);
1004 mtu
= tipc_node_get_mtu(net
, dnode
, tsk
->portid
);
1005 rc
= tipc_msg_build(hdr
, m
, 0, dlen
, mtu
, &pkts
);
1006 if (unlikely(rc
!= dlen
))
1009 rc
= tipc_node_xmit(net
, &pkts
, dnode
, tsk
->portid
);
1010 if (unlikely(rc
== -ELINKCONG
)) {
1011 u32_push(clinks
, dnode
);
1012 tsk
->cong_link_cnt
++;
1016 if (unlikely(syn
&& !rc
))
1017 tipc_set_sk_state(sk
, TIPC_CONNECTING
);
1019 return rc
? rc
: dlen
;
1023 * tipc_sendstream - send stream-oriented data
1024 * @sock: socket structure
1026 * @dsz: total length of data to be transmitted
1028 * Used for SOCK_STREAM data.
1030 * Returns the number of bytes sent on success (or partial success),
1031 * or errno if no data sent
1033 static int tipc_sendstream(struct socket
*sock
, struct msghdr
*m
, size_t dsz
)
1035 struct sock
*sk
= sock
->sk
;
1039 ret
= __tipc_sendstream(sock
, m
, dsz
);
1045 static int __tipc_sendstream(struct socket
*sock
, struct msghdr
*m
, size_t dlen
)
1047 struct sock
*sk
= sock
->sk
;
1048 DECLARE_SOCKADDR(struct sockaddr_tipc
*, dest
, m
->msg_name
);
1049 long timeout
= sock_sndtimeo(sk
, m
->msg_flags
& MSG_DONTWAIT
);
1050 struct tipc_sock
*tsk
= tipc_sk(sk
);
1051 struct tipc_msg
*hdr
= &tsk
->phdr
;
1052 struct net
*net
= sock_net(sk
);
1053 struct sk_buff_head pkts
;
1054 u32 dnode
= tsk_peer_node(tsk
);
1058 skb_queue_head_init(&pkts
);
1060 if (unlikely(dlen
> INT_MAX
))
1063 /* Handle implicit connection setup */
1064 if (unlikely(dest
)) {
1065 rc
= __tipc_sendmsg(sock
, m
, dlen
);
1066 if (dlen
&& (dlen
== rc
))
1067 tsk
->snt_unacked
= tsk_inc(tsk
, dlen
+ msg_hdr_sz(hdr
));
1072 rc
= tipc_wait_for_cond(sock
, &timeout
,
1073 (!tsk
->cong_link_cnt
&&
1074 !tsk_conn_cong(tsk
) &&
1075 tipc_sk_connected(sk
)));
1079 send
= min_t(size_t, dlen
- sent
, TIPC_MAX_USER_MSG_SIZE
);
1080 rc
= tipc_msg_build(hdr
, m
, sent
, send
, tsk
->max_pkt
, &pkts
);
1081 if (unlikely(rc
!= send
))
1084 rc
= tipc_node_xmit(net
, &pkts
, dnode
, tsk
->portid
);
1085 if (unlikely(rc
== -ELINKCONG
)) {
1086 tsk
->cong_link_cnt
= 1;
1090 tsk
->snt_unacked
+= tsk_inc(tsk
, send
+ MIN_H_SIZE
);
1093 } while (sent
< dlen
&& !rc
);
1095 return sent
? sent
: rc
;
1099 * tipc_send_packet - send a connection-oriented message
1100 * @sock: socket structure
1101 * @m: message to send
1102 * @dsz: length of data to be transmitted
1104 * Used for SOCK_SEQPACKET messages.
1106 * Returns the number of bytes sent on success, or errno otherwise
1108 static int tipc_send_packet(struct socket
*sock
, struct msghdr
*m
, size_t dsz
)
1110 if (dsz
> TIPC_MAX_USER_MSG_SIZE
)
1113 return tipc_sendstream(sock
, m
, dsz
);
1116 /* tipc_sk_finish_conn - complete the setup of a connection
1118 static void tipc_sk_finish_conn(struct tipc_sock
*tsk
, u32 peer_port
,
1121 struct sock
*sk
= &tsk
->sk
;
1122 struct net
*net
= sock_net(sk
);
1123 struct tipc_msg
*msg
= &tsk
->phdr
;
1125 msg_set_destnode(msg
, peer_node
);
1126 msg_set_destport(msg
, peer_port
);
1127 msg_set_type(msg
, TIPC_CONN_MSG
);
1128 msg_set_lookup_scope(msg
, 0);
1129 msg_set_hdr_sz(msg
, SHORT_H_SIZE
);
1131 sk_reset_timer(sk
, &sk
->sk_timer
, jiffies
+ CONN_PROBING_INTERVAL
);
1132 tipc_set_sk_state(sk
, TIPC_ESTABLISHED
);
1133 tipc_node_add_conn(net
, peer_node
, tsk
->portid
, peer_port
);
1134 tsk
->max_pkt
= tipc_node_get_mtu(net
, peer_node
, tsk
->portid
);
1135 tsk
->peer_caps
= tipc_node_get_capabilities(net
, peer_node
);
1136 if (tsk
->peer_caps
& TIPC_BLOCK_FLOWCTL
)
1139 /* Fall back to message based flow control */
1140 tsk
->rcv_win
= FLOWCTL_MSG_WIN
;
1141 tsk
->snd_win
= FLOWCTL_MSG_WIN
;
1145 * set_orig_addr - capture sender's address for received message
1146 * @m: descriptor for message info
1147 * @msg: received message header
1149 * Note: Address is not captured if not requested by receiver.
1151 static void set_orig_addr(struct msghdr
*m
, struct tipc_msg
*msg
)
1153 DECLARE_SOCKADDR(struct sockaddr_tipc
*, addr
, m
->msg_name
);
1156 addr
->family
= AF_TIPC
;
1157 addr
->addrtype
= TIPC_ADDR_ID
;
1158 memset(&addr
->addr
, 0, sizeof(addr
->addr
));
1159 addr
->addr
.id
.ref
= msg_origport(msg
);
1160 addr
->addr
.id
.node
= msg_orignode(msg
);
1161 addr
->addr
.name
.domain
= 0; /* could leave uninitialized */
1162 addr
->scope
= 0; /* could leave uninitialized */
1163 m
->msg_namelen
= sizeof(struct sockaddr_tipc
);
1168 * tipc_sk_anc_data_recv - optionally capture ancillary data for received message
1169 * @m: descriptor for message info
1170 * @msg: received message header
1171 * @tsk: TIPC port associated with message
1173 * Note: Ancillary data is not captured if not requested by receiver.
1175 * Returns 0 if successful, otherwise errno
1177 static int tipc_sk_anc_data_recv(struct msghdr
*m
, struct tipc_msg
*msg
,
1178 struct tipc_sock
*tsk
)
1186 if (likely(m
->msg_controllen
== 0))
1189 /* Optionally capture errored message object(s) */
1190 err
= msg
? msg_errcode(msg
) : 0;
1191 if (unlikely(err
)) {
1193 anc_data
[1] = msg_data_sz(msg
);
1194 res
= put_cmsg(m
, SOL_TIPC
, TIPC_ERRINFO
, 8, anc_data
);
1198 res
= put_cmsg(m
, SOL_TIPC
, TIPC_RETDATA
, anc_data
[1],
1205 /* Optionally capture message destination object */
1206 dest_type
= msg
? msg_type(msg
) : TIPC_DIRECT_MSG
;
1207 switch (dest_type
) {
1208 case TIPC_NAMED_MSG
:
1210 anc_data
[0] = msg_nametype(msg
);
1211 anc_data
[1] = msg_namelower(msg
);
1212 anc_data
[2] = msg_namelower(msg
);
1214 case TIPC_MCAST_MSG
:
1216 anc_data
[0] = msg_nametype(msg
);
1217 anc_data
[1] = msg_namelower(msg
);
1218 anc_data
[2] = msg_nameupper(msg
);
1221 has_name
= (tsk
->conn_type
!= 0);
1222 anc_data
[0] = tsk
->conn_type
;
1223 anc_data
[1] = tsk
->conn_instance
;
1224 anc_data
[2] = tsk
->conn_instance
;
1230 res
= put_cmsg(m
, SOL_TIPC
, TIPC_DESTNAME
, 12, anc_data
);
1238 static void tipc_sk_send_ack(struct tipc_sock
*tsk
)
1240 struct sock
*sk
= &tsk
->sk
;
1241 struct net
*net
= sock_net(sk
);
1242 struct sk_buff
*skb
= NULL
;
1243 struct tipc_msg
*msg
;
1244 u32 peer_port
= tsk_peer_port(tsk
);
1245 u32 dnode
= tsk_peer_node(tsk
);
1247 if (!tipc_sk_connected(sk
))
1249 skb
= tipc_msg_create(CONN_MANAGER
, CONN_ACK
, INT_H_SIZE
, 0,
1250 dnode
, tsk_own_node(tsk
), peer_port
,
1251 tsk
->portid
, TIPC_OK
);
1255 msg_set_conn_ack(msg
, tsk
->rcv_unacked
);
1256 tsk
->rcv_unacked
= 0;
1258 /* Adjust to and advertize the correct window limit */
1259 if (tsk
->peer_caps
& TIPC_BLOCK_FLOWCTL
) {
1260 tsk
->rcv_win
= tsk_adv_blocks(tsk
->sk
.sk_rcvbuf
);
1261 msg_set_adv_win(msg
, tsk
->rcv_win
);
1263 tipc_node_xmit_skb(net
, skb
, dnode
, msg_link_selector(msg
));
1266 static int tipc_wait_for_rcvmsg(struct socket
*sock
, long *timeop
)
1268 struct sock
*sk
= sock
->sk
;
1270 long timeo
= *timeop
;
1271 int err
= sock_error(sk
);
1277 prepare_to_wait(sk_sleep(sk
), &wait
, TASK_INTERRUPTIBLE
);
1278 if (timeo
&& skb_queue_empty(&sk
->sk_receive_queue
)) {
1279 if (sk
->sk_shutdown
& RCV_SHUTDOWN
) {
1284 timeo
= schedule_timeout(timeo
);
1288 if (!skb_queue_empty(&sk
->sk_receive_queue
))
1293 err
= sock_intr_errno(timeo
);
1294 if (signal_pending(current
))
1297 err
= sock_error(sk
);
1301 finish_wait(sk_sleep(sk
), &wait
);
1307 * tipc_recvmsg - receive packet-oriented message
1308 * @m: descriptor for message info
1309 * @buflen: length of user buffer area
1310 * @flags: receive flags
1312 * Used for SOCK_DGRAM, SOCK_RDM, and SOCK_SEQPACKET messages.
1313 * If the complete message doesn't fit in user area, truncate it.
1315 * Returns size of returned message data, errno otherwise
1317 static int tipc_recvmsg(struct socket
*sock
, struct msghdr
*m
,
1318 size_t buflen
, int flags
)
1320 struct sock
*sk
= sock
->sk
;
1321 struct tipc_sock
*tsk
= tipc_sk(sk
);
1322 struct sk_buff
*skb
;
1323 struct tipc_msg
*hdr
;
1324 bool connected
= !tipc_sk_type_connectionless(sk
);
1325 int rc
, err
, hlen
, dlen
, copy
;
1328 /* Catch invalid receive requests */
1329 if (unlikely(!buflen
))
1333 if (unlikely(connected
&& sk
->sk_state
== TIPC_OPEN
)) {
1337 timeout
= sock_rcvtimeo(sk
, flags
& MSG_DONTWAIT
);
1340 /* Look at first msg in receive queue; wait if necessary */
1341 rc
= tipc_wait_for_rcvmsg(sock
, &timeout
);
1344 skb
= skb_peek(&sk
->sk_receive_queue
);
1346 dlen
= msg_data_sz(hdr
);
1347 hlen
= msg_hdr_sz(hdr
);
1348 err
= msg_errcode(hdr
);
1349 if (likely(dlen
|| err
))
1351 tsk_advance_rx_queue(sk
);
1354 /* Collect msg meta data, including error code and rejected data */
1355 set_orig_addr(m
, hdr
);
1356 rc
= tipc_sk_anc_data_recv(m
, hdr
, tsk
);
1360 /* Capture data if non-error msg, otherwise just set return value */
1362 copy
= min_t(int, dlen
, buflen
);
1363 if (unlikely(copy
!= dlen
))
1364 m
->msg_flags
|= MSG_TRUNC
;
1365 rc
= skb_copy_datagram_msg(skb
, hlen
, m
, copy
);
1369 if (err
!= TIPC_CONN_SHUTDOWN
&& connected
&& !m
->msg_control
)
1375 /* Caption of data or error code/rejected data was successful */
1376 if (unlikely(flags
& MSG_PEEK
))
1379 tsk_advance_rx_queue(sk
);
1380 if (likely(!connected
))
1383 /* Send connection flow control ack when applicable */
1384 tsk
->rcv_unacked
+= tsk_inc(tsk
, hlen
+ dlen
);
1385 if (tsk
->rcv_unacked
>= tsk
->rcv_win
/ TIPC_ACK_RATE
)
1386 tipc_sk_send_ack(tsk
);
1389 return rc
? rc
: copy
;
1393 * tipc_recvstream - receive stream-oriented data
1394 * @m: descriptor for message info
1395 * @buflen: total size of user buffer area
1396 * @flags: receive flags
1398 * Used for SOCK_STREAM messages only. If not enough data is available
1399 * will optionally wait for more; never truncates data.
1401 * Returns size of returned message data, errno otherwise
1403 static int tipc_recvstream(struct socket
*sock
, struct msghdr
*m
,
1404 size_t buflen
, int flags
)
1406 struct sock
*sk
= sock
->sk
;
1407 struct tipc_sock
*tsk
= tipc_sk(sk
);
1408 struct sk_buff
*skb
;
1409 struct tipc_msg
*hdr
;
1410 struct tipc_skb_cb
*skb_cb
;
1411 bool peek
= flags
& MSG_PEEK
;
1412 int offset
, required
, copy
, copied
= 0;
1413 int hlen
, dlen
, err
, rc
;
1416 /* Catch invalid receive attempts */
1417 if (unlikely(!buflen
))
1422 if (unlikely(sk
->sk_state
== TIPC_OPEN
)) {
1426 required
= sock_rcvlowat(sk
, flags
& MSG_WAITALL
, buflen
);
1427 timeout
= sock_rcvtimeo(sk
, flags
& MSG_DONTWAIT
);
1430 /* Look at first msg in receive queue; wait if necessary */
1431 rc
= tipc_wait_for_rcvmsg(sock
, &timeout
);
1434 skb
= skb_peek(&sk
->sk_receive_queue
);
1435 skb_cb
= TIPC_SKB_CB(skb
);
1437 dlen
= msg_data_sz(hdr
);
1438 hlen
= msg_hdr_sz(hdr
);
1439 err
= msg_errcode(hdr
);
1441 /* Discard any empty non-errored (SYN-) message */
1442 if (unlikely(!dlen
&& !err
)) {
1443 tsk_advance_rx_queue(sk
);
1447 /* Collect msg meta data, incl. error code and rejected data */
1449 set_orig_addr(m
, hdr
);
1450 rc
= tipc_sk_anc_data_recv(m
, hdr
, tsk
);
1455 /* Copy data if msg ok, otherwise return error/partial data */
1457 offset
= skb_cb
->bytes_read
;
1458 copy
= min_t(int, dlen
- offset
, buflen
- copied
);
1459 rc
= skb_copy_datagram_msg(skb
, hlen
+ offset
, m
, copy
);
1464 if (unlikely(offset
< dlen
)) {
1466 skb_cb
->bytes_read
= offset
;
1471 if ((err
!= TIPC_CONN_SHUTDOWN
) && !m
->msg_control
)
1480 tsk_advance_rx_queue(sk
);
1482 /* Send connection flow control advertisement when applicable */
1483 tsk
->rcv_unacked
+= tsk_inc(tsk
, hlen
+ dlen
);
1484 if (unlikely(tsk
->rcv_unacked
>= tsk
->rcv_win
/ TIPC_ACK_RATE
))
1485 tipc_sk_send_ack(tsk
);
1487 /* Exit if all requested data or FIN/error received */
1488 if (copied
== buflen
|| err
)
1491 } while (!skb_queue_empty(&sk
->sk_receive_queue
) || copied
< required
);
1494 return copied
? copied
: rc
;
1498 * tipc_write_space - wake up thread if port congestion is released
1501 static void tipc_write_space(struct sock
*sk
)
1503 struct socket_wq
*wq
;
1506 wq
= rcu_dereference(sk
->sk_wq
);
1507 if (skwq_has_sleeper(wq
))
1508 wake_up_interruptible_sync_poll(&wq
->wait
, POLLOUT
|
1509 POLLWRNORM
| POLLWRBAND
);
1514 * tipc_data_ready - wake up threads to indicate messages have been received
1516 * @len: the length of messages
1518 static void tipc_data_ready(struct sock
*sk
)
1520 struct socket_wq
*wq
;
1523 wq
= rcu_dereference(sk
->sk_wq
);
1524 if (skwq_has_sleeper(wq
))
1525 wake_up_interruptible_sync_poll(&wq
->wait
, POLLIN
|
1526 POLLRDNORM
| POLLRDBAND
);
1530 static void tipc_sock_destruct(struct sock
*sk
)
1532 __skb_queue_purge(&sk
->sk_receive_queue
);
1536 * filter_connect - Handle all incoming messages for a connection-based socket
1538 * @skb: pointer to message buffer. Set to NULL if buffer is consumed
1540 * Returns true if everything ok, false otherwise
1542 static bool filter_connect(struct tipc_sock
*tsk
, struct sk_buff
*skb
)
1544 struct sock
*sk
= &tsk
->sk
;
1545 struct net
*net
= sock_net(sk
);
1546 struct tipc_msg
*hdr
= buf_msg(skb
);
1547 u32 pport
= msg_origport(hdr
);
1548 u32 pnode
= msg_orignode(hdr
);
1550 if (unlikely(msg_mcast(hdr
)))
1553 switch (sk
->sk_state
) {
1554 case TIPC_CONNECTING
:
1555 /* Accept only ACK or NACK message */
1556 if (unlikely(!msg_connected(hdr
))) {
1557 if (pport
!= tsk_peer_port(tsk
) ||
1558 pnode
!= tsk_peer_node(tsk
))
1561 tipc_set_sk_state(sk
, TIPC_DISCONNECTING
);
1562 sk
->sk_err
= ECONNREFUSED
;
1563 sk
->sk_state_change(sk
);
1567 if (unlikely(msg_errcode(hdr
))) {
1568 tipc_set_sk_state(sk
, TIPC_DISCONNECTING
);
1569 sk
->sk_err
= ECONNREFUSED
;
1570 sk
->sk_state_change(sk
);
1574 if (unlikely(!msg_isdata(hdr
))) {
1575 tipc_set_sk_state(sk
, TIPC_DISCONNECTING
);
1576 sk
->sk_err
= EINVAL
;
1577 sk
->sk_state_change(sk
);
1581 tipc_sk_finish_conn(tsk
, msg_origport(hdr
), msg_orignode(hdr
));
1582 msg_set_importance(&tsk
->phdr
, msg_importance(hdr
));
1584 /* If 'ACK+' message, add to socket receive queue */
1585 if (msg_data_sz(hdr
))
1588 /* If empty 'ACK-' message, wake up sleeping connect() */
1589 sk
->sk_data_ready(sk
);
1591 /* 'ACK-' message is neither accepted nor rejected: */
1592 msg_set_dest_droppable(hdr
, 1);
1596 case TIPC_DISCONNECTING
:
1599 /* Accept only SYN message */
1600 if (!msg_connected(hdr
) && !(msg_errcode(hdr
)))
1603 case TIPC_ESTABLISHED
:
1604 /* Accept only connection-based messages sent by peer */
1605 if (unlikely(!tsk_peer_msg(tsk
, hdr
)))
1608 if (unlikely(msg_errcode(hdr
))) {
1609 tipc_set_sk_state(sk
, TIPC_DISCONNECTING
);
1610 /* Let timer expire on it's own */
1611 tipc_node_remove_conn(net
, tsk_peer_node(tsk
),
1613 sk
->sk_state_change(sk
);
1617 pr_err("Unknown sk_state %u\n", sk
->sk_state
);
1624 * rcvbuf_limit - get proper overload limit of socket receive queue
1628 * For connection oriented messages, irrespective of importance,
1629 * default queue limit is 2 MB.
1631 * For connectionless messages, queue limits are based on message
1632 * importance as follows:
1634 * TIPC_LOW_IMPORTANCE (2 MB)
1635 * TIPC_MEDIUM_IMPORTANCE (4 MB)
1636 * TIPC_HIGH_IMPORTANCE (8 MB)
1637 * TIPC_CRITICAL_IMPORTANCE (16 MB)
1639 * Returns overload limit according to corresponding message importance
1641 static unsigned int rcvbuf_limit(struct sock
*sk
, struct sk_buff
*skb
)
1643 struct tipc_sock
*tsk
= tipc_sk(sk
);
1644 struct tipc_msg
*hdr
= buf_msg(skb
);
1646 if (unlikely(!msg_connected(hdr
)))
1647 return sk
->sk_rcvbuf
<< msg_importance(hdr
);
1649 if (likely(tsk
->peer_caps
& TIPC_BLOCK_FLOWCTL
))
1650 return sk
->sk_rcvbuf
;
1652 return FLOWCTL_MSG_LIM
;
1656 * filter_rcv - validate incoming message
1658 * @skb: pointer to message.
1660 * Enqueues message on receive queue if acceptable; optionally handles
1661 * disconnect indication for a connected socket.
1663 * Called with socket lock already taken
1665 * Returns true if message was added to socket receive queue, otherwise false
1667 static bool filter_rcv(struct sock
*sk
, struct sk_buff
*skb
,
1668 struct sk_buff_head
*xmitq
)
1670 struct tipc_sock
*tsk
= tipc_sk(sk
);
1671 struct tipc_msg
*hdr
= buf_msg(skb
);
1672 unsigned int limit
= rcvbuf_limit(sk
, skb
);
1674 int usr
= msg_user(hdr
);
1677 if (unlikely(msg_user(hdr
) == CONN_MANAGER
)) {
1678 tipc_sk_proto_rcv(tsk
, skb
, xmitq
);
1682 if (unlikely(usr
== SOCK_WAKEUP
)) {
1683 onode
= msg_orignode(hdr
);
1685 u32_del(&tsk
->cong_links
, onode
);
1686 tsk
->cong_link_cnt
--;
1687 sk
->sk_write_space(sk
);
1691 /* Drop if illegal message type */
1692 if (unlikely(msg_type(hdr
) > TIPC_DIRECT_MSG
)) {
1697 /* Reject if wrong message type for current socket state */
1698 if (tipc_sk_type_connectionless(sk
)) {
1699 if (msg_connected(hdr
)) {
1700 err
= TIPC_ERR_NO_PORT
;
1703 } else if (unlikely(!filter_connect(tsk
, skb
))) {
1704 err
= TIPC_ERR_NO_PORT
;
1708 /* Reject message if there isn't room to queue it */
1709 if (unlikely(sk_rmem_alloc_get(sk
) + skb
->truesize
>= limit
)) {
1710 err
= TIPC_ERR_OVERLOAD
;
1714 /* Enqueue message */
1715 TIPC_SKB_CB(skb
)->bytes_read
= 0;
1716 __skb_queue_tail(&sk
->sk_receive_queue
, skb
);
1717 skb_set_owner_r(skb
, sk
);
1719 sk
->sk_data_ready(sk
);
1723 if (tipc_msg_reverse(tsk_own_node(tsk
), &skb
, err
))
1724 __skb_queue_tail(xmitq
, skb
);
1729 * tipc_backlog_rcv - handle incoming message from backlog queue
1733 * Caller must hold socket lock
1737 static int tipc_backlog_rcv(struct sock
*sk
, struct sk_buff
*skb
)
1739 unsigned int truesize
= skb
->truesize
;
1740 struct sk_buff_head xmitq
;
1741 u32 dnode
, selector
;
1743 __skb_queue_head_init(&xmitq
);
1745 if (likely(filter_rcv(sk
, skb
, &xmitq
))) {
1746 atomic_add(truesize
, &tipc_sk(sk
)->dupl_rcvcnt
);
1750 if (skb_queue_empty(&xmitq
))
1753 /* Send response/rejected message */
1754 skb
= __skb_dequeue(&xmitq
);
1755 dnode
= msg_destnode(buf_msg(skb
));
1756 selector
= msg_origport(buf_msg(skb
));
1757 tipc_node_xmit_skb(sock_net(sk
), skb
, dnode
, selector
);
1762 * tipc_sk_enqueue - extract all buffers with destination 'dport' from
1763 * inputq and try adding them to socket or backlog queue
1764 * @inputq: list of incoming buffers with potentially different destinations
1765 * @sk: socket where the buffers should be enqueued
1766 * @dport: port number for the socket
1768 * Caller must hold socket lock
1770 static void tipc_sk_enqueue(struct sk_buff_head
*inputq
, struct sock
*sk
,
1771 u32 dport
, struct sk_buff_head
*xmitq
)
1773 unsigned long time_limit
= jiffies
+ 2;
1774 struct sk_buff
*skb
;
1779 while (skb_queue_len(inputq
)) {
1780 if (unlikely(time_after_eq(jiffies
, time_limit
)))
1783 skb
= tipc_skb_dequeue(inputq
, dport
);
1787 /* Add message directly to receive queue if possible */
1788 if (!sock_owned_by_user(sk
)) {
1789 filter_rcv(sk
, skb
, xmitq
);
1793 /* Try backlog, compensating for double-counted bytes */
1794 dcnt
= &tipc_sk(sk
)->dupl_rcvcnt
;
1795 if (!sk
->sk_backlog
.len
)
1796 atomic_set(dcnt
, 0);
1797 lim
= rcvbuf_limit(sk
, skb
) + atomic_read(dcnt
);
1798 if (likely(!sk_add_backlog(sk
, skb
, lim
)))
1801 /* Overload => reject message back to sender */
1802 onode
= tipc_own_addr(sock_net(sk
));
1803 if (tipc_msg_reverse(onode
, &skb
, TIPC_ERR_OVERLOAD
))
1804 __skb_queue_tail(xmitq
, skb
);
1810 * tipc_sk_rcv - handle a chain of incoming buffers
1811 * @inputq: buffer list containing the buffers
1812 * Consumes all buffers in list until inputq is empty
1813 * Note: may be called in multiple threads referring to the same queue
1815 void tipc_sk_rcv(struct net
*net
, struct sk_buff_head
*inputq
)
1817 struct sk_buff_head xmitq
;
1818 u32 dnode
, dport
= 0;
1820 struct tipc_sock
*tsk
;
1822 struct sk_buff
*skb
;
1824 __skb_queue_head_init(&xmitq
);
1825 while (skb_queue_len(inputq
)) {
1826 dport
= tipc_skb_peek_port(inputq
, dport
);
1827 tsk
= tipc_sk_lookup(net
, dport
);
1831 if (likely(spin_trylock_bh(&sk
->sk_lock
.slock
))) {
1832 tipc_sk_enqueue(inputq
, sk
, dport
, &xmitq
);
1833 spin_unlock_bh(&sk
->sk_lock
.slock
);
1835 /* Send pending response/rejected messages, if any */
1836 while ((skb
= __skb_dequeue(&xmitq
))) {
1837 dnode
= msg_destnode(buf_msg(skb
));
1838 tipc_node_xmit_skb(net
, skb
, dnode
, dport
);
1844 /* No destination socket => dequeue skb if still there */
1845 skb
= tipc_skb_dequeue(inputq
, dport
);
1849 /* Try secondary lookup if unresolved named message */
1850 err
= TIPC_ERR_NO_PORT
;
1851 if (tipc_msg_lookup_dest(net
, skb
, &err
))
1854 /* Prepare for message rejection */
1855 if (!tipc_msg_reverse(tipc_own_addr(net
), &skb
, err
))
1858 dnode
= msg_destnode(buf_msg(skb
));
1859 tipc_node_xmit_skb(net
, skb
, dnode
, dport
);
1863 static int tipc_wait_for_connect(struct socket
*sock
, long *timeo_p
)
1865 DEFINE_WAIT_FUNC(wait
, woken_wake_function
);
1866 struct sock
*sk
= sock
->sk
;
1870 int err
= sock_error(sk
);
1875 if (signal_pending(current
))
1876 return sock_intr_errno(*timeo_p
);
1878 add_wait_queue(sk_sleep(sk
), &wait
);
1879 done
= sk_wait_event(sk
, timeo_p
,
1880 sk
->sk_state
!= TIPC_CONNECTING
, &wait
);
1881 remove_wait_queue(sk_sleep(sk
), &wait
);
1887 * tipc_connect - establish a connection to another TIPC port
1888 * @sock: socket structure
1889 * @dest: socket address for destination port
1890 * @destlen: size of socket address data structure
1891 * @flags: file-related flags associated with socket
1893 * Returns 0 on success, errno otherwise
1895 static int tipc_connect(struct socket
*sock
, struct sockaddr
*dest
,
1896 int destlen
, int flags
)
1898 struct sock
*sk
= sock
->sk
;
1899 struct tipc_sock
*tsk
= tipc_sk(sk
);
1900 struct sockaddr_tipc
*dst
= (struct sockaddr_tipc
*)dest
;
1901 struct msghdr m
= {NULL
,};
1902 long timeout
= (flags
& O_NONBLOCK
) ? 0 : tsk
->conn_timeout
;
1908 /* DGRAM/RDM connect(), just save the destaddr */
1909 if (tipc_sk_type_connectionless(sk
)) {
1910 if (dst
->family
== AF_UNSPEC
) {
1911 memset(&tsk
->peer
, 0, sizeof(struct sockaddr_tipc
));
1912 } else if (destlen
!= sizeof(struct sockaddr_tipc
)) {
1915 memcpy(&tsk
->peer
, dest
, destlen
);
1921 * Reject connection attempt using multicast address
1923 * Note: send_msg() validates the rest of the address fields,
1924 * so there's no need to do it here
1926 if (dst
->addrtype
== TIPC_ADDR_MCAST
) {
1931 previous
= sk
->sk_state
;
1933 switch (sk
->sk_state
) {
1935 /* Send a 'SYN-' to destination */
1937 m
.msg_namelen
= destlen
;
1939 /* If connect is in non-blocking case, set MSG_DONTWAIT to
1940 * indicate send_msg() is never blocked.
1943 m
.msg_flags
= MSG_DONTWAIT
;
1945 res
= __tipc_sendmsg(sock
, &m
, 0);
1946 if ((res
< 0) && (res
!= -EWOULDBLOCK
))
1949 /* Just entered TIPC_CONNECTING state; the only
1950 * difference is that return value in non-blocking
1951 * case is EINPROGRESS, rather than EALREADY.
1955 case TIPC_CONNECTING
:
1957 if (previous
== TIPC_CONNECTING
)
1961 timeout
= msecs_to_jiffies(timeout
);
1962 /* Wait until an 'ACK' or 'RST' arrives, or a timeout occurs */
1963 res
= tipc_wait_for_connect(sock
, &timeout
);
1965 case TIPC_ESTABLISHED
:
1978 * tipc_listen - allow socket to listen for incoming connections
1979 * @sock: socket structure
1982 * Returns 0 on success, errno otherwise
1984 static int tipc_listen(struct socket
*sock
, int len
)
1986 struct sock
*sk
= sock
->sk
;
1990 res
= tipc_set_sk_state(sk
, TIPC_LISTEN
);
1996 static int tipc_wait_for_accept(struct socket
*sock
, long timeo
)
1998 struct sock
*sk
= sock
->sk
;
2002 /* True wake-one mechanism for incoming connections: only
2003 * one process gets woken up, not the 'whole herd'.
2004 * Since we do not 'race & poll' for established sockets
2005 * anymore, the common case will execute the loop only once.
2008 prepare_to_wait_exclusive(sk_sleep(sk
), &wait
,
2009 TASK_INTERRUPTIBLE
);
2010 if (timeo
&& skb_queue_empty(&sk
->sk_receive_queue
)) {
2012 timeo
= schedule_timeout(timeo
);
2016 if (!skb_queue_empty(&sk
->sk_receive_queue
))
2021 err
= sock_intr_errno(timeo
);
2022 if (signal_pending(current
))
2025 finish_wait(sk_sleep(sk
), &wait
);
2030 * tipc_accept - wait for connection request
2031 * @sock: listening socket
2032 * @newsock: new socket that is to be connected
2033 * @flags: file-related flags associated with socket
2035 * Returns 0 on success, errno otherwise
2037 static int tipc_accept(struct socket
*sock
, struct socket
*new_sock
, int flags
,
2040 struct sock
*new_sk
, *sk
= sock
->sk
;
2041 struct sk_buff
*buf
;
2042 struct tipc_sock
*new_tsock
;
2043 struct tipc_msg
*msg
;
2049 if (sk
->sk_state
!= TIPC_LISTEN
) {
2053 timeo
= sock_rcvtimeo(sk
, flags
& O_NONBLOCK
);
2054 res
= tipc_wait_for_accept(sock
, timeo
);
2058 buf
= skb_peek(&sk
->sk_receive_queue
);
2060 res
= tipc_sk_create(sock_net(sock
->sk
), new_sock
, 0, kern
);
2063 security_sk_clone(sock
->sk
, new_sock
->sk
);
2065 new_sk
= new_sock
->sk
;
2066 new_tsock
= tipc_sk(new_sk
);
2069 /* we lock on new_sk; but lockdep sees the lock on sk */
2070 lock_sock_nested(new_sk
, SINGLE_DEPTH_NESTING
);
2073 * Reject any stray messages received by new socket
2074 * before the socket lock was taken (very, very unlikely)
2076 tsk_rej_rx_queue(new_sk
);
2078 /* Connect new socket to it's peer */
2079 tipc_sk_finish_conn(new_tsock
, msg_origport(msg
), msg_orignode(msg
));
2081 tsk_set_importance(new_tsock
, msg_importance(msg
));
2082 if (msg_named(msg
)) {
2083 new_tsock
->conn_type
= msg_nametype(msg
);
2084 new_tsock
->conn_instance
= msg_nameinst(msg
);
2088 * Respond to 'SYN-' by discarding it & returning 'ACK'-.
2089 * Respond to 'SYN+' by queuing it on new socket.
2091 if (!msg_data_sz(msg
)) {
2092 struct msghdr m
= {NULL
,};
2094 tsk_advance_rx_queue(sk
);
2095 __tipc_sendstream(new_sock
, &m
, 0);
2097 __skb_dequeue(&sk
->sk_receive_queue
);
2098 __skb_queue_head(&new_sk
->sk_receive_queue
, buf
);
2099 skb_set_owner_r(buf
, new_sk
);
2101 release_sock(new_sk
);
2108 * tipc_shutdown - shutdown socket connection
2109 * @sock: socket structure
2110 * @how: direction to close (must be SHUT_RDWR)
2112 * Terminates connection (if necessary), then purges socket's receive queue.
2114 * Returns 0 on success, errno otherwise
2116 static int tipc_shutdown(struct socket
*sock
, int how
)
2118 struct sock
*sk
= sock
->sk
;
2121 if (how
!= SHUT_RDWR
)
2126 __tipc_shutdown(sock
, TIPC_CONN_SHUTDOWN
);
2127 sk
->sk_shutdown
= SEND_SHUTDOWN
;
2129 if (sk
->sk_state
== TIPC_DISCONNECTING
) {
2130 /* Discard any unreceived messages */
2131 __skb_queue_purge(&sk
->sk_receive_queue
);
2133 /* Wake up anyone sleeping in poll */
2134 sk
->sk_state_change(sk
);
2144 static void tipc_sk_timeout(unsigned long data
)
2146 struct tipc_sock
*tsk
= (struct tipc_sock
*)data
;
2147 struct sock
*sk
= &tsk
->sk
;
2148 struct sk_buff
*skb
= NULL
;
2149 u32 peer_port
, peer_node
;
2150 u32 own_node
= tsk_own_node(tsk
);
2153 if (!tipc_sk_connected(sk
)) {
2157 peer_port
= tsk_peer_port(tsk
);
2158 peer_node
= tsk_peer_node(tsk
);
2160 if (tsk
->probe_unacked
) {
2161 if (!sock_owned_by_user(sk
)) {
2162 tipc_set_sk_state(sk
, TIPC_DISCONNECTING
);
2163 tipc_node_remove_conn(sock_net(sk
), tsk_peer_node(tsk
),
2164 tsk_peer_port(tsk
));
2165 sk
->sk_state_change(sk
);
2167 /* Try again later */
2168 sk_reset_timer(sk
, &sk
->sk_timer
, (HZ
/ 20));
2175 skb
= tipc_msg_create(CONN_MANAGER
, CONN_PROBE
,
2176 INT_H_SIZE
, 0, peer_node
, own_node
,
2177 peer_port
, tsk
->portid
, TIPC_OK
);
2178 tsk
->probe_unacked
= true;
2179 sk_reset_timer(sk
, &sk
->sk_timer
, jiffies
+ CONN_PROBING_INTERVAL
);
2182 tipc_node_xmit_skb(sock_net(sk
), skb
, peer_node
, tsk
->portid
);
2187 static int tipc_sk_publish(struct tipc_sock
*tsk
, uint scope
,
2188 struct tipc_name_seq
const *seq
)
2190 struct sock
*sk
= &tsk
->sk
;
2191 struct net
*net
= sock_net(sk
);
2192 struct publication
*publ
;
2195 if (tipc_sk_connected(sk
))
2197 key
= tsk
->portid
+ tsk
->pub_count
+ 1;
2198 if (key
== tsk
->portid
)
2201 publ
= tipc_nametbl_publish(net
, seq
->type
, seq
->lower
, seq
->upper
,
2202 scope
, tsk
->portid
, key
);
2203 if (unlikely(!publ
))
2206 list_add(&publ
->pport_list
, &tsk
->publications
);
2212 static int tipc_sk_withdraw(struct tipc_sock
*tsk
, uint scope
,
2213 struct tipc_name_seq
const *seq
)
2215 struct net
*net
= sock_net(&tsk
->sk
);
2216 struct publication
*publ
;
2217 struct publication
*safe
;
2220 list_for_each_entry_safe(publ
, safe
, &tsk
->publications
, pport_list
) {
2222 if (publ
->scope
!= scope
)
2224 if (publ
->type
!= seq
->type
)
2226 if (publ
->lower
!= seq
->lower
)
2228 if (publ
->upper
!= seq
->upper
)
2230 tipc_nametbl_withdraw(net
, publ
->type
, publ
->lower
,
2231 publ
->ref
, publ
->key
);
2235 tipc_nametbl_withdraw(net
, publ
->type
, publ
->lower
,
2236 publ
->ref
, publ
->key
);
2239 if (list_empty(&tsk
->publications
))
2244 /* tipc_sk_reinit: set non-zero address in all existing sockets
2245 * when we go from standalone to network mode.
2247 void tipc_sk_reinit(struct net
*net
)
2249 struct tipc_net
*tn
= net_generic(net
, tipc_net_id
);
2250 struct rhashtable_iter iter
;
2251 struct tipc_sock
*tsk
;
2252 struct tipc_msg
*msg
;
2254 rhashtable_walk_enter(&tn
->sk_rht
, &iter
);
2257 tsk
= ERR_PTR(rhashtable_walk_start(&iter
));
2261 while ((tsk
= rhashtable_walk_next(&iter
)) && !IS_ERR(tsk
)) {
2262 spin_lock_bh(&tsk
->sk
.sk_lock
.slock
);
2264 msg_set_prevnode(msg
, tn
->own_addr
);
2265 msg_set_orignode(msg
, tn
->own_addr
);
2266 spin_unlock_bh(&tsk
->sk
.sk_lock
.slock
);
2269 rhashtable_walk_stop(&iter
);
2270 } while (tsk
== ERR_PTR(-EAGAIN
));
2273 static struct tipc_sock
*tipc_sk_lookup(struct net
*net
, u32 portid
)
2275 struct tipc_net
*tn
= net_generic(net
, tipc_net_id
);
2276 struct tipc_sock
*tsk
;
2279 tsk
= rhashtable_lookup_fast(&tn
->sk_rht
, &portid
, tsk_rht_params
);
2281 sock_hold(&tsk
->sk
);
2287 static int tipc_sk_insert(struct tipc_sock
*tsk
)
2289 struct sock
*sk
= &tsk
->sk
;
2290 struct net
*net
= sock_net(sk
);
2291 struct tipc_net
*tn
= net_generic(net
, tipc_net_id
);
2292 u32 remaining
= (TIPC_MAX_PORT
- TIPC_MIN_PORT
) + 1;
2293 u32 portid
= prandom_u32() % remaining
+ TIPC_MIN_PORT
;
2295 while (remaining
--) {
2297 if ((portid
< TIPC_MIN_PORT
) || (portid
> TIPC_MAX_PORT
))
2298 portid
= TIPC_MIN_PORT
;
2299 tsk
->portid
= portid
;
2300 sock_hold(&tsk
->sk
);
2301 if (!rhashtable_lookup_insert_fast(&tn
->sk_rht
, &tsk
->node
,
2310 static void tipc_sk_remove(struct tipc_sock
*tsk
)
2312 struct sock
*sk
= &tsk
->sk
;
2313 struct tipc_net
*tn
= net_generic(sock_net(sk
), tipc_net_id
);
2315 if (!rhashtable_remove_fast(&tn
->sk_rht
, &tsk
->node
, tsk_rht_params
)) {
2316 WARN_ON(refcount_read(&sk
->sk_refcnt
) == 1);
2321 static const struct rhashtable_params tsk_rht_params
= {
2323 .head_offset
= offsetof(struct tipc_sock
, node
),
2324 .key_offset
= offsetof(struct tipc_sock
, portid
),
2325 .key_len
= sizeof(u32
), /* portid */
2326 .max_size
= 1048576,
2328 .automatic_shrinking
= true,
2331 int tipc_sk_rht_init(struct net
*net
)
2333 struct tipc_net
*tn
= net_generic(net
, tipc_net_id
);
2335 return rhashtable_init(&tn
->sk_rht
, &tsk_rht_params
);
2338 void tipc_sk_rht_destroy(struct net
*net
)
2340 struct tipc_net
*tn
= net_generic(net
, tipc_net_id
);
2342 /* Wait for socket readers to complete */
2345 rhashtable_destroy(&tn
->sk_rht
);
2349 * tipc_setsockopt - set socket option
2350 * @sock: socket structure
2351 * @lvl: option level
2352 * @opt: option identifier
2353 * @ov: pointer to new option value
2354 * @ol: length of option value
2356 * For stream sockets only, accepts and ignores all IPPROTO_TCP options
2357 * (to ease compatibility).
2359 * Returns 0 on success, errno otherwise
2361 static int tipc_setsockopt(struct socket
*sock
, int lvl
, int opt
,
2362 char __user
*ov
, unsigned int ol
)
2364 struct sock
*sk
= sock
->sk
;
2365 struct tipc_sock
*tsk
= tipc_sk(sk
);
2369 if ((lvl
== IPPROTO_TCP
) && (sock
->type
== SOCK_STREAM
))
2371 if (lvl
!= SOL_TIPC
)
2372 return -ENOPROTOOPT
;
2375 case TIPC_IMPORTANCE
:
2376 case TIPC_SRC_DROPPABLE
:
2377 case TIPC_DEST_DROPPABLE
:
2378 case TIPC_CONN_TIMEOUT
:
2379 if (ol
< sizeof(value
))
2381 res
= get_user(value
, (u32 __user
*)ov
);
2393 case TIPC_IMPORTANCE
:
2394 res
= tsk_set_importance(tsk
, value
);
2396 case TIPC_SRC_DROPPABLE
:
2397 if (sock
->type
!= SOCK_STREAM
)
2398 tsk_set_unreliable(tsk
, value
);
2402 case TIPC_DEST_DROPPABLE
:
2403 tsk_set_unreturnable(tsk
, value
);
2405 case TIPC_CONN_TIMEOUT
:
2406 tipc_sk(sk
)->conn_timeout
= value
;
2408 case TIPC_MCAST_BROADCAST
:
2409 tsk
->mc_method
.rcast
= false;
2410 tsk
->mc_method
.mandatory
= true;
2412 case TIPC_MCAST_REPLICAST
:
2413 tsk
->mc_method
.rcast
= true;
2414 tsk
->mc_method
.mandatory
= true;
2426 * tipc_getsockopt - get socket option
2427 * @sock: socket structure
2428 * @lvl: option level
2429 * @opt: option identifier
2430 * @ov: receptacle for option value
2431 * @ol: receptacle for length of option value
2433 * For stream sockets only, returns 0 length result for all IPPROTO_TCP options
2434 * (to ease compatibility).
2436 * Returns 0 on success, errno otherwise
2438 static int tipc_getsockopt(struct socket
*sock
, int lvl
, int opt
,
2439 char __user
*ov
, int __user
*ol
)
2441 struct sock
*sk
= sock
->sk
;
2442 struct tipc_sock
*tsk
= tipc_sk(sk
);
2447 if ((lvl
== IPPROTO_TCP
) && (sock
->type
== SOCK_STREAM
))
2448 return put_user(0, ol
);
2449 if (lvl
!= SOL_TIPC
)
2450 return -ENOPROTOOPT
;
2451 res
= get_user(len
, ol
);
2458 case TIPC_IMPORTANCE
:
2459 value
= tsk_importance(tsk
);
2461 case TIPC_SRC_DROPPABLE
:
2462 value
= tsk_unreliable(tsk
);
2464 case TIPC_DEST_DROPPABLE
:
2465 value
= tsk_unreturnable(tsk
);
2467 case TIPC_CONN_TIMEOUT
:
2468 value
= tsk
->conn_timeout
;
2469 /* no need to set "res", since already 0 at this point */
2471 case TIPC_NODE_RECVQ_DEPTH
:
2472 value
= 0; /* was tipc_queue_size, now obsolete */
2474 case TIPC_SOCK_RECVQ_DEPTH
:
2475 value
= skb_queue_len(&sk
->sk_receive_queue
);
2484 return res
; /* "get" failed */
2486 if (len
< sizeof(value
))
2489 if (copy_to_user(ov
, &value
, sizeof(value
)))
2492 return put_user(sizeof(value
), ol
);
2495 static int tipc_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
2497 struct sock
*sk
= sock
->sk
;
2498 struct tipc_sioc_ln_req lnr
;
2499 void __user
*argp
= (void __user
*)arg
;
2502 case SIOCGETLINKNAME
:
2503 if (copy_from_user(&lnr
, argp
, sizeof(lnr
)))
2505 if (!tipc_node_get_linkname(sock_net(sk
),
2506 lnr
.bearer_id
& 0xffff, lnr
.peer
,
2507 lnr
.linkname
, TIPC_MAX_LINK_NAME
)) {
2508 if (copy_to_user(argp
, &lnr
, sizeof(lnr
)))
2512 return -EADDRNOTAVAIL
;
2514 return -ENOIOCTLCMD
;
2518 static int tipc_socketpair(struct socket
*sock1
, struct socket
*sock2
)
2520 struct tipc_sock
*tsk2
= tipc_sk(sock2
->sk
);
2521 struct tipc_sock
*tsk1
= tipc_sk(sock1
->sk
);
2522 u32 onode
= tipc_own_addr(sock_net(sock1
->sk
));
2524 tsk1
->peer
.family
= AF_TIPC
;
2525 tsk1
->peer
.addrtype
= TIPC_ADDR_ID
;
2526 tsk1
->peer
.scope
= TIPC_NODE_SCOPE
;
2527 tsk1
->peer
.addr
.id
.ref
= tsk2
->portid
;
2528 tsk1
->peer
.addr
.id
.node
= onode
;
2529 tsk2
->peer
.family
= AF_TIPC
;
2530 tsk2
->peer
.addrtype
= TIPC_ADDR_ID
;
2531 tsk2
->peer
.scope
= TIPC_NODE_SCOPE
;
2532 tsk2
->peer
.addr
.id
.ref
= tsk1
->portid
;
2533 tsk2
->peer
.addr
.id
.node
= onode
;
2535 tipc_sk_finish_conn(tsk1
, tsk2
->portid
, onode
);
2536 tipc_sk_finish_conn(tsk2
, tsk1
->portid
, onode
);
2540 /* Protocol switches for the various types of TIPC sockets */
2542 static const struct proto_ops msg_ops
= {
2543 .owner
= THIS_MODULE
,
2545 .release
= tipc_release
,
2547 .connect
= tipc_connect
,
2548 .socketpair
= tipc_socketpair
,
2549 .accept
= sock_no_accept
,
2550 .getname
= tipc_getname
,
2552 .ioctl
= tipc_ioctl
,
2553 .listen
= sock_no_listen
,
2554 .shutdown
= tipc_shutdown
,
2555 .setsockopt
= tipc_setsockopt
,
2556 .getsockopt
= tipc_getsockopt
,
2557 .sendmsg
= tipc_sendmsg
,
2558 .recvmsg
= tipc_recvmsg
,
2559 .mmap
= sock_no_mmap
,
2560 .sendpage
= sock_no_sendpage
2563 static const struct proto_ops packet_ops
= {
2564 .owner
= THIS_MODULE
,
2566 .release
= tipc_release
,
2568 .connect
= tipc_connect
,
2569 .socketpair
= tipc_socketpair
,
2570 .accept
= tipc_accept
,
2571 .getname
= tipc_getname
,
2573 .ioctl
= tipc_ioctl
,
2574 .listen
= tipc_listen
,
2575 .shutdown
= tipc_shutdown
,
2576 .setsockopt
= tipc_setsockopt
,
2577 .getsockopt
= tipc_getsockopt
,
2578 .sendmsg
= tipc_send_packet
,
2579 .recvmsg
= tipc_recvmsg
,
2580 .mmap
= sock_no_mmap
,
2581 .sendpage
= sock_no_sendpage
2584 static const struct proto_ops stream_ops
= {
2585 .owner
= THIS_MODULE
,
2587 .release
= tipc_release
,
2589 .connect
= tipc_connect
,
2590 .socketpair
= tipc_socketpair
,
2591 .accept
= tipc_accept
,
2592 .getname
= tipc_getname
,
2594 .ioctl
= tipc_ioctl
,
2595 .listen
= tipc_listen
,
2596 .shutdown
= tipc_shutdown
,
2597 .setsockopt
= tipc_setsockopt
,
2598 .getsockopt
= tipc_getsockopt
,
2599 .sendmsg
= tipc_sendstream
,
2600 .recvmsg
= tipc_recvstream
,
2601 .mmap
= sock_no_mmap
,
2602 .sendpage
= sock_no_sendpage
2605 static const struct net_proto_family tipc_family_ops
= {
2606 .owner
= THIS_MODULE
,
2608 .create
= tipc_sk_create
2611 static struct proto tipc_proto
= {
2613 .owner
= THIS_MODULE
,
2614 .obj_size
= sizeof(struct tipc_sock
),
2615 .sysctl_rmem
= sysctl_tipc_rmem
2619 * tipc_socket_init - initialize TIPC socket interface
2621 * Returns 0 on success, errno otherwise
2623 int tipc_socket_init(void)
2627 res
= proto_register(&tipc_proto
, 1);
2629 pr_err("Failed to register TIPC protocol type\n");
2633 res
= sock_register(&tipc_family_ops
);
2635 pr_err("Failed to register TIPC socket type\n");
2636 proto_unregister(&tipc_proto
);
2644 * tipc_socket_stop - stop TIPC socket interface
2646 void tipc_socket_stop(void)
2648 sock_unregister(tipc_family_ops
.family
);
2649 proto_unregister(&tipc_proto
);
2652 /* Caller should hold socket lock for the passed tipc socket. */
2653 static int __tipc_nl_add_sk_con(struct sk_buff
*skb
, struct tipc_sock
*tsk
)
2657 struct nlattr
*nest
;
2659 peer_node
= tsk_peer_node(tsk
);
2660 peer_port
= tsk_peer_port(tsk
);
2662 nest
= nla_nest_start(skb
, TIPC_NLA_SOCK_CON
);
2664 if (nla_put_u32(skb
, TIPC_NLA_CON_NODE
, peer_node
))
2666 if (nla_put_u32(skb
, TIPC_NLA_CON_SOCK
, peer_port
))
2669 if (tsk
->conn_type
!= 0) {
2670 if (nla_put_flag(skb
, TIPC_NLA_CON_FLAG
))
2672 if (nla_put_u32(skb
, TIPC_NLA_CON_TYPE
, tsk
->conn_type
))
2674 if (nla_put_u32(skb
, TIPC_NLA_CON_INST
, tsk
->conn_instance
))
2677 nla_nest_end(skb
, nest
);
2682 nla_nest_cancel(skb
, nest
);
2687 /* Caller should hold socket lock for the passed tipc socket. */
2688 static int __tipc_nl_add_sk(struct sk_buff
*skb
, struct netlink_callback
*cb
,
2689 struct tipc_sock
*tsk
)
2693 struct nlattr
*attrs
;
2694 struct net
*net
= sock_net(skb
->sk
);
2695 struct tipc_net
*tn
= net_generic(net
, tipc_net_id
);
2696 struct sock
*sk
= &tsk
->sk
;
2698 hdr
= genlmsg_put(skb
, NETLINK_CB(cb
->skb
).portid
, cb
->nlh
->nlmsg_seq
,
2699 &tipc_genl_family
, NLM_F_MULTI
, TIPC_NL_SOCK_GET
);
2703 attrs
= nla_nest_start(skb
, TIPC_NLA_SOCK
);
2705 goto genlmsg_cancel
;
2706 if (nla_put_u32(skb
, TIPC_NLA_SOCK_REF
, tsk
->portid
))
2707 goto attr_msg_cancel
;
2708 if (nla_put_u32(skb
, TIPC_NLA_SOCK_ADDR
, tn
->own_addr
))
2709 goto attr_msg_cancel
;
2711 if (tipc_sk_connected(sk
)) {
2712 err
= __tipc_nl_add_sk_con(skb
, tsk
);
2714 goto attr_msg_cancel
;
2715 } else if (!list_empty(&tsk
->publications
)) {
2716 if (nla_put_flag(skb
, TIPC_NLA_SOCK_HAS_PUBL
))
2717 goto attr_msg_cancel
;
2719 nla_nest_end(skb
, attrs
);
2720 genlmsg_end(skb
, hdr
);
2725 nla_nest_cancel(skb
, attrs
);
2727 genlmsg_cancel(skb
, hdr
);
2732 int tipc_nl_sk_dump(struct sk_buff
*skb
, struct netlink_callback
*cb
)
2735 struct tipc_sock
*tsk
;
2736 const struct bucket_table
*tbl
;
2737 struct rhash_head
*pos
;
2738 struct net
*net
= sock_net(skb
->sk
);
2739 struct tipc_net
*tn
= net_generic(net
, tipc_net_id
);
2740 u32 tbl_id
= cb
->args
[0];
2741 u32 prev_portid
= cb
->args
[1];
2744 tbl
= rht_dereference_rcu((&tn
->sk_rht
)->tbl
, &tn
->sk_rht
);
2745 for (; tbl_id
< tbl
->size
; tbl_id
++) {
2746 rht_for_each_entry_rcu(tsk
, pos
, tbl
, tbl_id
, node
) {
2747 spin_lock_bh(&tsk
->sk
.sk_lock
.slock
);
2748 if (prev_portid
&& prev_portid
!= tsk
->portid
) {
2749 spin_unlock_bh(&tsk
->sk
.sk_lock
.slock
);
2753 err
= __tipc_nl_add_sk(skb
, cb
, tsk
);
2755 prev_portid
= tsk
->portid
;
2756 spin_unlock_bh(&tsk
->sk
.sk_lock
.slock
);
2760 spin_unlock_bh(&tsk
->sk
.sk_lock
.slock
);
2765 cb
->args
[0] = tbl_id
;
2766 cb
->args
[1] = prev_portid
;
2771 /* Caller should hold socket lock for the passed tipc socket. */
2772 static int __tipc_nl_add_sk_publ(struct sk_buff
*skb
,
2773 struct netlink_callback
*cb
,
2774 struct publication
*publ
)
2777 struct nlattr
*attrs
;
2779 hdr
= genlmsg_put(skb
, NETLINK_CB(cb
->skb
).portid
, cb
->nlh
->nlmsg_seq
,
2780 &tipc_genl_family
, NLM_F_MULTI
, TIPC_NL_PUBL_GET
);
2784 attrs
= nla_nest_start(skb
, TIPC_NLA_PUBL
);
2786 goto genlmsg_cancel
;
2788 if (nla_put_u32(skb
, TIPC_NLA_PUBL_KEY
, publ
->key
))
2789 goto attr_msg_cancel
;
2790 if (nla_put_u32(skb
, TIPC_NLA_PUBL_TYPE
, publ
->type
))
2791 goto attr_msg_cancel
;
2792 if (nla_put_u32(skb
, TIPC_NLA_PUBL_LOWER
, publ
->lower
))
2793 goto attr_msg_cancel
;
2794 if (nla_put_u32(skb
, TIPC_NLA_PUBL_UPPER
, publ
->upper
))
2795 goto attr_msg_cancel
;
2797 nla_nest_end(skb
, attrs
);
2798 genlmsg_end(skb
, hdr
);
2803 nla_nest_cancel(skb
, attrs
);
2805 genlmsg_cancel(skb
, hdr
);
2810 /* Caller should hold socket lock for the passed tipc socket. */
2811 static int __tipc_nl_list_sk_publ(struct sk_buff
*skb
,
2812 struct netlink_callback
*cb
,
2813 struct tipc_sock
*tsk
, u32
*last_publ
)
2816 struct publication
*p
;
2819 list_for_each_entry(p
, &tsk
->publications
, pport_list
) {
2820 if (p
->key
== *last_publ
)
2823 if (p
->key
!= *last_publ
) {
2824 /* We never set seq or call nl_dump_check_consistent()
2825 * this means that setting prev_seq here will cause the
2826 * consistence check to fail in the netlink callback
2827 * handler. Resulting in the last NLMSG_DONE message
2828 * having the NLM_F_DUMP_INTR flag set.
2835 p
= list_first_entry(&tsk
->publications
, struct publication
,
2839 list_for_each_entry_from(p
, &tsk
->publications
, pport_list
) {
2840 err
= __tipc_nl_add_sk_publ(skb
, cb
, p
);
2842 *last_publ
= p
->key
;
2851 int tipc_nl_publ_dump(struct sk_buff
*skb
, struct netlink_callback
*cb
)
2854 u32 tsk_portid
= cb
->args
[0];
2855 u32 last_publ
= cb
->args
[1];
2856 u32 done
= cb
->args
[2];
2857 struct net
*net
= sock_net(skb
->sk
);
2858 struct tipc_sock
*tsk
;
2861 struct nlattr
**attrs
;
2862 struct nlattr
*sock
[TIPC_NLA_SOCK_MAX
+ 1];
2864 err
= tipc_nlmsg_parse(cb
->nlh
, &attrs
);
2868 if (!attrs
[TIPC_NLA_SOCK
])
2871 err
= nla_parse_nested(sock
, TIPC_NLA_SOCK_MAX
,
2872 attrs
[TIPC_NLA_SOCK
],
2873 tipc_nl_sock_policy
, NULL
);
2877 if (!sock
[TIPC_NLA_SOCK_REF
])
2880 tsk_portid
= nla_get_u32(sock
[TIPC_NLA_SOCK_REF
]);
2886 tsk
= tipc_sk_lookup(net
, tsk_portid
);
2890 lock_sock(&tsk
->sk
);
2891 err
= __tipc_nl_list_sk_publ(skb
, cb
, tsk
, &last_publ
);
2894 release_sock(&tsk
->sk
);
2897 cb
->args
[0] = tsk_portid
;
2898 cb
->args
[1] = last_publ
;