]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - net/tipc/socket.c
tipc: align usage of variable names and macros in socket
[mirror_ubuntu-jammy-kernel.git] / net / tipc / socket.c
CommitLineData
b97bf3fd
PL
1/*
2 * net/tipc/socket.c: TIPC socket API
c4307285 3 *
8826cde6 4 * Copyright (c) 2001-2007, 2012-2014, 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
b97bf3fd 37#include "core.h"
d265fef6 38#include "port.h"
b97bf3fd 39
2cf8aa19 40#include <linux/export.h>
2cf8aa19 41
b97bf3fd
PL
42#define SS_LISTENING -1 /* socket is listening */
43#define SS_READY -2 /* socket is connectionless */
44
3654ea02 45#define CONN_TIMEOUT_DEFAULT 8000 /* default connect timeout = 8s */
b97bf3fd 46
0c3141e9 47static int backlog_rcv(struct sock *sk, struct sk_buff *skb);
f288bef4
YX
48static void tipc_data_ready(struct sock *sk, int len);
49static void tipc_write_space(struct sock *sk);
247f0f3c
YX
50static int tipc_release(struct socket *sock);
51static int tipc_accept(struct socket *sock, struct socket *new_sock, int flags);
b97bf3fd 52
bca65eae
FW
53static const struct proto_ops packet_ops;
54static const struct proto_ops stream_ops;
55static const struct proto_ops msg_ops;
b97bf3fd
PL
56
57static struct proto tipc_proto;
c5fa7b3c 58static struct proto tipc_proto_kern;
b97bf3fd 59
c4307285 60/*
0c3141e9
AS
61 * Revised TIPC socket locking policy:
62 *
63 * Most socket operations take the standard socket lock when they start
64 * and hold it until they finish (or until they need to sleep). Acquiring
65 * this lock grants the owner exclusive access to the fields of the socket
66 * data structures, with the exception of the backlog queue. A few socket
67 * operations can be done without taking the socket lock because they only
68 * read socket information that never changes during the life of the socket.
69 *
70 * Socket operations may acquire the lock for the associated TIPC port if they
71 * need to perform an operation on the port. If any routine needs to acquire
72 * both the socket lock and the port lock it must take the socket lock first
73 * to avoid the risk of deadlock.
74 *
75 * The dispatcher handling incoming messages cannot grab the socket lock in
76 * the standard fashion, since invoked it runs at the BH level and cannot block.
77 * Instead, it checks to see if the socket lock is currently owned by someone,
78 * and either handles the message itself or adds it to the socket's backlog
79 * queue; in the latter case the queued message is processed once the process
80 * owning the socket lock releases it.
81 *
82 * NOTE: Releasing the socket lock while an operation is sleeping overcomes
83 * the problem of a blocked socket operation preventing any other operations
84 * from occurring. However, applications must be careful if they have
85 * multiple threads trying to send (or receive) on the same socket, as these
86 * operations might interfere with each other. For example, doing a connect
87 * and a receive at the same time might allow the receive to consume the
88 * ACK message meant for the connect. While additional work could be done
89 * to try and overcome this, it doesn't seem to be worthwhile at the present.
90 *
91 * NOTE: Releasing the socket lock while an operation is sleeping also ensures
92 * that another operation that must be performed in a non-blocking manner is
93 * not delayed for very long because the lock has already been taken.
94 *
95 * NOTE: This code assumes that certain fields of a port/socket pair are
96 * constant over its lifetime; such fields can be examined without taking
97 * the socket lock and/or port lock, and do not need to be re-read even
98 * after resuming processing after waiting. These fields include:
99 * - socket type
100 * - pointer to socket sk structure (aka tipc_sock structure)
101 * - pointer to port structure
102 * - port reference
103 */
104
8826cde6
JPM
105#include "socket.h"
106
0c3141e9
AS
107/**
108 * advance_rx_queue - discard first buffer in socket receive queue
109 *
110 * Caller must hold socket lock
b97bf3fd 111 */
0c3141e9 112static void advance_rx_queue(struct sock *sk)
b97bf3fd 113{
5f6d9123 114 kfree_skb(__skb_dequeue(&sk->sk_receive_queue));
b97bf3fd
PL
115}
116
b97bf3fd 117/**
0c3141e9
AS
118 * reject_rx_queue - reject all buffers in socket receive queue
119 *
120 * Caller must hold socket lock
b97bf3fd 121 */
0c3141e9 122static void reject_rx_queue(struct sock *sk)
b97bf3fd 123{
0c3141e9
AS
124 struct sk_buff *buf;
125
9da3d475 126 while ((buf = __skb_dequeue(&sk->sk_receive_queue)))
0c3141e9 127 tipc_reject_msg(buf, TIPC_ERR_NO_PORT);
b97bf3fd
PL
128}
129
130/**
c5fa7b3c 131 * tipc_sk_create - create a TIPC socket
0c3141e9 132 * @net: network namespace (must be default network)
b97bf3fd
PL
133 * @sock: pre-allocated socket structure
134 * @protocol: protocol indicator (must be 0)
3f378b68 135 * @kern: caused by kernel or by userspace?
c4307285 136 *
0c3141e9
AS
137 * This routine creates additional data structures used by the TIPC socket,
138 * initializes them, and links them together.
b97bf3fd
PL
139 *
140 * Returns 0 on success, errno otherwise
141 */
58ed9442
JPM
142static int tipc_sk_create(struct net *net, struct socket *sock,
143 int protocol, int kern)
b97bf3fd 144{
0c3141e9
AS
145 const struct proto_ops *ops;
146 socket_state state;
b97bf3fd 147 struct sock *sk;
58ed9442
JPM
148 struct tipc_sock *tsk;
149 struct tipc_port *port;
150 u32 ref;
0c3141e9
AS
151
152 /* Validate arguments */
b97bf3fd
PL
153 if (unlikely(protocol != 0))
154 return -EPROTONOSUPPORT;
155
b97bf3fd
PL
156 switch (sock->type) {
157 case SOCK_STREAM:
0c3141e9
AS
158 ops = &stream_ops;
159 state = SS_UNCONNECTED;
b97bf3fd
PL
160 break;
161 case SOCK_SEQPACKET:
0c3141e9
AS
162 ops = &packet_ops;
163 state = SS_UNCONNECTED;
b97bf3fd
PL
164 break;
165 case SOCK_DGRAM:
b97bf3fd 166 case SOCK_RDM:
0c3141e9
AS
167 ops = &msg_ops;
168 state = SS_READY;
b97bf3fd 169 break;
49978651 170 default:
49978651 171 return -EPROTOTYPE;
b97bf3fd
PL
172 }
173
0c3141e9 174 /* Allocate socket's protocol area */
c5fa7b3c
YX
175 if (!kern)
176 sk = sk_alloc(net, AF_TIPC, GFP_KERNEL, &tipc_proto);
177 else
178 sk = sk_alloc(net, AF_TIPC, GFP_KERNEL, &tipc_proto_kern);
179
0c3141e9 180 if (sk == NULL)
b97bf3fd 181 return -ENOMEM;
b97bf3fd 182
58ed9442
JPM
183 tsk = tipc_sk(sk);
184 port = &tsk->port;
185
186 ref = tipc_port_init(port, TIPC_LOW_IMPORTANCE);
187 if (!ref) {
188 pr_warn("Socket registration failed, ref. table exhausted\n");
0c3141e9
AS
189 sk_free(sk);
190 return -ENOMEM;
191 }
b97bf3fd 192
0c3141e9 193 /* Finish initializing socket data structures */
0c3141e9
AS
194 sock->ops = ops;
195 sock->state = state;
b97bf3fd 196
0c3141e9 197 sock_init_data(sock, sk);
0c3141e9 198 sk->sk_backlog_rcv = backlog_rcv;
cc79dd1b 199 sk->sk_rcvbuf = sysctl_tipc_rmem[1];
f288bef4
YX
200 sk->sk_data_ready = tipc_data_ready;
201 sk->sk_write_space = tipc_write_space;
a0f40f02 202 tipc_sk(sk)->conn_timeout = CONN_TIMEOUT_DEFAULT;
58ed9442 203 tipc_port_unlock(port);
7ef43eba 204
0c3141e9 205 if (sock->state == SS_READY) {
58ed9442 206 tipc_port_set_unreturnable(port, true);
0c3141e9 207 if (sock->type == SOCK_DGRAM)
58ed9442 208 tipc_port_set_unreliable(port, true);
0c3141e9 209 }
b97bf3fd
PL
210 return 0;
211}
212
c5fa7b3c
YX
213/**
214 * tipc_sock_create_local - create TIPC socket from inside TIPC module
215 * @type: socket type - SOCK_RDM or SOCK_SEQPACKET
216 *
217 * We cannot use sock_creat_kern here because it bumps module user count.
218 * Since socket owner and creator is the same module we must make sure
219 * that module count remains zero for module local sockets, otherwise
220 * we cannot do rmmod.
221 *
222 * Returns 0 on success, errno otherwise
223 */
224int tipc_sock_create_local(int type, struct socket **res)
225{
226 int rc;
c5fa7b3c
YX
227
228 rc = sock_create_lite(AF_TIPC, type, 0, res);
229 if (rc < 0) {
230 pr_err("Failed to create kernel socket\n");
231 return rc;
232 }
233 tipc_sk_create(&init_net, *res, 0, 1);
234
c5fa7b3c
YX
235 return 0;
236}
237
238/**
239 * tipc_sock_release_local - release socket created by tipc_sock_create_local
240 * @sock: the socket to be released.
241 *
242 * Module reference count is not incremented when such sockets are created,
243 * so we must keep it from being decremented when they are released.
244 */
245void tipc_sock_release_local(struct socket *sock)
246{
247f0f3c 247 tipc_release(sock);
c5fa7b3c
YX
248 sock->ops = NULL;
249 sock_release(sock);
250}
251
252/**
253 * tipc_sock_accept_local - accept a connection on a socket created
254 * with tipc_sock_create_local. Use this function to avoid that
255 * module reference count is inadvertently incremented.
256 *
257 * @sock: the accepting socket
258 * @newsock: reference to the new socket to be created
259 * @flags: socket flags
260 */
261
262int tipc_sock_accept_local(struct socket *sock, struct socket **newsock,
ae8509c4 263 int flags)
c5fa7b3c
YX
264{
265 struct sock *sk = sock->sk;
266 int ret;
267
268 ret = sock_create_lite(sk->sk_family, sk->sk_type,
269 sk->sk_protocol, newsock);
270 if (ret < 0)
271 return ret;
272
247f0f3c 273 ret = tipc_accept(sock, *newsock, flags);
c5fa7b3c
YX
274 if (ret < 0) {
275 sock_release(*newsock);
276 return ret;
277 }
278 (*newsock)->ops = sock->ops;
279 return ret;
280}
281
b97bf3fd 282/**
247f0f3c 283 * tipc_release - destroy a TIPC socket
b97bf3fd
PL
284 * @sock: socket to destroy
285 *
286 * This routine cleans up any messages that are still queued on the socket.
287 * For DGRAM and RDM socket types, all queued messages are rejected.
288 * For SEQPACKET and STREAM socket types, the first message is rejected
289 * and any others are discarded. (If the first message on a STREAM socket
290 * is partially-read, it is discarded and the next one is rejected instead.)
c4307285 291 *
b97bf3fd
PL
292 * NOTE: Rejected messages are not necessarily returned to the sender! They
293 * are returned or discarded according to the "destination droppable" setting
294 * specified for the message by the sender.
295 *
296 * Returns 0 on success, errno otherwise
297 */
247f0f3c 298static int tipc_release(struct socket *sock)
b97bf3fd 299{
b97bf3fd 300 struct sock *sk = sock->sk;
58ed9442
JPM
301 struct tipc_sock *tsk;
302 struct tipc_port *port;
b97bf3fd 303 struct sk_buff *buf;
0c3141e9 304 int res;
b97bf3fd 305
0c3141e9
AS
306 /*
307 * Exit if socket isn't fully initialized (occurs when a failed accept()
308 * releases a pre-allocated child socket that was never used)
309 */
0c3141e9 310 if (sk == NULL)
b97bf3fd 311 return 0;
c4307285 312
58ed9442
JPM
313 tsk = tipc_sk(sk);
314 port = &tsk->port;
0c3141e9
AS
315 lock_sock(sk);
316
317 /*
318 * Reject all unreceived messages, except on an active connection
319 * (which disconnects locally & sends a 'FIN+' to peer)
320 */
b97bf3fd 321 while (sock->state != SS_DISCONNECTING) {
0c3141e9
AS
322 buf = __skb_dequeue(&sk->sk_receive_queue);
323 if (buf == NULL)
b97bf3fd 324 break;
40682432 325 if (TIPC_SKB_CB(buf)->handle != NULL)
5f6d9123 326 kfree_skb(buf);
0c3141e9
AS
327 else {
328 if ((sock->state == SS_CONNECTING) ||
329 (sock->state == SS_CONNECTED)) {
330 sock->state = SS_DISCONNECTING;
58ed9442 331 tipc_port_disconnect(port->ref);
0c3141e9 332 }
b97bf3fd 333 tipc_reject_msg(buf, TIPC_ERR_NO_PORT);
0c3141e9 334 }
b97bf3fd
PL
335 }
336
58ed9442
JPM
337 /* Destroy TIPC port; also disconnects an active connection and
338 * sends a 'FIN-' to peer.
0c3141e9 339 */
58ed9442 340 tipc_port_destroy(port);
b97bf3fd 341
0c3141e9 342 /* Discard any remaining (connection-based) messages in receive queue */
57467e56 343 __skb_queue_purge(&sk->sk_receive_queue);
b97bf3fd 344
0c3141e9 345 /* Reject any messages that accumulated in backlog queue */
0c3141e9
AS
346 sock->state = SS_DISCONNECTING;
347 release_sock(sk);
b97bf3fd
PL
348
349 sock_put(sk);
0c3141e9 350 sock->sk = NULL;
b97bf3fd 351
b97bf3fd
PL
352 return res;
353}
354
355/**
247f0f3c 356 * tipc_bind - associate or disassocate TIPC name(s) with a socket
b97bf3fd
PL
357 * @sock: socket structure
358 * @uaddr: socket address describing name(s) and desired operation
359 * @uaddr_len: size of socket address data structure
c4307285 360 *
b97bf3fd
PL
361 * Name and name sequence binding is indicated using a positive scope value;
362 * a negative scope value unbinds the specified name. Specifying no name
363 * (i.e. a socket address length of 0) unbinds all names from the socket.
c4307285 364 *
b97bf3fd 365 * Returns 0 on success, errno otherwise
0c3141e9
AS
366 *
367 * NOTE: This routine doesn't need to take the socket lock since it doesn't
368 * access any non-constant socket information.
b97bf3fd 369 */
247f0f3c
YX
370static int tipc_bind(struct socket *sock, struct sockaddr *uaddr,
371 int uaddr_len)
b97bf3fd 372{
84602761 373 struct sock *sk = sock->sk;
b97bf3fd 374 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
58ed9442 375 struct tipc_sock *tsk = tipc_sk(sk);
84602761 376 int res = -EINVAL;
b97bf3fd 377
84602761
YX
378 lock_sock(sk);
379 if (unlikely(!uaddr_len)) {
58ed9442 380 res = tipc_withdraw(&tsk->port, 0, NULL);
84602761
YX
381 goto exit;
382 }
c4307285 383
84602761
YX
384 if (uaddr_len < sizeof(struct sockaddr_tipc)) {
385 res = -EINVAL;
386 goto exit;
387 }
388 if (addr->family != AF_TIPC) {
389 res = -EAFNOSUPPORT;
390 goto exit;
391 }
b97bf3fd 392
b97bf3fd
PL
393 if (addr->addrtype == TIPC_ADDR_NAME)
394 addr->addr.nameseq.upper = addr->addr.nameseq.lower;
84602761
YX
395 else if (addr->addrtype != TIPC_ADDR_NAMESEQ) {
396 res = -EAFNOSUPPORT;
397 goto exit;
398 }
c4307285 399
13a2e898 400 if ((addr->addr.nameseq.type < TIPC_RESERVED_TYPES) &&
7d0ab17b 401 (addr->addr.nameseq.type != TIPC_TOP_SRV) &&
84602761
YX
402 (addr->addr.nameseq.type != TIPC_CFG_SRV)) {
403 res = -EACCES;
404 goto exit;
405 }
c422f1bd 406
84602761 407 res = (addr->scope > 0) ?
58ed9442
JPM
408 tipc_publish(&tsk->port, addr->scope, &addr->addr.nameseq) :
409 tipc_withdraw(&tsk->port, -addr->scope, &addr->addr.nameseq);
84602761
YX
410exit:
411 release_sock(sk);
412 return res;
b97bf3fd
PL
413}
414
c4307285 415/**
247f0f3c 416 * tipc_getname - get port ID of socket or peer socket
b97bf3fd
PL
417 * @sock: socket structure
418 * @uaddr: area for returned socket address
419 * @uaddr_len: area for returned length of socket address
2da59918 420 * @peer: 0 = own ID, 1 = current peer ID, 2 = current/former peer ID
c4307285 421 *
b97bf3fd 422 * Returns 0 on success, errno otherwise
0c3141e9 423 *
2da59918
AS
424 * NOTE: This routine doesn't need to take the socket lock since it only
425 * accesses socket information that is unchanging (or which changes in
0e65967e 426 * a completely predictable manner).
b97bf3fd 427 */
247f0f3c
YX
428static int tipc_getname(struct socket *sock, struct sockaddr *uaddr,
429 int *uaddr_len, int peer)
b97bf3fd 430{
b97bf3fd 431 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
58ed9442 432 struct tipc_sock *tsk = tipc_sk(sock->sk);
b97bf3fd 433
88f8a5e3 434 memset(addr, 0, sizeof(*addr));
0c3141e9 435 if (peer) {
2da59918
AS
436 if ((sock->state != SS_CONNECTED) &&
437 ((peer != 2) || (sock->state != SS_DISCONNECTING)))
438 return -ENOTCONN;
58ed9442
JPM
439 addr->addr.id.ref = tipc_port_peerport(&tsk->port);
440 addr->addr.id.node = tipc_port_peernode(&tsk->port);
0c3141e9 441 } else {
58ed9442 442 addr->addr.id.ref = tsk->port.ref;
b924dcf0 443 addr->addr.id.node = tipc_own_addr;
0c3141e9 444 }
b97bf3fd
PL
445
446 *uaddr_len = sizeof(*addr);
447 addr->addrtype = TIPC_ADDR_ID;
448 addr->family = AF_TIPC;
449 addr->scope = 0;
b97bf3fd
PL
450 addr->addr.name.domain = 0;
451
0c3141e9 452 return 0;
b97bf3fd
PL
453}
454
455/**
247f0f3c 456 * tipc_poll - read and possibly block on pollmask
b97bf3fd
PL
457 * @file: file structure associated with the socket
458 * @sock: socket for which to calculate the poll bits
459 * @wait: ???
460 *
9b674e82
AS
461 * Returns pollmask value
462 *
463 * COMMENTARY:
464 * It appears that the usual socket locking mechanisms are not useful here
465 * since the pollmask info is potentially out-of-date the moment this routine
466 * exits. TCP and other protocols seem to rely on higher level poll routines
467 * to handle any preventable race conditions, so TIPC will do the same ...
468 *
469 * TIPC sets the returned events as follows:
f662c070
AS
470 *
471 * socket state flags set
472 * ------------ ---------
473 * unconnected no read flags
c4fc298a 474 * POLLOUT if port is not congested
f662c070
AS
475 *
476 * connecting POLLIN/POLLRDNORM if ACK/NACK in rx queue
477 * no write flags
478 *
479 * connected POLLIN/POLLRDNORM if data in rx queue
480 * POLLOUT if port is not congested
481 *
482 * disconnecting POLLIN/POLLRDNORM/POLLHUP
483 * no write flags
484 *
485 * listening POLLIN if SYN in rx queue
486 * no write flags
487 *
488 * ready POLLIN/POLLRDNORM if data in rx queue
489 * [connectionless] POLLOUT (since port cannot be congested)
490 *
491 * IMPORTANT: The fact that a read or write operation is indicated does NOT
492 * imply that the operation will succeed, merely that it should be performed
493 * and will not block.
b97bf3fd 494 */
247f0f3c
YX
495static unsigned int tipc_poll(struct file *file, struct socket *sock,
496 poll_table *wait)
b97bf3fd 497{
9b674e82 498 struct sock *sk = sock->sk;
58ed9442 499 struct tipc_sock *tsk = tipc_sk(sk);
f662c070 500 u32 mask = 0;
9b674e82 501
f288bef4 502 sock_poll_wait(file, sk_sleep(sk), wait);
9b674e82 503
f662c070 504 switch ((int)sock->state) {
c4fc298a 505 case SS_UNCONNECTED:
58ed9442 506 if (!tsk->port.congested)
c4fc298a
EH
507 mask |= POLLOUT;
508 break;
f662c070
AS
509 case SS_READY:
510 case SS_CONNECTED:
58ed9442 511 if (!tsk->port.congested)
f662c070
AS
512 mask |= POLLOUT;
513 /* fall thru' */
514 case SS_CONNECTING:
515 case SS_LISTENING:
516 if (!skb_queue_empty(&sk->sk_receive_queue))
517 mask |= (POLLIN | POLLRDNORM);
518 break;
519 case SS_DISCONNECTING:
520 mask = (POLLIN | POLLRDNORM | POLLHUP);
521 break;
522 }
9b674e82
AS
523
524 return mask;
b97bf3fd
PL
525}
526
c4307285 527/**
b97bf3fd
PL
528 * dest_name_check - verify user is permitted to send to specified port name
529 * @dest: destination address
530 * @m: descriptor for message to be sent
c4307285 531 *
b97bf3fd
PL
532 * Prevents restricted configuration commands from being issued by
533 * unauthorized users.
c4307285 534 *
b97bf3fd
PL
535 * Returns 0 if permission is granted, otherwise errno
536 */
05790c64 537static int dest_name_check(struct sockaddr_tipc *dest, struct msghdr *m)
b97bf3fd
PL
538{
539 struct tipc_cfg_msg_hdr hdr;
540
c4307285
YH
541 if (likely(dest->addr.name.name.type >= TIPC_RESERVED_TYPES))
542 return 0;
543 if (likely(dest->addr.name.name.type == TIPC_TOP_SRV))
544 return 0;
c4307285
YH
545 if (likely(dest->addr.name.name.type != TIPC_CFG_SRV))
546 return -EACCES;
b97bf3fd 547
3f8dd944
AS
548 if (!m->msg_iovlen || (m->msg_iov[0].iov_len < sizeof(hdr)))
549 return -EMSGSIZE;
c4307285 550 if (copy_from_user(&hdr, m->msg_iov[0].iov_base, sizeof(hdr)))
b97bf3fd 551 return -EFAULT;
70cb2347 552 if ((ntohs(hdr.tcm_type) & 0xC000) && (!capable(CAP_NET_ADMIN)))
b97bf3fd 553 return -EACCES;
c4307285 554
b97bf3fd
PL
555 return 0;
556}
557
3f40504f
YX
558static int tipc_wait_for_sndmsg(struct socket *sock, long *timeo_p)
559{
560 struct sock *sk = sock->sk;
58ed9442 561 struct tipc_sock *tsk = tipc_sk(sk);
3f40504f
YX
562 DEFINE_WAIT(wait);
563 int done;
564
565 do {
566 int err = sock_error(sk);
567 if (err)
568 return err;
569 if (sock->state == SS_DISCONNECTING)
570 return -EPIPE;
571 if (!*timeo_p)
572 return -EAGAIN;
573 if (signal_pending(current))
574 return sock_intr_errno(*timeo_p);
575
576 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
58ed9442 577 done = sk_wait_event(sk, timeo_p, !tsk->port.congested);
3f40504f
YX
578 finish_wait(sk_sleep(sk), &wait);
579 } while (!done);
580 return 0;
581}
582
58ed9442 583
b97bf3fd 584/**
247f0f3c 585 * tipc_sendmsg - send message in connectionless manner
0c3141e9 586 * @iocb: if NULL, indicates that socket lock is already held
b97bf3fd
PL
587 * @sock: socket structure
588 * @m: message to send
e9024f0f 589 * @total_len: length of message
c4307285 590 *
b97bf3fd 591 * Message must have an destination specified explicitly.
c4307285 592 * Used for SOCK_RDM and SOCK_DGRAM messages,
b97bf3fd
PL
593 * and for 'SYN' messages on SOCK_SEQPACKET and SOCK_STREAM connections.
594 * (Note: 'SYN+' is prohibited on SOCK_STREAM.)
c4307285 595 *
b97bf3fd
PL
596 * Returns the number of bytes sent on success, or errno otherwise
597 */
247f0f3c
YX
598static int tipc_sendmsg(struct kiocb *iocb, struct socket *sock,
599 struct msghdr *m, size_t total_len)
b97bf3fd 600{
0c3141e9 601 struct sock *sk = sock->sk;
58ed9442 602 struct tipc_sock *tsk = tipc_sk(sk);
342dfc30 603 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
b97bf3fd 604 int needs_conn;
3f40504f 605 long timeo;
58ed9442 606 u32 ref = tsk->port.ref;
b97bf3fd
PL
607 int res = -EINVAL;
608
609 if (unlikely(!dest))
610 return -EDESTADDRREQ;
51f9cc1f
AS
611 if (unlikely((m->msg_namelen < sizeof(*dest)) ||
612 (dest->family != AF_TIPC)))
b97bf3fd 613 return -EINVAL;
97f8b87e 614 if (total_len > TIPC_MAX_USER_MSG_SIZE)
c29c3f70 615 return -EMSGSIZE;
b97bf3fd 616
0c3141e9
AS
617 if (iocb)
618 lock_sock(sk);
619
b97bf3fd
PL
620 needs_conn = (sock->state != SS_READY);
621 if (unlikely(needs_conn)) {
0c3141e9
AS
622 if (sock->state == SS_LISTENING) {
623 res = -EPIPE;
624 goto exit;
625 }
626 if (sock->state != SS_UNCONNECTED) {
627 res = -EISCONN;
628 goto exit;
629 }
58ed9442 630 if (tsk->port.published) {
0c3141e9
AS
631 res = -EOPNOTSUPP;
632 goto exit;
633 }
3388007b 634 if (dest->addrtype == TIPC_ADDR_NAME) {
58ed9442
JPM
635 tsk->port.conn_type = dest->addr.name.name.type;
636 tsk->port.conn_instance = dest->addr.name.name.instance;
3388007b 637 }
b97bf3fd
PL
638
639 /* Abort any pending connection attempts (very unlikely) */
0c3141e9 640 reject_rx_queue(sk);
b97bf3fd
PL
641 }
642
3f40504f 643 timeo = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT);
c4307285
YH
644 do {
645 if (dest->addrtype == TIPC_ADDR_NAME) {
2db9983a
AS
646 res = dest_name_check(dest, m);
647 if (res)
0c3141e9 648 break;
58ed9442 649 res = tipc_send2name(ref,
c4307285
YH
650 &dest->addr.name.name,
651 dest->addr.name.domain,
26896904
AS
652 m->msg_iov,
653 total_len);
0e65967e 654 } else if (dest->addrtype == TIPC_ADDR_ID) {
58ed9442 655 res = tipc_send2port(ref,
c4307285 656 &dest->addr.id,
26896904
AS
657 m->msg_iov,
658 total_len);
0e65967e 659 } else if (dest->addrtype == TIPC_ADDR_MCAST) {
b97bf3fd
PL
660 if (needs_conn) {
661 res = -EOPNOTSUPP;
0c3141e9 662 break;
b97bf3fd 663 }
2db9983a
AS
664 res = dest_name_check(dest, m);
665 if (res)
0c3141e9 666 break;
58ed9442 667 res = tipc_port_mcast_xmit(ref,
247f0f3c
YX
668 &dest->addr.nameseq,
669 m->msg_iov,
670 total_len);
c4307285
YH
671 }
672 if (likely(res != -ELINKCONG)) {
a016892c 673 if (needs_conn && (res >= 0))
0c3141e9 674 sock->state = SS_CONNECTING;
0c3141e9 675 break;
c4307285 676 }
3f40504f
YX
677 res = tipc_wait_for_sndmsg(sock, &timeo);
678 if (res)
0c3141e9 679 break;
c4307285 680 } while (1);
0c3141e9
AS
681
682exit:
683 if (iocb)
684 release_sock(sk);
685 return res;
b97bf3fd
PL
686}
687
391a6dd1
YX
688static int tipc_wait_for_sndpkt(struct socket *sock, long *timeo_p)
689{
690 struct sock *sk = sock->sk;
58ed9442
JPM
691 struct tipc_sock *tsk = tipc_sk(sk);
692 struct tipc_port *port = &tsk->port;
391a6dd1
YX
693 DEFINE_WAIT(wait);
694 int done;
695
696 do {
697 int err = sock_error(sk);
698 if (err)
699 return err;
700 if (sock->state == SS_DISCONNECTING)
701 return -EPIPE;
702 else if (sock->state != SS_CONNECTED)
703 return -ENOTCONN;
704 if (!*timeo_p)
705 return -EAGAIN;
706 if (signal_pending(current))
707 return sock_intr_errno(*timeo_p);
708
709 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
710 done = sk_wait_event(sk, timeo_p,
58ed9442 711 (!port->congested || !port->connected));
391a6dd1
YX
712 finish_wait(sk_sleep(sk), &wait);
713 } while (!done);
714 return 0;
715}
716
c4307285 717/**
247f0f3c 718 * tipc_send_packet - send a connection-oriented message
0c3141e9 719 * @iocb: if NULL, indicates that socket lock is already held
b97bf3fd
PL
720 * @sock: socket structure
721 * @m: message to send
e9024f0f 722 * @total_len: length of message
c4307285 723 *
b97bf3fd 724 * Used for SOCK_SEQPACKET messages and SOCK_STREAM data.
c4307285 725 *
b97bf3fd
PL
726 * Returns the number of bytes sent on success, or errno otherwise
727 */
247f0f3c
YX
728static int tipc_send_packet(struct kiocb *iocb, struct socket *sock,
729 struct msghdr *m, size_t total_len)
b97bf3fd 730{
0c3141e9 731 struct sock *sk = sock->sk;
58ed9442 732 struct tipc_sock *tsk = tipc_sk(sk);
342dfc30 733 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
391a6dd1
YX
734 int res = -EINVAL;
735 long timeo;
b97bf3fd
PL
736
737 /* Handle implied connection establishment */
b97bf3fd 738 if (unlikely(dest))
247f0f3c 739 return tipc_sendmsg(iocb, sock, m, total_len);
b97bf3fd 740
97f8b87e 741 if (total_len > TIPC_MAX_USER_MSG_SIZE)
c29c3f70
AS
742 return -EMSGSIZE;
743
0c3141e9
AS
744 if (iocb)
745 lock_sock(sk);
b97bf3fd 746
391a6dd1
YX
747 if (unlikely(sock->state != SS_CONNECTED)) {
748 if (sock->state == SS_DISCONNECTING)
749 res = -EPIPE;
750 else
751 res = -ENOTCONN;
752 goto exit;
753 }
1d835874 754
391a6dd1 755 timeo = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT);
c4307285 756 do {
58ed9442 757 res = tipc_send(tsk->port.ref, m->msg_iov, total_len);
a016892c 758 if (likely(res != -ELINKCONG))
0c3141e9 759 break;
391a6dd1
YX
760 res = tipc_wait_for_sndpkt(sock, &timeo);
761 if (res)
0c3141e9 762 break;
c4307285 763 } while (1);
391a6dd1 764exit:
0c3141e9
AS
765 if (iocb)
766 release_sock(sk);
767 return res;
b97bf3fd
PL
768}
769
c4307285 770/**
247f0f3c 771 * tipc_send_stream - send stream-oriented data
b97bf3fd
PL
772 * @iocb: (unused)
773 * @sock: socket structure
774 * @m: data to send
775 * @total_len: total length of data to be sent
c4307285 776 *
b97bf3fd 777 * Used for SOCK_STREAM data.
c4307285
YH
778 *
779 * Returns the number of bytes sent on success (or partial success),
1303e8f1 780 * or errno if no data sent
b97bf3fd 781 */
247f0f3c
YX
782static int tipc_send_stream(struct kiocb *iocb, struct socket *sock,
783 struct msghdr *m, size_t total_len)
b97bf3fd 784{
0c3141e9 785 struct sock *sk = sock->sk;
58ed9442 786 struct tipc_sock *tsk = tipc_sk(sk);
b97bf3fd
PL
787 struct msghdr my_msg;
788 struct iovec my_iov;
789 struct iovec *curr_iov;
790 int curr_iovlen;
791 char __user *curr_start;
05646c91 792 u32 hdr_size;
b97bf3fd
PL
793 int curr_left;
794 int bytes_to_send;
1303e8f1 795 int bytes_sent;
b97bf3fd 796 int res;
c4307285 797
0c3141e9
AS
798 lock_sock(sk);
799
05646c91 800 /* Handle special cases where there is no connection */
c4307285 801 if (unlikely(sock->state != SS_CONNECTED)) {
3b8401fe 802 if (sock->state == SS_UNCONNECTED)
247f0f3c 803 res = tipc_send_packet(NULL, sock, m, total_len);
b0555976 804 else
805 res = sock->state == SS_DISCONNECTING ? -EPIPE : -ENOTCONN;
3b8401fe 806 goto exit;
c4307285 807 }
b97bf3fd 808
0c3141e9
AS
809 if (unlikely(m->msg_name)) {
810 res = -EISCONN;
811 goto exit;
812 }
eb5959c2 813
97f8b87e 814 if (total_len > (unsigned int)INT_MAX) {
c29c3f70
AS
815 res = -EMSGSIZE;
816 goto exit;
817 }
818
c4307285 819 /*
b97bf3fd
PL
820 * Send each iovec entry using one or more messages
821 *
c4307285 822 * Note: This algorithm is good for the most likely case
b97bf3fd
PL
823 * (i.e. one large iovec entry), but could be improved to pass sets
824 * of small iovec entries into send_packet().
825 */
1303e8f1
AS
826 curr_iov = m->msg_iov;
827 curr_iovlen = m->msg_iovlen;
b97bf3fd
PL
828 my_msg.msg_iov = &my_iov;
829 my_msg.msg_iovlen = 1;
eb5959c2
AS
830 my_msg.msg_flags = m->msg_flags;
831 my_msg.msg_name = NULL;
1303e8f1 832 bytes_sent = 0;
b97bf3fd 833
58ed9442 834 hdr_size = msg_hdr_sz(&tsk->port.phdr);
05646c91 835
b97bf3fd
PL
836 while (curr_iovlen--) {
837 curr_start = curr_iov->iov_base;
838 curr_left = curr_iov->iov_len;
839
840 while (curr_left) {
58ed9442 841 bytes_to_send = tsk->port.max_pkt - hdr_size;
05646c91
AS
842 if (bytes_to_send > TIPC_MAX_USER_MSG_SIZE)
843 bytes_to_send = TIPC_MAX_USER_MSG_SIZE;
844 if (curr_left < bytes_to_send)
845 bytes_to_send = curr_left;
b97bf3fd
PL
846 my_iov.iov_base = curr_start;
847 my_iov.iov_len = bytes_to_send;
247f0f3c
YX
848 res = tipc_send_packet(NULL, sock, &my_msg,
849 bytes_to_send);
2db9983a 850 if (res < 0) {
0c3141e9 851 if (bytes_sent)
05646c91 852 res = bytes_sent;
0c3141e9 853 goto exit;
1303e8f1 854 }
b97bf3fd
PL
855 curr_left -= bytes_to_send;
856 curr_start += bytes_to_send;
1303e8f1 857 bytes_sent += bytes_to_send;
b97bf3fd
PL
858 }
859
860 curr_iov++;
861 }
0c3141e9
AS
862 res = bytes_sent;
863exit:
864 release_sock(sk);
865 return res;
b97bf3fd
PL
866}
867
868/**
869 * auto_connect - complete connection setup to a remote port
58ed9442 870 * @tsk: tipc socket structure
b97bf3fd 871 * @msg: peer's response message
c4307285 872 *
b97bf3fd
PL
873 * Returns 0 on success, errno otherwise
874 */
58ed9442 875static int auto_connect(struct tipc_sock *tsk, struct tipc_msg *msg)
b97bf3fd 876{
58ed9442
JPM
877 struct tipc_port *port = &tsk->port;
878 struct socket *sock = tsk->sk.sk_socket;
f9fef18c
JPM
879 struct tipc_portid peer;
880
881 peer.ref = msg_origport(msg);
882 peer.node = msg_orignode(msg);
b97bf3fd 883
58ed9442
JPM
884 port = tipc_port_deref(port->ref);
885 if (!port)
584d24b3
YX
886 return -EINVAL;
887
58ed9442 888 __tipc_port_connect(port->ref, port, &peer);
584d24b3
YX
889
890 if (msg_importance(msg) > TIPC_CRITICAL_IMPORTANCE)
891 return -EINVAL;
58ed9442 892 msg_set_importance(&port->phdr, (u32)msg_importance(msg));
b97bf3fd
PL
893 sock->state = SS_CONNECTED;
894 return 0;
895}
896
897/**
898 * set_orig_addr - capture sender's address for received message
899 * @m: descriptor for message info
900 * @msg: received message header
c4307285 901 *
b97bf3fd
PL
902 * Note: Address is not captured if not requested by receiver.
903 */
05790c64 904static void set_orig_addr(struct msghdr *m, struct tipc_msg *msg)
b97bf3fd 905{
342dfc30 906 DECLARE_SOCKADDR(struct sockaddr_tipc *, addr, m->msg_name);
b97bf3fd 907
c4307285 908 if (addr) {
b97bf3fd
PL
909 addr->family = AF_TIPC;
910 addr->addrtype = TIPC_ADDR_ID;
60085c3d 911 memset(&addr->addr, 0, sizeof(addr->addr));
b97bf3fd
PL
912 addr->addr.id.ref = msg_origport(msg);
913 addr->addr.id.node = msg_orignode(msg);
0e65967e
AS
914 addr->addr.name.domain = 0; /* could leave uninitialized */
915 addr->scope = 0; /* could leave uninitialized */
b97bf3fd
PL
916 m->msg_namelen = sizeof(struct sockaddr_tipc);
917 }
918}
919
920/**
c4307285 921 * anc_data_recv - optionally capture ancillary data for received message
b97bf3fd
PL
922 * @m: descriptor for message info
923 * @msg: received message header
924 * @tport: TIPC port associated with message
c4307285 925 *
b97bf3fd 926 * Note: Ancillary data is not captured if not requested by receiver.
c4307285 927 *
b97bf3fd
PL
928 * Returns 0 if successful, otherwise errno
929 */
05790c64 930static int anc_data_recv(struct msghdr *m, struct tipc_msg *msg,
ae8509c4 931 struct tipc_port *tport)
b97bf3fd
PL
932{
933 u32 anc_data[3];
934 u32 err;
935 u32 dest_type;
3546c750 936 int has_name;
b97bf3fd
PL
937 int res;
938
939 if (likely(m->msg_controllen == 0))
940 return 0;
941
942 /* Optionally capture errored message object(s) */
b97bf3fd
PL
943 err = msg ? msg_errcode(msg) : 0;
944 if (unlikely(err)) {
945 anc_data[0] = err;
946 anc_data[1] = msg_data_sz(msg);
2db9983a
AS
947 res = put_cmsg(m, SOL_TIPC, TIPC_ERRINFO, 8, anc_data);
948 if (res)
b97bf3fd 949 return res;
2db9983a
AS
950 if (anc_data[1]) {
951 res = put_cmsg(m, SOL_TIPC, TIPC_RETDATA, anc_data[1],
952 msg_data(msg));
953 if (res)
954 return res;
955 }
b97bf3fd
PL
956 }
957
958 /* Optionally capture message destination object */
b97bf3fd
PL
959 dest_type = msg ? msg_type(msg) : TIPC_DIRECT_MSG;
960 switch (dest_type) {
961 case TIPC_NAMED_MSG:
3546c750 962 has_name = 1;
b97bf3fd
PL
963 anc_data[0] = msg_nametype(msg);
964 anc_data[1] = msg_namelower(msg);
965 anc_data[2] = msg_namelower(msg);
966 break;
967 case TIPC_MCAST_MSG:
3546c750 968 has_name = 1;
b97bf3fd
PL
969 anc_data[0] = msg_nametype(msg);
970 anc_data[1] = msg_namelower(msg);
971 anc_data[2] = msg_nameupper(msg);
972 break;
973 case TIPC_CONN_MSG:
3546c750 974 has_name = (tport->conn_type != 0);
b97bf3fd
PL
975 anc_data[0] = tport->conn_type;
976 anc_data[1] = tport->conn_instance;
977 anc_data[2] = tport->conn_instance;
978 break;
979 default:
3546c750 980 has_name = 0;
b97bf3fd 981 }
2db9983a
AS
982 if (has_name) {
983 res = put_cmsg(m, SOL_TIPC, TIPC_DESTNAME, 12, anc_data);
984 if (res)
985 return res;
986 }
b97bf3fd
PL
987
988 return 0;
989}
990
9bbb4ecc
YX
991static int tipc_wait_for_rcvmsg(struct socket *sock, long timeo)
992{
993 struct sock *sk = sock->sk;
994 DEFINE_WAIT(wait);
995 int err;
996
997 for (;;) {
998 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
999 if (skb_queue_empty(&sk->sk_receive_queue)) {
1000 if (sock->state == SS_DISCONNECTING) {
1001 err = -ENOTCONN;
1002 break;
1003 }
1004 release_sock(sk);
1005 timeo = schedule_timeout(timeo);
1006 lock_sock(sk);
1007 }
1008 err = 0;
1009 if (!skb_queue_empty(&sk->sk_receive_queue))
1010 break;
1011 err = sock_intr_errno(timeo);
1012 if (signal_pending(current))
1013 break;
1014 err = -EAGAIN;
1015 if (!timeo)
1016 break;
1017 }
1018 finish_wait(sk_sleep(sk), &wait);
1019 return err;
1020}
1021
c4307285 1022/**
247f0f3c 1023 * tipc_recvmsg - receive packet-oriented message
b97bf3fd
PL
1024 * @iocb: (unused)
1025 * @m: descriptor for message info
1026 * @buf_len: total size of user buffer area
1027 * @flags: receive flags
c4307285 1028 *
b97bf3fd
PL
1029 * Used for SOCK_DGRAM, SOCK_RDM, and SOCK_SEQPACKET messages.
1030 * If the complete message doesn't fit in user area, truncate it.
1031 *
1032 * Returns size of returned message data, errno otherwise
1033 */
247f0f3c
YX
1034static int tipc_recvmsg(struct kiocb *iocb, struct socket *sock,
1035 struct msghdr *m, size_t buf_len, int flags)
b97bf3fd 1036{
0c3141e9 1037 struct sock *sk = sock->sk;
58ed9442
JPM
1038 struct tipc_sock *tsk = tipc_sk(sk);
1039 struct tipc_port *port = &tsk->port;
b97bf3fd
PL
1040 struct sk_buff *buf;
1041 struct tipc_msg *msg;
9bbb4ecc 1042 long timeo;
b97bf3fd
PL
1043 unsigned int sz;
1044 u32 err;
1045 int res;
1046
0c3141e9 1047 /* Catch invalid receive requests */
b97bf3fd
PL
1048 if (unlikely(!buf_len))
1049 return -EINVAL;
1050
0c3141e9 1051 lock_sock(sk);
b97bf3fd 1052
0c3141e9
AS
1053 if (unlikely(sock->state == SS_UNCONNECTED)) {
1054 res = -ENOTCONN;
b97bf3fd
PL
1055 goto exit;
1056 }
1057
9bbb4ecc 1058 timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
0c3141e9 1059restart:
b97bf3fd 1060
0c3141e9 1061 /* Look for a message in receive queue; wait if necessary */
9bbb4ecc
YX
1062 res = tipc_wait_for_rcvmsg(sock, timeo);
1063 if (res)
1064 goto exit;
b97bf3fd 1065
0c3141e9 1066 /* Look at first message in receive queue */
0c3141e9 1067 buf = skb_peek(&sk->sk_receive_queue);
b97bf3fd
PL
1068 msg = buf_msg(buf);
1069 sz = msg_data_sz(msg);
1070 err = msg_errcode(msg);
1071
b97bf3fd 1072 /* Discard an empty non-errored message & try again */
b97bf3fd 1073 if ((!sz) && (!err)) {
0c3141e9 1074 advance_rx_queue(sk);
b97bf3fd
PL
1075 goto restart;
1076 }
1077
1078 /* Capture sender's address (optional) */
b97bf3fd
PL
1079 set_orig_addr(m, msg);
1080
1081 /* Capture ancillary data (optional) */
58ed9442 1082 res = anc_data_recv(m, msg, port);
0c3141e9 1083 if (res)
b97bf3fd
PL
1084 goto exit;
1085
1086 /* Capture message data (if valid) & compute return value (always) */
b97bf3fd
PL
1087 if (!err) {
1088 if (unlikely(buf_len < sz)) {
1089 sz = buf_len;
1090 m->msg_flags |= MSG_TRUNC;
1091 }
0232fd0a
AS
1092 res = skb_copy_datagram_iovec(buf, msg_hdr_sz(msg),
1093 m->msg_iov, sz);
1094 if (res)
b97bf3fd 1095 goto exit;
b97bf3fd
PL
1096 res = sz;
1097 } else {
1098 if ((sock->state == SS_READY) ||
1099 ((err == TIPC_CONN_SHUTDOWN) || m->msg_control))
1100 res = 0;
1101 else
1102 res = -ECONNRESET;
1103 }
1104
1105 /* Consume received message (optional) */
b97bf3fd 1106 if (likely(!(flags & MSG_PEEK))) {
99009806 1107 if ((sock->state != SS_READY) &&
58ed9442
JPM
1108 (++port->conn_unacked >= TIPC_FLOW_CONTROL_WIN))
1109 tipc_acknowledge(port->ref, port->conn_unacked);
0c3141e9 1110 advance_rx_queue(sk);
c4307285 1111 }
b97bf3fd 1112exit:
0c3141e9 1113 release_sock(sk);
b97bf3fd
PL
1114 return res;
1115}
1116
c4307285 1117/**
247f0f3c 1118 * tipc_recv_stream - receive stream-oriented data
b97bf3fd
PL
1119 * @iocb: (unused)
1120 * @m: descriptor for message info
1121 * @buf_len: total size of user buffer area
1122 * @flags: receive flags
c4307285
YH
1123 *
1124 * Used for SOCK_STREAM messages only. If not enough data is available
b97bf3fd
PL
1125 * will optionally wait for more; never truncates data.
1126 *
1127 * Returns size of returned message data, errno otherwise
1128 */
247f0f3c
YX
1129static int tipc_recv_stream(struct kiocb *iocb, struct socket *sock,
1130 struct msghdr *m, size_t buf_len, int flags)
b97bf3fd 1131{
0c3141e9 1132 struct sock *sk = sock->sk;
58ed9442
JPM
1133 struct tipc_sock *tsk = tipc_sk(sk);
1134 struct tipc_port *port = &tsk->port;
b97bf3fd
PL
1135 struct sk_buff *buf;
1136 struct tipc_msg *msg;
9bbb4ecc 1137 long timeo;
b97bf3fd 1138 unsigned int sz;
3720d40b 1139 int sz_to_copy, target, needed;
b97bf3fd 1140 int sz_copied = 0;
b97bf3fd 1141 u32 err;
0c3141e9 1142 int res = 0;
b97bf3fd 1143
0c3141e9 1144 /* Catch invalid receive attempts */
b97bf3fd
PL
1145 if (unlikely(!buf_len))
1146 return -EINVAL;
1147
0c3141e9 1148 lock_sock(sk);
b97bf3fd 1149
9bbb4ecc 1150 if (unlikely(sock->state == SS_UNCONNECTED)) {
0c3141e9 1151 res = -ENOTCONN;
b97bf3fd
PL
1152 goto exit;
1153 }
1154
3720d40b 1155 target = sock_rcvlowat(sk, flags & MSG_WAITALL, buf_len);
9bbb4ecc 1156 timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
b97bf3fd 1157
617d3c7a 1158restart:
0c3141e9 1159 /* Look for a message in receive queue; wait if necessary */
9bbb4ecc
YX
1160 res = tipc_wait_for_rcvmsg(sock, timeo);
1161 if (res)
1162 goto exit;
b97bf3fd 1163
0c3141e9 1164 /* Look at first message in receive queue */
0c3141e9 1165 buf = skb_peek(&sk->sk_receive_queue);
b97bf3fd
PL
1166 msg = buf_msg(buf);
1167 sz = msg_data_sz(msg);
1168 err = msg_errcode(msg);
1169
1170 /* Discard an empty non-errored message & try again */
b97bf3fd 1171 if ((!sz) && (!err)) {
0c3141e9 1172 advance_rx_queue(sk);
b97bf3fd
PL
1173 goto restart;
1174 }
1175
1176 /* Optionally capture sender's address & ancillary data of first msg */
b97bf3fd
PL
1177 if (sz_copied == 0) {
1178 set_orig_addr(m, msg);
58ed9442 1179 res = anc_data_recv(m, msg, port);
0c3141e9 1180 if (res)
b97bf3fd
PL
1181 goto exit;
1182 }
1183
1184 /* Capture message data (if valid) & compute return value (always) */
b97bf3fd 1185 if (!err) {
0232fd0a 1186 u32 offset = (u32)(unsigned long)(TIPC_SKB_CB(buf)->handle);
b97bf3fd 1187
0232fd0a 1188 sz -= offset;
b97bf3fd
PL
1189 needed = (buf_len - sz_copied);
1190 sz_to_copy = (sz <= needed) ? sz : needed;
0232fd0a
AS
1191
1192 res = skb_copy_datagram_iovec(buf, msg_hdr_sz(msg) + offset,
1193 m->msg_iov, sz_to_copy);
1194 if (res)
b97bf3fd 1195 goto exit;
0232fd0a 1196
b97bf3fd
PL
1197 sz_copied += sz_to_copy;
1198
1199 if (sz_to_copy < sz) {
1200 if (!(flags & MSG_PEEK))
0232fd0a
AS
1201 TIPC_SKB_CB(buf)->handle =
1202 (void *)(unsigned long)(offset + sz_to_copy);
b97bf3fd
PL
1203 goto exit;
1204 }
b97bf3fd
PL
1205 } else {
1206 if (sz_copied != 0)
1207 goto exit; /* can't add error msg to valid data */
1208
1209 if ((err == TIPC_CONN_SHUTDOWN) || m->msg_control)
1210 res = 0;
1211 else
1212 res = -ECONNRESET;
1213 }
1214
1215 /* Consume received message (optional) */
b97bf3fd 1216 if (likely(!(flags & MSG_PEEK))) {
58ed9442
JPM
1217 if (unlikely(++port->conn_unacked >= TIPC_FLOW_CONTROL_WIN))
1218 tipc_acknowledge(port->ref, port->conn_unacked);
0c3141e9 1219 advance_rx_queue(sk);
c4307285 1220 }
b97bf3fd
PL
1221
1222 /* Loop around if more data is required */
f64f9e71
JP
1223 if ((sz_copied < buf_len) && /* didn't get all requested data */
1224 (!skb_queue_empty(&sk->sk_receive_queue) ||
3720d40b 1225 (sz_copied < target)) && /* and more is ready or required */
f64f9e71
JP
1226 (!(flags & MSG_PEEK)) && /* and aren't just peeking at data */
1227 (!err)) /* and haven't reached a FIN */
b97bf3fd
PL
1228 goto restart;
1229
1230exit:
0c3141e9 1231 release_sock(sk);
a3b0a5a9 1232 return sz_copied ? sz_copied : res;
b97bf3fd
PL
1233}
1234
f288bef4
YX
1235/**
1236 * tipc_write_space - wake up thread if port congestion is released
1237 * @sk: socket
1238 */
1239static void tipc_write_space(struct sock *sk)
1240{
1241 struct socket_wq *wq;
1242
1243 rcu_read_lock();
1244 wq = rcu_dereference(sk->sk_wq);
1245 if (wq_has_sleeper(wq))
1246 wake_up_interruptible_sync_poll(&wq->wait, POLLOUT |
1247 POLLWRNORM | POLLWRBAND);
1248 rcu_read_unlock();
1249}
1250
1251/**
1252 * tipc_data_ready - wake up threads to indicate messages have been received
1253 * @sk: socket
1254 * @len: the length of messages
1255 */
1256static void tipc_data_ready(struct sock *sk, int len)
1257{
1258 struct socket_wq *wq;
1259
1260 rcu_read_lock();
1261 wq = rcu_dereference(sk->sk_wq);
1262 if (wq_has_sleeper(wq))
1263 wake_up_interruptible_sync_poll(&wq->wait, POLLIN |
1264 POLLRDNORM | POLLRDBAND);
1265 rcu_read_unlock();
1266}
1267
7e6c131e
YX
1268/**
1269 * filter_connect - Handle all incoming messages for a connection-based socket
58ed9442 1270 * @tsk: TIPC socket
7e6c131e
YX
1271 * @msg: message
1272 *
1273 * Returns TIPC error status code and socket error status code
1274 * once it encounters some errors
1275 */
58ed9442 1276static u32 filter_connect(struct tipc_sock *tsk, struct sk_buff **buf)
7e6c131e 1277{
58ed9442
JPM
1278 struct sock *sk = &tsk->sk;
1279 struct tipc_port *port = &tsk->port;
8826cde6 1280 struct socket *sock = sk->sk_socket;
7e6c131e 1281 struct tipc_msg *msg = buf_msg(*buf);
8826cde6 1282
7e6c131e 1283 u32 retval = TIPC_ERR_NO_PORT;
584d24b3 1284 int res;
7e6c131e
YX
1285
1286 if (msg_mcast(msg))
1287 return retval;
1288
1289 switch ((int)sock->state) {
1290 case SS_CONNECTED:
1291 /* Accept only connection-based messages sent by peer */
8826cde6 1292 if (msg_connected(msg) && tipc_port_peer_msg(port, msg)) {
7e6c131e
YX
1293 if (unlikely(msg_errcode(msg))) {
1294 sock->state = SS_DISCONNECTING;
8826cde6 1295 __tipc_port_disconnect(port);
7e6c131e
YX
1296 }
1297 retval = TIPC_OK;
1298 }
1299 break;
1300 case SS_CONNECTING:
1301 /* Accept only ACK or NACK message */
584d24b3
YX
1302 if (unlikely(msg_errcode(msg))) {
1303 sock->state = SS_DISCONNECTING;
2c8d8518 1304 sk->sk_err = ECONNREFUSED;
584d24b3
YX
1305 retval = TIPC_OK;
1306 break;
1307 }
1308
1309 if (unlikely(!msg_connected(msg)))
1310 break;
1311
58ed9442 1312 res = auto_connect(tsk, msg);
584d24b3
YX
1313 if (res) {
1314 sock->state = SS_DISCONNECTING;
2c8d8518 1315 sk->sk_err = -res;
7e6c131e 1316 retval = TIPC_OK;
584d24b3
YX
1317 break;
1318 }
1319
1320 /* If an incoming message is an 'ACK-', it should be
1321 * discarded here because it doesn't contain useful
1322 * data. In addition, we should try to wake up
1323 * connect() routine if sleeping.
1324 */
1325 if (msg_data_sz(msg) == 0) {
1326 kfree_skb(*buf);
1327 *buf = NULL;
1328 if (waitqueue_active(sk_sleep(sk)))
1329 wake_up_interruptible(sk_sleep(sk));
1330 }
1331 retval = TIPC_OK;
7e6c131e
YX
1332 break;
1333 case SS_LISTENING:
1334 case SS_UNCONNECTED:
1335 /* Accept only SYN message */
1336 if (!msg_connected(msg) && !(msg_errcode(msg)))
1337 retval = TIPC_OK;
1338 break;
1339 case SS_DISCONNECTING:
1340 break;
1341 default:
1342 pr_err("Unknown socket state %u\n", sock->state);
1343 }
1344 return retval;
1345}
1346
aba79f33
YX
1347/**
1348 * rcvbuf_limit - get proper overload limit of socket receive queue
1349 * @sk: socket
1350 * @buf: message
1351 *
1352 * For all connection oriented messages, irrespective of importance,
1353 * the default overload value (i.e. 67MB) is set as limit.
1354 *
1355 * For all connectionless messages, by default new queue limits are
1356 * as belows:
1357 *
cc79dd1b
YX
1358 * TIPC_LOW_IMPORTANCE (4 MB)
1359 * TIPC_MEDIUM_IMPORTANCE (8 MB)
1360 * TIPC_HIGH_IMPORTANCE (16 MB)
1361 * TIPC_CRITICAL_IMPORTANCE (32 MB)
aba79f33
YX
1362 *
1363 * Returns overload limit according to corresponding message importance
1364 */
1365static unsigned int rcvbuf_limit(struct sock *sk, struct sk_buff *buf)
1366{
1367 struct tipc_msg *msg = buf_msg(buf);
aba79f33
YX
1368
1369 if (msg_connected(msg))
0cee6bbe 1370 return sysctl_tipc_rmem[2];
1371
1372 return sk->sk_rcvbuf >> TIPC_CRITICAL_IMPORTANCE <<
1373 msg_importance(msg);
aba79f33
YX
1374}
1375
c4307285 1376/**
0c3141e9
AS
1377 * filter_rcv - validate incoming message
1378 * @sk: socket
b97bf3fd 1379 * @buf: message
c4307285 1380 *
0c3141e9
AS
1381 * Enqueues message on receive queue if acceptable; optionally handles
1382 * disconnect indication for a connected socket.
1383 *
1384 * Called with socket lock already taken; port lock may also be taken.
c4307285 1385 *
b97bf3fd
PL
1386 * Returns TIPC error status code (TIPC_OK if message is not to be rejected)
1387 */
0c3141e9 1388static u32 filter_rcv(struct sock *sk, struct sk_buff *buf)
b97bf3fd 1389{
0c3141e9 1390 struct socket *sock = sk->sk_socket;
58ed9442 1391 struct tipc_sock *tsk = tipc_sk(sk);
b97bf3fd 1392 struct tipc_msg *msg = buf_msg(buf);
aba79f33 1393 unsigned int limit = rcvbuf_limit(sk, buf);
7e6c131e 1394 u32 res = TIPC_OK;
b97bf3fd 1395
b97bf3fd 1396 /* Reject message if it is wrong sort of message for socket */
aad58547
AS
1397 if (msg_type(msg) > TIPC_DIRECT_MSG)
1398 return TIPC_ERR_NO_PORT;
0c3141e9 1399
b97bf3fd 1400 if (sock->state == SS_READY) {
b29f1428 1401 if (msg_connected(msg))
b97bf3fd 1402 return TIPC_ERR_NO_PORT;
b97bf3fd 1403 } else {
58ed9442 1404 res = filter_connect(tsk, &buf);
7e6c131e
YX
1405 if (res != TIPC_OK || buf == NULL)
1406 return res;
b97bf3fd
PL
1407 }
1408
1409 /* Reject message if there isn't room to queue it */
aba79f33
YX
1410 if (sk_rmem_alloc_get(sk) + buf->truesize >= limit)
1411 return TIPC_ERR_OVERLOAD;
b97bf3fd 1412
aba79f33 1413 /* Enqueue message */
40682432 1414 TIPC_SKB_CB(buf)->handle = NULL;
0c3141e9 1415 __skb_queue_tail(&sk->sk_receive_queue, buf);
aba79f33 1416 skb_set_owner_r(buf, sk);
0c3141e9 1417
f288bef4 1418 sk->sk_data_ready(sk, 0);
0c3141e9
AS
1419 return TIPC_OK;
1420}
b97bf3fd 1421
0c3141e9
AS
1422/**
1423 * backlog_rcv - handle incoming message from backlog queue
1424 * @sk: socket
1425 * @buf: message
1426 *
1427 * Caller must hold socket lock, but not port lock.
1428 *
1429 * Returns 0
1430 */
0c3141e9
AS
1431static int backlog_rcv(struct sock *sk, struct sk_buff *buf)
1432{
1433 u32 res;
1434
1435 res = filter_rcv(sk, buf);
1436 if (res)
1437 tipc_reject_msg(buf, res);
1438 return 0;
1439}
1440
1441/**
24be34b5
JPM
1442 * tipc_sk_rcv - handle incoming message
1443 * @sk: socket receiving message
0c3141e9
AS
1444 * @buf: message
1445 *
1446 * Called with port lock already taken.
1447 *
1448 * Returns TIPC error status code (TIPC_OK if message is not to be rejected)
1449 */
24be34b5 1450u32 tipc_sk_rcv(struct sock *sk, struct sk_buff *buf)
0c3141e9 1451{
0c3141e9
AS
1452 u32 res;
1453
1454 /*
1455 * Process message if socket is unlocked; otherwise add to backlog queue
1456 *
1457 * This code is based on sk_receive_skb(), but must be distinct from it
1458 * since a TIPC-specific filter/reject mechanism is utilized
1459 */
0c3141e9
AS
1460 bh_lock_sock(sk);
1461 if (!sock_owned_by_user(sk)) {
1462 res = filter_rcv(sk, buf);
1463 } else {
aba79f33 1464 if (sk_add_backlog(sk, buf, rcvbuf_limit(sk, buf)))
53eecb1b
ZY
1465 res = TIPC_ERR_OVERLOAD;
1466 else
1467 res = TIPC_OK;
0c3141e9
AS
1468 }
1469 bh_unlock_sock(sk);
1470
1471 return res;
b97bf3fd
PL
1472}
1473
78eb3a53
YX
1474static int tipc_wait_for_connect(struct socket *sock, long *timeo_p)
1475{
1476 struct sock *sk = sock->sk;
1477 DEFINE_WAIT(wait);
1478 int done;
1479
1480 do {
1481 int err = sock_error(sk);
1482 if (err)
1483 return err;
1484 if (!*timeo_p)
1485 return -ETIMEDOUT;
1486 if (signal_pending(current))
1487 return sock_intr_errno(*timeo_p);
1488
1489 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
1490 done = sk_wait_event(sk, timeo_p, sock->state != SS_CONNECTING);
1491 finish_wait(sk_sleep(sk), &wait);
1492 } while (!done);
1493 return 0;
1494}
1495
b97bf3fd 1496/**
247f0f3c 1497 * tipc_connect - establish a connection to another TIPC port
b97bf3fd
PL
1498 * @sock: socket structure
1499 * @dest: socket address for destination port
1500 * @destlen: size of socket address data structure
0c3141e9 1501 * @flags: file-related flags associated with socket
b97bf3fd
PL
1502 *
1503 * Returns 0 on success, errno otherwise
1504 */
247f0f3c
YX
1505static int tipc_connect(struct socket *sock, struct sockaddr *dest,
1506 int destlen, int flags)
b97bf3fd 1507{
0c3141e9 1508 struct sock *sk = sock->sk;
b89741a0
AS
1509 struct sockaddr_tipc *dst = (struct sockaddr_tipc *)dest;
1510 struct msghdr m = {NULL,};
78eb3a53
YX
1511 long timeout = (flags & O_NONBLOCK) ? 0 : tipc_sk(sk)->conn_timeout;
1512 socket_state previous;
b89741a0
AS
1513 int res;
1514
0c3141e9
AS
1515 lock_sock(sk);
1516
b89741a0 1517 /* For now, TIPC does not allow use of connect() with DGRAM/RDM types */
0c3141e9
AS
1518 if (sock->state == SS_READY) {
1519 res = -EOPNOTSUPP;
1520 goto exit;
1521 }
b89741a0 1522
b89741a0
AS
1523 /*
1524 * Reject connection attempt using multicast address
1525 *
1526 * Note: send_msg() validates the rest of the address fields,
1527 * so there's no need to do it here
1528 */
0c3141e9
AS
1529 if (dst->addrtype == TIPC_ADDR_MCAST) {
1530 res = -EINVAL;
1531 goto exit;
1532 }
1533
78eb3a53 1534 previous = sock->state;
584d24b3
YX
1535 switch (sock->state) {
1536 case SS_UNCONNECTED:
1537 /* Send a 'SYN-' to destination */
1538 m.msg_name = dest;
1539 m.msg_namelen = destlen;
1540
1541 /* If connect is in non-blocking case, set MSG_DONTWAIT to
1542 * indicate send_msg() is never blocked.
1543 */
1544 if (!timeout)
1545 m.msg_flags = MSG_DONTWAIT;
1546
247f0f3c 1547 res = tipc_sendmsg(NULL, sock, &m, 0);
584d24b3
YX
1548 if ((res < 0) && (res != -EWOULDBLOCK))
1549 goto exit;
1550
1551 /* Just entered SS_CONNECTING state; the only
1552 * difference is that return value in non-blocking
1553 * case is EINPROGRESS, rather than EALREADY.
1554 */
1555 res = -EINPROGRESS;
584d24b3 1556 case SS_CONNECTING:
78eb3a53
YX
1557 if (previous == SS_CONNECTING)
1558 res = -EALREADY;
1559 if (!timeout)
1560 goto exit;
1561 timeout = msecs_to_jiffies(timeout);
1562 /* Wait until an 'ACK' or 'RST' arrives, or a timeout occurs */
1563 res = tipc_wait_for_connect(sock, &timeout);
584d24b3
YX
1564 break;
1565 case SS_CONNECTED:
1566 res = -EISCONN;
1567 break;
1568 default:
1569 res = -EINVAL;
78eb3a53 1570 break;
b89741a0 1571 }
0c3141e9
AS
1572exit:
1573 release_sock(sk);
b89741a0 1574 return res;
b97bf3fd
PL
1575}
1576
c4307285 1577/**
247f0f3c 1578 * tipc_listen - allow socket to listen for incoming connections
b97bf3fd
PL
1579 * @sock: socket structure
1580 * @len: (unused)
c4307285 1581 *
b97bf3fd
PL
1582 * Returns 0 on success, errno otherwise
1583 */
247f0f3c 1584static int tipc_listen(struct socket *sock, int len)
b97bf3fd 1585{
0c3141e9
AS
1586 struct sock *sk = sock->sk;
1587 int res;
1588
1589 lock_sock(sk);
b97bf3fd 1590
245f3d34 1591 if (sock->state != SS_UNCONNECTED)
0c3141e9
AS
1592 res = -EINVAL;
1593 else {
1594 sock->state = SS_LISTENING;
1595 res = 0;
1596 }
1597
1598 release_sock(sk);
1599 return res;
b97bf3fd
PL
1600}
1601
6398e23c
YX
1602static int tipc_wait_for_accept(struct socket *sock, long timeo)
1603{
1604 struct sock *sk = sock->sk;
1605 DEFINE_WAIT(wait);
1606 int err;
1607
1608 /* True wake-one mechanism for incoming connections: only
1609 * one process gets woken up, not the 'whole herd'.
1610 * Since we do not 'race & poll' for established sockets
1611 * anymore, the common case will execute the loop only once.
1612 */
1613 for (;;) {
1614 prepare_to_wait_exclusive(sk_sleep(sk), &wait,
1615 TASK_INTERRUPTIBLE);
1616 if (skb_queue_empty(&sk->sk_receive_queue)) {
1617 release_sock(sk);
1618 timeo = schedule_timeout(timeo);
1619 lock_sock(sk);
1620 }
1621 err = 0;
1622 if (!skb_queue_empty(&sk->sk_receive_queue))
1623 break;
1624 err = -EINVAL;
1625 if (sock->state != SS_LISTENING)
1626 break;
1627 err = sock_intr_errno(timeo);
1628 if (signal_pending(current))
1629 break;
1630 err = -EAGAIN;
1631 if (!timeo)
1632 break;
1633 }
1634 finish_wait(sk_sleep(sk), &wait);
1635 return err;
1636}
1637
c4307285 1638/**
247f0f3c 1639 * tipc_accept - wait for connection request
b97bf3fd
PL
1640 * @sock: listening socket
1641 * @newsock: new socket that is to be connected
1642 * @flags: file-related flags associated with socket
c4307285 1643 *
b97bf3fd
PL
1644 * Returns 0 on success, errno otherwise
1645 */
247f0f3c 1646static int tipc_accept(struct socket *sock, struct socket *new_sock, int flags)
b97bf3fd 1647{
0fef8f20 1648 struct sock *new_sk, *sk = sock->sk;
b97bf3fd 1649 struct sk_buff *buf;
8826cde6 1650 struct tipc_port *new_port;
0fef8f20 1651 struct tipc_msg *msg;
f9fef18c 1652 struct tipc_portid peer;
0fef8f20 1653 u32 new_ref;
6398e23c 1654 long timeo;
0c3141e9 1655 int res;
b97bf3fd 1656
0c3141e9 1657 lock_sock(sk);
b97bf3fd 1658
0c3141e9
AS
1659 if (sock->state != SS_LISTENING) {
1660 res = -EINVAL;
b97bf3fd
PL
1661 goto exit;
1662 }
6398e23c
YX
1663 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
1664 res = tipc_wait_for_accept(sock, timeo);
1665 if (res)
1666 goto exit;
0c3141e9
AS
1667
1668 buf = skb_peek(&sk->sk_receive_queue);
1669
c5fa7b3c 1670 res = tipc_sk_create(sock_net(sock->sk), new_sock, 0, 1);
0fef8f20
PG
1671 if (res)
1672 goto exit;
b97bf3fd 1673
0fef8f20 1674 new_sk = new_sock->sk;
58ed9442 1675 new_port = &tipc_sk(new_sk)->port;
8826cde6 1676 new_ref = new_port->ref;
0fef8f20 1677 msg = buf_msg(buf);
b97bf3fd 1678
0fef8f20
PG
1679 /* we lock on new_sk; but lockdep sees the lock on sk */
1680 lock_sock_nested(new_sk, SINGLE_DEPTH_NESTING);
1681
1682 /*
1683 * Reject any stray messages received by new socket
1684 * before the socket lock was taken (very, very unlikely)
1685 */
1686 reject_rx_queue(new_sk);
1687
1688 /* Connect new socket to it's peer */
f9fef18c
JPM
1689 peer.ref = msg_origport(msg);
1690 peer.node = msg_orignode(msg);
1691 tipc_port_connect(new_ref, &peer);
0fef8f20
PG
1692 new_sock->state = SS_CONNECTED;
1693
3b4f302d 1694 tipc_port_set_importance(new_port, msg_importance(msg));
0fef8f20 1695 if (msg_named(msg)) {
8826cde6
JPM
1696 new_port->conn_type = msg_nametype(msg);
1697 new_port->conn_instance = msg_nameinst(msg);
b97bf3fd 1698 }
0fef8f20
PG
1699
1700 /*
1701 * Respond to 'SYN-' by discarding it & returning 'ACK'-.
1702 * Respond to 'SYN+' by queuing it on new socket.
1703 */
1704 if (!msg_data_sz(msg)) {
1705 struct msghdr m = {NULL,};
1706
1707 advance_rx_queue(sk);
247f0f3c 1708 tipc_send_packet(NULL, new_sock, &m, 0);
0fef8f20
PG
1709 } else {
1710 __skb_dequeue(&sk->sk_receive_queue);
1711 __skb_queue_head(&new_sk->sk_receive_queue, buf);
aba79f33 1712 skb_set_owner_r(buf, new_sk);
0fef8f20
PG
1713 }
1714 release_sock(new_sk);
b97bf3fd 1715exit:
0c3141e9 1716 release_sock(sk);
b97bf3fd
PL
1717 return res;
1718}
1719
1720/**
247f0f3c 1721 * tipc_shutdown - shutdown socket connection
b97bf3fd 1722 * @sock: socket structure
e247a8f5 1723 * @how: direction to close (must be SHUT_RDWR)
b97bf3fd
PL
1724 *
1725 * Terminates connection (if necessary), then purges socket's receive queue.
c4307285 1726 *
b97bf3fd
PL
1727 * Returns 0 on success, errno otherwise
1728 */
247f0f3c 1729static int tipc_shutdown(struct socket *sock, int how)
b97bf3fd 1730{
0c3141e9 1731 struct sock *sk = sock->sk;
58ed9442
JPM
1732 struct tipc_sock *tsk = tipc_sk(sk);
1733 struct tipc_port *port = &tsk->port;
b97bf3fd
PL
1734 struct sk_buff *buf;
1735 int res;
1736
e247a8f5
AS
1737 if (how != SHUT_RDWR)
1738 return -EINVAL;
b97bf3fd 1739
0c3141e9 1740 lock_sock(sk);
b97bf3fd
PL
1741
1742 switch (sock->state) {
0c3141e9 1743 case SS_CONNECTING:
b97bf3fd
PL
1744 case SS_CONNECTED:
1745
b97bf3fd 1746restart:
617d3c7a 1747 /* Disconnect and send a 'FIN+' or 'FIN-' message to peer */
0c3141e9
AS
1748 buf = __skb_dequeue(&sk->sk_receive_queue);
1749 if (buf) {
40682432 1750 if (TIPC_SKB_CB(buf)->handle != NULL) {
5f6d9123 1751 kfree_skb(buf);
b97bf3fd
PL
1752 goto restart;
1753 }
58ed9442 1754 tipc_port_disconnect(port->ref);
b97bf3fd 1755 tipc_reject_msg(buf, TIPC_CONN_SHUTDOWN);
0c3141e9 1756 } else {
58ed9442 1757 tipc_port_shutdown(port->ref);
b97bf3fd 1758 }
0c3141e9
AS
1759
1760 sock->state = SS_DISCONNECTING;
b97bf3fd
PL
1761
1762 /* fall through */
1763
1764 case SS_DISCONNECTING:
1765
75031151 1766 /* Discard any unreceived messages */
57467e56 1767 __skb_queue_purge(&sk->sk_receive_queue);
75031151
YX
1768
1769 /* Wake up anyone sleeping in poll */
1770 sk->sk_state_change(sk);
b97bf3fd
PL
1771 res = 0;
1772 break;
1773
1774 default:
1775 res = -ENOTCONN;
1776 }
1777
0c3141e9 1778 release_sock(sk);
b97bf3fd
PL
1779 return res;
1780}
1781
1782/**
247f0f3c 1783 * tipc_setsockopt - set socket option
b97bf3fd
PL
1784 * @sock: socket structure
1785 * @lvl: option level
1786 * @opt: option identifier
1787 * @ov: pointer to new option value
1788 * @ol: length of option value
c4307285
YH
1789 *
1790 * For stream sockets only, accepts and ignores all IPPROTO_TCP options
b97bf3fd 1791 * (to ease compatibility).
c4307285 1792 *
b97bf3fd
PL
1793 * Returns 0 on success, errno otherwise
1794 */
247f0f3c
YX
1795static int tipc_setsockopt(struct socket *sock, int lvl, int opt,
1796 char __user *ov, unsigned int ol)
b97bf3fd 1797{
0c3141e9 1798 struct sock *sk = sock->sk;
58ed9442
JPM
1799 struct tipc_sock *tsk = tipc_sk(sk);
1800 struct tipc_port *port = &tsk->port;
b97bf3fd
PL
1801 u32 value;
1802 int res;
1803
c4307285
YH
1804 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
1805 return 0;
b97bf3fd
PL
1806 if (lvl != SOL_TIPC)
1807 return -ENOPROTOOPT;
1808 if (ol < sizeof(value))
1809 return -EINVAL;
2db9983a
AS
1810 res = get_user(value, (u32 __user *)ov);
1811 if (res)
b97bf3fd
PL
1812 return res;
1813
0c3141e9 1814 lock_sock(sk);
c4307285 1815
b97bf3fd
PL
1816 switch (opt) {
1817 case TIPC_IMPORTANCE:
58ed9442 1818 tipc_port_set_importance(port, value);
b97bf3fd
PL
1819 break;
1820 case TIPC_SRC_DROPPABLE:
1821 if (sock->type != SOCK_STREAM)
58ed9442 1822 tipc_port_set_unreliable(port, value);
c4307285 1823 else
b97bf3fd
PL
1824 res = -ENOPROTOOPT;
1825 break;
1826 case TIPC_DEST_DROPPABLE:
58ed9442 1827 tipc_port_set_unreturnable(port, value);
b97bf3fd
PL
1828 break;
1829 case TIPC_CONN_TIMEOUT:
a0f40f02 1830 tipc_sk(sk)->conn_timeout = value;
0c3141e9 1831 /* no need to set "res", since already 0 at this point */
b97bf3fd
PL
1832 break;
1833 default:
1834 res = -EINVAL;
1835 }
1836
0c3141e9
AS
1837 release_sock(sk);
1838
b97bf3fd
PL
1839 return res;
1840}
1841
1842/**
247f0f3c 1843 * tipc_getsockopt - get socket option
b97bf3fd
PL
1844 * @sock: socket structure
1845 * @lvl: option level
1846 * @opt: option identifier
1847 * @ov: receptacle for option value
1848 * @ol: receptacle for length of option value
c4307285
YH
1849 *
1850 * For stream sockets only, returns 0 length result for all IPPROTO_TCP options
b97bf3fd 1851 * (to ease compatibility).
c4307285 1852 *
b97bf3fd
PL
1853 * Returns 0 on success, errno otherwise
1854 */
247f0f3c
YX
1855static int tipc_getsockopt(struct socket *sock, int lvl, int opt,
1856 char __user *ov, int __user *ol)
b97bf3fd 1857{
0c3141e9 1858 struct sock *sk = sock->sk;
58ed9442
JPM
1859 struct tipc_sock *tsk = tipc_sk(sk);
1860 struct tipc_port *port = &tsk->port;
c4307285 1861 int len;
b97bf3fd 1862 u32 value;
c4307285 1863 int res;
b97bf3fd 1864
c4307285
YH
1865 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
1866 return put_user(0, ol);
b97bf3fd
PL
1867 if (lvl != SOL_TIPC)
1868 return -ENOPROTOOPT;
2db9983a
AS
1869 res = get_user(len, ol);
1870 if (res)
c4307285 1871 return res;
b97bf3fd 1872
0c3141e9 1873 lock_sock(sk);
b97bf3fd
PL
1874
1875 switch (opt) {
1876 case TIPC_IMPORTANCE:
58ed9442 1877 value = tipc_port_importance(port);
b97bf3fd
PL
1878 break;
1879 case TIPC_SRC_DROPPABLE:
58ed9442 1880 value = tipc_port_unreliable(port);
b97bf3fd
PL
1881 break;
1882 case TIPC_DEST_DROPPABLE:
58ed9442 1883 value = tipc_port_unreturnable(port);
b97bf3fd
PL
1884 break;
1885 case TIPC_CONN_TIMEOUT:
a0f40f02 1886 value = tipc_sk(sk)->conn_timeout;
0c3141e9 1887 /* no need to set "res", since already 0 at this point */
b97bf3fd 1888 break;
0e65967e 1889 case TIPC_NODE_RECVQ_DEPTH:
9da3d475 1890 value = 0; /* was tipc_queue_size, now obsolete */
6650613d 1891 break;
0e65967e 1892 case TIPC_SOCK_RECVQ_DEPTH:
6650613d 1893 value = skb_queue_len(&sk->sk_receive_queue);
1894 break;
b97bf3fd
PL
1895 default:
1896 res = -EINVAL;
1897 }
1898
0c3141e9
AS
1899 release_sock(sk);
1900
25860c3b
PG
1901 if (res)
1902 return res; /* "get" failed */
b97bf3fd 1903
25860c3b
PG
1904 if (len < sizeof(value))
1905 return -EINVAL;
1906
1907 if (copy_to_user(ov, &value, sizeof(value)))
1908 return -EFAULT;
1909
1910 return put_user(sizeof(value), ol);
b97bf3fd
PL
1911}
1912
ae86b9e3
BH
1913/* Protocol switches for the various types of TIPC sockets */
1914
bca65eae 1915static const struct proto_ops msg_ops = {
0e65967e 1916 .owner = THIS_MODULE,
b97bf3fd 1917 .family = AF_TIPC,
247f0f3c
YX
1918 .release = tipc_release,
1919 .bind = tipc_bind,
1920 .connect = tipc_connect,
5eee6a6d 1921 .socketpair = sock_no_socketpair,
245f3d34 1922 .accept = sock_no_accept,
247f0f3c
YX
1923 .getname = tipc_getname,
1924 .poll = tipc_poll,
5eee6a6d 1925 .ioctl = sock_no_ioctl,
245f3d34 1926 .listen = sock_no_listen,
247f0f3c
YX
1927 .shutdown = tipc_shutdown,
1928 .setsockopt = tipc_setsockopt,
1929 .getsockopt = tipc_getsockopt,
1930 .sendmsg = tipc_sendmsg,
1931 .recvmsg = tipc_recvmsg,
8238745a
YH
1932 .mmap = sock_no_mmap,
1933 .sendpage = sock_no_sendpage
b97bf3fd
PL
1934};
1935
bca65eae 1936static const struct proto_ops packet_ops = {
0e65967e 1937 .owner = THIS_MODULE,
b97bf3fd 1938 .family = AF_TIPC,
247f0f3c
YX
1939 .release = tipc_release,
1940 .bind = tipc_bind,
1941 .connect = tipc_connect,
5eee6a6d 1942 .socketpair = sock_no_socketpair,
247f0f3c
YX
1943 .accept = tipc_accept,
1944 .getname = tipc_getname,
1945 .poll = tipc_poll,
5eee6a6d 1946 .ioctl = sock_no_ioctl,
247f0f3c
YX
1947 .listen = tipc_listen,
1948 .shutdown = tipc_shutdown,
1949 .setsockopt = tipc_setsockopt,
1950 .getsockopt = tipc_getsockopt,
1951 .sendmsg = tipc_send_packet,
1952 .recvmsg = tipc_recvmsg,
8238745a
YH
1953 .mmap = sock_no_mmap,
1954 .sendpage = sock_no_sendpage
b97bf3fd
PL
1955};
1956
bca65eae 1957static const struct proto_ops stream_ops = {
0e65967e 1958 .owner = THIS_MODULE,
b97bf3fd 1959 .family = AF_TIPC,
247f0f3c
YX
1960 .release = tipc_release,
1961 .bind = tipc_bind,
1962 .connect = tipc_connect,
5eee6a6d 1963 .socketpair = sock_no_socketpair,
247f0f3c
YX
1964 .accept = tipc_accept,
1965 .getname = tipc_getname,
1966 .poll = tipc_poll,
5eee6a6d 1967 .ioctl = sock_no_ioctl,
247f0f3c
YX
1968 .listen = tipc_listen,
1969 .shutdown = tipc_shutdown,
1970 .setsockopt = tipc_setsockopt,
1971 .getsockopt = tipc_getsockopt,
1972 .sendmsg = tipc_send_stream,
1973 .recvmsg = tipc_recv_stream,
8238745a
YH
1974 .mmap = sock_no_mmap,
1975 .sendpage = sock_no_sendpage
b97bf3fd
PL
1976};
1977
bca65eae 1978static const struct net_proto_family tipc_family_ops = {
0e65967e 1979 .owner = THIS_MODULE,
b97bf3fd 1980 .family = AF_TIPC,
c5fa7b3c 1981 .create = tipc_sk_create
b97bf3fd
PL
1982};
1983
1984static struct proto tipc_proto = {
1985 .name = "TIPC",
1986 .owner = THIS_MODULE,
cc79dd1b
YX
1987 .obj_size = sizeof(struct tipc_sock),
1988 .sysctl_rmem = sysctl_tipc_rmem
b97bf3fd
PL
1989};
1990
c5fa7b3c
YX
1991static struct proto tipc_proto_kern = {
1992 .name = "TIPC",
1993 .obj_size = sizeof(struct tipc_sock),
1994 .sysctl_rmem = sysctl_tipc_rmem
1995};
1996
b97bf3fd 1997/**
4323add6 1998 * tipc_socket_init - initialize TIPC socket interface
c4307285 1999 *
b97bf3fd
PL
2000 * Returns 0 on success, errno otherwise
2001 */
4323add6 2002int tipc_socket_init(void)
b97bf3fd
PL
2003{
2004 int res;
2005
c4307285 2006 res = proto_register(&tipc_proto, 1);
b97bf3fd 2007 if (res) {
2cf8aa19 2008 pr_err("Failed to register TIPC protocol type\n");
b97bf3fd
PL
2009 goto out;
2010 }
2011
2012 res = sock_register(&tipc_family_ops);
2013 if (res) {
2cf8aa19 2014 pr_err("Failed to register TIPC socket type\n");
b97bf3fd
PL
2015 proto_unregister(&tipc_proto);
2016 goto out;
2017 }
b97bf3fd
PL
2018 out:
2019 return res;
2020}
2021
2022/**
4323add6 2023 * tipc_socket_stop - stop TIPC socket interface
b97bf3fd 2024 */
4323add6 2025void tipc_socket_stop(void)
b97bf3fd 2026{
b97bf3fd
PL
2027 sock_unregister(tipc_family_ops.family);
2028 proto_unregister(&tipc_proto);
2029}