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