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