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