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