blob: e1c791798ba1bac707b1887ab63d5c79ab963d3e [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 *
Allan Stephens5eee6a62007-06-10 17:24:55 -07004 * Copyright (c) 2001-2007, Ericsson AB
Allan Stephens4132fac2011-01-07 13:12:12 -05005 * Copyright (c) 2004-2008, 2010-2011, 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 <net/sock.h>
38
39#include <linux/tipc.h>
Per Lidenea714cc2006-01-11 12:28:47 +010040#include <linux/tipc_config.h>
Per Lidenb97bf3f2006-01-02 19:04:38 +010041
42#include "core.h"
Allan Stephensd265fef2010-11-30 12:00:53 +000043#include "port.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010044
45#define SS_LISTENING -1 /* socket is listening */
46#define SS_READY -2 /* socket is connectionless */
47
Allan Stephens3654ea02008-04-13 21:35:11 -070048#define OVERLOAD_LIMIT_BASE 5000
49#define CONN_TIMEOUT_DEFAULT 8000 /* default connect timeout = 8s */
Per Lidenb97bf3f2006-01-02 19:04:38 +010050
51struct tipc_sock {
52 struct sock sk;
53 struct tipc_port *p;
Allan Stephens2da59912008-07-14 22:43:32 -070054 struct tipc_portid peer_name;
Allan Stephens564e83b2010-08-17 11:00:15 +000055 long conn_timeout;
Per Lidenb97bf3f2006-01-02 19:04:38 +010056};
57
Allan Stephens0c3141e2008-04-15 00:22:02 -070058#define tipc_sk(sk) ((struct tipc_sock *)(sk))
59#define tipc_sk_port(sk) ((struct tipc_port *)(tipc_sk(sk)->p))
Per Lidenb97bf3f2006-01-02 19:04:38 +010060
Allan Stephens71092ea2011-02-23 14:52:14 -050061#define tipc_rx_ready(sock) (!skb_queue_empty(&sock->sk->sk_receive_queue) || \
62 (sock->state == SS_DISCONNECTING))
63
Allan Stephens0c3141e2008-04-15 00:22:02 -070064static int backlog_rcv(struct sock *sk, struct sk_buff *skb);
Per Lidenb97bf3f2006-01-02 19:04:38 +010065static u32 dispatch(struct tipc_port *tport, struct sk_buff *buf);
66static void wakeupdispatch(struct tipc_port *tport);
67
Florian Westphalbca65ea2008-02-07 18:18:01 -080068static const struct proto_ops packet_ops;
69static const struct proto_ops stream_ops;
70static const struct proto_ops msg_ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +010071
72static struct proto tipc_proto;
73
Allan Stephense3ec9c72010-12-31 18:59:34 +000074static int sockets_enabled;
Per Lidenb97bf3f2006-01-02 19:04:38 +010075
76static atomic_t tipc_queue_size = ATOMIC_INIT(0);
77
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090078/*
Allan Stephens0c3141e2008-04-15 00:22:02 -070079 * Revised TIPC socket locking policy:
80 *
81 * Most socket operations take the standard socket lock when they start
82 * and hold it until they finish (or until they need to sleep). Acquiring
83 * this lock grants the owner exclusive access to the fields of the socket
84 * data structures, with the exception of the backlog queue. A few socket
85 * operations can be done without taking the socket lock because they only
86 * read socket information that never changes during the life of the socket.
87 *
88 * Socket operations may acquire the lock for the associated TIPC port if they
89 * need to perform an operation on the port. If any routine needs to acquire
90 * both the socket lock and the port lock it must take the socket lock first
91 * to avoid the risk of deadlock.
92 *
93 * The dispatcher handling incoming messages cannot grab the socket lock in
94 * the standard fashion, since invoked it runs at the BH level and cannot block.
95 * Instead, it checks to see if the socket lock is currently owned by someone,
96 * and either handles the message itself or adds it to the socket's backlog
97 * queue; in the latter case the queued message is processed once the process
98 * owning the socket lock releases it.
99 *
100 * NOTE: Releasing the socket lock while an operation is sleeping overcomes
101 * the problem of a blocked socket operation preventing any other operations
102 * from occurring. However, applications must be careful if they have
103 * multiple threads trying to send (or receive) on the same socket, as these
104 * operations might interfere with each other. For example, doing a connect
105 * and a receive at the same time might allow the receive to consume the
106 * ACK message meant for the connect. While additional work could be done
107 * to try and overcome this, it doesn't seem to be worthwhile at the present.
108 *
109 * NOTE: Releasing the socket lock while an operation is sleeping also ensures
110 * that another operation that must be performed in a non-blocking manner is
111 * not delayed for very long because the lock has already been taken.
112 *
113 * NOTE: This code assumes that certain fields of a port/socket pair are
114 * constant over its lifetime; such fields can be examined without taking
115 * the socket lock and/or port lock, and do not need to be re-read even
116 * after resuming processing after waiting. These fields include:
117 * - socket type
118 * - pointer to socket sk structure (aka tipc_sock structure)
119 * - pointer to port structure
120 * - port reference
Per Lidenb97bf3f2006-01-02 19:04:38 +0100121 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100122
123/**
Allan Stephens0c3141e2008-04-15 00:22:02 -0700124 * advance_rx_queue - discard first buffer in socket receive queue
125 *
126 * Caller must hold socket lock
Per Lidenb97bf3f2006-01-02 19:04:38 +0100127 */
128
Allan Stephens0c3141e2008-04-15 00:22:02 -0700129static void advance_rx_queue(struct sock *sk)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100130{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700131 buf_discard(__skb_dequeue(&sk->sk_receive_queue));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100132 atomic_dec(&tipc_queue_size);
133}
134
135/**
Allan Stephens0c3141e2008-04-15 00:22:02 -0700136 * discard_rx_queue - discard all buffers in socket receive queue
137 *
138 * Caller must hold socket lock
139 */
140
141static void discard_rx_queue(struct sock *sk)
142{
143 struct sk_buff *buf;
144
145 while ((buf = __skb_dequeue(&sk->sk_receive_queue))) {
146 atomic_dec(&tipc_queue_size);
147 buf_discard(buf);
148 }
149}
150
151/**
152 * reject_rx_queue - reject all buffers in socket receive queue
153 *
154 * Caller must hold socket lock
155 */
156
157static void reject_rx_queue(struct sock *sk)
158{
159 struct sk_buff *buf;
160
161 while ((buf = __skb_dequeue(&sk->sk_receive_queue))) {
162 tipc_reject_msg(buf, TIPC_ERR_NO_PORT);
163 atomic_dec(&tipc_queue_size);
164 }
165}
166
167/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100168 * tipc_create - create a TIPC socket
Allan Stephens0c3141e2008-04-15 00:22:02 -0700169 * @net: network namespace (must be default network)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100170 * @sock: pre-allocated socket structure
171 * @protocol: protocol indicator (must be 0)
Eric Paris3f378b62009-11-05 22:18:14 -0800172 * @kern: caused by kernel or by userspace?
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900173 *
Allan Stephens0c3141e2008-04-15 00:22:02 -0700174 * This routine creates additional data structures used by the TIPC socket,
175 * initializes them, and links them together.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100176 *
177 * Returns 0 on success, errno otherwise
178 */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700179
Eric Paris3f378b62009-11-05 22:18:14 -0800180static int tipc_create(struct net *net, struct socket *sock, int protocol,
181 int kern)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100182{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700183 const struct proto_ops *ops;
184 socket_state state;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100185 struct sock *sk;
Allan Stephens7ef43eb2008-05-12 15:42:28 -0700186 struct tipc_port *tp_ptr;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700187
188 /* Validate arguments */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100189
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800190 if (!net_eq(net, &init_net))
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -0700191 return -EAFNOSUPPORT;
192
Per Lidenb97bf3f2006-01-02 19:04:38 +0100193 if (unlikely(protocol != 0))
194 return -EPROTONOSUPPORT;
195
Per Lidenb97bf3f2006-01-02 19:04:38 +0100196 switch (sock->type) {
197 case SOCK_STREAM:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700198 ops = &stream_ops;
199 state = SS_UNCONNECTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100200 break;
201 case SOCK_SEQPACKET:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700202 ops = &packet_ops;
203 state = SS_UNCONNECTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100204 break;
205 case SOCK_DGRAM:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100206 case SOCK_RDM:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700207 ops = &msg_ops;
208 state = SS_READY;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100209 break;
Allan Stephens49978652006-06-25 23:47:18 -0700210 default:
Allan Stephens49978652006-06-25 23:47:18 -0700211 return -EPROTOTYPE;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100212 }
213
Allan Stephens0c3141e2008-04-15 00:22:02 -0700214 /* Allocate socket's protocol area */
215
Pavel Emelyanov6257ff22007-11-01 00:39:31 -0700216 sk = sk_alloc(net, AF_TIPC, GFP_KERNEL, &tipc_proto);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700217 if (sk == NULL)
218 return -ENOMEM;
219
220 /* Allocate TIPC port for socket to use */
221
Allan Stephens0ea52242008-07-14 22:42:19 -0700222 tp_ptr = tipc_createport_raw(sk, &dispatch, &wakeupdispatch,
223 TIPC_LOW_IMPORTANCE);
224 if (unlikely(!tp_ptr)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700225 sk_free(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100226 return -ENOMEM;
227 }
228
Allan Stephens0c3141e2008-04-15 00:22:02 -0700229 /* Finish initializing socket data structures */
230
231 sock->ops = ops;
232 sock->state = state;
233
Per Lidenb97bf3f2006-01-02 19:04:38 +0100234 sock_init_data(sock, sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700235 sk->sk_backlog_rcv = backlog_rcv;
Allan Stephens0ea52242008-07-14 22:42:19 -0700236 tipc_sk(sk)->p = tp_ptr;
Allan Stephens564e83b2010-08-17 11:00:15 +0000237 tipc_sk(sk)->conn_timeout = msecs_to_jiffies(CONN_TIMEOUT_DEFAULT);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100238
Allan Stephens7ef43eb2008-05-12 15:42:28 -0700239 spin_unlock_bh(tp_ptr->lock);
240
Allan Stephens0c3141e2008-04-15 00:22:02 -0700241 if (sock->state == SS_READY) {
Allan Stephens0ea52242008-07-14 22:42:19 -0700242 tipc_set_portunreturnable(tp_ptr->ref, 1);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700243 if (sock->type == SOCK_DGRAM)
Allan Stephens0ea52242008-07-14 22:42:19 -0700244 tipc_set_portunreliable(tp_ptr->ref, 1);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700245 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100246
Per Lidenb97bf3f2006-01-02 19:04:38 +0100247 return 0;
248}
249
250/**
251 * release - destroy a TIPC socket
252 * @sock: socket to destroy
253 *
254 * This routine cleans up any messages that are still queued on the socket.
255 * For DGRAM and RDM socket types, all queued messages are rejected.
256 * For SEQPACKET and STREAM socket types, the first message is rejected
257 * and any others are discarded. (If the first message on a STREAM socket
258 * is partially-read, it is discarded and the next one is rejected instead.)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900259 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100260 * NOTE: Rejected messages are not necessarily returned to the sender! They
261 * are returned or discarded according to the "destination droppable" setting
262 * specified for the message by the sender.
263 *
264 * Returns 0 on success, errno otherwise
265 */
266
267static int release(struct socket *sock)
268{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100269 struct sock *sk = sock->sk;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700270 struct tipc_port *tport;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100271 struct sk_buff *buf;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700272 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100273
Allan Stephens0c3141e2008-04-15 00:22:02 -0700274 /*
275 * Exit if socket isn't fully initialized (occurs when a failed accept()
276 * releases a pre-allocated child socket that was never used)
277 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900278
Allan Stephens0c3141e2008-04-15 00:22:02 -0700279 if (sk == NULL)
280 return 0;
281
282 tport = tipc_sk_port(sk);
283 lock_sock(sk);
284
285 /*
286 * Reject all unreceived messages, except on an active connection
287 * (which disconnects locally & sends a 'FIN+' to peer)
288 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100289
290 while (sock->state != SS_DISCONNECTING) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700291 buf = __skb_dequeue(&sk->sk_receive_queue);
292 if (buf == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100293 break;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700294 atomic_dec(&tipc_queue_size);
Allan Stephens0232fd02011-02-21 09:45:40 -0500295 if (TIPC_SKB_CB(buf)->handle != 0)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100296 buf_discard(buf);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700297 else {
298 if ((sock->state == SS_CONNECTING) ||
299 (sock->state == SS_CONNECTED)) {
300 sock->state = SS_DISCONNECTING;
301 tipc_disconnect(tport->ref);
302 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100303 tipc_reject_msg(buf, TIPC_ERR_NO_PORT);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700304 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100305 }
306
Allan Stephens0c3141e2008-04-15 00:22:02 -0700307 /*
308 * Delete TIPC port; this ensures no more messages are queued
309 * (also disconnects an active connection & sends a 'FIN-' to peer)
310 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100311
Allan Stephens0c3141e2008-04-15 00:22:02 -0700312 res = tipc_deleteport(tport->ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100313
Allan Stephens0c3141e2008-04-15 00:22:02 -0700314 /* Discard any remaining (connection-based) messages in receive queue */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100315
Allan Stephens0c3141e2008-04-15 00:22:02 -0700316 discard_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100317
Allan Stephens0c3141e2008-04-15 00:22:02 -0700318 /* Reject any messages that accumulated in backlog queue */
319
320 sock->state = SS_DISCONNECTING;
321 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100322
323 sock_put(sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700324 sock->sk = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100325
Per Lidenb97bf3f2006-01-02 19:04:38 +0100326 return res;
327}
328
329/**
330 * bind - associate or disassocate TIPC name(s) with a socket
331 * @sock: socket structure
332 * @uaddr: socket address describing name(s) and desired operation
333 * @uaddr_len: size of socket address data structure
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900334 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100335 * Name and name sequence binding is indicated using a positive scope value;
336 * a negative scope value unbinds the specified name. Specifying no name
337 * (i.e. a socket address length of 0) unbinds all names from the socket.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900338 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100339 * Returns 0 on success, errno otherwise
Allan Stephens0c3141e2008-04-15 00:22:02 -0700340 *
341 * NOTE: This routine doesn't need to take the socket lock since it doesn't
342 * access any non-constant socket information.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100343 */
344
345static int bind(struct socket *sock, struct sockaddr *uaddr, int uaddr_len)
346{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100347 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700348 u32 portref = tipc_sk_port(sock->sk)->ref;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100349
Allan Stephens0c3141e2008-04-15 00:22:02 -0700350 if (unlikely(!uaddr_len))
351 return tipc_withdraw(portref, 0, NULL);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900352
Allan Stephens0c3141e2008-04-15 00:22:02 -0700353 if (uaddr_len < sizeof(struct sockaddr_tipc))
354 return -EINVAL;
355 if (addr->family != AF_TIPC)
356 return -EAFNOSUPPORT;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100357
Per Lidenb97bf3f2006-01-02 19:04:38 +0100358 if (addr->addrtype == TIPC_ADDR_NAME)
359 addr->addr.nameseq.upper = addr->addr.nameseq.lower;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700360 else if (addr->addrtype != TIPC_ADDR_NAMESEQ)
361 return -EAFNOSUPPORT;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900362
Allan Stephens0c3141e2008-04-15 00:22:02 -0700363 return (addr->scope > 0) ?
364 tipc_publish(portref, addr->scope, &addr->addr.nameseq) :
365 tipc_withdraw(portref, -addr->scope, &addr->addr.nameseq);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100366}
367
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900368/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100369 * get_name - get port ID of socket or peer socket
370 * @sock: socket structure
371 * @uaddr: area for returned socket address
372 * @uaddr_len: area for returned length of socket address
Allan Stephens2da59912008-07-14 22:43:32 -0700373 * @peer: 0 = own ID, 1 = current peer ID, 2 = current/former peer ID
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900374 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100375 * Returns 0 on success, errno otherwise
Allan Stephens0c3141e2008-04-15 00:22:02 -0700376 *
Allan Stephens2da59912008-07-14 22:43:32 -0700377 * NOTE: This routine doesn't need to take the socket lock since it only
378 * accesses socket information that is unchanging (or which changes in
Allan Stephens0e659672010-12-31 18:59:32 +0000379 * a completely predictable manner).
Per Lidenb97bf3f2006-01-02 19:04:38 +0100380 */
381
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900382static int get_name(struct socket *sock, struct sockaddr *uaddr,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100383 int *uaddr_len, int peer)
384{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100385 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
Allan Stephens2da59912008-07-14 22:43:32 -0700386 struct tipc_sock *tsock = tipc_sk(sock->sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100387
Kulikov Vasiliy88f8a5e2010-10-31 07:10:32 +0000388 memset(addr, 0, sizeof(*addr));
Allan Stephens0c3141e2008-04-15 00:22:02 -0700389 if (peer) {
Allan Stephens2da59912008-07-14 22:43:32 -0700390 if ((sock->state != SS_CONNECTED) &&
391 ((peer != 2) || (sock->state != SS_DISCONNECTING)))
392 return -ENOTCONN;
393 addr->addr.id.ref = tsock->peer_name.ref;
394 addr->addr.id.node = tsock->peer_name.node;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700395 } else {
Allan Stephensb924dcf2010-11-30 12:01:03 +0000396 addr->addr.id.ref = tsock->p->ref;
397 addr->addr.id.node = tipc_own_addr;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700398 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100399
400 *uaddr_len = sizeof(*addr);
401 addr->addrtype = TIPC_ADDR_ID;
402 addr->family = AF_TIPC;
403 addr->scope = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100404 addr->addr.name.domain = 0;
405
Allan Stephens0c3141e2008-04-15 00:22:02 -0700406 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100407}
408
409/**
410 * poll - read and possibly block on pollmask
411 * @file: file structure associated with the socket
412 * @sock: socket for which to calculate the poll bits
413 * @wait: ???
414 *
Allan Stephens9b674e82008-03-26 16:48:21 -0700415 * Returns pollmask value
416 *
417 * COMMENTARY:
418 * It appears that the usual socket locking mechanisms are not useful here
419 * since the pollmask info is potentially out-of-date the moment this routine
420 * exits. TCP and other protocols seem to rely on higher level poll routines
421 * to handle any preventable race conditions, so TIPC will do the same ...
422 *
423 * TIPC sets the returned events as follows:
Allan Stephens9b674e82008-03-26 16:48:21 -0700424 *
Allan Stephensf662c072010-08-17 11:00:06 +0000425 * socket state flags set
426 * ------------ ---------
427 * unconnected no read flags
428 * no write flags
429 *
430 * connecting POLLIN/POLLRDNORM if ACK/NACK in rx queue
431 * no write flags
432 *
433 * connected POLLIN/POLLRDNORM if data in rx queue
434 * POLLOUT if port is not congested
435 *
436 * disconnecting POLLIN/POLLRDNORM/POLLHUP
437 * no write flags
438 *
439 * listening POLLIN if SYN in rx queue
440 * no write flags
441 *
442 * ready POLLIN/POLLRDNORM if data in rx queue
443 * [connectionless] POLLOUT (since port cannot be congested)
444 *
445 * IMPORTANT: The fact that a read or write operation is indicated does NOT
446 * imply that the operation will succeed, merely that it should be performed
447 * and will not block.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100448 */
449
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900450static unsigned int poll(struct file *file, struct socket *sock,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100451 poll_table *wait)
452{
Allan Stephens9b674e82008-03-26 16:48:21 -0700453 struct sock *sk = sock->sk;
Allan Stephensf662c072010-08-17 11:00:06 +0000454 u32 mask = 0;
Allan Stephens9b674e82008-03-26 16:48:21 -0700455
Eric Dumazetaa395142010-04-20 13:03:51 +0000456 poll_wait(file, sk_sleep(sk), wait);
Allan Stephens9b674e82008-03-26 16:48:21 -0700457
Allan Stephensf662c072010-08-17 11:00:06 +0000458 switch ((int)sock->state) {
459 case SS_READY:
460 case SS_CONNECTED:
461 if (!tipc_sk_port(sk)->congested)
462 mask |= POLLOUT;
463 /* fall thru' */
464 case SS_CONNECTING:
465 case SS_LISTENING:
466 if (!skb_queue_empty(&sk->sk_receive_queue))
467 mask |= (POLLIN | POLLRDNORM);
468 break;
469 case SS_DISCONNECTING:
470 mask = (POLLIN | POLLRDNORM | POLLHUP);
471 break;
472 }
Allan Stephens9b674e82008-03-26 16:48:21 -0700473
474 return mask;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100475}
476
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900477/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100478 * dest_name_check - verify user is permitted to send to specified port name
479 * @dest: destination address
480 * @m: descriptor for message to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900481 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100482 * Prevents restricted configuration commands from being issued by
483 * unauthorized users.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900484 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100485 * Returns 0 if permission is granted, otherwise errno
486 */
487
Sam Ravnborg05790c62006-03-20 22:37:04 -0800488static int dest_name_check(struct sockaddr_tipc *dest, struct msghdr *m)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100489{
490 struct tipc_cfg_msg_hdr hdr;
491
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900492 if (likely(dest->addr.name.name.type >= TIPC_RESERVED_TYPES))
493 return 0;
494 if (likely(dest->addr.name.name.type == TIPC_TOP_SRV))
495 return 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900496 if (likely(dest->addr.name.name.type != TIPC_CFG_SRV))
497 return -EACCES;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100498
Allan Stephens3f8dd942011-01-18 13:09:29 -0500499 if (!m->msg_iovlen || (m->msg_iov[0].iov_len < sizeof(hdr)))
500 return -EMSGSIZE;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900501 if (copy_from_user(&hdr, m->msg_iov[0].iov_base, sizeof(hdr)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100502 return -EFAULT;
Allan Stephens70cb2342006-06-25 23:41:47 -0700503 if ((ntohs(hdr.tcm_type) & 0xC000) && (!capable(CAP_NET_ADMIN)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100504 return -EACCES;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900505
Per Lidenb97bf3f2006-01-02 19:04:38 +0100506 return 0;
507}
508
509/**
510 * send_msg - send message in connectionless manner
Allan Stephens0c3141e2008-04-15 00:22:02 -0700511 * @iocb: if NULL, indicates that socket lock is already held
Per Lidenb97bf3f2006-01-02 19:04:38 +0100512 * @sock: socket structure
513 * @m: message to send
Allan Stephense9024f0f2006-06-25 23:43:57 -0700514 * @total_len: length of message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900515 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100516 * Message must have an destination specified explicitly.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900517 * Used for SOCK_RDM and SOCK_DGRAM messages,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100518 * and for 'SYN' messages on SOCK_SEQPACKET and SOCK_STREAM connections.
519 * (Note: 'SYN+' is prohibited on SOCK_STREAM.)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900520 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100521 * Returns the number of bytes sent on success, or errno otherwise
522 */
523
524static int send_msg(struct kiocb *iocb, struct socket *sock,
525 struct msghdr *m, size_t total_len)
526{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700527 struct sock *sk = sock->sk;
528 struct tipc_port *tport = tipc_sk_port(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900529 struct sockaddr_tipc *dest = (struct sockaddr_tipc *)m->msg_name;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100530 int needs_conn;
531 int res = -EINVAL;
532
533 if (unlikely(!dest))
534 return -EDESTADDRREQ;
Allan Stephens51f9cc12006-06-25 23:49:06 -0700535 if (unlikely((m->msg_namelen < sizeof(*dest)) ||
536 (dest->family != AF_TIPC)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100537 return -EINVAL;
Allan Stephensc29c3f72010-04-20 17:58:24 -0400538 if ((total_len > TIPC_MAX_USER_MSG_SIZE) ||
539 (m->msg_iovlen > (unsigned)INT_MAX))
540 return -EMSGSIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100541
Allan Stephens0c3141e2008-04-15 00:22:02 -0700542 if (iocb)
543 lock_sock(sk);
544
Per Lidenb97bf3f2006-01-02 19:04:38 +0100545 needs_conn = (sock->state != SS_READY);
546 if (unlikely(needs_conn)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700547 if (sock->state == SS_LISTENING) {
548 res = -EPIPE;
549 goto exit;
Allan Stephens33880072006-06-25 23:44:57 -0700550 }
Allan Stephens0c3141e2008-04-15 00:22:02 -0700551 if (sock->state != SS_UNCONNECTED) {
552 res = -EISCONN;
553 goto exit;
554 }
555 if ((tport->published) ||
556 ((sock->type == SOCK_STREAM) && (total_len != 0))) {
557 res = -EOPNOTSUPP;
558 goto exit;
559 }
560 if (dest->addrtype == TIPC_ADDR_NAME) {
561 tport->conn_type = dest->addr.name.name.type;
562 tport->conn_instance = dest->addr.name.name.instance;
563 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100564
565 /* Abort any pending connection attempts (very unlikely) */
566
Allan Stephens0c3141e2008-04-15 00:22:02 -0700567 reject_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100568 }
569
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900570 do {
571 if (dest->addrtype == TIPC_ADDR_NAME) {
Allan Stephens2db99832010-12-31 18:59:33 +0000572 res = dest_name_check(dest, m);
573 if (res)
Allan Stephens0c3141e2008-04-15 00:22:02 -0700574 break;
575 res = tipc_send2name(tport->ref,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900576 &dest->addr.name.name,
577 dest->addr.name.domain,
578 m->msg_iovlen,
579 m->msg_iov);
Allan Stephens0e659672010-12-31 18:59:32 +0000580 } else if (dest->addrtype == TIPC_ADDR_ID) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700581 res = tipc_send2port(tport->ref,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900582 &dest->addr.id,
583 m->msg_iovlen,
584 m->msg_iov);
Allan Stephens0e659672010-12-31 18:59:32 +0000585 } else if (dest->addrtype == TIPC_ADDR_MCAST) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100586 if (needs_conn) {
587 res = -EOPNOTSUPP;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700588 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100589 }
Allan Stephens2db99832010-12-31 18:59:33 +0000590 res = dest_name_check(dest, m);
591 if (res)
Allan Stephens0c3141e2008-04-15 00:22:02 -0700592 break;
593 res = tipc_multicast(tport->ref,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900594 &dest->addr.nameseq,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900595 m->msg_iovlen,
596 m->msg_iov);
597 }
598 if (likely(res != -ELINKCONG)) {
Allan Stephensa0168922010-12-31 18:59:35 +0000599 if (needs_conn && (res >= 0))
Allan Stephens0c3141e2008-04-15 00:22:02 -0700600 sock->state = SS_CONNECTING;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700601 break;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900602 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100603 if (m->msg_flags & MSG_DONTWAIT) {
604 res = -EWOULDBLOCK;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700605 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100606 }
Allan Stephens0c3141e2008-04-15 00:22:02 -0700607 release_sock(sk);
Eric Dumazetaa395142010-04-20 13:03:51 +0000608 res = wait_event_interruptible(*sk_sleep(sk),
Allan Stephens0c3141e2008-04-15 00:22:02 -0700609 !tport->congested);
610 lock_sock(sk);
611 if (res)
612 break;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900613 } while (1);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700614
615exit:
616 if (iocb)
617 release_sock(sk);
618 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100619}
620
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900621/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100622 * send_packet - send a connection-oriented message
Allan Stephens0c3141e2008-04-15 00:22:02 -0700623 * @iocb: if NULL, indicates that socket lock is already held
Per Lidenb97bf3f2006-01-02 19:04:38 +0100624 * @sock: socket structure
625 * @m: message to send
Allan Stephense9024f0f2006-06-25 23:43:57 -0700626 * @total_len: length of message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900627 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100628 * Used for SOCK_SEQPACKET messages and SOCK_STREAM data.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900629 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100630 * Returns the number of bytes sent on success, or errno otherwise
631 */
632
633static int send_packet(struct kiocb *iocb, struct socket *sock,
634 struct msghdr *m, size_t total_len)
635{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700636 struct sock *sk = sock->sk;
637 struct tipc_port *tport = tipc_sk_port(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900638 struct sockaddr_tipc *dest = (struct sockaddr_tipc *)m->msg_name;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100639 int res;
640
641 /* Handle implied connection establishment */
642
643 if (unlikely(dest))
644 return send_msg(iocb, sock, m, total_len);
645
Allan Stephensc29c3f72010-04-20 17:58:24 -0400646 if ((total_len > TIPC_MAX_USER_MSG_SIZE) ||
647 (m->msg_iovlen > (unsigned)INT_MAX))
648 return -EMSGSIZE;
649
Allan Stephens0c3141e2008-04-15 00:22:02 -0700650 if (iocb)
651 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100652
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900653 do {
Allan Stephensbdd94782006-06-25 23:45:53 -0700654 if (unlikely(sock->state != SS_CONNECTED)) {
655 if (sock->state == SS_DISCONNECTING)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900656 res = -EPIPE;
Allan Stephensbdd94782006-06-25 23:45:53 -0700657 else
658 res = -ENOTCONN;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700659 break;
Allan Stephensbdd94782006-06-25 23:45:53 -0700660 }
661
Allan Stephens0c3141e2008-04-15 00:22:02 -0700662 res = tipc_send(tport->ref, m->msg_iovlen, m->msg_iov);
Allan Stephensa0168922010-12-31 18:59:35 +0000663 if (likely(res != -ELINKCONG))
Allan Stephens0c3141e2008-04-15 00:22:02 -0700664 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100665 if (m->msg_flags & MSG_DONTWAIT) {
666 res = -EWOULDBLOCK;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700667 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100668 }
Allan Stephens0c3141e2008-04-15 00:22:02 -0700669 release_sock(sk);
Eric Dumazetaa395142010-04-20 13:03:51 +0000670 res = wait_event_interruptible(*sk_sleep(sk),
Allan Stephens0c3141e2008-04-15 00:22:02 -0700671 (!tport->congested || !tport->connected));
672 lock_sock(sk);
673 if (res)
674 break;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900675 } while (1);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700676
677 if (iocb)
678 release_sock(sk);
679 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100680}
681
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900682/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100683 * send_stream - send stream-oriented data
684 * @iocb: (unused)
685 * @sock: socket structure
686 * @m: data to send
687 * @total_len: total length of data to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900688 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100689 * Used for SOCK_STREAM data.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900690 *
691 * Returns the number of bytes sent on success (or partial success),
Allan Stephens1303e8f2006-06-25 23:46:50 -0700692 * or errno if no data sent
Per Lidenb97bf3f2006-01-02 19:04:38 +0100693 */
694
Per Lidenb97bf3f2006-01-02 19:04:38 +0100695static int send_stream(struct kiocb *iocb, struct socket *sock,
696 struct msghdr *m, size_t total_len)
697{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700698 struct sock *sk = sock->sk;
699 struct tipc_port *tport = tipc_sk_port(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100700 struct msghdr my_msg;
701 struct iovec my_iov;
702 struct iovec *curr_iov;
703 int curr_iovlen;
704 char __user *curr_start;
Allan Stephens05646c92007-06-10 17:25:24 -0700705 u32 hdr_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100706 int curr_left;
707 int bytes_to_send;
Allan Stephens1303e8f2006-06-25 23:46:50 -0700708 int bytes_sent;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100709 int res;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900710
Allan Stephens0c3141e2008-04-15 00:22:02 -0700711 lock_sock(sk);
712
Allan Stephens05646c92007-06-10 17:25:24 -0700713 /* Handle special cases where there is no connection */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100714
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900715 if (unlikely(sock->state != SS_CONNECTED)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700716 if (sock->state == SS_UNCONNECTED) {
717 res = send_packet(NULL, sock, m, total_len);
718 goto exit;
719 } else if (sock->state == SS_DISCONNECTING) {
720 res = -EPIPE;
721 goto exit;
722 } else {
723 res = -ENOTCONN;
724 goto exit;
725 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900726 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100727
Allan Stephens0c3141e2008-04-15 00:22:02 -0700728 if (unlikely(m->msg_name)) {
729 res = -EISCONN;
730 goto exit;
731 }
Allan Stephenseb5959c2006-10-16 21:43:54 -0700732
Allan Stephensc29c3f72010-04-20 17:58:24 -0400733 if ((total_len > (unsigned)INT_MAX) ||
734 (m->msg_iovlen > (unsigned)INT_MAX)) {
735 res = -EMSGSIZE;
736 goto exit;
737 }
738
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900739 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +0100740 * Send each iovec entry using one or more messages
741 *
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900742 * Note: This algorithm is good for the most likely case
Per Lidenb97bf3f2006-01-02 19:04:38 +0100743 * (i.e. one large iovec entry), but could be improved to pass sets
744 * of small iovec entries into send_packet().
745 */
746
Allan Stephens1303e8f2006-06-25 23:46:50 -0700747 curr_iov = m->msg_iov;
748 curr_iovlen = m->msg_iovlen;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100749 my_msg.msg_iov = &my_iov;
750 my_msg.msg_iovlen = 1;
Allan Stephenseb5959c2006-10-16 21:43:54 -0700751 my_msg.msg_flags = m->msg_flags;
752 my_msg.msg_name = NULL;
Allan Stephens1303e8f2006-06-25 23:46:50 -0700753 bytes_sent = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100754
Allan Stephens05646c92007-06-10 17:25:24 -0700755 hdr_size = msg_hdr_sz(&tport->phdr);
756
Per Lidenb97bf3f2006-01-02 19:04:38 +0100757 while (curr_iovlen--) {
758 curr_start = curr_iov->iov_base;
759 curr_left = curr_iov->iov_len;
760
761 while (curr_left) {
Allan Stephens05646c92007-06-10 17:25:24 -0700762 bytes_to_send = tport->max_pkt - hdr_size;
763 if (bytes_to_send > TIPC_MAX_USER_MSG_SIZE)
764 bytes_to_send = TIPC_MAX_USER_MSG_SIZE;
765 if (curr_left < bytes_to_send)
766 bytes_to_send = curr_left;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100767 my_iov.iov_base = curr_start;
768 my_iov.iov_len = bytes_to_send;
Allan Stephens2db99832010-12-31 18:59:33 +0000769 res = send_packet(NULL, sock, &my_msg, 0);
770 if (res < 0) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700771 if (bytes_sent)
Allan Stephens05646c92007-06-10 17:25:24 -0700772 res = bytes_sent;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700773 goto exit;
Allan Stephens1303e8f2006-06-25 23:46:50 -0700774 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100775 curr_left -= bytes_to_send;
776 curr_start += bytes_to_send;
Allan Stephens1303e8f2006-06-25 23:46:50 -0700777 bytes_sent += bytes_to_send;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100778 }
779
780 curr_iov++;
781 }
Allan Stephens0c3141e2008-04-15 00:22:02 -0700782 res = bytes_sent;
783exit:
784 release_sock(sk);
785 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100786}
787
788/**
789 * auto_connect - complete connection setup to a remote port
790 * @sock: socket structure
Per Lidenb97bf3f2006-01-02 19:04:38 +0100791 * @msg: peer's response message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900792 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100793 * Returns 0 on success, errno otherwise
794 */
795
Allan Stephens0c3141e2008-04-15 00:22:02 -0700796static int auto_connect(struct socket *sock, struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100797{
Allan Stephens2da59912008-07-14 22:43:32 -0700798 struct tipc_sock *tsock = tipc_sk(sock->sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100799
800 if (msg_errcode(msg)) {
801 sock->state = SS_DISCONNECTING;
802 return -ECONNREFUSED;
803 }
804
Allan Stephens2da59912008-07-14 22:43:32 -0700805 tsock->peer_name.ref = msg_origport(msg);
806 tsock->peer_name.node = msg_orignode(msg);
807 tipc_connect2port(tsock->p->ref, &tsock->peer_name);
808 tipc_set_portimportance(tsock->p->ref, msg_importance(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100809 sock->state = SS_CONNECTED;
810 return 0;
811}
812
813/**
814 * set_orig_addr - capture sender's address for received message
815 * @m: descriptor for message info
816 * @msg: received message header
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900817 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100818 * Note: Address is not captured if not requested by receiver.
819 */
820
Sam Ravnborg05790c62006-03-20 22:37:04 -0800821static void set_orig_addr(struct msghdr *m, struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100822{
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900823 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)m->msg_name;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100824
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900825 if (addr) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100826 addr->family = AF_TIPC;
827 addr->addrtype = TIPC_ADDR_ID;
828 addr->addr.id.ref = msg_origport(msg);
829 addr->addr.id.node = msg_orignode(msg);
Allan Stephens0e659672010-12-31 18:59:32 +0000830 addr->addr.name.domain = 0; /* could leave uninitialized */
831 addr->scope = 0; /* could leave uninitialized */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100832 m->msg_namelen = sizeof(struct sockaddr_tipc);
833 }
834}
835
836/**
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900837 * anc_data_recv - optionally capture ancillary data for received message
Per Lidenb97bf3f2006-01-02 19:04:38 +0100838 * @m: descriptor for message info
839 * @msg: received message header
840 * @tport: TIPC port associated with message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900841 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100842 * Note: Ancillary data is not captured if not requested by receiver.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900843 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100844 * Returns 0 if successful, otherwise errno
845 */
846
Sam Ravnborg05790c62006-03-20 22:37:04 -0800847static int anc_data_recv(struct msghdr *m, struct tipc_msg *msg,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100848 struct tipc_port *tport)
849{
850 u32 anc_data[3];
851 u32 err;
852 u32 dest_type;
Allan Stephens3546c752006-06-25 23:45:24 -0700853 int has_name;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100854 int res;
855
856 if (likely(m->msg_controllen == 0))
857 return 0;
858
859 /* Optionally capture errored message object(s) */
860
861 err = msg ? msg_errcode(msg) : 0;
862 if (unlikely(err)) {
863 anc_data[0] = err;
864 anc_data[1] = msg_data_sz(msg);
Allan Stephens2db99832010-12-31 18:59:33 +0000865 res = put_cmsg(m, SOL_TIPC, TIPC_ERRINFO, 8, anc_data);
866 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100867 return res;
Allan Stephens2db99832010-12-31 18:59:33 +0000868 if (anc_data[1]) {
869 res = put_cmsg(m, SOL_TIPC, TIPC_RETDATA, anc_data[1],
870 msg_data(msg));
871 if (res)
872 return res;
873 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100874 }
875
876 /* Optionally capture message destination object */
877
878 dest_type = msg ? msg_type(msg) : TIPC_DIRECT_MSG;
879 switch (dest_type) {
880 case TIPC_NAMED_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -0700881 has_name = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100882 anc_data[0] = msg_nametype(msg);
883 anc_data[1] = msg_namelower(msg);
884 anc_data[2] = msg_namelower(msg);
885 break;
886 case TIPC_MCAST_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -0700887 has_name = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100888 anc_data[0] = msg_nametype(msg);
889 anc_data[1] = msg_namelower(msg);
890 anc_data[2] = msg_nameupper(msg);
891 break;
892 case TIPC_CONN_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -0700893 has_name = (tport->conn_type != 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100894 anc_data[0] = tport->conn_type;
895 anc_data[1] = tport->conn_instance;
896 anc_data[2] = tport->conn_instance;
897 break;
898 default:
Allan Stephens3546c752006-06-25 23:45:24 -0700899 has_name = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100900 }
Allan Stephens2db99832010-12-31 18:59:33 +0000901 if (has_name) {
902 res = put_cmsg(m, SOL_TIPC, TIPC_DESTNAME, 12, anc_data);
903 if (res)
904 return res;
905 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100906
907 return 0;
908}
909
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900910/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100911 * recv_msg - receive packet-oriented message
912 * @iocb: (unused)
913 * @m: descriptor for message info
914 * @buf_len: total size of user buffer area
915 * @flags: receive flags
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900916 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100917 * Used for SOCK_DGRAM, SOCK_RDM, and SOCK_SEQPACKET messages.
918 * If the complete message doesn't fit in user area, truncate it.
919 *
920 * Returns size of returned message data, errno otherwise
921 */
922
923static int recv_msg(struct kiocb *iocb, struct socket *sock,
924 struct msghdr *m, size_t buf_len, int flags)
925{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700926 struct sock *sk = sock->sk;
927 struct tipc_port *tport = tipc_sk_port(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100928 struct sk_buff *buf;
929 struct tipc_msg *msg;
Allan Stephens71092ea2011-02-23 14:52:14 -0500930 long timeout;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100931 unsigned int sz;
932 u32 err;
933 int res;
934
Allan Stephens0c3141e2008-04-15 00:22:02 -0700935 /* Catch invalid receive requests */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100936
Per Lidenb97bf3f2006-01-02 19:04:38 +0100937 if (unlikely(!buf_len))
938 return -EINVAL;
939
Allan Stephens0c3141e2008-04-15 00:22:02 -0700940 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100941
Allan Stephens0c3141e2008-04-15 00:22:02 -0700942 if (unlikely(sock->state == SS_UNCONNECTED)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100943 res = -ENOTCONN;
944 goto exit;
945 }
946
Allan Stephens71092ea2011-02-23 14:52:14 -0500947 timeout = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700948restart:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100949
Allan Stephens0c3141e2008-04-15 00:22:02 -0700950 /* Look for a message in receive queue; wait if necessary */
951
952 while (skb_queue_empty(&sk->sk_receive_queue)) {
953 if (sock->state == SS_DISCONNECTING) {
954 res = -ENOTCONN;
955 goto exit;
956 }
Allan Stephens71092ea2011-02-23 14:52:14 -0500957 if (timeout <= 0L) {
958 res = timeout ? timeout : -EWOULDBLOCK;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700959 goto exit;
960 }
961 release_sock(sk);
Allan Stephens71092ea2011-02-23 14:52:14 -0500962 timeout = wait_event_interruptible_timeout(*sk_sleep(sk),
963 tipc_rx_ready(sock),
964 timeout);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700965 lock_sock(sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700966 }
967
968 /* Look at first message in receive queue */
969
970 buf = skb_peek(&sk->sk_receive_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100971 msg = buf_msg(buf);
972 sz = msg_data_sz(msg);
973 err = msg_errcode(msg);
974
975 /* Complete connection setup for an implied connect */
976
977 if (unlikely(sock->state == SS_CONNECTING)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700978 res = auto_connect(sock, msg);
979 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100980 goto exit;
981 }
982
983 /* Discard an empty non-errored message & try again */
984
985 if ((!sz) && (!err)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700986 advance_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100987 goto restart;
988 }
989
990 /* Capture sender's address (optional) */
991
992 set_orig_addr(m, msg);
993
994 /* Capture ancillary data (optional) */
995
Allan Stephens0c3141e2008-04-15 00:22:02 -0700996 res = anc_data_recv(m, msg, tport);
997 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100998 goto exit;
999
1000 /* Capture message data (if valid) & compute return value (always) */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001001
Per Lidenb97bf3f2006-01-02 19:04:38 +01001002 if (!err) {
1003 if (unlikely(buf_len < sz)) {
1004 sz = buf_len;
1005 m->msg_flags |= MSG_TRUNC;
1006 }
Allan Stephens0232fd02011-02-21 09:45:40 -05001007 res = skb_copy_datagram_iovec(buf, msg_hdr_sz(msg),
1008 m->msg_iov, sz);
1009 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001010 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001011 res = sz;
1012 } else {
1013 if ((sock->state == SS_READY) ||
1014 ((err == TIPC_CONN_SHUTDOWN) || m->msg_control))
1015 res = 0;
1016 else
1017 res = -ECONNRESET;
1018 }
1019
1020 /* Consume received message (optional) */
1021
1022 if (likely(!(flags & MSG_PEEK))) {
Allan Stephens99009802008-04-15 00:06:12 -07001023 if ((sock->state != SS_READY) &&
Allan Stephens0c3141e2008-04-15 00:22:02 -07001024 (++tport->conn_unacked >= TIPC_FLOW_CONTROL_WIN))
1025 tipc_acknowledge(tport->ref, tport->conn_unacked);
1026 advance_rx_queue(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001027 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001028exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001029 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001030 return res;
1031}
1032
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001033/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001034 * recv_stream - receive stream-oriented data
1035 * @iocb: (unused)
1036 * @m: descriptor for message info
1037 * @buf_len: total size of user buffer area
1038 * @flags: receive flags
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001039 *
1040 * Used for SOCK_STREAM messages only. If not enough data is available
Per Lidenb97bf3f2006-01-02 19:04:38 +01001041 * will optionally wait for more; never truncates data.
1042 *
1043 * Returns size of returned message data, errno otherwise
1044 */
1045
1046static int recv_stream(struct kiocb *iocb, struct socket *sock,
1047 struct msghdr *m, size_t buf_len, int flags)
1048{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001049 struct sock *sk = sock->sk;
1050 struct tipc_port *tport = tipc_sk_port(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001051 struct sk_buff *buf;
1052 struct tipc_msg *msg;
Allan Stephens71092ea2011-02-23 14:52:14 -05001053 long timeout;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001054 unsigned int sz;
Florian Westphal3720d402010-08-17 11:00:04 +00001055 int sz_to_copy, target, needed;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001056 int sz_copied = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001057 u32 err;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001058 int res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001059
1060 /* Catch invalid receive attempts */
1061
1062 if (unlikely(!buf_len))
1063 return -EINVAL;
1064
Allan Stephens0c3141e2008-04-15 00:22:02 -07001065 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001066
Allan Stephens0c3141e2008-04-15 00:22:02 -07001067 if (unlikely((sock->state == SS_UNCONNECTED) ||
1068 (sock->state == SS_CONNECTING))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001069 res = -ENOTCONN;
1070 goto exit;
1071 }
1072
Florian Westphal3720d402010-08-17 11:00:04 +00001073 target = sock_rcvlowat(sk, flags & MSG_WAITALL, buf_len);
Allan Stephens71092ea2011-02-23 14:52:14 -05001074 timeout = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001075restart:
Per Lidenb97bf3f2006-01-02 19:04:38 +01001076
Allan Stephens0c3141e2008-04-15 00:22:02 -07001077 /* Look for a message in receive queue; wait if necessary */
1078
1079 while (skb_queue_empty(&sk->sk_receive_queue)) {
1080 if (sock->state == SS_DISCONNECTING) {
1081 res = -ENOTCONN;
1082 goto exit;
1083 }
Allan Stephens71092ea2011-02-23 14:52:14 -05001084 if (timeout <= 0L) {
1085 res = timeout ? timeout : -EWOULDBLOCK;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001086 goto exit;
1087 }
1088 release_sock(sk);
Allan Stephens71092ea2011-02-23 14:52:14 -05001089 timeout = wait_event_interruptible_timeout(*sk_sleep(sk),
1090 tipc_rx_ready(sock),
1091 timeout);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001092 lock_sock(sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001093 }
1094
1095 /* Look at first message in receive queue */
1096
1097 buf = skb_peek(&sk->sk_receive_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001098 msg = buf_msg(buf);
1099 sz = msg_data_sz(msg);
1100 err = msg_errcode(msg);
1101
1102 /* Discard an empty non-errored message & try again */
1103
1104 if ((!sz) && (!err)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07001105 advance_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001106 goto restart;
1107 }
1108
1109 /* Optionally capture sender's address & ancillary data of first msg */
1110
1111 if (sz_copied == 0) {
1112 set_orig_addr(m, msg);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001113 res = anc_data_recv(m, msg, tport);
1114 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001115 goto exit;
1116 }
1117
1118 /* Capture message data (if valid) & compute return value (always) */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001119
Per Lidenb97bf3f2006-01-02 19:04:38 +01001120 if (!err) {
Allan Stephens0232fd02011-02-21 09:45:40 -05001121 u32 offset = (u32)(unsigned long)(TIPC_SKB_CB(buf)->handle);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001122
Allan Stephens0232fd02011-02-21 09:45:40 -05001123 sz -= offset;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001124 needed = (buf_len - sz_copied);
1125 sz_to_copy = (sz <= needed) ? sz : needed;
Allan Stephens0232fd02011-02-21 09:45:40 -05001126
1127 res = skb_copy_datagram_iovec(buf, msg_hdr_sz(msg) + offset,
1128 m->msg_iov, sz_to_copy);
1129 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001130 goto exit;
Allan Stephens0232fd02011-02-21 09:45:40 -05001131
Per Lidenb97bf3f2006-01-02 19:04:38 +01001132 sz_copied += sz_to_copy;
1133
1134 if (sz_to_copy < sz) {
1135 if (!(flags & MSG_PEEK))
Allan Stephens0232fd02011-02-21 09:45:40 -05001136 TIPC_SKB_CB(buf)->handle =
1137 (void *)(unsigned long)(offset + sz_to_copy);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001138 goto exit;
1139 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001140 } else {
1141 if (sz_copied != 0)
1142 goto exit; /* can't add error msg to valid data */
1143
1144 if ((err == TIPC_CONN_SHUTDOWN) || m->msg_control)
1145 res = 0;
1146 else
1147 res = -ECONNRESET;
1148 }
1149
1150 /* Consume received message (optional) */
1151
1152 if (likely(!(flags & MSG_PEEK))) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07001153 if (unlikely(++tport->conn_unacked >= TIPC_FLOW_CONTROL_WIN))
1154 tipc_acknowledge(tport->ref, tport->conn_unacked);
1155 advance_rx_queue(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001156 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001157
1158 /* Loop around if more data is required */
1159
Joe Perchesf64f9e72009-11-29 16:55:45 -08001160 if ((sz_copied < buf_len) && /* didn't get all requested data */
1161 (!skb_queue_empty(&sk->sk_receive_queue) ||
Florian Westphal3720d402010-08-17 11:00:04 +00001162 (sz_copied < target)) && /* and more is ready or required */
Joe Perchesf64f9e72009-11-29 16:55:45 -08001163 (!(flags & MSG_PEEK)) && /* and aren't just peeking at data */
1164 (!err)) /* and haven't reached a FIN */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001165 goto restart;
1166
1167exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001168 release_sock(sk);
Allan Stephensa3b0a5a2006-06-25 23:48:22 -07001169 return sz_copied ? sz_copied : res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001170}
1171
1172/**
Allan Stephens1819b832008-04-15 00:15:50 -07001173 * rx_queue_full - determine if receive queue can accept another message
1174 * @msg: message to be added to queue
Per Lidenb97bf3f2006-01-02 19:04:38 +01001175 * @queue_size: current size of queue
1176 * @base: nominal maximum size of queue
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001177 *
Allan Stephens1819b832008-04-15 00:15:50 -07001178 * Returns 1 if queue is unable to accept message, 0 otherwise
Per Lidenb97bf3f2006-01-02 19:04:38 +01001179 */
1180
Allan Stephens1819b832008-04-15 00:15:50 -07001181static int rx_queue_full(struct tipc_msg *msg, u32 queue_size, u32 base)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001182{
1183 u32 threshold;
1184 u32 imp = msg_importance(msg);
1185
1186 if (imp == TIPC_LOW_IMPORTANCE)
1187 threshold = base;
1188 else if (imp == TIPC_MEDIUM_IMPORTANCE)
1189 threshold = base * 2;
1190 else if (imp == TIPC_HIGH_IMPORTANCE)
1191 threshold = base * 100;
1192 else
1193 return 0;
1194
1195 if (msg_connected(msg))
1196 threshold *= 4;
1197
Eric Dumazeta02cec22010-09-22 20:43:57 +00001198 return queue_size >= threshold;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001199}
1200
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001201/**
Allan Stephens0c3141e2008-04-15 00:22:02 -07001202 * filter_rcv - validate incoming message
1203 * @sk: socket
Per Lidenb97bf3f2006-01-02 19:04:38 +01001204 * @buf: message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001205 *
Allan Stephens0c3141e2008-04-15 00:22:02 -07001206 * Enqueues message on receive queue if acceptable; optionally handles
1207 * disconnect indication for a connected socket.
1208 *
1209 * Called with socket lock already taken; port lock may also be taken.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001210 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001211 * Returns TIPC error status code (TIPC_OK if message is not to be rejected)
1212 */
1213
Allan Stephens0c3141e2008-04-15 00:22:02 -07001214static u32 filter_rcv(struct sock *sk, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001215{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001216 struct socket *sock = sk->sk_socket;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001217 struct tipc_msg *msg = buf_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001218 u32 recv_q_len;
1219
Per Lidenb97bf3f2006-01-02 19:04:38 +01001220 /* Reject message if it is wrong sort of message for socket */
1221
1222 /*
1223 * WOULD IT BE BETTER TO JUST DISCARD THESE MESSAGES INSTEAD?
1224 * "NO PORT" ISN'T REALLY THE RIGHT ERROR CODE, AND THERE MAY
1225 * BE SECURITY IMPLICATIONS INHERENT IN REJECTING INVALID TRAFFIC
1226 */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001227
Per Lidenb97bf3f2006-01-02 19:04:38 +01001228 if (sock->state == SS_READY) {
Allan Stephensb29f1422010-12-31 18:59:25 +00001229 if (msg_connected(msg))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001230 return TIPC_ERR_NO_PORT;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001231 } else {
Allan Stephensb29f1422010-12-31 18:59:25 +00001232 if (msg_mcast(msg))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001233 return TIPC_ERR_NO_PORT;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001234 if (sock->state == SS_CONNECTED) {
Allan Stephensb29f1422010-12-31 18:59:25 +00001235 if (!msg_connected(msg))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001236 return TIPC_ERR_NO_PORT;
Allan Stephensb29f1422010-12-31 18:59:25 +00001237 } else if (sock->state == SS_CONNECTING) {
1238 if (!msg_connected(msg) && (msg_errcode(msg) == 0))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001239 return TIPC_ERR_NO_PORT;
Allan Stephensb29f1422010-12-31 18:59:25 +00001240 } else if (sock->state == SS_LISTENING) {
1241 if (msg_connected(msg) || msg_errcode(msg))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001242 return TIPC_ERR_NO_PORT;
Allan Stephensb29f1422010-12-31 18:59:25 +00001243 } else if (sock->state == SS_DISCONNECTING) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001244 return TIPC_ERR_NO_PORT;
Allan Stephensb29f1422010-12-31 18:59:25 +00001245 } else /* (sock->state == SS_UNCONNECTED) */ {
1246 if (msg_connected(msg) || msg_errcode(msg))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001247 return TIPC_ERR_NO_PORT;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001248 }
1249 }
1250
1251 /* Reject message if there isn't room to queue it */
1252
Allan Stephens1819b832008-04-15 00:15:50 -07001253 recv_q_len = (u32)atomic_read(&tipc_queue_size);
1254 if (unlikely(recv_q_len >= OVERLOAD_LIMIT_BASE)) {
1255 if (rx_queue_full(msg, recv_q_len, OVERLOAD_LIMIT_BASE))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001256 return TIPC_ERR_OVERLOAD;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001257 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001258 recv_q_len = skb_queue_len(&sk->sk_receive_queue);
Allan Stephens1819b832008-04-15 00:15:50 -07001259 if (unlikely(recv_q_len >= (OVERLOAD_LIMIT_BASE / 2))) {
1260 if (rx_queue_full(msg, recv_q_len, OVERLOAD_LIMIT_BASE / 2))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001261 return TIPC_ERR_OVERLOAD;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001262 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001263
Allan Stephens0c3141e2008-04-15 00:22:02 -07001264 /* Enqueue message (finally!) */
1265
Allan Stephens0232fd02011-02-21 09:45:40 -05001266 TIPC_SKB_CB(buf)->handle = 0;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001267 atomic_inc(&tipc_queue_size);
1268 __skb_queue_tail(&sk->sk_receive_queue, buf);
1269
Per Lidenb97bf3f2006-01-02 19:04:38 +01001270 /* Initiate connection termination for an incoming 'FIN' */
1271
1272 if (unlikely(msg_errcode(msg) && (sock->state == SS_CONNECTED))) {
1273 sock->state = SS_DISCONNECTING;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001274 tipc_disconnect_port(tipc_sk_port(sk));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001275 }
1276
Eric Dumazetaa395142010-04-20 13:03:51 +00001277 if (waitqueue_active(sk_sleep(sk)))
1278 wake_up_interruptible(sk_sleep(sk));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001279 return TIPC_OK;
1280}
1281
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001282/**
Allan Stephens0c3141e2008-04-15 00:22:02 -07001283 * backlog_rcv - handle incoming message from backlog queue
1284 * @sk: socket
1285 * @buf: message
1286 *
1287 * Caller must hold socket lock, but not port lock.
1288 *
1289 * Returns 0
1290 */
1291
1292static int backlog_rcv(struct sock *sk, struct sk_buff *buf)
1293{
1294 u32 res;
1295
1296 res = filter_rcv(sk, buf);
1297 if (res)
1298 tipc_reject_msg(buf, res);
1299 return 0;
1300}
1301
1302/**
1303 * dispatch - handle incoming message
1304 * @tport: TIPC port that received message
1305 * @buf: message
1306 *
1307 * Called with port lock already taken.
1308 *
1309 * Returns TIPC error status code (TIPC_OK if message is not to be rejected)
1310 */
1311
1312static u32 dispatch(struct tipc_port *tport, struct sk_buff *buf)
1313{
1314 struct sock *sk = (struct sock *)tport->usr_handle;
1315 u32 res;
1316
1317 /*
1318 * Process message if socket is unlocked; otherwise add to backlog queue
1319 *
1320 * This code is based on sk_receive_skb(), but must be distinct from it
1321 * since a TIPC-specific filter/reject mechanism is utilized
1322 */
1323
1324 bh_lock_sock(sk);
1325 if (!sock_owned_by_user(sk)) {
1326 res = filter_rcv(sk, buf);
1327 } else {
Zhu Yia3a858f2010-03-04 18:01:47 +00001328 if (sk_add_backlog(sk, buf))
Zhu Yi53eecb12010-03-04 18:01:45 +00001329 res = TIPC_ERR_OVERLOAD;
1330 else
1331 res = TIPC_OK;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001332 }
1333 bh_unlock_sock(sk);
1334
1335 return res;
1336}
1337
1338/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001339 * wakeupdispatch - wake up port after congestion
1340 * @tport: port to wakeup
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001341 *
Allan Stephens0c3141e2008-04-15 00:22:02 -07001342 * Called with port lock already taken.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001343 */
1344
1345static void wakeupdispatch(struct tipc_port *tport)
1346{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001347 struct sock *sk = (struct sock *)tport->usr_handle;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001348
Eric Dumazetaa395142010-04-20 13:03:51 +00001349 if (waitqueue_active(sk_sleep(sk)))
1350 wake_up_interruptible(sk_sleep(sk));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001351}
1352
1353/**
1354 * connect - establish a connection to another TIPC port
1355 * @sock: socket structure
1356 * @dest: socket address for destination port
1357 * @destlen: size of socket address data structure
Allan Stephens0c3141e2008-04-15 00:22:02 -07001358 * @flags: file-related flags associated with socket
Per Lidenb97bf3f2006-01-02 19:04:38 +01001359 *
1360 * Returns 0 on success, errno otherwise
1361 */
1362
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001363static int connect(struct socket *sock, struct sockaddr *dest, int destlen,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001364 int flags)
1365{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001366 struct sock *sk = sock->sk;
Allan Stephensb89741a2008-04-15 00:20:37 -07001367 struct sockaddr_tipc *dst = (struct sockaddr_tipc *)dest;
1368 struct msghdr m = {NULL,};
1369 struct sk_buff *buf;
1370 struct tipc_msg *msg;
Allan Stephens564e83b2010-08-17 11:00:15 +00001371 long timeout;
Allan Stephensb89741a2008-04-15 00:20:37 -07001372 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001373
Allan Stephens0c3141e2008-04-15 00:22:02 -07001374 lock_sock(sk);
1375
Allan Stephensb89741a2008-04-15 00:20:37 -07001376 /* For now, TIPC does not allow use of connect() with DGRAM/RDM types */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001377
Allan Stephens0c3141e2008-04-15 00:22:02 -07001378 if (sock->state == SS_READY) {
1379 res = -EOPNOTSUPP;
1380 goto exit;
1381 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001382
Allan Stephensb89741a2008-04-15 00:20:37 -07001383 /* For now, TIPC does not support the non-blocking form of connect() */
Allan Stephens4934c692008-04-15 00:16:19 -07001384
Allan Stephens0c3141e2008-04-15 00:22:02 -07001385 if (flags & O_NONBLOCK) {
Allan Stephens35997e32010-08-17 11:00:05 +00001386 res = -EOPNOTSUPP;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001387 goto exit;
1388 }
Allan Stephens4934c692008-04-15 00:16:19 -07001389
Allan Stephensb89741a2008-04-15 00:20:37 -07001390 /* Issue Posix-compliant error code if socket is in the wrong state */
Allan Stephens51f9cc12006-06-25 23:49:06 -07001391
Allan Stephens0c3141e2008-04-15 00:22:02 -07001392 if (sock->state == SS_LISTENING) {
1393 res = -EOPNOTSUPP;
1394 goto exit;
1395 }
1396 if (sock->state == SS_CONNECTING) {
1397 res = -EALREADY;
1398 goto exit;
1399 }
1400 if (sock->state != SS_UNCONNECTED) {
1401 res = -EISCONN;
1402 goto exit;
1403 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001404
Allan Stephensb89741a2008-04-15 00:20:37 -07001405 /*
1406 * Reject connection attempt using multicast address
1407 *
1408 * Note: send_msg() validates the rest of the address fields,
1409 * so there's no need to do it here
1410 */
Allan Stephens51f9cc12006-06-25 23:49:06 -07001411
Allan Stephens0c3141e2008-04-15 00:22:02 -07001412 if (dst->addrtype == TIPC_ADDR_MCAST) {
1413 res = -EINVAL;
1414 goto exit;
1415 }
1416
1417 /* Reject any messages already in receive queue (very unlikely) */
1418
1419 reject_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001420
Allan Stephensb89741a2008-04-15 00:20:37 -07001421 /* Send a 'SYN-' to destination */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001422
Allan Stephensb89741a2008-04-15 00:20:37 -07001423 m.msg_name = dest;
1424 m.msg_namelen = destlen;
1425 res = send_msg(NULL, sock, &m, 0);
Allan Stephensa0168922010-12-31 18:59:35 +00001426 if (res < 0)
Allan Stephens0c3141e2008-04-15 00:22:02 -07001427 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001428
Allan Stephens0c3141e2008-04-15 00:22:02 -07001429 /* Wait until an 'ACK' or 'RST' arrives, or a timeout occurs */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001430
Allan Stephens564e83b2010-08-17 11:00:15 +00001431 timeout = tipc_sk(sk)->conn_timeout;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001432 release_sock(sk);
Eric Dumazetaa395142010-04-20 13:03:51 +00001433 res = wait_event_interruptible_timeout(*sk_sleep(sk),
Allan Stephens0c3141e2008-04-15 00:22:02 -07001434 (!skb_queue_empty(&sk->sk_receive_queue) ||
1435 (sock->state != SS_CONNECTING)),
Allan Stephens564e83b2010-08-17 11:00:15 +00001436 timeout ? timeout : MAX_SCHEDULE_TIMEOUT);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001437 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001438
Allan Stephensb89741a2008-04-15 00:20:37 -07001439 if (res > 0) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07001440 buf = skb_peek(&sk->sk_receive_queue);
1441 if (buf != NULL) {
1442 msg = buf_msg(buf);
1443 res = auto_connect(sock, msg);
1444 if (!res) {
1445 if (!msg_data_sz(msg))
1446 advance_rx_queue(sk);
1447 }
1448 } else {
Allan Stephensa0168922010-12-31 18:59:35 +00001449 if (sock->state == SS_CONNECTED)
Allan Stephens0c3141e2008-04-15 00:22:02 -07001450 res = -EISCONN;
Allan Stephensa0168922010-12-31 18:59:35 +00001451 else
Allan Stephens0c3141e2008-04-15 00:22:02 -07001452 res = -ECONNREFUSED;
Allan Stephensb89741a2008-04-15 00:20:37 -07001453 }
1454 } else {
1455 if (res == 0)
1456 res = -ETIMEDOUT;
1457 else
1458 ; /* leave "res" unchanged */
1459 sock->state = SS_DISCONNECTING;
1460 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001461
Allan Stephens0c3141e2008-04-15 00:22:02 -07001462exit:
1463 release_sock(sk);
Allan Stephensb89741a2008-04-15 00:20:37 -07001464 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001465}
1466
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001467/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001468 * listen - allow socket to listen for incoming connections
1469 * @sock: socket structure
1470 * @len: (unused)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001471 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001472 * Returns 0 on success, errno otherwise
1473 */
1474
1475static int listen(struct socket *sock, int len)
1476{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001477 struct sock *sk = sock->sk;
1478 int res;
1479
1480 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001481
1482 if (sock->state == SS_READY)
Allan Stephens0c3141e2008-04-15 00:22:02 -07001483 res = -EOPNOTSUPP;
1484 else if (sock->state != SS_UNCONNECTED)
1485 res = -EINVAL;
1486 else {
1487 sock->state = SS_LISTENING;
1488 res = 0;
1489 }
1490
1491 release_sock(sk);
1492 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001493}
1494
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001495/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001496 * accept - wait for connection request
1497 * @sock: listening socket
1498 * @newsock: new socket that is to be connected
1499 * @flags: file-related flags associated with socket
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001500 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001501 * Returns 0 on success, errno otherwise
1502 */
1503
Allan Stephens0c3141e2008-04-15 00:22:02 -07001504static int accept(struct socket *sock, struct socket *new_sock, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001505{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001506 struct sock *sk = sock->sk;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001507 struct sk_buff *buf;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001508 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001509
Allan Stephens0c3141e2008-04-15 00:22:02 -07001510 lock_sock(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001511
Allan Stephens0c3141e2008-04-15 00:22:02 -07001512 if (sock->state == SS_READY) {
1513 res = -EOPNOTSUPP;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001514 goto exit;
1515 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001516 if (sock->state != SS_LISTENING) {
1517 res = -EINVAL;
1518 goto exit;
1519 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001520
Allan Stephens0c3141e2008-04-15 00:22:02 -07001521 while (skb_queue_empty(&sk->sk_receive_queue)) {
1522 if (flags & O_NONBLOCK) {
1523 res = -EWOULDBLOCK;
1524 goto exit;
1525 }
1526 release_sock(sk);
Eric Dumazetaa395142010-04-20 13:03:51 +00001527 res = wait_event_interruptible(*sk_sleep(sk),
Allan Stephens0c3141e2008-04-15 00:22:02 -07001528 (!skb_queue_empty(&sk->sk_receive_queue)));
1529 lock_sock(sk);
1530 if (res)
1531 goto exit;
1532 }
1533
1534 buf = skb_peek(&sk->sk_receive_queue);
1535
Eric Paris3f378b62009-11-05 22:18:14 -08001536 res = tipc_create(sock_net(sock->sk), new_sock, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001537 if (!res) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07001538 struct sock *new_sk = new_sock->sk;
Allan Stephens2da59912008-07-14 22:43:32 -07001539 struct tipc_sock *new_tsock = tipc_sk(new_sk);
1540 struct tipc_port *new_tport = new_tsock->p;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001541 u32 new_ref = new_tport->ref;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001542 struct tipc_msg *msg = buf_msg(buf);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001543
1544 lock_sock(new_sk);
1545
1546 /*
1547 * Reject any stray messages received by new socket
1548 * before the socket lock was taken (very, very unlikely)
1549 */
1550
1551 reject_rx_queue(new_sk);
1552
1553 /* Connect new socket to it's peer */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001554
Allan Stephens2da59912008-07-14 22:43:32 -07001555 new_tsock->peer_name.ref = msg_origport(msg);
1556 new_tsock->peer_name.node = msg_orignode(msg);
1557 tipc_connect2port(new_ref, &new_tsock->peer_name);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001558 new_sock->state = SS_CONNECTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001559
1560 tipc_set_portimportance(new_ref, msg_importance(msg));
1561 if (msg_named(msg)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07001562 new_tport->conn_type = msg_nametype(msg);
1563 new_tport->conn_instance = msg_nameinst(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001564 }
1565
Allan Stephens0c3141e2008-04-15 00:22:02 -07001566 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001567 * Respond to 'SYN-' by discarding it & returning 'ACK'-.
1568 * Respond to 'SYN+' by queuing it on new socket.
1569 */
1570
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001571 if (!msg_data_sz(msg)) {
1572 struct msghdr m = {NULL,};
Per Lidenb97bf3f2006-01-02 19:04:38 +01001573
Allan Stephens0c3141e2008-04-15 00:22:02 -07001574 advance_rx_queue(sk);
1575 send_packet(NULL, new_sock, &m, 0);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001576 } else {
Allan Stephens0c3141e2008-04-15 00:22:02 -07001577 __skb_dequeue(&sk->sk_receive_queue);
1578 __skb_queue_head(&new_sk->sk_receive_queue, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001579 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001580 release_sock(new_sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001581 }
1582exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001583 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001584 return res;
1585}
1586
1587/**
1588 * shutdown - shutdown socket connection
1589 * @sock: socket structure
Allan Stephense247a8f2008-03-06 15:05:38 -08001590 * @how: direction to close (must be SHUT_RDWR)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001591 *
1592 * Terminates connection (if necessary), then purges socket's receive queue.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001593 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001594 * Returns 0 on success, errno otherwise
1595 */
1596
1597static int shutdown(struct socket *sock, int how)
1598{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001599 struct sock *sk = sock->sk;
1600 struct tipc_port *tport = tipc_sk_port(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001601 struct sk_buff *buf;
1602 int res;
1603
Allan Stephense247a8f2008-03-06 15:05:38 -08001604 if (how != SHUT_RDWR)
1605 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001606
Allan Stephens0c3141e2008-04-15 00:22:02 -07001607 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001608
1609 switch (sock->state) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07001610 case SS_CONNECTING:
Per Lidenb97bf3f2006-01-02 19:04:38 +01001611 case SS_CONNECTED:
1612
Allan Stephens0c3141e2008-04-15 00:22:02 -07001613 /* Disconnect and send a 'FIN+' or 'FIN-' message to peer */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001614restart:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001615 buf = __skb_dequeue(&sk->sk_receive_queue);
1616 if (buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001617 atomic_dec(&tipc_queue_size);
Allan Stephens0232fd02011-02-21 09:45:40 -05001618 if (TIPC_SKB_CB(buf)->handle != 0) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001619 buf_discard(buf);
1620 goto restart;
1621 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001622 tipc_disconnect(tport->ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001623 tipc_reject_msg(buf, TIPC_CONN_SHUTDOWN);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001624 } else {
1625 tipc_shutdown(tport->ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001626 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001627
1628 sock->state = SS_DISCONNECTING;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001629
1630 /* fall through */
1631
1632 case SS_DISCONNECTING:
1633
Allan Stephens0c3141e2008-04-15 00:22:02 -07001634 /* Discard any unreceived messages; wake up sleeping tasks */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001635
Allan Stephens0c3141e2008-04-15 00:22:02 -07001636 discard_rx_queue(sk);
Eric Dumazetaa395142010-04-20 13:03:51 +00001637 if (waitqueue_active(sk_sleep(sk)))
1638 wake_up_interruptible(sk_sleep(sk));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001639 res = 0;
1640 break;
1641
1642 default:
1643 res = -ENOTCONN;
1644 }
1645
Allan Stephens0c3141e2008-04-15 00:22:02 -07001646 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001647 return res;
1648}
1649
1650/**
1651 * setsockopt - set socket option
1652 * @sock: socket structure
1653 * @lvl: option level
1654 * @opt: option identifier
1655 * @ov: pointer to new option value
1656 * @ol: length of option value
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001657 *
1658 * For stream sockets only, accepts and ignores all IPPROTO_TCP options
Per Lidenb97bf3f2006-01-02 19:04:38 +01001659 * (to ease compatibility).
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001660 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001661 * Returns 0 on success, errno otherwise
1662 */
1663
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001664static int setsockopt(struct socket *sock,
David S. Millerb7058842009-09-30 16:12:20 -07001665 int lvl, int opt, char __user *ov, unsigned int ol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001666{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001667 struct sock *sk = sock->sk;
1668 struct tipc_port *tport = tipc_sk_port(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001669 u32 value;
1670 int res;
1671
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001672 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
1673 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001674 if (lvl != SOL_TIPC)
1675 return -ENOPROTOOPT;
1676 if (ol < sizeof(value))
1677 return -EINVAL;
Allan Stephens2db99832010-12-31 18:59:33 +00001678 res = get_user(value, (u32 __user *)ov);
1679 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001680 return res;
1681
Allan Stephens0c3141e2008-04-15 00:22:02 -07001682 lock_sock(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001683
Per Lidenb97bf3f2006-01-02 19:04:38 +01001684 switch (opt) {
1685 case TIPC_IMPORTANCE:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001686 res = tipc_set_portimportance(tport->ref, value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001687 break;
1688 case TIPC_SRC_DROPPABLE:
1689 if (sock->type != SOCK_STREAM)
Allan Stephens0c3141e2008-04-15 00:22:02 -07001690 res = tipc_set_portunreliable(tport->ref, value);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001691 else
Per Lidenb97bf3f2006-01-02 19:04:38 +01001692 res = -ENOPROTOOPT;
1693 break;
1694 case TIPC_DEST_DROPPABLE:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001695 res = tipc_set_portunreturnable(tport->ref, value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001696 break;
1697 case TIPC_CONN_TIMEOUT:
Allan Stephens564e83b2010-08-17 11:00:15 +00001698 tipc_sk(sk)->conn_timeout = msecs_to_jiffies(value);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001699 /* no need to set "res", since already 0 at this point */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001700 break;
1701 default:
1702 res = -EINVAL;
1703 }
1704
Allan Stephens0c3141e2008-04-15 00:22:02 -07001705 release_sock(sk);
1706
Per Lidenb97bf3f2006-01-02 19:04:38 +01001707 return res;
1708}
1709
1710/**
1711 * getsockopt - get socket option
1712 * @sock: socket structure
1713 * @lvl: option level
1714 * @opt: option identifier
1715 * @ov: receptacle for option value
1716 * @ol: receptacle for length of option value
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001717 *
1718 * For stream sockets only, returns 0 length result for all IPPROTO_TCP options
Per Lidenb97bf3f2006-01-02 19:04:38 +01001719 * (to ease compatibility).
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001720 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001721 * Returns 0 on success, errno otherwise
1722 */
1723
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001724static int getsockopt(struct socket *sock,
Al Viro28c4dad2006-10-10 22:45:57 +01001725 int lvl, int opt, char __user *ov, int __user *ol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001726{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001727 struct sock *sk = sock->sk;
1728 struct tipc_port *tport = tipc_sk_port(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001729 int len;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001730 u32 value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001731 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001732
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001733 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
1734 return put_user(0, ol);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001735 if (lvl != SOL_TIPC)
1736 return -ENOPROTOOPT;
Allan Stephens2db99832010-12-31 18:59:33 +00001737 res = get_user(len, ol);
1738 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001739 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001740
Allan Stephens0c3141e2008-04-15 00:22:02 -07001741 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001742
1743 switch (opt) {
1744 case TIPC_IMPORTANCE:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001745 res = tipc_portimportance(tport->ref, &value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001746 break;
1747 case TIPC_SRC_DROPPABLE:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001748 res = tipc_portunreliable(tport->ref, &value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001749 break;
1750 case TIPC_DEST_DROPPABLE:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001751 res = tipc_portunreturnable(tport->ref, &value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001752 break;
1753 case TIPC_CONN_TIMEOUT:
Allan Stephens564e83b2010-08-17 11:00:15 +00001754 value = jiffies_to_msecs(tipc_sk(sk)->conn_timeout);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001755 /* no need to set "res", since already 0 at this point */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001756 break;
Allan Stephens0e659672010-12-31 18:59:32 +00001757 case TIPC_NODE_RECVQ_DEPTH:
oscar.medina@motorola.com66506132009-06-30 03:25:39 +00001758 value = (u32)atomic_read(&tipc_queue_size);
1759 break;
Allan Stephens0e659672010-12-31 18:59:32 +00001760 case TIPC_SOCK_RECVQ_DEPTH:
oscar.medina@motorola.com66506132009-06-30 03:25:39 +00001761 value = skb_queue_len(&sk->sk_receive_queue);
1762 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001763 default:
1764 res = -EINVAL;
1765 }
1766
Allan Stephens0c3141e2008-04-15 00:22:02 -07001767 release_sock(sk);
1768
Paul Gortmaker25860c32010-12-31 18:59:31 +00001769 if (res)
1770 return res; /* "get" failed */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001771
Paul Gortmaker25860c32010-12-31 18:59:31 +00001772 if (len < sizeof(value))
1773 return -EINVAL;
1774
1775 if (copy_to_user(ov, &value, sizeof(value)))
1776 return -EFAULT;
1777
1778 return put_user(sizeof(value), ol);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001779}
1780
1781/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001782 * Protocol switches for the various types of TIPC sockets
1783 */
1784
Florian Westphalbca65ea2008-02-07 18:18:01 -08001785static const struct proto_ops msg_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00001786 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001787 .family = AF_TIPC,
1788 .release = release,
1789 .bind = bind,
1790 .connect = connect,
Allan Stephens5eee6a62007-06-10 17:24:55 -07001791 .socketpair = sock_no_socketpair,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001792 .accept = accept,
1793 .getname = get_name,
1794 .poll = poll,
Allan Stephens5eee6a62007-06-10 17:24:55 -07001795 .ioctl = sock_no_ioctl,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001796 .listen = listen,
1797 .shutdown = shutdown,
1798 .setsockopt = setsockopt,
1799 .getsockopt = getsockopt,
1800 .sendmsg = send_msg,
1801 .recvmsg = recv_msg,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09001802 .mmap = sock_no_mmap,
1803 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01001804};
1805
Florian Westphalbca65ea2008-02-07 18:18:01 -08001806static const struct proto_ops packet_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00001807 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001808 .family = AF_TIPC,
1809 .release = release,
1810 .bind = bind,
1811 .connect = connect,
Allan Stephens5eee6a62007-06-10 17:24:55 -07001812 .socketpair = sock_no_socketpair,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001813 .accept = accept,
1814 .getname = get_name,
1815 .poll = poll,
Allan Stephens5eee6a62007-06-10 17:24:55 -07001816 .ioctl = sock_no_ioctl,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001817 .listen = listen,
1818 .shutdown = shutdown,
1819 .setsockopt = setsockopt,
1820 .getsockopt = getsockopt,
1821 .sendmsg = send_packet,
1822 .recvmsg = recv_msg,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09001823 .mmap = sock_no_mmap,
1824 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01001825};
1826
Florian Westphalbca65ea2008-02-07 18:18:01 -08001827static const struct proto_ops stream_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00001828 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001829 .family = AF_TIPC,
1830 .release = release,
1831 .bind = bind,
1832 .connect = connect,
Allan Stephens5eee6a62007-06-10 17:24:55 -07001833 .socketpair = sock_no_socketpair,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001834 .accept = accept,
1835 .getname = get_name,
1836 .poll = poll,
Allan Stephens5eee6a62007-06-10 17:24:55 -07001837 .ioctl = sock_no_ioctl,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001838 .listen = listen,
1839 .shutdown = shutdown,
1840 .setsockopt = setsockopt,
1841 .getsockopt = getsockopt,
1842 .sendmsg = send_stream,
1843 .recvmsg = recv_stream,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09001844 .mmap = sock_no_mmap,
1845 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01001846};
1847
Florian Westphalbca65ea2008-02-07 18:18:01 -08001848static const struct net_proto_family tipc_family_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00001849 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001850 .family = AF_TIPC,
1851 .create = tipc_create
1852};
1853
1854static struct proto tipc_proto = {
1855 .name = "TIPC",
1856 .owner = THIS_MODULE,
1857 .obj_size = sizeof(struct tipc_sock)
1858};
1859
1860/**
Per Liden4323add2006-01-18 00:38:21 +01001861 * tipc_socket_init - initialize TIPC socket interface
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001862 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001863 * Returns 0 on success, errno otherwise
1864 */
Per Liden4323add2006-01-18 00:38:21 +01001865int tipc_socket_init(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001866{
1867 int res;
1868
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001869 res = proto_register(&tipc_proto, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001870 if (res) {
Per Lidend0a14a92006-01-11 13:52:51 +01001871 err("Failed to register TIPC protocol type\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01001872 goto out;
1873 }
1874
1875 res = sock_register(&tipc_family_ops);
1876 if (res) {
Per Lidend0a14a92006-01-11 13:52:51 +01001877 err("Failed to register TIPC socket type\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01001878 proto_unregister(&tipc_proto);
1879 goto out;
1880 }
1881
1882 sockets_enabled = 1;
1883 out:
1884 return res;
1885}
1886
1887/**
Per Liden4323add2006-01-18 00:38:21 +01001888 * tipc_socket_stop - stop TIPC socket interface
Per Lidenb97bf3f2006-01-02 19:04:38 +01001889 */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001890
Per Liden4323add2006-01-18 00:38:21 +01001891void tipc_socket_stop(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001892{
1893 if (!sockets_enabled)
1894 return;
1895
1896 sockets_enabled = 0;
1897 sock_unregister(tipc_family_ops.family);
1898 proto_unregister(&tipc_proto);
1899}
1900