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