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