1 /*
2 * net/tipc/socket.c: TIPC socket API
3 *
4 * Copyright (c) 2001-2007, 2012-2017, Ericsson AB
5 * Copyright (c) 2004-2008, 2010-2013, Wind River Systems
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are met:
10 *
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.
19 *
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.
23 *
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.
35 */
36
37 #include <linux/rhashtable.h>
38 #include <linux/sched/signal.h>
39
40 #include "core.h"
41 #include "name_table.h"
42 #include "node.h"
43 #include "link.h"
44 #include "name_distr.h"
45 #include "socket.h"
46 #include "bcast.h"
47 #include "netlink.h"
48 #include "group.h"
49 #include "trace.h"
50
51 #define NAGLE_START_INIT 4
52 #define NAGLE_START_MAX 1024
53 #define CONN_TIMEOUT_DEFAULT 8000 /* default connect timeout = 8s */
54 #define CONN_PROBING_INTV msecs_to_jiffies(3600000) /* [ms] => 1 h */
55 #define TIPC_MAX_PORT 0xffffffff
56 #define TIPC_MIN_PORT 1
57 #define TIPC_ACK_RATE 4 /* ACK at 1/4 of rcv window size */
58
59 enum {
60 TIPC_LISTEN = TCP_LISTEN,
61 TIPC_ESTABLISHED = TCP_ESTABLISHED,
62 TIPC_OPEN = TCP_CLOSE,
63 TIPC_DISCONNECTING = TCP_CLOSE_WAIT,
64 TIPC_CONNECTING = TCP_SYN_SENT,
65 };
66
67 struct sockaddr_pair {
68 struct sockaddr_tipc sock;
69 struct sockaddr_tipc member;
70 };
71
72 /**
73 * struct tipc_sock - TIPC socket structure
74 * @sk: socket - interacts with 'port' and with user via the socket API
75 * @conn_type: TIPC type used when connection was established
76 * @conn_instance: TIPC instance used when connection was established
77 * @published: non-zero if port has one or more associated names
78 * @max_pkt: maximum packet size "hint" used when building messages sent by port
79 * @maxnagle: maximum size of msg which can be subject to nagle
80 * @portid: unique port identity in TIPC socket hash table
81 * @phdr: preformatted message header used when sending messages
82 * #cong_links: list of congested links
83 * @publications: list of publications for port
84 * @blocking_link: address of the congested link we are currently sleeping on
85 * @pub_count: total # of publications port has made during its lifetime
86 * @conn_timeout: the time we can wait for an unresponded setup request
87 * @dupl_rcvcnt: number of bytes counted twice, in both backlog and rcv queue
88 * @cong_link_cnt: number of congested links
89 * @snt_unacked: # messages sent by socket, and not yet acked by peer
90 * @rcv_unacked: # messages read by user, but not yet acked back to peer
91 * @peer: 'connected' peer for dgram/rdm
92 * @node: hash table node
93 * @mc_method: cookie for use between socket and broadcast layer
94 * @rcu: rcu struct for tipc_sock
95 */
96 struct tipc_sock {
97 struct sock sk;
98 u32 conn_type;
99 u32 conn_instance;
100 int published;
101 u32 max_pkt;
102 u32 maxnagle;
103 u32 portid;
104 struct tipc_msg phdr;
105 struct list_head cong_links;
106 struct list_head publications;
107 u32 pub_count;
108 atomic_t dupl_rcvcnt;
109 u16 conn_timeout;
110 bool probe_unacked;
111 u16 cong_link_cnt;
112 u16 snt_unacked;
113 u16 snd_win;
114 u16 peer_caps;
115 u16 rcv_unacked;
116 u16 rcv_win;
117 struct sockaddr_tipc peer;
118 struct rhash_head node;
119 struct tipc_mc_method mc_method;
120 struct rcu_head rcu;
121 struct tipc_group *group;
122 u32 oneway;
123 u32 nagle_start;
124 u16 snd_backlog;
125 u16 msg_acc;
126 u16 pkt_cnt;
127 bool expect_ack;
128 bool nodelay;
129 bool group_is_open;
130 };
131
132 static int tipc_sk_backlog_rcv(struct sock *sk, struct sk_buff *skb);
133 static void tipc_data_ready(struct sock *sk);
134 static void tipc_write_space(struct sock *sk);
135 static void tipc_sock_destruct(struct sock *sk);
136 static int tipc_release(struct socket *sock);
137 static int tipc_accept(struct socket *sock, struct socket *new_sock, int flags,
138 bool kern);
139 static void tipc_sk_timeout(struct timer_list *t);
140 static int tipc_sk_publish(struct tipc_sock *tsk, uint scope,
141 struct tipc_name_seq const *seq);
142 static int tipc_sk_withdraw(struct tipc_sock *tsk, uint scope,
143 struct tipc_name_seq const *seq);
144 static int tipc_sk_leave(struct tipc_sock *tsk);
145 static struct tipc_sock *tipc_sk_lookup(struct net *net, u32 portid);
146 static int tipc_sk_insert(struct tipc_sock *tsk);
147 static void tipc_sk_remove(struct tipc_sock *tsk);
148 static int __tipc_sendstream(struct socket *sock, struct msghdr *m, size_t dsz);
149 static int __tipc_sendmsg(struct socket *sock, struct msghdr *m, size_t dsz);
150 static void tipc_sk_push_backlog(struct tipc_sock *tsk, bool nagle_ack);
151 static int tipc_wait_for_connect(struct socket *sock, long *timeo_p);
152
153 static const struct proto_ops packet_ops;
154 static const struct proto_ops stream_ops;
155 static const struct proto_ops msg_ops;
156 static struct proto tipc_proto;
157 static const struct rhashtable_params tsk_rht_params;
158
tsk_own_node(struct tipc_sock * tsk)159 static u32 tsk_own_node(struct tipc_sock *tsk)
160 {
161 return msg_prevnode(&tsk->phdr);
162 }
163
tsk_peer_node(struct tipc_sock * tsk)164 static u32 tsk_peer_node(struct tipc_sock *tsk)
165 {
166 return msg_destnode(&tsk->phdr);
167 }
168
tsk_peer_port(struct tipc_sock * tsk)169 static u32 tsk_peer_port(struct tipc_sock *tsk)
170 {
171 return msg_destport(&tsk->phdr);
172 }
173
tsk_unreliable(struct tipc_sock * tsk)174 static bool tsk_unreliable(struct tipc_sock *tsk)
175 {
176 return msg_src_droppable(&tsk->phdr) != 0;
177 }
178
tsk_set_unreliable(struct tipc_sock * tsk,bool unreliable)179 static void tsk_set_unreliable(struct tipc_sock *tsk, bool unreliable)
180 {
181 msg_set_src_droppable(&tsk->phdr, unreliable ? 1 : 0);
182 }
183
tsk_unreturnable(struct tipc_sock * tsk)184 static bool tsk_unreturnable(struct tipc_sock *tsk)
185 {
186 return msg_dest_droppable(&tsk->phdr) != 0;
187 }
188
tsk_set_unreturnable(struct tipc_sock * tsk,bool unreturnable)189 static void tsk_set_unreturnable(struct tipc_sock *tsk, bool unreturnable)
190 {
191 msg_set_dest_droppable(&tsk->phdr, unreturnable ? 1 : 0);
192 }
193
tsk_importance(struct tipc_sock * tsk)194 static int tsk_importance(struct tipc_sock *tsk)
195 {
196 return msg_importance(&tsk->phdr);
197 }
198
tipc_sk(const struct sock * sk)199 static struct tipc_sock *tipc_sk(const struct sock *sk)
200 {
201 return container_of(sk, struct tipc_sock, sk);
202 }
203
tsk_set_importance(struct sock * sk,int imp)204 int tsk_set_importance(struct sock *sk, int imp)
205 {
206 if (imp > TIPC_CRITICAL_IMPORTANCE)
207 return -EINVAL;
208 msg_set_importance(&tipc_sk(sk)->phdr, (u32)imp);
209 return 0;
210 }
211
tsk_conn_cong(struct tipc_sock * tsk)212 static bool tsk_conn_cong(struct tipc_sock *tsk)
213 {
214 return tsk->snt_unacked > tsk->snd_win;
215 }
216
tsk_blocks(int len)217 static u16 tsk_blocks(int len)
218 {
219 return ((len / FLOWCTL_BLK_SZ) + 1);
220 }
221
222 /* tsk_blocks(): translate a buffer size in bytes to number of
223 * advertisable blocks, taking into account the ratio truesize(len)/len
224 * We can trust that this ratio is always < 4 for len >= FLOWCTL_BLK_SZ
225 */
tsk_adv_blocks(int len)226 static u16 tsk_adv_blocks(int len)
227 {
228 return len / FLOWCTL_BLK_SZ / 4;
229 }
230
231 /* tsk_inc(): increment counter for sent or received data
232 * - If block based flow control is not supported by peer we
233 * fall back to message based ditto, incrementing the counter
234 */
tsk_inc(struct tipc_sock * tsk,int msglen)235 static u16 tsk_inc(struct tipc_sock *tsk, int msglen)
236 {
237 if (likely(tsk->peer_caps & TIPC_BLOCK_FLOWCTL))
238 return ((msglen / FLOWCTL_BLK_SZ) + 1);
239 return 1;
240 }
241
242 /* tsk_set_nagle - enable/disable nagle property by manipulating maxnagle
243 */
tsk_set_nagle(struct tipc_sock * tsk)244 static void tsk_set_nagle(struct tipc_sock *tsk)
245 {
246 struct sock *sk = &tsk->sk;
247
248 tsk->maxnagle = 0;
249 if (sk->sk_type != SOCK_STREAM)
250 return;
251 if (tsk->nodelay)
252 return;
253 if (!(tsk->peer_caps & TIPC_NAGLE))
254 return;
255 /* Limit node local buffer size to avoid receive queue overflow */
256 if (tsk->max_pkt == MAX_MSG_SIZE)
257 tsk->maxnagle = 1500;
258 else
259 tsk->maxnagle = tsk->max_pkt;
260 }
261
262 /**
263 * tsk_advance_rx_queue - discard first buffer in socket receive queue
264 *
265 * Caller must hold socket lock
266 */
tsk_advance_rx_queue(struct sock * sk)267 static void tsk_advance_rx_queue(struct sock *sk)
268 {
269 trace_tipc_sk_advance_rx(sk, NULL, TIPC_DUMP_SK_RCVQ, " ");
270 kfree_skb(__skb_dequeue(&sk->sk_receive_queue));
271 }
272
273 /* tipc_sk_respond() : send response message back to sender
274 */
tipc_sk_respond(struct sock * sk,struct sk_buff * skb,int err)275 static void tipc_sk_respond(struct sock *sk, struct sk_buff *skb, int err)
276 {
277 u32 selector;
278 u32 dnode;
279 u32 onode = tipc_own_addr(sock_net(sk));
280
281 if (!tipc_msg_reverse(onode, &skb, err))
282 return;
283
284 trace_tipc_sk_rej_msg(sk, skb, TIPC_DUMP_NONE, "@sk_respond!");
285 dnode = msg_destnode(buf_msg(skb));
286 selector = msg_origport(buf_msg(skb));
287 tipc_node_xmit_skb(sock_net(sk), skb, dnode, selector);
288 }
289
290 /**
291 * tsk_rej_rx_queue - reject all buffers in socket receive queue
292 *
293 * Caller must hold socket lock
294 */
tsk_rej_rx_queue(struct sock * sk,int error)295 static void tsk_rej_rx_queue(struct sock *sk, int error)
296 {
297 struct sk_buff *skb;
298
299 while ((skb = __skb_dequeue(&sk->sk_receive_queue)))
300 tipc_sk_respond(sk, skb, error);
301 }
302
tipc_sk_connected(struct sock * sk)303 static bool tipc_sk_connected(struct sock *sk)
304 {
305 return sk->sk_state == TIPC_ESTABLISHED;
306 }
307
308 /* tipc_sk_type_connectionless - check if the socket is datagram socket
309 * @sk: socket
310 *
311 * Returns true if connection less, false otherwise
312 */
tipc_sk_type_connectionless(struct sock * sk)313 static bool tipc_sk_type_connectionless(struct sock *sk)
314 {
315 return sk->sk_type == SOCK_RDM || sk->sk_type == SOCK_DGRAM;
316 }
317
318 /* tsk_peer_msg - verify if message was sent by connected port's peer
319 *
320 * Handles cases where the node's network address has changed from
321 * the default of <0.0.0> to its configured setting.
322 */
tsk_peer_msg(struct tipc_sock * tsk,struct tipc_msg * msg)323 static bool tsk_peer_msg(struct tipc_sock *tsk, struct tipc_msg *msg)
324 {
325 struct sock *sk = &tsk->sk;
326 u32 self = tipc_own_addr(sock_net(sk));
327 u32 peer_port = tsk_peer_port(tsk);
328 u32 orig_node, peer_node;
329
330 if (unlikely(!tipc_sk_connected(sk)))
331 return false;
332
333 if (unlikely(msg_origport(msg) != peer_port))
334 return false;
335
336 orig_node = msg_orignode(msg);
337 peer_node = tsk_peer_node(tsk);
338
339 if (likely(orig_node == peer_node))
340 return true;
341
342 if (!orig_node && peer_node == self)
343 return true;
344
345 if (!peer_node && orig_node == self)
346 return true;
347
348 return false;
349 }
350
351 /* tipc_set_sk_state - set the sk_state of the socket
352 * @sk: socket
353 *
354 * Caller must hold socket lock
355 *
356 * Returns 0 on success, errno otherwise
357 */
tipc_set_sk_state(struct sock * sk,int state)358 static int tipc_set_sk_state(struct sock *sk, int state)
359 {
360 int oldsk_state = sk->sk_state;
361 int res = -EINVAL;
362
363 switch (state) {
364 case TIPC_OPEN:
365 res = 0;
366 break;
367 case TIPC_LISTEN:
368 case TIPC_CONNECTING:
369 if (oldsk_state == TIPC_OPEN)
370 res = 0;
371 break;
372 case TIPC_ESTABLISHED:
373 if (oldsk_state == TIPC_CONNECTING ||
374 oldsk_state == TIPC_OPEN)
375 res = 0;
376 break;
377 case TIPC_DISCONNECTING:
378 if (oldsk_state == TIPC_CONNECTING ||
379 oldsk_state == TIPC_ESTABLISHED)
380 res = 0;
381 break;
382 }
383
384 if (!res)
385 sk->sk_state = state;
386
387 return res;
388 }
389
tipc_sk_sock_err(struct socket * sock,long * timeout)390 static int tipc_sk_sock_err(struct socket *sock, long *timeout)
391 {
392 struct sock *sk = sock->sk;
393 int err = sock_error(sk);
394 int typ = sock->type;
395
396 if (err)
397 return err;
398 if (typ == SOCK_STREAM || typ == SOCK_SEQPACKET) {
399 if (sk->sk_state == TIPC_DISCONNECTING)
400 return -EPIPE;
401 else if (!tipc_sk_connected(sk))
402 return -ENOTCONN;
403 }
404 if (!*timeout)
405 return -EAGAIN;
406 if (signal_pending(current))
407 return sock_intr_errno(*timeout);
408
409 return 0;
410 }
411
412 #define tipc_wait_for_cond(sock_, timeo_, condition_) \
413 ({ \
414 DEFINE_WAIT_FUNC(wait_, woken_wake_function); \
415 struct sock *sk_; \
416 int rc_; \
417 \
418 while ((rc_ = !(condition_))) { \
419 /* coupled with smp_wmb() in tipc_sk_proto_rcv() */ \
420 smp_rmb(); \
421 sk_ = (sock_)->sk; \
422 rc_ = tipc_sk_sock_err((sock_), timeo_); \
423 if (rc_) \
424 break; \
425 add_wait_queue(sk_sleep(sk_), &wait_); \
426 release_sock(sk_); \
427 *(timeo_) = wait_woken(&wait_, TASK_INTERRUPTIBLE, *(timeo_)); \
428 sched_annotate_sleep(); \
429 lock_sock(sk_); \
430 remove_wait_queue(sk_sleep(sk_), &wait_); \
431 } \
432 rc_; \
433 })
434
435 /**
436 * tipc_sk_create - create a TIPC socket
437 * @net: network namespace (must be default network)
438 * @sock: pre-allocated socket structure
439 * @protocol: protocol indicator (must be 0)
440 * @kern: caused by kernel or by userspace?
441 *
442 * This routine creates additional data structures used by the TIPC socket,
443 * initializes them, and links them together.
444 *
445 * Returns 0 on success, errno otherwise
446 */
tipc_sk_create(struct net * net,struct socket * sock,int protocol,int kern)447 static int tipc_sk_create(struct net *net, struct socket *sock,
448 int protocol, int kern)
449 {
450 const struct proto_ops *ops;
451 struct sock *sk;
452 struct tipc_sock *tsk;
453 struct tipc_msg *msg;
454
455 /* Validate arguments */
456 if (unlikely(protocol != 0))
457 return -EPROTONOSUPPORT;
458
459 switch (sock->type) {
460 case SOCK_STREAM:
461 ops = &stream_ops;
462 break;
463 case SOCK_SEQPACKET:
464 ops = &packet_ops;
465 break;
466 case SOCK_DGRAM:
467 case SOCK_RDM:
468 ops = &msg_ops;
469 break;
470 default:
471 return -EPROTOTYPE;
472 }
473
474 /* Allocate socket's protocol area */
475 sk = sk_alloc(net, AF_TIPC, GFP_KERNEL, &tipc_proto, kern);
476 if (sk == NULL)
477 return -ENOMEM;
478
479 tsk = tipc_sk(sk);
480 tsk->max_pkt = MAX_PKT_DEFAULT;
481 tsk->maxnagle = 0;
482 tsk->nagle_start = NAGLE_START_INIT;
483 INIT_LIST_HEAD(&tsk->publications);
484 INIT_LIST_HEAD(&tsk->cong_links);
485 msg = &tsk->phdr;
486
487 /* Finish initializing socket data structures */
488 sock->ops = ops;
489 sock_init_data(sock, sk);
490 tipc_set_sk_state(sk, TIPC_OPEN);
491 if (tipc_sk_insert(tsk)) {
492 pr_warn("Socket create failed; port number exhausted\n");
493 return -EINVAL;
494 }
495
496 /* Ensure tsk is visible before we read own_addr. */
497 smp_mb();
498
499 tipc_msg_init(tipc_own_addr(net), msg, TIPC_LOW_IMPORTANCE,
500 TIPC_NAMED_MSG, NAMED_H_SIZE, 0);
501
502 msg_set_origport(msg, tsk->portid);
503 timer_setup(&sk->sk_timer, tipc_sk_timeout, 0);
504 sk->sk_shutdown = 0;
505 sk->sk_backlog_rcv = tipc_sk_backlog_rcv;
506 sk->sk_rcvbuf = sysctl_tipc_rmem[1];
507 sk->sk_data_ready = tipc_data_ready;
508 sk->sk_write_space = tipc_write_space;
509 sk->sk_destruct = tipc_sock_destruct;
510 tsk->conn_timeout = CONN_TIMEOUT_DEFAULT;
511 tsk->group_is_open = true;
512 atomic_set(&tsk->dupl_rcvcnt, 0);
513
514 /* Start out with safe limits until we receive an advertised window */
515 tsk->snd_win = tsk_adv_blocks(RCVBUF_MIN);
516 tsk->rcv_win = tsk->snd_win;
517
518 if (tipc_sk_type_connectionless(sk)) {
519 tsk_set_unreturnable(tsk, true);
520 if (sock->type == SOCK_DGRAM)
521 tsk_set_unreliable(tsk, true);
522 }
523 __skb_queue_head_init(&tsk->mc_method.deferredq);
524 trace_tipc_sk_create(sk, NULL, TIPC_DUMP_NONE, " ");
525 return 0;
526 }
527
tipc_sk_callback(struct rcu_head * head)528 static void tipc_sk_callback(struct rcu_head *head)
529 {
530 struct tipc_sock *tsk = container_of(head, struct tipc_sock, rcu);
531
532 sock_put(&tsk->sk);
533 }
534
535 /* Caller should hold socket lock for the socket. */
__tipc_shutdown(struct socket * sock,int error)536 static void __tipc_shutdown(struct socket *sock, int error)
537 {
538 struct sock *sk = sock->sk;
539 struct tipc_sock *tsk = tipc_sk(sk);
540 struct net *net = sock_net(sk);
541 long timeout = msecs_to_jiffies(CONN_TIMEOUT_DEFAULT);
542 u32 dnode = tsk_peer_node(tsk);
543 struct sk_buff *skb;
544
545 /* Avoid that hi-prio shutdown msgs bypass msgs in link wakeup queue */
546 tipc_wait_for_cond(sock, &timeout, (!tsk->cong_link_cnt &&
547 !tsk_conn_cong(tsk)));
548
549 /* Push out delayed messages if in Nagle mode */
550 tipc_sk_push_backlog(tsk, false);
551 /* Remove pending SYN */
552 __skb_queue_purge(&sk->sk_write_queue);
553
554 /* Remove partially received buffer if any */
555 skb = skb_peek(&sk->sk_receive_queue);
556 if (skb && TIPC_SKB_CB(skb)->bytes_read) {
557 __skb_unlink(skb, &sk->sk_receive_queue);
558 kfree_skb(skb);
559 }
560
561 /* Reject all unreceived messages if connectionless */
562 if (tipc_sk_type_connectionless(sk)) {
563 tsk_rej_rx_queue(sk, error);
564 return;
565 }
566
567 switch (sk->sk_state) {
568 case TIPC_CONNECTING:
569 case TIPC_ESTABLISHED:
570 tipc_set_sk_state(sk, TIPC_DISCONNECTING);
571 tipc_node_remove_conn(net, dnode, tsk->portid);
572 /* Send a FIN+/- to its peer */
573 skb = __skb_dequeue(&sk->sk_receive_queue);
574 if (skb) {
575 __skb_queue_purge(&sk->sk_receive_queue);
576 tipc_sk_respond(sk, skb, error);
577 break;
578 }
579 skb = tipc_msg_create(TIPC_CRITICAL_IMPORTANCE,
580 TIPC_CONN_MSG, SHORT_H_SIZE, 0, dnode,
581 tsk_own_node(tsk), tsk_peer_port(tsk),
582 tsk->portid, error);
583 if (skb)
584 tipc_node_xmit_skb(net, skb, dnode, tsk->portid);
585 break;
586 case TIPC_LISTEN:
587 /* Reject all SYN messages */
588 tsk_rej_rx_queue(sk, error);
589 break;
590 default:
591 __skb_queue_purge(&sk->sk_receive_queue);
592 break;
593 }
594 }
595
596 /**
597 * tipc_release - destroy a TIPC socket
598 * @sock: socket to destroy
599 *
600 * This routine cleans up any messages that are still queued on the socket.
601 * For DGRAM and RDM socket types, all queued messages are rejected.
602 * For SEQPACKET and STREAM socket types, the first message is rejected
603 * and any others are discarded. (If the first message on a STREAM socket
604 * is partially-read, it is discarded and the next one is rejected instead.)
605 *
606 * NOTE: Rejected messages are not necessarily returned to the sender! They
607 * are returned or discarded according to the "destination droppable" setting
608 * specified for the message by the sender.
609 *
610 * Returns 0 on success, errno otherwise
611 */
tipc_release(struct socket * sock)612 static int tipc_release(struct socket *sock)
613 {
614 struct sock *sk = sock->sk;
615 struct tipc_sock *tsk;
616
617 /*
618 * Exit if socket isn't fully initialized (occurs when a failed accept()
619 * releases a pre-allocated child socket that was never used)
620 */
621 if (sk == NULL)
622 return 0;
623
624 tsk = tipc_sk(sk);
625 lock_sock(sk);
626
627 trace_tipc_sk_release(sk, NULL, TIPC_DUMP_ALL, " ");
628 __tipc_shutdown(sock, TIPC_ERR_NO_PORT);
629 sk->sk_shutdown = SHUTDOWN_MASK;
630 tipc_sk_leave(tsk);
631 tipc_sk_withdraw(tsk, 0, NULL);
632 __skb_queue_purge(&tsk->mc_method.deferredq);
633 sk_stop_timer(sk, &sk->sk_timer);
634 tipc_sk_remove(tsk);
635
636 sock_orphan(sk);
637 /* Reject any messages that accumulated in backlog queue */
638 release_sock(sk);
639 tipc_dest_list_purge(&tsk->cong_links);
640 tsk->cong_link_cnt = 0;
641 call_rcu(&tsk->rcu, tipc_sk_callback);
642 sock->sk = NULL;
643
644 return 0;
645 }
646
647 /**
648 * tipc_bind - associate or disassocate TIPC name(s) with a socket
649 * @sock: socket structure
650 * @uaddr: socket address describing name(s) and desired operation
651 * @uaddr_len: size of socket address data structure
652 *
653 * Name and name sequence binding is indicated using a positive scope value;
654 * a negative scope value unbinds the specified name. Specifying no name
655 * (i.e. a socket address length of 0) unbinds all names from the socket.
656 *
657 * Returns 0 on success, errno otherwise
658 *
659 * NOTE: This routine doesn't need to take the socket lock since it doesn't
660 * access any non-constant socket information.
661 */
tipc_bind(struct socket * sock,struct sockaddr * uaddr,int uaddr_len)662 static int tipc_bind(struct socket *sock, struct sockaddr *uaddr,
663 int uaddr_len)
664 {
665 struct sock *sk = sock->sk;
666 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
667 struct tipc_sock *tsk = tipc_sk(sk);
668 int res = -EINVAL;
669
670 lock_sock(sk);
671 if (unlikely(!uaddr_len)) {
672 res = tipc_sk_withdraw(tsk, 0, NULL);
673 goto exit;
674 }
675 if (tsk->group) {
676 res = -EACCES;
677 goto exit;
678 }
679 if (uaddr_len < sizeof(struct sockaddr_tipc)) {
680 res = -EINVAL;
681 goto exit;
682 }
683 if (addr->family != AF_TIPC) {
684 res = -EAFNOSUPPORT;
685 goto exit;
686 }
687
688 if (addr->addrtype == TIPC_ADDR_NAME)
689 addr->addr.nameseq.upper = addr->addr.nameseq.lower;
690 else if (addr->addrtype != TIPC_ADDR_NAMESEQ) {
691 res = -EAFNOSUPPORT;
692 goto exit;
693 }
694
695 if ((addr->addr.nameseq.type < TIPC_RESERVED_TYPES) &&
696 (addr->addr.nameseq.type != TIPC_TOP_SRV) &&
697 (addr->addr.nameseq.type != TIPC_CFG_SRV)) {
698 res = -EACCES;
699 goto exit;
700 }
701
702 res = (addr->scope >= 0) ?
703 tipc_sk_publish(tsk, addr->scope, &addr->addr.nameseq) :
704 tipc_sk_withdraw(tsk, -addr->scope, &addr->addr.nameseq);
705 exit:
706 release_sock(sk);
707 return res;
708 }
709
710 /**
711 * tipc_getname - get port ID of socket or peer socket
712 * @sock: socket structure
713 * @uaddr: area for returned socket address
714 * @peer: 0 = own ID, 1 = current peer ID, 2 = current/former peer ID
715 *
716 * Returns 0 on success, errno otherwise
717 *
718 * NOTE: This routine doesn't need to take the socket lock since it only
719 * accesses socket information that is unchanging (or which changes in
720 * a completely predictable manner).
721 */
tipc_getname(struct socket * sock,struct sockaddr * uaddr,int peer)722 static int tipc_getname(struct socket *sock, struct sockaddr *uaddr,
723 int peer)
724 {
725 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
726 struct sock *sk = sock->sk;
727 struct tipc_sock *tsk = tipc_sk(sk);
728
729 memset(addr, 0, sizeof(*addr));
730 if (peer) {
731 if ((!tipc_sk_connected(sk)) &&
732 ((peer != 2) || (sk->sk_state != TIPC_DISCONNECTING)))
733 return -ENOTCONN;
734 addr->addr.id.ref = tsk_peer_port(tsk);
735 addr->addr.id.node = tsk_peer_node(tsk);
736 } else {
737 addr->addr.id.ref = tsk->portid;
738 addr->addr.id.node = tipc_own_addr(sock_net(sk));
739 }
740
741 addr->addrtype = TIPC_ADDR_ID;
742 addr->family = AF_TIPC;
743 addr->scope = 0;
744 addr->addr.name.domain = 0;
745
746 return sizeof(*addr);
747 }
748
749 /**
750 * tipc_poll - read and possibly block on pollmask
751 * @file: file structure associated with the socket
752 * @sock: socket for which to calculate the poll bits
753 * @wait: ???
754 *
755 * Returns pollmask value
756 *
757 * COMMENTARY:
758 * It appears that the usual socket locking mechanisms are not useful here
759 * since the pollmask info is potentially out-of-date the moment this routine
760 * exits. TCP and other protocols seem to rely on higher level poll routines
761 * to handle any preventable race conditions, so TIPC will do the same ...
762 *
763 * IMPORTANT: The fact that a read or write operation is indicated does NOT
764 * imply that the operation will succeed, merely that it should be performed
765 * and will not block.
766 */
tipc_poll(struct file * file,struct socket * sock,poll_table * wait)767 static __poll_t tipc_poll(struct file *file, struct socket *sock,
768 poll_table *wait)
769 {
770 struct sock *sk = sock->sk;
771 struct tipc_sock *tsk = tipc_sk(sk);
772 __poll_t revents = 0;
773
774 sock_poll_wait(file, sock, wait);
775 trace_tipc_sk_poll(sk, NULL, TIPC_DUMP_ALL, " ");
776
777 if (sk->sk_shutdown & RCV_SHUTDOWN)
778 revents |= EPOLLRDHUP | EPOLLIN | EPOLLRDNORM;
779 if (sk->sk_shutdown == SHUTDOWN_MASK)
780 revents |= EPOLLHUP;
781
782 switch (sk->sk_state) {
783 case TIPC_ESTABLISHED:
784 if (!tsk->cong_link_cnt && !tsk_conn_cong(tsk))
785 revents |= EPOLLOUT;
786 fallthrough;
787 case TIPC_LISTEN:
788 case TIPC_CONNECTING:
789 if (!skb_queue_empty_lockless(&sk->sk_receive_queue))
790 revents |= EPOLLIN | EPOLLRDNORM;
791 break;
792 case TIPC_OPEN:
793 if (tsk->group_is_open && !tsk->cong_link_cnt)
794 revents |= EPOLLOUT;
795 if (!tipc_sk_type_connectionless(sk))
796 break;
797 if (skb_queue_empty_lockless(&sk->sk_receive_queue))
798 break;
799 revents |= EPOLLIN | EPOLLRDNORM;
800 break;
801 case TIPC_DISCONNECTING:
802 revents = EPOLLIN | EPOLLRDNORM | EPOLLHUP;
803 break;
804 }
805 return revents;
806 }
807
808 /**
809 * tipc_sendmcast - send multicast message
810 * @sock: socket structure
811 * @seq: destination address
812 * @msg: message to send
813 * @dlen: length of data to send
814 * @timeout: timeout to wait for wakeup
815 *
816 * Called from function tipc_sendmsg(), which has done all sanity checks
817 * Returns the number of bytes sent on success, or errno
818 */
tipc_sendmcast(struct socket * sock,struct tipc_name_seq * seq,struct msghdr * msg,size_t dlen,long timeout)819 static int tipc_sendmcast(struct socket *sock, struct tipc_name_seq *seq,
820 struct msghdr *msg, size_t dlen, long timeout)
821 {
822 struct sock *sk = sock->sk;
823 struct tipc_sock *tsk = tipc_sk(sk);
824 struct tipc_msg *hdr = &tsk->phdr;
825 struct net *net = sock_net(sk);
826 int mtu = tipc_bcast_get_mtu(net);
827 struct tipc_mc_method *method = &tsk->mc_method;
828 struct sk_buff_head pkts;
829 struct tipc_nlist dsts;
830 int rc;
831
832 if (tsk->group)
833 return -EACCES;
834
835 /* Block or return if any destination link is congested */
836 rc = tipc_wait_for_cond(sock, &timeout, !tsk->cong_link_cnt);
837 if (unlikely(rc))
838 return rc;
839
840 /* Lookup destination nodes */
841 tipc_nlist_init(&dsts, tipc_own_addr(net));
842 tipc_nametbl_lookup_dst_nodes(net, seq->type, seq->lower,
843 seq->upper, &dsts);
844 if (!dsts.local && !dsts.remote)
845 return -EHOSTUNREACH;
846
847 /* Build message header */
848 msg_set_type(hdr, TIPC_MCAST_MSG);
849 msg_set_hdr_sz(hdr, MCAST_H_SIZE);
850 msg_set_lookup_scope(hdr, TIPC_CLUSTER_SCOPE);
851 msg_set_destport(hdr, 0);
852 msg_set_destnode(hdr, 0);
853 msg_set_nametype(hdr, seq->type);
854 msg_set_namelower(hdr, seq->lower);
855 msg_set_nameupper(hdr, seq->upper);
856
857 /* Build message as chain of buffers */
858 __skb_queue_head_init(&pkts);
859 rc = tipc_msg_build(hdr, msg, 0, dlen, mtu, &pkts);
860
861 /* Send message if build was successful */
862 if (unlikely(rc == dlen)) {
863 trace_tipc_sk_sendmcast(sk, skb_peek(&pkts),
864 TIPC_DUMP_SK_SNDQ, " ");
865 rc = tipc_mcast_xmit(net, &pkts, method, &dsts,
866 &tsk->cong_link_cnt);
867 }
868
869 tipc_nlist_purge(&dsts);
870
871 return rc ? rc : dlen;
872 }
873
874 /**
875 * tipc_send_group_msg - send a message to a member in the group
876 * @net: network namespace
877 * @m: message to send
878 * @mb: group member
879 * @dnode: destination node
880 * @dport: destination port
881 * @dlen: total length of message data
882 */
tipc_send_group_msg(struct net * net,struct tipc_sock * tsk,struct msghdr * m,struct tipc_member * mb,u32 dnode,u32 dport,int dlen)883 static int tipc_send_group_msg(struct net *net, struct tipc_sock *tsk,
884 struct msghdr *m, struct tipc_member *mb,
885 u32 dnode, u32 dport, int dlen)
886 {
887 u16 bc_snd_nxt = tipc_group_bc_snd_nxt(tsk->group);
888 struct tipc_mc_method *method = &tsk->mc_method;
889 int blks = tsk_blocks(GROUP_H_SIZE + dlen);
890 struct tipc_msg *hdr = &tsk->phdr;
891 struct sk_buff_head pkts;
892 int mtu, rc;
893
894 /* Complete message header */
895 msg_set_type(hdr, TIPC_GRP_UCAST_MSG);
896 msg_set_hdr_sz(hdr, GROUP_H_SIZE);
897 msg_set_destport(hdr, dport);
898 msg_set_destnode(hdr, dnode);
899 msg_set_grp_bc_seqno(hdr, bc_snd_nxt);
900
901 /* Build message as chain of buffers */
902 __skb_queue_head_init(&pkts);
903 mtu = tipc_node_get_mtu(net, dnode, tsk->portid, false);
904 rc = tipc_msg_build(hdr, m, 0, dlen, mtu, &pkts);
905 if (unlikely(rc != dlen))
906 return rc;
907
908 /* Send message */
909 rc = tipc_node_xmit(net, &pkts, dnode, tsk->portid);
910 if (unlikely(rc == -ELINKCONG)) {
911 tipc_dest_push(&tsk->cong_links, dnode, 0);
912 tsk->cong_link_cnt++;
913 }
914
915 /* Update send window */
916 tipc_group_update_member(mb, blks);
917
918 /* A broadcast sent within next EXPIRE period must follow same path */
919 method->rcast = true;
920 method->mandatory = true;
921 return dlen;
922 }
923
924 /**
925 * tipc_send_group_unicast - send message to a member in the group
926 * @sock: socket structure
927 * @m: message to send
928 * @dlen: total length of message data
929 * @timeout: timeout to wait for wakeup
930 *
931 * Called from function tipc_sendmsg(), which has done all sanity checks
932 * Returns the number of bytes sent on success, or errno
933 */
tipc_send_group_unicast(struct socket * sock,struct msghdr * m,int dlen,long timeout)934 static int tipc_send_group_unicast(struct socket *sock, struct msghdr *m,
935 int dlen, long timeout)
936 {
937 struct sock *sk = sock->sk;
938 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
939 int blks = tsk_blocks(GROUP_H_SIZE + dlen);
940 struct tipc_sock *tsk = tipc_sk(sk);
941 struct net *net = sock_net(sk);
942 struct tipc_member *mb = NULL;
943 u32 node, port;
944 int rc;
945
946 node = dest->addr.id.node;
947 port = dest->addr.id.ref;
948 if (!port && !node)
949 return -EHOSTUNREACH;
950
951 /* Block or return if destination link or member is congested */
952 rc = tipc_wait_for_cond(sock, &timeout,
953 !tipc_dest_find(&tsk->cong_links, node, 0) &&
954 tsk->group &&
955 !tipc_group_cong(tsk->group, node, port, blks,
956 &mb));
957 if (unlikely(rc))
958 return rc;
959
960 if (unlikely(!mb))
961 return -EHOSTUNREACH;
962
963 rc = tipc_send_group_msg(net, tsk, m, mb, node, port, dlen);
964
965 return rc ? rc : dlen;
966 }
967
968 /**
969 * tipc_send_group_anycast - send message to any member with given identity
970 * @sock: socket structure
971 * @m: message to send
972 * @dlen: total length of message data
973 * @timeout: timeout to wait for wakeup
974 *
975 * Called from function tipc_sendmsg(), which has done all sanity checks
976 * Returns the number of bytes sent on success, or errno
977 */
tipc_send_group_anycast(struct socket * sock,struct msghdr * m,int dlen,long timeout)978 static int tipc_send_group_anycast(struct socket *sock, struct msghdr *m,
979 int dlen, long timeout)
980 {
981 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
982 struct sock *sk = sock->sk;
983 struct tipc_sock *tsk = tipc_sk(sk);
984 struct list_head *cong_links = &tsk->cong_links;
985 int blks = tsk_blocks(GROUP_H_SIZE + dlen);
986 struct tipc_msg *hdr = &tsk->phdr;
987 struct tipc_member *first = NULL;
988 struct tipc_member *mbr = NULL;
989 struct net *net = sock_net(sk);
990 u32 node, port, exclude;
991 struct list_head dsts;
992 u32 type, inst, scope;
993 int lookups = 0;
994 int dstcnt, rc;
995 bool cong;
996
997 INIT_LIST_HEAD(&dsts);
998
999 type = msg_nametype(hdr);
1000 inst = dest->addr.name.name.instance;
1001 scope = msg_lookup_scope(hdr);
1002
1003 while (++lookups < 4) {
1004 exclude = tipc_group_exclude(tsk->group);
1005
1006 first = NULL;
1007
1008 /* Look for a non-congested destination member, if any */
1009 while (1) {
1010 if (!tipc_nametbl_lookup(net, type, inst, scope, &dsts,
1011 &dstcnt, exclude, false))
1012 return -EHOSTUNREACH;
1013 tipc_dest_pop(&dsts, &node, &port);
1014 cong = tipc_group_cong(tsk->group, node, port, blks,
1015 &mbr);
1016 if (!cong)
1017 break;
1018 if (mbr == first)
1019 break;
1020 if (!first)
1021 first = mbr;
1022 }
1023
1024 /* Start over if destination was not in member list */
1025 if (unlikely(!mbr))
1026 continue;
1027
1028 if (likely(!cong && !tipc_dest_find(cong_links, node, 0)))
1029 break;
1030
1031 /* Block or return if destination link or member is congested */
1032 rc = tipc_wait_for_cond(sock, &timeout,
1033 !tipc_dest_find(cong_links, node, 0) &&
1034 tsk->group &&
1035 !tipc_group_cong(tsk->group, node, port,
1036 blks, &mbr));
1037 if (unlikely(rc))
1038 return rc;
1039
1040 /* Send, unless destination disappeared while waiting */
1041 if (likely(mbr))
1042 break;
1043 }
1044
1045 if (unlikely(lookups >= 4))
1046 return -EHOSTUNREACH;
1047
1048 rc = tipc_send_group_msg(net, tsk, m, mbr, node, port, dlen);
1049
1050 return rc ? rc : dlen;
1051 }
1052
1053 /**
1054 * tipc_send_group_bcast - send message to all members in communication group
1055 * @sock: socket structure
1056 * @m: message to send
1057 * @dlen: total length of message data
1058 * @timeout: timeout to wait for wakeup
1059 *
1060 * Called from function tipc_sendmsg(), which has done all sanity checks
1061 * Returns the number of bytes sent on success, or errno
1062 */
tipc_send_group_bcast(struct socket * sock,struct msghdr * m,int dlen,long timeout)1063 static int tipc_send_group_bcast(struct socket *sock, struct msghdr *m,
1064 int dlen, long timeout)
1065 {
1066 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
1067 struct sock *sk = sock->sk;
1068 struct net *net = sock_net(sk);
1069 struct tipc_sock *tsk = tipc_sk(sk);
1070 struct tipc_nlist *dsts;
1071 struct tipc_mc_method *method = &tsk->mc_method;
1072 bool ack = method->mandatory && method->rcast;
1073 int blks = tsk_blocks(MCAST_H_SIZE + dlen);
1074 struct tipc_msg *hdr = &tsk->phdr;
1075 int mtu = tipc_bcast_get_mtu(net);
1076 struct sk_buff_head pkts;
1077 int rc = -EHOSTUNREACH;
1078
1079 /* Block or return if any destination link or member is congested */
1080 rc = tipc_wait_for_cond(sock, &timeout,
1081 !tsk->cong_link_cnt && tsk->group &&
1082 !tipc_group_bc_cong(tsk->group, blks));
1083 if (unlikely(rc))
1084 return rc;
1085
1086 dsts = tipc_group_dests(tsk->group);
1087 if (!dsts->local && !dsts->remote)
1088 return -EHOSTUNREACH;
1089
1090 /* Complete message header */
1091 if (dest) {
1092 msg_set_type(hdr, TIPC_GRP_MCAST_MSG);
1093 msg_set_nameinst(hdr, dest->addr.name.name.instance);
1094 } else {
1095 msg_set_type(hdr, TIPC_GRP_BCAST_MSG);
1096 msg_set_nameinst(hdr, 0);
1097 }
1098 msg_set_hdr_sz(hdr, GROUP_H_SIZE);
1099 msg_set_destport(hdr, 0);
1100 msg_set_destnode(hdr, 0);
1101 msg_set_grp_bc_seqno(hdr, tipc_group_bc_snd_nxt(tsk->group));
1102
1103 /* Avoid getting stuck with repeated forced replicasts */
1104 msg_set_grp_bc_ack_req(hdr, ack);
1105
1106 /* Build message as chain of buffers */
1107 __skb_queue_head_init(&pkts);
1108 rc = tipc_msg_build(hdr, m, 0, dlen, mtu, &pkts);
1109 if (unlikely(rc != dlen))
1110 return rc;
1111
1112 /* Send message */
1113 rc = tipc_mcast_xmit(net, &pkts, method, dsts, &tsk->cong_link_cnt);
1114 if (unlikely(rc))
1115 return rc;
1116
1117 /* Update broadcast sequence number and send windows */
1118 tipc_group_update_bc_members(tsk->group, blks, ack);
1119
1120 /* Broadcast link is now free to choose method for next broadcast */
1121 method->mandatory = false;
1122 method->expires = jiffies;
1123
1124 return dlen;
1125 }
1126
1127 /**
1128 * tipc_send_group_mcast - send message to all members with given identity
1129 * @sock: socket structure
1130 * @m: message to send
1131 * @dlen: total length of message data
1132 * @timeout: timeout to wait for wakeup
1133 *
1134 * Called from function tipc_sendmsg(), which has done all sanity checks
1135 * Returns the number of bytes sent on success, or errno
1136 */
tipc_send_group_mcast(struct socket * sock,struct msghdr * m,int dlen,long timeout)1137 static int tipc_send_group_mcast(struct socket *sock, struct msghdr *m,
1138 int dlen, long timeout)
1139 {
1140 struct sock *sk = sock->sk;
1141 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
1142 struct tipc_sock *tsk = tipc_sk(sk);
1143 struct tipc_group *grp = tsk->group;
1144 struct tipc_msg *hdr = &tsk->phdr;
1145 struct net *net = sock_net(sk);
1146 u32 type, inst, scope, exclude;
1147 struct list_head dsts;
1148 u32 dstcnt;
1149
1150 INIT_LIST_HEAD(&dsts);
1151
1152 type = msg_nametype(hdr);
1153 inst = dest->addr.name.name.instance;
1154 scope = msg_lookup_scope(hdr);
1155 exclude = tipc_group_exclude(grp);
1156
1157 if (!tipc_nametbl_lookup(net, type, inst, scope, &dsts,
1158 &dstcnt, exclude, true))
1159 return -EHOSTUNREACH;
1160
1161 if (dstcnt == 1) {
1162 tipc_dest_pop(&dsts, &dest->addr.id.node, &dest->addr.id.ref);
1163 return tipc_send_group_unicast(sock, m, dlen, timeout);
1164 }
1165
1166 tipc_dest_list_purge(&dsts);
1167 return tipc_send_group_bcast(sock, m, dlen, timeout);
1168 }
1169
1170 /**
1171 * tipc_sk_mcast_rcv - Deliver multicast messages to all destination sockets
1172 * @arrvq: queue with arriving messages, to be cloned after destination lookup
1173 * @inputq: queue with cloned messages, delivered to socket after dest lookup
1174 *
1175 * Multi-threaded: parallel calls with reference to same queues may occur
1176 */
tipc_sk_mcast_rcv(struct net * net,struct sk_buff_head * arrvq,struct sk_buff_head * inputq)1177 void tipc_sk_mcast_rcv(struct net *net, struct sk_buff_head *arrvq,
1178 struct sk_buff_head *inputq)
1179 {
1180 u32 self = tipc_own_addr(net);
1181 u32 type, lower, upper, scope;
1182 struct sk_buff *skb, *_skb;
1183 u32 portid, onode;
1184 struct sk_buff_head tmpq;
1185 struct list_head dports;
1186 struct tipc_msg *hdr;
1187 int user, mtyp, hlen;
1188 bool exact;
1189
1190 __skb_queue_head_init(&tmpq);
1191 INIT_LIST_HEAD(&dports);
1192
1193 skb = tipc_skb_peek(arrvq, &inputq->lock);
1194 for (; skb; skb = tipc_skb_peek(arrvq, &inputq->lock)) {
1195 hdr = buf_msg(skb);
1196 user = msg_user(hdr);
1197 mtyp = msg_type(hdr);
1198 hlen = skb_headroom(skb) + msg_hdr_sz(hdr);
1199 onode = msg_orignode(hdr);
1200 type = msg_nametype(hdr);
1201
1202 if (mtyp == TIPC_GRP_UCAST_MSG || user == GROUP_PROTOCOL) {
1203 spin_lock_bh(&inputq->lock);
1204 if (skb_peek(arrvq) == skb) {
1205 __skb_dequeue(arrvq);
1206 __skb_queue_tail(inputq, skb);
1207 }
1208 kfree_skb(skb);
1209 spin_unlock_bh(&inputq->lock);
1210 continue;
1211 }
1212
1213 /* Group messages require exact scope match */
1214 if (msg_in_group(hdr)) {
1215 lower = 0;
1216 upper = ~0;
1217 scope = msg_lookup_scope(hdr);
1218 exact = true;
1219 } else {
1220 /* TIPC_NODE_SCOPE means "any scope" in this context */
1221 if (onode == self)
1222 scope = TIPC_NODE_SCOPE;
1223 else
1224 scope = TIPC_CLUSTER_SCOPE;
1225 exact = false;
1226 lower = msg_namelower(hdr);
1227 upper = msg_nameupper(hdr);
1228 }
1229
1230 /* Create destination port list: */
1231 tipc_nametbl_mc_lookup(net, type, lower, upper,
1232 scope, exact, &dports);
1233
1234 /* Clone message per destination */
1235 while (tipc_dest_pop(&dports, NULL, &portid)) {
1236 _skb = __pskb_copy(skb, hlen, GFP_ATOMIC);
1237 if (_skb) {
1238 msg_set_destport(buf_msg(_skb), portid);
1239 __skb_queue_tail(&tmpq, _skb);
1240 continue;
1241 }
1242 pr_warn("Failed to clone mcast rcv buffer\n");
1243 }
1244 /* Append to inputq if not already done by other thread */
1245 spin_lock_bh(&inputq->lock);
1246 if (skb_peek(arrvq) == skb) {
1247 skb_queue_splice_tail_init(&tmpq, inputq);
1248 /* Decrease the skb's refcnt as increasing in the
1249 * function tipc_skb_peek
1250 */
1251 kfree_skb(__skb_dequeue(arrvq));
1252 }
1253 spin_unlock_bh(&inputq->lock);
1254 __skb_queue_purge(&tmpq);
1255 kfree_skb(skb);
1256 }
1257 tipc_sk_rcv(net, inputq);
1258 }
1259
1260 /* tipc_sk_push_backlog(): send accumulated buffers in socket write queue
1261 * when socket is in Nagle mode
1262 */
tipc_sk_push_backlog(struct tipc_sock * tsk,bool nagle_ack)1263 static void tipc_sk_push_backlog(struct tipc_sock *tsk, bool nagle_ack)
1264 {
1265 struct sk_buff_head *txq = &tsk->sk.sk_write_queue;
1266 struct sk_buff *skb = skb_peek_tail(txq);
1267 struct net *net = sock_net(&tsk->sk);
1268 u32 dnode = tsk_peer_node(tsk);
1269 int rc;
1270
1271 if (nagle_ack) {
1272 tsk->pkt_cnt += skb_queue_len(txq);
1273 if (!tsk->pkt_cnt || tsk->msg_acc / tsk->pkt_cnt < 2) {
1274 tsk->oneway = 0;
1275 if (tsk->nagle_start < NAGLE_START_MAX)
1276 tsk->nagle_start *= 2;
1277 tsk->expect_ack = false;
1278 pr_debug("tsk %10u: bad nagle %u -> %u, next start %u!\n",
1279 tsk->portid, tsk->msg_acc, tsk->pkt_cnt,
1280 tsk->nagle_start);
1281 } else {
1282 tsk->nagle_start = NAGLE_START_INIT;
1283 if (skb) {
1284 msg_set_ack_required(buf_msg(skb));
1285 tsk->expect_ack = true;
1286 } else {
1287 tsk->expect_ack = false;
1288 }
1289 }
1290 tsk->msg_acc = 0;
1291 tsk->pkt_cnt = 0;
1292 }
1293
1294 if (!skb || tsk->cong_link_cnt)
1295 return;
1296
1297 /* Do not send SYN again after congestion */
1298 if (msg_is_syn(buf_msg(skb)))
1299 return;
1300
1301 if (tsk->msg_acc)
1302 tsk->pkt_cnt += skb_queue_len(txq);
1303 tsk->snt_unacked += tsk->snd_backlog;
1304 tsk->snd_backlog = 0;
1305 rc = tipc_node_xmit(net, txq, dnode, tsk->portid);
1306 if (rc == -ELINKCONG)
1307 tsk->cong_link_cnt = 1;
1308 }
1309
1310 /**
1311 * tipc_sk_conn_proto_rcv - receive a connection mng protocol message
1312 * @tsk: receiving socket
1313 * @skb: pointer to message buffer.
1314 */
tipc_sk_conn_proto_rcv(struct tipc_sock * tsk,struct sk_buff * skb,struct sk_buff_head * inputq,struct sk_buff_head * xmitq)1315 static void tipc_sk_conn_proto_rcv(struct tipc_sock *tsk, struct sk_buff *skb,
1316 struct sk_buff_head *inputq,
1317 struct sk_buff_head *xmitq)
1318 {
1319 struct tipc_msg *hdr = buf_msg(skb);
1320 u32 onode = tsk_own_node(tsk);
1321 struct sock *sk = &tsk->sk;
1322 int mtyp = msg_type(hdr);
1323 bool was_cong;
1324
1325 /* Ignore if connection cannot be validated: */
1326 if (!tsk_peer_msg(tsk, hdr)) {
1327 trace_tipc_sk_drop_msg(sk, skb, TIPC_DUMP_NONE, "@proto_rcv!");
1328 goto exit;
1329 }
1330
1331 if (unlikely(msg_errcode(hdr))) {
1332 tipc_set_sk_state(sk, TIPC_DISCONNECTING);
1333 tipc_node_remove_conn(sock_net(sk), tsk_peer_node(tsk),
1334 tsk_peer_port(tsk));
1335 sk->sk_state_change(sk);
1336
1337 /* State change is ignored if socket already awake,
1338 * - convert msg to abort msg and add to inqueue
1339 */
1340 msg_set_user(hdr, TIPC_CRITICAL_IMPORTANCE);
1341 msg_set_type(hdr, TIPC_CONN_MSG);
1342 msg_set_size(hdr, BASIC_H_SIZE);
1343 msg_set_hdr_sz(hdr, BASIC_H_SIZE);
1344 __skb_queue_tail(inputq, skb);
1345 return;
1346 }
1347
1348 tsk->probe_unacked = false;
1349
1350 if (mtyp == CONN_PROBE) {
1351 msg_set_type(hdr, CONN_PROBE_REPLY);
1352 if (tipc_msg_reverse(onode, &skb, TIPC_OK))
1353 __skb_queue_tail(xmitq, skb);
1354 return;
1355 } else if (mtyp == CONN_ACK) {
1356 was_cong = tsk_conn_cong(tsk);
1357 tipc_sk_push_backlog(tsk, msg_nagle_ack(hdr));
1358 tsk->snt_unacked -= msg_conn_ack(hdr);
1359 if (tsk->peer_caps & TIPC_BLOCK_FLOWCTL)
1360 tsk->snd_win = msg_adv_win(hdr);
1361 if (was_cong && !tsk_conn_cong(tsk))
1362 sk->sk_write_space(sk);
1363 } else if (mtyp != CONN_PROBE_REPLY) {
1364 pr_warn("Received unknown CONN_PROTO msg\n");
1365 }
1366 exit:
1367 kfree_skb(skb);
1368 }
1369
1370 /**
1371 * tipc_sendmsg - send message in connectionless manner
1372 * @sock: socket structure
1373 * @m: message to send
1374 * @dsz: amount of user data to be sent
1375 *
1376 * Message must have an destination specified explicitly.
1377 * Used for SOCK_RDM and SOCK_DGRAM messages,
1378 * and for 'SYN' messages on SOCK_SEQPACKET and SOCK_STREAM connections.
1379 * (Note: 'SYN+' is prohibited on SOCK_STREAM.)
1380 *
1381 * Returns the number of bytes sent on success, or errno otherwise
1382 */
tipc_sendmsg(struct socket * sock,struct msghdr * m,size_t dsz)1383 static int tipc_sendmsg(struct socket *sock,
1384 struct msghdr *m, size_t dsz)
1385 {
1386 struct sock *sk = sock->sk;
1387 int ret;
1388
1389 lock_sock(sk);
1390 ret = __tipc_sendmsg(sock, m, dsz);
1391 release_sock(sk);
1392
1393 return ret;
1394 }
1395
__tipc_sendmsg(struct socket * sock,struct msghdr * m,size_t dlen)1396 static int __tipc_sendmsg(struct socket *sock, struct msghdr *m, size_t dlen)
1397 {
1398 struct sock *sk = sock->sk;
1399 struct net *net = sock_net(sk);
1400 struct tipc_sock *tsk = tipc_sk(sk);
1401 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
1402 long timeout = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT);
1403 struct list_head *clinks = &tsk->cong_links;
1404 bool syn = !tipc_sk_type_connectionless(sk);
1405 struct tipc_group *grp = tsk->group;
1406 struct tipc_msg *hdr = &tsk->phdr;
1407 struct tipc_name_seq *seq;
1408 struct sk_buff_head pkts;
1409 u32 dport = 0, dnode = 0;
1410 u32 type = 0, inst = 0;
1411 int mtu, rc;
1412
1413 if (unlikely(dlen > TIPC_MAX_USER_MSG_SIZE))
1414 return -EMSGSIZE;
1415
1416 if (likely(dest)) {
1417 if (unlikely(m->msg_namelen < sizeof(*dest)))
1418 return -EINVAL;
1419 if (unlikely(dest->family != AF_TIPC))
1420 return -EINVAL;
1421 }
1422
1423 if (grp) {
1424 if (!dest)
1425 return tipc_send_group_bcast(sock, m, dlen, timeout);
1426 if (dest->addrtype == TIPC_ADDR_NAME)
1427 return tipc_send_group_anycast(sock, m, dlen, timeout);
1428 if (dest->addrtype == TIPC_ADDR_ID)
1429 return tipc_send_group_unicast(sock, m, dlen, timeout);
1430 if (dest->addrtype == TIPC_ADDR_MCAST)
1431 return tipc_send_group_mcast(sock, m, dlen, timeout);
1432 return -EINVAL;
1433 }
1434
1435 if (unlikely(!dest)) {
1436 dest = &tsk->peer;
1437 if (!syn && dest->family != AF_TIPC)
1438 return -EDESTADDRREQ;
1439 }
1440
1441 if (unlikely(syn)) {
1442 if (sk->sk_state == TIPC_LISTEN)
1443 return -EPIPE;
1444 if (sk->sk_state != TIPC_OPEN)
1445 return -EISCONN;
1446 if (tsk->published)
1447 return -EOPNOTSUPP;
1448 if (dest->addrtype == TIPC_ADDR_NAME) {
1449 tsk->conn_type = dest->addr.name.name.type;
1450 tsk->conn_instance = dest->addr.name.name.instance;
1451 }
1452 msg_set_syn(hdr, 1);
1453 }
1454
1455 seq = &dest->addr.nameseq;
1456 if (dest->addrtype == TIPC_ADDR_MCAST)
1457 return tipc_sendmcast(sock, seq, m, dlen, timeout);
1458
1459 if (dest->addrtype == TIPC_ADDR_NAME) {
1460 type = dest->addr.name.name.type;
1461 inst = dest->addr.name.name.instance;
1462 dnode = dest->addr.name.domain;
1463 dport = tipc_nametbl_translate(net, type, inst, &dnode);
1464 if (unlikely(!dport && !dnode))
1465 return -EHOSTUNREACH;
1466 } else if (dest->addrtype == TIPC_ADDR_ID) {
1467 dnode = dest->addr.id.node;
1468 } else {
1469 return -EINVAL;
1470 }
1471
1472 /* Block or return if destination link is congested */
1473 rc = tipc_wait_for_cond(sock, &timeout,
1474 !tipc_dest_find(clinks, dnode, 0));
1475 if (unlikely(rc))
1476 return rc;
1477
1478 if (dest->addrtype == TIPC_ADDR_NAME) {
1479 msg_set_type(hdr, TIPC_NAMED_MSG);
1480 msg_set_hdr_sz(hdr, NAMED_H_SIZE);
1481 msg_set_nametype(hdr, type);
1482 msg_set_nameinst(hdr, inst);
1483 msg_set_lookup_scope(hdr, tipc_node2scope(dnode));
1484 msg_set_destnode(hdr, dnode);
1485 msg_set_destport(hdr, dport);
1486 } else { /* TIPC_ADDR_ID */
1487 msg_set_type(hdr, TIPC_DIRECT_MSG);
1488 msg_set_lookup_scope(hdr, 0);
1489 msg_set_destnode(hdr, dnode);
1490 msg_set_destport(hdr, dest->addr.id.ref);
1491 msg_set_hdr_sz(hdr, BASIC_H_SIZE);
1492 }
1493
1494 __skb_queue_head_init(&pkts);
1495 mtu = tipc_node_get_mtu(net, dnode, tsk->portid, true);
1496 rc = tipc_msg_build(hdr, m, 0, dlen, mtu, &pkts);
1497 if (unlikely(rc != dlen))
1498 return rc;
1499 if (unlikely(syn && !tipc_msg_skb_clone(&pkts, &sk->sk_write_queue))) {
1500 __skb_queue_purge(&pkts);
1501 return -ENOMEM;
1502 }
1503
1504 trace_tipc_sk_sendmsg(sk, skb_peek(&pkts), TIPC_DUMP_SK_SNDQ, " ");
1505 rc = tipc_node_xmit(net, &pkts, dnode, tsk->portid);
1506 if (unlikely(rc == -ELINKCONG)) {
1507 tipc_dest_push(clinks, dnode, 0);
1508 tsk->cong_link_cnt++;
1509 rc = 0;
1510 }
1511
1512 if (unlikely(syn && !rc)) {
1513 tipc_set_sk_state(sk, TIPC_CONNECTING);
1514 if (dlen && timeout) {
1515 timeout = msecs_to_jiffies(timeout);
1516 tipc_wait_for_connect(sock, &timeout);
1517 }
1518 }
1519
1520 return rc ? rc : dlen;
1521 }
1522
1523 /**
1524 * tipc_sendstream - send stream-oriented data
1525 * @sock: socket structure
1526 * @m: data to send
1527 * @dsz: total length of data to be transmitted
1528 *
1529 * Used for SOCK_STREAM data.
1530 *
1531 * Returns the number of bytes sent on success (or partial success),
1532 * or errno if no data sent
1533 */
tipc_sendstream(struct socket * sock,struct msghdr * m,size_t dsz)1534 static int tipc_sendstream(struct socket *sock, struct msghdr *m, size_t dsz)
1535 {
1536 struct sock *sk = sock->sk;
1537 int ret;
1538
1539 lock_sock(sk);
1540 ret = __tipc_sendstream(sock, m, dsz);
1541 release_sock(sk);
1542
1543 return ret;
1544 }
1545
__tipc_sendstream(struct socket * sock,struct msghdr * m,size_t dlen)1546 static int __tipc_sendstream(struct socket *sock, struct msghdr *m, size_t dlen)
1547 {
1548 struct sock *sk = sock->sk;
1549 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
1550 long timeout = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT);
1551 struct sk_buff_head *txq = &sk->sk_write_queue;
1552 struct tipc_sock *tsk = tipc_sk(sk);
1553 struct tipc_msg *hdr = &tsk->phdr;
1554 struct net *net = sock_net(sk);
1555 struct sk_buff *skb;
1556 u32 dnode = tsk_peer_node(tsk);
1557 int maxnagle = tsk->maxnagle;
1558 int maxpkt = tsk->max_pkt;
1559 int send, sent = 0;
1560 int blocks, rc = 0;
1561
1562 if (unlikely(dlen > INT_MAX))
1563 return -EMSGSIZE;
1564
1565 /* Handle implicit connection setup */
1566 if (unlikely(dest && sk->sk_state == TIPC_OPEN)) {
1567 rc = __tipc_sendmsg(sock, m, dlen);
1568 if (dlen && dlen == rc) {
1569 tsk->peer_caps = tipc_node_get_capabilities(net, dnode);
1570 tsk->snt_unacked = tsk_inc(tsk, dlen + msg_hdr_sz(hdr));
1571 }
1572 return rc;
1573 }
1574
1575 do {
1576 rc = tipc_wait_for_cond(sock, &timeout,
1577 (!tsk->cong_link_cnt &&
1578 !tsk_conn_cong(tsk) &&
1579 tipc_sk_connected(sk)));
1580 if (unlikely(rc))
1581 break;
1582 send = min_t(size_t, dlen - sent, TIPC_MAX_USER_MSG_SIZE);
1583 blocks = tsk->snd_backlog;
1584 if (tsk->oneway++ >= tsk->nagle_start && maxnagle &&
1585 send <= maxnagle) {
1586 rc = tipc_msg_append(hdr, m, send, maxnagle, txq);
1587 if (unlikely(rc < 0))
1588 break;
1589 blocks += rc;
1590 tsk->msg_acc++;
1591 if (blocks <= 64 && tsk->expect_ack) {
1592 tsk->snd_backlog = blocks;
1593 sent += send;
1594 break;
1595 } else if (blocks > 64) {
1596 tsk->pkt_cnt += skb_queue_len(txq);
1597 } else {
1598 skb = skb_peek_tail(txq);
1599 if (skb) {
1600 msg_set_ack_required(buf_msg(skb));
1601 tsk->expect_ack = true;
1602 } else {
1603 tsk->expect_ack = false;
1604 }
1605 tsk->msg_acc = 0;
1606 tsk->pkt_cnt = 0;
1607 }
1608 } else {
1609 rc = tipc_msg_build(hdr, m, sent, send, maxpkt, txq);
1610 if (unlikely(rc != send))
1611 break;
1612 blocks += tsk_inc(tsk, send + MIN_H_SIZE);
1613 }
1614 trace_tipc_sk_sendstream(sk, skb_peek(txq),
1615 TIPC_DUMP_SK_SNDQ, " ");
1616 rc = tipc_node_xmit(net, txq, dnode, tsk->portid);
1617 if (unlikely(rc == -ELINKCONG)) {
1618 tsk->cong_link_cnt = 1;
1619 rc = 0;
1620 }
1621 if (likely(!rc)) {
1622 tsk->snt_unacked += blocks;
1623 tsk->snd_backlog = 0;
1624 sent += send;
1625 }
1626 } while (sent < dlen && !rc);
1627
1628 return sent ? sent : rc;
1629 }
1630
1631 /**
1632 * tipc_send_packet - send a connection-oriented message
1633 * @sock: socket structure
1634 * @m: message to send
1635 * @dsz: length of data to be transmitted
1636 *
1637 * Used for SOCK_SEQPACKET messages.
1638 *
1639 * Returns the number of bytes sent on success, or errno otherwise
1640 */
tipc_send_packet(struct socket * sock,struct msghdr * m,size_t dsz)1641 static int tipc_send_packet(struct socket *sock, struct msghdr *m, size_t dsz)
1642 {
1643 if (dsz > TIPC_MAX_USER_MSG_SIZE)
1644 return -EMSGSIZE;
1645
1646 return tipc_sendstream(sock, m, dsz);
1647 }
1648
1649 /* tipc_sk_finish_conn - complete the setup of a connection
1650 */
tipc_sk_finish_conn(struct tipc_sock * tsk,u32 peer_port,u32 peer_node)1651 static void tipc_sk_finish_conn(struct tipc_sock *tsk, u32 peer_port,
1652 u32 peer_node)
1653 {
1654 struct sock *sk = &tsk->sk;
1655 struct net *net = sock_net(sk);
1656 struct tipc_msg *msg = &tsk->phdr;
1657
1658 msg_set_syn(msg, 0);
1659 msg_set_destnode(msg, peer_node);
1660 msg_set_destport(msg, peer_port);
1661 msg_set_type(msg, TIPC_CONN_MSG);
1662 msg_set_lookup_scope(msg, 0);
1663 msg_set_hdr_sz(msg, SHORT_H_SIZE);
1664
1665 sk_reset_timer(sk, &sk->sk_timer, jiffies + CONN_PROBING_INTV);
1666 tipc_set_sk_state(sk, TIPC_ESTABLISHED);
1667 tipc_node_add_conn(net, peer_node, tsk->portid, peer_port);
1668 tsk->max_pkt = tipc_node_get_mtu(net, peer_node, tsk->portid, true);
1669 tsk->peer_caps = tipc_node_get_capabilities(net, peer_node);
1670 tsk_set_nagle(tsk);
1671 __skb_queue_purge(&sk->sk_write_queue);
1672 if (tsk->peer_caps & TIPC_BLOCK_FLOWCTL)
1673 return;
1674
1675 /* Fall back to message based flow control */
1676 tsk->rcv_win = FLOWCTL_MSG_WIN;
1677 tsk->snd_win = FLOWCTL_MSG_WIN;
1678 }
1679
1680 /**
1681 * tipc_sk_set_orig_addr - capture sender's address for received message
1682 * @m: descriptor for message info
1683 * @skb: received message
1684 *
1685 * Note: Address is not captured if not requested by receiver.
1686 */
tipc_sk_set_orig_addr(struct msghdr * m,struct sk_buff * skb)1687 static void tipc_sk_set_orig_addr(struct msghdr *m, struct sk_buff *skb)
1688 {
1689 DECLARE_SOCKADDR(struct sockaddr_pair *, srcaddr, m->msg_name);
1690 struct tipc_msg *hdr = buf_msg(skb);
1691
1692 if (!srcaddr)
1693 return;
1694
1695 srcaddr->sock.family = AF_TIPC;
1696 srcaddr->sock.addrtype = TIPC_ADDR_ID;
1697 srcaddr->sock.scope = 0;
1698 srcaddr->sock.addr.id.ref = msg_origport(hdr);
1699 srcaddr->sock.addr.id.node = msg_orignode(hdr);
1700 srcaddr->sock.addr.name.domain = 0;
1701 m->msg_namelen = sizeof(struct sockaddr_tipc);
1702
1703 if (!msg_in_group(hdr))
1704 return;
1705
1706 /* Group message users may also want to know sending member's id */
1707 srcaddr->member.family = AF_TIPC;
1708 srcaddr->member.addrtype = TIPC_ADDR_NAME;
1709 srcaddr->member.scope = 0;
1710 srcaddr->member.addr.name.name.type = msg_nametype(hdr);
1711 srcaddr->member.addr.name.name.instance = TIPC_SKB_CB(skb)->orig_member;
1712 srcaddr->member.addr.name.domain = 0;
1713 m->msg_namelen = sizeof(*srcaddr);
1714 }
1715
1716 /**
1717 * tipc_sk_anc_data_recv - optionally capture ancillary data for received message
1718 * @m: descriptor for message info
1719 * @skb: received message buffer
1720 * @tsk: TIPC port associated with message
1721 *
1722 * Note: Ancillary data is not captured if not requested by receiver.
1723 *
1724 * Returns 0 if successful, otherwise errno
1725 */
tipc_sk_anc_data_recv(struct msghdr * m,struct sk_buff * skb,struct tipc_sock * tsk)1726 static int tipc_sk_anc_data_recv(struct msghdr *m, struct sk_buff *skb,
1727 struct tipc_sock *tsk)
1728 {
1729 struct tipc_msg *msg;
1730 u32 anc_data[3];
1731 u32 err;
1732 u32 dest_type;
1733 int has_name;
1734 int res;
1735
1736 if (likely(m->msg_controllen == 0))
1737 return 0;
1738 msg = buf_msg(skb);
1739
1740 /* Optionally capture errored message object(s) */
1741 err = msg ? msg_errcode(msg) : 0;
1742 if (unlikely(err)) {
1743 anc_data[0] = err;
1744 anc_data[1] = msg_data_sz(msg);
1745 res = put_cmsg(m, SOL_TIPC, TIPC_ERRINFO, 8, anc_data);
1746 if (res)
1747 return res;
1748 if (anc_data[1]) {
1749 if (skb_linearize(skb))
1750 return -ENOMEM;
1751 msg = buf_msg(skb);
1752 res = put_cmsg(m, SOL_TIPC, TIPC_RETDATA, anc_data[1],
1753 msg_data(msg));
1754 if (res)
1755 return res;
1756 }
1757 }
1758
1759 /* Optionally capture message destination object */
1760 dest_type = msg ? msg_type(msg) : TIPC_DIRECT_MSG;
1761 switch (dest_type) {
1762 case TIPC_NAMED_MSG:
1763 has_name = 1;
1764 anc_data[0] = msg_nametype(msg);
1765 anc_data[1] = msg_namelower(msg);
1766 anc_data[2] = msg_namelower(msg);
1767 break;
1768 case TIPC_MCAST_MSG:
1769 has_name = 1;
1770 anc_data[0] = msg_nametype(msg);
1771 anc_data[1] = msg_namelower(msg);
1772 anc_data[2] = msg_nameupper(msg);
1773 break;
1774 case TIPC_CONN_MSG:
1775 has_name = (tsk->conn_type != 0);
1776 anc_data[0] = tsk->conn_type;
1777 anc_data[1] = tsk->conn_instance;
1778 anc_data[2] = tsk->conn_instance;
1779 break;
1780 default:
1781 has_name = 0;
1782 }
1783 if (has_name) {
1784 res = put_cmsg(m, SOL_TIPC, TIPC_DESTNAME, 12, anc_data);
1785 if (res)
1786 return res;
1787 }
1788
1789 return 0;
1790 }
1791
tipc_sk_build_ack(struct tipc_sock * tsk)1792 static struct sk_buff *tipc_sk_build_ack(struct tipc_sock *tsk)
1793 {
1794 struct sock *sk = &tsk->sk;
1795 struct sk_buff *skb = NULL;
1796 struct tipc_msg *msg;
1797 u32 peer_port = tsk_peer_port(tsk);
1798 u32 dnode = tsk_peer_node(tsk);
1799
1800 if (!tipc_sk_connected(sk))
1801 return NULL;
1802 skb = tipc_msg_create(CONN_MANAGER, CONN_ACK, INT_H_SIZE, 0,
1803 dnode, tsk_own_node(tsk), peer_port,
1804 tsk->portid, TIPC_OK);
1805 if (!skb)
1806 return NULL;
1807 msg = buf_msg(skb);
1808 msg_set_conn_ack(msg, tsk->rcv_unacked);
1809 tsk->rcv_unacked = 0;
1810
1811 /* Adjust to and advertize the correct window limit */
1812 if (tsk->peer_caps & TIPC_BLOCK_FLOWCTL) {
1813 tsk->rcv_win = tsk_adv_blocks(tsk->sk.sk_rcvbuf);
1814 msg_set_adv_win(msg, tsk->rcv_win);
1815 }
1816 return skb;
1817 }
1818
tipc_sk_send_ack(struct tipc_sock * tsk)1819 static void tipc_sk_send_ack(struct tipc_sock *tsk)
1820 {
1821 struct sk_buff *skb;
1822
1823 skb = tipc_sk_build_ack(tsk);
1824 if (!skb)
1825 return;
1826
1827 tipc_node_xmit_skb(sock_net(&tsk->sk), skb, tsk_peer_node(tsk),
1828 msg_link_selector(buf_msg(skb)));
1829 }
1830
tipc_wait_for_rcvmsg(struct socket * sock,long * timeop)1831 static int tipc_wait_for_rcvmsg(struct socket *sock, long *timeop)
1832 {
1833 struct sock *sk = sock->sk;
1834 DEFINE_WAIT_FUNC(wait, woken_wake_function);
1835 long timeo = *timeop;
1836 int err = sock_error(sk);
1837
1838 if (err)
1839 return err;
1840
1841 for (;;) {
1842 if (timeo && skb_queue_empty(&sk->sk_receive_queue)) {
1843 if (sk->sk_shutdown & RCV_SHUTDOWN) {
1844 err = -ENOTCONN;
1845 break;
1846 }
1847 add_wait_queue(sk_sleep(sk), &wait);
1848 release_sock(sk);
1849 timeo = wait_woken(&wait, TASK_INTERRUPTIBLE, timeo);
1850 sched_annotate_sleep();
1851 lock_sock(sk);
1852 remove_wait_queue(sk_sleep(sk), &wait);
1853 }
1854 err = 0;
1855 if (!skb_queue_empty(&sk->sk_receive_queue))
1856 break;
1857 err = -EAGAIN;
1858 if (!timeo)
1859 break;
1860 err = sock_intr_errno(timeo);
1861 if (signal_pending(current))
1862 break;
1863
1864 err = sock_error(sk);
1865 if (err)
1866 break;
1867 }
1868 *timeop = timeo;
1869 return err;
1870 }
1871
1872 /**
1873 * tipc_recvmsg - receive packet-oriented message
1874 * @m: descriptor for message info
1875 * @buflen: length of user buffer area
1876 * @flags: receive flags
1877 *
1878 * Used for SOCK_DGRAM, SOCK_RDM, and SOCK_SEQPACKET messages.
1879 * If the complete message doesn't fit in user area, truncate it.
1880 *
1881 * Returns size of returned message data, errno otherwise
1882 */
tipc_recvmsg(struct socket * sock,struct msghdr * m,size_t buflen,int flags)1883 static int tipc_recvmsg(struct socket *sock, struct msghdr *m,
1884 size_t buflen, int flags)
1885 {
1886 struct sock *sk = sock->sk;
1887 bool connected = !tipc_sk_type_connectionless(sk);
1888 struct tipc_sock *tsk = tipc_sk(sk);
1889 int rc, err, hlen, dlen, copy;
1890 struct tipc_skb_cb *skb_cb;
1891 struct sk_buff_head xmitq;
1892 struct tipc_msg *hdr;
1893 struct sk_buff *skb;
1894 bool grp_evt;
1895 long timeout;
1896
1897 /* Catch invalid receive requests */
1898 if (unlikely(!buflen))
1899 return -EINVAL;
1900
1901 lock_sock(sk);
1902 if (unlikely(connected && sk->sk_state == TIPC_OPEN)) {
1903 rc = -ENOTCONN;
1904 goto exit;
1905 }
1906 timeout = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
1907
1908 /* Step rcv queue to first msg with data or error; wait if necessary */
1909 do {
1910 rc = tipc_wait_for_rcvmsg(sock, &timeout);
1911 if (unlikely(rc))
1912 goto exit;
1913 skb = skb_peek(&sk->sk_receive_queue);
1914 skb_cb = TIPC_SKB_CB(skb);
1915 hdr = buf_msg(skb);
1916 dlen = msg_data_sz(hdr);
1917 hlen = msg_hdr_sz(hdr);
1918 err = msg_errcode(hdr);
1919 grp_evt = msg_is_grp_evt(hdr);
1920 if (likely(dlen || err))
1921 break;
1922 tsk_advance_rx_queue(sk);
1923 } while (1);
1924
1925 /* Collect msg meta data, including error code and rejected data */
1926 tipc_sk_set_orig_addr(m, skb);
1927 rc = tipc_sk_anc_data_recv(m, skb, tsk);
1928 if (unlikely(rc))
1929 goto exit;
1930 hdr = buf_msg(skb);
1931
1932 /* Capture data if non-error msg, otherwise just set return value */
1933 if (likely(!err)) {
1934 int offset = skb_cb->bytes_read;
1935
1936 copy = min_t(int, dlen - offset, buflen);
1937 rc = skb_copy_datagram_msg(skb, hlen + offset, m, copy);
1938 if (unlikely(rc))
1939 goto exit;
1940 if (unlikely(offset + copy < dlen)) {
1941 if (flags & MSG_EOR) {
1942 if (!(flags & MSG_PEEK))
1943 skb_cb->bytes_read = offset + copy;
1944 } else {
1945 m->msg_flags |= MSG_TRUNC;
1946 skb_cb->bytes_read = 0;
1947 }
1948 } else {
1949 if (flags & MSG_EOR)
1950 m->msg_flags |= MSG_EOR;
1951 skb_cb->bytes_read = 0;
1952 }
1953 } else {
1954 copy = 0;
1955 rc = 0;
1956 if (err != TIPC_CONN_SHUTDOWN && connected && !m->msg_control) {
1957 rc = -ECONNRESET;
1958 goto exit;
1959 }
1960 }
1961
1962 /* Mark message as group event if applicable */
1963 if (unlikely(grp_evt)) {
1964 if (msg_grp_evt(hdr) == TIPC_WITHDRAWN)
1965 m->msg_flags |= MSG_EOR;
1966 m->msg_flags |= MSG_OOB;
1967 copy = 0;
1968 }
1969
1970 /* Caption of data or error code/rejected data was successful */
1971 if (unlikely(flags & MSG_PEEK))
1972 goto exit;
1973
1974 /* Send group flow control advertisement when applicable */
1975 if (tsk->group && msg_in_group(hdr) && !grp_evt) {
1976 __skb_queue_head_init(&xmitq);
1977 tipc_group_update_rcv_win(tsk->group, tsk_blocks(hlen + dlen),
1978 msg_orignode(hdr), msg_origport(hdr),
1979 &xmitq);
1980 tipc_node_distr_xmit(sock_net(sk), &xmitq);
1981 }
1982
1983 if (skb_cb->bytes_read)
1984 goto exit;
1985
1986 tsk_advance_rx_queue(sk);
1987
1988 if (likely(!connected))
1989 goto exit;
1990
1991 /* Send connection flow control advertisement when applicable */
1992 tsk->rcv_unacked += tsk_inc(tsk, hlen + dlen);
1993 if (tsk->rcv_unacked >= tsk->rcv_win / TIPC_ACK_RATE)
1994 tipc_sk_send_ack(tsk);
1995 exit:
1996 release_sock(sk);
1997 return rc ? rc : copy;
1998 }
1999
2000 /**
2001 * tipc_recvstream - receive stream-oriented data
2002 * @m: descriptor for message info
2003 * @buflen: total size of user buffer area
2004 * @flags: receive flags
2005 *
2006 * Used for SOCK_STREAM messages only. If not enough data is available
2007 * will optionally wait for more; never truncates data.
2008 *
2009 * Returns size of returned message data, errno otherwise
2010 */
tipc_recvstream(struct socket * sock,struct msghdr * m,size_t buflen,int flags)2011 static int tipc_recvstream(struct socket *sock, struct msghdr *m,
2012 size_t buflen, int flags)
2013 {
2014 struct sock *sk = sock->sk;
2015 struct tipc_sock *tsk = tipc_sk(sk);
2016 struct sk_buff *skb;
2017 struct tipc_msg *hdr;
2018 struct tipc_skb_cb *skb_cb;
2019 bool peek = flags & MSG_PEEK;
2020 int offset, required, copy, copied = 0;
2021 int hlen, dlen, err, rc;
2022 long timeout;
2023
2024 /* Catch invalid receive attempts */
2025 if (unlikely(!buflen))
2026 return -EINVAL;
2027
2028 lock_sock(sk);
2029
2030 if (unlikely(sk->sk_state == TIPC_OPEN)) {
2031 rc = -ENOTCONN;
2032 goto exit;
2033 }
2034 required = sock_rcvlowat(sk, flags & MSG_WAITALL, buflen);
2035 timeout = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
2036
2037 do {
2038 /* Look at first msg in receive queue; wait if necessary */
2039 rc = tipc_wait_for_rcvmsg(sock, &timeout);
2040 if (unlikely(rc))
2041 break;
2042 skb = skb_peek(&sk->sk_receive_queue);
2043 skb_cb = TIPC_SKB_CB(skb);
2044 hdr = buf_msg(skb);
2045 dlen = msg_data_sz(hdr);
2046 hlen = msg_hdr_sz(hdr);
2047 err = msg_errcode(hdr);
2048
2049 /* Discard any empty non-errored (SYN-) message */
2050 if (unlikely(!dlen && !err)) {
2051 tsk_advance_rx_queue(sk);
2052 continue;
2053 }
2054
2055 /* Collect msg meta data, incl. error code and rejected data */
2056 if (!copied) {
2057 tipc_sk_set_orig_addr(m, skb);
2058 rc = tipc_sk_anc_data_recv(m, skb, tsk);
2059 if (rc)
2060 break;
2061 hdr = buf_msg(skb);
2062 }
2063
2064 /* Copy data if msg ok, otherwise return error/partial data */
2065 if (likely(!err)) {
2066 offset = skb_cb->bytes_read;
2067 copy = min_t(int, dlen - offset, buflen - copied);
2068 rc = skb_copy_datagram_msg(skb, hlen + offset, m, copy);
2069 if (unlikely(rc))
2070 break;
2071 copied += copy;
2072 offset += copy;
2073 if (unlikely(offset < dlen)) {
2074 if (!peek)
2075 skb_cb->bytes_read = offset;
2076 break;
2077 }
2078 } else {
2079 rc = 0;
2080 if ((err != TIPC_CONN_SHUTDOWN) && !m->msg_control)
2081 rc = -ECONNRESET;
2082 if (copied || rc)
2083 break;
2084 }
2085
2086 if (unlikely(peek))
2087 break;
2088
2089 tsk_advance_rx_queue(sk);
2090
2091 /* Send connection flow control advertisement when applicable */
2092 tsk->rcv_unacked += tsk_inc(tsk, hlen + dlen);
2093 if (tsk->rcv_unacked >= tsk->rcv_win / TIPC_ACK_RATE)
2094 tipc_sk_send_ack(tsk);
2095
2096 /* Exit if all requested data or FIN/error received */
2097 if (copied == buflen || err)
2098 break;
2099
2100 } while (!skb_queue_empty(&sk->sk_receive_queue) || copied < required);
2101 exit:
2102 release_sock(sk);
2103 return copied ? copied : rc;
2104 }
2105
2106 /**
2107 * tipc_write_space - wake up thread if port congestion is released
2108 * @sk: socket
2109 */
tipc_write_space(struct sock * sk)2110 static void tipc_write_space(struct sock *sk)
2111 {
2112 struct socket_wq *wq;
2113
2114 rcu_read_lock();
2115 wq = rcu_dereference(sk->sk_wq);
2116 if (skwq_has_sleeper(wq))
2117 wake_up_interruptible_sync_poll(&wq->wait, EPOLLOUT |
2118 EPOLLWRNORM | EPOLLWRBAND);
2119 rcu_read_unlock();
2120 }
2121
2122 /**
2123 * tipc_data_ready - wake up threads to indicate messages have been received
2124 * @sk: socket
2125 */
tipc_data_ready(struct sock * sk)2126 static void tipc_data_ready(struct sock *sk)
2127 {
2128 struct socket_wq *wq;
2129
2130 rcu_read_lock();
2131 wq = rcu_dereference(sk->sk_wq);
2132 if (skwq_has_sleeper(wq))
2133 wake_up_interruptible_sync_poll(&wq->wait, EPOLLIN |
2134 EPOLLRDNORM | EPOLLRDBAND);
2135 rcu_read_unlock();
2136 }
2137
tipc_sock_destruct(struct sock * sk)2138 static void tipc_sock_destruct(struct sock *sk)
2139 {
2140 __skb_queue_purge(&sk->sk_receive_queue);
2141 }
2142
tipc_sk_proto_rcv(struct sock * sk,struct sk_buff_head * inputq,struct sk_buff_head * xmitq)2143 static void tipc_sk_proto_rcv(struct sock *sk,
2144 struct sk_buff_head *inputq,
2145 struct sk_buff_head *xmitq)
2146 {
2147 struct sk_buff *skb = __skb_dequeue(inputq);
2148 struct tipc_sock *tsk = tipc_sk(sk);
2149 struct tipc_msg *hdr = buf_msg(skb);
2150 struct tipc_group *grp = tsk->group;
2151 bool wakeup = false;
2152
2153 switch (msg_user(hdr)) {
2154 case CONN_MANAGER:
2155 tipc_sk_conn_proto_rcv(tsk, skb, inputq, xmitq);
2156 return;
2157 case SOCK_WAKEUP:
2158 tipc_dest_del(&tsk->cong_links, msg_orignode(hdr), 0);
2159 /* coupled with smp_rmb() in tipc_wait_for_cond() */
2160 smp_wmb();
2161 tsk->cong_link_cnt--;
2162 wakeup = true;
2163 tipc_sk_push_backlog(tsk, false);
2164 break;
2165 case GROUP_PROTOCOL:
2166 tipc_group_proto_rcv(grp, &wakeup, hdr, inputq, xmitq);
2167 break;
2168 case TOP_SRV:
2169 tipc_group_member_evt(tsk->group, &wakeup, &sk->sk_rcvbuf,
2170 hdr, inputq, xmitq);
2171 break;
2172 default:
2173 break;
2174 }
2175
2176 if (wakeup)
2177 sk->sk_write_space(sk);
2178
2179 kfree_skb(skb);
2180 }
2181
2182 /**
2183 * tipc_sk_filter_connect - check incoming message for a connection-based socket
2184 * @tsk: TIPC socket
2185 * @skb: pointer to message buffer.
2186 * @xmitq: for Nagle ACK if any
2187 * Returns true if message should be added to receive queue, false otherwise
2188 */
tipc_sk_filter_connect(struct tipc_sock * tsk,struct sk_buff * skb,struct sk_buff_head * xmitq)2189 static bool tipc_sk_filter_connect(struct tipc_sock *tsk, struct sk_buff *skb,
2190 struct sk_buff_head *xmitq)
2191 {
2192 struct sock *sk = &tsk->sk;
2193 struct net *net = sock_net(sk);
2194 struct tipc_msg *hdr = buf_msg(skb);
2195 bool con_msg = msg_connected(hdr);
2196 u32 pport = tsk_peer_port(tsk);
2197 u32 pnode = tsk_peer_node(tsk);
2198 u32 oport = msg_origport(hdr);
2199 u32 onode = msg_orignode(hdr);
2200 int err = msg_errcode(hdr);
2201 unsigned long delay;
2202
2203 if (unlikely(msg_mcast(hdr)))
2204 return false;
2205 tsk->oneway = 0;
2206
2207 switch (sk->sk_state) {
2208 case TIPC_CONNECTING:
2209 /* Setup ACK */
2210 if (likely(con_msg)) {
2211 if (err)
2212 break;
2213 tipc_sk_finish_conn(tsk, oport, onode);
2214 msg_set_importance(&tsk->phdr, msg_importance(hdr));
2215 /* ACK+ message with data is added to receive queue */
2216 if (msg_data_sz(hdr))
2217 return true;
2218 /* Empty ACK-, - wake up sleeping connect() and drop */
2219 sk->sk_state_change(sk);
2220 msg_set_dest_droppable(hdr, 1);
2221 return false;
2222 }
2223 /* Ignore connectionless message if not from listening socket */
2224 if (oport != pport || onode != pnode)
2225 return false;
2226
2227 /* Rejected SYN */
2228 if (err != TIPC_ERR_OVERLOAD)
2229 break;
2230
2231 /* Prepare for new setup attempt if we have a SYN clone */
2232 if (skb_queue_empty(&sk->sk_write_queue))
2233 break;
2234 get_random_bytes(&delay, 2);
2235 delay %= (tsk->conn_timeout / 4);
2236 delay = msecs_to_jiffies(delay + 100);
2237 sk_reset_timer(sk, &sk->sk_timer, jiffies + delay);
2238 return false;
2239 case TIPC_OPEN:
2240 case TIPC_DISCONNECTING:
2241 return false;
2242 case TIPC_LISTEN:
2243 /* Accept only SYN message */
2244 if (!msg_is_syn(hdr) &&
2245 tipc_node_get_capabilities(net, onode) & TIPC_SYN_BIT)
2246 return false;
2247 if (!con_msg && !err)
2248 return true;
2249 return false;
2250 case TIPC_ESTABLISHED:
2251 if (!skb_queue_empty(&sk->sk_write_queue))
2252 tipc_sk_push_backlog(tsk, false);
2253 /* Accept only connection-based messages sent by peer */
2254 if (likely(con_msg && !err && pport == oport &&
2255 pnode == onode)) {
2256 if (msg_ack_required(hdr)) {
2257 struct sk_buff *skb;
2258
2259 skb = tipc_sk_build_ack(tsk);
2260 if (skb) {
2261 msg_set_nagle_ack(buf_msg(skb));
2262 __skb_queue_tail(xmitq, skb);
2263 }
2264 }
2265 return true;
2266 }
2267 if (!tsk_peer_msg(tsk, hdr))
2268 return false;
2269 if (!err)
2270 return true;
2271 tipc_set_sk_state(sk, TIPC_DISCONNECTING);
2272 tipc_node_remove_conn(net, pnode, tsk->portid);
2273 sk->sk_state_change(sk);
2274 return true;
2275 default:
2276 pr_err("Unknown sk_state %u\n", sk->sk_state);
2277 }
2278 /* Abort connection setup attempt */
2279 tipc_set_sk_state(sk, TIPC_DISCONNECTING);
2280 sk->sk_err = ECONNREFUSED;
2281 sk->sk_state_change(sk);
2282 return true;
2283 }
2284
2285 /**
2286 * rcvbuf_limit - get proper overload limit of socket receive queue
2287 * @sk: socket
2288 * @skb: message
2289 *
2290 * For connection oriented messages, irrespective of importance,
2291 * default queue limit is 2 MB.
2292 *
2293 * For connectionless messages, queue limits are based on message
2294 * importance as follows:
2295 *
2296 * TIPC_LOW_IMPORTANCE (2 MB)
2297 * TIPC_MEDIUM_IMPORTANCE (4 MB)
2298 * TIPC_HIGH_IMPORTANCE (8 MB)
2299 * TIPC_CRITICAL_IMPORTANCE (16 MB)
2300 *
2301 * Returns overload limit according to corresponding message importance
2302 */
rcvbuf_limit(struct sock * sk,struct sk_buff * skb)2303 static unsigned int rcvbuf_limit(struct sock *sk, struct sk_buff *skb)
2304 {
2305 struct tipc_sock *tsk = tipc_sk(sk);
2306 struct tipc_msg *hdr = buf_msg(skb);
2307
2308 if (unlikely(msg_in_group(hdr)))
2309 return READ_ONCE(sk->sk_rcvbuf);
2310
2311 if (unlikely(!msg_connected(hdr)))
2312 return READ_ONCE(sk->sk_rcvbuf) << msg_importance(hdr);
2313
2314 if (likely(tsk->peer_caps & TIPC_BLOCK_FLOWCTL))
2315 return READ_ONCE(sk->sk_rcvbuf);
2316
2317 return FLOWCTL_MSG_LIM;
2318 }
2319
2320 /**
2321 * tipc_sk_filter_rcv - validate incoming message
2322 * @sk: socket
2323 * @skb: pointer to message.
2324 *
2325 * Enqueues message on receive queue if acceptable; optionally handles
2326 * disconnect indication for a connected socket.
2327 *
2328 * Called with socket lock already taken
2329 *
2330 */
tipc_sk_filter_rcv(struct sock * sk,struct sk_buff * skb,struct sk_buff_head * xmitq)2331 static void tipc_sk_filter_rcv(struct sock *sk, struct sk_buff *skb,
2332 struct sk_buff_head *xmitq)
2333 {
2334 bool sk_conn = !tipc_sk_type_connectionless(sk);
2335 struct tipc_sock *tsk = tipc_sk(sk);
2336 struct tipc_group *grp = tsk->group;
2337 struct tipc_msg *hdr = buf_msg(skb);
2338 struct net *net = sock_net(sk);
2339 struct sk_buff_head inputq;
2340 int mtyp = msg_type(hdr);
2341 int limit, err = TIPC_OK;
2342
2343 trace_tipc_sk_filter_rcv(sk, skb, TIPC_DUMP_ALL, " ");
2344 TIPC_SKB_CB(skb)->bytes_read = 0;
2345 __skb_queue_head_init(&inputq);
2346 __skb_queue_tail(&inputq, skb);
2347
2348 if (unlikely(!msg_isdata(hdr)))
2349 tipc_sk_proto_rcv(sk, &inputq, xmitq);
2350
2351 if (unlikely(grp))
2352 tipc_group_filter_msg(grp, &inputq, xmitq);
2353
2354 if (unlikely(!grp) && mtyp == TIPC_MCAST_MSG)
2355 tipc_mcast_filter_msg(net, &tsk->mc_method.deferredq, &inputq);
2356
2357 /* Validate and add to receive buffer if there is space */
2358 while ((skb = __skb_dequeue(&inputq))) {
2359 hdr = buf_msg(skb);
2360 limit = rcvbuf_limit(sk, skb);
2361 if ((sk_conn && !tipc_sk_filter_connect(tsk, skb, xmitq)) ||
2362 (!sk_conn && msg_connected(hdr)) ||
2363 (!grp && msg_in_group(hdr)))
2364 err = TIPC_ERR_NO_PORT;
2365 else if (sk_rmem_alloc_get(sk) + skb->truesize >= limit) {
2366 trace_tipc_sk_dump(sk, skb, TIPC_DUMP_ALL,
2367 "err_overload2!");
2368 atomic_inc(&sk->sk_drops);
2369 err = TIPC_ERR_OVERLOAD;
2370 }
2371
2372 if (unlikely(err)) {
2373 if (tipc_msg_reverse(tipc_own_addr(net), &skb, err)) {
2374 trace_tipc_sk_rej_msg(sk, skb, TIPC_DUMP_NONE,
2375 "@filter_rcv!");
2376 __skb_queue_tail(xmitq, skb);
2377 }
2378 err = TIPC_OK;
2379 continue;
2380 }
2381 __skb_queue_tail(&sk->sk_receive_queue, skb);
2382 skb_set_owner_r(skb, sk);
2383 trace_tipc_sk_overlimit2(sk, skb, TIPC_DUMP_ALL,
2384 "rcvq >90% allocated!");
2385 sk->sk_data_ready(sk);
2386 }
2387 }
2388
2389 /**
2390 * tipc_sk_backlog_rcv - handle incoming message from backlog queue
2391 * @sk: socket
2392 * @skb: message
2393 *
2394 * Caller must hold socket lock
2395 */
tipc_sk_backlog_rcv(struct sock * sk,struct sk_buff * skb)2396 static int tipc_sk_backlog_rcv(struct sock *sk, struct sk_buff *skb)
2397 {
2398 unsigned int before = sk_rmem_alloc_get(sk);
2399 struct sk_buff_head xmitq;
2400 unsigned int added;
2401
2402 __skb_queue_head_init(&xmitq);
2403
2404 tipc_sk_filter_rcv(sk, skb, &xmitq);
2405 added = sk_rmem_alloc_get(sk) - before;
2406 atomic_add(added, &tipc_sk(sk)->dupl_rcvcnt);
2407
2408 /* Send pending response/rejected messages, if any */
2409 tipc_node_distr_xmit(sock_net(sk), &xmitq);
2410 return 0;
2411 }
2412
2413 /**
2414 * tipc_sk_enqueue - extract all buffers with destination 'dport' from
2415 * inputq and try adding them to socket or backlog queue
2416 * @inputq: list of incoming buffers with potentially different destinations
2417 * @sk: socket where the buffers should be enqueued
2418 * @dport: port number for the socket
2419 *
2420 * Caller must hold socket lock
2421 */
tipc_sk_enqueue(struct sk_buff_head * inputq,struct sock * sk,u32 dport,struct sk_buff_head * xmitq)2422 static void tipc_sk_enqueue(struct sk_buff_head *inputq, struct sock *sk,
2423 u32 dport, struct sk_buff_head *xmitq)
2424 {
2425 unsigned long time_limit = jiffies + usecs_to_jiffies(20000);
2426 struct sk_buff *skb;
2427 unsigned int lim;
2428 atomic_t *dcnt;
2429 u32 onode;
2430
2431 while (skb_queue_len(inputq)) {
2432 if (unlikely(time_after_eq(jiffies, time_limit)))
2433 return;
2434
2435 skb = tipc_skb_dequeue(inputq, dport);
2436 if (unlikely(!skb))
2437 return;
2438
2439 /* Add message directly to receive queue if possible */
2440 if (!sock_owned_by_user(sk)) {
2441 tipc_sk_filter_rcv(sk, skb, xmitq);
2442 continue;
2443 }
2444
2445 /* Try backlog, compensating for double-counted bytes */
2446 dcnt = &tipc_sk(sk)->dupl_rcvcnt;
2447 if (!sk->sk_backlog.len)
2448 atomic_set(dcnt, 0);
2449 lim = rcvbuf_limit(sk, skb) + atomic_read(dcnt);
2450 if (likely(!sk_add_backlog(sk, skb, lim))) {
2451 trace_tipc_sk_overlimit1(sk, skb, TIPC_DUMP_ALL,
2452 "bklg & rcvq >90% allocated!");
2453 continue;
2454 }
2455
2456 trace_tipc_sk_dump(sk, skb, TIPC_DUMP_ALL, "err_overload!");
2457 /* Overload => reject message back to sender */
2458 onode = tipc_own_addr(sock_net(sk));
2459 atomic_inc(&sk->sk_drops);
2460 if (tipc_msg_reverse(onode, &skb, TIPC_ERR_OVERLOAD)) {
2461 trace_tipc_sk_rej_msg(sk, skb, TIPC_DUMP_ALL,
2462 "@sk_enqueue!");
2463 __skb_queue_tail(xmitq, skb);
2464 }
2465 break;
2466 }
2467 }
2468
2469 /**
2470 * tipc_sk_rcv - handle a chain of incoming buffers
2471 * @inputq: buffer list containing the buffers
2472 * Consumes all buffers in list until inputq is empty
2473 * Note: may be called in multiple threads referring to the same queue
2474 */
tipc_sk_rcv(struct net * net,struct sk_buff_head * inputq)2475 void tipc_sk_rcv(struct net *net, struct sk_buff_head *inputq)
2476 {
2477 struct sk_buff_head xmitq;
2478 u32 dnode, dport = 0;
2479 int err;
2480 struct tipc_sock *tsk;
2481 struct sock *sk;
2482 struct sk_buff *skb;
2483
2484 __skb_queue_head_init(&xmitq);
2485 while (skb_queue_len(inputq)) {
2486 dport = tipc_skb_peek_port(inputq, dport);
2487 tsk = tipc_sk_lookup(net, dport);
2488
2489 if (likely(tsk)) {
2490 sk = &tsk->sk;
2491 if (likely(spin_trylock_bh(&sk->sk_lock.slock))) {
2492 tipc_sk_enqueue(inputq, sk, dport, &xmitq);
2493 spin_unlock_bh(&sk->sk_lock.slock);
2494 }
2495 /* Send pending response/rejected messages, if any */
2496 tipc_node_distr_xmit(sock_net(sk), &xmitq);
2497 sock_put(sk);
2498 continue;
2499 }
2500 /* No destination socket => dequeue skb if still there */
2501 skb = tipc_skb_dequeue(inputq, dport);
2502 if (!skb)
2503 return;
2504
2505 /* Try secondary lookup if unresolved named message */
2506 err = TIPC_ERR_NO_PORT;
2507 if (tipc_msg_lookup_dest(net, skb, &err))
2508 goto xmit;
2509
2510 /* Prepare for message rejection */
2511 if (!tipc_msg_reverse(tipc_own_addr(net), &skb, err))
2512 continue;
2513
2514 trace_tipc_sk_rej_msg(NULL, skb, TIPC_DUMP_NONE, "@sk_rcv!");
2515 xmit:
2516 dnode = msg_destnode(buf_msg(skb));
2517 tipc_node_xmit_skb(net, skb, dnode, dport);
2518 }
2519 }
2520
tipc_wait_for_connect(struct socket * sock,long * timeo_p)2521 static int tipc_wait_for_connect(struct socket *sock, long *timeo_p)
2522 {
2523 DEFINE_WAIT_FUNC(wait, woken_wake_function);
2524 struct sock *sk = sock->sk;
2525 int done;
2526
2527 do {
2528 int err = sock_error(sk);
2529 if (err)
2530 return err;
2531 if (!*timeo_p)
2532 return -ETIMEDOUT;
2533 if (signal_pending(current))
2534 return sock_intr_errno(*timeo_p);
2535 if (sk->sk_state == TIPC_DISCONNECTING)
2536 break;
2537
2538 add_wait_queue(sk_sleep(sk), &wait);
2539 done = sk_wait_event(sk, timeo_p, tipc_sk_connected(sk),
2540 &wait);
2541 remove_wait_queue(sk_sleep(sk), &wait);
2542 } while (!done);
2543 return 0;
2544 }
2545
tipc_sockaddr_is_sane(struct sockaddr_tipc * addr)2546 static bool tipc_sockaddr_is_sane(struct sockaddr_tipc *addr)
2547 {
2548 if (addr->family != AF_TIPC)
2549 return false;
2550 if (addr->addrtype == TIPC_SERVICE_RANGE)
2551 return (addr->addr.nameseq.lower <= addr->addr.nameseq.upper);
2552 return (addr->addrtype == TIPC_SERVICE_ADDR ||
2553 addr->addrtype == TIPC_SOCKET_ADDR);
2554 }
2555
2556 /**
2557 * tipc_connect - establish a connection to another TIPC port
2558 * @sock: socket structure
2559 * @dest: socket address for destination port
2560 * @destlen: size of socket address data structure
2561 * @flags: file-related flags associated with socket
2562 *
2563 * Returns 0 on success, errno otherwise
2564 */
tipc_connect(struct socket * sock,struct sockaddr * dest,int destlen,int flags)2565 static int tipc_connect(struct socket *sock, struct sockaddr *dest,
2566 int destlen, int flags)
2567 {
2568 struct sock *sk = sock->sk;
2569 struct tipc_sock *tsk = tipc_sk(sk);
2570 struct sockaddr_tipc *dst = (struct sockaddr_tipc *)dest;
2571 struct msghdr m = {NULL,};
2572 long timeout = (flags & O_NONBLOCK) ? 0 : tsk->conn_timeout;
2573 int previous;
2574 int res = 0;
2575
2576 if (destlen != sizeof(struct sockaddr_tipc))
2577 return -EINVAL;
2578
2579 lock_sock(sk);
2580
2581 if (tsk->group) {
2582 res = -EINVAL;
2583 goto exit;
2584 }
2585
2586 if (dst->family == AF_UNSPEC) {
2587 memset(&tsk->peer, 0, sizeof(struct sockaddr_tipc));
2588 if (!tipc_sk_type_connectionless(sk))
2589 res = -EINVAL;
2590 goto exit;
2591 }
2592 if (!tipc_sockaddr_is_sane(dst)) {
2593 res = -EINVAL;
2594 goto exit;
2595 }
2596 /* DGRAM/RDM connect(), just save the destaddr */
2597 if (tipc_sk_type_connectionless(sk)) {
2598 memcpy(&tsk->peer, dest, destlen);
2599 goto exit;
2600 } else if (dst->addrtype == TIPC_SERVICE_RANGE) {
2601 res = -EINVAL;
2602 goto exit;
2603 }
2604
2605 previous = sk->sk_state;
2606
2607 switch (sk->sk_state) {
2608 case TIPC_OPEN:
2609 /* Send a 'SYN-' to destination */
2610 m.msg_name = dest;
2611 m.msg_namelen = destlen;
2612
2613 /* If connect is in non-blocking case, set MSG_DONTWAIT to
2614 * indicate send_msg() is never blocked.
2615 */
2616 if (!timeout)
2617 m.msg_flags = MSG_DONTWAIT;
2618
2619 res = __tipc_sendmsg(sock, &m, 0);
2620 if ((res < 0) && (res != -EWOULDBLOCK))
2621 goto exit;
2622
2623 /* Just entered TIPC_CONNECTING state; the only
2624 * difference is that return value in non-blocking
2625 * case is EINPROGRESS, rather than EALREADY.
2626 */
2627 res = -EINPROGRESS;
2628 fallthrough;
2629 case TIPC_CONNECTING:
2630 if (!timeout) {
2631 if (previous == TIPC_CONNECTING)
2632 res = -EALREADY;
2633 goto exit;
2634 }
2635 timeout = msecs_to_jiffies(timeout);
2636 /* Wait until an 'ACK' or 'RST' arrives, or a timeout occurs */
2637 res = tipc_wait_for_connect(sock, &timeout);
2638 break;
2639 case TIPC_ESTABLISHED:
2640 res = -EISCONN;
2641 break;
2642 default:
2643 res = -EINVAL;
2644 }
2645
2646 exit:
2647 release_sock(sk);
2648 return res;
2649 }
2650
2651 /**
2652 * tipc_listen - allow socket to listen for incoming connections
2653 * @sock: socket structure
2654 * @len: (unused)
2655 *
2656 * Returns 0 on success, errno otherwise
2657 */
tipc_listen(struct socket * sock,int len)2658 static int tipc_listen(struct socket *sock, int len)
2659 {
2660 struct sock *sk = sock->sk;
2661 int res;
2662
2663 lock_sock(sk);
2664 res = tipc_set_sk_state(sk, TIPC_LISTEN);
2665 release_sock(sk);
2666
2667 return res;
2668 }
2669
tipc_wait_for_accept(struct socket * sock,long timeo)2670 static int tipc_wait_for_accept(struct socket *sock, long timeo)
2671 {
2672 struct sock *sk = sock->sk;
2673 DEFINE_WAIT_FUNC(wait, woken_wake_function);
2674 int err;
2675
2676 /* True wake-one mechanism for incoming connections: only
2677 * one process gets woken up, not the 'whole herd'.
2678 * Since we do not 'race & poll' for established sockets
2679 * anymore, the common case will execute the loop only once.
2680 */
2681 for (;;) {
2682 if (timeo && skb_queue_empty(&sk->sk_receive_queue)) {
2683 add_wait_queue(sk_sleep(sk), &wait);
2684 release_sock(sk);
2685 timeo = wait_woken(&wait, TASK_INTERRUPTIBLE, timeo);
2686 lock_sock(sk);
2687 remove_wait_queue(sk_sleep(sk), &wait);
2688 }
2689 err = 0;
2690 if (!skb_queue_empty(&sk->sk_receive_queue))
2691 break;
2692 err = -EAGAIN;
2693 if (!timeo)
2694 break;
2695 err = sock_intr_errno(timeo);
2696 if (signal_pending(current))
2697 break;
2698 }
2699 return err;
2700 }
2701
2702 /**
2703 * tipc_accept - wait for connection request
2704 * @sock: listening socket
2705 * @new_sock: new socket that is to be connected
2706 * @flags: file-related flags associated with socket
2707 *
2708 * Returns 0 on success, errno otherwise
2709 */
tipc_accept(struct socket * sock,struct socket * new_sock,int flags,bool kern)2710 static int tipc_accept(struct socket *sock, struct socket *new_sock, int flags,
2711 bool kern)
2712 {
2713 struct sock *new_sk, *sk = sock->sk;
2714 struct tipc_sock *new_tsock;
2715 struct msghdr m = {NULL,};
2716 struct tipc_msg *msg;
2717 struct sk_buff *buf;
2718 long timeo;
2719 int res;
2720
2721 lock_sock(sk);
2722
2723 if (sk->sk_state != TIPC_LISTEN) {
2724 res = -EINVAL;
2725 goto exit;
2726 }
2727 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
2728 res = tipc_wait_for_accept(sock, timeo);
2729 if (res)
2730 goto exit;
2731
2732 buf = skb_peek(&sk->sk_receive_queue);
2733
2734 res = tipc_sk_create(sock_net(sock->sk), new_sock, 0, kern);
2735 if (res)
2736 goto exit;
2737 security_sk_clone(sock->sk, new_sock->sk);
2738
2739 new_sk = new_sock->sk;
2740 new_tsock = tipc_sk(new_sk);
2741 msg = buf_msg(buf);
2742
2743 /* we lock on new_sk; but lockdep sees the lock on sk */
2744 lock_sock_nested(new_sk, SINGLE_DEPTH_NESTING);
2745
2746 /*
2747 * Reject any stray messages received by new socket
2748 * before the socket lock was taken (very, very unlikely)
2749 */
2750 tsk_rej_rx_queue(new_sk, TIPC_ERR_NO_PORT);
2751
2752 /* Connect new socket to it's peer */
2753 tipc_sk_finish_conn(new_tsock, msg_origport(msg), msg_orignode(msg));
2754
2755 tsk_set_importance(new_sk, msg_importance(msg));
2756 if (msg_named(msg)) {
2757 new_tsock->conn_type = msg_nametype(msg);
2758 new_tsock->conn_instance = msg_nameinst(msg);
2759 }
2760
2761 /*
2762 * Respond to 'SYN-' by discarding it & returning 'ACK'.
2763 * Respond to 'SYN+' by queuing it on new socket & returning 'ACK'.
2764 */
2765 if (!msg_data_sz(msg)) {
2766 tsk_advance_rx_queue(sk);
2767 } else {
2768 __skb_dequeue(&sk->sk_receive_queue);
2769 __skb_queue_head(&new_sk->sk_receive_queue, buf);
2770 skb_set_owner_r(buf, new_sk);
2771 }
2772 __tipc_sendstream(new_sock, &m, 0);
2773 release_sock(new_sk);
2774 exit:
2775 release_sock(sk);
2776 return res;
2777 }
2778
2779 /**
2780 * tipc_shutdown - shutdown socket connection
2781 * @sock: socket structure
2782 * @how: direction to close (must be SHUT_RDWR)
2783 *
2784 * Terminates connection (if necessary), then purges socket's receive queue.
2785 *
2786 * Returns 0 on success, errno otherwise
2787 */
tipc_shutdown(struct socket * sock,int how)2788 static int tipc_shutdown(struct socket *sock, int how)
2789 {
2790 struct sock *sk = sock->sk;
2791 int res;
2792
2793 if (how != SHUT_RDWR)
2794 return -EINVAL;
2795
2796 lock_sock(sk);
2797
2798 trace_tipc_sk_shutdown(sk, NULL, TIPC_DUMP_ALL, " ");
2799 __tipc_shutdown(sock, TIPC_CONN_SHUTDOWN);
2800 sk->sk_shutdown = SHUTDOWN_MASK;
2801
2802 if (sk->sk_state == TIPC_DISCONNECTING) {
2803 /* Discard any unreceived messages */
2804 __skb_queue_purge(&sk->sk_receive_queue);
2805
2806 res = 0;
2807 } else {
2808 res = -ENOTCONN;
2809 }
2810 /* Wake up anyone sleeping in poll. */
2811 sk->sk_state_change(sk);
2812
2813 release_sock(sk);
2814 return res;
2815 }
2816
tipc_sk_check_probing_state(struct sock * sk,struct sk_buff_head * list)2817 static void tipc_sk_check_probing_state(struct sock *sk,
2818 struct sk_buff_head *list)
2819 {
2820 struct tipc_sock *tsk = tipc_sk(sk);
2821 u32 pnode = tsk_peer_node(tsk);
2822 u32 pport = tsk_peer_port(tsk);
2823 u32 self = tsk_own_node(tsk);
2824 u32 oport = tsk->portid;
2825 struct sk_buff *skb;
2826
2827 if (tsk->probe_unacked) {
2828 tipc_set_sk_state(sk, TIPC_DISCONNECTING);
2829 sk->sk_err = ECONNABORTED;
2830 tipc_node_remove_conn(sock_net(sk), pnode, pport);
2831 sk->sk_state_change(sk);
2832 return;
2833 }
2834 /* Prepare new probe */
2835 skb = tipc_msg_create(CONN_MANAGER, CONN_PROBE, INT_H_SIZE, 0,
2836 pnode, self, pport, oport, TIPC_OK);
2837 if (skb)
2838 __skb_queue_tail(list, skb);
2839 tsk->probe_unacked = true;
2840 sk_reset_timer(sk, &sk->sk_timer, jiffies + CONN_PROBING_INTV);
2841 }
2842
tipc_sk_retry_connect(struct sock * sk,struct sk_buff_head * list)2843 static void tipc_sk_retry_connect(struct sock *sk, struct sk_buff_head *list)
2844 {
2845 struct tipc_sock *tsk = tipc_sk(sk);
2846
2847 /* Try again later if dest link is congested */
2848 if (tsk->cong_link_cnt) {
2849 sk_reset_timer(sk, &sk->sk_timer, msecs_to_jiffies(100));
2850 return;
2851 }
2852 /* Prepare SYN for retransmit */
2853 tipc_msg_skb_clone(&sk->sk_write_queue, list);
2854 }
2855
tipc_sk_timeout(struct timer_list * t)2856 static void tipc_sk_timeout(struct timer_list *t)
2857 {
2858 struct sock *sk = from_timer(sk, t, sk_timer);
2859 struct tipc_sock *tsk = tipc_sk(sk);
2860 u32 pnode = tsk_peer_node(tsk);
2861 struct sk_buff_head list;
2862 int rc = 0;
2863
2864 __skb_queue_head_init(&list);
2865 bh_lock_sock(sk);
2866
2867 /* Try again later if socket is busy */
2868 if (sock_owned_by_user(sk)) {
2869 sk_reset_timer(sk, &sk->sk_timer, jiffies + HZ / 20);
2870 bh_unlock_sock(sk);
2871 sock_put(sk);
2872 return;
2873 }
2874
2875 if (sk->sk_state == TIPC_ESTABLISHED)
2876 tipc_sk_check_probing_state(sk, &list);
2877 else if (sk->sk_state == TIPC_CONNECTING)
2878 tipc_sk_retry_connect(sk, &list);
2879
2880 bh_unlock_sock(sk);
2881
2882 if (!skb_queue_empty(&list))
2883 rc = tipc_node_xmit(sock_net(sk), &list, pnode, tsk->portid);
2884
2885 /* SYN messages may cause link congestion */
2886 if (rc == -ELINKCONG) {
2887 tipc_dest_push(&tsk->cong_links, pnode, 0);
2888 tsk->cong_link_cnt = 1;
2889 }
2890 sock_put(sk);
2891 }
2892
tipc_sk_publish(struct tipc_sock * tsk,uint scope,struct tipc_name_seq const * seq)2893 static int tipc_sk_publish(struct tipc_sock *tsk, uint scope,
2894 struct tipc_name_seq const *seq)
2895 {
2896 struct sock *sk = &tsk->sk;
2897 struct net *net = sock_net(sk);
2898 struct publication *publ;
2899 u32 key;
2900
2901 if (scope != TIPC_NODE_SCOPE)
2902 scope = TIPC_CLUSTER_SCOPE;
2903
2904 if (tipc_sk_connected(sk))
2905 return -EINVAL;
2906 key = tsk->portid + tsk->pub_count + 1;
2907 if (key == tsk->portid)
2908 return -EADDRINUSE;
2909
2910 publ = tipc_nametbl_publish(net, seq->type, seq->lower, seq->upper,
2911 scope, tsk->portid, key);
2912 if (unlikely(!publ))
2913 return -EINVAL;
2914
2915 list_add(&publ->binding_sock, &tsk->publications);
2916 tsk->pub_count++;
2917 tsk->published = 1;
2918 return 0;
2919 }
2920
tipc_sk_withdraw(struct tipc_sock * tsk,uint scope,struct tipc_name_seq const * seq)2921 static int tipc_sk_withdraw(struct tipc_sock *tsk, uint scope,
2922 struct tipc_name_seq const *seq)
2923 {
2924 struct net *net = sock_net(&tsk->sk);
2925 struct publication *publ;
2926 struct publication *safe;
2927 int rc = -EINVAL;
2928
2929 if (scope != TIPC_NODE_SCOPE)
2930 scope = TIPC_CLUSTER_SCOPE;
2931
2932 list_for_each_entry_safe(publ, safe, &tsk->publications, binding_sock) {
2933 if (seq) {
2934 if (publ->scope != scope)
2935 continue;
2936 if (publ->type != seq->type)
2937 continue;
2938 if (publ->lower != seq->lower)
2939 continue;
2940 if (publ->upper != seq->upper)
2941 break;
2942 tipc_nametbl_withdraw(net, publ->type, publ->lower,
2943 publ->upper, publ->key);
2944 rc = 0;
2945 break;
2946 }
2947 tipc_nametbl_withdraw(net, publ->type, publ->lower,
2948 publ->upper, publ->key);
2949 rc = 0;
2950 }
2951 if (list_empty(&tsk->publications))
2952 tsk->published = 0;
2953 return rc;
2954 }
2955
2956 /* tipc_sk_reinit: set non-zero address in all existing sockets
2957 * when we go from standalone to network mode.
2958 */
tipc_sk_reinit(struct net * net)2959 void tipc_sk_reinit(struct net *net)
2960 {
2961 struct tipc_net *tn = net_generic(net, tipc_net_id);
2962 struct rhashtable_iter iter;
2963 struct tipc_sock *tsk;
2964 struct tipc_msg *msg;
2965
2966 rhashtable_walk_enter(&tn->sk_rht, &iter);
2967
2968 do {
2969 rhashtable_walk_start(&iter);
2970
2971 while ((tsk = rhashtable_walk_next(&iter)) && !IS_ERR(tsk)) {
2972 sock_hold(&tsk->sk);
2973 rhashtable_walk_stop(&iter);
2974 lock_sock(&tsk->sk);
2975 msg = &tsk->phdr;
2976 msg_set_prevnode(msg, tipc_own_addr(net));
2977 msg_set_orignode(msg, tipc_own_addr(net));
2978 release_sock(&tsk->sk);
2979 rhashtable_walk_start(&iter);
2980 sock_put(&tsk->sk);
2981 }
2982
2983 rhashtable_walk_stop(&iter);
2984 } while (tsk == ERR_PTR(-EAGAIN));
2985
2986 rhashtable_walk_exit(&iter);
2987 }
2988
tipc_sk_lookup(struct net * net,u32 portid)2989 static struct tipc_sock *tipc_sk_lookup(struct net *net, u32 portid)
2990 {
2991 struct tipc_net *tn = net_generic(net, tipc_net_id);
2992 struct tipc_sock *tsk;
2993
2994 rcu_read_lock();
2995 tsk = rhashtable_lookup(&tn->sk_rht, &portid, tsk_rht_params);
2996 if (tsk)
2997 sock_hold(&tsk->sk);
2998 rcu_read_unlock();
2999
3000 return tsk;
3001 }
3002
tipc_sk_insert(struct tipc_sock * tsk)3003 static int tipc_sk_insert(struct tipc_sock *tsk)
3004 {
3005 struct sock *sk = &tsk->sk;
3006 struct net *net = sock_net(sk);
3007 struct tipc_net *tn = net_generic(net, tipc_net_id);
3008 u32 remaining = (TIPC_MAX_PORT - TIPC_MIN_PORT) + 1;
3009 u32 portid = prandom_u32() % remaining + TIPC_MIN_PORT;
3010
3011 while (remaining--) {
3012 portid++;
3013 if ((portid < TIPC_MIN_PORT) || (portid > TIPC_MAX_PORT))
3014 portid = TIPC_MIN_PORT;
3015 tsk->portid = portid;
3016 sock_hold(&tsk->sk);
3017 if (!rhashtable_lookup_insert_fast(&tn->sk_rht, &tsk->node,
3018 tsk_rht_params))
3019 return 0;
3020 sock_put(&tsk->sk);
3021 }
3022
3023 return -1;
3024 }
3025
tipc_sk_remove(struct tipc_sock * tsk)3026 static void tipc_sk_remove(struct tipc_sock *tsk)
3027 {
3028 struct sock *sk = &tsk->sk;
3029 struct tipc_net *tn = net_generic(sock_net(sk), tipc_net_id);
3030
3031 if (!rhashtable_remove_fast(&tn->sk_rht, &tsk->node, tsk_rht_params)) {
3032 WARN_ON(refcount_read(&sk->sk_refcnt) == 1);
3033 __sock_put(sk);
3034 }
3035 }
3036
3037 static const struct rhashtable_params tsk_rht_params = {
3038 .nelem_hint = 192,
3039 .head_offset = offsetof(struct tipc_sock, node),
3040 .key_offset = offsetof(struct tipc_sock, portid),
3041 .key_len = sizeof(u32), /* portid */
3042 .max_size = 1048576,
3043 .min_size = 256,
3044 .automatic_shrinking = true,
3045 };
3046
tipc_sk_rht_init(struct net * net)3047 int tipc_sk_rht_init(struct net *net)
3048 {
3049 struct tipc_net *tn = net_generic(net, tipc_net_id);
3050
3051 return rhashtable_init(&tn->sk_rht, &tsk_rht_params);
3052 }
3053
tipc_sk_rht_destroy(struct net * net)3054 void tipc_sk_rht_destroy(struct net *net)
3055 {
3056 struct tipc_net *tn = net_generic(net, tipc_net_id);
3057
3058 /* Wait for socket readers to complete */
3059 synchronize_net();
3060
3061 rhashtable_destroy(&tn->sk_rht);
3062 }
3063
tipc_sk_join(struct tipc_sock * tsk,struct tipc_group_req * mreq)3064 static int tipc_sk_join(struct tipc_sock *tsk, struct tipc_group_req *mreq)
3065 {
3066 struct net *net = sock_net(&tsk->sk);
3067 struct tipc_group *grp = tsk->group;
3068 struct tipc_msg *hdr = &tsk->phdr;
3069 struct tipc_name_seq seq;
3070 int rc;
3071
3072 if (mreq->type < TIPC_RESERVED_TYPES)
3073 return -EACCES;
3074 if (mreq->scope > TIPC_NODE_SCOPE)
3075 return -EINVAL;
3076 if (grp)
3077 return -EACCES;
3078 grp = tipc_group_create(net, tsk->portid, mreq, &tsk->group_is_open);
3079 if (!grp)
3080 return -ENOMEM;
3081 tsk->group = grp;
3082 msg_set_lookup_scope(hdr, mreq->scope);
3083 msg_set_nametype(hdr, mreq->type);
3084 msg_set_dest_droppable(hdr, true);
3085 seq.type = mreq->type;
3086 seq.lower = mreq->instance;
3087 seq.upper = seq.lower;
3088 tipc_nametbl_build_group(net, grp, mreq->type, mreq->scope);
3089 rc = tipc_sk_publish(tsk, mreq->scope, &seq);
3090 if (rc) {
3091 tipc_group_delete(net, grp);
3092 tsk->group = NULL;
3093 return rc;
3094 }
3095 /* Eliminate any risk that a broadcast overtakes sent JOINs */
3096 tsk->mc_method.rcast = true;
3097 tsk->mc_method.mandatory = true;
3098 tipc_group_join(net, grp, &tsk->sk.sk_rcvbuf);
3099 return rc;
3100 }
3101
tipc_sk_leave(struct tipc_sock * tsk)3102 static int tipc_sk_leave(struct tipc_sock *tsk)
3103 {
3104 struct net *net = sock_net(&tsk->sk);
3105 struct tipc_group *grp = tsk->group;
3106 struct tipc_name_seq seq;
3107 int scope;
3108
3109 if (!grp)
3110 return -EINVAL;
3111 tipc_group_self(grp, &seq, &scope);
3112 tipc_group_delete(net, grp);
3113 tsk->group = NULL;
3114 tipc_sk_withdraw(tsk, scope, &seq);
3115 return 0;
3116 }
3117
3118 /**
3119 * tipc_setsockopt - set socket option
3120 * @sock: socket structure
3121 * @lvl: option level
3122 * @opt: option identifier
3123 * @ov: pointer to new option value
3124 * @ol: length of option value
3125 *
3126 * For stream sockets only, accepts and ignores all IPPROTO_TCP options
3127 * (to ease compatibility).
3128 *
3129 * Returns 0 on success, errno otherwise
3130 */
tipc_setsockopt(struct socket * sock,int lvl,int opt,sockptr_t ov,unsigned int ol)3131 static int tipc_setsockopt(struct socket *sock, int lvl, int opt,
3132 sockptr_t ov, unsigned int ol)
3133 {
3134 struct sock *sk = sock->sk;
3135 struct tipc_sock *tsk = tipc_sk(sk);
3136 struct tipc_group_req mreq;
3137 u32 value = 0;
3138 int res = 0;
3139
3140 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
3141 return 0;
3142 if (lvl != SOL_TIPC)
3143 return -ENOPROTOOPT;
3144
3145 switch (opt) {
3146 case TIPC_IMPORTANCE:
3147 case TIPC_SRC_DROPPABLE:
3148 case TIPC_DEST_DROPPABLE:
3149 case TIPC_CONN_TIMEOUT:
3150 case TIPC_NODELAY:
3151 if (ol < sizeof(value))
3152 return -EINVAL;
3153 if (copy_from_sockptr(&value, ov, sizeof(u32)))
3154 return -EFAULT;
3155 break;
3156 case TIPC_GROUP_JOIN:
3157 if (ol < sizeof(mreq))
3158 return -EINVAL;
3159 if (copy_from_sockptr(&mreq, ov, sizeof(mreq)))
3160 return -EFAULT;
3161 break;
3162 default:
3163 if (!sockptr_is_null(ov) || ol)
3164 return -EINVAL;
3165 }
3166
3167 lock_sock(sk);
3168
3169 switch (opt) {
3170 case TIPC_IMPORTANCE:
3171 res = tsk_set_importance(sk, value);
3172 break;
3173 case TIPC_SRC_DROPPABLE:
3174 if (sock->type != SOCK_STREAM)
3175 tsk_set_unreliable(tsk, value);
3176 else
3177 res = -ENOPROTOOPT;
3178 break;
3179 case TIPC_DEST_DROPPABLE:
3180 tsk_set_unreturnable(tsk, value);
3181 break;
3182 case TIPC_CONN_TIMEOUT:
3183 tipc_sk(sk)->conn_timeout = value;
3184 break;
3185 case TIPC_MCAST_BROADCAST:
3186 tsk->mc_method.rcast = false;
3187 tsk->mc_method.mandatory = true;
3188 break;
3189 case TIPC_MCAST_REPLICAST:
3190 tsk->mc_method.rcast = true;
3191 tsk->mc_method.mandatory = true;
3192 break;
3193 case TIPC_GROUP_JOIN:
3194 res = tipc_sk_join(tsk, &mreq);
3195 break;
3196 case TIPC_GROUP_LEAVE:
3197 res = tipc_sk_leave(tsk);
3198 break;
3199 case TIPC_NODELAY:
3200 tsk->nodelay = !!value;
3201 tsk_set_nagle(tsk);
3202 break;
3203 default:
3204 res = -EINVAL;
3205 }
3206
3207 release_sock(sk);
3208
3209 return res;
3210 }
3211
3212 /**
3213 * tipc_getsockopt - get socket option
3214 * @sock: socket structure
3215 * @lvl: option level
3216 * @opt: option identifier
3217 * @ov: receptacle for option value
3218 * @ol: receptacle for length of option value
3219 *
3220 * For stream sockets only, returns 0 length result for all IPPROTO_TCP options
3221 * (to ease compatibility).
3222 *
3223 * Returns 0 on success, errno otherwise
3224 */
tipc_getsockopt(struct socket * sock,int lvl,int opt,char __user * ov,int __user * ol)3225 static int tipc_getsockopt(struct socket *sock, int lvl, int opt,
3226 char __user *ov, int __user *ol)
3227 {
3228 struct sock *sk = sock->sk;
3229 struct tipc_sock *tsk = tipc_sk(sk);
3230 struct tipc_name_seq seq;
3231 int len, scope;
3232 u32 value;
3233 int res;
3234
3235 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
3236 return put_user(0, ol);
3237 if (lvl != SOL_TIPC)
3238 return -ENOPROTOOPT;
3239 res = get_user(len, ol);
3240 if (res)
3241 return res;
3242
3243 lock_sock(sk);
3244
3245 switch (opt) {
3246 case TIPC_IMPORTANCE:
3247 value = tsk_importance(tsk);
3248 break;
3249 case TIPC_SRC_DROPPABLE:
3250 value = tsk_unreliable(tsk);
3251 break;
3252 case TIPC_DEST_DROPPABLE:
3253 value = tsk_unreturnable(tsk);
3254 break;
3255 case TIPC_CONN_TIMEOUT:
3256 value = tsk->conn_timeout;
3257 /* no need to set "res", since already 0 at this point */
3258 break;
3259 case TIPC_NODE_RECVQ_DEPTH:
3260 value = 0; /* was tipc_queue_size, now obsolete */
3261 break;
3262 case TIPC_SOCK_RECVQ_DEPTH:
3263 value = skb_queue_len(&sk->sk_receive_queue);
3264 break;
3265 case TIPC_SOCK_RECVQ_USED:
3266 value = sk_rmem_alloc_get(sk);
3267 break;
3268 case TIPC_GROUP_JOIN:
3269 seq.type = 0;
3270 if (tsk->group)
3271 tipc_group_self(tsk->group, &seq, &scope);
3272 value = seq.type;
3273 break;
3274 default:
3275 res = -EINVAL;
3276 }
3277
3278 release_sock(sk);
3279
3280 if (res)
3281 return res; /* "get" failed */
3282
3283 if (len < sizeof(value))
3284 return -EINVAL;
3285
3286 if (copy_to_user(ov, &value, sizeof(value)))
3287 return -EFAULT;
3288
3289 return put_user(sizeof(value), ol);
3290 }
3291
tipc_ioctl(struct socket * sock,unsigned int cmd,unsigned long arg)3292 static int tipc_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
3293 {
3294 struct net *net = sock_net(sock->sk);
3295 struct tipc_sioc_nodeid_req nr = {0};
3296 struct tipc_sioc_ln_req lnr;
3297 void __user *argp = (void __user *)arg;
3298
3299 switch (cmd) {
3300 case SIOCGETLINKNAME:
3301 if (copy_from_user(&lnr, argp, sizeof(lnr)))
3302 return -EFAULT;
3303 if (!tipc_node_get_linkname(net,
3304 lnr.bearer_id & 0xffff, lnr.peer,
3305 lnr.linkname, TIPC_MAX_LINK_NAME)) {
3306 if (copy_to_user(argp, &lnr, sizeof(lnr)))
3307 return -EFAULT;
3308 return 0;
3309 }
3310 return -EADDRNOTAVAIL;
3311 case SIOCGETNODEID:
3312 if (copy_from_user(&nr, argp, sizeof(nr)))
3313 return -EFAULT;
3314 if (!tipc_node_get_id(net, nr.peer, nr.node_id))
3315 return -EADDRNOTAVAIL;
3316 if (copy_to_user(argp, &nr, sizeof(nr)))
3317 return -EFAULT;
3318 return 0;
3319 default:
3320 return -ENOIOCTLCMD;
3321 }
3322 }
3323
tipc_socketpair(struct socket * sock1,struct socket * sock2)3324 static int tipc_socketpair(struct socket *sock1, struct socket *sock2)
3325 {
3326 struct tipc_sock *tsk2 = tipc_sk(sock2->sk);
3327 struct tipc_sock *tsk1 = tipc_sk(sock1->sk);
3328 u32 onode = tipc_own_addr(sock_net(sock1->sk));
3329
3330 tsk1->peer.family = AF_TIPC;
3331 tsk1->peer.addrtype = TIPC_ADDR_ID;
3332 tsk1->peer.scope = TIPC_NODE_SCOPE;
3333 tsk1->peer.addr.id.ref = tsk2->portid;
3334 tsk1->peer.addr.id.node = onode;
3335 tsk2->peer.family = AF_TIPC;
3336 tsk2->peer.addrtype = TIPC_ADDR_ID;
3337 tsk2->peer.scope = TIPC_NODE_SCOPE;
3338 tsk2->peer.addr.id.ref = tsk1->portid;
3339 tsk2->peer.addr.id.node = onode;
3340
3341 tipc_sk_finish_conn(tsk1, tsk2->portid, onode);
3342 tipc_sk_finish_conn(tsk2, tsk1->portid, onode);
3343 return 0;
3344 }
3345
3346 /* Protocol switches for the various types of TIPC sockets */
3347
3348 static const struct proto_ops msg_ops = {
3349 .owner = THIS_MODULE,
3350 .family = AF_TIPC,
3351 .release = tipc_release,
3352 .bind = tipc_bind,
3353 .connect = tipc_connect,
3354 .socketpair = tipc_socketpair,
3355 .accept = sock_no_accept,
3356 .getname = tipc_getname,
3357 .poll = tipc_poll,
3358 .ioctl = tipc_ioctl,
3359 .listen = sock_no_listen,
3360 .shutdown = tipc_shutdown,
3361 .setsockopt = tipc_setsockopt,
3362 .getsockopt = tipc_getsockopt,
3363 .sendmsg = tipc_sendmsg,
3364 .recvmsg = tipc_recvmsg,
3365 .mmap = sock_no_mmap,
3366 .sendpage = sock_no_sendpage
3367 };
3368
3369 static const struct proto_ops packet_ops = {
3370 .owner = THIS_MODULE,
3371 .family = AF_TIPC,
3372 .release = tipc_release,
3373 .bind = tipc_bind,
3374 .connect = tipc_connect,
3375 .socketpair = tipc_socketpair,
3376 .accept = tipc_accept,
3377 .getname = tipc_getname,
3378 .poll = tipc_poll,
3379 .ioctl = tipc_ioctl,
3380 .listen = tipc_listen,
3381 .shutdown = tipc_shutdown,
3382 .setsockopt = tipc_setsockopt,
3383 .getsockopt = tipc_getsockopt,
3384 .sendmsg = tipc_send_packet,
3385 .recvmsg = tipc_recvmsg,
3386 .mmap = sock_no_mmap,
3387 .sendpage = sock_no_sendpage
3388 };
3389
3390 static const struct proto_ops stream_ops = {
3391 .owner = THIS_MODULE,
3392 .family = AF_TIPC,
3393 .release = tipc_release,
3394 .bind = tipc_bind,
3395 .connect = tipc_connect,
3396 .socketpair = tipc_socketpair,
3397 .accept = tipc_accept,
3398 .getname = tipc_getname,
3399 .poll = tipc_poll,
3400 .ioctl = tipc_ioctl,
3401 .listen = tipc_listen,
3402 .shutdown = tipc_shutdown,
3403 .setsockopt = tipc_setsockopt,
3404 .getsockopt = tipc_getsockopt,
3405 .sendmsg = tipc_sendstream,
3406 .recvmsg = tipc_recvstream,
3407 .mmap = sock_no_mmap,
3408 .sendpage = sock_no_sendpage
3409 };
3410
3411 static const struct net_proto_family tipc_family_ops = {
3412 .owner = THIS_MODULE,
3413 .family = AF_TIPC,
3414 .create = tipc_sk_create
3415 };
3416
3417 static struct proto tipc_proto = {
3418 .name = "TIPC",
3419 .owner = THIS_MODULE,
3420 .obj_size = sizeof(struct tipc_sock),
3421 .sysctl_rmem = sysctl_tipc_rmem
3422 };
3423
3424 /**
3425 * tipc_socket_init - initialize TIPC socket interface
3426 *
3427 * Returns 0 on success, errno otherwise
3428 */
tipc_socket_init(void)3429 int tipc_socket_init(void)
3430 {
3431 int res;
3432
3433 res = proto_register(&tipc_proto, 1);
3434 if (res) {
3435 pr_err("Failed to register TIPC protocol type\n");
3436 goto out;
3437 }
3438
3439 res = sock_register(&tipc_family_ops);
3440 if (res) {
3441 pr_err("Failed to register TIPC socket type\n");
3442 proto_unregister(&tipc_proto);
3443 goto out;
3444 }
3445 out:
3446 return res;
3447 }
3448
3449 /**
3450 * tipc_socket_stop - stop TIPC socket interface
3451 */
tipc_socket_stop(void)3452 void tipc_socket_stop(void)
3453 {
3454 sock_unregister(tipc_family_ops.family);
3455 proto_unregister(&tipc_proto);
3456 }
3457
3458 /* Caller should hold socket lock for the passed tipc socket. */
__tipc_nl_add_sk_con(struct sk_buff * skb,struct tipc_sock * tsk)3459 static int __tipc_nl_add_sk_con(struct sk_buff *skb, struct tipc_sock *tsk)
3460 {
3461 u32 peer_node;
3462 u32 peer_port;
3463 struct nlattr *nest;
3464
3465 peer_node = tsk_peer_node(tsk);
3466 peer_port = tsk_peer_port(tsk);
3467
3468 nest = nla_nest_start_noflag(skb, TIPC_NLA_SOCK_CON);
3469 if (!nest)
3470 return -EMSGSIZE;
3471
3472 if (nla_put_u32(skb, TIPC_NLA_CON_NODE, peer_node))
3473 goto msg_full;
3474 if (nla_put_u32(skb, TIPC_NLA_CON_SOCK, peer_port))
3475 goto msg_full;
3476
3477 if (tsk->conn_type != 0) {
3478 if (nla_put_flag(skb, TIPC_NLA_CON_FLAG))
3479 goto msg_full;
3480 if (nla_put_u32(skb, TIPC_NLA_CON_TYPE, tsk->conn_type))
3481 goto msg_full;
3482 if (nla_put_u32(skb, TIPC_NLA_CON_INST, tsk->conn_instance))
3483 goto msg_full;
3484 }
3485 nla_nest_end(skb, nest);
3486
3487 return 0;
3488
3489 msg_full:
3490 nla_nest_cancel(skb, nest);
3491
3492 return -EMSGSIZE;
3493 }
3494
__tipc_nl_add_sk_info(struct sk_buff * skb,struct tipc_sock * tsk)3495 static int __tipc_nl_add_sk_info(struct sk_buff *skb, struct tipc_sock
3496 *tsk)
3497 {
3498 struct net *net = sock_net(skb->sk);
3499 struct sock *sk = &tsk->sk;
3500
3501 if (nla_put_u32(skb, TIPC_NLA_SOCK_REF, tsk->portid) ||
3502 nla_put_u32(skb, TIPC_NLA_SOCK_ADDR, tipc_own_addr(net)))
3503 return -EMSGSIZE;
3504
3505 if (tipc_sk_connected(sk)) {
3506 if (__tipc_nl_add_sk_con(skb, tsk))
3507 return -EMSGSIZE;
3508 } else if (!list_empty(&tsk->publications)) {
3509 if (nla_put_flag(skb, TIPC_NLA_SOCK_HAS_PUBL))
3510 return -EMSGSIZE;
3511 }
3512 return 0;
3513 }
3514
3515 /* Caller should hold socket lock for the passed tipc socket. */
__tipc_nl_add_sk(struct sk_buff * skb,struct netlink_callback * cb,struct tipc_sock * tsk)3516 static int __tipc_nl_add_sk(struct sk_buff *skb, struct netlink_callback *cb,
3517 struct tipc_sock *tsk)
3518 {
3519 struct nlattr *attrs;
3520 void *hdr;
3521
3522 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
3523 &tipc_genl_family, NLM_F_MULTI, TIPC_NL_SOCK_GET);
3524 if (!hdr)
3525 goto msg_cancel;
3526
3527 attrs = nla_nest_start_noflag(skb, TIPC_NLA_SOCK);
3528 if (!attrs)
3529 goto genlmsg_cancel;
3530
3531 if (__tipc_nl_add_sk_info(skb, tsk))
3532 goto attr_msg_cancel;
3533
3534 nla_nest_end(skb, attrs);
3535 genlmsg_end(skb, hdr);
3536
3537 return 0;
3538
3539 attr_msg_cancel:
3540 nla_nest_cancel(skb, attrs);
3541 genlmsg_cancel:
3542 genlmsg_cancel(skb, hdr);
3543 msg_cancel:
3544 return -EMSGSIZE;
3545 }
3546
tipc_nl_sk_walk(struct sk_buff * skb,struct netlink_callback * cb,int (* skb_handler)(struct sk_buff * skb,struct netlink_callback * cb,struct tipc_sock * tsk))3547 int tipc_nl_sk_walk(struct sk_buff *skb, struct netlink_callback *cb,
3548 int (*skb_handler)(struct sk_buff *skb,
3549 struct netlink_callback *cb,
3550 struct tipc_sock *tsk))
3551 {
3552 struct rhashtable_iter *iter = (void *)cb->args[4];
3553 struct tipc_sock *tsk;
3554 int err;
3555
3556 rhashtable_walk_start(iter);
3557 while ((tsk = rhashtable_walk_next(iter)) != NULL) {
3558 if (IS_ERR(tsk)) {
3559 err = PTR_ERR(tsk);
3560 if (err == -EAGAIN) {
3561 err = 0;
3562 continue;
3563 }
3564 break;
3565 }
3566
3567 sock_hold(&tsk->sk);
3568 rhashtable_walk_stop(iter);
3569 lock_sock(&tsk->sk);
3570 err = skb_handler(skb, cb, tsk);
3571 if (err) {
3572 release_sock(&tsk->sk);
3573 sock_put(&tsk->sk);
3574 goto out;
3575 }
3576 release_sock(&tsk->sk);
3577 rhashtable_walk_start(iter);
3578 sock_put(&tsk->sk);
3579 }
3580 rhashtable_walk_stop(iter);
3581 out:
3582 return skb->len;
3583 }
3584 EXPORT_SYMBOL(tipc_nl_sk_walk);
3585
tipc_dump_start(struct netlink_callback * cb)3586 int tipc_dump_start(struct netlink_callback *cb)
3587 {
3588 return __tipc_dump_start(cb, sock_net(cb->skb->sk));
3589 }
3590 EXPORT_SYMBOL(tipc_dump_start);
3591
__tipc_dump_start(struct netlink_callback * cb,struct net * net)3592 int __tipc_dump_start(struct netlink_callback *cb, struct net *net)
3593 {
3594 /* tipc_nl_name_table_dump() uses cb->args[0...3]. */
3595 struct rhashtable_iter *iter = (void *)cb->args[4];
3596 struct tipc_net *tn = tipc_net(net);
3597
3598 if (!iter) {
3599 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
3600 if (!iter)
3601 return -ENOMEM;
3602
3603 cb->args[4] = (long)iter;
3604 }
3605
3606 rhashtable_walk_enter(&tn->sk_rht, iter);
3607 return 0;
3608 }
3609
tipc_dump_done(struct netlink_callback * cb)3610 int tipc_dump_done(struct netlink_callback *cb)
3611 {
3612 struct rhashtable_iter *hti = (void *)cb->args[4];
3613
3614 rhashtable_walk_exit(hti);
3615 kfree(hti);
3616 return 0;
3617 }
3618 EXPORT_SYMBOL(tipc_dump_done);
3619
tipc_sk_fill_sock_diag(struct sk_buff * skb,struct netlink_callback * cb,struct tipc_sock * tsk,u32 sk_filter_state,u64 (* tipc_diag_gen_cookie)(struct sock * sk))3620 int tipc_sk_fill_sock_diag(struct sk_buff *skb, struct netlink_callback *cb,
3621 struct tipc_sock *tsk, u32 sk_filter_state,
3622 u64 (*tipc_diag_gen_cookie)(struct sock *sk))
3623 {
3624 struct sock *sk = &tsk->sk;
3625 struct nlattr *attrs;
3626 struct nlattr *stat;
3627
3628 /*filter response w.r.t sk_state*/
3629 if (!(sk_filter_state & (1 << sk->sk_state)))
3630 return 0;
3631
3632 attrs = nla_nest_start_noflag(skb, TIPC_NLA_SOCK);
3633 if (!attrs)
3634 goto msg_cancel;
3635
3636 if (__tipc_nl_add_sk_info(skb, tsk))
3637 goto attr_msg_cancel;
3638
3639 if (nla_put_u32(skb, TIPC_NLA_SOCK_TYPE, (u32)sk->sk_type) ||
3640 nla_put_u32(skb, TIPC_NLA_SOCK_TIPC_STATE, (u32)sk->sk_state) ||
3641 nla_put_u32(skb, TIPC_NLA_SOCK_INO, sock_i_ino(sk)) ||
3642 nla_put_u32(skb, TIPC_NLA_SOCK_UID,
3643 from_kuid_munged(sk_user_ns(NETLINK_CB(cb->skb).sk),
3644 sock_i_uid(sk))) ||
3645 nla_put_u64_64bit(skb, TIPC_NLA_SOCK_COOKIE,
3646 tipc_diag_gen_cookie(sk),
3647 TIPC_NLA_SOCK_PAD))
3648 goto attr_msg_cancel;
3649
3650 stat = nla_nest_start_noflag(skb, TIPC_NLA_SOCK_STAT);
3651 if (!stat)
3652 goto attr_msg_cancel;
3653
3654 if (nla_put_u32(skb, TIPC_NLA_SOCK_STAT_RCVQ,
3655 skb_queue_len(&sk->sk_receive_queue)) ||
3656 nla_put_u32(skb, TIPC_NLA_SOCK_STAT_SENDQ,
3657 skb_queue_len(&sk->sk_write_queue)) ||
3658 nla_put_u32(skb, TIPC_NLA_SOCK_STAT_DROP,
3659 atomic_read(&sk->sk_drops)))
3660 goto stat_msg_cancel;
3661
3662 if (tsk->cong_link_cnt &&
3663 nla_put_flag(skb, TIPC_NLA_SOCK_STAT_LINK_CONG))
3664 goto stat_msg_cancel;
3665
3666 if (tsk_conn_cong(tsk) &&
3667 nla_put_flag(skb, TIPC_NLA_SOCK_STAT_CONN_CONG))
3668 goto stat_msg_cancel;
3669
3670 nla_nest_end(skb, stat);
3671
3672 if (tsk->group)
3673 if (tipc_group_fill_sock_diag(tsk->group, skb))
3674 goto stat_msg_cancel;
3675
3676 nla_nest_end(skb, attrs);
3677
3678 return 0;
3679
3680 stat_msg_cancel:
3681 nla_nest_cancel(skb, stat);
3682 attr_msg_cancel:
3683 nla_nest_cancel(skb, attrs);
3684 msg_cancel:
3685 return -EMSGSIZE;
3686 }
3687 EXPORT_SYMBOL(tipc_sk_fill_sock_diag);
3688
tipc_nl_sk_dump(struct sk_buff * skb,struct netlink_callback * cb)3689 int tipc_nl_sk_dump(struct sk_buff *skb, struct netlink_callback *cb)
3690 {
3691 return tipc_nl_sk_walk(skb, cb, __tipc_nl_add_sk);
3692 }
3693
3694 /* Caller should hold socket lock for the passed tipc socket. */
__tipc_nl_add_sk_publ(struct sk_buff * skb,struct netlink_callback * cb,struct publication * publ)3695 static int __tipc_nl_add_sk_publ(struct sk_buff *skb,
3696 struct netlink_callback *cb,
3697 struct publication *publ)
3698 {
3699 void *hdr;
3700 struct nlattr *attrs;
3701
3702 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
3703 &tipc_genl_family, NLM_F_MULTI, TIPC_NL_PUBL_GET);
3704 if (!hdr)
3705 goto msg_cancel;
3706
3707 attrs = nla_nest_start_noflag(skb, TIPC_NLA_PUBL);
3708 if (!attrs)
3709 goto genlmsg_cancel;
3710
3711 if (nla_put_u32(skb, TIPC_NLA_PUBL_KEY, publ->key))
3712 goto attr_msg_cancel;
3713 if (nla_put_u32(skb, TIPC_NLA_PUBL_TYPE, publ->type))
3714 goto attr_msg_cancel;
3715 if (nla_put_u32(skb, TIPC_NLA_PUBL_LOWER, publ->lower))
3716 goto attr_msg_cancel;
3717 if (nla_put_u32(skb, TIPC_NLA_PUBL_UPPER, publ->upper))
3718 goto attr_msg_cancel;
3719
3720 nla_nest_end(skb, attrs);
3721 genlmsg_end(skb, hdr);
3722
3723 return 0;
3724
3725 attr_msg_cancel:
3726 nla_nest_cancel(skb, attrs);
3727 genlmsg_cancel:
3728 genlmsg_cancel(skb, hdr);
3729 msg_cancel:
3730 return -EMSGSIZE;
3731 }
3732
3733 /* Caller should hold socket lock for the passed tipc socket. */
__tipc_nl_list_sk_publ(struct sk_buff * skb,struct netlink_callback * cb,struct tipc_sock * tsk,u32 * last_publ)3734 static int __tipc_nl_list_sk_publ(struct sk_buff *skb,
3735 struct netlink_callback *cb,
3736 struct tipc_sock *tsk, u32 *last_publ)
3737 {
3738 int err;
3739 struct publication *p;
3740
3741 if (*last_publ) {
3742 list_for_each_entry(p, &tsk->publications, binding_sock) {
3743 if (p->key == *last_publ)
3744 break;
3745 }
3746 if (p->key != *last_publ) {
3747 /* We never set seq or call nl_dump_check_consistent()
3748 * this means that setting prev_seq here will cause the
3749 * consistence check to fail in the netlink callback
3750 * handler. Resulting in the last NLMSG_DONE message
3751 * having the NLM_F_DUMP_INTR flag set.
3752 */
3753 cb->prev_seq = 1;
3754 *last_publ = 0;
3755 return -EPIPE;
3756 }
3757 } else {
3758 p = list_first_entry(&tsk->publications, struct publication,
3759 binding_sock);
3760 }
3761
3762 list_for_each_entry_from(p, &tsk->publications, binding_sock) {
3763 err = __tipc_nl_add_sk_publ(skb, cb, p);
3764 if (err) {
3765 *last_publ = p->key;
3766 return err;
3767 }
3768 }
3769 *last_publ = 0;
3770
3771 return 0;
3772 }
3773
tipc_nl_publ_dump(struct sk_buff * skb,struct netlink_callback * cb)3774 int tipc_nl_publ_dump(struct sk_buff *skb, struct netlink_callback *cb)
3775 {
3776 int err;
3777 u32 tsk_portid = cb->args[0];
3778 u32 last_publ = cb->args[1];
3779 u32 done = cb->args[2];
3780 struct net *net = sock_net(skb->sk);
3781 struct tipc_sock *tsk;
3782
3783 if (!tsk_portid) {
3784 struct nlattr **attrs = genl_dumpit_info(cb)->attrs;
3785 struct nlattr *sock[TIPC_NLA_SOCK_MAX + 1];
3786
3787 if (!attrs[TIPC_NLA_SOCK])
3788 return -EINVAL;
3789
3790 err = nla_parse_nested_deprecated(sock, TIPC_NLA_SOCK_MAX,
3791 attrs[TIPC_NLA_SOCK],
3792 tipc_nl_sock_policy, NULL);
3793 if (err)
3794 return err;
3795
3796 if (!sock[TIPC_NLA_SOCK_REF])
3797 return -EINVAL;
3798
3799 tsk_portid = nla_get_u32(sock[TIPC_NLA_SOCK_REF]);
3800 }
3801
3802 if (done)
3803 return 0;
3804
3805 tsk = tipc_sk_lookup(net, tsk_portid);
3806 if (!tsk)
3807 return -EINVAL;
3808
3809 lock_sock(&tsk->sk);
3810 err = __tipc_nl_list_sk_publ(skb, cb, tsk, &last_publ);
3811 if (!err)
3812 done = 1;
3813 release_sock(&tsk->sk);
3814 sock_put(&tsk->sk);
3815
3816 cb->args[0] = tsk_portid;
3817 cb->args[1] = last_publ;
3818 cb->args[2] = done;
3819
3820 return skb->len;
3821 }
3822
3823 /**
3824 * tipc_sk_filtering - check if a socket should be traced
3825 * @sk: the socket to be examined
3826 * @sysctl_tipc_sk_filter[]: the socket tuple for filtering,
3827 * (portid, sock type, name type, name lower, name upper)
3828 *
3829 * Returns true if the socket meets the socket tuple data
3830 * (value 0 = 'any') or when there is no tuple set (all = 0),
3831 * otherwise false
3832 */
tipc_sk_filtering(struct sock * sk)3833 bool tipc_sk_filtering(struct sock *sk)
3834 {
3835 struct tipc_sock *tsk;
3836 struct publication *p;
3837 u32 _port, _sktype, _type, _lower, _upper;
3838 u32 type = 0, lower = 0, upper = 0;
3839
3840 if (!sk)
3841 return true;
3842
3843 tsk = tipc_sk(sk);
3844
3845 _port = sysctl_tipc_sk_filter[0];
3846 _sktype = sysctl_tipc_sk_filter[1];
3847 _type = sysctl_tipc_sk_filter[2];
3848 _lower = sysctl_tipc_sk_filter[3];
3849 _upper = sysctl_tipc_sk_filter[4];
3850
3851 if (!_port && !_sktype && !_type && !_lower && !_upper)
3852 return true;
3853
3854 if (_port)
3855 return (_port == tsk->portid);
3856
3857 if (_sktype && _sktype != sk->sk_type)
3858 return false;
3859
3860 if (tsk->published) {
3861 p = list_first_entry_or_null(&tsk->publications,
3862 struct publication, binding_sock);
3863 if (p) {
3864 type = p->type;
3865 lower = p->lower;
3866 upper = p->upper;
3867 }
3868 }
3869
3870 if (!tipc_sk_type_connectionless(sk)) {
3871 type = tsk->conn_type;
3872 lower = tsk->conn_instance;
3873 upper = tsk->conn_instance;
3874 }
3875
3876 if ((_type && _type != type) || (_lower && _lower != lower) ||
3877 (_upper && _upper != upper))
3878 return false;
3879
3880 return true;
3881 }
3882
tipc_sock_get_portid(struct sock * sk)3883 u32 tipc_sock_get_portid(struct sock *sk)
3884 {
3885 return (sk) ? (tipc_sk(sk))->portid : 0;
3886 }
3887
3888 /**
3889 * tipc_sk_overlimit1 - check if socket rx queue is about to be overloaded,
3890 * both the rcv and backlog queues are considered
3891 * @sk: tipc sk to be checked
3892 * @skb: tipc msg to be checked
3893 *
3894 * Returns true if the socket rx queue allocation is > 90%, otherwise false
3895 */
3896
tipc_sk_overlimit1(struct sock * sk,struct sk_buff * skb)3897 bool tipc_sk_overlimit1(struct sock *sk, struct sk_buff *skb)
3898 {
3899 atomic_t *dcnt = &tipc_sk(sk)->dupl_rcvcnt;
3900 unsigned int lim = rcvbuf_limit(sk, skb) + atomic_read(dcnt);
3901 unsigned int qsize = sk->sk_backlog.len + sk_rmem_alloc_get(sk);
3902
3903 return (qsize > lim * 90 / 100);
3904 }
3905
3906 /**
3907 * tipc_sk_overlimit2 - check if socket rx queue is about to be overloaded,
3908 * only the rcv queue is considered
3909 * @sk: tipc sk to be checked
3910 * @skb: tipc msg to be checked
3911 *
3912 * Returns true if the socket rx queue allocation is > 90%, otherwise false
3913 */
3914
tipc_sk_overlimit2(struct sock * sk,struct sk_buff * skb)3915 bool tipc_sk_overlimit2(struct sock *sk, struct sk_buff *skb)
3916 {
3917 unsigned int lim = rcvbuf_limit(sk, skb);
3918 unsigned int qsize = sk_rmem_alloc_get(sk);
3919
3920 return (qsize > lim * 90 / 100);
3921 }
3922
3923 /**
3924 * tipc_sk_dump - dump TIPC socket
3925 * @sk: tipc sk to be dumped
3926 * @dqueues: bitmask to decide if any socket queue to be dumped?
3927 * - TIPC_DUMP_NONE: don't dump socket queues
3928 * - TIPC_DUMP_SK_SNDQ: dump socket send queue
3929 * - TIPC_DUMP_SK_RCVQ: dump socket rcv queue
3930 * - TIPC_DUMP_SK_BKLGQ: dump socket backlog queue
3931 * - TIPC_DUMP_ALL: dump all the socket queues above
3932 * @buf: returned buffer of dump data in format
3933 */
tipc_sk_dump(struct sock * sk,u16 dqueues,char * buf)3934 int tipc_sk_dump(struct sock *sk, u16 dqueues, char *buf)
3935 {
3936 int i = 0;
3937 size_t sz = (dqueues) ? SK_LMAX : SK_LMIN;
3938 struct tipc_sock *tsk;
3939 struct publication *p;
3940 bool tsk_connected;
3941
3942 if (!sk) {
3943 i += scnprintf(buf, sz, "sk data: (null)\n");
3944 return i;
3945 }
3946
3947 tsk = tipc_sk(sk);
3948 tsk_connected = !tipc_sk_type_connectionless(sk);
3949
3950 i += scnprintf(buf, sz, "sk data: %u", sk->sk_type);
3951 i += scnprintf(buf + i, sz - i, " %d", sk->sk_state);
3952 i += scnprintf(buf + i, sz - i, " %x", tsk_own_node(tsk));
3953 i += scnprintf(buf + i, sz - i, " %u", tsk->portid);
3954 i += scnprintf(buf + i, sz - i, " | %u", tsk_connected);
3955 if (tsk_connected) {
3956 i += scnprintf(buf + i, sz - i, " %x", tsk_peer_node(tsk));
3957 i += scnprintf(buf + i, sz - i, " %u", tsk_peer_port(tsk));
3958 i += scnprintf(buf + i, sz - i, " %u", tsk->conn_type);
3959 i += scnprintf(buf + i, sz - i, " %u", tsk->conn_instance);
3960 }
3961 i += scnprintf(buf + i, sz - i, " | %u", tsk->published);
3962 if (tsk->published) {
3963 p = list_first_entry_or_null(&tsk->publications,
3964 struct publication, binding_sock);
3965 i += scnprintf(buf + i, sz - i, " %u", (p) ? p->type : 0);
3966 i += scnprintf(buf + i, sz - i, " %u", (p) ? p->lower : 0);
3967 i += scnprintf(buf + i, sz - i, " %u", (p) ? p->upper : 0);
3968 }
3969 i += scnprintf(buf + i, sz - i, " | %u", tsk->snd_win);
3970 i += scnprintf(buf + i, sz - i, " %u", tsk->rcv_win);
3971 i += scnprintf(buf + i, sz - i, " %u", tsk->max_pkt);
3972 i += scnprintf(buf + i, sz - i, " %x", tsk->peer_caps);
3973 i += scnprintf(buf + i, sz - i, " %u", tsk->cong_link_cnt);
3974 i += scnprintf(buf + i, sz - i, " %u", tsk->snt_unacked);
3975 i += scnprintf(buf + i, sz - i, " %u", tsk->rcv_unacked);
3976 i += scnprintf(buf + i, sz - i, " %u", atomic_read(&tsk->dupl_rcvcnt));
3977 i += scnprintf(buf + i, sz - i, " %u", sk->sk_shutdown);
3978 i += scnprintf(buf + i, sz - i, " | %d", sk_wmem_alloc_get(sk));
3979 i += scnprintf(buf + i, sz - i, " %d", sk->sk_sndbuf);
3980 i += scnprintf(buf + i, sz - i, " | %d", sk_rmem_alloc_get(sk));
3981 i += scnprintf(buf + i, sz - i, " %d", sk->sk_rcvbuf);
3982 i += scnprintf(buf + i, sz - i, " | %d\n", READ_ONCE(sk->sk_backlog.len));
3983
3984 if (dqueues & TIPC_DUMP_SK_SNDQ) {
3985 i += scnprintf(buf + i, sz - i, "sk_write_queue: ");
3986 i += tipc_list_dump(&sk->sk_write_queue, false, buf + i);
3987 }
3988
3989 if (dqueues & TIPC_DUMP_SK_RCVQ) {
3990 i += scnprintf(buf + i, sz - i, "sk_receive_queue: ");
3991 i += tipc_list_dump(&sk->sk_receive_queue, false, buf + i);
3992 }
3993
3994 if (dqueues & TIPC_DUMP_SK_BKLGQ) {
3995 i += scnprintf(buf + i, sz - i, "sk_backlog:\n head ");
3996 i += tipc_skb_dump(sk->sk_backlog.head, false, buf + i);
3997 if (sk->sk_backlog.tail != sk->sk_backlog.head) {
3998 i += scnprintf(buf + i, sz - i, " tail ");
3999 i += tipc_skb_dump(sk->sk_backlog.tail, false,
4000 buf + i);
4001 }
4002 }
4003
4004 return i;
4005 }
4006