blob: adb2eff4a102a4d85f5b3ce396152a7bd2eea8c8 [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
Per Lidenb97bf3f2006-01-02 19:04:38 +010039#include "core.h"
Allan Stephensd265fef2010-11-30 12:00:53 +000040#include "port.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010041
42#define SS_LISTENING -1 /* socket is listening */
43#define SS_READY -2 /* socket is connectionless */
44
Allan Stephens3654ea02008-04-13 21:35:11 -070045#define OVERLOAD_LIMIT_BASE 5000
46#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 Stephens564e83b2010-08-17 11:00:15 +000052 long 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))
56#define tipc_sk_port(sk) ((struct tipc_port *)(tipc_sk(sk)->p))
Per Lidenb97bf3f2006-01-02 19:04:38 +010057
Allan Stephens71092ea2011-02-23 14:52:14 -050058#define tipc_rx_ready(sock) (!skb_queue_empty(&sock->sk->sk_receive_queue) || \
59 (sock->state == SS_DISCONNECTING))
60
Allan Stephens0c3141e2008-04-15 00:22:02 -070061static int backlog_rcv(struct sock *sk, struct sk_buff *skb);
Per Lidenb97bf3f2006-01-02 19:04:38 +010062static u32 dispatch(struct tipc_port *tport, struct sk_buff *buf);
63static void wakeupdispatch(struct tipc_port *tport);
64
Florian Westphalbca65ea2008-02-07 18:18:01 -080065static const struct proto_ops packet_ops;
66static const struct proto_ops stream_ops;
67static const struct proto_ops msg_ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +010068
69static struct proto tipc_proto;
70
Allan Stephense3ec9c72010-12-31 18:59:34 +000071static int sockets_enabled;
Per Lidenb97bf3f2006-01-02 19:04:38 +010072
73static atomic_t tipc_queue_size = ATOMIC_INIT(0);
74
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090075/*
Allan Stephens0c3141e2008-04-15 00:22:02 -070076 * Revised TIPC socket locking policy:
77 *
78 * Most socket operations take the standard socket lock when they start
79 * and hold it until they finish (or until they need to sleep). Acquiring
80 * this lock grants the owner exclusive access to the fields of the socket
81 * data structures, with the exception of the backlog queue. A few socket
82 * operations can be done without taking the socket lock because they only
83 * read socket information that never changes during the life of the socket.
84 *
85 * Socket operations may acquire the lock for the associated TIPC port if they
86 * need to perform an operation on the port. If any routine needs to acquire
87 * both the socket lock and the port lock it must take the socket lock first
88 * to avoid the risk of deadlock.
89 *
90 * The dispatcher handling incoming messages cannot grab the socket lock in
91 * the standard fashion, since invoked it runs at the BH level and cannot block.
92 * Instead, it checks to see if the socket lock is currently owned by someone,
93 * and either handles the message itself or adds it to the socket's backlog
94 * queue; in the latter case the queued message is processed once the process
95 * owning the socket lock releases it.
96 *
97 * NOTE: Releasing the socket lock while an operation is sleeping overcomes
98 * the problem of a blocked socket operation preventing any other operations
99 * from occurring. However, applications must be careful if they have
100 * multiple threads trying to send (or receive) on the same socket, as these
101 * operations might interfere with each other. For example, doing a connect
102 * and a receive at the same time might allow the receive to consume the
103 * ACK message meant for the connect. While additional work could be done
104 * to try and overcome this, it doesn't seem to be worthwhile at the present.
105 *
106 * NOTE: Releasing the socket lock while an operation is sleeping also ensures
107 * that another operation that must be performed in a non-blocking manner is
108 * not delayed for very long because the lock has already been taken.
109 *
110 * NOTE: This code assumes that certain fields of a port/socket pair are
111 * constant over its lifetime; such fields can be examined without taking
112 * the socket lock and/or port lock, and do not need to be re-read even
113 * after resuming processing after waiting. These fields include:
114 * - socket type
115 * - pointer to socket sk structure (aka tipc_sock structure)
116 * - pointer to port structure
117 * - port reference
Per Lidenb97bf3f2006-01-02 19:04:38 +0100118 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100119
120/**
Allan Stephens0c3141e2008-04-15 00:22:02 -0700121 * advance_rx_queue - discard first buffer in socket receive queue
122 *
123 * Caller must hold socket lock
Per Lidenb97bf3f2006-01-02 19:04:38 +0100124 */
125
Allan Stephens0c3141e2008-04-15 00:22:02 -0700126static void advance_rx_queue(struct sock *sk)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100127{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700128 buf_discard(__skb_dequeue(&sk->sk_receive_queue));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100129 atomic_dec(&tipc_queue_size);
130}
131
132/**
Allan Stephens0c3141e2008-04-15 00:22:02 -0700133 * discard_rx_queue - discard all buffers in socket receive queue
134 *
135 * Caller must hold socket lock
136 */
137
138static void discard_rx_queue(struct sock *sk)
139{
140 struct sk_buff *buf;
141
142 while ((buf = __skb_dequeue(&sk->sk_receive_queue))) {
143 atomic_dec(&tipc_queue_size);
144 buf_discard(buf);
145 }
146}
147
148/**
149 * reject_rx_queue - reject all buffers in socket receive queue
150 *
151 * Caller must hold socket lock
152 */
153
154static void reject_rx_queue(struct sock *sk)
155{
156 struct sk_buff *buf;
157
158 while ((buf = __skb_dequeue(&sk->sk_receive_queue))) {
159 tipc_reject_msg(buf, TIPC_ERR_NO_PORT);
160 atomic_dec(&tipc_queue_size);
161 }
162}
163
164/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100165 * tipc_create - create a TIPC socket
Allan Stephens0c3141e2008-04-15 00:22:02 -0700166 * @net: network namespace (must be default network)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100167 * @sock: pre-allocated socket structure
168 * @protocol: protocol indicator (must be 0)
Eric Paris3f378b62009-11-05 22:18:14 -0800169 * @kern: caused by kernel or by userspace?
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900170 *
Allan Stephens0c3141e2008-04-15 00:22:02 -0700171 * This routine creates additional data structures used by the TIPC socket,
172 * initializes them, and links them together.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100173 *
174 * Returns 0 on success, errno otherwise
175 */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700176
Eric Paris3f378b62009-11-05 22:18:14 -0800177static int tipc_create(struct net *net, struct socket *sock, int protocol,
178 int kern)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100179{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700180 const struct proto_ops *ops;
181 socket_state state;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100182 struct sock *sk;
Allan Stephens7ef43eb2008-05-12 15:42:28 -0700183 struct tipc_port *tp_ptr;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700184
185 /* Validate arguments */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100186
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800187 if (!net_eq(net, &init_net))
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -0700188 return -EAFNOSUPPORT;
189
Per Lidenb97bf3f2006-01-02 19:04:38 +0100190 if (unlikely(protocol != 0))
191 return -EPROTONOSUPPORT;
192
Per Lidenb97bf3f2006-01-02 19:04:38 +0100193 switch (sock->type) {
194 case SOCK_STREAM:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700195 ops = &stream_ops;
196 state = SS_UNCONNECTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100197 break;
198 case SOCK_SEQPACKET:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700199 ops = &packet_ops;
200 state = SS_UNCONNECTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100201 break;
202 case SOCK_DGRAM:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100203 case SOCK_RDM:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700204 ops = &msg_ops;
205 state = SS_READY;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100206 break;
Allan Stephens49978652006-06-25 23:47:18 -0700207 default:
Allan Stephens49978652006-06-25 23:47:18 -0700208 return -EPROTOTYPE;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100209 }
210
Allan Stephens0c3141e2008-04-15 00:22:02 -0700211 /* Allocate socket's protocol area */
212
Pavel Emelyanov6257ff22007-11-01 00:39:31 -0700213 sk = sk_alloc(net, AF_TIPC, GFP_KERNEL, &tipc_proto);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700214 if (sk == NULL)
215 return -ENOMEM;
216
217 /* Allocate TIPC port for socket to use */
218
Allan Stephens0ea52242008-07-14 22:42:19 -0700219 tp_ptr = tipc_createport_raw(sk, &dispatch, &wakeupdispatch,
220 TIPC_LOW_IMPORTANCE);
221 if (unlikely(!tp_ptr)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700222 sk_free(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100223 return -ENOMEM;
224 }
225
Allan Stephens0c3141e2008-04-15 00:22:02 -0700226 /* Finish initializing socket data structures */
227
228 sock->ops = ops;
229 sock->state = state;
230
Per Lidenb97bf3f2006-01-02 19:04:38 +0100231 sock_init_data(sock, sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700232 sk->sk_backlog_rcv = backlog_rcv;
Allan Stephens0ea52242008-07-14 22:42:19 -0700233 tipc_sk(sk)->p = tp_ptr;
Allan Stephens564e83b2010-08-17 11:00:15 +0000234 tipc_sk(sk)->conn_timeout = msecs_to_jiffies(CONN_TIMEOUT_DEFAULT);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100235
Allan Stephens7ef43eb2008-05-12 15:42:28 -0700236 spin_unlock_bh(tp_ptr->lock);
237
Allan Stephens0c3141e2008-04-15 00:22:02 -0700238 if (sock->state == SS_READY) {
Allan Stephens0ea52242008-07-14 22:42:19 -0700239 tipc_set_portunreturnable(tp_ptr->ref, 1);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700240 if (sock->type == SOCK_DGRAM)
Allan Stephens0ea52242008-07-14 22:42:19 -0700241 tipc_set_portunreliable(tp_ptr->ref, 1);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700242 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100243
Per Lidenb97bf3f2006-01-02 19:04:38 +0100244 return 0;
245}
246
247/**
248 * release - destroy a TIPC socket
249 * @sock: socket to destroy
250 *
251 * This routine cleans up any messages that are still queued on the socket.
252 * For DGRAM and RDM socket types, all queued messages are rejected.
253 * For SEQPACKET and STREAM socket types, the first message is rejected
254 * and any others are discarded. (If the first message on a STREAM socket
255 * is partially-read, it is discarded and the next one is rejected instead.)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900256 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100257 * NOTE: Rejected messages are not necessarily returned to the sender! They
258 * are returned or discarded according to the "destination droppable" setting
259 * specified for the message by the sender.
260 *
261 * Returns 0 on success, errno otherwise
262 */
263
264static int release(struct socket *sock)
265{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100266 struct sock *sk = sock->sk;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700267 struct tipc_port *tport;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100268 struct sk_buff *buf;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700269 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100270
Allan Stephens0c3141e2008-04-15 00:22:02 -0700271 /*
272 * Exit if socket isn't fully initialized (occurs when a failed accept()
273 * releases a pre-allocated child socket that was never used)
274 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900275
Allan Stephens0c3141e2008-04-15 00:22:02 -0700276 if (sk == NULL)
277 return 0;
278
279 tport = tipc_sk_port(sk);
280 lock_sock(sk);
281
282 /*
283 * Reject all unreceived messages, except on an active connection
284 * (which disconnects locally & sends a 'FIN+' to peer)
285 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100286
287 while (sock->state != SS_DISCONNECTING) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700288 buf = __skb_dequeue(&sk->sk_receive_queue);
289 if (buf == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100290 break;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700291 atomic_dec(&tipc_queue_size);
Allan Stephens0232fd02011-02-21 09:45:40 -0500292 if (TIPC_SKB_CB(buf)->handle != 0)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100293 buf_discard(buf);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700294 else {
295 if ((sock->state == SS_CONNECTING) ||
296 (sock->state == SS_CONNECTED)) {
297 sock->state = SS_DISCONNECTING;
298 tipc_disconnect(tport->ref);
299 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100300 tipc_reject_msg(buf, TIPC_ERR_NO_PORT);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700301 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100302 }
303
Allan Stephens0c3141e2008-04-15 00:22:02 -0700304 /*
305 * Delete TIPC port; this ensures no more messages are queued
306 * (also disconnects an active connection & sends a 'FIN-' to peer)
307 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100308
Allan Stephens0c3141e2008-04-15 00:22:02 -0700309 res = tipc_deleteport(tport->ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100310
Allan Stephens0c3141e2008-04-15 00:22:02 -0700311 /* Discard any remaining (connection-based) messages in receive queue */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100312
Allan Stephens0c3141e2008-04-15 00:22:02 -0700313 discard_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100314
Allan Stephens0c3141e2008-04-15 00:22:02 -0700315 /* Reject any messages that accumulated in backlog queue */
316
317 sock->state = SS_DISCONNECTING;
318 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100319
320 sock_put(sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700321 sock->sk = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100322
Per Lidenb97bf3f2006-01-02 19:04:38 +0100323 return res;
324}
325
326/**
327 * bind - associate or disassocate TIPC name(s) with a socket
328 * @sock: socket structure
329 * @uaddr: socket address describing name(s) and desired operation
330 * @uaddr_len: size of socket address data structure
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900331 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100332 * Name and name sequence binding is indicated using a positive scope value;
333 * a negative scope value unbinds the specified name. Specifying no name
334 * (i.e. a socket address length of 0) unbinds all names from the socket.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900335 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100336 * Returns 0 on success, errno otherwise
Allan Stephens0c3141e2008-04-15 00:22:02 -0700337 *
338 * NOTE: This routine doesn't need to take the socket lock since it doesn't
339 * access any non-constant socket information.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100340 */
341
342static int bind(struct socket *sock, struct sockaddr *uaddr, int uaddr_len)
343{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100344 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700345 u32 portref = tipc_sk_port(sock->sk)->ref;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100346
Allan Stephens0c3141e2008-04-15 00:22:02 -0700347 if (unlikely(!uaddr_len))
348 return tipc_withdraw(portref, 0, NULL);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900349
Allan Stephens0c3141e2008-04-15 00:22:02 -0700350 if (uaddr_len < sizeof(struct sockaddr_tipc))
351 return -EINVAL;
352 if (addr->family != AF_TIPC)
353 return -EAFNOSUPPORT;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100354
Per Lidenb97bf3f2006-01-02 19:04:38 +0100355 if (addr->addrtype == TIPC_ADDR_NAME)
356 addr->addr.nameseq.upper = addr->addr.nameseq.lower;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700357 else if (addr->addrtype != TIPC_ADDR_NAMESEQ)
358 return -EAFNOSUPPORT;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900359
Allan Stephens0c3141e2008-04-15 00:22:02 -0700360 return (addr->scope > 0) ?
361 tipc_publish(portref, addr->scope, &addr->addr.nameseq) :
362 tipc_withdraw(portref, -addr->scope, &addr->addr.nameseq);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100363}
364
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900365/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100366 * get_name - get port ID of socket or peer socket
367 * @sock: socket structure
368 * @uaddr: area for returned socket address
369 * @uaddr_len: area for returned length of socket address
Allan Stephens2da59912008-07-14 22:43:32 -0700370 * @peer: 0 = own ID, 1 = current peer ID, 2 = current/former peer ID
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900371 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100372 * Returns 0 on success, errno otherwise
Allan Stephens0c3141e2008-04-15 00:22:02 -0700373 *
Allan Stephens2da59912008-07-14 22:43:32 -0700374 * NOTE: This routine doesn't need to take the socket lock since it only
375 * accesses socket information that is unchanging (or which changes in
Allan Stephens0e659672010-12-31 18:59:32 +0000376 * a completely predictable manner).
Per Lidenb97bf3f2006-01-02 19:04:38 +0100377 */
378
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900379static int get_name(struct socket *sock, struct sockaddr *uaddr,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100380 int *uaddr_len, int peer)
381{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100382 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
Allan Stephens2da59912008-07-14 22:43:32 -0700383 struct tipc_sock *tsock = tipc_sk(sock->sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100384
Kulikov Vasiliy88f8a5e2010-10-31 07:10:32 +0000385 memset(addr, 0, sizeof(*addr));
Allan Stephens0c3141e2008-04-15 00:22:02 -0700386 if (peer) {
Allan Stephens2da59912008-07-14 22:43:32 -0700387 if ((sock->state != SS_CONNECTED) &&
388 ((peer != 2) || (sock->state != SS_DISCONNECTING)))
389 return -ENOTCONN;
390 addr->addr.id.ref = tsock->peer_name.ref;
391 addr->addr.id.node = tsock->peer_name.node;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700392 } else {
Allan Stephensb924dcf2010-11-30 12:01:03 +0000393 addr->addr.id.ref = tsock->p->ref;
394 addr->addr.id.node = tipc_own_addr;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700395 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100396
397 *uaddr_len = sizeof(*addr);
398 addr->addrtype = TIPC_ADDR_ID;
399 addr->family = AF_TIPC;
400 addr->scope = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100401 addr->addr.name.domain = 0;
402
Allan Stephens0c3141e2008-04-15 00:22:02 -0700403 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100404}
405
406/**
407 * poll - read and possibly block on pollmask
408 * @file: file structure associated with the socket
409 * @sock: socket for which to calculate the poll bits
410 * @wait: ???
411 *
Allan Stephens9b674e82008-03-26 16:48:21 -0700412 * Returns pollmask value
413 *
414 * COMMENTARY:
415 * It appears that the usual socket locking mechanisms are not useful here
416 * since the pollmask info is potentially out-of-date the moment this routine
417 * exits. TCP and other protocols seem to rely on higher level poll routines
418 * to handle any preventable race conditions, so TIPC will do the same ...
419 *
420 * TIPC sets the returned events as follows:
Allan Stephens9b674e82008-03-26 16:48:21 -0700421 *
Allan Stephensf662c072010-08-17 11:00:06 +0000422 * socket state flags set
423 * ------------ ---------
424 * unconnected no read flags
425 * no write flags
426 *
427 * connecting POLLIN/POLLRDNORM if ACK/NACK in rx queue
428 * no write flags
429 *
430 * connected POLLIN/POLLRDNORM if data in rx queue
431 * POLLOUT if port is not congested
432 *
433 * disconnecting POLLIN/POLLRDNORM/POLLHUP
434 * no write flags
435 *
436 * listening POLLIN if SYN in rx queue
437 * no write flags
438 *
439 * ready POLLIN/POLLRDNORM if data in rx queue
440 * [connectionless] POLLOUT (since port cannot be congested)
441 *
442 * IMPORTANT: The fact that a read or write operation is indicated does NOT
443 * imply that the operation will succeed, merely that it should be performed
444 * and will not block.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100445 */
446
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900447static unsigned int poll(struct file *file, struct socket *sock,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100448 poll_table *wait)
449{
Allan Stephens9b674e82008-03-26 16:48:21 -0700450 struct sock *sk = sock->sk;
Allan Stephensf662c072010-08-17 11:00:06 +0000451 u32 mask = 0;
Allan Stephens9b674e82008-03-26 16:48:21 -0700452
Eric Dumazetaa395142010-04-20 13:03:51 +0000453 poll_wait(file, sk_sleep(sk), wait);
Allan Stephens9b674e82008-03-26 16:48:21 -0700454
Allan Stephensf662c072010-08-17 11:00:06 +0000455 switch ((int)sock->state) {
456 case SS_READY:
457 case SS_CONNECTED:
458 if (!tipc_sk_port(sk)->congested)
459 mask |= POLLOUT;
460 /* fall thru' */
461 case SS_CONNECTING:
462 case SS_LISTENING:
463 if (!skb_queue_empty(&sk->sk_receive_queue))
464 mask |= (POLLIN | POLLRDNORM);
465 break;
466 case SS_DISCONNECTING:
467 mask = (POLLIN | POLLRDNORM | POLLHUP);
468 break;
469 }
Allan Stephens9b674e82008-03-26 16:48:21 -0700470
471 return mask;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100472}
473
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900474/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100475 * dest_name_check - verify user is permitted to send to specified port name
476 * @dest: destination address
477 * @m: descriptor for message to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900478 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100479 * Prevents restricted configuration commands from being issued by
480 * unauthorized users.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900481 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100482 * Returns 0 if permission is granted, otherwise errno
483 */
484
Sam Ravnborg05790c62006-03-20 22:37:04 -0800485static int dest_name_check(struct sockaddr_tipc *dest, struct msghdr *m)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100486{
487 struct tipc_cfg_msg_hdr hdr;
488
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900489 if (likely(dest->addr.name.name.type >= TIPC_RESERVED_TYPES))
490 return 0;
491 if (likely(dest->addr.name.name.type == TIPC_TOP_SRV))
492 return 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900493 if (likely(dest->addr.name.name.type != TIPC_CFG_SRV))
494 return -EACCES;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100495
Allan Stephens3f8dd942011-01-18 13:09:29 -0500496 if (!m->msg_iovlen || (m->msg_iov[0].iov_len < sizeof(hdr)))
497 return -EMSGSIZE;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900498 if (copy_from_user(&hdr, m->msg_iov[0].iov_base, sizeof(hdr)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100499 return -EFAULT;
Allan Stephens70cb2342006-06-25 23:41:47 -0700500 if ((ntohs(hdr.tcm_type) & 0xC000) && (!capable(CAP_NET_ADMIN)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100501 return -EACCES;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900502
Per Lidenb97bf3f2006-01-02 19:04:38 +0100503 return 0;
504}
505
506/**
507 * send_msg - send message in connectionless manner
Allan Stephens0c3141e2008-04-15 00:22:02 -0700508 * @iocb: if NULL, indicates that socket lock is already held
Per Lidenb97bf3f2006-01-02 19:04:38 +0100509 * @sock: socket structure
510 * @m: message to send
Allan Stephense9024f0f2006-06-25 23:43:57 -0700511 * @total_len: length of message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900512 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100513 * Message must have an destination specified explicitly.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900514 * Used for SOCK_RDM and SOCK_DGRAM messages,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100515 * and for 'SYN' messages on SOCK_SEQPACKET and SOCK_STREAM connections.
516 * (Note: 'SYN+' is prohibited on SOCK_STREAM.)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900517 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100518 * Returns the number of bytes sent on success, or errno otherwise
519 */
520
521static int send_msg(struct kiocb *iocb, struct socket *sock,
522 struct msghdr *m, size_t total_len)
523{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700524 struct sock *sk = sock->sk;
525 struct tipc_port *tport = tipc_sk_port(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900526 struct sockaddr_tipc *dest = (struct sockaddr_tipc *)m->msg_name;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100527 int needs_conn;
528 int res = -EINVAL;
529
530 if (unlikely(!dest))
531 return -EDESTADDRREQ;
Allan Stephens51f9cc12006-06-25 23:49:06 -0700532 if (unlikely((m->msg_namelen < sizeof(*dest)) ||
533 (dest->family != AF_TIPC)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100534 return -EINVAL;
Allan Stephensc29c3f72010-04-20 17:58:24 -0400535 if ((total_len > TIPC_MAX_USER_MSG_SIZE) ||
536 (m->msg_iovlen > (unsigned)INT_MAX))
537 return -EMSGSIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100538
Allan Stephens0c3141e2008-04-15 00:22:02 -0700539 if (iocb)
540 lock_sock(sk);
541
Per Lidenb97bf3f2006-01-02 19:04:38 +0100542 needs_conn = (sock->state != SS_READY);
543 if (unlikely(needs_conn)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700544 if (sock->state == SS_LISTENING) {
545 res = -EPIPE;
546 goto exit;
Allan Stephens33880072006-06-25 23:44:57 -0700547 }
Allan Stephens0c3141e2008-04-15 00:22:02 -0700548 if (sock->state != SS_UNCONNECTED) {
549 res = -EISCONN;
550 goto exit;
551 }
552 if ((tport->published) ||
553 ((sock->type == SOCK_STREAM) && (total_len != 0))) {
554 res = -EOPNOTSUPP;
555 goto exit;
556 }
557 if (dest->addrtype == TIPC_ADDR_NAME) {
558 tport->conn_type = dest->addr.name.name.type;
559 tport->conn_instance = dest->addr.name.name.instance;
560 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100561
562 /* Abort any pending connection attempts (very unlikely) */
563
Allan Stephens0c3141e2008-04-15 00:22:02 -0700564 reject_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100565 }
566
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900567 do {
568 if (dest->addrtype == TIPC_ADDR_NAME) {
Allan Stephens2db99832010-12-31 18:59:33 +0000569 res = dest_name_check(dest, m);
570 if (res)
Allan Stephens0c3141e2008-04-15 00:22:02 -0700571 break;
572 res = tipc_send2name(tport->ref,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900573 &dest->addr.name.name,
574 dest->addr.name.domain,
575 m->msg_iovlen,
Allan Stephens26896902011-04-21 10:42:07 -0500576 m->msg_iov,
577 total_len);
Allan Stephens0e659672010-12-31 18:59:32 +0000578 } else if (dest->addrtype == TIPC_ADDR_ID) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700579 res = tipc_send2port(tport->ref,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900580 &dest->addr.id,
581 m->msg_iovlen,
Allan Stephens26896902011-04-21 10:42:07 -0500582 m->msg_iov,
583 total_len);
Allan Stephens0e659672010-12-31 18:59:32 +0000584 } else if (dest->addrtype == TIPC_ADDR_MCAST) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100585 if (needs_conn) {
586 res = -EOPNOTSUPP;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700587 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100588 }
Allan Stephens2db99832010-12-31 18:59:33 +0000589 res = dest_name_check(dest, m);
590 if (res)
Allan Stephens0c3141e2008-04-15 00:22:02 -0700591 break;
592 res = tipc_multicast(tport->ref,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900593 &dest->addr.nameseq,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900594 m->msg_iovlen,
Allan Stephens26896902011-04-21 10:42:07 -0500595 m->msg_iov,
596 total_len);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900597 }
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 Stephens26896902011-04-21 10:42:07 -0500662 res = tipc_send(tport->ref, m->msg_iovlen, m->msg_iov,
663 total_len);
Allan Stephensa0168922010-12-31 18:59:35 +0000664 if (likely(res != -ELINKCONG))
Allan Stephens0c3141e2008-04-15 00:22:02 -0700665 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100666 if (m->msg_flags & MSG_DONTWAIT) {
667 res = -EWOULDBLOCK;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700668 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100669 }
Allan Stephens0c3141e2008-04-15 00:22:02 -0700670 release_sock(sk);
Eric Dumazetaa395142010-04-20 13:03:51 +0000671 res = wait_event_interruptible(*sk_sleep(sk),
Allan Stephens0c3141e2008-04-15 00:22:02 -0700672 (!tport->congested || !tport->connected));
673 lock_sock(sk);
674 if (res)
675 break;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900676 } while (1);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700677
678 if (iocb)
679 release_sock(sk);
680 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100681}
682
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900683/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100684 * send_stream - send stream-oriented data
685 * @iocb: (unused)
686 * @sock: socket structure
687 * @m: data to send
688 * @total_len: total length of data to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900689 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100690 * Used for SOCK_STREAM data.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900691 *
692 * Returns the number of bytes sent on success (or partial success),
Allan Stephens1303e8f2006-06-25 23:46:50 -0700693 * or errno if no data sent
Per Lidenb97bf3f2006-01-02 19:04:38 +0100694 */
695
Per Lidenb97bf3f2006-01-02 19:04:38 +0100696static int send_stream(struct kiocb *iocb, struct socket *sock,
697 struct msghdr *m, size_t total_len)
698{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700699 struct sock *sk = sock->sk;
700 struct tipc_port *tport = tipc_sk_port(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100701 struct msghdr my_msg;
702 struct iovec my_iov;
703 struct iovec *curr_iov;
704 int curr_iovlen;
705 char __user *curr_start;
Allan Stephens05646c92007-06-10 17:25:24 -0700706 u32 hdr_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100707 int curr_left;
708 int bytes_to_send;
Allan Stephens1303e8f2006-06-25 23:46:50 -0700709 int bytes_sent;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100710 int res;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900711
Allan Stephens0c3141e2008-04-15 00:22:02 -0700712 lock_sock(sk);
713
Allan Stephens05646c92007-06-10 17:25:24 -0700714 /* Handle special cases where there is no connection */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100715
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900716 if (unlikely(sock->state != SS_CONNECTED)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700717 if (sock->state == SS_UNCONNECTED) {
718 res = send_packet(NULL, sock, m, total_len);
719 goto exit;
720 } else if (sock->state == SS_DISCONNECTING) {
721 res = -EPIPE;
722 goto exit;
723 } else {
724 res = -ENOTCONN;
725 goto exit;
726 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900727 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100728
Allan Stephens0c3141e2008-04-15 00:22:02 -0700729 if (unlikely(m->msg_name)) {
730 res = -EISCONN;
731 goto exit;
732 }
Allan Stephenseb5959c2006-10-16 21:43:54 -0700733
Allan Stephensc29c3f72010-04-20 17:58:24 -0400734 if ((total_len > (unsigned)INT_MAX) ||
735 (m->msg_iovlen > (unsigned)INT_MAX)) {
736 res = -EMSGSIZE;
737 goto exit;
738 }
739
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900740 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +0100741 * Send each iovec entry using one or more messages
742 *
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900743 * Note: This algorithm is good for the most likely case
Per Lidenb97bf3f2006-01-02 19:04:38 +0100744 * (i.e. one large iovec entry), but could be improved to pass sets
745 * of small iovec entries into send_packet().
746 */
747
Allan Stephens1303e8f2006-06-25 23:46:50 -0700748 curr_iov = m->msg_iov;
749 curr_iovlen = m->msg_iovlen;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100750 my_msg.msg_iov = &my_iov;
751 my_msg.msg_iovlen = 1;
Allan Stephenseb5959c2006-10-16 21:43:54 -0700752 my_msg.msg_flags = m->msg_flags;
753 my_msg.msg_name = NULL;
Allan Stephens1303e8f2006-06-25 23:46:50 -0700754 bytes_sent = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100755
Allan Stephens05646c92007-06-10 17:25:24 -0700756 hdr_size = msg_hdr_sz(&tport->phdr);
757
Per Lidenb97bf3f2006-01-02 19:04:38 +0100758 while (curr_iovlen--) {
759 curr_start = curr_iov->iov_base;
760 curr_left = curr_iov->iov_len;
761
762 while (curr_left) {
Allan Stephens05646c92007-06-10 17:25:24 -0700763 bytes_to_send = tport->max_pkt - hdr_size;
764 if (bytes_to_send > TIPC_MAX_USER_MSG_SIZE)
765 bytes_to_send = TIPC_MAX_USER_MSG_SIZE;
766 if (curr_left < bytes_to_send)
767 bytes_to_send = curr_left;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100768 my_iov.iov_base = curr_start;
769 my_iov.iov_len = bytes_to_send;
Allan Stephens26896902011-04-21 10:42:07 -0500770 res = send_packet(NULL, sock, &my_msg, bytes_to_send);
Allan Stephens2db99832010-12-31 18:59:33 +0000771 if (res < 0) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700772 if (bytes_sent)
Allan Stephens05646c92007-06-10 17:25:24 -0700773 res = bytes_sent;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700774 goto exit;
Allan Stephens1303e8f2006-06-25 23:46:50 -0700775 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100776 curr_left -= bytes_to_send;
777 curr_start += bytes_to_send;
Allan Stephens1303e8f2006-06-25 23:46:50 -0700778 bytes_sent += bytes_to_send;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100779 }
780
781 curr_iov++;
782 }
Allan Stephens0c3141e2008-04-15 00:22:02 -0700783 res = bytes_sent;
784exit:
785 release_sock(sk);
786 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100787}
788
789/**
790 * auto_connect - complete connection setup to a remote port
791 * @sock: socket structure
Per Lidenb97bf3f2006-01-02 19:04:38 +0100792 * @msg: peer's response message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900793 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100794 * Returns 0 on success, errno otherwise
795 */
796
Allan Stephens0c3141e2008-04-15 00:22:02 -0700797static int auto_connect(struct socket *sock, struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100798{
Allan Stephens2da59912008-07-14 22:43:32 -0700799 struct tipc_sock *tsock = tipc_sk(sock->sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100800
801 if (msg_errcode(msg)) {
802 sock->state = SS_DISCONNECTING;
803 return -ECONNREFUSED;
804 }
805
Allan Stephens2da59912008-07-14 22:43:32 -0700806 tsock->peer_name.ref = msg_origport(msg);
807 tsock->peer_name.node = msg_orignode(msg);
808 tipc_connect2port(tsock->p->ref, &tsock->peer_name);
809 tipc_set_portimportance(tsock->p->ref, msg_importance(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100810 sock->state = SS_CONNECTED;
811 return 0;
812}
813
814/**
815 * set_orig_addr - capture sender's address for received message
816 * @m: descriptor for message info
817 * @msg: received message header
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900818 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100819 * Note: Address is not captured if not requested by receiver.
820 */
821
Sam Ravnborg05790c62006-03-20 22:37:04 -0800822static void set_orig_addr(struct msghdr *m, struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100823{
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900824 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)m->msg_name;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100825
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900826 if (addr) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100827 addr->family = AF_TIPC;
828 addr->addrtype = TIPC_ADDR_ID;
829 addr->addr.id.ref = msg_origport(msg);
830 addr->addr.id.node = msg_orignode(msg);
Allan Stephens0e659672010-12-31 18:59:32 +0000831 addr->addr.name.domain = 0; /* could leave uninitialized */
832 addr->scope = 0; /* could leave uninitialized */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100833 m->msg_namelen = sizeof(struct sockaddr_tipc);
834 }
835}
836
837/**
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900838 * anc_data_recv - optionally capture ancillary data for received message
Per Lidenb97bf3f2006-01-02 19:04:38 +0100839 * @m: descriptor for message info
840 * @msg: received message header
841 * @tport: TIPC port associated with message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900842 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100843 * Note: Ancillary data is not captured if not requested by receiver.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900844 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100845 * Returns 0 if successful, otherwise errno
846 */
847
Sam Ravnborg05790c62006-03-20 22:37:04 -0800848static int anc_data_recv(struct msghdr *m, struct tipc_msg *msg,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100849 struct tipc_port *tport)
850{
851 u32 anc_data[3];
852 u32 err;
853 u32 dest_type;
Allan Stephens3546c752006-06-25 23:45:24 -0700854 int has_name;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100855 int res;
856
857 if (likely(m->msg_controllen == 0))
858 return 0;
859
860 /* Optionally capture errored message object(s) */
861
862 err = msg ? msg_errcode(msg) : 0;
863 if (unlikely(err)) {
864 anc_data[0] = err;
865 anc_data[1] = msg_data_sz(msg);
Allan Stephens2db99832010-12-31 18:59:33 +0000866 res = put_cmsg(m, SOL_TIPC, TIPC_ERRINFO, 8, anc_data);
867 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100868 return res;
Allan Stephens2db99832010-12-31 18:59:33 +0000869 if (anc_data[1]) {
870 res = put_cmsg(m, SOL_TIPC, TIPC_RETDATA, anc_data[1],
871 msg_data(msg));
872 if (res)
873 return res;
874 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100875 }
876
877 /* Optionally capture message destination object */
878
879 dest_type = msg ? msg_type(msg) : TIPC_DIRECT_MSG;
880 switch (dest_type) {
881 case TIPC_NAMED_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -0700882 has_name = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100883 anc_data[0] = msg_nametype(msg);
884 anc_data[1] = msg_namelower(msg);
885 anc_data[2] = msg_namelower(msg);
886 break;
887 case TIPC_MCAST_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -0700888 has_name = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100889 anc_data[0] = msg_nametype(msg);
890 anc_data[1] = msg_namelower(msg);
891 anc_data[2] = msg_nameupper(msg);
892 break;
893 case TIPC_CONN_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -0700894 has_name = (tport->conn_type != 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100895 anc_data[0] = tport->conn_type;
896 anc_data[1] = tport->conn_instance;
897 anc_data[2] = tport->conn_instance;
898 break;
899 default:
Allan Stephens3546c752006-06-25 23:45:24 -0700900 has_name = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100901 }
Allan Stephens2db99832010-12-31 18:59:33 +0000902 if (has_name) {
903 res = put_cmsg(m, SOL_TIPC, TIPC_DESTNAME, 12, anc_data);
904 if (res)
905 return res;
906 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100907
908 return 0;
909}
910
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900911/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100912 * recv_msg - receive packet-oriented message
913 * @iocb: (unused)
914 * @m: descriptor for message info
915 * @buf_len: total size of user buffer area
916 * @flags: receive flags
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900917 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100918 * Used for SOCK_DGRAM, SOCK_RDM, and SOCK_SEQPACKET messages.
919 * If the complete message doesn't fit in user area, truncate it.
920 *
921 * Returns size of returned message data, errno otherwise
922 */
923
924static int recv_msg(struct kiocb *iocb, struct socket *sock,
925 struct msghdr *m, size_t buf_len, int flags)
926{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700927 struct sock *sk = sock->sk;
928 struct tipc_port *tport = tipc_sk_port(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100929 struct sk_buff *buf;
930 struct tipc_msg *msg;
Allan Stephens71092ea2011-02-23 14:52:14 -0500931 long timeout;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100932 unsigned int sz;
933 u32 err;
934 int res;
935
Allan Stephens0c3141e2008-04-15 00:22:02 -0700936 /* Catch invalid receive requests */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100937
Per Lidenb97bf3f2006-01-02 19:04:38 +0100938 if (unlikely(!buf_len))
939 return -EINVAL;
940
Allan Stephens0c3141e2008-04-15 00:22:02 -0700941 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100942
Allan Stephens0c3141e2008-04-15 00:22:02 -0700943 if (unlikely(sock->state == SS_UNCONNECTED)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100944 res = -ENOTCONN;
945 goto exit;
946 }
947
Allan Stephens71092ea2011-02-23 14:52:14 -0500948 timeout = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700949restart:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100950
Allan Stephens0c3141e2008-04-15 00:22:02 -0700951 /* Look for a message in receive queue; wait if necessary */
952
953 while (skb_queue_empty(&sk->sk_receive_queue)) {
954 if (sock->state == SS_DISCONNECTING) {
955 res = -ENOTCONN;
956 goto exit;
957 }
Allan Stephens71092ea2011-02-23 14:52:14 -0500958 if (timeout <= 0L) {
959 res = timeout ? timeout : -EWOULDBLOCK;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700960 goto exit;
961 }
962 release_sock(sk);
Allan Stephens71092ea2011-02-23 14:52:14 -0500963 timeout = wait_event_interruptible_timeout(*sk_sleep(sk),
964 tipc_rx_ready(sock),
965 timeout);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700966 lock_sock(sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700967 }
968
969 /* Look at first message in receive queue */
970
971 buf = skb_peek(&sk->sk_receive_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100972 msg = buf_msg(buf);
973 sz = msg_data_sz(msg);
974 err = msg_errcode(msg);
975
976 /* Complete connection setup for an implied connect */
977
978 if (unlikely(sock->state == SS_CONNECTING)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700979 res = auto_connect(sock, msg);
980 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100981 goto exit;
982 }
983
984 /* Discard an empty non-errored message & try again */
985
986 if ((!sz) && (!err)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700987 advance_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100988 goto restart;
989 }
990
991 /* Capture sender's address (optional) */
992
993 set_orig_addr(m, msg);
994
995 /* Capture ancillary data (optional) */
996
Allan Stephens0c3141e2008-04-15 00:22:02 -0700997 res = anc_data_recv(m, msg, tport);
998 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100999 goto exit;
1000
1001 /* Capture message data (if valid) & compute return value (always) */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001002
Per Lidenb97bf3f2006-01-02 19:04:38 +01001003 if (!err) {
1004 if (unlikely(buf_len < sz)) {
1005 sz = buf_len;
1006 m->msg_flags |= MSG_TRUNC;
1007 }
Allan Stephens0232fd02011-02-21 09:45:40 -05001008 res = skb_copy_datagram_iovec(buf, msg_hdr_sz(msg),
1009 m->msg_iov, sz);
1010 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001011 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001012 res = sz;
1013 } else {
1014 if ((sock->state == SS_READY) ||
1015 ((err == TIPC_CONN_SHUTDOWN) || m->msg_control))
1016 res = 0;
1017 else
1018 res = -ECONNRESET;
1019 }
1020
1021 /* Consume received message (optional) */
1022
1023 if (likely(!(flags & MSG_PEEK))) {
Allan Stephens99009802008-04-15 00:06:12 -07001024 if ((sock->state != SS_READY) &&
Allan Stephens0c3141e2008-04-15 00:22:02 -07001025 (++tport->conn_unacked >= TIPC_FLOW_CONTROL_WIN))
1026 tipc_acknowledge(tport->ref, tport->conn_unacked);
1027 advance_rx_queue(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001028 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001029exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001030 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001031 return res;
1032}
1033
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001034/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001035 * recv_stream - receive stream-oriented data
1036 * @iocb: (unused)
1037 * @m: descriptor for message info
1038 * @buf_len: total size of user buffer area
1039 * @flags: receive flags
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001040 *
1041 * Used for SOCK_STREAM messages only. If not enough data is available
Per Lidenb97bf3f2006-01-02 19:04:38 +01001042 * will optionally wait for more; never truncates data.
1043 *
1044 * Returns size of returned message data, errno otherwise
1045 */
1046
1047static int recv_stream(struct kiocb *iocb, struct socket *sock,
1048 struct msghdr *m, size_t buf_len, int flags)
1049{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001050 struct sock *sk = sock->sk;
1051 struct tipc_port *tport = tipc_sk_port(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001052 struct sk_buff *buf;
1053 struct tipc_msg *msg;
Allan Stephens71092ea2011-02-23 14:52:14 -05001054 long timeout;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001055 unsigned int sz;
Florian Westphal3720d402010-08-17 11:00:04 +00001056 int sz_to_copy, target, needed;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001057 int sz_copied = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001058 u32 err;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001059 int res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001060
1061 /* Catch invalid receive attempts */
1062
1063 if (unlikely(!buf_len))
1064 return -EINVAL;
1065
Allan Stephens0c3141e2008-04-15 00:22:02 -07001066 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001067
Allan Stephens0c3141e2008-04-15 00:22:02 -07001068 if (unlikely((sock->state == SS_UNCONNECTED) ||
1069 (sock->state == SS_CONNECTING))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001070 res = -ENOTCONN;
1071 goto exit;
1072 }
1073
Florian Westphal3720d402010-08-17 11:00:04 +00001074 target = sock_rcvlowat(sk, flags & MSG_WAITALL, buf_len);
Allan Stephens71092ea2011-02-23 14:52:14 -05001075 timeout = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001076restart:
Per Lidenb97bf3f2006-01-02 19:04:38 +01001077
Allan Stephens0c3141e2008-04-15 00:22:02 -07001078 /* Look for a message in receive queue; wait if necessary */
1079
1080 while (skb_queue_empty(&sk->sk_receive_queue)) {
1081 if (sock->state == SS_DISCONNECTING) {
1082 res = -ENOTCONN;
1083 goto exit;
1084 }
Allan Stephens71092ea2011-02-23 14:52:14 -05001085 if (timeout <= 0L) {
1086 res = timeout ? timeout : -EWOULDBLOCK;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001087 goto exit;
1088 }
1089 release_sock(sk);
Allan Stephens71092ea2011-02-23 14:52:14 -05001090 timeout = wait_event_interruptible_timeout(*sk_sleep(sk),
1091 tipc_rx_ready(sock),
1092 timeout);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001093 lock_sock(sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001094 }
1095
1096 /* Look at first message in receive queue */
1097
1098 buf = skb_peek(&sk->sk_receive_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001099 msg = buf_msg(buf);
1100 sz = msg_data_sz(msg);
1101 err = msg_errcode(msg);
1102
1103 /* Discard an empty non-errored message & try again */
1104
1105 if ((!sz) && (!err)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07001106 advance_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001107 goto restart;
1108 }
1109
1110 /* Optionally capture sender's address & ancillary data of first msg */
1111
1112 if (sz_copied == 0) {
1113 set_orig_addr(m, msg);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001114 res = anc_data_recv(m, msg, tport);
1115 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001116 goto exit;
1117 }
1118
1119 /* Capture message data (if valid) & compute return value (always) */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001120
Per Lidenb97bf3f2006-01-02 19:04:38 +01001121 if (!err) {
Allan Stephens0232fd02011-02-21 09:45:40 -05001122 u32 offset = (u32)(unsigned long)(TIPC_SKB_CB(buf)->handle);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001123
Allan Stephens0232fd02011-02-21 09:45:40 -05001124 sz -= offset;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001125 needed = (buf_len - sz_copied);
1126 sz_to_copy = (sz <= needed) ? sz : needed;
Allan Stephens0232fd02011-02-21 09:45:40 -05001127
1128 res = skb_copy_datagram_iovec(buf, msg_hdr_sz(msg) + offset,
1129 m->msg_iov, sz_to_copy);
1130 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001131 goto exit;
Allan Stephens0232fd02011-02-21 09:45:40 -05001132
Per Lidenb97bf3f2006-01-02 19:04:38 +01001133 sz_copied += sz_to_copy;
1134
1135 if (sz_to_copy < sz) {
1136 if (!(flags & MSG_PEEK))
Allan Stephens0232fd02011-02-21 09:45:40 -05001137 TIPC_SKB_CB(buf)->handle =
1138 (void *)(unsigned long)(offset + sz_to_copy);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001139 goto exit;
1140 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001141 } else {
1142 if (sz_copied != 0)
1143 goto exit; /* can't add error msg to valid data */
1144
1145 if ((err == TIPC_CONN_SHUTDOWN) || m->msg_control)
1146 res = 0;
1147 else
1148 res = -ECONNRESET;
1149 }
1150
1151 /* Consume received message (optional) */
1152
1153 if (likely(!(flags & MSG_PEEK))) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07001154 if (unlikely(++tport->conn_unacked >= TIPC_FLOW_CONTROL_WIN))
1155 tipc_acknowledge(tport->ref, tport->conn_unacked);
1156 advance_rx_queue(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001157 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001158
1159 /* Loop around if more data is required */
1160
Joe Perchesf64f9e72009-11-29 16:55:45 -08001161 if ((sz_copied < buf_len) && /* didn't get all requested data */
1162 (!skb_queue_empty(&sk->sk_receive_queue) ||
Florian Westphal3720d402010-08-17 11:00:04 +00001163 (sz_copied < target)) && /* and more is ready or required */
Joe Perchesf64f9e72009-11-29 16:55:45 -08001164 (!(flags & MSG_PEEK)) && /* and aren't just peeking at data */
1165 (!err)) /* and haven't reached a FIN */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001166 goto restart;
1167
1168exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001169 release_sock(sk);
Allan Stephensa3b0a5a2006-06-25 23:48:22 -07001170 return sz_copied ? sz_copied : res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001171}
1172
1173/**
Allan Stephens1819b832008-04-15 00:15:50 -07001174 * rx_queue_full - determine if receive queue can accept another message
1175 * @msg: message to be added to queue
Per Lidenb97bf3f2006-01-02 19:04:38 +01001176 * @queue_size: current size of queue
1177 * @base: nominal maximum size of queue
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001178 *
Allan Stephens1819b832008-04-15 00:15:50 -07001179 * Returns 1 if queue is unable to accept message, 0 otherwise
Per Lidenb97bf3f2006-01-02 19:04:38 +01001180 */
1181
Allan Stephens1819b832008-04-15 00:15:50 -07001182static int rx_queue_full(struct tipc_msg *msg, u32 queue_size, u32 base)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001183{
1184 u32 threshold;
1185 u32 imp = msg_importance(msg);
1186
1187 if (imp == TIPC_LOW_IMPORTANCE)
1188 threshold = base;
1189 else if (imp == TIPC_MEDIUM_IMPORTANCE)
1190 threshold = base * 2;
1191 else if (imp == TIPC_HIGH_IMPORTANCE)
1192 threshold = base * 100;
1193 else
1194 return 0;
1195
1196 if (msg_connected(msg))
1197 threshold *= 4;
1198
Eric Dumazeta02cec22010-09-22 20:43:57 +00001199 return queue_size >= threshold;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001200}
1201
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001202/**
Allan Stephens0c3141e2008-04-15 00:22:02 -07001203 * filter_rcv - validate incoming message
1204 * @sk: socket
Per Lidenb97bf3f2006-01-02 19:04:38 +01001205 * @buf: message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001206 *
Allan Stephens0c3141e2008-04-15 00:22:02 -07001207 * Enqueues message on receive queue if acceptable; optionally handles
1208 * disconnect indication for a connected socket.
1209 *
1210 * Called with socket lock already taken; port lock may also be taken.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001211 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001212 * Returns TIPC error status code (TIPC_OK if message is not to be rejected)
1213 */
1214
Allan Stephens0c3141e2008-04-15 00:22:02 -07001215static u32 filter_rcv(struct sock *sk, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001216{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001217 struct socket *sock = sk->sk_socket;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001218 struct tipc_msg *msg = buf_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001219 u32 recv_q_len;
1220
Per Lidenb97bf3f2006-01-02 19:04:38 +01001221 /* Reject message if it is wrong sort of message for socket */
1222
1223 /*
1224 * WOULD IT BE BETTER TO JUST DISCARD THESE MESSAGES INSTEAD?
1225 * "NO PORT" ISN'T REALLY THE RIGHT ERROR CODE, AND THERE MAY
1226 * BE SECURITY IMPLICATIONS INHERENT IN REJECTING INVALID TRAFFIC
1227 */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001228
Per Lidenb97bf3f2006-01-02 19:04:38 +01001229 if (sock->state == SS_READY) {
Allan Stephensb29f1422010-12-31 18:59:25 +00001230 if (msg_connected(msg))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001231 return TIPC_ERR_NO_PORT;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001232 } else {
Allan Stephensb29f1422010-12-31 18:59:25 +00001233 if (msg_mcast(msg))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001234 return TIPC_ERR_NO_PORT;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001235 if (sock->state == SS_CONNECTED) {
Allan Stephensb29f1422010-12-31 18:59:25 +00001236 if (!msg_connected(msg))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001237 return TIPC_ERR_NO_PORT;
Allan Stephensb29f1422010-12-31 18:59:25 +00001238 } else if (sock->state == SS_CONNECTING) {
1239 if (!msg_connected(msg) && (msg_errcode(msg) == 0))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001240 return TIPC_ERR_NO_PORT;
Allan Stephensb29f1422010-12-31 18:59:25 +00001241 } else if (sock->state == SS_LISTENING) {
1242 if (msg_connected(msg) || msg_errcode(msg))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001243 return TIPC_ERR_NO_PORT;
Allan Stephensb29f1422010-12-31 18:59:25 +00001244 } else if (sock->state == SS_DISCONNECTING) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001245 return TIPC_ERR_NO_PORT;
Allan Stephensb29f1422010-12-31 18:59:25 +00001246 } else /* (sock->state == SS_UNCONNECTED) */ {
1247 if (msg_connected(msg) || msg_errcode(msg))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001248 return TIPC_ERR_NO_PORT;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001249 }
1250 }
1251
1252 /* Reject message if there isn't room to queue it */
1253
Allan Stephens1819b832008-04-15 00:15:50 -07001254 recv_q_len = (u32)atomic_read(&tipc_queue_size);
1255 if (unlikely(recv_q_len >= OVERLOAD_LIMIT_BASE)) {
1256 if (rx_queue_full(msg, recv_q_len, OVERLOAD_LIMIT_BASE))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001257 return TIPC_ERR_OVERLOAD;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001258 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001259 recv_q_len = skb_queue_len(&sk->sk_receive_queue);
Allan Stephens1819b832008-04-15 00:15:50 -07001260 if (unlikely(recv_q_len >= (OVERLOAD_LIMIT_BASE / 2))) {
1261 if (rx_queue_full(msg, recv_q_len, OVERLOAD_LIMIT_BASE / 2))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001262 return TIPC_ERR_OVERLOAD;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001263 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001264
Allan Stephens0c3141e2008-04-15 00:22:02 -07001265 /* Enqueue message (finally!) */
1266
Allan Stephens0232fd02011-02-21 09:45:40 -05001267 TIPC_SKB_CB(buf)->handle = 0;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001268 atomic_inc(&tipc_queue_size);
1269 __skb_queue_tail(&sk->sk_receive_queue, buf);
1270
Per Lidenb97bf3f2006-01-02 19:04:38 +01001271 /* Initiate connection termination for an incoming 'FIN' */
1272
1273 if (unlikely(msg_errcode(msg) && (sock->state == SS_CONNECTED))) {
1274 sock->state = SS_DISCONNECTING;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001275 tipc_disconnect_port(tipc_sk_port(sk));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001276 }
1277
Eric Dumazetaa395142010-04-20 13:03:51 +00001278 if (waitqueue_active(sk_sleep(sk)))
1279 wake_up_interruptible(sk_sleep(sk));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001280 return TIPC_OK;
1281}
1282
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001283/**
Allan Stephens0c3141e2008-04-15 00:22:02 -07001284 * backlog_rcv - handle incoming message from backlog queue
1285 * @sk: socket
1286 * @buf: message
1287 *
1288 * Caller must hold socket lock, but not port lock.
1289 *
1290 * Returns 0
1291 */
1292
1293static int backlog_rcv(struct sock *sk, struct sk_buff *buf)
1294{
1295 u32 res;
1296
1297 res = filter_rcv(sk, buf);
1298 if (res)
1299 tipc_reject_msg(buf, res);
1300 return 0;
1301}
1302
1303/**
1304 * dispatch - handle incoming message
1305 * @tport: TIPC port that received message
1306 * @buf: message
1307 *
1308 * Called with port lock already taken.
1309 *
1310 * Returns TIPC error status code (TIPC_OK if message is not to be rejected)
1311 */
1312
1313static u32 dispatch(struct tipc_port *tport, struct sk_buff *buf)
1314{
1315 struct sock *sk = (struct sock *)tport->usr_handle;
1316 u32 res;
1317
1318 /*
1319 * Process message if socket is unlocked; otherwise add to backlog queue
1320 *
1321 * This code is based on sk_receive_skb(), but must be distinct from it
1322 * since a TIPC-specific filter/reject mechanism is utilized
1323 */
1324
1325 bh_lock_sock(sk);
1326 if (!sock_owned_by_user(sk)) {
1327 res = filter_rcv(sk, buf);
1328 } else {
Zhu Yia3a858f2010-03-04 18:01:47 +00001329 if (sk_add_backlog(sk, buf))
Zhu Yi53eecb12010-03-04 18:01:45 +00001330 res = TIPC_ERR_OVERLOAD;
1331 else
1332 res = TIPC_OK;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001333 }
1334 bh_unlock_sock(sk);
1335
1336 return res;
1337}
1338
1339/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001340 * wakeupdispatch - wake up port after congestion
1341 * @tport: port to wakeup
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001342 *
Allan Stephens0c3141e2008-04-15 00:22:02 -07001343 * Called with port lock already taken.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001344 */
1345
1346static void wakeupdispatch(struct tipc_port *tport)
1347{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001348 struct sock *sk = (struct sock *)tport->usr_handle;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001349
Eric Dumazetaa395142010-04-20 13:03:51 +00001350 if (waitqueue_active(sk_sleep(sk)))
1351 wake_up_interruptible(sk_sleep(sk));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001352}
1353
1354/**
1355 * connect - establish a connection to another TIPC port
1356 * @sock: socket structure
1357 * @dest: socket address for destination port
1358 * @destlen: size of socket address data structure
Allan Stephens0c3141e2008-04-15 00:22:02 -07001359 * @flags: file-related flags associated with socket
Per Lidenb97bf3f2006-01-02 19:04:38 +01001360 *
1361 * Returns 0 on success, errno otherwise
1362 */
1363
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001364static int connect(struct socket *sock, struct sockaddr *dest, int destlen,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001365 int flags)
1366{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001367 struct sock *sk = sock->sk;
Allan Stephensb89741a2008-04-15 00:20:37 -07001368 struct sockaddr_tipc *dst = (struct sockaddr_tipc *)dest;
1369 struct msghdr m = {NULL,};
1370 struct sk_buff *buf;
1371 struct tipc_msg *msg;
Allan Stephens564e83b2010-08-17 11:00:15 +00001372 long timeout;
Allan Stephensb89741a2008-04-15 00:20:37 -07001373 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001374
Allan Stephens0c3141e2008-04-15 00:22:02 -07001375 lock_sock(sk);
1376
Allan Stephensb89741a2008-04-15 00:20:37 -07001377 /* For now, TIPC does not allow use of connect() with DGRAM/RDM types */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001378
Allan Stephens0c3141e2008-04-15 00:22:02 -07001379 if (sock->state == SS_READY) {
1380 res = -EOPNOTSUPP;
1381 goto exit;
1382 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001383
Allan Stephensb89741a2008-04-15 00:20:37 -07001384 /* For now, TIPC does not support the non-blocking form of connect() */
Allan Stephens4934c692008-04-15 00:16:19 -07001385
Allan Stephens0c3141e2008-04-15 00:22:02 -07001386 if (flags & O_NONBLOCK) {
Allan Stephens35997e32010-08-17 11:00:05 +00001387 res = -EOPNOTSUPP;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001388 goto exit;
1389 }
Allan Stephens4934c692008-04-15 00:16:19 -07001390
Allan Stephensb89741a2008-04-15 00:20:37 -07001391 /* Issue Posix-compliant error code if socket is in the wrong state */
Allan Stephens51f9cc12006-06-25 23:49:06 -07001392
Allan Stephens0c3141e2008-04-15 00:22:02 -07001393 if (sock->state == SS_LISTENING) {
1394 res = -EOPNOTSUPP;
1395 goto exit;
1396 }
1397 if (sock->state == SS_CONNECTING) {
1398 res = -EALREADY;
1399 goto exit;
1400 }
1401 if (sock->state != SS_UNCONNECTED) {
1402 res = -EISCONN;
1403 goto exit;
1404 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001405
Allan Stephensb89741a2008-04-15 00:20:37 -07001406 /*
1407 * Reject connection attempt using multicast address
1408 *
1409 * Note: send_msg() validates the rest of the address fields,
1410 * so there's no need to do it here
1411 */
Allan Stephens51f9cc12006-06-25 23:49:06 -07001412
Allan Stephens0c3141e2008-04-15 00:22:02 -07001413 if (dst->addrtype == TIPC_ADDR_MCAST) {
1414 res = -EINVAL;
1415 goto exit;
1416 }
1417
1418 /* Reject any messages already in receive queue (very unlikely) */
1419
1420 reject_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001421
Allan Stephensb89741a2008-04-15 00:20:37 -07001422 /* Send a 'SYN-' to destination */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001423
Allan Stephensb89741a2008-04-15 00:20:37 -07001424 m.msg_name = dest;
1425 m.msg_namelen = destlen;
1426 res = send_msg(NULL, sock, &m, 0);
Allan Stephensa0168922010-12-31 18:59:35 +00001427 if (res < 0)
Allan Stephens0c3141e2008-04-15 00:22:02 -07001428 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001429
Allan Stephens0c3141e2008-04-15 00:22:02 -07001430 /* Wait until an 'ACK' or 'RST' arrives, or a timeout occurs */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001431
Allan Stephens564e83b2010-08-17 11:00:15 +00001432 timeout = tipc_sk(sk)->conn_timeout;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001433 release_sock(sk);
Eric Dumazetaa395142010-04-20 13:03:51 +00001434 res = wait_event_interruptible_timeout(*sk_sleep(sk),
Allan Stephens0c3141e2008-04-15 00:22:02 -07001435 (!skb_queue_empty(&sk->sk_receive_queue) ||
1436 (sock->state != SS_CONNECTING)),
Allan Stephens564e83b2010-08-17 11:00:15 +00001437 timeout ? timeout : MAX_SCHEDULE_TIMEOUT);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001438 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001439
Allan Stephensb89741a2008-04-15 00:20:37 -07001440 if (res > 0) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07001441 buf = skb_peek(&sk->sk_receive_queue);
1442 if (buf != NULL) {
1443 msg = buf_msg(buf);
1444 res = auto_connect(sock, msg);
1445 if (!res) {
1446 if (!msg_data_sz(msg))
1447 advance_rx_queue(sk);
1448 }
1449 } else {
Allan Stephensa0168922010-12-31 18:59:35 +00001450 if (sock->state == SS_CONNECTED)
Allan Stephens0c3141e2008-04-15 00:22:02 -07001451 res = -EISCONN;
Allan Stephensa0168922010-12-31 18:59:35 +00001452 else
Allan Stephens0c3141e2008-04-15 00:22:02 -07001453 res = -ECONNREFUSED;
Allan Stephensb89741a2008-04-15 00:20:37 -07001454 }
1455 } else {
1456 if (res == 0)
1457 res = -ETIMEDOUT;
1458 else
1459 ; /* leave "res" unchanged */
1460 sock->state = SS_DISCONNECTING;
1461 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001462
Allan Stephens0c3141e2008-04-15 00:22:02 -07001463exit:
1464 release_sock(sk);
Allan Stephensb89741a2008-04-15 00:20:37 -07001465 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001466}
1467
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001468/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001469 * listen - allow socket to listen for incoming connections
1470 * @sock: socket structure
1471 * @len: (unused)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001472 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001473 * Returns 0 on success, errno otherwise
1474 */
1475
1476static int listen(struct socket *sock, int len)
1477{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001478 struct sock *sk = sock->sk;
1479 int res;
1480
1481 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001482
1483 if (sock->state == SS_READY)
Allan Stephens0c3141e2008-04-15 00:22:02 -07001484 res = -EOPNOTSUPP;
1485 else if (sock->state != SS_UNCONNECTED)
1486 res = -EINVAL;
1487 else {
1488 sock->state = SS_LISTENING;
1489 res = 0;
1490 }
1491
1492 release_sock(sk);
1493 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001494}
1495
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001496/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001497 * accept - wait for connection request
1498 * @sock: listening socket
1499 * @newsock: new socket that is to be connected
1500 * @flags: file-related flags associated with socket
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001501 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001502 * Returns 0 on success, errno otherwise
1503 */
1504
Allan Stephens0c3141e2008-04-15 00:22:02 -07001505static int accept(struct socket *sock, struct socket *new_sock, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001506{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001507 struct sock *sk = sock->sk;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001508 struct sk_buff *buf;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001509 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001510
Allan Stephens0c3141e2008-04-15 00:22:02 -07001511 lock_sock(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001512
Allan Stephens0c3141e2008-04-15 00:22:02 -07001513 if (sock->state == SS_READY) {
1514 res = -EOPNOTSUPP;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001515 goto exit;
1516 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001517 if (sock->state != SS_LISTENING) {
1518 res = -EINVAL;
1519 goto exit;
1520 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001521
Allan Stephens0c3141e2008-04-15 00:22:02 -07001522 while (skb_queue_empty(&sk->sk_receive_queue)) {
1523 if (flags & O_NONBLOCK) {
1524 res = -EWOULDBLOCK;
1525 goto exit;
1526 }
1527 release_sock(sk);
Eric Dumazetaa395142010-04-20 13:03:51 +00001528 res = wait_event_interruptible(*sk_sleep(sk),
Allan Stephens0c3141e2008-04-15 00:22:02 -07001529 (!skb_queue_empty(&sk->sk_receive_queue)));
1530 lock_sock(sk);
1531 if (res)
1532 goto exit;
1533 }
1534
1535 buf = skb_peek(&sk->sk_receive_queue);
1536
Eric Paris3f378b62009-11-05 22:18:14 -08001537 res = tipc_create(sock_net(sock->sk), new_sock, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001538 if (!res) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07001539 struct sock *new_sk = new_sock->sk;
Allan Stephens2da59912008-07-14 22:43:32 -07001540 struct tipc_sock *new_tsock = tipc_sk(new_sk);
1541 struct tipc_port *new_tport = new_tsock->p;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001542 u32 new_ref = new_tport->ref;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001543 struct tipc_msg *msg = buf_msg(buf);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001544
1545 lock_sock(new_sk);
1546
1547 /*
1548 * Reject any stray messages received by new socket
1549 * before the socket lock was taken (very, very unlikely)
1550 */
1551
1552 reject_rx_queue(new_sk);
1553
1554 /* Connect new socket to it's peer */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001555
Allan Stephens2da59912008-07-14 22:43:32 -07001556 new_tsock->peer_name.ref = msg_origport(msg);
1557 new_tsock->peer_name.node = msg_orignode(msg);
1558 tipc_connect2port(new_ref, &new_tsock->peer_name);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001559 new_sock->state = SS_CONNECTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001560
1561 tipc_set_portimportance(new_ref, msg_importance(msg));
1562 if (msg_named(msg)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07001563 new_tport->conn_type = msg_nametype(msg);
1564 new_tport->conn_instance = msg_nameinst(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001565 }
1566
Allan Stephens0c3141e2008-04-15 00:22:02 -07001567 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001568 * Respond to 'SYN-' by discarding it & returning 'ACK'-.
1569 * Respond to 'SYN+' by queuing it on new socket.
1570 */
1571
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001572 if (!msg_data_sz(msg)) {
1573 struct msghdr m = {NULL,};
Per Lidenb97bf3f2006-01-02 19:04:38 +01001574
Allan Stephens0c3141e2008-04-15 00:22:02 -07001575 advance_rx_queue(sk);
1576 send_packet(NULL, new_sock, &m, 0);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001577 } else {
Allan Stephens0c3141e2008-04-15 00:22:02 -07001578 __skb_dequeue(&sk->sk_receive_queue);
1579 __skb_queue_head(&new_sk->sk_receive_queue, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001580 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001581 release_sock(new_sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001582 }
1583exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001584 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001585 return res;
1586}
1587
1588/**
1589 * shutdown - shutdown socket connection
1590 * @sock: socket structure
Allan Stephense247a8f2008-03-06 15:05:38 -08001591 * @how: direction to close (must be SHUT_RDWR)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001592 *
1593 * Terminates connection (if necessary), then purges socket's receive queue.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001594 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001595 * Returns 0 on success, errno otherwise
1596 */
1597
1598static int shutdown(struct socket *sock, int how)
1599{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001600 struct sock *sk = sock->sk;
1601 struct tipc_port *tport = tipc_sk_port(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001602 struct sk_buff *buf;
1603 int res;
1604
Allan Stephense247a8f2008-03-06 15:05:38 -08001605 if (how != SHUT_RDWR)
1606 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001607
Allan Stephens0c3141e2008-04-15 00:22:02 -07001608 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001609
1610 switch (sock->state) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07001611 case SS_CONNECTING:
Per Lidenb97bf3f2006-01-02 19:04:38 +01001612 case SS_CONNECTED:
1613
Allan Stephens0c3141e2008-04-15 00:22:02 -07001614 /* Disconnect and send a 'FIN+' or 'FIN-' message to peer */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001615restart:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001616 buf = __skb_dequeue(&sk->sk_receive_queue);
1617 if (buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001618 atomic_dec(&tipc_queue_size);
Allan Stephens0232fd02011-02-21 09:45:40 -05001619 if (TIPC_SKB_CB(buf)->handle != 0) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001620 buf_discard(buf);
1621 goto restart;
1622 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001623 tipc_disconnect(tport->ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001624 tipc_reject_msg(buf, TIPC_CONN_SHUTDOWN);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001625 } else {
1626 tipc_shutdown(tport->ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001627 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001628
1629 sock->state = SS_DISCONNECTING;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001630
1631 /* fall through */
1632
1633 case SS_DISCONNECTING:
1634
Allan Stephens0c3141e2008-04-15 00:22:02 -07001635 /* Discard any unreceived messages; wake up sleeping tasks */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001636
Allan Stephens0c3141e2008-04-15 00:22:02 -07001637 discard_rx_queue(sk);
Eric Dumazetaa395142010-04-20 13:03:51 +00001638 if (waitqueue_active(sk_sleep(sk)))
1639 wake_up_interruptible(sk_sleep(sk));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001640 res = 0;
1641 break;
1642
1643 default:
1644 res = -ENOTCONN;
1645 }
1646
Allan Stephens0c3141e2008-04-15 00:22:02 -07001647 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001648 return res;
1649}
1650
1651/**
1652 * setsockopt - set socket option
1653 * @sock: socket structure
1654 * @lvl: option level
1655 * @opt: option identifier
1656 * @ov: pointer to new option value
1657 * @ol: length of option value
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001658 *
1659 * For stream sockets only, accepts and ignores all IPPROTO_TCP options
Per Lidenb97bf3f2006-01-02 19:04:38 +01001660 * (to ease compatibility).
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001661 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001662 * Returns 0 on success, errno otherwise
1663 */
1664
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001665static int setsockopt(struct socket *sock,
David S. Millerb7058842009-09-30 16:12:20 -07001666 int lvl, int opt, char __user *ov, unsigned int ol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001667{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001668 struct sock *sk = sock->sk;
1669 struct tipc_port *tport = tipc_sk_port(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001670 u32 value;
1671 int res;
1672
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001673 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
1674 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001675 if (lvl != SOL_TIPC)
1676 return -ENOPROTOOPT;
1677 if (ol < sizeof(value))
1678 return -EINVAL;
Allan Stephens2db99832010-12-31 18:59:33 +00001679 res = get_user(value, (u32 __user *)ov);
1680 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001681 return res;
1682
Allan Stephens0c3141e2008-04-15 00:22:02 -07001683 lock_sock(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001684
Per Lidenb97bf3f2006-01-02 19:04:38 +01001685 switch (opt) {
1686 case TIPC_IMPORTANCE:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001687 res = tipc_set_portimportance(tport->ref, value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001688 break;
1689 case TIPC_SRC_DROPPABLE:
1690 if (sock->type != SOCK_STREAM)
Allan Stephens0c3141e2008-04-15 00:22:02 -07001691 res = tipc_set_portunreliable(tport->ref, value);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001692 else
Per Lidenb97bf3f2006-01-02 19:04:38 +01001693 res = -ENOPROTOOPT;
1694 break;
1695 case TIPC_DEST_DROPPABLE:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001696 res = tipc_set_portunreturnable(tport->ref, value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001697 break;
1698 case TIPC_CONN_TIMEOUT:
Allan Stephens564e83b2010-08-17 11:00:15 +00001699 tipc_sk(sk)->conn_timeout = msecs_to_jiffies(value);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001700 /* no need to set "res", since already 0 at this point */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001701 break;
1702 default:
1703 res = -EINVAL;
1704 }
1705
Allan Stephens0c3141e2008-04-15 00:22:02 -07001706 release_sock(sk);
1707
Per Lidenb97bf3f2006-01-02 19:04:38 +01001708 return res;
1709}
1710
1711/**
1712 * getsockopt - get socket option
1713 * @sock: socket structure
1714 * @lvl: option level
1715 * @opt: option identifier
1716 * @ov: receptacle for option value
1717 * @ol: receptacle for length of option value
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001718 *
1719 * For stream sockets only, returns 0 length result for all IPPROTO_TCP options
Per Lidenb97bf3f2006-01-02 19:04:38 +01001720 * (to ease compatibility).
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001721 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001722 * Returns 0 on success, errno otherwise
1723 */
1724
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001725static int getsockopt(struct socket *sock,
Al Viro28c4dad2006-10-10 22:45:57 +01001726 int lvl, int opt, char __user *ov, int __user *ol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001727{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001728 struct sock *sk = sock->sk;
1729 struct tipc_port *tport = tipc_sk_port(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001730 int len;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001731 u32 value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001732 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001733
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001734 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
1735 return put_user(0, ol);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001736 if (lvl != SOL_TIPC)
1737 return -ENOPROTOOPT;
Allan Stephens2db99832010-12-31 18:59:33 +00001738 res = get_user(len, ol);
1739 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001740 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001741
Allan Stephens0c3141e2008-04-15 00:22:02 -07001742 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001743
1744 switch (opt) {
1745 case TIPC_IMPORTANCE:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001746 res = tipc_portimportance(tport->ref, &value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001747 break;
1748 case TIPC_SRC_DROPPABLE:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001749 res = tipc_portunreliable(tport->ref, &value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001750 break;
1751 case TIPC_DEST_DROPPABLE:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001752 res = tipc_portunreturnable(tport->ref, &value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001753 break;
1754 case TIPC_CONN_TIMEOUT:
Allan Stephens564e83b2010-08-17 11:00:15 +00001755 value = jiffies_to_msecs(tipc_sk(sk)->conn_timeout);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001756 /* no need to set "res", since already 0 at this point */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001757 break;
Allan Stephens0e659672010-12-31 18:59:32 +00001758 case TIPC_NODE_RECVQ_DEPTH:
oscar.medina@motorola.com66506132009-06-30 03:25:39 +00001759 value = (u32)atomic_read(&tipc_queue_size);
1760 break;
Allan Stephens0e659672010-12-31 18:59:32 +00001761 case TIPC_SOCK_RECVQ_DEPTH:
oscar.medina@motorola.com66506132009-06-30 03:25:39 +00001762 value = skb_queue_len(&sk->sk_receive_queue);
1763 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001764 default:
1765 res = -EINVAL;
1766 }
1767
Allan Stephens0c3141e2008-04-15 00:22:02 -07001768 release_sock(sk);
1769
Paul Gortmaker25860c32010-12-31 18:59:31 +00001770 if (res)
1771 return res; /* "get" failed */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001772
Paul Gortmaker25860c32010-12-31 18:59:31 +00001773 if (len < sizeof(value))
1774 return -EINVAL;
1775
1776 if (copy_to_user(ov, &value, sizeof(value)))
1777 return -EFAULT;
1778
1779 return put_user(sizeof(value), ol);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001780}
1781
1782/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001783 * Protocol switches for the various types of TIPC sockets
1784 */
1785
Florian Westphalbca65ea2008-02-07 18:18:01 -08001786static const struct proto_ops msg_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00001787 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001788 .family = AF_TIPC,
1789 .release = release,
1790 .bind = bind,
1791 .connect = connect,
Allan Stephens5eee6a62007-06-10 17:24:55 -07001792 .socketpair = sock_no_socketpair,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001793 .accept = accept,
1794 .getname = get_name,
1795 .poll = poll,
Allan Stephens5eee6a62007-06-10 17:24:55 -07001796 .ioctl = sock_no_ioctl,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001797 .listen = listen,
1798 .shutdown = shutdown,
1799 .setsockopt = setsockopt,
1800 .getsockopt = getsockopt,
1801 .sendmsg = send_msg,
1802 .recvmsg = recv_msg,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09001803 .mmap = sock_no_mmap,
1804 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01001805};
1806
Florian Westphalbca65ea2008-02-07 18:18:01 -08001807static const struct proto_ops packet_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00001808 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001809 .family = AF_TIPC,
1810 .release = release,
1811 .bind = bind,
1812 .connect = connect,
Allan Stephens5eee6a62007-06-10 17:24:55 -07001813 .socketpair = sock_no_socketpair,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001814 .accept = accept,
1815 .getname = get_name,
1816 .poll = poll,
Allan Stephens5eee6a62007-06-10 17:24:55 -07001817 .ioctl = sock_no_ioctl,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001818 .listen = listen,
1819 .shutdown = shutdown,
1820 .setsockopt = setsockopt,
1821 .getsockopt = getsockopt,
1822 .sendmsg = send_packet,
1823 .recvmsg = recv_msg,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09001824 .mmap = sock_no_mmap,
1825 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01001826};
1827
Florian Westphalbca65ea2008-02-07 18:18:01 -08001828static const struct proto_ops stream_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00001829 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001830 .family = AF_TIPC,
1831 .release = release,
1832 .bind = bind,
1833 .connect = connect,
Allan Stephens5eee6a62007-06-10 17:24:55 -07001834 .socketpair = sock_no_socketpair,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001835 .accept = accept,
1836 .getname = get_name,
1837 .poll = poll,
Allan Stephens5eee6a62007-06-10 17:24:55 -07001838 .ioctl = sock_no_ioctl,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001839 .listen = listen,
1840 .shutdown = shutdown,
1841 .setsockopt = setsockopt,
1842 .getsockopt = getsockopt,
1843 .sendmsg = send_stream,
1844 .recvmsg = recv_stream,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09001845 .mmap = sock_no_mmap,
1846 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01001847};
1848
Florian Westphalbca65ea2008-02-07 18:18:01 -08001849static const struct net_proto_family tipc_family_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00001850 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001851 .family = AF_TIPC,
1852 .create = tipc_create
1853};
1854
1855static struct proto tipc_proto = {
1856 .name = "TIPC",
1857 .owner = THIS_MODULE,
1858 .obj_size = sizeof(struct tipc_sock)
1859};
1860
1861/**
Per Liden4323add2006-01-18 00:38:21 +01001862 * tipc_socket_init - initialize TIPC socket interface
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001863 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001864 * Returns 0 on success, errno otherwise
1865 */
Per Liden4323add2006-01-18 00:38:21 +01001866int tipc_socket_init(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001867{
1868 int res;
1869
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001870 res = proto_register(&tipc_proto, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001871 if (res) {
Per Lidend0a14a92006-01-11 13:52:51 +01001872 err("Failed to register TIPC protocol type\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01001873 goto out;
1874 }
1875
1876 res = sock_register(&tipc_family_ops);
1877 if (res) {
Per Lidend0a14a92006-01-11 13:52:51 +01001878 err("Failed to register TIPC socket type\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01001879 proto_unregister(&tipc_proto);
1880 goto out;
1881 }
1882
1883 sockets_enabled = 1;
1884 out:
1885 return res;
1886}
1887
1888/**
Per Liden4323add2006-01-18 00:38:21 +01001889 * tipc_socket_stop - stop TIPC socket interface
Per Lidenb97bf3f2006-01-02 19:04:38 +01001890 */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001891
Per Liden4323add2006-01-18 00:38:21 +01001892void tipc_socket_stop(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001893{
1894 if (!sockets_enabled)
1895 return;
1896
1897 sockets_enabled = 0;
1898 sock_unregister(tipc_family_ops.family);
1899 proto_unregister(&tipc_proto);
1900}
1901