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