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