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