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