tipc: introduce new tipc_sk_respond() function
[cascardo/linux.git] / net / tipc / socket.c
1 /*
2  * net/tipc/socket.c: TIPC socket API
3  *
4  * Copyright (c) 2001-2007, 2012-2015, 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 "core.h"
39 #include "name_table.h"
40 #include "node.h"
41 #include "link.h"
42 #include "name_distr.h"
43 #include "socket.h"
44 #include "bcast.h"
45
46 #define SS_LISTENING            -1      /* socket is listening */
47 #define SS_READY                -2      /* socket is connectionless */
48
49 #define CONN_TIMEOUT_DEFAULT    8000    /* default connect timeout = 8s */
50 #define CONN_PROBING_INTERVAL   msecs_to_jiffies(3600000)  /* [ms] => 1 h */
51 #define TIPC_FWD_MSG            1
52 #define TIPC_CONN_OK            0
53 #define TIPC_CONN_PROBING       1
54 #define TIPC_MAX_PORT           0xffffffff
55 #define TIPC_MIN_PORT           1
56
57 /**
58  * struct tipc_sock - TIPC socket structure
59  * @sk: socket - interacts with 'port' and with user via the socket API
60  * @connected: non-zero if port is currently connected to a peer port
61  * @conn_type: TIPC type used when connection was established
62  * @conn_instance: TIPC instance used when connection was established
63  * @published: non-zero if port has one or more associated names
64  * @max_pkt: maximum packet size "hint" used when building messages sent by port
65  * @portid: unique port identity in TIPC socket hash table
66  * @phdr: preformatted message header used when sending messages
67  * @port_list: adjacent ports in TIPC's global list of ports
68  * @publications: list of publications for port
69  * @pub_count: total # of publications port has made during its lifetime
70  * @probing_state:
71  * @probing_intv:
72  * @conn_timeout: the time we can wait for an unresponded setup request
73  * @dupl_rcvcnt: number of bytes counted twice, in both backlog and rcv queue
74  * @link_cong: non-zero if owner must sleep because of link congestion
75  * @sent_unacked: # messages sent by socket, and not yet acked by peer
76  * @rcv_unacked: # messages read by user, but not yet acked back to peer
77  * @remote: 'connected' peer for dgram/rdm
78  * @node: hash table node
79  * @rcu: rcu struct for tipc_sock
80  */
81 struct tipc_sock {
82         struct sock sk;
83         int connected;
84         u32 conn_type;
85         u32 conn_instance;
86         int published;
87         u32 max_pkt;
88         u32 portid;
89         struct tipc_msg phdr;
90         struct list_head sock_list;
91         struct list_head publications;
92         u32 pub_count;
93         u32 probing_state;
94         unsigned long probing_intv;
95         uint conn_timeout;
96         atomic_t dupl_rcvcnt;
97         bool link_cong;
98         uint sent_unacked;
99         uint rcv_unacked;
100         struct sockaddr_tipc remote;
101         struct rhash_head node;
102         struct rcu_head rcu;
103 };
104
105 static int tipc_backlog_rcv(struct sock *sk, struct sk_buff *skb);
106 static void tipc_data_ready(struct sock *sk);
107 static void tipc_write_space(struct sock *sk);
108 static int tipc_release(struct socket *sock);
109 static int tipc_accept(struct socket *sock, struct socket *new_sock, int flags);
110 static int tipc_wait_for_sndmsg(struct socket *sock, long *timeo_p);
111 static void tipc_sk_timeout(unsigned long data);
112 static int tipc_sk_publish(struct tipc_sock *tsk, uint scope,
113                            struct tipc_name_seq const *seq);
114 static int tipc_sk_withdraw(struct tipc_sock *tsk, uint scope,
115                             struct tipc_name_seq const *seq);
116 static struct tipc_sock *tipc_sk_lookup(struct net *net, u32 portid);
117 static int tipc_sk_insert(struct tipc_sock *tsk);
118 static void tipc_sk_remove(struct tipc_sock *tsk);
119 static int __tipc_send_stream(struct socket *sock, struct msghdr *m,
120                               size_t dsz);
121 static int __tipc_sendmsg(struct socket *sock, struct msghdr *m, size_t dsz);
122
123 static const struct proto_ops packet_ops;
124 static const struct proto_ops stream_ops;
125 static const struct proto_ops msg_ops;
126 static struct proto tipc_proto;
127
128 static const struct nla_policy tipc_nl_sock_policy[TIPC_NLA_SOCK_MAX + 1] = {
129         [TIPC_NLA_SOCK_UNSPEC]          = { .type = NLA_UNSPEC },
130         [TIPC_NLA_SOCK_ADDR]            = { .type = NLA_U32 },
131         [TIPC_NLA_SOCK_REF]             = { .type = NLA_U32 },
132         [TIPC_NLA_SOCK_CON]             = { .type = NLA_NESTED },
133         [TIPC_NLA_SOCK_HAS_PUBL]        = { .type = NLA_FLAG }
134 };
135
136 static const struct rhashtable_params tsk_rht_params;
137
138 /*
139  * Revised TIPC socket locking policy:
140  *
141  * Most socket operations take the standard socket lock when they start
142  * and hold it until they finish (or until they need to sleep).  Acquiring
143  * this lock grants the owner exclusive access to the fields of the socket
144  * data structures, with the exception of the backlog queue.  A few socket
145  * operations can be done without taking the socket lock because they only
146  * read socket information that never changes during the life of the socket.
147  *
148  * Socket operations may acquire the lock for the associated TIPC port if they
149  * need to perform an operation on the port.  If any routine needs to acquire
150  * both the socket lock and the port lock it must take the socket lock first
151  * to avoid the risk of deadlock.
152  *
153  * The dispatcher handling incoming messages cannot grab the socket lock in
154  * the standard fashion, since invoked it runs at the BH level and cannot block.
155  * Instead, it checks to see if the socket lock is currently owned by someone,
156  * and either handles the message itself or adds it to the socket's backlog
157  * queue; in the latter case the queued message is processed once the process
158  * owning the socket lock releases it.
159  *
160  * NOTE: Releasing the socket lock while an operation is sleeping overcomes
161  * the problem of a blocked socket operation preventing any other operations
162  * from occurring.  However, applications must be careful if they have
163  * multiple threads trying to send (or receive) on the same socket, as these
164  * operations might interfere with each other.  For example, doing a connect
165  * and a receive at the same time might allow the receive to consume the
166  * ACK message meant for the connect.  While additional work could be done
167  * to try and overcome this, it doesn't seem to be worthwhile at the present.
168  *
169  * NOTE: Releasing the socket lock while an operation is sleeping also ensures
170  * that another operation that must be performed in a non-blocking manner is
171  * not delayed for very long because the lock has already been taken.
172  *
173  * NOTE: This code assumes that certain fields of a port/socket pair are
174  * constant over its lifetime; such fields can be examined without taking
175  * the socket lock and/or port lock, and do not need to be re-read even
176  * after resuming processing after waiting.  These fields include:
177  *   - socket type
178  *   - pointer to socket sk structure (aka tipc_sock structure)
179  *   - pointer to port structure
180  *   - port reference
181  */
182
183 static u32 tsk_own_node(struct tipc_sock *tsk)
184 {
185         return msg_prevnode(&tsk->phdr);
186 }
187
188 static u32 tsk_peer_node(struct tipc_sock *tsk)
189 {
190         return msg_destnode(&tsk->phdr);
191 }
192
193 static u32 tsk_peer_port(struct tipc_sock *tsk)
194 {
195         return msg_destport(&tsk->phdr);
196 }
197
198 static  bool tsk_unreliable(struct tipc_sock *tsk)
199 {
200         return msg_src_droppable(&tsk->phdr) != 0;
201 }
202
203 static void tsk_set_unreliable(struct tipc_sock *tsk, bool unreliable)
204 {
205         msg_set_src_droppable(&tsk->phdr, unreliable ? 1 : 0);
206 }
207
208 static bool tsk_unreturnable(struct tipc_sock *tsk)
209 {
210         return msg_dest_droppable(&tsk->phdr) != 0;
211 }
212
213 static void tsk_set_unreturnable(struct tipc_sock *tsk, bool unreturnable)
214 {
215         msg_set_dest_droppable(&tsk->phdr, unreturnable ? 1 : 0);
216 }
217
218 static int tsk_importance(struct tipc_sock *tsk)
219 {
220         return msg_importance(&tsk->phdr);
221 }
222
223 static int tsk_set_importance(struct tipc_sock *tsk, int imp)
224 {
225         if (imp > TIPC_CRITICAL_IMPORTANCE)
226                 return -EINVAL;
227         msg_set_importance(&tsk->phdr, (u32)imp);
228         return 0;
229 }
230
231 static struct tipc_sock *tipc_sk(const struct sock *sk)
232 {
233         return container_of(sk, struct tipc_sock, sk);
234 }
235
236 static int tsk_conn_cong(struct tipc_sock *tsk)
237 {
238         return tsk->sent_unacked >= TIPC_FLOWCTRL_WIN;
239 }
240
241 /**
242  * tsk_advance_rx_queue - discard first buffer in socket receive queue
243  *
244  * Caller must hold socket lock
245  */
246 static void tsk_advance_rx_queue(struct sock *sk)
247 {
248         kfree_skb(__skb_dequeue(&sk->sk_receive_queue));
249 }
250
251 /* tipc_sk_respond() : send response message back to sender
252  */
253 static void tipc_sk_respond(struct sock *sk, struct sk_buff *skb, int err)
254 {
255         u32 selector;
256         u32 dnode;
257         u32 onode = tipc_own_addr(sock_net(sk));
258
259         if (!tipc_msg_reverse(onode, &skb, err))
260                 return;
261
262         dnode = msg_destnode(buf_msg(skb));
263         selector = msg_origport(buf_msg(skb));
264         tipc_node_xmit_skb(sock_net(sk), skb, dnode, selector);
265 }
266
267 /**
268  * tsk_rej_rx_queue - reject all buffers in socket receive queue
269  *
270  * Caller must hold socket lock
271  */
272 static void tsk_rej_rx_queue(struct sock *sk)
273 {
274         struct sk_buff *skb;
275
276         while ((skb = __skb_dequeue(&sk->sk_receive_queue)))
277                 tipc_sk_respond(sk, skb, TIPC_ERR_NO_PORT);
278 }
279
280 /* tsk_peer_msg - verify if message was sent by connected port's peer
281  *
282  * Handles cases where the node's network address has changed from
283  * the default of <0.0.0> to its configured setting.
284  */
285 static bool tsk_peer_msg(struct tipc_sock *tsk, struct tipc_msg *msg)
286 {
287         struct tipc_net *tn = net_generic(sock_net(&tsk->sk), tipc_net_id);
288         u32 peer_port = tsk_peer_port(tsk);
289         u32 orig_node;
290         u32 peer_node;
291
292         if (unlikely(!tsk->connected))
293                 return false;
294
295         if (unlikely(msg_origport(msg) != peer_port))
296                 return false;
297
298         orig_node = msg_orignode(msg);
299         peer_node = tsk_peer_node(tsk);
300
301         if (likely(orig_node == peer_node))
302                 return true;
303
304         if (!orig_node && (peer_node == tn->own_addr))
305                 return true;
306
307         if (!peer_node && (orig_node == tn->own_addr))
308                 return true;
309
310         return false;
311 }
312
313 /**
314  * tipc_sk_create - create a TIPC socket
315  * @net: network namespace (must be default network)
316  * @sock: pre-allocated socket structure
317  * @protocol: protocol indicator (must be 0)
318  * @kern: caused by kernel or by userspace?
319  *
320  * This routine creates additional data structures used by the TIPC socket,
321  * initializes them, and links them together.
322  *
323  * Returns 0 on success, errno otherwise
324  */
325 static int tipc_sk_create(struct net *net, struct socket *sock,
326                           int protocol, int kern)
327 {
328         struct tipc_net *tn;
329         const struct proto_ops *ops;
330         socket_state state;
331         struct sock *sk;
332         struct tipc_sock *tsk;
333         struct tipc_msg *msg;
334
335         /* Validate arguments */
336         if (unlikely(protocol != 0))
337                 return -EPROTONOSUPPORT;
338
339         switch (sock->type) {
340         case SOCK_STREAM:
341                 ops = &stream_ops;
342                 state = SS_UNCONNECTED;
343                 break;
344         case SOCK_SEQPACKET:
345                 ops = &packet_ops;
346                 state = SS_UNCONNECTED;
347                 break;
348         case SOCK_DGRAM:
349         case SOCK_RDM:
350                 ops = &msg_ops;
351                 state = SS_READY;
352                 break;
353         default:
354                 return -EPROTOTYPE;
355         }
356
357         /* Allocate socket's protocol area */
358         sk = sk_alloc(net, AF_TIPC, GFP_KERNEL, &tipc_proto, kern);
359         if (sk == NULL)
360                 return -ENOMEM;
361
362         tsk = tipc_sk(sk);
363         tsk->max_pkt = MAX_PKT_DEFAULT;
364         INIT_LIST_HEAD(&tsk->publications);
365         msg = &tsk->phdr;
366         tn = net_generic(sock_net(sk), tipc_net_id);
367         tipc_msg_init(tn->own_addr, msg, TIPC_LOW_IMPORTANCE, TIPC_NAMED_MSG,
368                       NAMED_H_SIZE, 0);
369
370         /* Finish initializing socket data structures */
371         sock->ops = ops;
372         sock->state = state;
373         sock_init_data(sock, sk);
374         if (tipc_sk_insert(tsk)) {
375                 pr_warn("Socket create failed; port numbrer exhausted\n");
376                 return -EINVAL;
377         }
378         msg_set_origport(msg, tsk->portid);
379         setup_timer(&sk->sk_timer, tipc_sk_timeout, (unsigned long)tsk);
380         sk->sk_backlog_rcv = tipc_backlog_rcv;
381         sk->sk_rcvbuf = sysctl_tipc_rmem[1];
382         sk->sk_data_ready = tipc_data_ready;
383         sk->sk_write_space = tipc_write_space;
384         tsk->conn_timeout = CONN_TIMEOUT_DEFAULT;
385         tsk->sent_unacked = 0;
386         atomic_set(&tsk->dupl_rcvcnt, 0);
387
388         if (sock->state == SS_READY) {
389                 tsk_set_unreturnable(tsk, true);
390                 if (sock->type == SOCK_DGRAM)
391                         tsk_set_unreliable(tsk, true);
392         }
393         return 0;
394 }
395
396 static void tipc_sk_callback(struct rcu_head *head)
397 {
398         struct tipc_sock *tsk = container_of(head, struct tipc_sock, rcu);
399
400         sock_put(&tsk->sk);
401 }
402
403 /**
404  * tipc_release - destroy a TIPC socket
405  * @sock: socket to destroy
406  *
407  * This routine cleans up any messages that are still queued on the socket.
408  * For DGRAM and RDM socket types, all queued messages are rejected.
409  * For SEQPACKET and STREAM socket types, the first message is rejected
410  * and any others are discarded.  (If the first message on a STREAM socket
411  * is partially-read, it is discarded and the next one is rejected instead.)
412  *
413  * NOTE: Rejected messages are not necessarily returned to the sender!  They
414  * are returned or discarded according to the "destination droppable" setting
415  * specified for the message by the sender.
416  *
417  * Returns 0 on success, errno otherwise
418  */
419 static int tipc_release(struct socket *sock)
420 {
421         struct sock *sk = sock->sk;
422         struct net *net;
423         struct tipc_sock *tsk;
424         struct sk_buff *skb;
425         u32 dnode;
426
427         /*
428          * Exit if socket isn't fully initialized (occurs when a failed accept()
429          * releases a pre-allocated child socket that was never used)
430          */
431         if (sk == NULL)
432                 return 0;
433
434         net = sock_net(sk);
435         tsk = tipc_sk(sk);
436         lock_sock(sk);
437
438         /*
439          * Reject all unreceived messages, except on an active connection
440          * (which disconnects locally & sends a 'FIN+' to peer)
441          */
442         dnode = tsk_peer_node(tsk);
443         while (sock->state != SS_DISCONNECTING) {
444                 skb = __skb_dequeue(&sk->sk_receive_queue);
445                 if (skb == NULL)
446                         break;
447                 if (TIPC_SKB_CB(skb)->handle != NULL)
448                         kfree_skb(skb);
449                 else {
450                         if ((sock->state == SS_CONNECTING) ||
451                             (sock->state == SS_CONNECTED)) {
452                                 sock->state = SS_DISCONNECTING;
453                                 tsk->connected = 0;
454                                 tipc_node_remove_conn(net, dnode, tsk->portid);
455                         }
456                         tipc_sk_respond(sk, skb, TIPC_ERR_NO_PORT);
457                 }
458         }
459
460         tipc_sk_withdraw(tsk, 0, NULL);
461         sk_stop_timer(sk, &sk->sk_timer);
462         tipc_sk_remove(tsk);
463         if (tsk->connected) {
464                 skb = tipc_msg_create(TIPC_CRITICAL_IMPORTANCE,
465                                       TIPC_CONN_MSG, SHORT_H_SIZE, 0, dnode,
466                                       tsk_own_node(tsk), tsk_peer_port(tsk),
467                                       tsk->portid, TIPC_ERR_NO_PORT);
468                 if (skb)
469                         tipc_node_xmit_skb(net, skb, dnode, tsk->portid);
470                 tipc_node_remove_conn(net, dnode, tsk->portid);
471         }
472
473         /* Discard any remaining (connection-based) messages in receive queue */
474         __skb_queue_purge(&sk->sk_receive_queue);
475
476         /* Reject any messages that accumulated in backlog queue */
477         sock->state = SS_DISCONNECTING;
478         release_sock(sk);
479
480         call_rcu(&tsk->rcu, tipc_sk_callback);
481         sock->sk = NULL;
482
483         return 0;
484 }
485
486 /**
487  * tipc_bind - associate or disassocate TIPC name(s) with a socket
488  * @sock: socket structure
489  * @uaddr: socket address describing name(s) and desired operation
490  * @uaddr_len: size of socket address data structure
491  *
492  * Name and name sequence binding is indicated using a positive scope value;
493  * a negative scope value unbinds the specified name.  Specifying no name
494  * (i.e. a socket address length of 0) unbinds all names from the socket.
495  *
496  * Returns 0 on success, errno otherwise
497  *
498  * NOTE: This routine doesn't need to take the socket lock since it doesn't
499  *       access any non-constant socket information.
500  */
501 static int tipc_bind(struct socket *sock, struct sockaddr *uaddr,
502                      int uaddr_len)
503 {
504         struct sock *sk = sock->sk;
505         struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
506         struct tipc_sock *tsk = tipc_sk(sk);
507         int res = -EINVAL;
508
509         lock_sock(sk);
510         if (unlikely(!uaddr_len)) {
511                 res = tipc_sk_withdraw(tsk, 0, NULL);
512                 goto exit;
513         }
514
515         if (uaddr_len < sizeof(struct sockaddr_tipc)) {
516                 res = -EINVAL;
517                 goto exit;
518         }
519         if (addr->family != AF_TIPC) {
520                 res = -EAFNOSUPPORT;
521                 goto exit;
522         }
523
524         if (addr->addrtype == TIPC_ADDR_NAME)
525                 addr->addr.nameseq.upper = addr->addr.nameseq.lower;
526         else if (addr->addrtype != TIPC_ADDR_NAMESEQ) {
527                 res = -EAFNOSUPPORT;
528                 goto exit;
529         }
530
531         if ((addr->addr.nameseq.type < TIPC_RESERVED_TYPES) &&
532             (addr->addr.nameseq.type != TIPC_TOP_SRV) &&
533             (addr->addr.nameseq.type != TIPC_CFG_SRV)) {
534                 res = -EACCES;
535                 goto exit;
536         }
537
538         res = (addr->scope > 0) ?
539                 tipc_sk_publish(tsk, addr->scope, &addr->addr.nameseq) :
540                 tipc_sk_withdraw(tsk, -addr->scope, &addr->addr.nameseq);
541 exit:
542         release_sock(sk);
543         return res;
544 }
545
546 /**
547  * tipc_getname - get port ID of socket or peer socket
548  * @sock: socket structure
549  * @uaddr: area for returned socket address
550  * @uaddr_len: area for returned length of socket address
551  * @peer: 0 = own ID, 1 = current peer ID, 2 = current/former peer ID
552  *
553  * Returns 0 on success, errno otherwise
554  *
555  * NOTE: This routine doesn't need to take the socket lock since it only
556  *       accesses socket information that is unchanging (or which changes in
557  *       a completely predictable manner).
558  */
559 static int tipc_getname(struct socket *sock, struct sockaddr *uaddr,
560                         int *uaddr_len, int peer)
561 {
562         struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
563         struct tipc_sock *tsk = tipc_sk(sock->sk);
564         struct tipc_net *tn = net_generic(sock_net(sock->sk), tipc_net_id);
565
566         memset(addr, 0, sizeof(*addr));
567         if (peer) {
568                 if ((sock->state != SS_CONNECTED) &&
569                         ((peer != 2) || (sock->state != SS_DISCONNECTING)))
570                         return -ENOTCONN;
571                 addr->addr.id.ref = tsk_peer_port(tsk);
572                 addr->addr.id.node = tsk_peer_node(tsk);
573         } else {
574                 addr->addr.id.ref = tsk->portid;
575                 addr->addr.id.node = tn->own_addr;
576         }
577
578         *uaddr_len = sizeof(*addr);
579         addr->addrtype = TIPC_ADDR_ID;
580         addr->family = AF_TIPC;
581         addr->scope = 0;
582         addr->addr.name.domain = 0;
583
584         return 0;
585 }
586
587 /**
588  * tipc_poll - read and possibly block on pollmask
589  * @file: file structure associated with the socket
590  * @sock: socket for which to calculate the poll bits
591  * @wait: ???
592  *
593  * Returns pollmask value
594  *
595  * COMMENTARY:
596  * It appears that the usual socket locking mechanisms are not useful here
597  * since the pollmask info is potentially out-of-date the moment this routine
598  * exits.  TCP and other protocols seem to rely on higher level poll routines
599  * to handle any preventable race conditions, so TIPC will do the same ...
600  *
601  * TIPC sets the returned events as follows:
602  *
603  * socket state         flags set
604  * ------------         ---------
605  * unconnected          no read flags
606  *                      POLLOUT if port is not congested
607  *
608  * connecting           POLLIN/POLLRDNORM if ACK/NACK in rx queue
609  *                      no write flags
610  *
611  * connected            POLLIN/POLLRDNORM if data in rx queue
612  *                      POLLOUT if port is not congested
613  *
614  * disconnecting        POLLIN/POLLRDNORM/POLLHUP
615  *                      no write flags
616  *
617  * listening            POLLIN if SYN in rx queue
618  *                      no write flags
619  *
620  * ready                POLLIN/POLLRDNORM if data in rx queue
621  * [connectionless]     POLLOUT (since port cannot be congested)
622  *
623  * IMPORTANT: The fact that a read or write operation is indicated does NOT
624  * imply that the operation will succeed, merely that it should be performed
625  * and will not block.
626  */
627 static unsigned int tipc_poll(struct file *file, struct socket *sock,
628                               poll_table *wait)
629 {
630         struct sock *sk = sock->sk;
631         struct tipc_sock *tsk = tipc_sk(sk);
632         u32 mask = 0;
633
634         sock_poll_wait(file, sk_sleep(sk), wait);
635
636         switch ((int)sock->state) {
637         case SS_UNCONNECTED:
638                 if (!tsk->link_cong)
639                         mask |= POLLOUT;
640                 break;
641         case SS_READY:
642         case SS_CONNECTED:
643                 if (!tsk->link_cong && !tsk_conn_cong(tsk))
644                         mask |= POLLOUT;
645                 /* fall thru' */
646         case SS_CONNECTING:
647         case SS_LISTENING:
648                 if (!skb_queue_empty(&sk->sk_receive_queue))
649                         mask |= (POLLIN | POLLRDNORM);
650                 break;
651         case SS_DISCONNECTING:
652                 mask = (POLLIN | POLLRDNORM | POLLHUP);
653                 break;
654         }
655
656         return mask;
657 }
658
659 /**
660  * tipc_sendmcast - send multicast message
661  * @sock: socket structure
662  * @seq: destination address
663  * @msg: message to send
664  * @dsz: total length of message data
665  * @timeo: timeout to wait for wakeup
666  *
667  * Called from function tipc_sendmsg(), which has done all sanity checks
668  * Returns the number of bytes sent on success, or errno
669  */
670 static int tipc_sendmcast(struct  socket *sock, struct tipc_name_seq *seq,
671                           struct msghdr *msg, size_t dsz, long timeo)
672 {
673         struct sock *sk = sock->sk;
674         struct tipc_sock *tsk = tipc_sk(sk);
675         struct net *net = sock_net(sk);
676         struct tipc_msg *mhdr = &tsk->phdr;
677         struct sk_buff_head *pktchain = &sk->sk_write_queue;
678         struct iov_iter save = msg->msg_iter;
679         uint mtu;
680         int rc;
681
682         msg_set_type(mhdr, TIPC_MCAST_MSG);
683         msg_set_lookup_scope(mhdr, TIPC_CLUSTER_SCOPE);
684         msg_set_destport(mhdr, 0);
685         msg_set_destnode(mhdr, 0);
686         msg_set_nametype(mhdr, seq->type);
687         msg_set_namelower(mhdr, seq->lower);
688         msg_set_nameupper(mhdr, seq->upper);
689         msg_set_hdr_sz(mhdr, MCAST_H_SIZE);
690
691 new_mtu:
692         mtu = tipc_bclink_get_mtu();
693         rc = tipc_msg_build(mhdr, msg, 0, dsz, mtu, pktchain);
694         if (unlikely(rc < 0))
695                 return rc;
696
697         do {
698                 rc = tipc_bclink_xmit(net, pktchain);
699                 if (likely(!rc))
700                         return dsz;
701
702                 if (rc == -ELINKCONG) {
703                         tsk->link_cong = 1;
704                         rc = tipc_wait_for_sndmsg(sock, &timeo);
705                         if (!rc)
706                                 continue;
707                 }
708                 __skb_queue_purge(pktchain);
709                 if (rc == -EMSGSIZE) {
710                         msg->msg_iter = save;
711                         goto new_mtu;
712                 }
713                 break;
714         } while (1);
715         return rc;
716 }
717
718 /**
719  * tipc_sk_mcast_rcv - Deliver multicast messages to all destination sockets
720  * @arrvq: queue with arriving messages, to be cloned after destination lookup
721  * @inputq: queue with cloned messages, delivered to socket after dest lookup
722  *
723  * Multi-threaded: parallel calls with reference to same queues may occur
724  */
725 void tipc_sk_mcast_rcv(struct net *net, struct sk_buff_head *arrvq,
726                        struct sk_buff_head *inputq)
727 {
728         struct tipc_msg *msg;
729         struct tipc_plist dports;
730         u32 portid;
731         u32 scope = TIPC_CLUSTER_SCOPE;
732         struct sk_buff_head tmpq;
733         uint hsz;
734         struct sk_buff *skb, *_skb;
735
736         __skb_queue_head_init(&tmpq);
737         tipc_plist_init(&dports);
738
739         skb = tipc_skb_peek(arrvq, &inputq->lock);
740         for (; skb; skb = tipc_skb_peek(arrvq, &inputq->lock)) {
741                 msg = buf_msg(skb);
742                 hsz = skb_headroom(skb) + msg_hdr_sz(msg);
743
744                 if (in_own_node(net, msg_orignode(msg)))
745                         scope = TIPC_NODE_SCOPE;
746
747                 /* Create destination port list and message clones: */
748                 tipc_nametbl_mc_translate(net,
749                                           msg_nametype(msg), msg_namelower(msg),
750                                           msg_nameupper(msg), scope, &dports);
751                 portid = tipc_plist_pop(&dports);
752                 for (; portid; portid = tipc_plist_pop(&dports)) {
753                         _skb = __pskb_copy(skb, hsz, GFP_ATOMIC);
754                         if (_skb) {
755                                 msg_set_destport(buf_msg(_skb), portid);
756                                 __skb_queue_tail(&tmpq, _skb);
757                                 continue;
758                         }
759                         pr_warn("Failed to clone mcast rcv buffer\n");
760                 }
761                 /* Append to inputq if not already done by other thread */
762                 spin_lock_bh(&inputq->lock);
763                 if (skb_peek(arrvq) == skb) {
764                         skb_queue_splice_tail_init(&tmpq, inputq);
765                         kfree_skb(__skb_dequeue(arrvq));
766                 }
767                 spin_unlock_bh(&inputq->lock);
768                 __skb_queue_purge(&tmpq);
769                 kfree_skb(skb);
770         }
771         tipc_sk_rcv(net, inputq);
772 }
773
774 /**
775  * tipc_sk_proto_rcv - receive a connection mng protocol message
776  * @tsk: receiving socket
777  * @skb: pointer to message buffer.
778  */
779 static void tipc_sk_proto_rcv(struct tipc_sock *tsk, struct sk_buff *skb)
780 {
781         struct sock *sk = &tsk->sk;
782         struct tipc_msg *hdr = buf_msg(skb);
783         int mtyp = msg_type(hdr);
784         int conn_cong;
785
786         /* Ignore if connection cannot be validated: */
787         if (!tsk_peer_msg(tsk, hdr))
788                 goto exit;
789
790         tsk->probing_state = TIPC_CONN_OK;
791
792         if (mtyp == CONN_PROBE) {
793                 msg_set_type(hdr, CONN_PROBE_REPLY);
794                 tipc_sk_respond(sk, skb, TIPC_OK);
795                 return;
796         } else if (mtyp == CONN_ACK) {
797                 conn_cong = tsk_conn_cong(tsk);
798                 tsk->sent_unacked -= msg_msgcnt(hdr);
799                 if (conn_cong)
800                         sk->sk_write_space(sk);
801         } else if (mtyp != CONN_PROBE_REPLY) {
802                 pr_warn("Received unknown CONN_PROTO msg\n");
803         }
804 exit:
805         kfree_skb(skb);
806 }
807
808 static int tipc_wait_for_sndmsg(struct socket *sock, long *timeo_p)
809 {
810         struct sock *sk = sock->sk;
811         struct tipc_sock *tsk = tipc_sk(sk);
812         DEFINE_WAIT(wait);
813         int done;
814
815         do {
816                 int err = sock_error(sk);
817                 if (err)
818                         return err;
819                 if (sock->state == SS_DISCONNECTING)
820                         return -EPIPE;
821                 if (!*timeo_p)
822                         return -EAGAIN;
823                 if (signal_pending(current))
824                         return sock_intr_errno(*timeo_p);
825
826                 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
827                 done = sk_wait_event(sk, timeo_p, !tsk->link_cong);
828                 finish_wait(sk_sleep(sk), &wait);
829         } while (!done);
830         return 0;
831 }
832
833 /**
834  * tipc_sendmsg - send message in connectionless manner
835  * @sock: socket structure
836  * @m: message to send
837  * @dsz: amount of user data to be sent
838  *
839  * Message must have an destination specified explicitly.
840  * Used for SOCK_RDM and SOCK_DGRAM messages,
841  * and for 'SYN' messages on SOCK_SEQPACKET and SOCK_STREAM connections.
842  * (Note: 'SYN+' is prohibited on SOCK_STREAM.)
843  *
844  * Returns the number of bytes sent on success, or errno otherwise
845  */
846 static int tipc_sendmsg(struct socket *sock,
847                         struct msghdr *m, size_t dsz)
848 {
849         struct sock *sk = sock->sk;
850         int ret;
851
852         lock_sock(sk);
853         ret = __tipc_sendmsg(sock, m, dsz);
854         release_sock(sk);
855
856         return ret;
857 }
858
859 static int __tipc_sendmsg(struct socket *sock, struct msghdr *m, size_t dsz)
860 {
861         DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
862         struct sock *sk = sock->sk;
863         struct tipc_sock *tsk = tipc_sk(sk);
864         struct net *net = sock_net(sk);
865         struct tipc_msg *mhdr = &tsk->phdr;
866         u32 dnode, dport;
867         struct sk_buff_head *pktchain = &sk->sk_write_queue;
868         struct sk_buff *skb;
869         struct tipc_name_seq *seq;
870         struct iov_iter save;
871         u32 mtu;
872         long timeo;
873         int rc;
874
875         if (dsz > TIPC_MAX_USER_MSG_SIZE)
876                 return -EMSGSIZE;
877         if (unlikely(!dest)) {
878                 if (tsk->connected && sock->state == SS_READY)
879                         dest = &tsk->remote;
880                 else
881                         return -EDESTADDRREQ;
882         } else if (unlikely(m->msg_namelen < sizeof(*dest)) ||
883                    dest->family != AF_TIPC) {
884                 return -EINVAL;
885         }
886         if (unlikely(sock->state != SS_READY)) {
887                 if (sock->state == SS_LISTENING)
888                         return -EPIPE;
889                 if (sock->state != SS_UNCONNECTED)
890                         return -EISCONN;
891                 if (tsk->published)
892                         return -EOPNOTSUPP;
893                 if (dest->addrtype == TIPC_ADDR_NAME) {
894                         tsk->conn_type = dest->addr.name.name.type;
895                         tsk->conn_instance = dest->addr.name.name.instance;
896                 }
897         }
898         seq = &dest->addr.nameseq;
899         timeo = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT);
900
901         if (dest->addrtype == TIPC_ADDR_MCAST) {
902                 return tipc_sendmcast(sock, seq, m, dsz, timeo);
903         } else if (dest->addrtype == TIPC_ADDR_NAME) {
904                 u32 type = dest->addr.name.name.type;
905                 u32 inst = dest->addr.name.name.instance;
906                 u32 domain = dest->addr.name.domain;
907
908                 dnode = domain;
909                 msg_set_type(mhdr, TIPC_NAMED_MSG);
910                 msg_set_hdr_sz(mhdr, NAMED_H_SIZE);
911                 msg_set_nametype(mhdr, type);
912                 msg_set_nameinst(mhdr, inst);
913                 msg_set_lookup_scope(mhdr, tipc_addr_scope(domain));
914                 dport = tipc_nametbl_translate(net, type, inst, &dnode);
915                 msg_set_destnode(mhdr, dnode);
916                 msg_set_destport(mhdr, dport);
917                 if (unlikely(!dport && !dnode))
918                         return -EHOSTUNREACH;
919         } else if (dest->addrtype == TIPC_ADDR_ID) {
920                 dnode = dest->addr.id.node;
921                 msg_set_type(mhdr, TIPC_DIRECT_MSG);
922                 msg_set_lookup_scope(mhdr, 0);
923                 msg_set_destnode(mhdr, dnode);
924                 msg_set_destport(mhdr, dest->addr.id.ref);
925                 msg_set_hdr_sz(mhdr, BASIC_H_SIZE);
926         }
927
928         save = m->msg_iter;
929 new_mtu:
930         mtu = tipc_node_get_mtu(net, dnode, tsk->portid);
931         rc = tipc_msg_build(mhdr, m, 0, dsz, mtu, pktchain);
932         if (rc < 0)
933                 return rc;
934
935         do {
936                 skb = skb_peek(pktchain);
937                 TIPC_SKB_CB(skb)->wakeup_pending = tsk->link_cong;
938                 rc = tipc_node_xmit(net, pktchain, dnode, tsk->portid);
939                 if (likely(!rc)) {
940                         if (sock->state != SS_READY)
941                                 sock->state = SS_CONNECTING;
942                         return dsz;
943                 }
944                 if (rc == -ELINKCONG) {
945                         tsk->link_cong = 1;
946                         rc = tipc_wait_for_sndmsg(sock, &timeo);
947                         if (!rc)
948                                 continue;
949                 }
950                 __skb_queue_purge(pktchain);
951                 if (rc == -EMSGSIZE) {
952                         m->msg_iter = save;
953                         goto new_mtu;
954                 }
955                 break;
956         } while (1);
957
958         return rc;
959 }
960
961 static int tipc_wait_for_sndpkt(struct socket *sock, long *timeo_p)
962 {
963         struct sock *sk = sock->sk;
964         struct tipc_sock *tsk = tipc_sk(sk);
965         DEFINE_WAIT(wait);
966         int done;
967
968         do {
969                 int err = sock_error(sk);
970                 if (err)
971                         return err;
972                 if (sock->state == SS_DISCONNECTING)
973                         return -EPIPE;
974                 else if (sock->state != SS_CONNECTED)
975                         return -ENOTCONN;
976                 if (!*timeo_p)
977                         return -EAGAIN;
978                 if (signal_pending(current))
979                         return sock_intr_errno(*timeo_p);
980
981                 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
982                 done = sk_wait_event(sk, timeo_p,
983                                      (!tsk->link_cong &&
984                                       !tsk_conn_cong(tsk)) ||
985                                      !tsk->connected);
986                 finish_wait(sk_sleep(sk), &wait);
987         } while (!done);
988         return 0;
989 }
990
991 /**
992  * tipc_send_stream - send stream-oriented data
993  * @sock: socket structure
994  * @m: data to send
995  * @dsz: total length of data to be transmitted
996  *
997  * Used for SOCK_STREAM data.
998  *
999  * Returns the number of bytes sent on success (or partial success),
1000  * or errno if no data sent
1001  */
1002 static int tipc_send_stream(struct socket *sock, struct msghdr *m, size_t dsz)
1003 {
1004         struct sock *sk = sock->sk;
1005         int ret;
1006
1007         lock_sock(sk);
1008         ret = __tipc_send_stream(sock, m, dsz);
1009         release_sock(sk);
1010
1011         return ret;
1012 }
1013
1014 static int __tipc_send_stream(struct socket *sock, struct msghdr *m, size_t dsz)
1015 {
1016         struct sock *sk = sock->sk;
1017         struct net *net = sock_net(sk);
1018         struct tipc_sock *tsk = tipc_sk(sk);
1019         struct tipc_msg *mhdr = &tsk->phdr;
1020         struct sk_buff_head *pktchain = &sk->sk_write_queue;
1021         DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
1022         u32 portid = tsk->portid;
1023         int rc = -EINVAL;
1024         long timeo;
1025         u32 dnode;
1026         uint mtu, send, sent = 0;
1027         struct iov_iter save;
1028
1029         /* Handle implied connection establishment */
1030         if (unlikely(dest)) {
1031                 rc = __tipc_sendmsg(sock, m, dsz);
1032                 if (dsz && (dsz == rc))
1033                         tsk->sent_unacked = 1;
1034                 return rc;
1035         }
1036         if (dsz > (uint)INT_MAX)
1037                 return -EMSGSIZE;
1038
1039         if (unlikely(sock->state != SS_CONNECTED)) {
1040                 if (sock->state == SS_DISCONNECTING)
1041                         return -EPIPE;
1042                 else
1043                         return -ENOTCONN;
1044         }
1045
1046         timeo = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT);
1047         dnode = tsk_peer_node(tsk);
1048
1049 next:
1050         save = m->msg_iter;
1051         mtu = tsk->max_pkt;
1052         send = min_t(uint, dsz - sent, TIPC_MAX_USER_MSG_SIZE);
1053         rc = tipc_msg_build(mhdr, m, sent, send, mtu, pktchain);
1054         if (unlikely(rc < 0))
1055                 return rc;
1056         do {
1057                 if (likely(!tsk_conn_cong(tsk))) {
1058                         rc = tipc_node_xmit(net, pktchain, dnode, portid);
1059                         if (likely(!rc)) {
1060                                 tsk->sent_unacked++;
1061                                 sent += send;
1062                                 if (sent == dsz)
1063                                         return dsz;
1064                                 goto next;
1065                         }
1066                         if (rc == -EMSGSIZE) {
1067                                 __skb_queue_purge(pktchain);
1068                                 tsk->max_pkt = tipc_node_get_mtu(net, dnode,
1069                                                                  portid);
1070                                 m->msg_iter = save;
1071                                 goto next;
1072                         }
1073                         if (rc != -ELINKCONG)
1074                                 break;
1075
1076                         tsk->link_cong = 1;
1077                 }
1078                 rc = tipc_wait_for_sndpkt(sock, &timeo);
1079         } while (!rc);
1080
1081         __skb_queue_purge(pktchain);
1082         return sent ? sent : rc;
1083 }
1084
1085 /**
1086  * tipc_send_packet - send a connection-oriented message
1087  * @sock: socket structure
1088  * @m: message to send
1089  * @dsz: length of data to be transmitted
1090  *
1091  * Used for SOCK_SEQPACKET messages.
1092  *
1093  * Returns the number of bytes sent on success, or errno otherwise
1094  */
1095 static int tipc_send_packet(struct socket *sock, struct msghdr *m, size_t dsz)
1096 {
1097         if (dsz > TIPC_MAX_USER_MSG_SIZE)
1098                 return -EMSGSIZE;
1099
1100         return tipc_send_stream(sock, m, dsz);
1101 }
1102
1103 /* tipc_sk_finish_conn - complete the setup of a connection
1104  */
1105 static void tipc_sk_finish_conn(struct tipc_sock *tsk, u32 peer_port,
1106                                 u32 peer_node)
1107 {
1108         struct sock *sk = &tsk->sk;
1109         struct net *net = sock_net(sk);
1110         struct tipc_msg *msg = &tsk->phdr;
1111
1112         msg_set_destnode(msg, peer_node);
1113         msg_set_destport(msg, peer_port);
1114         msg_set_type(msg, TIPC_CONN_MSG);
1115         msg_set_lookup_scope(msg, 0);
1116         msg_set_hdr_sz(msg, SHORT_H_SIZE);
1117
1118         tsk->probing_intv = CONN_PROBING_INTERVAL;
1119         tsk->probing_state = TIPC_CONN_OK;
1120         tsk->connected = 1;
1121         sk_reset_timer(sk, &sk->sk_timer, jiffies + tsk->probing_intv);
1122         tipc_node_add_conn(net, peer_node, tsk->portid, peer_port);
1123         tsk->max_pkt = tipc_node_get_mtu(net, peer_node, tsk->portid);
1124 }
1125
1126 /**
1127  * set_orig_addr - capture sender's address for received message
1128  * @m: descriptor for message info
1129  * @msg: received message header
1130  *
1131  * Note: Address is not captured if not requested by receiver.
1132  */
1133 static void set_orig_addr(struct msghdr *m, struct tipc_msg *msg)
1134 {
1135         DECLARE_SOCKADDR(struct sockaddr_tipc *, addr, m->msg_name);
1136
1137         if (addr) {
1138                 addr->family = AF_TIPC;
1139                 addr->addrtype = TIPC_ADDR_ID;
1140                 memset(&addr->addr, 0, sizeof(addr->addr));
1141                 addr->addr.id.ref = msg_origport(msg);
1142                 addr->addr.id.node = msg_orignode(msg);
1143                 addr->addr.name.domain = 0;     /* could leave uninitialized */
1144                 addr->scope = 0;                /* could leave uninitialized */
1145                 m->msg_namelen = sizeof(struct sockaddr_tipc);
1146         }
1147 }
1148
1149 /**
1150  * tipc_sk_anc_data_recv - optionally capture ancillary data for received message
1151  * @m: descriptor for message info
1152  * @msg: received message header
1153  * @tsk: TIPC port associated with message
1154  *
1155  * Note: Ancillary data is not captured if not requested by receiver.
1156  *
1157  * Returns 0 if successful, otherwise errno
1158  */
1159 static int tipc_sk_anc_data_recv(struct msghdr *m, struct tipc_msg *msg,
1160                                  struct tipc_sock *tsk)
1161 {
1162         u32 anc_data[3];
1163         u32 err;
1164         u32 dest_type;
1165         int has_name;
1166         int res;
1167
1168         if (likely(m->msg_controllen == 0))
1169                 return 0;
1170
1171         /* Optionally capture errored message object(s) */
1172         err = msg ? msg_errcode(msg) : 0;
1173         if (unlikely(err)) {
1174                 anc_data[0] = err;
1175                 anc_data[1] = msg_data_sz(msg);
1176                 res = put_cmsg(m, SOL_TIPC, TIPC_ERRINFO, 8, anc_data);
1177                 if (res)
1178                         return res;
1179                 if (anc_data[1]) {
1180                         res = put_cmsg(m, SOL_TIPC, TIPC_RETDATA, anc_data[1],
1181                                        msg_data(msg));
1182                         if (res)
1183                                 return res;
1184                 }
1185         }
1186
1187         /* Optionally capture message destination object */
1188         dest_type = msg ? msg_type(msg) : TIPC_DIRECT_MSG;
1189         switch (dest_type) {
1190         case TIPC_NAMED_MSG:
1191                 has_name = 1;
1192                 anc_data[0] = msg_nametype(msg);
1193                 anc_data[1] = msg_namelower(msg);
1194                 anc_data[2] = msg_namelower(msg);
1195                 break;
1196         case TIPC_MCAST_MSG:
1197                 has_name = 1;
1198                 anc_data[0] = msg_nametype(msg);
1199                 anc_data[1] = msg_namelower(msg);
1200                 anc_data[2] = msg_nameupper(msg);
1201                 break;
1202         case TIPC_CONN_MSG:
1203                 has_name = (tsk->conn_type != 0);
1204                 anc_data[0] = tsk->conn_type;
1205                 anc_data[1] = tsk->conn_instance;
1206                 anc_data[2] = tsk->conn_instance;
1207                 break;
1208         default:
1209                 has_name = 0;
1210         }
1211         if (has_name) {
1212                 res = put_cmsg(m, SOL_TIPC, TIPC_DESTNAME, 12, anc_data);
1213                 if (res)
1214                         return res;
1215         }
1216
1217         return 0;
1218 }
1219
1220 static void tipc_sk_send_ack(struct tipc_sock *tsk, uint ack)
1221 {
1222         struct net *net = sock_net(&tsk->sk);
1223         struct sk_buff *skb = NULL;
1224         struct tipc_msg *msg;
1225         u32 peer_port = tsk_peer_port(tsk);
1226         u32 dnode = tsk_peer_node(tsk);
1227
1228         if (!tsk->connected)
1229                 return;
1230         skb = tipc_msg_create(CONN_MANAGER, CONN_ACK, INT_H_SIZE, 0,
1231                               dnode, tsk_own_node(tsk), peer_port,
1232                               tsk->portid, TIPC_OK);
1233         if (!skb)
1234                 return;
1235         msg = buf_msg(skb);
1236         msg_set_msgcnt(msg, ack);
1237         tipc_node_xmit_skb(net, skb, dnode, msg_link_selector(msg));
1238 }
1239
1240 static int tipc_wait_for_rcvmsg(struct socket *sock, long *timeop)
1241 {
1242         struct sock *sk = sock->sk;
1243         DEFINE_WAIT(wait);
1244         long timeo = *timeop;
1245         int err;
1246
1247         for (;;) {
1248                 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
1249                 if (timeo && skb_queue_empty(&sk->sk_receive_queue)) {
1250                         if (sock->state == SS_DISCONNECTING) {
1251                                 err = -ENOTCONN;
1252                                 break;
1253                         }
1254                         release_sock(sk);
1255                         timeo = schedule_timeout(timeo);
1256                         lock_sock(sk);
1257                 }
1258                 err = 0;
1259                 if (!skb_queue_empty(&sk->sk_receive_queue))
1260                         break;
1261                 err = -EAGAIN;
1262                 if (!timeo)
1263                         break;
1264                 err = sock_intr_errno(timeo);
1265                 if (signal_pending(current))
1266                         break;
1267         }
1268         finish_wait(sk_sleep(sk), &wait);
1269         *timeop = timeo;
1270         return err;
1271 }
1272
1273 /**
1274  * tipc_recvmsg - receive packet-oriented message
1275  * @m: descriptor for message info
1276  * @buf_len: total size of user buffer area
1277  * @flags: receive flags
1278  *
1279  * Used for SOCK_DGRAM, SOCK_RDM, and SOCK_SEQPACKET messages.
1280  * If the complete message doesn't fit in user area, truncate it.
1281  *
1282  * Returns size of returned message data, errno otherwise
1283  */
1284 static int tipc_recvmsg(struct socket *sock, struct msghdr *m, size_t buf_len,
1285                         int flags)
1286 {
1287         struct sock *sk = sock->sk;
1288         struct tipc_sock *tsk = tipc_sk(sk);
1289         struct sk_buff *buf;
1290         struct tipc_msg *msg;
1291         long timeo;
1292         unsigned int sz;
1293         u32 err;
1294         int res;
1295
1296         /* Catch invalid receive requests */
1297         if (unlikely(!buf_len))
1298                 return -EINVAL;
1299
1300         lock_sock(sk);
1301
1302         if (unlikely(sock->state == SS_UNCONNECTED)) {
1303                 res = -ENOTCONN;
1304                 goto exit;
1305         }
1306
1307         timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
1308 restart:
1309
1310         /* Look for a message in receive queue; wait if necessary */
1311         res = tipc_wait_for_rcvmsg(sock, &timeo);
1312         if (res)
1313                 goto exit;
1314
1315         /* Look at first message in receive queue */
1316         buf = skb_peek(&sk->sk_receive_queue);
1317         msg = buf_msg(buf);
1318         sz = msg_data_sz(msg);
1319         err = msg_errcode(msg);
1320
1321         /* Discard an empty non-errored message & try again */
1322         if ((!sz) && (!err)) {
1323                 tsk_advance_rx_queue(sk);
1324                 goto restart;
1325         }
1326
1327         /* Capture sender's address (optional) */
1328         set_orig_addr(m, msg);
1329
1330         /* Capture ancillary data (optional) */
1331         res = tipc_sk_anc_data_recv(m, msg, tsk);
1332         if (res)
1333                 goto exit;
1334
1335         /* Capture message data (if valid) & compute return value (always) */
1336         if (!err) {
1337                 if (unlikely(buf_len < sz)) {
1338                         sz = buf_len;
1339                         m->msg_flags |= MSG_TRUNC;
1340                 }
1341                 res = skb_copy_datagram_msg(buf, msg_hdr_sz(msg), m, sz);
1342                 if (res)
1343                         goto exit;
1344                 res = sz;
1345         } else {
1346                 if ((sock->state == SS_READY) ||
1347                     ((err == TIPC_CONN_SHUTDOWN) || m->msg_control))
1348                         res = 0;
1349                 else
1350                         res = -ECONNRESET;
1351         }
1352
1353         /* Consume received message (optional) */
1354         if (likely(!(flags & MSG_PEEK))) {
1355                 if ((sock->state != SS_READY) &&
1356                     (++tsk->rcv_unacked >= TIPC_CONNACK_INTV)) {
1357                         tipc_sk_send_ack(tsk, tsk->rcv_unacked);
1358                         tsk->rcv_unacked = 0;
1359                 }
1360                 tsk_advance_rx_queue(sk);
1361         }
1362 exit:
1363         release_sock(sk);
1364         return res;
1365 }
1366
1367 /**
1368  * tipc_recv_stream - receive stream-oriented data
1369  * @m: descriptor for message info
1370  * @buf_len: total size of user buffer area
1371  * @flags: receive flags
1372  *
1373  * Used for SOCK_STREAM messages only.  If not enough data is available
1374  * will optionally wait for more; never truncates data.
1375  *
1376  * Returns size of returned message data, errno otherwise
1377  */
1378 static int tipc_recv_stream(struct socket *sock, struct msghdr *m,
1379                             size_t buf_len, int flags)
1380 {
1381         struct sock *sk = sock->sk;
1382         struct tipc_sock *tsk = tipc_sk(sk);
1383         struct sk_buff *buf;
1384         struct tipc_msg *msg;
1385         long timeo;
1386         unsigned int sz;
1387         int sz_to_copy, target, needed;
1388         int sz_copied = 0;
1389         u32 err;
1390         int res = 0;
1391
1392         /* Catch invalid receive attempts */
1393         if (unlikely(!buf_len))
1394                 return -EINVAL;
1395
1396         lock_sock(sk);
1397
1398         if (unlikely(sock->state == SS_UNCONNECTED)) {
1399                 res = -ENOTCONN;
1400                 goto exit;
1401         }
1402
1403         target = sock_rcvlowat(sk, flags & MSG_WAITALL, buf_len);
1404         timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
1405
1406 restart:
1407         /* Look for a message in receive queue; wait if necessary */
1408         res = tipc_wait_for_rcvmsg(sock, &timeo);
1409         if (res)
1410                 goto exit;
1411
1412         /* Look at first message in receive queue */
1413         buf = skb_peek(&sk->sk_receive_queue);
1414         msg = buf_msg(buf);
1415         sz = msg_data_sz(msg);
1416         err = msg_errcode(msg);
1417
1418         /* Discard an empty non-errored message & try again */
1419         if ((!sz) && (!err)) {
1420                 tsk_advance_rx_queue(sk);
1421                 goto restart;
1422         }
1423
1424         /* Optionally capture sender's address & ancillary data of first msg */
1425         if (sz_copied == 0) {
1426                 set_orig_addr(m, msg);
1427                 res = tipc_sk_anc_data_recv(m, msg, tsk);
1428                 if (res)
1429                         goto exit;
1430         }
1431
1432         /* Capture message data (if valid) & compute return value (always) */
1433         if (!err) {
1434                 u32 offset = (u32)(unsigned long)(TIPC_SKB_CB(buf)->handle);
1435
1436                 sz -= offset;
1437                 needed = (buf_len - sz_copied);
1438                 sz_to_copy = (sz <= needed) ? sz : needed;
1439
1440                 res = skb_copy_datagram_msg(buf, msg_hdr_sz(msg) + offset,
1441                                             m, sz_to_copy);
1442                 if (res)
1443                         goto exit;
1444
1445                 sz_copied += sz_to_copy;
1446
1447                 if (sz_to_copy < sz) {
1448                         if (!(flags & MSG_PEEK))
1449                                 TIPC_SKB_CB(buf)->handle =
1450                                 (void *)(unsigned long)(offset + sz_to_copy);
1451                         goto exit;
1452                 }
1453         } else {
1454                 if (sz_copied != 0)
1455                         goto exit; /* can't add error msg to valid data */
1456
1457                 if ((err == TIPC_CONN_SHUTDOWN) || m->msg_control)
1458                         res = 0;
1459                 else
1460                         res = -ECONNRESET;
1461         }
1462
1463         /* Consume received message (optional) */
1464         if (likely(!(flags & MSG_PEEK))) {
1465                 if (unlikely(++tsk->rcv_unacked >= TIPC_CONNACK_INTV)) {
1466                         tipc_sk_send_ack(tsk, tsk->rcv_unacked);
1467                         tsk->rcv_unacked = 0;
1468                 }
1469                 tsk_advance_rx_queue(sk);
1470         }
1471
1472         /* Loop around if more data is required */
1473         if ((sz_copied < buf_len) &&    /* didn't get all requested data */
1474             (!skb_queue_empty(&sk->sk_receive_queue) ||
1475             (sz_copied < target)) &&    /* and more is ready or required */
1476             (!(flags & MSG_PEEK)) &&    /* and aren't just peeking at data */
1477             (!err))                     /* and haven't reached a FIN */
1478                 goto restart;
1479
1480 exit:
1481         release_sock(sk);
1482         return sz_copied ? sz_copied : res;
1483 }
1484
1485 /**
1486  * tipc_write_space - wake up thread if port congestion is released
1487  * @sk: socket
1488  */
1489 static void tipc_write_space(struct sock *sk)
1490 {
1491         struct socket_wq *wq;
1492
1493         rcu_read_lock();
1494         wq = rcu_dereference(sk->sk_wq);
1495         if (wq_has_sleeper(wq))
1496                 wake_up_interruptible_sync_poll(&wq->wait, POLLOUT |
1497                                                 POLLWRNORM | POLLWRBAND);
1498         rcu_read_unlock();
1499 }
1500
1501 /**
1502  * tipc_data_ready - wake up threads to indicate messages have been received
1503  * @sk: socket
1504  * @len: the length of messages
1505  */
1506 static void tipc_data_ready(struct sock *sk)
1507 {
1508         struct socket_wq *wq;
1509
1510         rcu_read_lock();
1511         wq = rcu_dereference(sk->sk_wq);
1512         if (wq_has_sleeper(wq))
1513                 wake_up_interruptible_sync_poll(&wq->wait, POLLIN |
1514                                                 POLLRDNORM | POLLRDBAND);
1515         rcu_read_unlock();
1516 }
1517
1518 /**
1519  * filter_connect - Handle all incoming messages for a connection-based socket
1520  * @tsk: TIPC socket
1521  * @skb: pointer to message buffer. Set to NULL if buffer is consumed
1522  *
1523  * Returns 0 (TIPC_OK) if everything ok, -TIPC_ERR_NO_PORT otherwise
1524  */
1525 static int filter_connect(struct tipc_sock *tsk, struct sk_buff **skb)
1526 {
1527         struct sock *sk = &tsk->sk;
1528         struct net *net = sock_net(sk);
1529         struct socket *sock = sk->sk_socket;
1530         struct tipc_msg *msg = buf_msg(*skb);
1531         int retval = -TIPC_ERR_NO_PORT;
1532
1533         if (msg_mcast(msg))
1534                 return retval;
1535
1536         switch ((int)sock->state) {
1537         case SS_CONNECTED:
1538                 /* Accept only connection-based messages sent by peer */
1539                 if (tsk_peer_msg(tsk, msg)) {
1540                         if (unlikely(msg_errcode(msg))) {
1541                                 sock->state = SS_DISCONNECTING;
1542                                 tsk->connected = 0;
1543                                 /* let timer expire on it's own */
1544                                 tipc_node_remove_conn(net, tsk_peer_node(tsk),
1545                                                       tsk->portid);
1546                         }
1547                         retval = TIPC_OK;
1548                 }
1549                 break;
1550         case SS_CONNECTING:
1551                 /* Accept only ACK or NACK message */
1552
1553                 if (unlikely(!msg_connected(msg)))
1554                         break;
1555
1556                 if (unlikely(msg_errcode(msg))) {
1557                         sock->state = SS_DISCONNECTING;
1558                         sk->sk_err = ECONNREFUSED;
1559                         retval = TIPC_OK;
1560                         break;
1561                 }
1562
1563                 if (unlikely(msg_importance(msg) > TIPC_CRITICAL_IMPORTANCE)) {
1564                         sock->state = SS_DISCONNECTING;
1565                         sk->sk_err = EINVAL;
1566                         retval = TIPC_OK;
1567                         break;
1568                 }
1569
1570                 tipc_sk_finish_conn(tsk, msg_origport(msg), msg_orignode(msg));
1571                 msg_set_importance(&tsk->phdr, msg_importance(msg));
1572                 sock->state = SS_CONNECTED;
1573
1574                 /* If an incoming message is an 'ACK-', it should be
1575                  * discarded here because it doesn't contain useful
1576                  * data. In addition, we should try to wake up
1577                  * connect() routine if sleeping.
1578                  */
1579                 if (msg_data_sz(msg) == 0) {
1580                         kfree_skb(*skb);
1581                         *skb = NULL;
1582                         if (waitqueue_active(sk_sleep(sk)))
1583                                 wake_up_interruptible(sk_sleep(sk));
1584                 }
1585                 retval = TIPC_OK;
1586                 break;
1587         case SS_LISTENING:
1588         case SS_UNCONNECTED:
1589                 /* Accept only SYN message */
1590                 if (!msg_connected(msg) && !(msg_errcode(msg)))
1591                         retval = TIPC_OK;
1592                 break;
1593         case SS_DISCONNECTING:
1594                 break;
1595         default:
1596                 pr_err("Unknown socket state %u\n", sock->state);
1597         }
1598         return retval;
1599 }
1600
1601 /**
1602  * rcvbuf_limit - get proper overload limit of socket receive queue
1603  * @sk: socket
1604  * @buf: message
1605  *
1606  * For all connection oriented messages, irrespective of importance,
1607  * the default overload value (i.e. 67MB) is set as limit.
1608  *
1609  * For all connectionless messages, by default new queue limits are
1610  * as belows:
1611  *
1612  * TIPC_LOW_IMPORTANCE       (4 MB)
1613  * TIPC_MEDIUM_IMPORTANCE    (8 MB)
1614  * TIPC_HIGH_IMPORTANCE      (16 MB)
1615  * TIPC_CRITICAL_IMPORTANCE  (32 MB)
1616  *
1617  * Returns overload limit according to corresponding message importance
1618  */
1619 static unsigned int rcvbuf_limit(struct sock *sk, struct sk_buff *buf)
1620 {
1621         struct tipc_msg *msg = buf_msg(buf);
1622
1623         if (msg_connected(msg))
1624                 return sysctl_tipc_rmem[2];
1625
1626         return sk->sk_rcvbuf >> TIPC_CRITICAL_IMPORTANCE <<
1627                 msg_importance(msg);
1628 }
1629
1630 /**
1631  * filter_rcv - validate incoming message
1632  * @sk: socket
1633  * @skb: pointer to message. Set to NULL if buffer is consumed.
1634  *
1635  * Enqueues message on receive queue if acceptable; optionally handles
1636  * disconnect indication for a connected socket.
1637  *
1638  * Called with socket lock already taken
1639  *
1640  * Returns 0 (TIPC_OK) if message was ok, -TIPC error code if rejected
1641  */
1642 static int filter_rcv(struct sock *sk, struct sk_buff **skb)
1643 {
1644         struct socket *sock = sk->sk_socket;
1645         struct tipc_sock *tsk = tipc_sk(sk);
1646         struct tipc_msg *msg = buf_msg(*skb);
1647         unsigned int limit = rcvbuf_limit(sk, *skb);
1648         int rc = TIPC_OK;
1649
1650         if (unlikely(msg_user(msg) == CONN_MANAGER)) {
1651                 tipc_sk_proto_rcv(tsk, *skb);
1652                 return TIPC_OK;
1653         }
1654
1655         if (unlikely(msg_user(msg) == SOCK_WAKEUP)) {
1656                 kfree_skb(*skb);
1657                 tsk->link_cong = 0;
1658                 sk->sk_write_space(sk);
1659                 *skb = NULL;
1660                 return TIPC_OK;
1661         }
1662
1663         /* Reject message if it is wrong sort of message for socket */
1664         if (msg_type(msg) > TIPC_DIRECT_MSG)
1665                 return -TIPC_ERR_NO_PORT;
1666
1667         if (sock->state == SS_READY) {
1668                 if (msg_connected(msg))
1669                         return -TIPC_ERR_NO_PORT;
1670         } else {
1671                 rc = filter_connect(tsk, skb);
1672                 if (rc != TIPC_OK || !*skb)
1673                         return rc;
1674         }
1675
1676         /* Reject message if there isn't room to queue it */
1677         if (sk_rmem_alloc_get(sk) + (*skb)->truesize >= limit)
1678                 return -TIPC_ERR_OVERLOAD;
1679
1680         /* Enqueue message */
1681         TIPC_SKB_CB(*skb)->handle = NULL;
1682         __skb_queue_tail(&sk->sk_receive_queue, *skb);
1683         skb_set_owner_r(*skb, sk);
1684
1685         sk->sk_data_ready(sk);
1686         *skb = NULL;
1687         return TIPC_OK;
1688 }
1689
1690 /**
1691  * tipc_backlog_rcv - handle incoming message from backlog queue
1692  * @sk: socket
1693  * @skb: message
1694  *
1695  * Caller must hold socket lock
1696  *
1697  * Returns 0
1698  */
1699 static int tipc_backlog_rcv(struct sock *sk, struct sk_buff *skb)
1700 {
1701         int err;
1702         atomic_t *dcnt;
1703         u32 dnode = msg_prevnode(buf_msg(skb));
1704         struct tipc_sock *tsk = tipc_sk(sk);
1705         struct net *net = sock_net(sk);
1706         uint truesize = skb->truesize;
1707
1708         err = filter_rcv(sk, &skb);
1709         if (likely(!skb)) {
1710                 dcnt = &tsk->dupl_rcvcnt;
1711                 if (atomic_read(dcnt) < TIPC_CONN_OVERLOAD_LIMIT)
1712                         atomic_add(truesize, dcnt);
1713                 return 0;
1714         }
1715         if (!err || tipc_msg_reverse(tsk_own_node(tsk), &skb, -err))
1716                 tipc_node_xmit_skb(net, skb, dnode, tsk->portid);
1717         return 0;
1718 }
1719
1720 /**
1721  * tipc_sk_enqueue - extract all buffers with destination 'dport' from
1722  *                   inputq and try adding them to socket or backlog queue
1723  * @inputq: list of incoming buffers with potentially different destinations
1724  * @sk: socket where the buffers should be enqueued
1725  * @dport: port number for the socket
1726  * @_skb: returned buffer to be forwarded or rejected, if applicable
1727  *
1728  * Caller must hold socket lock
1729  *
1730  * Returns TIPC_OK if all buffers enqueued, otherwise -TIPC_ERR_OVERLOAD
1731  * or -TIPC_ERR_NO_PORT
1732  */
1733 static int tipc_sk_enqueue(struct sk_buff_head *inputq, struct sock *sk,
1734                            u32 dport, struct sk_buff **_skb)
1735 {
1736         unsigned int lim;
1737         atomic_t *dcnt;
1738         int err;
1739         struct sk_buff *skb;
1740         unsigned long time_limit = jiffies + 2;
1741
1742         while (skb_queue_len(inputq)) {
1743                 if (unlikely(time_after_eq(jiffies, time_limit)))
1744                         return TIPC_OK;
1745                 skb = tipc_skb_dequeue(inputq, dport);
1746                 if (unlikely(!skb))
1747                         return TIPC_OK;
1748                 if (!sock_owned_by_user(sk)) {
1749                         err = filter_rcv(sk, &skb);
1750                         if (likely(!skb))
1751                                 continue;
1752                         *_skb = skb;
1753                         return err;
1754                 }
1755                 dcnt = &tipc_sk(sk)->dupl_rcvcnt;
1756                 if (sk->sk_backlog.len)
1757                         atomic_set(dcnt, 0);
1758                 lim = rcvbuf_limit(sk, skb) + atomic_read(dcnt);
1759                 if (likely(!sk_add_backlog(sk, skb, lim)))
1760                         continue;
1761                 *_skb = skb;
1762                 return -TIPC_ERR_OVERLOAD;
1763         }
1764         return TIPC_OK;
1765 }
1766
1767 /**
1768  * tipc_sk_rcv - handle a chain of incoming buffers
1769  * @inputq: buffer list containing the buffers
1770  * Consumes all buffers in list until inputq is empty
1771  * Note: may be called in multiple threads referring to the same queue
1772  * Returns 0 if last buffer was accepted, otherwise -EHOSTUNREACH
1773  * Only node local calls check the return value, sending single-buffer queues
1774  */
1775 int tipc_sk_rcv(struct net *net, struct sk_buff_head *inputq)
1776 {
1777         u32 dnode, dport = 0;
1778         int err;
1779         struct sk_buff *skb;
1780         struct tipc_sock *tsk;
1781         struct tipc_net *tn;
1782         struct sock *sk;
1783
1784         while (skb_queue_len(inputq)) {
1785                 err = -TIPC_ERR_NO_PORT;
1786                 skb = NULL;
1787                 dport = tipc_skb_peek_port(inputq, dport);
1788                 tsk = tipc_sk_lookup(net, dport);
1789                 if (likely(tsk)) {
1790                         sk = &tsk->sk;
1791                         if (likely(spin_trylock_bh(&sk->sk_lock.slock))) {
1792                                 err = tipc_sk_enqueue(inputq, sk, dport, &skb);
1793                                 spin_unlock_bh(&sk->sk_lock.slock);
1794                                 dport = 0;
1795                         }
1796                         sock_put(sk);
1797                 } else {
1798                         skb = tipc_skb_dequeue(inputq, dport);
1799                 }
1800                 if (likely(!skb))
1801                         continue;
1802                 if (tipc_msg_lookup_dest(net, skb, &dnode, &err))
1803                         goto xmit;
1804                 if (!err) {
1805                         dnode = msg_destnode(buf_msg(skb));
1806                         goto xmit;
1807                 } else {
1808                         dnode = msg_prevnode(buf_msg(skb));
1809                 }
1810                 tn = net_generic(net, tipc_net_id);
1811                 if (!tipc_msg_reverse(tn->own_addr, &skb, -err))
1812                         continue;
1813 xmit:
1814                 tipc_node_xmit_skb(net, skb, dnode, dport);
1815         }
1816         return err ? -EHOSTUNREACH : 0;
1817 }
1818
1819 static int tipc_wait_for_connect(struct socket *sock, long *timeo_p)
1820 {
1821         struct sock *sk = sock->sk;
1822         DEFINE_WAIT(wait);
1823         int done;
1824
1825         do {
1826                 int err = sock_error(sk);
1827                 if (err)
1828                         return err;
1829                 if (!*timeo_p)
1830                         return -ETIMEDOUT;
1831                 if (signal_pending(current))
1832                         return sock_intr_errno(*timeo_p);
1833
1834                 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
1835                 done = sk_wait_event(sk, timeo_p, sock->state != SS_CONNECTING);
1836                 finish_wait(sk_sleep(sk), &wait);
1837         } while (!done);
1838         return 0;
1839 }
1840
1841 /**
1842  * tipc_connect - establish a connection to another TIPC port
1843  * @sock: socket structure
1844  * @dest: socket address for destination port
1845  * @destlen: size of socket address data structure
1846  * @flags: file-related flags associated with socket
1847  *
1848  * Returns 0 on success, errno otherwise
1849  */
1850 static int tipc_connect(struct socket *sock, struct sockaddr *dest,
1851                         int destlen, int flags)
1852 {
1853         struct sock *sk = sock->sk;
1854         struct tipc_sock *tsk = tipc_sk(sk);
1855         struct sockaddr_tipc *dst = (struct sockaddr_tipc *)dest;
1856         struct msghdr m = {NULL,};
1857         long timeout = (flags & O_NONBLOCK) ? 0 : tsk->conn_timeout;
1858         socket_state previous;
1859         int res = 0;
1860
1861         lock_sock(sk);
1862
1863         /* DGRAM/RDM connect(), just save the destaddr */
1864         if (sock->state == SS_READY) {
1865                 if (dst->family == AF_UNSPEC) {
1866                         memset(&tsk->remote, 0, sizeof(struct sockaddr_tipc));
1867                         tsk->connected = 0;
1868                 } else if (destlen != sizeof(struct sockaddr_tipc)) {
1869                         res = -EINVAL;
1870                 } else {
1871                         memcpy(&tsk->remote, dest, destlen);
1872                         tsk->connected = 1;
1873                 }
1874                 goto exit;
1875         }
1876
1877         /*
1878          * Reject connection attempt using multicast address
1879          *
1880          * Note: send_msg() validates the rest of the address fields,
1881          *       so there's no need to do it here
1882          */
1883         if (dst->addrtype == TIPC_ADDR_MCAST) {
1884                 res = -EINVAL;
1885                 goto exit;
1886         }
1887
1888         previous = sock->state;
1889         switch (sock->state) {
1890         case SS_UNCONNECTED:
1891                 /* Send a 'SYN-' to destination */
1892                 m.msg_name = dest;
1893                 m.msg_namelen = destlen;
1894
1895                 /* If connect is in non-blocking case, set MSG_DONTWAIT to
1896                  * indicate send_msg() is never blocked.
1897                  */
1898                 if (!timeout)
1899                         m.msg_flags = MSG_DONTWAIT;
1900
1901                 res = __tipc_sendmsg(sock, &m, 0);
1902                 if ((res < 0) && (res != -EWOULDBLOCK))
1903                         goto exit;
1904
1905                 /* Just entered SS_CONNECTING state; the only
1906                  * difference is that return value in non-blocking
1907                  * case is EINPROGRESS, rather than EALREADY.
1908                  */
1909                 res = -EINPROGRESS;
1910         case SS_CONNECTING:
1911                 if (previous == SS_CONNECTING)
1912                         res = -EALREADY;
1913                 if (!timeout)
1914                         goto exit;
1915                 timeout = msecs_to_jiffies(timeout);
1916                 /* Wait until an 'ACK' or 'RST' arrives, or a timeout occurs */
1917                 res = tipc_wait_for_connect(sock, &timeout);
1918                 break;
1919         case SS_CONNECTED:
1920                 res = -EISCONN;
1921                 break;
1922         default:
1923                 res = -EINVAL;
1924                 break;
1925         }
1926 exit:
1927         release_sock(sk);
1928         return res;
1929 }
1930
1931 /**
1932  * tipc_listen - allow socket to listen for incoming connections
1933  * @sock: socket structure
1934  * @len: (unused)
1935  *
1936  * Returns 0 on success, errno otherwise
1937  */
1938 static int tipc_listen(struct socket *sock, int len)
1939 {
1940         struct sock *sk = sock->sk;
1941         int res;
1942
1943         lock_sock(sk);
1944
1945         if (sock->state != SS_UNCONNECTED)
1946                 res = -EINVAL;
1947         else {
1948                 sock->state = SS_LISTENING;
1949                 res = 0;
1950         }
1951
1952         release_sock(sk);
1953         return res;
1954 }
1955
1956 static int tipc_wait_for_accept(struct socket *sock, long timeo)
1957 {
1958         struct sock *sk = sock->sk;
1959         DEFINE_WAIT(wait);
1960         int err;
1961
1962         /* True wake-one mechanism for incoming connections: only
1963          * one process gets woken up, not the 'whole herd'.
1964          * Since we do not 'race & poll' for established sockets
1965          * anymore, the common case will execute the loop only once.
1966         */
1967         for (;;) {
1968                 prepare_to_wait_exclusive(sk_sleep(sk), &wait,
1969                                           TASK_INTERRUPTIBLE);
1970                 if (timeo && skb_queue_empty(&sk->sk_receive_queue)) {
1971                         release_sock(sk);
1972                         timeo = schedule_timeout(timeo);
1973                         lock_sock(sk);
1974                 }
1975                 err = 0;
1976                 if (!skb_queue_empty(&sk->sk_receive_queue))
1977                         break;
1978                 err = -EINVAL;
1979                 if (sock->state != SS_LISTENING)
1980                         break;
1981                 err = -EAGAIN;
1982                 if (!timeo)
1983                         break;
1984                 err = sock_intr_errno(timeo);
1985                 if (signal_pending(current))
1986                         break;
1987         }
1988         finish_wait(sk_sleep(sk), &wait);
1989         return err;
1990 }
1991
1992 /**
1993  * tipc_accept - wait for connection request
1994  * @sock: listening socket
1995  * @newsock: new socket that is to be connected
1996  * @flags: file-related flags associated with socket
1997  *
1998  * Returns 0 on success, errno otherwise
1999  */
2000 static int tipc_accept(struct socket *sock, struct socket *new_sock, int flags)
2001 {
2002         struct sock *new_sk, *sk = sock->sk;
2003         struct sk_buff *buf;
2004         struct tipc_sock *new_tsock;
2005         struct tipc_msg *msg;
2006         long timeo;
2007         int res;
2008
2009         lock_sock(sk);
2010
2011         if (sock->state != SS_LISTENING) {
2012                 res = -EINVAL;
2013                 goto exit;
2014         }
2015         timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
2016         res = tipc_wait_for_accept(sock, timeo);
2017         if (res)
2018                 goto exit;
2019
2020         buf = skb_peek(&sk->sk_receive_queue);
2021
2022         res = tipc_sk_create(sock_net(sock->sk), new_sock, 0, 1);
2023         if (res)
2024                 goto exit;
2025         security_sk_clone(sock->sk, new_sock->sk);
2026
2027         new_sk = new_sock->sk;
2028         new_tsock = tipc_sk(new_sk);
2029         msg = buf_msg(buf);
2030
2031         /* we lock on new_sk; but lockdep sees the lock on sk */
2032         lock_sock_nested(new_sk, SINGLE_DEPTH_NESTING);
2033
2034         /*
2035          * Reject any stray messages received by new socket
2036          * before the socket lock was taken (very, very unlikely)
2037          */
2038         tsk_rej_rx_queue(new_sk);
2039
2040         /* Connect new socket to it's peer */
2041         tipc_sk_finish_conn(new_tsock, msg_origport(msg), msg_orignode(msg));
2042         new_sock->state = SS_CONNECTED;
2043
2044         tsk_set_importance(new_tsock, msg_importance(msg));
2045         if (msg_named(msg)) {
2046                 new_tsock->conn_type = msg_nametype(msg);
2047                 new_tsock->conn_instance = msg_nameinst(msg);
2048         }
2049
2050         /*
2051          * Respond to 'SYN-' by discarding it & returning 'ACK'-.
2052          * Respond to 'SYN+' by queuing it on new socket.
2053          */
2054         if (!msg_data_sz(msg)) {
2055                 struct msghdr m = {NULL,};
2056
2057                 tsk_advance_rx_queue(sk);
2058                 __tipc_send_stream(new_sock, &m, 0);
2059         } else {
2060                 __skb_dequeue(&sk->sk_receive_queue);
2061                 __skb_queue_head(&new_sk->sk_receive_queue, buf);
2062                 skb_set_owner_r(buf, new_sk);
2063         }
2064         release_sock(new_sk);
2065 exit:
2066         release_sock(sk);
2067         return res;
2068 }
2069
2070 /**
2071  * tipc_shutdown - shutdown socket connection
2072  * @sock: socket structure
2073  * @how: direction to close (must be SHUT_RDWR)
2074  *
2075  * Terminates connection (if necessary), then purges socket's receive queue.
2076  *
2077  * Returns 0 on success, errno otherwise
2078  */
2079 static int tipc_shutdown(struct socket *sock, int how)
2080 {
2081         struct sock *sk = sock->sk;
2082         struct net *net = sock_net(sk);
2083         struct tipc_sock *tsk = tipc_sk(sk);
2084         struct sk_buff *skb;
2085         u32 dnode;
2086         int res;
2087
2088         if (how != SHUT_RDWR)
2089                 return -EINVAL;
2090
2091         lock_sock(sk);
2092
2093         switch (sock->state) {
2094         case SS_CONNECTING:
2095         case SS_CONNECTED:
2096
2097 restart:
2098                 dnode = tsk_peer_node(tsk);
2099
2100                 /* Disconnect and send a 'FIN+' or 'FIN-' message to peer */
2101                 skb = __skb_dequeue(&sk->sk_receive_queue);
2102                 if (skb) {
2103                         if (TIPC_SKB_CB(skb)->handle != NULL) {
2104                                 kfree_skb(skb);
2105                                 goto restart;
2106                         }
2107                         tipc_sk_respond(sk, skb, TIPC_CONN_SHUTDOWN);
2108                 } else {
2109                         skb = tipc_msg_create(TIPC_CRITICAL_IMPORTANCE,
2110                                               TIPC_CONN_MSG, SHORT_H_SIZE,
2111                                               0, dnode, tsk_own_node(tsk),
2112                                               tsk_peer_port(tsk),
2113                                               tsk->portid, TIPC_CONN_SHUTDOWN);
2114                         tipc_node_xmit_skb(net, skb, dnode, tsk->portid);
2115                 }
2116                 tsk->connected = 0;
2117                 sock->state = SS_DISCONNECTING;
2118                 tipc_node_remove_conn(net, dnode, tsk->portid);
2119                 /* fall through */
2120
2121         case SS_DISCONNECTING:
2122
2123                 /* Discard any unreceived messages */
2124                 __skb_queue_purge(&sk->sk_receive_queue);
2125
2126                 /* Wake up anyone sleeping in poll */
2127                 sk->sk_state_change(sk);
2128                 res = 0;
2129                 break;
2130
2131         default:
2132                 res = -ENOTCONN;
2133         }
2134
2135         release_sock(sk);
2136         return res;
2137 }
2138
2139 static void tipc_sk_timeout(unsigned long data)
2140 {
2141         struct tipc_sock *tsk = (struct tipc_sock *)data;
2142         struct sock *sk = &tsk->sk;
2143         struct sk_buff *skb = NULL;
2144         u32 peer_port, peer_node;
2145         u32 own_node = tsk_own_node(tsk);
2146
2147         bh_lock_sock(sk);
2148         if (!tsk->connected) {
2149                 bh_unlock_sock(sk);
2150                 goto exit;
2151         }
2152         peer_port = tsk_peer_port(tsk);
2153         peer_node = tsk_peer_node(tsk);
2154
2155         if (tsk->probing_state == TIPC_CONN_PROBING) {
2156                 if (!sock_owned_by_user(sk)) {
2157                         sk->sk_socket->state = SS_DISCONNECTING;
2158                         tsk->connected = 0;
2159                         tipc_node_remove_conn(sock_net(sk), tsk_peer_node(tsk),
2160                                               tsk_peer_port(tsk));
2161                         sk->sk_state_change(sk);
2162                 } else {
2163                         /* Try again later */
2164                         sk_reset_timer(sk, &sk->sk_timer, (HZ / 20));
2165                 }
2166
2167         } else {
2168                 skb = tipc_msg_create(CONN_MANAGER, CONN_PROBE,
2169                                       INT_H_SIZE, 0, peer_node, own_node,
2170                                       peer_port, tsk->portid, TIPC_OK);
2171                 tsk->probing_state = TIPC_CONN_PROBING;
2172                 sk_reset_timer(sk, &sk->sk_timer, jiffies + tsk->probing_intv);
2173         }
2174         bh_unlock_sock(sk);
2175         if (skb)
2176                 tipc_node_xmit_skb(sock_net(sk), skb, peer_node, tsk->portid);
2177 exit:
2178         sock_put(sk);
2179 }
2180
2181 static int tipc_sk_publish(struct tipc_sock *tsk, uint scope,
2182                            struct tipc_name_seq const *seq)
2183 {
2184         struct net *net = sock_net(&tsk->sk);
2185         struct publication *publ;
2186         u32 key;
2187
2188         if (tsk->connected)
2189                 return -EINVAL;
2190         key = tsk->portid + tsk->pub_count + 1;
2191         if (key == tsk->portid)
2192                 return -EADDRINUSE;
2193
2194         publ = tipc_nametbl_publish(net, seq->type, seq->lower, seq->upper,
2195                                     scope, tsk->portid, key);
2196         if (unlikely(!publ))
2197                 return -EINVAL;
2198
2199         list_add(&publ->pport_list, &tsk->publications);
2200         tsk->pub_count++;
2201         tsk->published = 1;
2202         return 0;
2203 }
2204
2205 static int tipc_sk_withdraw(struct tipc_sock *tsk, uint scope,
2206                             struct tipc_name_seq const *seq)
2207 {
2208         struct net *net = sock_net(&tsk->sk);
2209         struct publication *publ;
2210         struct publication *safe;
2211         int rc = -EINVAL;
2212
2213         list_for_each_entry_safe(publ, safe, &tsk->publications, pport_list) {
2214                 if (seq) {
2215                         if (publ->scope != scope)
2216                                 continue;
2217                         if (publ->type != seq->type)
2218                                 continue;
2219                         if (publ->lower != seq->lower)
2220                                 continue;
2221                         if (publ->upper != seq->upper)
2222                                 break;
2223                         tipc_nametbl_withdraw(net, publ->type, publ->lower,
2224                                               publ->ref, publ->key);
2225                         rc = 0;
2226                         break;
2227                 }
2228                 tipc_nametbl_withdraw(net, publ->type, publ->lower,
2229                                       publ->ref, publ->key);
2230                 rc = 0;
2231         }
2232         if (list_empty(&tsk->publications))
2233                 tsk->published = 0;
2234         return rc;
2235 }
2236
2237 /* tipc_sk_reinit: set non-zero address in all existing sockets
2238  *                 when we go from standalone to network mode.
2239  */
2240 void tipc_sk_reinit(struct net *net)
2241 {
2242         struct tipc_net *tn = net_generic(net, tipc_net_id);
2243         const struct bucket_table *tbl;
2244         struct rhash_head *pos;
2245         struct tipc_sock *tsk;
2246         struct tipc_msg *msg;
2247         int i;
2248
2249         rcu_read_lock();
2250         tbl = rht_dereference_rcu((&tn->sk_rht)->tbl, &tn->sk_rht);
2251         for (i = 0; i < tbl->size; i++) {
2252                 rht_for_each_entry_rcu(tsk, pos, tbl, i, node) {
2253                         spin_lock_bh(&tsk->sk.sk_lock.slock);
2254                         msg = &tsk->phdr;
2255                         msg_set_prevnode(msg, tn->own_addr);
2256                         msg_set_orignode(msg, tn->own_addr);
2257                         spin_unlock_bh(&tsk->sk.sk_lock.slock);
2258                 }
2259         }
2260         rcu_read_unlock();
2261 }
2262
2263 static struct tipc_sock *tipc_sk_lookup(struct net *net, u32 portid)
2264 {
2265         struct tipc_net *tn = net_generic(net, tipc_net_id);
2266         struct tipc_sock *tsk;
2267
2268         rcu_read_lock();
2269         tsk = rhashtable_lookup_fast(&tn->sk_rht, &portid, tsk_rht_params);
2270         if (tsk)
2271                 sock_hold(&tsk->sk);
2272         rcu_read_unlock();
2273
2274         return tsk;
2275 }
2276
2277 static int tipc_sk_insert(struct tipc_sock *tsk)
2278 {
2279         struct sock *sk = &tsk->sk;
2280         struct net *net = sock_net(sk);
2281         struct tipc_net *tn = net_generic(net, tipc_net_id);
2282         u32 remaining = (TIPC_MAX_PORT - TIPC_MIN_PORT) + 1;
2283         u32 portid = prandom_u32() % remaining + TIPC_MIN_PORT;
2284
2285         while (remaining--) {
2286                 portid++;
2287                 if ((portid < TIPC_MIN_PORT) || (portid > TIPC_MAX_PORT))
2288                         portid = TIPC_MIN_PORT;
2289                 tsk->portid = portid;
2290                 sock_hold(&tsk->sk);
2291                 if (!rhashtable_lookup_insert_fast(&tn->sk_rht, &tsk->node,
2292                                                    tsk_rht_params))
2293                         return 0;
2294                 sock_put(&tsk->sk);
2295         }
2296
2297         return -1;
2298 }
2299
2300 static void tipc_sk_remove(struct tipc_sock *tsk)
2301 {
2302         struct sock *sk = &tsk->sk;
2303         struct tipc_net *tn = net_generic(sock_net(sk), tipc_net_id);
2304
2305         if (!rhashtable_remove_fast(&tn->sk_rht, &tsk->node, tsk_rht_params)) {
2306                 WARN_ON(atomic_read(&sk->sk_refcnt) == 1);
2307                 __sock_put(sk);
2308         }
2309 }
2310
2311 static const struct rhashtable_params tsk_rht_params = {
2312         .nelem_hint = 192,
2313         .head_offset = offsetof(struct tipc_sock, node),
2314         .key_offset = offsetof(struct tipc_sock, portid),
2315         .key_len = sizeof(u32), /* portid */
2316         .max_size = 1048576,
2317         .min_size = 256,
2318         .automatic_shrinking = true,
2319 };
2320
2321 int tipc_sk_rht_init(struct net *net)
2322 {
2323         struct tipc_net *tn = net_generic(net, tipc_net_id);
2324
2325         return rhashtable_init(&tn->sk_rht, &tsk_rht_params);
2326 }
2327
2328 void tipc_sk_rht_destroy(struct net *net)
2329 {
2330         struct tipc_net *tn = net_generic(net, tipc_net_id);
2331
2332         /* Wait for socket readers to complete */
2333         synchronize_net();
2334
2335         rhashtable_destroy(&tn->sk_rht);
2336 }
2337
2338 /**
2339  * tipc_setsockopt - set socket option
2340  * @sock: socket structure
2341  * @lvl: option level
2342  * @opt: option identifier
2343  * @ov: pointer to new option value
2344  * @ol: length of option value
2345  *
2346  * For stream sockets only, accepts and ignores all IPPROTO_TCP options
2347  * (to ease compatibility).
2348  *
2349  * Returns 0 on success, errno otherwise
2350  */
2351 static int tipc_setsockopt(struct socket *sock, int lvl, int opt,
2352                            char __user *ov, unsigned int ol)
2353 {
2354         struct sock *sk = sock->sk;
2355         struct tipc_sock *tsk = tipc_sk(sk);
2356         u32 value;
2357         int res;
2358
2359         if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
2360                 return 0;
2361         if (lvl != SOL_TIPC)
2362                 return -ENOPROTOOPT;
2363         if (ol < sizeof(value))
2364                 return -EINVAL;
2365         res = get_user(value, (u32 __user *)ov);
2366         if (res)
2367                 return res;
2368
2369         lock_sock(sk);
2370
2371         switch (opt) {
2372         case TIPC_IMPORTANCE:
2373                 res = tsk_set_importance(tsk, value);
2374                 break;
2375         case TIPC_SRC_DROPPABLE:
2376                 if (sock->type != SOCK_STREAM)
2377                         tsk_set_unreliable(tsk, value);
2378                 else
2379                         res = -ENOPROTOOPT;
2380                 break;
2381         case TIPC_DEST_DROPPABLE:
2382                 tsk_set_unreturnable(tsk, value);
2383                 break;
2384         case TIPC_CONN_TIMEOUT:
2385                 tipc_sk(sk)->conn_timeout = value;
2386                 /* no need to set "res", since already 0 at this point */
2387                 break;
2388         default:
2389                 res = -EINVAL;
2390         }
2391
2392         release_sock(sk);
2393
2394         return res;
2395 }
2396
2397 /**
2398  * tipc_getsockopt - get socket option
2399  * @sock: socket structure
2400  * @lvl: option level
2401  * @opt: option identifier
2402  * @ov: receptacle for option value
2403  * @ol: receptacle for length of option value
2404  *
2405  * For stream sockets only, returns 0 length result for all IPPROTO_TCP options
2406  * (to ease compatibility).
2407  *
2408  * Returns 0 on success, errno otherwise
2409  */
2410 static int tipc_getsockopt(struct socket *sock, int lvl, int opt,
2411                            char __user *ov, int __user *ol)
2412 {
2413         struct sock *sk = sock->sk;
2414         struct tipc_sock *tsk = tipc_sk(sk);
2415         int len;
2416         u32 value;
2417         int res;
2418
2419         if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
2420                 return put_user(0, ol);
2421         if (lvl != SOL_TIPC)
2422                 return -ENOPROTOOPT;
2423         res = get_user(len, ol);
2424         if (res)
2425                 return res;
2426
2427         lock_sock(sk);
2428
2429         switch (opt) {
2430         case TIPC_IMPORTANCE:
2431                 value = tsk_importance(tsk);
2432                 break;
2433         case TIPC_SRC_DROPPABLE:
2434                 value = tsk_unreliable(tsk);
2435                 break;
2436         case TIPC_DEST_DROPPABLE:
2437                 value = tsk_unreturnable(tsk);
2438                 break;
2439         case TIPC_CONN_TIMEOUT:
2440                 value = tsk->conn_timeout;
2441                 /* no need to set "res", since already 0 at this point */
2442                 break;
2443         case TIPC_NODE_RECVQ_DEPTH:
2444                 value = 0; /* was tipc_queue_size, now obsolete */
2445                 break;
2446         case TIPC_SOCK_RECVQ_DEPTH:
2447                 value = skb_queue_len(&sk->sk_receive_queue);
2448                 break;
2449         default:
2450                 res = -EINVAL;
2451         }
2452
2453         release_sock(sk);
2454
2455         if (res)
2456                 return res;     /* "get" failed */
2457
2458         if (len < sizeof(value))
2459                 return -EINVAL;
2460
2461         if (copy_to_user(ov, &value, sizeof(value)))
2462                 return -EFAULT;
2463
2464         return put_user(sizeof(value), ol);
2465 }
2466
2467 static int tipc_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
2468 {
2469         struct sock *sk = sock->sk;
2470         struct tipc_sioc_ln_req lnr;
2471         void __user *argp = (void __user *)arg;
2472
2473         switch (cmd) {
2474         case SIOCGETLINKNAME:
2475                 if (copy_from_user(&lnr, argp, sizeof(lnr)))
2476                         return -EFAULT;
2477                 if (!tipc_node_get_linkname(sock_net(sk),
2478                                             lnr.bearer_id & 0xffff, lnr.peer,
2479                                             lnr.linkname, TIPC_MAX_LINK_NAME)) {
2480                         if (copy_to_user(argp, &lnr, sizeof(lnr)))
2481                                 return -EFAULT;
2482                         return 0;
2483                 }
2484                 return -EADDRNOTAVAIL;
2485         default:
2486                 return -ENOIOCTLCMD;
2487         }
2488 }
2489
2490 /* Protocol switches for the various types of TIPC sockets */
2491
2492 static const struct proto_ops msg_ops = {
2493         .owner          = THIS_MODULE,
2494         .family         = AF_TIPC,
2495         .release        = tipc_release,
2496         .bind           = tipc_bind,
2497         .connect        = tipc_connect,
2498         .socketpair     = sock_no_socketpair,
2499         .accept         = sock_no_accept,
2500         .getname        = tipc_getname,
2501         .poll           = tipc_poll,
2502         .ioctl          = tipc_ioctl,
2503         .listen         = sock_no_listen,
2504         .shutdown       = tipc_shutdown,
2505         .setsockopt     = tipc_setsockopt,
2506         .getsockopt     = tipc_getsockopt,
2507         .sendmsg        = tipc_sendmsg,
2508         .recvmsg        = tipc_recvmsg,
2509         .mmap           = sock_no_mmap,
2510         .sendpage       = sock_no_sendpage
2511 };
2512
2513 static const struct proto_ops packet_ops = {
2514         .owner          = THIS_MODULE,
2515         .family         = AF_TIPC,
2516         .release        = tipc_release,
2517         .bind           = tipc_bind,
2518         .connect        = tipc_connect,
2519         .socketpair     = sock_no_socketpair,
2520         .accept         = tipc_accept,
2521         .getname        = tipc_getname,
2522         .poll           = tipc_poll,
2523         .ioctl          = tipc_ioctl,
2524         .listen         = tipc_listen,
2525         .shutdown       = tipc_shutdown,
2526         .setsockopt     = tipc_setsockopt,
2527         .getsockopt     = tipc_getsockopt,
2528         .sendmsg        = tipc_send_packet,
2529         .recvmsg        = tipc_recvmsg,
2530         .mmap           = sock_no_mmap,
2531         .sendpage       = sock_no_sendpage
2532 };
2533
2534 static const struct proto_ops stream_ops = {
2535         .owner          = THIS_MODULE,
2536         .family         = AF_TIPC,
2537         .release        = tipc_release,
2538         .bind           = tipc_bind,
2539         .connect        = tipc_connect,
2540         .socketpair     = sock_no_socketpair,
2541         .accept         = tipc_accept,
2542         .getname        = tipc_getname,
2543         .poll           = tipc_poll,
2544         .ioctl          = tipc_ioctl,
2545         .listen         = tipc_listen,
2546         .shutdown       = tipc_shutdown,
2547         .setsockopt     = tipc_setsockopt,
2548         .getsockopt     = tipc_getsockopt,
2549         .sendmsg        = tipc_send_stream,
2550         .recvmsg        = tipc_recv_stream,
2551         .mmap           = sock_no_mmap,
2552         .sendpage       = sock_no_sendpage
2553 };
2554
2555 static const struct net_proto_family tipc_family_ops = {
2556         .owner          = THIS_MODULE,
2557         .family         = AF_TIPC,
2558         .create         = tipc_sk_create
2559 };
2560
2561 static struct proto tipc_proto = {
2562         .name           = "TIPC",
2563         .owner          = THIS_MODULE,
2564         .obj_size       = sizeof(struct tipc_sock),
2565         .sysctl_rmem    = sysctl_tipc_rmem
2566 };
2567
2568 /**
2569  * tipc_socket_init - initialize TIPC socket interface
2570  *
2571  * Returns 0 on success, errno otherwise
2572  */
2573 int tipc_socket_init(void)
2574 {
2575         int res;
2576
2577         res = proto_register(&tipc_proto, 1);
2578         if (res) {
2579                 pr_err("Failed to register TIPC protocol type\n");
2580                 goto out;
2581         }
2582
2583         res = sock_register(&tipc_family_ops);
2584         if (res) {
2585                 pr_err("Failed to register TIPC socket type\n");
2586                 proto_unregister(&tipc_proto);
2587                 goto out;
2588         }
2589  out:
2590         return res;
2591 }
2592
2593 /**
2594  * tipc_socket_stop - stop TIPC socket interface
2595  */
2596 void tipc_socket_stop(void)
2597 {
2598         sock_unregister(tipc_family_ops.family);
2599         proto_unregister(&tipc_proto);
2600 }
2601
2602 /* Caller should hold socket lock for the passed tipc socket. */
2603 static int __tipc_nl_add_sk_con(struct sk_buff *skb, struct tipc_sock *tsk)
2604 {
2605         u32 peer_node;
2606         u32 peer_port;
2607         struct nlattr *nest;
2608
2609         peer_node = tsk_peer_node(tsk);
2610         peer_port = tsk_peer_port(tsk);
2611
2612         nest = nla_nest_start(skb, TIPC_NLA_SOCK_CON);
2613
2614         if (nla_put_u32(skb, TIPC_NLA_CON_NODE, peer_node))
2615                 goto msg_full;
2616         if (nla_put_u32(skb, TIPC_NLA_CON_SOCK, peer_port))
2617                 goto msg_full;
2618
2619         if (tsk->conn_type != 0) {
2620                 if (nla_put_flag(skb, TIPC_NLA_CON_FLAG))
2621                         goto msg_full;
2622                 if (nla_put_u32(skb, TIPC_NLA_CON_TYPE, tsk->conn_type))
2623                         goto msg_full;
2624                 if (nla_put_u32(skb, TIPC_NLA_CON_INST, tsk->conn_instance))
2625                         goto msg_full;
2626         }
2627         nla_nest_end(skb, nest);
2628
2629         return 0;
2630
2631 msg_full:
2632         nla_nest_cancel(skb, nest);
2633
2634         return -EMSGSIZE;
2635 }
2636
2637 /* Caller should hold socket lock for the passed tipc socket. */
2638 static int __tipc_nl_add_sk(struct sk_buff *skb, struct netlink_callback *cb,
2639                             struct tipc_sock *tsk)
2640 {
2641         int err;
2642         void *hdr;
2643         struct nlattr *attrs;
2644         struct net *net = sock_net(skb->sk);
2645         struct tipc_net *tn = net_generic(net, tipc_net_id);
2646
2647         hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
2648                           &tipc_genl_family, NLM_F_MULTI, TIPC_NL_SOCK_GET);
2649         if (!hdr)
2650                 goto msg_cancel;
2651
2652         attrs = nla_nest_start(skb, TIPC_NLA_SOCK);
2653         if (!attrs)
2654                 goto genlmsg_cancel;
2655         if (nla_put_u32(skb, TIPC_NLA_SOCK_REF, tsk->portid))
2656                 goto attr_msg_cancel;
2657         if (nla_put_u32(skb, TIPC_NLA_SOCK_ADDR, tn->own_addr))
2658                 goto attr_msg_cancel;
2659
2660         if (tsk->connected) {
2661                 err = __tipc_nl_add_sk_con(skb, tsk);
2662                 if (err)
2663                         goto attr_msg_cancel;
2664         } else if (!list_empty(&tsk->publications)) {
2665                 if (nla_put_flag(skb, TIPC_NLA_SOCK_HAS_PUBL))
2666                         goto attr_msg_cancel;
2667         }
2668         nla_nest_end(skb, attrs);
2669         genlmsg_end(skb, hdr);
2670
2671         return 0;
2672
2673 attr_msg_cancel:
2674         nla_nest_cancel(skb, attrs);
2675 genlmsg_cancel:
2676         genlmsg_cancel(skb, hdr);
2677 msg_cancel:
2678         return -EMSGSIZE;
2679 }
2680
2681 int tipc_nl_sk_dump(struct sk_buff *skb, struct netlink_callback *cb)
2682 {
2683         int err;
2684         struct tipc_sock *tsk;
2685         const struct bucket_table *tbl;
2686         struct rhash_head *pos;
2687         struct net *net = sock_net(skb->sk);
2688         struct tipc_net *tn = net_generic(net, tipc_net_id);
2689         u32 tbl_id = cb->args[0];
2690         u32 prev_portid = cb->args[1];
2691
2692         rcu_read_lock();
2693         tbl = rht_dereference_rcu((&tn->sk_rht)->tbl, &tn->sk_rht);
2694         for (; tbl_id < tbl->size; tbl_id++) {
2695                 rht_for_each_entry_rcu(tsk, pos, tbl, tbl_id, node) {
2696                         spin_lock_bh(&tsk->sk.sk_lock.slock);
2697                         if (prev_portid && prev_portid != tsk->portid) {
2698                                 spin_unlock_bh(&tsk->sk.sk_lock.slock);
2699                                 continue;
2700                         }
2701
2702                         err = __tipc_nl_add_sk(skb, cb, tsk);
2703                         if (err) {
2704                                 prev_portid = tsk->portid;
2705                                 spin_unlock_bh(&tsk->sk.sk_lock.slock);
2706                                 goto out;
2707                         }
2708                         prev_portid = 0;
2709                         spin_unlock_bh(&tsk->sk.sk_lock.slock);
2710                 }
2711         }
2712 out:
2713         rcu_read_unlock();
2714         cb->args[0] = tbl_id;
2715         cb->args[1] = prev_portid;
2716
2717         return skb->len;
2718 }
2719
2720 /* Caller should hold socket lock for the passed tipc socket. */
2721 static int __tipc_nl_add_sk_publ(struct sk_buff *skb,
2722                                  struct netlink_callback *cb,
2723                                  struct publication *publ)
2724 {
2725         void *hdr;
2726         struct nlattr *attrs;
2727
2728         hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
2729                           &tipc_genl_family, NLM_F_MULTI, TIPC_NL_PUBL_GET);
2730         if (!hdr)
2731                 goto msg_cancel;
2732
2733         attrs = nla_nest_start(skb, TIPC_NLA_PUBL);
2734         if (!attrs)
2735                 goto genlmsg_cancel;
2736
2737         if (nla_put_u32(skb, TIPC_NLA_PUBL_KEY, publ->key))
2738                 goto attr_msg_cancel;
2739         if (nla_put_u32(skb, TIPC_NLA_PUBL_TYPE, publ->type))
2740                 goto attr_msg_cancel;
2741         if (nla_put_u32(skb, TIPC_NLA_PUBL_LOWER, publ->lower))
2742                 goto attr_msg_cancel;
2743         if (nla_put_u32(skb, TIPC_NLA_PUBL_UPPER, publ->upper))
2744                 goto attr_msg_cancel;
2745
2746         nla_nest_end(skb, attrs);
2747         genlmsg_end(skb, hdr);
2748
2749         return 0;
2750
2751 attr_msg_cancel:
2752         nla_nest_cancel(skb, attrs);
2753 genlmsg_cancel:
2754         genlmsg_cancel(skb, hdr);
2755 msg_cancel:
2756         return -EMSGSIZE;
2757 }
2758
2759 /* Caller should hold socket lock for the passed tipc socket. */
2760 static int __tipc_nl_list_sk_publ(struct sk_buff *skb,
2761                                   struct netlink_callback *cb,
2762                                   struct tipc_sock *tsk, u32 *last_publ)
2763 {
2764         int err;
2765         struct publication *p;
2766
2767         if (*last_publ) {
2768                 list_for_each_entry(p, &tsk->publications, pport_list) {
2769                         if (p->key == *last_publ)
2770                                 break;
2771                 }
2772                 if (p->key != *last_publ) {
2773                         /* We never set seq or call nl_dump_check_consistent()
2774                          * this means that setting prev_seq here will cause the
2775                          * consistence check to fail in the netlink callback
2776                          * handler. Resulting in the last NLMSG_DONE message
2777                          * having the NLM_F_DUMP_INTR flag set.
2778                          */
2779                         cb->prev_seq = 1;
2780                         *last_publ = 0;
2781                         return -EPIPE;
2782                 }
2783         } else {
2784                 p = list_first_entry(&tsk->publications, struct publication,
2785                                      pport_list);
2786         }
2787
2788         list_for_each_entry_from(p, &tsk->publications, pport_list) {
2789                 err = __tipc_nl_add_sk_publ(skb, cb, p);
2790                 if (err) {
2791                         *last_publ = p->key;
2792                         return err;
2793                 }
2794         }
2795         *last_publ = 0;
2796
2797         return 0;
2798 }
2799
2800 int tipc_nl_publ_dump(struct sk_buff *skb, struct netlink_callback *cb)
2801 {
2802         int err;
2803         u32 tsk_portid = cb->args[0];
2804         u32 last_publ = cb->args[1];
2805         u32 done = cb->args[2];
2806         struct net *net = sock_net(skb->sk);
2807         struct tipc_sock *tsk;
2808
2809         if (!tsk_portid) {
2810                 struct nlattr **attrs;
2811                 struct nlattr *sock[TIPC_NLA_SOCK_MAX + 1];
2812
2813                 err = tipc_nlmsg_parse(cb->nlh, &attrs);
2814                 if (err)
2815                         return err;
2816
2817                 err = nla_parse_nested(sock, TIPC_NLA_SOCK_MAX,
2818                                        attrs[TIPC_NLA_SOCK],
2819                                        tipc_nl_sock_policy);
2820                 if (err)
2821                         return err;
2822
2823                 if (!sock[TIPC_NLA_SOCK_REF])
2824                         return -EINVAL;
2825
2826                 tsk_portid = nla_get_u32(sock[TIPC_NLA_SOCK_REF]);
2827         }
2828
2829         if (done)
2830                 return 0;
2831
2832         tsk = tipc_sk_lookup(net, tsk_portid);
2833         if (!tsk)
2834                 return -EINVAL;
2835
2836         lock_sock(&tsk->sk);
2837         err = __tipc_nl_list_sk_publ(skb, cb, tsk, &last_publ);
2838         if (!err)
2839                 done = 1;
2840         release_sock(&tsk->sk);
2841         sock_put(&tsk->sk);
2842
2843         cb->args[0] = tsk_portid;
2844         cb->args[1] = last_publ;
2845         cb->args[2] = done;
2846
2847         return skb->len;
2848 }