blob: 0ed0eaa62f29e7148052907892ff90ebd20d2fed [file] [log] [blame]
Per Lidenb97bf3f2006-01-02 19:04:38 +01001/*
2 * net/tipc/socket.c: TIPC socket API
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003 *
Jon Maloye643df12012-11-27 06:15:29 -05004 * Copyright (c) 2001-2007, 2012 Ericsson AB
Ying Xuec5fa7b32013-06-17 10:54:39 -04005 * Copyright (c) 2004-2008, 2010-2013, Wind River Systems
Per Lidenb97bf3f2006-01-02 19:04:38 +01006 * All rights reserved.
7 *
Per Liden9ea1fd32006-01-11 13:30:43 +01008 * Redistribution and use in source and binary forms, with or without
Per Lidenb97bf3f2006-01-02 19:04:38 +01009 * modification, are permitted provided that the following conditions are met:
10 *
Per Liden9ea1fd32006-01-11 13:30:43 +010011 * 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.
Per Lidenb97bf3f2006-01-02 19:04:38 +010019 *
Per Liden9ea1fd32006-01-11 13:30:43 +010020 * 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
Per Lidenb97bf3f2006-01-02 19:04:38 +010034 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
Per Lidenb97bf3f2006-01-02 19:04:38 +010037#include "core.h"
Allan Stephensd265fef2010-11-30 12:00:53 +000038#include "port.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010039
Erik Hugne2cf8aa12012-06-29 00:16:37 -040040#include <linux/export.h>
41#include <net/sock.h>
42
Per Lidenb97bf3f2006-01-02 19:04:38 +010043#define SS_LISTENING -1 /* socket is listening */
44#define SS_READY -2 /* socket is connectionless */
45
Allan Stephens3654ea02008-04-13 21:35:11 -070046#define CONN_TIMEOUT_DEFAULT 8000 /* default connect timeout = 8s */
Per Lidenb97bf3f2006-01-02 19:04:38 +010047
48struct tipc_sock {
49 struct sock sk;
50 struct tipc_port *p;
Allan Stephens2da59912008-07-14 22:43:32 -070051 struct tipc_portid peer_name;
Allan Stephensa0f40f02011-05-26 13:44:34 -040052 unsigned int conn_timeout;
Per Lidenb97bf3f2006-01-02 19:04:38 +010053};
54
Allan Stephens0c3141e2008-04-15 00:22:02 -070055#define tipc_sk(sk) ((struct tipc_sock *)(sk))
Joe Perchese3192692012-06-03 17:41:40 +000056#define tipc_sk_port(sk) (tipc_sk(sk)->p)
Per Lidenb97bf3f2006-01-02 19:04:38 +010057
Allan Stephens0c3141e2008-04-15 00:22:02 -070058static int backlog_rcv(struct sock *sk, struct sk_buff *skb);
Per Lidenb97bf3f2006-01-02 19:04:38 +010059static u32 dispatch(struct tipc_port *tport, struct sk_buff *buf);
60static void wakeupdispatch(struct tipc_port *tport);
Ying Xuef288bef2012-08-21 11:16:57 +080061static void tipc_data_ready(struct sock *sk, int len);
62static void tipc_write_space(struct sock *sk);
Ying Xuec5fa7b32013-06-17 10:54:39 -040063static int release(struct socket *sock);
64static int accept(struct socket *sock, struct socket *new_sock, int flags);
Per Lidenb97bf3f2006-01-02 19:04:38 +010065
Florian Westphalbca65ea2008-02-07 18:18:01 -080066static const struct proto_ops packet_ops;
67static const struct proto_ops stream_ops;
68static const struct proto_ops msg_ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +010069
70static struct proto tipc_proto;
Ying Xuec5fa7b32013-06-17 10:54:39 -040071static struct proto tipc_proto_kern;
Per Lidenb97bf3f2006-01-02 19:04:38 +010072
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090073/*
Allan Stephens0c3141e2008-04-15 00:22:02 -070074 * Revised TIPC socket locking policy:
75 *
76 * Most socket operations take the standard socket lock when they start
77 * and hold it until they finish (or until they need to sleep). Acquiring
78 * this lock grants the owner exclusive access to the fields of the socket
79 * data structures, with the exception of the backlog queue. A few socket
80 * operations can be done without taking the socket lock because they only
81 * read socket information that never changes during the life of the socket.
82 *
83 * Socket operations may acquire the lock for the associated TIPC port if they
84 * need to perform an operation on the port. If any routine needs to acquire
85 * both the socket lock and the port lock it must take the socket lock first
86 * to avoid the risk of deadlock.
87 *
88 * The dispatcher handling incoming messages cannot grab the socket lock in
89 * the standard fashion, since invoked it runs at the BH level and cannot block.
90 * Instead, it checks to see if the socket lock is currently owned by someone,
91 * and either handles the message itself or adds it to the socket's backlog
92 * queue; in the latter case the queued message is processed once the process
93 * owning the socket lock releases it.
94 *
95 * NOTE: Releasing the socket lock while an operation is sleeping overcomes
96 * the problem of a blocked socket operation preventing any other operations
97 * from occurring. However, applications must be careful if they have
98 * multiple threads trying to send (or receive) on the same socket, as these
99 * operations might interfere with each other. For example, doing a connect
100 * and a receive at the same time might allow the receive to consume the
101 * ACK message meant for the connect. While additional work could be done
102 * to try and overcome this, it doesn't seem to be worthwhile at the present.
103 *
104 * NOTE: Releasing the socket lock while an operation is sleeping also ensures
105 * that another operation that must be performed in a non-blocking manner is
106 * not delayed for very long because the lock has already been taken.
107 *
108 * NOTE: This code assumes that certain fields of a port/socket pair are
109 * constant over its lifetime; such fields can be examined without taking
110 * the socket lock and/or port lock, and do not need to be re-read even
111 * after resuming processing after waiting. These fields include:
112 * - socket type
113 * - pointer to socket sk structure (aka tipc_sock structure)
114 * - pointer to port structure
115 * - port reference
Per Lidenb97bf3f2006-01-02 19:04:38 +0100116 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100117
118/**
Allan Stephens0c3141e2008-04-15 00:22:02 -0700119 * advance_rx_queue - discard first buffer in socket receive queue
120 *
121 * Caller must hold socket lock
Per Lidenb97bf3f2006-01-02 19:04:38 +0100122 */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700123static void advance_rx_queue(struct sock *sk)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100124{
Allan Stephens5f6d9122011-11-04 13:24:29 -0400125 kfree_skb(__skb_dequeue(&sk->sk_receive_queue));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100126}
127
128/**
Allan Stephens0c3141e2008-04-15 00:22:02 -0700129 * reject_rx_queue - reject all buffers in socket receive queue
130 *
131 * Caller must hold socket lock
132 */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700133static void reject_rx_queue(struct sock *sk)
134{
135 struct sk_buff *buf;
136
Ying Xue9da3d472012-11-27 06:15:27 -0500137 while ((buf = __skb_dequeue(&sk->sk_receive_queue)))
Allan Stephens0c3141e2008-04-15 00:22:02 -0700138 tipc_reject_msg(buf, TIPC_ERR_NO_PORT);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700139}
140
141/**
Ying Xuec5fa7b32013-06-17 10:54:39 -0400142 * tipc_sk_create - create a TIPC socket
Allan Stephens0c3141e2008-04-15 00:22:02 -0700143 * @net: network namespace (must be default network)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100144 * @sock: pre-allocated socket structure
145 * @protocol: protocol indicator (must be 0)
Eric Paris3f378b62009-11-05 22:18:14 -0800146 * @kern: caused by kernel or by userspace?
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900147 *
Allan Stephens0c3141e2008-04-15 00:22:02 -0700148 * This routine creates additional data structures used by the TIPC socket,
149 * initializes them, and links them together.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100150 *
151 * Returns 0 on success, errno otherwise
152 */
Ying Xuec5fa7b32013-06-17 10:54:39 -0400153static int tipc_sk_create(struct net *net, struct socket *sock, int protocol,
154 int kern)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100155{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700156 const struct proto_ops *ops;
157 socket_state state;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100158 struct sock *sk;
Allan Stephens7ef43eb2008-05-12 15:42:28 -0700159 struct tipc_port *tp_ptr;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700160
161 /* Validate arguments */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100162 if (unlikely(protocol != 0))
163 return -EPROTONOSUPPORT;
164
Per Lidenb97bf3f2006-01-02 19:04:38 +0100165 switch (sock->type) {
166 case SOCK_STREAM:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700167 ops = &stream_ops;
168 state = SS_UNCONNECTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100169 break;
170 case SOCK_SEQPACKET:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700171 ops = &packet_ops;
172 state = SS_UNCONNECTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100173 break;
174 case SOCK_DGRAM:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100175 case SOCK_RDM:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700176 ops = &msg_ops;
177 state = SS_READY;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100178 break;
Allan Stephens49978652006-06-25 23:47:18 -0700179 default:
Allan Stephens49978652006-06-25 23:47:18 -0700180 return -EPROTOTYPE;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100181 }
182
Allan Stephens0c3141e2008-04-15 00:22:02 -0700183 /* Allocate socket's protocol area */
Ying Xuec5fa7b32013-06-17 10:54:39 -0400184 if (!kern)
185 sk = sk_alloc(net, AF_TIPC, GFP_KERNEL, &tipc_proto);
186 else
187 sk = sk_alloc(net, AF_TIPC, GFP_KERNEL, &tipc_proto_kern);
188
Allan Stephens0c3141e2008-04-15 00:22:02 -0700189 if (sk == NULL)
190 return -ENOMEM;
191
192 /* Allocate TIPC port for socket to use */
Ying Xue3c5db8e2013-06-17 10:54:44 -0400193 tp_ptr = tipc_createport(sk, &dispatch, &wakeupdispatch,
194 TIPC_LOW_IMPORTANCE);
Allan Stephens0ea52242008-07-14 22:42:19 -0700195 if (unlikely(!tp_ptr)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700196 sk_free(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100197 return -ENOMEM;
198 }
199
Allan Stephens0c3141e2008-04-15 00:22:02 -0700200 /* Finish initializing socket data structures */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700201 sock->ops = ops;
202 sock->state = state;
203
Per Lidenb97bf3f2006-01-02 19:04:38 +0100204 sock_init_data(sock, sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700205 sk->sk_backlog_rcv = backlog_rcv;
Ying Xuecc79dd12013-06-17 10:54:37 -0400206 sk->sk_rcvbuf = sysctl_tipc_rmem[1];
Ying Xuef288bef2012-08-21 11:16:57 +0800207 sk->sk_data_ready = tipc_data_ready;
208 sk->sk_write_space = tipc_write_space;
Allan Stephens0ea52242008-07-14 22:42:19 -0700209 tipc_sk(sk)->p = tp_ptr;
Allan Stephensa0f40f02011-05-26 13:44:34 -0400210 tipc_sk(sk)->conn_timeout = CONN_TIMEOUT_DEFAULT;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100211
Allan Stephens7ef43eb2008-05-12 15:42:28 -0700212 spin_unlock_bh(tp_ptr->lock);
213
Allan Stephens0c3141e2008-04-15 00:22:02 -0700214 if (sock->state == SS_READY) {
Allan Stephens0ea52242008-07-14 22:42:19 -0700215 tipc_set_portunreturnable(tp_ptr->ref, 1);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700216 if (sock->type == SOCK_DGRAM)
Allan Stephens0ea52242008-07-14 22:42:19 -0700217 tipc_set_portunreliable(tp_ptr->ref, 1);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700218 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100219
Per Lidenb97bf3f2006-01-02 19:04:38 +0100220 return 0;
221}
222
223/**
Ying Xuec5fa7b32013-06-17 10:54:39 -0400224 * tipc_sock_create_local - create TIPC socket from inside TIPC module
225 * @type: socket type - SOCK_RDM or SOCK_SEQPACKET
226 *
227 * We cannot use sock_creat_kern here because it bumps module user count.
228 * Since socket owner and creator is the same module we must make sure
229 * that module count remains zero for module local sockets, otherwise
230 * we cannot do rmmod.
231 *
232 * Returns 0 on success, errno otherwise
233 */
234int tipc_sock_create_local(int type, struct socket **res)
235{
236 int rc;
Ying Xuec5fa7b32013-06-17 10:54:39 -0400237
238 rc = sock_create_lite(AF_TIPC, type, 0, res);
239 if (rc < 0) {
240 pr_err("Failed to create kernel socket\n");
241 return rc;
242 }
243 tipc_sk_create(&init_net, *res, 0, 1);
244
Ying Xuec5fa7b32013-06-17 10:54:39 -0400245 return 0;
246}
247
248/**
249 * tipc_sock_release_local - release socket created by tipc_sock_create_local
250 * @sock: the socket to be released.
251 *
252 * Module reference count is not incremented when such sockets are created,
253 * so we must keep it from being decremented when they are released.
254 */
255void tipc_sock_release_local(struct socket *sock)
256{
257 release(sock);
258 sock->ops = NULL;
259 sock_release(sock);
260}
261
262/**
263 * tipc_sock_accept_local - accept a connection on a socket created
264 * with tipc_sock_create_local. Use this function to avoid that
265 * module reference count is inadvertently incremented.
266 *
267 * @sock: the accepting socket
268 * @newsock: reference to the new socket to be created
269 * @flags: socket flags
270 */
271
272int tipc_sock_accept_local(struct socket *sock, struct socket **newsock,
Paul Gortmakerae8509c2013-06-17 10:54:47 -0400273 int flags)
Ying Xuec5fa7b32013-06-17 10:54:39 -0400274{
275 struct sock *sk = sock->sk;
276 int ret;
277
278 ret = sock_create_lite(sk->sk_family, sk->sk_type,
279 sk->sk_protocol, newsock);
280 if (ret < 0)
281 return ret;
282
283 ret = accept(sock, *newsock, flags);
284 if (ret < 0) {
285 sock_release(*newsock);
286 return ret;
287 }
288 (*newsock)->ops = sock->ops;
289 return ret;
290}
291
292/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100293 * release - destroy a TIPC socket
294 * @sock: socket to destroy
295 *
296 * This routine cleans up any messages that are still queued on the socket.
297 * For DGRAM and RDM socket types, all queued messages are rejected.
298 * For SEQPACKET and STREAM socket types, the first message is rejected
299 * and any others are discarded. (If the first message on a STREAM socket
300 * is partially-read, it is discarded and the next one is rejected instead.)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900301 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100302 * NOTE: Rejected messages are not necessarily returned to the sender! They
303 * are returned or discarded according to the "destination droppable" setting
304 * specified for the message by the sender.
305 *
306 * Returns 0 on success, errno otherwise
307 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100308static int release(struct socket *sock)
309{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100310 struct sock *sk = sock->sk;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700311 struct tipc_port *tport;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100312 struct sk_buff *buf;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700313 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100314
Allan Stephens0c3141e2008-04-15 00:22:02 -0700315 /*
316 * Exit if socket isn't fully initialized (occurs when a failed accept()
317 * releases a pre-allocated child socket that was never used)
318 */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700319 if (sk == NULL)
320 return 0;
321
322 tport = tipc_sk_port(sk);
323 lock_sock(sk);
324
325 /*
326 * Reject all unreceived messages, except on an active connection
327 * (which disconnects locally & sends a 'FIN+' to peer)
328 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100329 while (sock->state != SS_DISCONNECTING) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700330 buf = __skb_dequeue(&sk->sk_receive_queue);
331 if (buf == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100332 break;
Ying Xue40682432013-10-18 07:23:16 +0200333 if (TIPC_SKB_CB(buf)->handle != NULL)
Allan Stephens5f6d9122011-11-04 13:24:29 -0400334 kfree_skb(buf);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700335 else {
336 if ((sock->state == SS_CONNECTING) ||
337 (sock->state == SS_CONNECTED)) {
338 sock->state = SS_DISCONNECTING;
339 tipc_disconnect(tport->ref);
340 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100341 tipc_reject_msg(buf, TIPC_ERR_NO_PORT);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700342 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100343 }
344
Allan Stephens0c3141e2008-04-15 00:22:02 -0700345 /*
346 * Delete TIPC port; this ensures no more messages are queued
347 * (also disconnects an active connection & sends a 'FIN-' to peer)
348 */
Ying Xue84602762013-12-27 10:18:28 +0800349 res = tipc_deleteport(tport);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100350
Allan Stephens0c3141e2008-04-15 00:22:02 -0700351 /* Discard any remaining (connection-based) messages in receive queue */
Ying Xue57467e52013-01-20 23:30:08 +0100352 __skb_queue_purge(&sk->sk_receive_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100353
Allan Stephens0c3141e2008-04-15 00:22:02 -0700354 /* Reject any messages that accumulated in backlog queue */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700355 sock->state = SS_DISCONNECTING;
356 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100357
358 sock_put(sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700359 sock->sk = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100360
Per Lidenb97bf3f2006-01-02 19:04:38 +0100361 return res;
362}
363
364/**
365 * bind - associate or disassocate TIPC name(s) with a socket
366 * @sock: socket structure
367 * @uaddr: socket address describing name(s) and desired operation
368 * @uaddr_len: size of socket address data structure
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900369 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100370 * Name and name sequence binding is indicated using a positive scope value;
371 * a negative scope value unbinds the specified name. Specifying no name
372 * (i.e. a socket address length of 0) unbinds all names from the socket.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900373 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100374 * Returns 0 on success, errno otherwise
Allan Stephens0c3141e2008-04-15 00:22:02 -0700375 *
376 * NOTE: This routine doesn't need to take the socket lock since it doesn't
377 * access any non-constant socket information.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100378 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100379static int bind(struct socket *sock, struct sockaddr *uaddr, int uaddr_len)
380{
Ying Xue84602762013-12-27 10:18:28 +0800381 struct sock *sk = sock->sk;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100382 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
Ying Xue84602762013-12-27 10:18:28 +0800383 struct tipc_port *tport = tipc_sk_port(sock->sk);
384 int res = -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100385
Ying Xue84602762013-12-27 10:18:28 +0800386 lock_sock(sk);
387 if (unlikely(!uaddr_len)) {
388 res = tipc_withdraw(tport, 0, NULL);
389 goto exit;
390 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900391
Ying Xue84602762013-12-27 10:18:28 +0800392 if (uaddr_len < sizeof(struct sockaddr_tipc)) {
393 res = -EINVAL;
394 goto exit;
395 }
396 if (addr->family != AF_TIPC) {
397 res = -EAFNOSUPPORT;
398 goto exit;
399 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100400
Per Lidenb97bf3f2006-01-02 19:04:38 +0100401 if (addr->addrtype == TIPC_ADDR_NAME)
402 addr->addr.nameseq.upper = addr->addr.nameseq.lower;
Ying Xue84602762013-12-27 10:18:28 +0800403 else if (addr->addrtype != TIPC_ADDR_NAMESEQ) {
404 res = -EAFNOSUPPORT;
405 goto exit;
406 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900407
Ying Xue13a2e892013-06-17 10:54:40 -0400408 if ((addr->addr.nameseq.type < TIPC_RESERVED_TYPES) &&
Ying Xue7d0ab172013-06-17 10:54:41 -0400409 (addr->addr.nameseq.type != TIPC_TOP_SRV) &&
Ying Xue84602762013-12-27 10:18:28 +0800410 (addr->addr.nameseq.type != TIPC_CFG_SRV)) {
411 res = -EACCES;
412 goto exit;
413 }
Allan Stephensc422f1b2011-11-02 15:49:40 -0400414
Ying Xue84602762013-12-27 10:18:28 +0800415 res = (addr->scope > 0) ?
416 tipc_publish(tport, addr->scope, &addr->addr.nameseq) :
417 tipc_withdraw(tport, -addr->scope, &addr->addr.nameseq);
418exit:
419 release_sock(sk);
420 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100421}
422
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900423/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100424 * get_name - get port ID of socket or peer socket
425 * @sock: socket structure
426 * @uaddr: area for returned socket address
427 * @uaddr_len: area for returned length of socket address
Allan Stephens2da59912008-07-14 22:43:32 -0700428 * @peer: 0 = own ID, 1 = current peer ID, 2 = current/former peer ID
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900429 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100430 * Returns 0 on success, errno otherwise
Allan Stephens0c3141e2008-04-15 00:22:02 -0700431 *
Allan Stephens2da59912008-07-14 22:43:32 -0700432 * NOTE: This routine doesn't need to take the socket lock since it only
433 * accesses socket information that is unchanging (or which changes in
Allan Stephens0e659672010-12-31 18:59:32 +0000434 * a completely predictable manner).
Per Lidenb97bf3f2006-01-02 19:04:38 +0100435 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900436static int get_name(struct socket *sock, struct sockaddr *uaddr,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100437 int *uaddr_len, int peer)
438{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100439 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
Allan Stephens2da59912008-07-14 22:43:32 -0700440 struct tipc_sock *tsock = tipc_sk(sock->sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100441
Kulikov Vasiliy88f8a5e2010-10-31 07:10:32 +0000442 memset(addr, 0, sizeof(*addr));
Allan Stephens0c3141e2008-04-15 00:22:02 -0700443 if (peer) {
Allan Stephens2da59912008-07-14 22:43:32 -0700444 if ((sock->state != SS_CONNECTED) &&
445 ((peer != 2) || (sock->state != SS_DISCONNECTING)))
446 return -ENOTCONN;
447 addr->addr.id.ref = tsock->peer_name.ref;
448 addr->addr.id.node = tsock->peer_name.node;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700449 } else {
Allan Stephensb924dcf2010-11-30 12:01:03 +0000450 addr->addr.id.ref = tsock->p->ref;
451 addr->addr.id.node = tipc_own_addr;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700452 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100453
454 *uaddr_len = sizeof(*addr);
455 addr->addrtype = TIPC_ADDR_ID;
456 addr->family = AF_TIPC;
457 addr->scope = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100458 addr->addr.name.domain = 0;
459
Allan Stephens0c3141e2008-04-15 00:22:02 -0700460 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100461}
462
463/**
464 * poll - read and possibly block on pollmask
465 * @file: file structure associated with the socket
466 * @sock: socket for which to calculate the poll bits
467 * @wait: ???
468 *
Allan Stephens9b674e82008-03-26 16:48:21 -0700469 * Returns pollmask value
470 *
471 * COMMENTARY:
472 * It appears that the usual socket locking mechanisms are not useful here
473 * since the pollmask info is potentially out-of-date the moment this routine
474 * exits. TCP and other protocols seem to rely on higher level poll routines
475 * to handle any preventable race conditions, so TIPC will do the same ...
476 *
477 * TIPC sets the returned events as follows:
Allan Stephens9b674e82008-03-26 16:48:21 -0700478 *
Allan Stephensf662c072010-08-17 11:00:06 +0000479 * socket state flags set
480 * ------------ ---------
481 * unconnected no read flags
Erik Hugnec4fc2982012-10-16 16:47:06 +0200482 * POLLOUT if port is not congested
Allan Stephensf662c072010-08-17 11:00:06 +0000483 *
484 * connecting POLLIN/POLLRDNORM if ACK/NACK in rx queue
485 * no write flags
486 *
487 * connected POLLIN/POLLRDNORM if data in rx queue
488 * POLLOUT if port is not congested
489 *
490 * disconnecting POLLIN/POLLRDNORM/POLLHUP
491 * no write flags
492 *
493 * listening POLLIN if SYN in rx queue
494 * no write flags
495 *
496 * ready POLLIN/POLLRDNORM if data in rx queue
497 * [connectionless] POLLOUT (since port cannot be congested)
498 *
499 * IMPORTANT: The fact that a read or write operation is indicated does NOT
500 * imply that the operation will succeed, merely that it should be performed
501 * and will not block.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100502 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900503static unsigned int poll(struct file *file, struct socket *sock,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100504 poll_table *wait)
505{
Allan Stephens9b674e82008-03-26 16:48:21 -0700506 struct sock *sk = sock->sk;
Allan Stephensf662c072010-08-17 11:00:06 +0000507 u32 mask = 0;
Allan Stephens9b674e82008-03-26 16:48:21 -0700508
Ying Xuef288bef2012-08-21 11:16:57 +0800509 sock_poll_wait(file, sk_sleep(sk), wait);
Allan Stephens9b674e82008-03-26 16:48:21 -0700510
Allan Stephensf662c072010-08-17 11:00:06 +0000511 switch ((int)sock->state) {
Erik Hugnec4fc2982012-10-16 16:47:06 +0200512 case SS_UNCONNECTED:
513 if (!tipc_sk_port(sk)->congested)
514 mask |= POLLOUT;
515 break;
Allan Stephensf662c072010-08-17 11:00:06 +0000516 case SS_READY:
517 case SS_CONNECTED:
518 if (!tipc_sk_port(sk)->congested)
519 mask |= POLLOUT;
520 /* fall thru' */
521 case SS_CONNECTING:
522 case SS_LISTENING:
523 if (!skb_queue_empty(&sk->sk_receive_queue))
524 mask |= (POLLIN | POLLRDNORM);
525 break;
526 case SS_DISCONNECTING:
527 mask = (POLLIN | POLLRDNORM | POLLHUP);
528 break;
529 }
Allan Stephens9b674e82008-03-26 16:48:21 -0700530
531 return mask;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100532}
533
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900534/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100535 * dest_name_check - verify user is permitted to send to specified port name
536 * @dest: destination address
537 * @m: descriptor for message to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900538 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100539 * Prevents restricted configuration commands from being issued by
540 * unauthorized users.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900541 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100542 * Returns 0 if permission is granted, otherwise errno
543 */
Sam Ravnborg05790c62006-03-20 22:37:04 -0800544static int dest_name_check(struct sockaddr_tipc *dest, struct msghdr *m)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100545{
546 struct tipc_cfg_msg_hdr hdr;
547
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900548 if (likely(dest->addr.name.name.type >= TIPC_RESERVED_TYPES))
549 return 0;
550 if (likely(dest->addr.name.name.type == TIPC_TOP_SRV))
551 return 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900552 if (likely(dest->addr.name.name.type != TIPC_CFG_SRV))
553 return -EACCES;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100554
Allan Stephens3f8dd942011-01-18 13:09:29 -0500555 if (!m->msg_iovlen || (m->msg_iov[0].iov_len < sizeof(hdr)))
556 return -EMSGSIZE;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900557 if (copy_from_user(&hdr, m->msg_iov[0].iov_base, sizeof(hdr)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100558 return -EFAULT;
Allan Stephens70cb2342006-06-25 23:41:47 -0700559 if ((ntohs(hdr.tcm_type) & 0xC000) && (!capable(CAP_NET_ADMIN)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100560 return -EACCES;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900561
Per Lidenb97bf3f2006-01-02 19:04:38 +0100562 return 0;
563}
564
Ying Xue3f405042014-01-17 09:50:05 +0800565static int tipc_wait_for_sndmsg(struct socket *sock, long *timeo_p)
566{
567 struct sock *sk = sock->sk;
568 struct tipc_port *tport = tipc_sk_port(sk);
569 DEFINE_WAIT(wait);
570 int done;
571
572 do {
573 int err = sock_error(sk);
574 if (err)
575 return err;
576 if (sock->state == SS_DISCONNECTING)
577 return -EPIPE;
578 if (!*timeo_p)
579 return -EAGAIN;
580 if (signal_pending(current))
581 return sock_intr_errno(*timeo_p);
582
583 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
584 done = sk_wait_event(sk, timeo_p, !tport->congested);
585 finish_wait(sk_sleep(sk), &wait);
586 } while (!done);
587 return 0;
588}
589
Per Lidenb97bf3f2006-01-02 19:04:38 +0100590/**
591 * send_msg - send message in connectionless manner
Allan Stephens0c3141e2008-04-15 00:22:02 -0700592 * @iocb: if NULL, indicates that socket lock is already held
Per Lidenb97bf3f2006-01-02 19:04:38 +0100593 * @sock: socket structure
594 * @m: message to send
Allan Stephense9024f0f2006-06-25 23:43:57 -0700595 * @total_len: length of message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900596 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100597 * Message must have an destination specified explicitly.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900598 * Used for SOCK_RDM and SOCK_DGRAM messages,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100599 * and for 'SYN' messages on SOCK_SEQPACKET and SOCK_STREAM connections.
600 * (Note: 'SYN+' is prohibited on SOCK_STREAM.)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900601 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100602 * Returns the number of bytes sent on success, or errno otherwise
603 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100604static int send_msg(struct kiocb *iocb, struct socket *sock,
605 struct msghdr *m, size_t total_len)
606{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700607 struct sock *sk = sock->sk;
608 struct tipc_port *tport = tipc_sk_port(sk);
Steffen Hurrle342dfc32014-01-17 22:53:15 +0100609 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100610 int needs_conn;
Ying Xue3f405042014-01-17 09:50:05 +0800611 long timeo;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100612 int res = -EINVAL;
613
614 if (unlikely(!dest))
615 return -EDESTADDRREQ;
Allan Stephens51f9cc12006-06-25 23:49:06 -0700616 if (unlikely((m->msg_namelen < sizeof(*dest)) ||
617 (dest->family != AF_TIPC)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100618 return -EINVAL;
Ying Xue97f8b872013-01-31 21:51:47 +0100619 if (total_len > TIPC_MAX_USER_MSG_SIZE)
Allan Stephensc29c3f72010-04-20 17:58:24 -0400620 return -EMSGSIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100621
Allan Stephens0c3141e2008-04-15 00:22:02 -0700622 if (iocb)
623 lock_sock(sk);
624
Per Lidenb97bf3f2006-01-02 19:04:38 +0100625 needs_conn = (sock->state != SS_READY);
626 if (unlikely(needs_conn)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700627 if (sock->state == SS_LISTENING) {
628 res = -EPIPE;
629 goto exit;
Allan Stephens33880072006-06-25 23:44:57 -0700630 }
Allan Stephens0c3141e2008-04-15 00:22:02 -0700631 if (sock->state != SS_UNCONNECTED) {
632 res = -EISCONN;
633 goto exit;
634 }
Erik Hugne5d21cb72013-06-17 10:54:38 -0400635 if (tport->published) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700636 res = -EOPNOTSUPP;
637 goto exit;
638 }
639 if (dest->addrtype == TIPC_ADDR_NAME) {
640 tport->conn_type = dest->addr.name.name.type;
641 tport->conn_instance = dest->addr.name.name.instance;
642 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100643
644 /* Abort any pending connection attempts (very unlikely) */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700645 reject_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100646 }
647
Ying Xue3f405042014-01-17 09:50:05 +0800648 timeo = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900649 do {
650 if (dest->addrtype == TIPC_ADDR_NAME) {
Allan Stephens2db99832010-12-31 18:59:33 +0000651 res = dest_name_check(dest, m);
652 if (res)
Allan Stephens0c3141e2008-04-15 00:22:02 -0700653 break;
654 res = tipc_send2name(tport->ref,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900655 &dest->addr.name.name,
656 dest->addr.name.domain,
Allan Stephens26896902011-04-21 10:42:07 -0500657 m->msg_iov,
658 total_len);
Allan Stephens0e659672010-12-31 18:59:32 +0000659 } else if (dest->addrtype == TIPC_ADDR_ID) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700660 res = tipc_send2port(tport->ref,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900661 &dest->addr.id,
Allan Stephens26896902011-04-21 10:42:07 -0500662 m->msg_iov,
663 total_len);
Allan Stephens0e659672010-12-31 18:59:32 +0000664 } else if (dest->addrtype == TIPC_ADDR_MCAST) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100665 if (needs_conn) {
666 res = -EOPNOTSUPP;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700667 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100668 }
Allan Stephens2db99832010-12-31 18:59:33 +0000669 res = dest_name_check(dest, m);
670 if (res)
Allan Stephens0c3141e2008-04-15 00:22:02 -0700671 break;
672 res = tipc_multicast(tport->ref,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900673 &dest->addr.nameseq,
Allan Stephens26896902011-04-21 10:42:07 -0500674 m->msg_iov,
675 total_len);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900676 }
677 if (likely(res != -ELINKCONG)) {
Allan Stephensa0168922010-12-31 18:59:35 +0000678 if (needs_conn && (res >= 0))
Allan Stephens0c3141e2008-04-15 00:22:02 -0700679 sock->state = SS_CONNECTING;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700680 break;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900681 }
Ying Xue3f405042014-01-17 09:50:05 +0800682 res = tipc_wait_for_sndmsg(sock, &timeo);
683 if (res)
Allan Stephens0c3141e2008-04-15 00:22:02 -0700684 break;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900685 } while (1);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700686
687exit:
688 if (iocb)
689 release_sock(sk);
690 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100691}
692
Ying Xue391a6dd2014-01-17 09:50:06 +0800693static int tipc_wait_for_sndpkt(struct socket *sock, long *timeo_p)
694{
695 struct sock *sk = sock->sk;
696 struct tipc_port *tport = tipc_sk_port(sk);
697 DEFINE_WAIT(wait);
698 int done;
699
700 do {
701 int err = sock_error(sk);
702 if (err)
703 return err;
704 if (sock->state == SS_DISCONNECTING)
705 return -EPIPE;
706 else if (sock->state != SS_CONNECTED)
707 return -ENOTCONN;
708 if (!*timeo_p)
709 return -EAGAIN;
710 if (signal_pending(current))
711 return sock_intr_errno(*timeo_p);
712
713 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
714 done = sk_wait_event(sk, timeo_p,
715 (!tport->congested || !tport->connected));
716 finish_wait(sk_sleep(sk), &wait);
717 } while (!done);
718 return 0;
719}
720
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900721/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100722 * send_packet - send a connection-oriented message
Allan Stephens0c3141e2008-04-15 00:22:02 -0700723 * @iocb: if NULL, indicates that socket lock is already held
Per Lidenb97bf3f2006-01-02 19:04:38 +0100724 * @sock: socket structure
725 * @m: message to send
Allan Stephense9024f0f2006-06-25 23:43:57 -0700726 * @total_len: length of message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900727 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100728 * Used for SOCK_SEQPACKET messages and SOCK_STREAM data.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900729 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100730 * Returns the number of bytes sent on success, or errno otherwise
731 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100732static int send_packet(struct kiocb *iocb, struct socket *sock,
733 struct msghdr *m, size_t total_len)
734{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700735 struct sock *sk = sock->sk;
736 struct tipc_port *tport = tipc_sk_port(sk);
Steffen Hurrle342dfc32014-01-17 22:53:15 +0100737 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
Ying Xue391a6dd2014-01-17 09:50:06 +0800738 int res = -EINVAL;
739 long timeo;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100740
741 /* Handle implied connection establishment */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100742 if (unlikely(dest))
743 return send_msg(iocb, sock, m, total_len);
744
Ying Xue97f8b872013-01-31 21:51:47 +0100745 if (total_len > TIPC_MAX_USER_MSG_SIZE)
Allan Stephensc29c3f72010-04-20 17:58:24 -0400746 return -EMSGSIZE;
747
Allan Stephens0c3141e2008-04-15 00:22:02 -0700748 if (iocb)
749 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100750
Ying Xue391a6dd2014-01-17 09:50:06 +0800751 if (unlikely(sock->state != SS_CONNECTED)) {
752 if (sock->state == SS_DISCONNECTING)
753 res = -EPIPE;
754 else
755 res = -ENOTCONN;
756 goto exit;
757 }
Ying Xue1d835872011-07-06 05:53:15 -0400758
Ying Xue391a6dd2014-01-17 09:50:06 +0800759 timeo = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900760 do {
Ying Xue9446b872013-10-18 07:23:15 +0200761 res = tipc_send(tport->ref, m->msg_iov, total_len);
Allan Stephensa0168922010-12-31 18:59:35 +0000762 if (likely(res != -ELINKCONG))
Allan Stephens0c3141e2008-04-15 00:22:02 -0700763 break;
Ying Xue391a6dd2014-01-17 09:50:06 +0800764 res = tipc_wait_for_sndpkt(sock, &timeo);
765 if (res)
Allan Stephens0c3141e2008-04-15 00:22:02 -0700766 break;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900767 } while (1);
Ying Xue391a6dd2014-01-17 09:50:06 +0800768exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700769 if (iocb)
770 release_sock(sk);
771 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100772}
773
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900774/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100775 * send_stream - send stream-oriented data
776 * @iocb: (unused)
777 * @sock: socket structure
778 * @m: data to send
779 * @total_len: total length of data to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900780 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100781 * Used for SOCK_STREAM data.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900782 *
783 * Returns the number of bytes sent on success (or partial success),
Allan Stephens1303e8f2006-06-25 23:46:50 -0700784 * or errno if no data sent
Per Lidenb97bf3f2006-01-02 19:04:38 +0100785 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100786static int send_stream(struct kiocb *iocb, struct socket *sock,
787 struct msghdr *m, size_t total_len)
788{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700789 struct sock *sk = sock->sk;
790 struct tipc_port *tport = tipc_sk_port(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100791 struct msghdr my_msg;
792 struct iovec my_iov;
793 struct iovec *curr_iov;
794 int curr_iovlen;
795 char __user *curr_start;
Allan Stephens05646c92007-06-10 17:25:24 -0700796 u32 hdr_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100797 int curr_left;
798 int bytes_to_send;
Allan Stephens1303e8f2006-06-25 23:46:50 -0700799 int bytes_sent;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100800 int res;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900801
Allan Stephens0c3141e2008-04-15 00:22:02 -0700802 lock_sock(sk);
803
Allan Stephens05646c92007-06-10 17:25:24 -0700804 /* Handle special cases where there is no connection */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900805 if (unlikely(sock->state != SS_CONNECTED)) {
wangweidong3b8401f2013-12-12 09:36:40 +0800806 if (sock->state == SS_UNCONNECTED)
Allan Stephens0c3141e2008-04-15 00:22:02 -0700807 res = send_packet(NULL, sock, m, total_len);
wangweidongb0555972013-12-27 10:09:39 +0800808 else
809 res = sock->state == SS_DISCONNECTING ? -EPIPE : -ENOTCONN;
wangweidong3b8401f2013-12-12 09:36:40 +0800810 goto exit;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900811 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100812
Allan Stephens0c3141e2008-04-15 00:22:02 -0700813 if (unlikely(m->msg_name)) {
814 res = -EISCONN;
815 goto exit;
816 }
Allan Stephenseb5959c2006-10-16 21:43:54 -0700817
Ying Xue97f8b872013-01-31 21:51:47 +0100818 if (total_len > (unsigned int)INT_MAX) {
Allan Stephensc29c3f72010-04-20 17:58:24 -0400819 res = -EMSGSIZE;
820 goto exit;
821 }
822
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900823 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +0100824 * Send each iovec entry using one or more messages
825 *
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900826 * Note: This algorithm is good for the most likely case
Per Lidenb97bf3f2006-01-02 19:04:38 +0100827 * (i.e. one large iovec entry), but could be improved to pass sets
828 * of small iovec entries into send_packet().
829 */
Allan Stephens1303e8f2006-06-25 23:46:50 -0700830 curr_iov = m->msg_iov;
831 curr_iovlen = m->msg_iovlen;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100832 my_msg.msg_iov = &my_iov;
833 my_msg.msg_iovlen = 1;
Allan Stephenseb5959c2006-10-16 21:43:54 -0700834 my_msg.msg_flags = m->msg_flags;
835 my_msg.msg_name = NULL;
Allan Stephens1303e8f2006-06-25 23:46:50 -0700836 bytes_sent = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100837
Allan Stephens05646c92007-06-10 17:25:24 -0700838 hdr_size = msg_hdr_sz(&tport->phdr);
839
Per Lidenb97bf3f2006-01-02 19:04:38 +0100840 while (curr_iovlen--) {
841 curr_start = curr_iov->iov_base;
842 curr_left = curr_iov->iov_len;
843
844 while (curr_left) {
Allan Stephens05646c92007-06-10 17:25:24 -0700845 bytes_to_send = tport->max_pkt - hdr_size;
846 if (bytes_to_send > TIPC_MAX_USER_MSG_SIZE)
847 bytes_to_send = TIPC_MAX_USER_MSG_SIZE;
848 if (curr_left < bytes_to_send)
849 bytes_to_send = curr_left;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100850 my_iov.iov_base = curr_start;
851 my_iov.iov_len = bytes_to_send;
Allan Stephens26896902011-04-21 10:42:07 -0500852 res = send_packet(NULL, sock, &my_msg, bytes_to_send);
Allan Stephens2db99832010-12-31 18:59:33 +0000853 if (res < 0) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700854 if (bytes_sent)
Allan Stephens05646c92007-06-10 17:25:24 -0700855 res = bytes_sent;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700856 goto exit;
Allan Stephens1303e8f2006-06-25 23:46:50 -0700857 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100858 curr_left -= bytes_to_send;
859 curr_start += bytes_to_send;
Allan Stephens1303e8f2006-06-25 23:46:50 -0700860 bytes_sent += bytes_to_send;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100861 }
862
863 curr_iov++;
864 }
Allan Stephens0c3141e2008-04-15 00:22:02 -0700865 res = bytes_sent;
866exit:
867 release_sock(sk);
868 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100869}
870
871/**
872 * auto_connect - complete connection setup to a remote port
873 * @sock: socket structure
Per Lidenb97bf3f2006-01-02 19:04:38 +0100874 * @msg: peer's response message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900875 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100876 * Returns 0 on success, errno otherwise
877 */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700878static int auto_connect(struct socket *sock, struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100879{
Allan Stephens2da59912008-07-14 22:43:32 -0700880 struct tipc_sock *tsock = tipc_sk(sock->sk);
Ying Xue584d24b2012-11-29 18:51:19 -0500881 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100882
Allan Stephens2da59912008-07-14 22:43:32 -0700883 tsock->peer_name.ref = msg_origport(msg);
884 tsock->peer_name.node = msg_orignode(msg);
Ying Xue584d24b2012-11-29 18:51:19 -0500885 p_ptr = tipc_port_deref(tsock->p->ref);
886 if (!p_ptr)
887 return -EINVAL;
888
889 __tipc_connect(tsock->p->ref, p_ptr, &tsock->peer_name);
890
891 if (msg_importance(msg) > TIPC_CRITICAL_IMPORTANCE)
892 return -EINVAL;
893 msg_set_importance(&p_ptr->phdr, (u32)msg_importance(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100894 sock->state = SS_CONNECTED;
895 return 0;
896}
897
898/**
899 * set_orig_addr - capture sender's address for received message
900 * @m: descriptor for message info
901 * @msg: received message header
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900902 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100903 * Note: Address is not captured if not requested by receiver.
904 */
Sam Ravnborg05790c62006-03-20 22:37:04 -0800905static void set_orig_addr(struct msghdr *m, struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100906{
Steffen Hurrle342dfc32014-01-17 22:53:15 +0100907 DECLARE_SOCKADDR(struct sockaddr_tipc *, addr, m->msg_name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100908
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900909 if (addr) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100910 addr->family = AF_TIPC;
911 addr->addrtype = TIPC_ADDR_ID;
Mathias Krause60085c32013-04-07 01:52:00 +0000912 memset(&addr->addr, 0, sizeof(addr->addr));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100913 addr->addr.id.ref = msg_origport(msg);
914 addr->addr.id.node = msg_orignode(msg);
Allan Stephens0e659672010-12-31 18:59:32 +0000915 addr->addr.name.domain = 0; /* could leave uninitialized */
916 addr->scope = 0; /* could leave uninitialized */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100917 m->msg_namelen = sizeof(struct sockaddr_tipc);
918 }
919}
920
921/**
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900922 * anc_data_recv - optionally capture ancillary data for received message
Per Lidenb97bf3f2006-01-02 19:04:38 +0100923 * @m: descriptor for message info
924 * @msg: received message header
925 * @tport: TIPC port associated with message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900926 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100927 * Note: Ancillary data is not captured if not requested by receiver.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900928 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100929 * Returns 0 if successful, otherwise errno
930 */
Sam Ravnborg05790c62006-03-20 22:37:04 -0800931static int anc_data_recv(struct msghdr *m, struct tipc_msg *msg,
Paul Gortmakerae8509c2013-06-17 10:54:47 -0400932 struct tipc_port *tport)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100933{
934 u32 anc_data[3];
935 u32 err;
936 u32 dest_type;
Allan Stephens3546c752006-06-25 23:45:24 -0700937 int has_name;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100938 int res;
939
940 if (likely(m->msg_controllen == 0))
941 return 0;
942
943 /* Optionally capture errored message object(s) */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100944 err = msg ? msg_errcode(msg) : 0;
945 if (unlikely(err)) {
946 anc_data[0] = err;
947 anc_data[1] = msg_data_sz(msg);
Allan Stephens2db99832010-12-31 18:59:33 +0000948 res = put_cmsg(m, SOL_TIPC, TIPC_ERRINFO, 8, anc_data);
949 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100950 return res;
Allan Stephens2db99832010-12-31 18:59:33 +0000951 if (anc_data[1]) {
952 res = put_cmsg(m, SOL_TIPC, TIPC_RETDATA, anc_data[1],
953 msg_data(msg));
954 if (res)
955 return res;
956 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100957 }
958
959 /* Optionally capture message destination object */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100960 dest_type = msg ? msg_type(msg) : TIPC_DIRECT_MSG;
961 switch (dest_type) {
962 case TIPC_NAMED_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -0700963 has_name = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100964 anc_data[0] = msg_nametype(msg);
965 anc_data[1] = msg_namelower(msg);
966 anc_data[2] = msg_namelower(msg);
967 break;
968 case TIPC_MCAST_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -0700969 has_name = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100970 anc_data[0] = msg_nametype(msg);
971 anc_data[1] = msg_namelower(msg);
972 anc_data[2] = msg_nameupper(msg);
973 break;
974 case TIPC_CONN_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -0700975 has_name = (tport->conn_type != 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100976 anc_data[0] = tport->conn_type;
977 anc_data[1] = tport->conn_instance;
978 anc_data[2] = tport->conn_instance;
979 break;
980 default:
Allan Stephens3546c752006-06-25 23:45:24 -0700981 has_name = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100982 }
Allan Stephens2db99832010-12-31 18:59:33 +0000983 if (has_name) {
984 res = put_cmsg(m, SOL_TIPC, TIPC_DESTNAME, 12, anc_data);
985 if (res)
986 return res;
987 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100988
989 return 0;
990}
991
Ying Xue9bbb4ec2014-01-17 09:50:07 +0800992static int tipc_wait_for_rcvmsg(struct socket *sock, long timeo)
993{
994 struct sock *sk = sock->sk;
995 DEFINE_WAIT(wait);
996 int err;
997
998 for (;;) {
999 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Ying Xuefe8e4642014-03-06 14:40:18 +01001000 if (timeo && skb_queue_empty(&sk->sk_receive_queue)) {
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001001 if (sock->state == SS_DISCONNECTING) {
1002 err = -ENOTCONN;
1003 break;
1004 }
1005 release_sock(sk);
1006 timeo = schedule_timeout(timeo);
1007 lock_sock(sk);
1008 }
1009 err = 0;
1010 if (!skb_queue_empty(&sk->sk_receive_queue))
1011 break;
1012 err = sock_intr_errno(timeo);
1013 if (signal_pending(current))
1014 break;
1015 err = -EAGAIN;
1016 if (!timeo)
1017 break;
1018 }
1019 finish_wait(sk_sleep(sk), &wait);
1020 return err;
1021}
1022
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001023/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001024 * recv_msg - receive packet-oriented message
1025 * @iocb: (unused)
1026 * @m: descriptor for message info
1027 * @buf_len: total size of user buffer area
1028 * @flags: receive flags
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001029 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001030 * Used for SOCK_DGRAM, SOCK_RDM, and SOCK_SEQPACKET messages.
1031 * If the complete message doesn't fit in user area, truncate it.
1032 *
1033 * Returns size of returned message data, errno otherwise
1034 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001035static int recv_msg(struct kiocb *iocb, struct socket *sock,
1036 struct msghdr *m, size_t buf_len, int flags)
1037{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001038 struct sock *sk = sock->sk;
1039 struct tipc_port *tport = tipc_sk_port(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001040 struct sk_buff *buf;
1041 struct tipc_msg *msg;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001042 long timeo;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001043 unsigned int sz;
1044 u32 err;
1045 int res;
1046
Allan Stephens0c3141e2008-04-15 00:22:02 -07001047 /* Catch invalid receive requests */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001048 if (unlikely(!buf_len))
1049 return -EINVAL;
1050
Allan Stephens0c3141e2008-04-15 00:22:02 -07001051 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001052
Allan Stephens0c3141e2008-04-15 00:22:02 -07001053 if (unlikely(sock->state == SS_UNCONNECTED)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001054 res = -ENOTCONN;
1055 goto exit;
1056 }
1057
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001058 timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001059restart:
Per Lidenb97bf3f2006-01-02 19:04:38 +01001060
Allan Stephens0c3141e2008-04-15 00:22:02 -07001061 /* Look for a message in receive queue; wait if necessary */
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001062 res = tipc_wait_for_rcvmsg(sock, timeo);
1063 if (res)
1064 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001065
1066 /* Look at first message in receive queue */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001067 buf = skb_peek(&sk->sk_receive_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001068 msg = buf_msg(buf);
1069 sz = msg_data_sz(msg);
1070 err = msg_errcode(msg);
1071
Per Lidenb97bf3f2006-01-02 19:04:38 +01001072 /* Discard an empty non-errored message & try again */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001073 if ((!sz) && (!err)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07001074 advance_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001075 goto restart;
1076 }
1077
1078 /* Capture sender's address (optional) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001079 set_orig_addr(m, msg);
1080
1081 /* Capture ancillary data (optional) */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001082 res = anc_data_recv(m, msg, tport);
1083 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001084 goto exit;
1085
1086 /* Capture message data (if valid) & compute return value (always) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001087 if (!err) {
1088 if (unlikely(buf_len < sz)) {
1089 sz = buf_len;
1090 m->msg_flags |= MSG_TRUNC;
1091 }
Allan Stephens0232fd02011-02-21 09:45:40 -05001092 res = skb_copy_datagram_iovec(buf, msg_hdr_sz(msg),
1093 m->msg_iov, sz);
1094 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001095 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001096 res = sz;
1097 } else {
1098 if ((sock->state == SS_READY) ||
1099 ((err == TIPC_CONN_SHUTDOWN) || m->msg_control))
1100 res = 0;
1101 else
1102 res = -ECONNRESET;
1103 }
1104
1105 /* Consume received message (optional) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001106 if (likely(!(flags & MSG_PEEK))) {
Allan Stephens99009802008-04-15 00:06:12 -07001107 if ((sock->state != SS_READY) &&
Allan Stephens0c3141e2008-04-15 00:22:02 -07001108 (++tport->conn_unacked >= TIPC_FLOW_CONTROL_WIN))
1109 tipc_acknowledge(tport->ref, tport->conn_unacked);
1110 advance_rx_queue(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001111 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001112exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001113 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001114 return res;
1115}
1116
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001117/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001118 * recv_stream - receive stream-oriented data
1119 * @iocb: (unused)
1120 * @m: descriptor for message info
1121 * @buf_len: total size of user buffer area
1122 * @flags: receive flags
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001123 *
1124 * Used for SOCK_STREAM messages only. If not enough data is available
Per Lidenb97bf3f2006-01-02 19:04:38 +01001125 * will optionally wait for more; never truncates data.
1126 *
1127 * Returns size of returned message data, errno otherwise
1128 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001129static int recv_stream(struct kiocb *iocb, struct socket *sock,
1130 struct msghdr *m, size_t buf_len, int flags)
1131{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001132 struct sock *sk = sock->sk;
1133 struct tipc_port *tport = tipc_sk_port(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001134 struct sk_buff *buf;
1135 struct tipc_msg *msg;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001136 long timeo;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001137 unsigned int sz;
Florian Westphal3720d402010-08-17 11:00:04 +00001138 int sz_to_copy, target, needed;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001139 int sz_copied = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001140 u32 err;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001141 int res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001142
1143 /* Catch invalid receive attempts */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001144 if (unlikely(!buf_len))
1145 return -EINVAL;
1146
Allan Stephens0c3141e2008-04-15 00:22:02 -07001147 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001148
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001149 if (unlikely(sock->state == SS_UNCONNECTED)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001150 res = -ENOTCONN;
1151 goto exit;
1152 }
1153
Florian Westphal3720d402010-08-17 11:00:04 +00001154 target = sock_rcvlowat(sk, flags & MSG_WAITALL, buf_len);
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001155 timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001156
Allan Stephens0c3141e2008-04-15 00:22:02 -07001157restart:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001158 /* Look for a message in receive queue; wait if necessary */
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001159 res = tipc_wait_for_rcvmsg(sock, timeo);
1160 if (res)
1161 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001162
1163 /* Look at first message in receive queue */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001164 buf = skb_peek(&sk->sk_receive_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001165 msg = buf_msg(buf);
1166 sz = msg_data_sz(msg);
1167 err = msg_errcode(msg);
1168
1169 /* Discard an empty non-errored message & try again */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001170 if ((!sz) && (!err)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07001171 advance_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001172 goto restart;
1173 }
1174
1175 /* Optionally capture sender's address & ancillary data of first msg */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001176 if (sz_copied == 0) {
1177 set_orig_addr(m, msg);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001178 res = anc_data_recv(m, msg, tport);
1179 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001180 goto exit;
1181 }
1182
1183 /* Capture message data (if valid) & compute return value (always) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001184 if (!err) {
Allan Stephens0232fd02011-02-21 09:45:40 -05001185 u32 offset = (u32)(unsigned long)(TIPC_SKB_CB(buf)->handle);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001186
Allan Stephens0232fd02011-02-21 09:45:40 -05001187 sz -= offset;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001188 needed = (buf_len - sz_copied);
1189 sz_to_copy = (sz <= needed) ? sz : needed;
Allan Stephens0232fd02011-02-21 09:45:40 -05001190
1191 res = skb_copy_datagram_iovec(buf, msg_hdr_sz(msg) + offset,
1192 m->msg_iov, sz_to_copy);
1193 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001194 goto exit;
Allan Stephens0232fd02011-02-21 09:45:40 -05001195
Per Lidenb97bf3f2006-01-02 19:04:38 +01001196 sz_copied += sz_to_copy;
1197
1198 if (sz_to_copy < sz) {
1199 if (!(flags & MSG_PEEK))
Allan Stephens0232fd02011-02-21 09:45:40 -05001200 TIPC_SKB_CB(buf)->handle =
1201 (void *)(unsigned long)(offset + sz_to_copy);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001202 goto exit;
1203 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001204 } else {
1205 if (sz_copied != 0)
1206 goto exit; /* can't add error msg to valid data */
1207
1208 if ((err == TIPC_CONN_SHUTDOWN) || m->msg_control)
1209 res = 0;
1210 else
1211 res = -ECONNRESET;
1212 }
1213
1214 /* Consume received message (optional) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001215 if (likely(!(flags & MSG_PEEK))) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07001216 if (unlikely(++tport->conn_unacked >= TIPC_FLOW_CONTROL_WIN))
1217 tipc_acknowledge(tport->ref, tport->conn_unacked);
1218 advance_rx_queue(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001219 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001220
1221 /* Loop around if more data is required */
Joe Perchesf64f9e72009-11-29 16:55:45 -08001222 if ((sz_copied < buf_len) && /* didn't get all requested data */
1223 (!skb_queue_empty(&sk->sk_receive_queue) ||
Florian Westphal3720d402010-08-17 11:00:04 +00001224 (sz_copied < target)) && /* and more is ready or required */
Joe Perchesf64f9e72009-11-29 16:55:45 -08001225 (!(flags & MSG_PEEK)) && /* and aren't just peeking at data */
1226 (!err)) /* and haven't reached a FIN */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001227 goto restart;
1228
1229exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001230 release_sock(sk);
Allan Stephensa3b0a5a2006-06-25 23:48:22 -07001231 return sz_copied ? sz_copied : res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001232}
1233
1234/**
Ying Xuef288bef2012-08-21 11:16:57 +08001235 * tipc_write_space - wake up thread if port congestion is released
1236 * @sk: socket
1237 */
1238static void tipc_write_space(struct sock *sk)
1239{
1240 struct socket_wq *wq;
1241
1242 rcu_read_lock();
1243 wq = rcu_dereference(sk->sk_wq);
1244 if (wq_has_sleeper(wq))
1245 wake_up_interruptible_sync_poll(&wq->wait, POLLOUT |
1246 POLLWRNORM | POLLWRBAND);
1247 rcu_read_unlock();
1248}
1249
1250/**
1251 * tipc_data_ready - wake up threads to indicate messages have been received
1252 * @sk: socket
1253 * @len: the length of messages
1254 */
1255static void tipc_data_ready(struct sock *sk, int len)
1256{
1257 struct socket_wq *wq;
1258
1259 rcu_read_lock();
1260 wq = rcu_dereference(sk->sk_wq);
1261 if (wq_has_sleeper(wq))
1262 wake_up_interruptible_sync_poll(&wq->wait, POLLIN |
1263 POLLRDNORM | POLLRDBAND);
1264 rcu_read_unlock();
1265}
1266
1267/**
Ying Xue7e6c1312012-11-29 18:39:14 -05001268 * filter_connect - Handle all incoming messages for a connection-based socket
1269 * @tsock: TIPC socket
1270 * @msg: message
1271 *
1272 * Returns TIPC error status code and socket error status code
1273 * once it encounters some errors
1274 */
1275static u32 filter_connect(struct tipc_sock *tsock, struct sk_buff **buf)
1276{
1277 struct socket *sock = tsock->sk.sk_socket;
1278 struct tipc_msg *msg = buf_msg(*buf);
Ying Xue584d24b2012-11-29 18:51:19 -05001279 struct sock *sk = &tsock->sk;
Ying Xue7e6c1312012-11-29 18:39:14 -05001280 u32 retval = TIPC_ERR_NO_PORT;
Ying Xue584d24b2012-11-29 18:51:19 -05001281 int res;
Ying Xue7e6c1312012-11-29 18:39:14 -05001282
1283 if (msg_mcast(msg))
1284 return retval;
1285
1286 switch ((int)sock->state) {
1287 case SS_CONNECTED:
1288 /* Accept only connection-based messages sent by peer */
1289 if (msg_connected(msg) && tipc_port_peer_msg(tsock->p, msg)) {
1290 if (unlikely(msg_errcode(msg))) {
1291 sock->state = SS_DISCONNECTING;
1292 __tipc_disconnect(tsock->p);
1293 }
1294 retval = TIPC_OK;
1295 }
1296 break;
1297 case SS_CONNECTING:
1298 /* Accept only ACK or NACK message */
Ying Xue584d24b2012-11-29 18:51:19 -05001299 if (unlikely(msg_errcode(msg))) {
1300 sock->state = SS_DISCONNECTING;
Erik Hugne2c8d8512013-08-28 09:29:58 +02001301 sk->sk_err = ECONNREFUSED;
Ying Xue7e6c1312012-11-29 18:39:14 -05001302 retval = TIPC_OK;
Ying Xue584d24b2012-11-29 18:51:19 -05001303 break;
1304 }
1305
1306 if (unlikely(!msg_connected(msg)))
1307 break;
1308
1309 res = auto_connect(sock, msg);
1310 if (res) {
1311 sock->state = SS_DISCONNECTING;
Erik Hugne2c8d8512013-08-28 09:29:58 +02001312 sk->sk_err = -res;
Ying Xue584d24b2012-11-29 18:51:19 -05001313 retval = TIPC_OK;
1314 break;
1315 }
1316
1317 /* If an incoming message is an 'ACK-', it should be
1318 * discarded here because it doesn't contain useful
1319 * data. In addition, we should try to wake up
1320 * connect() routine if sleeping.
1321 */
1322 if (msg_data_sz(msg) == 0) {
1323 kfree_skb(*buf);
1324 *buf = NULL;
1325 if (waitqueue_active(sk_sleep(sk)))
1326 wake_up_interruptible(sk_sleep(sk));
1327 }
1328 retval = TIPC_OK;
Ying Xue7e6c1312012-11-29 18:39:14 -05001329 break;
1330 case SS_LISTENING:
1331 case SS_UNCONNECTED:
1332 /* Accept only SYN message */
1333 if (!msg_connected(msg) && !(msg_errcode(msg)))
1334 retval = TIPC_OK;
1335 break;
1336 case SS_DISCONNECTING:
1337 break;
1338 default:
1339 pr_err("Unknown socket state %u\n", sock->state);
1340 }
1341 return retval;
1342}
1343
1344/**
Ying Xueaba79f32013-01-20 23:30:09 +01001345 * rcvbuf_limit - get proper overload limit of socket receive queue
1346 * @sk: socket
1347 * @buf: message
1348 *
1349 * For all connection oriented messages, irrespective of importance,
1350 * the default overload value (i.e. 67MB) is set as limit.
1351 *
1352 * For all connectionless messages, by default new queue limits are
1353 * as belows:
1354 *
Ying Xuecc79dd12013-06-17 10:54:37 -04001355 * TIPC_LOW_IMPORTANCE (4 MB)
1356 * TIPC_MEDIUM_IMPORTANCE (8 MB)
1357 * TIPC_HIGH_IMPORTANCE (16 MB)
1358 * TIPC_CRITICAL_IMPORTANCE (32 MB)
Ying Xueaba79f32013-01-20 23:30:09 +01001359 *
1360 * Returns overload limit according to corresponding message importance
1361 */
1362static unsigned int rcvbuf_limit(struct sock *sk, struct sk_buff *buf)
1363{
1364 struct tipc_msg *msg = buf_msg(buf);
Ying Xueaba79f32013-01-20 23:30:09 +01001365
1366 if (msg_connected(msg))
wangweidong0cee6bb2013-12-12 09:36:39 +08001367 return sysctl_tipc_rmem[2];
1368
1369 return sk->sk_rcvbuf >> TIPC_CRITICAL_IMPORTANCE <<
1370 msg_importance(msg);
Ying Xueaba79f32013-01-20 23:30:09 +01001371}
1372
1373/**
Allan Stephens0c3141e2008-04-15 00:22:02 -07001374 * filter_rcv - validate incoming message
1375 * @sk: socket
Per Lidenb97bf3f2006-01-02 19:04:38 +01001376 * @buf: message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001377 *
Allan Stephens0c3141e2008-04-15 00:22:02 -07001378 * Enqueues message on receive queue if acceptable; optionally handles
1379 * disconnect indication for a connected socket.
1380 *
1381 * Called with socket lock already taken; port lock may also be taken.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001382 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001383 * Returns TIPC error status code (TIPC_OK if message is not to be rejected)
1384 */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001385static u32 filter_rcv(struct sock *sk, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001386{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001387 struct socket *sock = sk->sk_socket;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001388 struct tipc_msg *msg = buf_msg(buf);
Ying Xueaba79f32013-01-20 23:30:09 +01001389 unsigned int limit = rcvbuf_limit(sk, buf);
Ying Xue7e6c1312012-11-29 18:39:14 -05001390 u32 res = TIPC_OK;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001391
Per Lidenb97bf3f2006-01-02 19:04:38 +01001392 /* Reject message if it is wrong sort of message for socket */
Allan Stephensaad58542012-04-26 18:13:08 -04001393 if (msg_type(msg) > TIPC_DIRECT_MSG)
1394 return TIPC_ERR_NO_PORT;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001395
Per Lidenb97bf3f2006-01-02 19:04:38 +01001396 if (sock->state == SS_READY) {
Allan Stephensb29f1422010-12-31 18:59:25 +00001397 if (msg_connected(msg))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001398 return TIPC_ERR_NO_PORT;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001399 } else {
Ying Xue7e6c1312012-11-29 18:39:14 -05001400 res = filter_connect(tipc_sk(sk), &buf);
1401 if (res != TIPC_OK || buf == NULL)
1402 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001403 }
1404
1405 /* Reject message if there isn't room to queue it */
Ying Xueaba79f32013-01-20 23:30:09 +01001406 if (sk_rmem_alloc_get(sk) + buf->truesize >= limit)
1407 return TIPC_ERR_OVERLOAD;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001408
Ying Xueaba79f32013-01-20 23:30:09 +01001409 /* Enqueue message */
Ying Xue40682432013-10-18 07:23:16 +02001410 TIPC_SKB_CB(buf)->handle = NULL;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001411 __skb_queue_tail(&sk->sk_receive_queue, buf);
Ying Xueaba79f32013-01-20 23:30:09 +01001412 skb_set_owner_r(buf, sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001413
Ying Xuef288bef2012-08-21 11:16:57 +08001414 sk->sk_data_ready(sk, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001415 return TIPC_OK;
1416}
1417
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001418/**
Allan Stephens0c3141e2008-04-15 00:22:02 -07001419 * backlog_rcv - handle incoming message from backlog queue
1420 * @sk: socket
1421 * @buf: message
1422 *
1423 * Caller must hold socket lock, but not port lock.
1424 *
1425 * Returns 0
1426 */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001427static int backlog_rcv(struct sock *sk, struct sk_buff *buf)
1428{
1429 u32 res;
1430
1431 res = filter_rcv(sk, buf);
1432 if (res)
1433 tipc_reject_msg(buf, res);
1434 return 0;
1435}
1436
1437/**
1438 * dispatch - handle incoming message
1439 * @tport: TIPC port that received message
1440 * @buf: message
1441 *
1442 * Called with port lock already taken.
1443 *
1444 * Returns TIPC error status code (TIPC_OK if message is not to be rejected)
1445 */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001446static u32 dispatch(struct tipc_port *tport, struct sk_buff *buf)
1447{
Ying Xuec0fee8a2013-06-17 10:54:46 -04001448 struct sock *sk = tport->sk;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001449 u32 res;
1450
1451 /*
1452 * Process message if socket is unlocked; otherwise add to backlog queue
1453 *
1454 * This code is based on sk_receive_skb(), but must be distinct from it
1455 * since a TIPC-specific filter/reject mechanism is utilized
1456 */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001457 bh_lock_sock(sk);
1458 if (!sock_owned_by_user(sk)) {
1459 res = filter_rcv(sk, buf);
1460 } else {
Ying Xueaba79f32013-01-20 23:30:09 +01001461 if (sk_add_backlog(sk, buf, rcvbuf_limit(sk, buf)))
Zhu Yi53eecb12010-03-04 18:01:45 +00001462 res = TIPC_ERR_OVERLOAD;
1463 else
1464 res = TIPC_OK;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001465 }
1466 bh_unlock_sock(sk);
1467
1468 return res;
1469}
1470
1471/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001472 * wakeupdispatch - wake up port after congestion
1473 * @tport: port to wakeup
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001474 *
Allan Stephens0c3141e2008-04-15 00:22:02 -07001475 * Called with port lock already taken.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001476 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001477static void wakeupdispatch(struct tipc_port *tport)
1478{
Ying Xuec0fee8a2013-06-17 10:54:46 -04001479 struct sock *sk = tport->sk;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001480
Ying Xuef288bef2012-08-21 11:16:57 +08001481 sk->sk_write_space(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001482}
1483
Ying Xue78eb3a52014-01-17 09:50:03 +08001484static int tipc_wait_for_connect(struct socket *sock, long *timeo_p)
1485{
1486 struct sock *sk = sock->sk;
1487 DEFINE_WAIT(wait);
1488 int done;
1489
1490 do {
1491 int err = sock_error(sk);
1492 if (err)
1493 return err;
1494 if (!*timeo_p)
1495 return -ETIMEDOUT;
1496 if (signal_pending(current))
1497 return sock_intr_errno(*timeo_p);
1498
1499 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
1500 done = sk_wait_event(sk, timeo_p, sock->state != SS_CONNECTING);
1501 finish_wait(sk_sleep(sk), &wait);
1502 } while (!done);
1503 return 0;
1504}
1505
Per Lidenb97bf3f2006-01-02 19:04:38 +01001506/**
1507 * connect - establish a connection to another TIPC port
1508 * @sock: socket structure
1509 * @dest: socket address for destination port
1510 * @destlen: size of socket address data structure
Allan Stephens0c3141e2008-04-15 00:22:02 -07001511 * @flags: file-related flags associated with socket
Per Lidenb97bf3f2006-01-02 19:04:38 +01001512 *
1513 * Returns 0 on success, errno otherwise
1514 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001515static int connect(struct socket *sock, struct sockaddr *dest, int destlen,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001516 int flags)
1517{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001518 struct sock *sk = sock->sk;
Allan Stephensb89741a2008-04-15 00:20:37 -07001519 struct sockaddr_tipc *dst = (struct sockaddr_tipc *)dest;
1520 struct msghdr m = {NULL,};
Ying Xue78eb3a52014-01-17 09:50:03 +08001521 long timeout = (flags & O_NONBLOCK) ? 0 : tipc_sk(sk)->conn_timeout;
1522 socket_state previous;
Allan Stephensb89741a2008-04-15 00:20:37 -07001523 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001524
Allan Stephens0c3141e2008-04-15 00:22:02 -07001525 lock_sock(sk);
1526
Allan Stephensb89741a2008-04-15 00:20:37 -07001527 /* For now, TIPC does not allow use of connect() with DGRAM/RDM types */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001528 if (sock->state == SS_READY) {
1529 res = -EOPNOTSUPP;
1530 goto exit;
1531 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001532
Allan Stephensb89741a2008-04-15 00:20:37 -07001533 /*
1534 * Reject connection attempt using multicast address
1535 *
1536 * Note: send_msg() validates the rest of the address fields,
1537 * so there's no need to do it here
1538 */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001539 if (dst->addrtype == TIPC_ADDR_MCAST) {
1540 res = -EINVAL;
1541 goto exit;
1542 }
1543
Ying Xue78eb3a52014-01-17 09:50:03 +08001544 previous = sock->state;
Ying Xue584d24b2012-11-29 18:51:19 -05001545 switch (sock->state) {
1546 case SS_UNCONNECTED:
1547 /* Send a 'SYN-' to destination */
1548 m.msg_name = dest;
1549 m.msg_namelen = destlen;
1550
1551 /* If connect is in non-blocking case, set MSG_DONTWAIT to
1552 * indicate send_msg() is never blocked.
1553 */
1554 if (!timeout)
1555 m.msg_flags = MSG_DONTWAIT;
1556
1557 res = send_msg(NULL, sock, &m, 0);
1558 if ((res < 0) && (res != -EWOULDBLOCK))
1559 goto exit;
1560
1561 /* Just entered SS_CONNECTING state; the only
1562 * difference is that return value in non-blocking
1563 * case is EINPROGRESS, rather than EALREADY.
1564 */
1565 res = -EINPROGRESS;
Ying Xue584d24b2012-11-29 18:51:19 -05001566 case SS_CONNECTING:
Ying Xue78eb3a52014-01-17 09:50:03 +08001567 if (previous == SS_CONNECTING)
1568 res = -EALREADY;
1569 if (!timeout)
1570 goto exit;
1571 timeout = msecs_to_jiffies(timeout);
1572 /* Wait until an 'ACK' or 'RST' arrives, or a timeout occurs */
1573 res = tipc_wait_for_connect(sock, &timeout);
Ying Xue584d24b2012-11-29 18:51:19 -05001574 break;
1575 case SS_CONNECTED:
1576 res = -EISCONN;
1577 break;
1578 default:
1579 res = -EINVAL;
Ying Xue78eb3a52014-01-17 09:50:03 +08001580 break;
Allan Stephensb89741a2008-04-15 00:20:37 -07001581 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001582exit:
1583 release_sock(sk);
Allan Stephensb89741a2008-04-15 00:20:37 -07001584 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001585}
1586
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001587/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001588 * listen - allow socket to listen for incoming connections
1589 * @sock: socket structure
1590 * @len: (unused)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001591 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001592 * Returns 0 on success, errno otherwise
1593 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001594static int listen(struct socket *sock, int len)
1595{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001596 struct sock *sk = sock->sk;
1597 int res;
1598
1599 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001600
Ying Xue245f3d32011-07-06 06:01:13 -04001601 if (sock->state != SS_UNCONNECTED)
Allan Stephens0c3141e2008-04-15 00:22:02 -07001602 res = -EINVAL;
1603 else {
1604 sock->state = SS_LISTENING;
1605 res = 0;
1606 }
1607
1608 release_sock(sk);
1609 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001610}
1611
Ying Xue6398e232014-01-17 09:50:04 +08001612static int tipc_wait_for_accept(struct socket *sock, long timeo)
1613{
1614 struct sock *sk = sock->sk;
1615 DEFINE_WAIT(wait);
1616 int err;
1617
1618 /* True wake-one mechanism for incoming connections: only
1619 * one process gets woken up, not the 'whole herd'.
1620 * Since we do not 'race & poll' for established sockets
1621 * anymore, the common case will execute the loop only once.
1622 */
1623 for (;;) {
1624 prepare_to_wait_exclusive(sk_sleep(sk), &wait,
1625 TASK_INTERRUPTIBLE);
Ying Xuefe8e4642014-03-06 14:40:18 +01001626 if (timeo && skb_queue_empty(&sk->sk_receive_queue)) {
Ying Xue6398e232014-01-17 09:50:04 +08001627 release_sock(sk);
1628 timeo = schedule_timeout(timeo);
1629 lock_sock(sk);
1630 }
1631 err = 0;
1632 if (!skb_queue_empty(&sk->sk_receive_queue))
1633 break;
1634 err = -EINVAL;
1635 if (sock->state != SS_LISTENING)
1636 break;
1637 err = sock_intr_errno(timeo);
1638 if (signal_pending(current))
1639 break;
1640 err = -EAGAIN;
1641 if (!timeo)
1642 break;
1643 }
1644 finish_wait(sk_sleep(sk), &wait);
1645 return err;
1646}
1647
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001648/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001649 * accept - wait for connection request
1650 * @sock: listening socket
1651 * @newsock: new socket that is to be connected
1652 * @flags: file-related flags associated with socket
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001653 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001654 * Returns 0 on success, errno otherwise
1655 */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001656static int accept(struct socket *sock, struct socket *new_sock, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001657{
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001658 struct sock *new_sk, *sk = sock->sk;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001659 struct sk_buff *buf;
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001660 struct tipc_sock *new_tsock;
1661 struct tipc_port *new_tport;
1662 struct tipc_msg *msg;
1663 u32 new_ref;
Ying Xue6398e232014-01-17 09:50:04 +08001664 long timeo;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001665 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001666
Allan Stephens0c3141e2008-04-15 00:22:02 -07001667 lock_sock(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001668
Allan Stephens0c3141e2008-04-15 00:22:02 -07001669 if (sock->state != SS_LISTENING) {
1670 res = -EINVAL;
1671 goto exit;
1672 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001673
Ying Xue6398e232014-01-17 09:50:04 +08001674 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
1675 res = tipc_wait_for_accept(sock, timeo);
1676 if (res)
1677 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001678
1679 buf = skb_peek(&sk->sk_receive_queue);
1680
Ying Xuec5fa7b32013-06-17 10:54:39 -04001681 res = tipc_sk_create(sock_net(sock->sk), new_sock, 0, 1);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001682 if (res)
1683 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001684
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001685 new_sk = new_sock->sk;
1686 new_tsock = tipc_sk(new_sk);
1687 new_tport = new_tsock->p;
1688 new_ref = new_tport->ref;
1689 msg = buf_msg(buf);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001690
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001691 /* we lock on new_sk; but lockdep sees the lock on sk */
1692 lock_sock_nested(new_sk, SINGLE_DEPTH_NESTING);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001693
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001694 /*
1695 * Reject any stray messages received by new socket
1696 * before the socket lock was taken (very, very unlikely)
1697 */
1698 reject_rx_queue(new_sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001699
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001700 /* Connect new socket to it's peer */
1701 new_tsock->peer_name.ref = msg_origport(msg);
1702 new_tsock->peer_name.node = msg_orignode(msg);
1703 tipc_connect(new_ref, &new_tsock->peer_name);
1704 new_sock->state = SS_CONNECTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001705
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001706 tipc_set_portimportance(new_ref, msg_importance(msg));
1707 if (msg_named(msg)) {
1708 new_tport->conn_type = msg_nametype(msg);
1709 new_tport->conn_instance = msg_nameinst(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001710 }
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001711
1712 /*
1713 * Respond to 'SYN-' by discarding it & returning 'ACK'-.
1714 * Respond to 'SYN+' by queuing it on new socket.
1715 */
1716 if (!msg_data_sz(msg)) {
1717 struct msghdr m = {NULL,};
1718
1719 advance_rx_queue(sk);
1720 send_packet(NULL, new_sock, &m, 0);
1721 } else {
1722 __skb_dequeue(&sk->sk_receive_queue);
1723 __skb_queue_head(&new_sk->sk_receive_queue, buf);
Ying Xueaba79f32013-01-20 23:30:09 +01001724 skb_set_owner_r(buf, new_sk);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001725 }
1726 release_sock(new_sk);
1727
Per Lidenb97bf3f2006-01-02 19:04:38 +01001728exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001729 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001730 return res;
1731}
1732
1733/**
1734 * shutdown - shutdown socket connection
1735 * @sock: socket structure
Allan Stephense247a8f2008-03-06 15:05:38 -08001736 * @how: direction to close (must be SHUT_RDWR)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001737 *
1738 * Terminates connection (if necessary), then purges socket's receive queue.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001739 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001740 * Returns 0 on success, errno otherwise
1741 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001742static int shutdown(struct socket *sock, int how)
1743{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001744 struct sock *sk = sock->sk;
1745 struct tipc_port *tport = tipc_sk_port(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001746 struct sk_buff *buf;
1747 int res;
1748
Allan Stephense247a8f2008-03-06 15:05:38 -08001749 if (how != SHUT_RDWR)
1750 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001751
Allan Stephens0c3141e2008-04-15 00:22:02 -07001752 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001753
1754 switch (sock->state) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07001755 case SS_CONNECTING:
Per Lidenb97bf3f2006-01-02 19:04:38 +01001756 case SS_CONNECTED:
1757
Per Lidenb97bf3f2006-01-02 19:04:38 +01001758restart:
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001759 /* Disconnect and send a 'FIN+' or 'FIN-' message to peer */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001760 buf = __skb_dequeue(&sk->sk_receive_queue);
1761 if (buf) {
Ying Xue40682432013-10-18 07:23:16 +02001762 if (TIPC_SKB_CB(buf)->handle != NULL) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04001763 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001764 goto restart;
1765 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001766 tipc_disconnect(tport->ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001767 tipc_reject_msg(buf, TIPC_CONN_SHUTDOWN);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001768 } else {
1769 tipc_shutdown(tport->ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001770 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001771
1772 sock->state = SS_DISCONNECTING;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001773
1774 /* fall through */
1775
1776 case SS_DISCONNECTING:
1777
Ying Xue75031152012-10-29 09:38:15 -04001778 /* Discard any unreceived messages */
Ying Xue57467e52013-01-20 23:30:08 +01001779 __skb_queue_purge(&sk->sk_receive_queue);
Ying Xue75031152012-10-29 09:38:15 -04001780
1781 /* Wake up anyone sleeping in poll */
1782 sk->sk_state_change(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001783 res = 0;
1784 break;
1785
1786 default:
1787 res = -ENOTCONN;
1788 }
1789
Allan Stephens0c3141e2008-04-15 00:22:02 -07001790 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001791 return res;
1792}
1793
1794/**
1795 * setsockopt - set socket option
1796 * @sock: socket structure
1797 * @lvl: option level
1798 * @opt: option identifier
1799 * @ov: pointer to new option value
1800 * @ol: length of option value
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001801 *
1802 * For stream sockets only, accepts and ignores all IPPROTO_TCP options
Per Lidenb97bf3f2006-01-02 19:04:38 +01001803 * (to ease compatibility).
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001804 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001805 * Returns 0 on success, errno otherwise
1806 */
Paul Gortmakerae8509c2013-06-17 10:54:47 -04001807static int setsockopt(struct socket *sock, int lvl, int opt, char __user *ov,
1808 unsigned int ol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001809{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001810 struct sock *sk = sock->sk;
1811 struct tipc_port *tport = tipc_sk_port(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001812 u32 value;
1813 int res;
1814
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001815 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
1816 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001817 if (lvl != SOL_TIPC)
1818 return -ENOPROTOOPT;
1819 if (ol < sizeof(value))
1820 return -EINVAL;
Allan Stephens2db99832010-12-31 18:59:33 +00001821 res = get_user(value, (u32 __user *)ov);
1822 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001823 return res;
1824
Allan Stephens0c3141e2008-04-15 00:22:02 -07001825 lock_sock(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001826
Per Lidenb97bf3f2006-01-02 19:04:38 +01001827 switch (opt) {
1828 case TIPC_IMPORTANCE:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001829 res = tipc_set_portimportance(tport->ref, value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001830 break;
1831 case TIPC_SRC_DROPPABLE:
1832 if (sock->type != SOCK_STREAM)
Allan Stephens0c3141e2008-04-15 00:22:02 -07001833 res = tipc_set_portunreliable(tport->ref, value);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001834 else
Per Lidenb97bf3f2006-01-02 19:04:38 +01001835 res = -ENOPROTOOPT;
1836 break;
1837 case TIPC_DEST_DROPPABLE:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001838 res = tipc_set_portunreturnable(tport->ref, value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001839 break;
1840 case TIPC_CONN_TIMEOUT:
Allan Stephensa0f40f02011-05-26 13:44:34 -04001841 tipc_sk(sk)->conn_timeout = value;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001842 /* no need to set "res", since already 0 at this point */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001843 break;
1844 default:
1845 res = -EINVAL;
1846 }
1847
Allan Stephens0c3141e2008-04-15 00:22:02 -07001848 release_sock(sk);
1849
Per Lidenb97bf3f2006-01-02 19:04:38 +01001850 return res;
1851}
1852
1853/**
1854 * getsockopt - get socket option
1855 * @sock: socket structure
1856 * @lvl: option level
1857 * @opt: option identifier
1858 * @ov: receptacle for option value
1859 * @ol: receptacle for length of option value
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001860 *
1861 * For stream sockets only, returns 0 length result for all IPPROTO_TCP options
Per Lidenb97bf3f2006-01-02 19:04:38 +01001862 * (to ease compatibility).
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001863 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001864 * Returns 0 on success, errno otherwise
1865 */
Paul Gortmakerae8509c2013-06-17 10:54:47 -04001866static int getsockopt(struct socket *sock, int lvl, int opt, char __user *ov,
1867 int __user *ol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001868{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001869 struct sock *sk = sock->sk;
1870 struct tipc_port *tport = tipc_sk_port(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001871 int len;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001872 u32 value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001873 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001874
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001875 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
1876 return put_user(0, ol);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001877 if (lvl != SOL_TIPC)
1878 return -ENOPROTOOPT;
Allan Stephens2db99832010-12-31 18:59:33 +00001879 res = get_user(len, ol);
1880 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001881 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001882
Allan Stephens0c3141e2008-04-15 00:22:02 -07001883 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001884
1885 switch (opt) {
1886 case TIPC_IMPORTANCE:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001887 res = tipc_portimportance(tport->ref, &value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001888 break;
1889 case TIPC_SRC_DROPPABLE:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001890 res = tipc_portunreliable(tport->ref, &value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001891 break;
1892 case TIPC_DEST_DROPPABLE:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001893 res = tipc_portunreturnable(tport->ref, &value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001894 break;
1895 case TIPC_CONN_TIMEOUT:
Allan Stephensa0f40f02011-05-26 13:44:34 -04001896 value = tipc_sk(sk)->conn_timeout;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001897 /* no need to set "res", since already 0 at this point */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001898 break;
Allan Stephens0e659672010-12-31 18:59:32 +00001899 case TIPC_NODE_RECVQ_DEPTH:
Ying Xue9da3d472012-11-27 06:15:27 -05001900 value = 0; /* was tipc_queue_size, now obsolete */
oscar.medina@motorola.com66506132009-06-30 03:25:39 +00001901 break;
Allan Stephens0e659672010-12-31 18:59:32 +00001902 case TIPC_SOCK_RECVQ_DEPTH:
oscar.medina@motorola.com66506132009-06-30 03:25:39 +00001903 value = skb_queue_len(&sk->sk_receive_queue);
1904 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001905 default:
1906 res = -EINVAL;
1907 }
1908
Allan Stephens0c3141e2008-04-15 00:22:02 -07001909 release_sock(sk);
1910
Paul Gortmaker25860c32010-12-31 18:59:31 +00001911 if (res)
1912 return res; /* "get" failed */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001913
Paul Gortmaker25860c32010-12-31 18:59:31 +00001914 if (len < sizeof(value))
1915 return -EINVAL;
1916
1917 if (copy_to_user(ov, &value, sizeof(value)))
1918 return -EFAULT;
1919
1920 return put_user(sizeof(value), ol);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001921}
1922
Ben Hutchingsae86b9e2012-07-10 10:55:35 +00001923/* Protocol switches for the various types of TIPC sockets */
1924
Florian Westphalbca65ea2008-02-07 18:18:01 -08001925static const struct proto_ops msg_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00001926 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001927 .family = AF_TIPC,
1928 .release = release,
1929 .bind = bind,
1930 .connect = connect,
Allan Stephens5eee6a62007-06-10 17:24:55 -07001931 .socketpair = sock_no_socketpair,
Ying Xue245f3d32011-07-06 06:01:13 -04001932 .accept = sock_no_accept,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001933 .getname = get_name,
1934 .poll = poll,
Allan Stephens5eee6a62007-06-10 17:24:55 -07001935 .ioctl = sock_no_ioctl,
Ying Xue245f3d32011-07-06 06:01:13 -04001936 .listen = sock_no_listen,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001937 .shutdown = shutdown,
1938 .setsockopt = setsockopt,
1939 .getsockopt = getsockopt,
1940 .sendmsg = send_msg,
1941 .recvmsg = recv_msg,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09001942 .mmap = sock_no_mmap,
1943 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01001944};
1945
Florian Westphalbca65ea2008-02-07 18:18:01 -08001946static const struct proto_ops packet_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00001947 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001948 .family = AF_TIPC,
1949 .release = release,
1950 .bind = bind,
1951 .connect = connect,
Allan Stephens5eee6a62007-06-10 17:24:55 -07001952 .socketpair = sock_no_socketpair,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001953 .accept = accept,
1954 .getname = get_name,
1955 .poll = poll,
Allan Stephens5eee6a62007-06-10 17:24:55 -07001956 .ioctl = sock_no_ioctl,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001957 .listen = listen,
1958 .shutdown = shutdown,
1959 .setsockopt = setsockopt,
1960 .getsockopt = getsockopt,
1961 .sendmsg = send_packet,
1962 .recvmsg = recv_msg,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09001963 .mmap = sock_no_mmap,
1964 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01001965};
1966
Florian Westphalbca65ea2008-02-07 18:18:01 -08001967static const struct proto_ops stream_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00001968 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001969 .family = AF_TIPC,
1970 .release = release,
1971 .bind = bind,
1972 .connect = connect,
Allan Stephens5eee6a62007-06-10 17:24:55 -07001973 .socketpair = sock_no_socketpair,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001974 .accept = accept,
1975 .getname = get_name,
1976 .poll = poll,
Allan Stephens5eee6a62007-06-10 17:24:55 -07001977 .ioctl = sock_no_ioctl,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001978 .listen = listen,
1979 .shutdown = shutdown,
1980 .setsockopt = setsockopt,
1981 .getsockopt = getsockopt,
1982 .sendmsg = send_stream,
1983 .recvmsg = recv_stream,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09001984 .mmap = sock_no_mmap,
1985 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01001986};
1987
Florian Westphalbca65ea2008-02-07 18:18:01 -08001988static const struct net_proto_family tipc_family_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00001989 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001990 .family = AF_TIPC,
Ying Xuec5fa7b32013-06-17 10:54:39 -04001991 .create = tipc_sk_create
Per Lidenb97bf3f2006-01-02 19:04:38 +01001992};
1993
1994static struct proto tipc_proto = {
1995 .name = "TIPC",
1996 .owner = THIS_MODULE,
Ying Xuecc79dd12013-06-17 10:54:37 -04001997 .obj_size = sizeof(struct tipc_sock),
1998 .sysctl_rmem = sysctl_tipc_rmem
Per Lidenb97bf3f2006-01-02 19:04:38 +01001999};
2000
Ying Xuec5fa7b32013-06-17 10:54:39 -04002001static struct proto tipc_proto_kern = {
2002 .name = "TIPC",
2003 .obj_size = sizeof(struct tipc_sock),
2004 .sysctl_rmem = sysctl_tipc_rmem
2005};
2006
Per Lidenb97bf3f2006-01-02 19:04:38 +01002007/**
Per Liden4323add2006-01-18 00:38:21 +01002008 * tipc_socket_init - initialize TIPC socket interface
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002009 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002010 * Returns 0 on success, errno otherwise
2011 */
Per Liden4323add2006-01-18 00:38:21 +01002012int tipc_socket_init(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002013{
2014 int res;
2015
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002016 res = proto_register(&tipc_proto, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002017 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002018 pr_err("Failed to register TIPC protocol type\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002019 goto out;
2020 }
2021
2022 res = sock_register(&tipc_family_ops);
2023 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002024 pr_err("Failed to register TIPC socket type\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002025 proto_unregister(&tipc_proto);
2026 goto out;
2027 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002028 out:
2029 return res;
2030}
2031
2032/**
Per Liden4323add2006-01-18 00:38:21 +01002033 * tipc_socket_stop - stop TIPC socket interface
Per Lidenb97bf3f2006-01-02 19:04:38 +01002034 */
Per Liden4323add2006-01-18 00:38:21 +01002035void tipc_socket_stop(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002036{
Per Lidenb97bf3f2006-01-02 19:04:38 +01002037 sock_unregister(tipc_family_ops.family);
2038 proto_unregister(&tipc_proto);
2039}