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