blob: aba4255f297becbf1f3ef73043d507eb4d1c7861 [file] [log] [blame]
Per Lidenb97bf3f2006-01-02 19:04:38 +01001/*
2 * net/tipc/socket.c: TIPC socket API
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003 *
Jon Maloye643df12012-11-27 06:15:29 -05004 * Copyright (c) 2001-2007, 2012 Ericsson AB
Ying Xue9da3d472012-11-27 06:15:27 -05005 * Copyright (c) 2004-2008, 2010-2012, Wind River Systems
Per Lidenb97bf3f2006-01-02 19:04:38 +01006 * All rights reserved.
7 *
Per Liden9ea1fd32006-01-11 13:30:43 +01008 * Redistribution and use in source and binary forms, with or without
Per Lidenb97bf3f2006-01-02 19:04:38 +01009 * modification, are permitted provided that the following conditions are met:
10 *
Per Liden9ea1fd32006-01-11 13:30:43 +010011 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the names of the copyright holders nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
Per Lidenb97bf3f2006-01-02 19:04:38 +010019 *
Per Liden9ea1fd32006-01-11 13:30:43 +010020 * Alternatively, this software may be distributed under the terms of the
21 * GNU General Public License ("GPL") version 2 as published by the Free
22 * Software Foundation.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Per Lidenb97bf3f2006-01-02 19:04:38 +010034 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
Per Lidenb97bf3f2006-01-02 19:04:38 +010037#include "core.h"
Allan Stephensd265fef2010-11-30 12:00:53 +000038#include "port.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010039
Erik Hugne2cf8aa12012-06-29 00:16:37 -040040#include <linux/export.h>
41#include <net/sock.h>
42
Per Lidenb97bf3f2006-01-02 19:04:38 +010043#define SS_LISTENING -1 /* socket is listening */
44#define SS_READY -2 /* socket is connectionless */
45
Allan Stephens3654ea02008-04-13 21:35:11 -070046#define CONN_TIMEOUT_DEFAULT 8000 /* default connect timeout = 8s */
Per Lidenb97bf3f2006-01-02 19:04:38 +010047
48struct tipc_sock {
49 struct sock sk;
50 struct tipc_port *p;
Allan Stephens2da59912008-07-14 22:43:32 -070051 struct tipc_portid peer_name;
Allan Stephensa0f40f02011-05-26 13:44:34 -040052 unsigned int conn_timeout;
Per Lidenb97bf3f2006-01-02 19:04:38 +010053};
54
Allan Stephens0c3141e2008-04-15 00:22:02 -070055#define tipc_sk(sk) ((struct tipc_sock *)(sk))
Joe Perchese3192692012-06-03 17:41:40 +000056#define tipc_sk_port(sk) (tipc_sk(sk)->p)
Per Lidenb97bf3f2006-01-02 19:04:38 +010057
Allan 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);
Ying Xuef288bef2012-08-21 11:16:57 +080064static void tipc_data_ready(struct sock *sk, int len);
65static void tipc_write_space(struct sock *sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +010066
Florian Westphalbca65ea2008-02-07 18:18:01 -080067static const struct proto_ops packet_ops;
68static const struct proto_ops stream_ops;
69static const struct proto_ops msg_ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +010070
71static struct proto tipc_proto;
72
Allan Stephense3ec9c72010-12-31 18:59:34 +000073static int sockets_enabled;
Per Lidenb97bf3f2006-01-02 19:04:38 +010074
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 */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700125static void advance_rx_queue(struct sock *sk)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100126{
Allan Stephens5f6d9122011-11-04 13:24:29 -0400127 kfree_skb(__skb_dequeue(&sk->sk_receive_queue));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100128}
129
130/**
Allan Stephens0c3141e2008-04-15 00:22:02 -0700131 * reject_rx_queue - reject all buffers in socket receive queue
132 *
133 * Caller must hold socket lock
134 */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700135static void reject_rx_queue(struct sock *sk)
136{
137 struct sk_buff *buf;
138
Ying Xue9da3d472012-11-27 06:15:27 -0500139 while ((buf = __skb_dequeue(&sk->sk_receive_queue)))
Allan Stephens0c3141e2008-04-15 00:22:02 -0700140 tipc_reject_msg(buf, TIPC_ERR_NO_PORT);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700141}
142
143/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100144 * tipc_create - create a TIPC socket
Allan Stephens0c3141e2008-04-15 00:22:02 -0700145 * @net: network namespace (must be default network)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100146 * @sock: pre-allocated socket structure
147 * @protocol: protocol indicator (must be 0)
Eric Paris3f378b62009-11-05 22:18:14 -0800148 * @kern: caused by kernel or by userspace?
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900149 *
Allan Stephens0c3141e2008-04-15 00:22:02 -0700150 * This routine creates additional data structures used by the TIPC socket,
151 * initializes them, and links them together.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100152 *
153 * Returns 0 on success, errno otherwise
154 */
Eric Paris3f378b62009-11-05 22:18:14 -0800155static int tipc_create(struct net *net, struct socket *sock, int protocol,
156 int kern)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100157{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700158 const struct proto_ops *ops;
159 socket_state state;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100160 struct sock *sk;
Allan Stephens7ef43eb2008-05-12 15:42:28 -0700161 struct tipc_port *tp_ptr;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700162
163 /* Validate arguments */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100164 if (unlikely(protocol != 0))
165 return -EPROTONOSUPPORT;
166
Per Lidenb97bf3f2006-01-02 19:04:38 +0100167 switch (sock->type) {
168 case SOCK_STREAM:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700169 ops = &stream_ops;
170 state = SS_UNCONNECTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100171 break;
172 case SOCK_SEQPACKET:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700173 ops = &packet_ops;
174 state = SS_UNCONNECTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100175 break;
176 case SOCK_DGRAM:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100177 case SOCK_RDM:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700178 ops = &msg_ops;
179 state = SS_READY;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100180 break;
Allan Stephens49978652006-06-25 23:47:18 -0700181 default:
Allan Stephens49978652006-06-25 23:47:18 -0700182 return -EPROTOTYPE;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100183 }
184
Allan Stephens0c3141e2008-04-15 00:22:02 -0700185 /* Allocate socket's protocol area */
Pavel Emelyanov6257ff22007-11-01 00:39:31 -0700186 sk = sk_alloc(net, AF_TIPC, GFP_KERNEL, &tipc_proto);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700187 if (sk == NULL)
188 return -ENOMEM;
189
190 /* Allocate TIPC port for socket to use */
Allan Stephens0ea52242008-07-14 22:42:19 -0700191 tp_ptr = tipc_createport_raw(sk, &dispatch, &wakeupdispatch,
192 TIPC_LOW_IMPORTANCE);
193 if (unlikely(!tp_ptr)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700194 sk_free(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100195 return -ENOMEM;
196 }
197
Allan Stephens0c3141e2008-04-15 00:22:02 -0700198 /* Finish initializing socket data structures */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700199 sock->ops = ops;
200 sock->state = state;
201
Per Lidenb97bf3f2006-01-02 19:04:38 +0100202 sock_init_data(sock, sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700203 sk->sk_backlog_rcv = backlog_rcv;
Ying Xuecc79dd12013-06-17 10:54:37 -0400204 sk->sk_rcvbuf = sysctl_tipc_rmem[1];
Ying Xuef288bef2012-08-21 11:16:57 +0800205 sk->sk_data_ready = tipc_data_ready;
206 sk->sk_write_space = tipc_write_space;
Allan Stephens0ea52242008-07-14 22:42:19 -0700207 tipc_sk(sk)->p = tp_ptr;
Allan Stephensa0f40f02011-05-26 13:44:34 -0400208 tipc_sk(sk)->conn_timeout = CONN_TIMEOUT_DEFAULT;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100209
Allan Stephens7ef43eb2008-05-12 15:42:28 -0700210 spin_unlock_bh(tp_ptr->lock);
211
Allan Stephens0c3141e2008-04-15 00:22:02 -0700212 if (sock->state == SS_READY) {
Allan Stephens0ea52242008-07-14 22:42:19 -0700213 tipc_set_portunreturnable(tp_ptr->ref, 1);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700214 if (sock->type == SOCK_DGRAM)
Allan Stephens0ea52242008-07-14 22:42:19 -0700215 tipc_set_portunreliable(tp_ptr->ref, 1);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700216 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100217
Per Lidenb97bf3f2006-01-02 19:04:38 +0100218 return 0;
219}
220
221/**
222 * release - destroy a TIPC socket
223 * @sock: socket to destroy
224 *
225 * This routine cleans up any messages that are still queued on the socket.
226 * For DGRAM and RDM socket types, all queued messages are rejected.
227 * For SEQPACKET and STREAM socket types, the first message is rejected
228 * and any others are discarded. (If the first message on a STREAM socket
229 * is partially-read, it is discarded and the next one is rejected instead.)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900230 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100231 * NOTE: Rejected messages are not necessarily returned to the sender! They
232 * are returned or discarded according to the "destination droppable" setting
233 * specified for the message by the sender.
234 *
235 * Returns 0 on success, errno otherwise
236 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100237static int release(struct socket *sock)
238{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100239 struct sock *sk = sock->sk;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700240 struct tipc_port *tport;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100241 struct sk_buff *buf;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700242 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100243
Allan Stephens0c3141e2008-04-15 00:22:02 -0700244 /*
245 * Exit if socket isn't fully initialized (occurs when a failed accept()
246 * releases a pre-allocated child socket that was never used)
247 */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700248 if (sk == NULL)
249 return 0;
250
251 tport = tipc_sk_port(sk);
252 lock_sock(sk);
253
254 /*
255 * Reject all unreceived messages, except on an active connection
256 * (which disconnects locally & sends a 'FIN+' to peer)
257 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100258 while (sock->state != SS_DISCONNECTING) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700259 buf = __skb_dequeue(&sk->sk_receive_queue);
260 if (buf == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100261 break;
Allan Stephens0232fd02011-02-21 09:45:40 -0500262 if (TIPC_SKB_CB(buf)->handle != 0)
Allan Stephens5f6d9122011-11-04 13:24:29 -0400263 kfree_skb(buf);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700264 else {
265 if ((sock->state == SS_CONNECTING) ||
266 (sock->state == SS_CONNECTED)) {
267 sock->state = SS_DISCONNECTING;
268 tipc_disconnect(tport->ref);
269 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100270 tipc_reject_msg(buf, TIPC_ERR_NO_PORT);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700271 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100272 }
273
Allan Stephens0c3141e2008-04-15 00:22:02 -0700274 /*
275 * Delete TIPC port; this ensures no more messages are queued
276 * (also disconnects an active connection & sends a 'FIN-' to peer)
277 */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700278 res = tipc_deleteport(tport->ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100279
Allan Stephens0c3141e2008-04-15 00:22:02 -0700280 /* Discard any remaining (connection-based) messages in receive queue */
Ying Xue57467e52013-01-20 23:30:08 +0100281 __skb_queue_purge(&sk->sk_receive_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100282
Allan Stephens0c3141e2008-04-15 00:22:02 -0700283 /* Reject any messages that accumulated in backlog queue */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700284 sock->state = SS_DISCONNECTING;
285 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100286
287 sock_put(sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700288 sock->sk = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100289
Per Lidenb97bf3f2006-01-02 19:04:38 +0100290 return res;
291}
292
293/**
294 * bind - associate or disassocate TIPC name(s) with a socket
295 * @sock: socket structure
296 * @uaddr: socket address describing name(s) and desired operation
297 * @uaddr_len: size of socket address data structure
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900298 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100299 * Name and name sequence binding is indicated using a positive scope value;
300 * a negative scope value unbinds the specified name. Specifying no name
301 * (i.e. a socket address length of 0) unbinds all names from the socket.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900302 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100303 * Returns 0 on success, errno otherwise
Allan Stephens0c3141e2008-04-15 00:22:02 -0700304 *
305 * NOTE: This routine doesn't need to take the socket lock since it doesn't
306 * access any non-constant socket information.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100307 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100308static int bind(struct socket *sock, struct sockaddr *uaddr, int uaddr_len)
309{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100310 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700311 u32 portref = tipc_sk_port(sock->sk)->ref;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100312
Allan Stephens0c3141e2008-04-15 00:22:02 -0700313 if (unlikely(!uaddr_len))
314 return tipc_withdraw(portref, 0, NULL);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900315
Allan Stephens0c3141e2008-04-15 00:22:02 -0700316 if (uaddr_len < sizeof(struct sockaddr_tipc))
317 return -EINVAL;
318 if (addr->family != AF_TIPC)
319 return -EAFNOSUPPORT;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100320
Per Lidenb97bf3f2006-01-02 19:04:38 +0100321 if (addr->addrtype == TIPC_ADDR_NAME)
322 addr->addr.nameseq.upper = addr->addr.nameseq.lower;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700323 else if (addr->addrtype != TIPC_ADDR_NAMESEQ)
324 return -EAFNOSUPPORT;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900325
Allan Stephensc422f1b2011-11-02 15:49:40 -0400326 if (addr->addr.nameseq.type < TIPC_RESERVED_TYPES)
327 return -EACCES;
328
Allan Stephens0c3141e2008-04-15 00:22:02 -0700329 return (addr->scope > 0) ?
330 tipc_publish(portref, addr->scope, &addr->addr.nameseq) :
331 tipc_withdraw(portref, -addr->scope, &addr->addr.nameseq);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100332}
333
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900334/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100335 * get_name - get port ID of socket or peer socket
336 * @sock: socket structure
337 * @uaddr: area for returned socket address
338 * @uaddr_len: area for returned length of socket address
Allan Stephens2da59912008-07-14 22:43:32 -0700339 * @peer: 0 = own ID, 1 = current peer ID, 2 = current/former peer ID
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900340 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100341 * Returns 0 on success, errno otherwise
Allan Stephens0c3141e2008-04-15 00:22:02 -0700342 *
Allan Stephens2da59912008-07-14 22:43:32 -0700343 * NOTE: This routine doesn't need to take the socket lock since it only
344 * accesses socket information that is unchanging (or which changes in
Allan Stephens0e659672010-12-31 18:59:32 +0000345 * a completely predictable manner).
Per Lidenb97bf3f2006-01-02 19:04:38 +0100346 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900347static int get_name(struct socket *sock, struct sockaddr *uaddr,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100348 int *uaddr_len, int peer)
349{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100350 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
Allan Stephens2da59912008-07-14 22:43:32 -0700351 struct tipc_sock *tsock = tipc_sk(sock->sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100352
Kulikov Vasiliy88f8a5e2010-10-31 07:10:32 +0000353 memset(addr, 0, sizeof(*addr));
Allan Stephens0c3141e2008-04-15 00:22:02 -0700354 if (peer) {
Allan Stephens2da59912008-07-14 22:43:32 -0700355 if ((sock->state != SS_CONNECTED) &&
356 ((peer != 2) || (sock->state != SS_DISCONNECTING)))
357 return -ENOTCONN;
358 addr->addr.id.ref = tsock->peer_name.ref;
359 addr->addr.id.node = tsock->peer_name.node;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700360 } else {
Allan Stephensb924dcf2010-11-30 12:01:03 +0000361 addr->addr.id.ref = tsock->p->ref;
362 addr->addr.id.node = tipc_own_addr;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700363 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100364
365 *uaddr_len = sizeof(*addr);
366 addr->addrtype = TIPC_ADDR_ID;
367 addr->family = AF_TIPC;
368 addr->scope = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100369 addr->addr.name.domain = 0;
370
Allan Stephens0c3141e2008-04-15 00:22:02 -0700371 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100372}
373
374/**
375 * poll - read and possibly block on pollmask
376 * @file: file structure associated with the socket
377 * @sock: socket for which to calculate the poll bits
378 * @wait: ???
379 *
Allan Stephens9b674e82008-03-26 16:48:21 -0700380 * Returns pollmask value
381 *
382 * COMMENTARY:
383 * It appears that the usual socket locking mechanisms are not useful here
384 * since the pollmask info is potentially out-of-date the moment this routine
385 * exits. TCP and other protocols seem to rely on higher level poll routines
386 * to handle any preventable race conditions, so TIPC will do the same ...
387 *
388 * TIPC sets the returned events as follows:
Allan Stephens9b674e82008-03-26 16:48:21 -0700389 *
Allan Stephensf662c072010-08-17 11:00:06 +0000390 * socket state flags set
391 * ------------ ---------
392 * unconnected no read flags
Erik Hugnec4fc2982012-10-16 16:47:06 +0200393 * POLLOUT if port is not congested
Allan Stephensf662c072010-08-17 11:00:06 +0000394 *
395 * connecting POLLIN/POLLRDNORM if ACK/NACK in rx queue
396 * no write flags
397 *
398 * connected POLLIN/POLLRDNORM if data in rx queue
399 * POLLOUT if port is not congested
400 *
401 * disconnecting POLLIN/POLLRDNORM/POLLHUP
402 * no write flags
403 *
404 * listening POLLIN if SYN in rx queue
405 * no write flags
406 *
407 * ready POLLIN/POLLRDNORM if data in rx queue
408 * [connectionless] POLLOUT (since port cannot be congested)
409 *
410 * IMPORTANT: The fact that a read or write operation is indicated does NOT
411 * imply that the operation will succeed, merely that it should be performed
412 * and will not block.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100413 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900414static unsigned int poll(struct file *file, struct socket *sock,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100415 poll_table *wait)
416{
Allan Stephens9b674e82008-03-26 16:48:21 -0700417 struct sock *sk = sock->sk;
Allan Stephensf662c072010-08-17 11:00:06 +0000418 u32 mask = 0;
Allan Stephens9b674e82008-03-26 16:48:21 -0700419
Ying Xuef288bef2012-08-21 11:16:57 +0800420 sock_poll_wait(file, sk_sleep(sk), wait);
Allan Stephens9b674e82008-03-26 16:48:21 -0700421
Allan Stephensf662c072010-08-17 11:00:06 +0000422 switch ((int)sock->state) {
Erik Hugnec4fc2982012-10-16 16:47:06 +0200423 case SS_UNCONNECTED:
424 if (!tipc_sk_port(sk)->congested)
425 mask |= POLLOUT;
426 break;
Allan Stephensf662c072010-08-17 11:00:06 +0000427 case SS_READY:
428 case SS_CONNECTED:
429 if (!tipc_sk_port(sk)->congested)
430 mask |= POLLOUT;
431 /* fall thru' */
432 case SS_CONNECTING:
433 case SS_LISTENING:
434 if (!skb_queue_empty(&sk->sk_receive_queue))
435 mask |= (POLLIN | POLLRDNORM);
436 break;
437 case SS_DISCONNECTING:
438 mask = (POLLIN | POLLRDNORM | POLLHUP);
439 break;
440 }
Allan Stephens9b674e82008-03-26 16:48:21 -0700441
442 return mask;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100443}
444
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900445/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100446 * dest_name_check - verify user is permitted to send to specified port name
447 * @dest: destination address
448 * @m: descriptor for message to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900449 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100450 * Prevents restricted configuration commands from being issued by
451 * unauthorized users.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900452 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100453 * Returns 0 if permission is granted, otherwise errno
454 */
Sam Ravnborg05790c62006-03-20 22:37:04 -0800455static int dest_name_check(struct sockaddr_tipc *dest, struct msghdr *m)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100456{
457 struct tipc_cfg_msg_hdr hdr;
458
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900459 if (likely(dest->addr.name.name.type >= TIPC_RESERVED_TYPES))
460 return 0;
461 if (likely(dest->addr.name.name.type == TIPC_TOP_SRV))
462 return 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900463 if (likely(dest->addr.name.name.type != TIPC_CFG_SRV))
464 return -EACCES;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100465
Allan Stephens3f8dd942011-01-18 13:09:29 -0500466 if (!m->msg_iovlen || (m->msg_iov[0].iov_len < sizeof(hdr)))
467 return -EMSGSIZE;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900468 if (copy_from_user(&hdr, m->msg_iov[0].iov_base, sizeof(hdr)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100469 return -EFAULT;
Allan Stephens70cb2342006-06-25 23:41:47 -0700470 if ((ntohs(hdr.tcm_type) & 0xC000) && (!capable(CAP_NET_ADMIN)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100471 return -EACCES;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900472
Per Lidenb97bf3f2006-01-02 19:04:38 +0100473 return 0;
474}
475
476/**
477 * send_msg - send message in connectionless manner
Allan Stephens0c3141e2008-04-15 00:22:02 -0700478 * @iocb: if NULL, indicates that socket lock is already held
Per Lidenb97bf3f2006-01-02 19:04:38 +0100479 * @sock: socket structure
480 * @m: message to send
Allan Stephense9024f0f2006-06-25 23:43:57 -0700481 * @total_len: length of message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900482 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100483 * Message must have an destination specified explicitly.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900484 * Used for SOCK_RDM and SOCK_DGRAM messages,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100485 * and for 'SYN' messages on SOCK_SEQPACKET and SOCK_STREAM connections.
486 * (Note: 'SYN+' is prohibited on SOCK_STREAM.)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900487 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100488 * Returns the number of bytes sent on success, or errno otherwise
489 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100490static int send_msg(struct kiocb *iocb, struct socket *sock,
491 struct msghdr *m, size_t total_len)
492{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700493 struct sock *sk = sock->sk;
494 struct tipc_port *tport = tipc_sk_port(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900495 struct sockaddr_tipc *dest = (struct sockaddr_tipc *)m->msg_name;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100496 int needs_conn;
Ying Xue1d835872011-07-06 05:53:15 -0400497 long timeout_val;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100498 int res = -EINVAL;
499
500 if (unlikely(!dest))
501 return -EDESTADDRREQ;
Allan Stephens51f9cc12006-06-25 23:49:06 -0700502 if (unlikely((m->msg_namelen < sizeof(*dest)) ||
503 (dest->family != AF_TIPC)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100504 return -EINVAL;
Ying Xue97f8b872013-01-31 21:51:47 +0100505 if (total_len > TIPC_MAX_USER_MSG_SIZE)
Allan Stephensc29c3f72010-04-20 17:58:24 -0400506 return -EMSGSIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100507
Allan Stephens0c3141e2008-04-15 00:22:02 -0700508 if (iocb)
509 lock_sock(sk);
510
Per Lidenb97bf3f2006-01-02 19:04:38 +0100511 needs_conn = (sock->state != SS_READY);
512 if (unlikely(needs_conn)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700513 if (sock->state == SS_LISTENING) {
514 res = -EPIPE;
515 goto exit;
Allan Stephens33880072006-06-25 23:44:57 -0700516 }
Allan Stephens0c3141e2008-04-15 00:22:02 -0700517 if (sock->state != SS_UNCONNECTED) {
518 res = -EISCONN;
519 goto exit;
520 }
521 if ((tport->published) ||
522 ((sock->type == SOCK_STREAM) && (total_len != 0))) {
523 res = -EOPNOTSUPP;
524 goto exit;
525 }
526 if (dest->addrtype == TIPC_ADDR_NAME) {
527 tport->conn_type = dest->addr.name.name.type;
528 tport->conn_instance = dest->addr.name.name.instance;
529 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100530
531 /* Abort any pending connection attempts (very unlikely) */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700532 reject_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100533 }
534
Ying Xue1d835872011-07-06 05:53:15 -0400535 timeout_val = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT);
536
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900537 do {
538 if (dest->addrtype == TIPC_ADDR_NAME) {
Allan Stephens2db99832010-12-31 18:59:33 +0000539 res = dest_name_check(dest, m);
540 if (res)
Allan Stephens0c3141e2008-04-15 00:22:02 -0700541 break;
542 res = tipc_send2name(tport->ref,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900543 &dest->addr.name.name,
544 dest->addr.name.domain,
545 m->msg_iovlen,
Allan Stephens26896902011-04-21 10:42:07 -0500546 m->msg_iov,
547 total_len);
Allan Stephens0e659672010-12-31 18:59:32 +0000548 } else if (dest->addrtype == TIPC_ADDR_ID) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700549 res = tipc_send2port(tport->ref,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900550 &dest->addr.id,
551 m->msg_iovlen,
Allan Stephens26896902011-04-21 10:42:07 -0500552 m->msg_iov,
553 total_len);
Allan Stephens0e659672010-12-31 18:59:32 +0000554 } else if (dest->addrtype == TIPC_ADDR_MCAST) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100555 if (needs_conn) {
556 res = -EOPNOTSUPP;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700557 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100558 }
Allan Stephens2db99832010-12-31 18:59:33 +0000559 res = dest_name_check(dest, m);
560 if (res)
Allan Stephens0c3141e2008-04-15 00:22:02 -0700561 break;
562 res = tipc_multicast(tport->ref,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900563 &dest->addr.nameseq,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900564 m->msg_iovlen,
Allan Stephens26896902011-04-21 10:42:07 -0500565 m->msg_iov,
566 total_len);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900567 }
568 if (likely(res != -ELINKCONG)) {
Allan Stephensa0168922010-12-31 18:59:35 +0000569 if (needs_conn && (res >= 0))
Allan Stephens0c3141e2008-04-15 00:22:02 -0700570 sock->state = SS_CONNECTING;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700571 break;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900572 }
Ying Xue1d835872011-07-06 05:53:15 -0400573 if (timeout_val <= 0L) {
574 res = timeout_val ? timeout_val : -EWOULDBLOCK;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700575 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100576 }
Allan Stephens0c3141e2008-04-15 00:22:02 -0700577 release_sock(sk);
Ying Xue1d835872011-07-06 05:53:15 -0400578 timeout_val = wait_event_interruptible_timeout(*sk_sleep(sk),
579 !tport->congested, timeout_val);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700580 lock_sock(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900581 } while (1);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700582
583exit:
584 if (iocb)
585 release_sock(sk);
586 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100587}
588
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900589/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100590 * send_packet - send a connection-oriented message
Allan Stephens0c3141e2008-04-15 00:22:02 -0700591 * @iocb: if NULL, indicates that socket lock is already held
Per Lidenb97bf3f2006-01-02 19:04:38 +0100592 * @sock: socket structure
593 * @m: message to send
Allan Stephense9024f0f2006-06-25 23:43:57 -0700594 * @total_len: length of message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900595 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100596 * Used for SOCK_SEQPACKET messages and SOCK_STREAM data.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900597 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100598 * Returns the number of bytes sent on success, or errno otherwise
599 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100600static int send_packet(struct kiocb *iocb, struct socket *sock,
601 struct msghdr *m, size_t total_len)
602{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700603 struct sock *sk = sock->sk;
604 struct tipc_port *tport = tipc_sk_port(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900605 struct sockaddr_tipc *dest = (struct sockaddr_tipc *)m->msg_name;
Ying Xue1d835872011-07-06 05:53:15 -0400606 long timeout_val;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100607 int res;
608
609 /* Handle implied connection establishment */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100610 if (unlikely(dest))
611 return send_msg(iocb, sock, m, total_len);
612
Ying Xue97f8b872013-01-31 21:51:47 +0100613 if (total_len > TIPC_MAX_USER_MSG_SIZE)
Allan Stephensc29c3f72010-04-20 17:58:24 -0400614 return -EMSGSIZE;
615
Allan Stephens0c3141e2008-04-15 00:22:02 -0700616 if (iocb)
617 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100618
Ying Xue1d835872011-07-06 05:53:15 -0400619 timeout_val = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT);
620
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900621 do {
Allan Stephensbdd94782006-06-25 23:45:53 -0700622 if (unlikely(sock->state != SS_CONNECTED)) {
623 if (sock->state == SS_DISCONNECTING)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900624 res = -EPIPE;
Allan Stephensbdd94782006-06-25 23:45:53 -0700625 else
626 res = -ENOTCONN;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700627 break;
Allan Stephensbdd94782006-06-25 23:45:53 -0700628 }
629
Allan Stephens26896902011-04-21 10:42:07 -0500630 res = tipc_send(tport->ref, m->msg_iovlen, m->msg_iov,
631 total_len);
Allan Stephensa0168922010-12-31 18:59:35 +0000632 if (likely(res != -ELINKCONG))
Allan Stephens0c3141e2008-04-15 00:22:02 -0700633 break;
Ying Xue1d835872011-07-06 05:53:15 -0400634 if (timeout_val <= 0L) {
635 res = timeout_val ? timeout_val : -EWOULDBLOCK;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700636 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100637 }
Allan Stephens0c3141e2008-04-15 00:22:02 -0700638 release_sock(sk);
Ying Xue1d835872011-07-06 05:53:15 -0400639 timeout_val = wait_event_interruptible_timeout(*sk_sleep(sk),
640 (!tport->congested || !tport->connected), timeout_val);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700641 lock_sock(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900642 } while (1);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700643
644 if (iocb)
645 release_sock(sk);
646 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100647}
648
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900649/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100650 * send_stream - send stream-oriented data
651 * @iocb: (unused)
652 * @sock: socket structure
653 * @m: data to send
654 * @total_len: total length of data to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900655 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100656 * Used for SOCK_STREAM data.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900657 *
658 * Returns the number of bytes sent on success (or partial success),
Allan Stephens1303e8f2006-06-25 23:46:50 -0700659 * or errno if no data sent
Per Lidenb97bf3f2006-01-02 19:04:38 +0100660 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100661static int send_stream(struct kiocb *iocb, struct socket *sock,
662 struct msghdr *m, size_t total_len)
663{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700664 struct sock *sk = sock->sk;
665 struct tipc_port *tport = tipc_sk_port(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100666 struct msghdr my_msg;
667 struct iovec my_iov;
668 struct iovec *curr_iov;
669 int curr_iovlen;
670 char __user *curr_start;
Allan Stephens05646c92007-06-10 17:25:24 -0700671 u32 hdr_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100672 int curr_left;
673 int bytes_to_send;
Allan Stephens1303e8f2006-06-25 23:46:50 -0700674 int bytes_sent;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100675 int res;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900676
Allan Stephens0c3141e2008-04-15 00:22:02 -0700677 lock_sock(sk);
678
Allan Stephens05646c92007-06-10 17:25:24 -0700679 /* Handle special cases where there is no connection */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900680 if (unlikely(sock->state != SS_CONNECTED)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700681 if (sock->state == SS_UNCONNECTED) {
682 res = send_packet(NULL, sock, m, total_len);
683 goto exit;
684 } else if (sock->state == SS_DISCONNECTING) {
685 res = -EPIPE;
686 goto exit;
687 } else {
688 res = -ENOTCONN;
689 goto exit;
690 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900691 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100692
Allan Stephens0c3141e2008-04-15 00:22:02 -0700693 if (unlikely(m->msg_name)) {
694 res = -EISCONN;
695 goto exit;
696 }
Allan Stephenseb5959c2006-10-16 21:43:54 -0700697
Ying Xue97f8b872013-01-31 21:51:47 +0100698 if (total_len > (unsigned int)INT_MAX) {
Allan Stephensc29c3f72010-04-20 17:58:24 -0400699 res = -EMSGSIZE;
700 goto exit;
701 }
702
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900703 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +0100704 * Send each iovec entry using one or more messages
705 *
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900706 * Note: This algorithm is good for the most likely case
Per Lidenb97bf3f2006-01-02 19:04:38 +0100707 * (i.e. one large iovec entry), but could be improved to pass sets
708 * of small iovec entries into send_packet().
709 */
Allan Stephens1303e8f2006-06-25 23:46:50 -0700710 curr_iov = m->msg_iov;
711 curr_iovlen = m->msg_iovlen;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100712 my_msg.msg_iov = &my_iov;
713 my_msg.msg_iovlen = 1;
Allan Stephenseb5959c2006-10-16 21:43:54 -0700714 my_msg.msg_flags = m->msg_flags;
715 my_msg.msg_name = NULL;
Allan Stephens1303e8f2006-06-25 23:46:50 -0700716 bytes_sent = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100717
Allan Stephens05646c92007-06-10 17:25:24 -0700718 hdr_size = msg_hdr_sz(&tport->phdr);
719
Per Lidenb97bf3f2006-01-02 19:04:38 +0100720 while (curr_iovlen--) {
721 curr_start = curr_iov->iov_base;
722 curr_left = curr_iov->iov_len;
723
724 while (curr_left) {
Allan Stephens05646c92007-06-10 17:25:24 -0700725 bytes_to_send = tport->max_pkt - hdr_size;
726 if (bytes_to_send > TIPC_MAX_USER_MSG_SIZE)
727 bytes_to_send = TIPC_MAX_USER_MSG_SIZE;
728 if (curr_left < bytes_to_send)
729 bytes_to_send = curr_left;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100730 my_iov.iov_base = curr_start;
731 my_iov.iov_len = bytes_to_send;
Allan Stephens26896902011-04-21 10:42:07 -0500732 res = send_packet(NULL, sock, &my_msg, bytes_to_send);
Allan Stephens2db99832010-12-31 18:59:33 +0000733 if (res < 0) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700734 if (bytes_sent)
Allan Stephens05646c92007-06-10 17:25:24 -0700735 res = bytes_sent;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700736 goto exit;
Allan Stephens1303e8f2006-06-25 23:46:50 -0700737 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100738 curr_left -= bytes_to_send;
739 curr_start += bytes_to_send;
Allan Stephens1303e8f2006-06-25 23:46:50 -0700740 bytes_sent += bytes_to_send;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100741 }
742
743 curr_iov++;
744 }
Allan Stephens0c3141e2008-04-15 00:22:02 -0700745 res = bytes_sent;
746exit:
747 release_sock(sk);
748 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100749}
750
751/**
752 * auto_connect - complete connection setup to a remote port
753 * @sock: socket structure
Per Lidenb97bf3f2006-01-02 19:04:38 +0100754 * @msg: peer's response message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900755 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100756 * Returns 0 on success, errno otherwise
757 */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700758static int auto_connect(struct socket *sock, struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100759{
Allan Stephens2da59912008-07-14 22:43:32 -0700760 struct tipc_sock *tsock = tipc_sk(sock->sk);
Ying Xue584d24b2012-11-29 18:51:19 -0500761 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100762
Allan Stephens2da59912008-07-14 22:43:32 -0700763 tsock->peer_name.ref = msg_origport(msg);
764 tsock->peer_name.node = msg_orignode(msg);
Ying Xue584d24b2012-11-29 18:51:19 -0500765 p_ptr = tipc_port_deref(tsock->p->ref);
766 if (!p_ptr)
767 return -EINVAL;
768
769 __tipc_connect(tsock->p->ref, p_ptr, &tsock->peer_name);
770
771 if (msg_importance(msg) > TIPC_CRITICAL_IMPORTANCE)
772 return -EINVAL;
773 msg_set_importance(&p_ptr->phdr, (u32)msg_importance(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100774 sock->state = SS_CONNECTED;
775 return 0;
776}
777
778/**
779 * set_orig_addr - capture sender's address for received message
780 * @m: descriptor for message info
781 * @msg: received message header
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900782 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100783 * Note: Address is not captured if not requested by receiver.
784 */
Sam Ravnborg05790c62006-03-20 22:37:04 -0800785static void set_orig_addr(struct msghdr *m, struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100786{
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900787 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)m->msg_name;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100788
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900789 if (addr) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100790 addr->family = AF_TIPC;
791 addr->addrtype = TIPC_ADDR_ID;
Mathias Krause60085c32013-04-07 01:52:00 +0000792 memset(&addr->addr, 0, sizeof(addr->addr));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100793 addr->addr.id.ref = msg_origport(msg);
794 addr->addr.id.node = msg_orignode(msg);
Allan Stephens0e659672010-12-31 18:59:32 +0000795 addr->addr.name.domain = 0; /* could leave uninitialized */
796 addr->scope = 0; /* could leave uninitialized */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100797 m->msg_namelen = sizeof(struct sockaddr_tipc);
798 }
799}
800
801/**
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900802 * anc_data_recv - optionally capture ancillary data for received message
Per Lidenb97bf3f2006-01-02 19:04:38 +0100803 * @m: descriptor for message info
804 * @msg: received message header
805 * @tport: TIPC port associated with message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900806 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100807 * Note: Ancillary data is not captured if not requested by receiver.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900808 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100809 * Returns 0 if successful, otherwise errno
810 */
Sam Ravnborg05790c62006-03-20 22:37:04 -0800811static int anc_data_recv(struct msghdr *m, struct tipc_msg *msg,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100812 struct tipc_port *tport)
813{
814 u32 anc_data[3];
815 u32 err;
816 u32 dest_type;
Allan Stephens3546c752006-06-25 23:45:24 -0700817 int has_name;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100818 int res;
819
820 if (likely(m->msg_controllen == 0))
821 return 0;
822
823 /* Optionally capture errored message object(s) */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100824 err = msg ? msg_errcode(msg) : 0;
825 if (unlikely(err)) {
826 anc_data[0] = err;
827 anc_data[1] = msg_data_sz(msg);
Allan Stephens2db99832010-12-31 18:59:33 +0000828 res = put_cmsg(m, SOL_TIPC, TIPC_ERRINFO, 8, anc_data);
829 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100830 return res;
Allan Stephens2db99832010-12-31 18:59:33 +0000831 if (anc_data[1]) {
832 res = put_cmsg(m, SOL_TIPC, TIPC_RETDATA, anc_data[1],
833 msg_data(msg));
834 if (res)
835 return res;
836 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100837 }
838
839 /* Optionally capture message destination object */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100840 dest_type = msg ? msg_type(msg) : TIPC_DIRECT_MSG;
841 switch (dest_type) {
842 case TIPC_NAMED_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -0700843 has_name = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100844 anc_data[0] = msg_nametype(msg);
845 anc_data[1] = msg_namelower(msg);
846 anc_data[2] = msg_namelower(msg);
847 break;
848 case TIPC_MCAST_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -0700849 has_name = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100850 anc_data[0] = msg_nametype(msg);
851 anc_data[1] = msg_namelower(msg);
852 anc_data[2] = msg_nameupper(msg);
853 break;
854 case TIPC_CONN_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -0700855 has_name = (tport->conn_type != 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100856 anc_data[0] = tport->conn_type;
857 anc_data[1] = tport->conn_instance;
858 anc_data[2] = tport->conn_instance;
859 break;
860 default:
Allan Stephens3546c752006-06-25 23:45:24 -0700861 has_name = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100862 }
Allan Stephens2db99832010-12-31 18:59:33 +0000863 if (has_name) {
864 res = put_cmsg(m, SOL_TIPC, TIPC_DESTNAME, 12, anc_data);
865 if (res)
866 return res;
867 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100868
869 return 0;
870}
871
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900872/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100873 * recv_msg - receive packet-oriented message
874 * @iocb: (unused)
875 * @m: descriptor for message info
876 * @buf_len: total size of user buffer area
877 * @flags: receive flags
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900878 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100879 * Used for SOCK_DGRAM, SOCK_RDM, and SOCK_SEQPACKET messages.
880 * If the complete message doesn't fit in user area, truncate it.
881 *
882 * Returns size of returned message data, errno otherwise
883 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100884static int recv_msg(struct kiocb *iocb, struct socket *sock,
885 struct msghdr *m, size_t buf_len, int flags)
886{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700887 struct sock *sk = sock->sk;
888 struct tipc_port *tport = tipc_sk_port(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100889 struct sk_buff *buf;
890 struct tipc_msg *msg;
Allan Stephens71092ea2011-02-23 14:52:14 -0500891 long timeout;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100892 unsigned int sz;
893 u32 err;
894 int res;
895
Allan Stephens0c3141e2008-04-15 00:22:02 -0700896 /* Catch invalid receive requests */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100897 if (unlikely(!buf_len))
898 return -EINVAL;
899
Allan Stephens0c3141e2008-04-15 00:22:02 -0700900 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100901
Allan Stephens0c3141e2008-04-15 00:22:02 -0700902 if (unlikely(sock->state == SS_UNCONNECTED)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100903 res = -ENOTCONN;
904 goto exit;
905 }
906
Mathias Krause60085c32013-04-07 01:52:00 +0000907 /* will be updated in set_orig_addr() if needed */
908 m->msg_namelen = 0;
909
Allan Stephens71092ea2011-02-23 14:52:14 -0500910 timeout = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700911restart:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100912
Allan Stephens0c3141e2008-04-15 00:22:02 -0700913 /* Look for a message in receive queue; wait if necessary */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700914 while (skb_queue_empty(&sk->sk_receive_queue)) {
915 if (sock->state == SS_DISCONNECTING) {
916 res = -ENOTCONN;
917 goto exit;
918 }
Allan Stephens71092ea2011-02-23 14:52:14 -0500919 if (timeout <= 0L) {
920 res = timeout ? timeout : -EWOULDBLOCK;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700921 goto exit;
922 }
923 release_sock(sk);
Allan Stephens71092ea2011-02-23 14:52:14 -0500924 timeout = wait_event_interruptible_timeout(*sk_sleep(sk),
925 tipc_rx_ready(sock),
926 timeout);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700927 lock_sock(sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700928 }
929
930 /* Look at first message in receive queue */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700931 buf = skb_peek(&sk->sk_receive_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100932 msg = buf_msg(buf);
933 sz = msg_data_sz(msg);
934 err = msg_errcode(msg);
935
Per Lidenb97bf3f2006-01-02 19:04:38 +0100936 /* Discard an empty non-errored message & try again */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100937 if ((!sz) && (!err)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700938 advance_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100939 goto restart;
940 }
941
942 /* Capture sender's address (optional) */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100943 set_orig_addr(m, msg);
944
945 /* Capture ancillary data (optional) */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700946 res = anc_data_recv(m, msg, tport);
947 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100948 goto exit;
949
950 /* Capture message data (if valid) & compute return value (always) */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100951 if (!err) {
952 if (unlikely(buf_len < sz)) {
953 sz = buf_len;
954 m->msg_flags |= MSG_TRUNC;
955 }
Allan Stephens0232fd02011-02-21 09:45:40 -0500956 res = skb_copy_datagram_iovec(buf, msg_hdr_sz(msg),
957 m->msg_iov, sz);
958 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100959 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100960 res = sz;
961 } else {
962 if ((sock->state == SS_READY) ||
963 ((err == TIPC_CONN_SHUTDOWN) || m->msg_control))
964 res = 0;
965 else
966 res = -ECONNRESET;
967 }
968
969 /* Consume received message (optional) */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100970 if (likely(!(flags & MSG_PEEK))) {
Allan Stephens99009802008-04-15 00:06:12 -0700971 if ((sock->state != SS_READY) &&
Allan Stephens0c3141e2008-04-15 00:22:02 -0700972 (++tport->conn_unacked >= TIPC_FLOW_CONTROL_WIN))
973 tipc_acknowledge(tport->ref, tport->conn_unacked);
974 advance_rx_queue(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900975 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100976exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700977 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100978 return res;
979}
980
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900981/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100982 * recv_stream - receive stream-oriented data
983 * @iocb: (unused)
984 * @m: descriptor for message info
985 * @buf_len: total size of user buffer area
986 * @flags: receive flags
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900987 *
988 * Used for SOCK_STREAM messages only. If not enough data is available
Per Lidenb97bf3f2006-01-02 19:04:38 +0100989 * will optionally wait for more; never truncates data.
990 *
991 * Returns size of returned message data, errno otherwise
992 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100993static int recv_stream(struct kiocb *iocb, struct socket *sock,
994 struct msghdr *m, size_t buf_len, int flags)
995{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700996 struct sock *sk = sock->sk;
997 struct tipc_port *tport = tipc_sk_port(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100998 struct sk_buff *buf;
999 struct tipc_msg *msg;
Allan Stephens71092ea2011-02-23 14:52:14 -05001000 long timeout;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001001 unsigned int sz;
Florian Westphal3720d402010-08-17 11:00:04 +00001002 int sz_to_copy, target, needed;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001003 int sz_copied = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001004 u32 err;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001005 int res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001006
1007 /* Catch invalid receive attempts */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001008 if (unlikely(!buf_len))
1009 return -EINVAL;
1010
Allan Stephens0c3141e2008-04-15 00:22:02 -07001011 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001012
Allan Stephens0c3141e2008-04-15 00:22:02 -07001013 if (unlikely((sock->state == SS_UNCONNECTED) ||
1014 (sock->state == SS_CONNECTING))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001015 res = -ENOTCONN;
1016 goto exit;
1017 }
1018
Mathias Krause60085c32013-04-07 01:52:00 +00001019 /* will be updated in set_orig_addr() if needed */
1020 m->msg_namelen = 0;
1021
Florian Westphal3720d402010-08-17 11:00:04 +00001022 target = sock_rcvlowat(sk, flags & MSG_WAITALL, buf_len);
Allan Stephens71092ea2011-02-23 14:52:14 -05001023 timeout = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001024
Allan Stephens0c3141e2008-04-15 00:22:02 -07001025restart:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001026 /* Look for a message in receive queue; wait if necessary */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001027 while (skb_queue_empty(&sk->sk_receive_queue)) {
1028 if (sock->state == SS_DISCONNECTING) {
1029 res = -ENOTCONN;
1030 goto exit;
1031 }
Allan Stephens71092ea2011-02-23 14:52:14 -05001032 if (timeout <= 0L) {
1033 res = timeout ? timeout : -EWOULDBLOCK;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001034 goto exit;
1035 }
1036 release_sock(sk);
Allan Stephens71092ea2011-02-23 14:52:14 -05001037 timeout = wait_event_interruptible_timeout(*sk_sleep(sk),
1038 tipc_rx_ready(sock),
1039 timeout);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001040 lock_sock(sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001041 }
1042
1043 /* Look at first message in receive queue */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001044 buf = skb_peek(&sk->sk_receive_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001045 msg = buf_msg(buf);
1046 sz = msg_data_sz(msg);
1047 err = msg_errcode(msg);
1048
1049 /* Discard an empty non-errored message & try again */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001050 if ((!sz) && (!err)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07001051 advance_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001052 goto restart;
1053 }
1054
1055 /* Optionally capture sender's address & ancillary data of first msg */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001056 if (sz_copied == 0) {
1057 set_orig_addr(m, msg);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001058 res = anc_data_recv(m, msg, tport);
1059 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001060 goto exit;
1061 }
1062
1063 /* Capture message data (if valid) & compute return value (always) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001064 if (!err) {
Allan Stephens0232fd02011-02-21 09:45:40 -05001065 u32 offset = (u32)(unsigned long)(TIPC_SKB_CB(buf)->handle);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001066
Allan Stephens0232fd02011-02-21 09:45:40 -05001067 sz -= offset;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001068 needed = (buf_len - sz_copied);
1069 sz_to_copy = (sz <= needed) ? sz : needed;
Allan Stephens0232fd02011-02-21 09:45:40 -05001070
1071 res = skb_copy_datagram_iovec(buf, msg_hdr_sz(msg) + offset,
1072 m->msg_iov, sz_to_copy);
1073 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001074 goto exit;
Allan Stephens0232fd02011-02-21 09:45:40 -05001075
Per Lidenb97bf3f2006-01-02 19:04:38 +01001076 sz_copied += sz_to_copy;
1077
1078 if (sz_to_copy < sz) {
1079 if (!(flags & MSG_PEEK))
Allan Stephens0232fd02011-02-21 09:45:40 -05001080 TIPC_SKB_CB(buf)->handle =
1081 (void *)(unsigned long)(offset + sz_to_copy);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001082 goto exit;
1083 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001084 } else {
1085 if (sz_copied != 0)
1086 goto exit; /* can't add error msg to valid data */
1087
1088 if ((err == TIPC_CONN_SHUTDOWN) || m->msg_control)
1089 res = 0;
1090 else
1091 res = -ECONNRESET;
1092 }
1093
1094 /* Consume received message (optional) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001095 if (likely(!(flags & MSG_PEEK))) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07001096 if (unlikely(++tport->conn_unacked >= TIPC_FLOW_CONTROL_WIN))
1097 tipc_acknowledge(tport->ref, tport->conn_unacked);
1098 advance_rx_queue(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001099 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001100
1101 /* Loop around if more data is required */
Joe Perchesf64f9e72009-11-29 16:55:45 -08001102 if ((sz_copied < buf_len) && /* didn't get all requested data */
1103 (!skb_queue_empty(&sk->sk_receive_queue) ||
Florian Westphal3720d402010-08-17 11:00:04 +00001104 (sz_copied < target)) && /* and more is ready or required */
Joe Perchesf64f9e72009-11-29 16:55:45 -08001105 (!(flags & MSG_PEEK)) && /* and aren't just peeking at data */
1106 (!err)) /* and haven't reached a FIN */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001107 goto restart;
1108
1109exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001110 release_sock(sk);
Allan Stephensa3b0a5a2006-06-25 23:48:22 -07001111 return sz_copied ? sz_copied : res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001112}
1113
1114/**
Ying Xuef288bef2012-08-21 11:16:57 +08001115 * tipc_write_space - wake up thread if port congestion is released
1116 * @sk: socket
1117 */
1118static void tipc_write_space(struct sock *sk)
1119{
1120 struct socket_wq *wq;
1121
1122 rcu_read_lock();
1123 wq = rcu_dereference(sk->sk_wq);
1124 if (wq_has_sleeper(wq))
1125 wake_up_interruptible_sync_poll(&wq->wait, POLLOUT |
1126 POLLWRNORM | POLLWRBAND);
1127 rcu_read_unlock();
1128}
1129
1130/**
1131 * tipc_data_ready - wake up threads to indicate messages have been received
1132 * @sk: socket
1133 * @len: the length of messages
1134 */
1135static void tipc_data_ready(struct sock *sk, int len)
1136{
1137 struct socket_wq *wq;
1138
1139 rcu_read_lock();
1140 wq = rcu_dereference(sk->sk_wq);
1141 if (wq_has_sleeper(wq))
1142 wake_up_interruptible_sync_poll(&wq->wait, POLLIN |
1143 POLLRDNORM | POLLRDBAND);
1144 rcu_read_unlock();
1145}
1146
1147/**
Ying Xue7e6c1312012-11-29 18:39:14 -05001148 * filter_connect - Handle all incoming messages for a connection-based socket
1149 * @tsock: TIPC socket
1150 * @msg: message
1151 *
1152 * Returns TIPC error status code and socket error status code
1153 * once it encounters some errors
1154 */
1155static u32 filter_connect(struct tipc_sock *tsock, struct sk_buff **buf)
1156{
1157 struct socket *sock = tsock->sk.sk_socket;
1158 struct tipc_msg *msg = buf_msg(*buf);
Ying Xue584d24b2012-11-29 18:51:19 -05001159 struct sock *sk = &tsock->sk;
Ying Xue7e6c1312012-11-29 18:39:14 -05001160 u32 retval = TIPC_ERR_NO_PORT;
Ying Xue584d24b2012-11-29 18:51:19 -05001161 int res;
Ying Xue7e6c1312012-11-29 18:39:14 -05001162
1163 if (msg_mcast(msg))
1164 return retval;
1165
1166 switch ((int)sock->state) {
1167 case SS_CONNECTED:
1168 /* Accept only connection-based messages sent by peer */
1169 if (msg_connected(msg) && tipc_port_peer_msg(tsock->p, msg)) {
1170 if (unlikely(msg_errcode(msg))) {
1171 sock->state = SS_DISCONNECTING;
1172 __tipc_disconnect(tsock->p);
1173 }
1174 retval = TIPC_OK;
1175 }
1176 break;
1177 case SS_CONNECTING:
1178 /* Accept only ACK or NACK message */
Ying Xue584d24b2012-11-29 18:51:19 -05001179 if (unlikely(msg_errcode(msg))) {
1180 sock->state = SS_DISCONNECTING;
1181 sk->sk_err = -ECONNREFUSED;
Ying Xue7e6c1312012-11-29 18:39:14 -05001182 retval = TIPC_OK;
Ying Xue584d24b2012-11-29 18:51:19 -05001183 break;
1184 }
1185
1186 if (unlikely(!msg_connected(msg)))
1187 break;
1188
1189 res = auto_connect(sock, msg);
1190 if (res) {
1191 sock->state = SS_DISCONNECTING;
1192 sk->sk_err = res;
1193 retval = TIPC_OK;
1194 break;
1195 }
1196
1197 /* If an incoming message is an 'ACK-', it should be
1198 * discarded here because it doesn't contain useful
1199 * data. In addition, we should try to wake up
1200 * connect() routine if sleeping.
1201 */
1202 if (msg_data_sz(msg) == 0) {
1203 kfree_skb(*buf);
1204 *buf = NULL;
1205 if (waitqueue_active(sk_sleep(sk)))
1206 wake_up_interruptible(sk_sleep(sk));
1207 }
1208 retval = TIPC_OK;
Ying Xue7e6c1312012-11-29 18:39:14 -05001209 break;
1210 case SS_LISTENING:
1211 case SS_UNCONNECTED:
1212 /* Accept only SYN message */
1213 if (!msg_connected(msg) && !(msg_errcode(msg)))
1214 retval = TIPC_OK;
1215 break;
1216 case SS_DISCONNECTING:
1217 break;
1218 default:
1219 pr_err("Unknown socket state %u\n", sock->state);
1220 }
1221 return retval;
1222}
1223
1224/**
Ying Xueaba79f32013-01-20 23:30:09 +01001225 * rcvbuf_limit - get proper overload limit of socket receive queue
1226 * @sk: socket
1227 * @buf: message
1228 *
1229 * For all connection oriented messages, irrespective of importance,
1230 * the default overload value (i.e. 67MB) is set as limit.
1231 *
1232 * For all connectionless messages, by default new queue limits are
1233 * as belows:
1234 *
Ying Xuecc79dd12013-06-17 10:54:37 -04001235 * TIPC_LOW_IMPORTANCE (4 MB)
1236 * TIPC_MEDIUM_IMPORTANCE (8 MB)
1237 * TIPC_HIGH_IMPORTANCE (16 MB)
1238 * TIPC_CRITICAL_IMPORTANCE (32 MB)
Ying Xueaba79f32013-01-20 23:30:09 +01001239 *
1240 * Returns overload limit according to corresponding message importance
1241 */
1242static unsigned int rcvbuf_limit(struct sock *sk, struct sk_buff *buf)
1243{
1244 struct tipc_msg *msg = buf_msg(buf);
1245 unsigned int limit;
1246
1247 if (msg_connected(msg))
Ying Xuecc79dd12013-06-17 10:54:37 -04001248 limit = sysctl_tipc_rmem[2];
Ying Xueaba79f32013-01-20 23:30:09 +01001249 else
Ying Xuecc79dd12013-06-17 10:54:37 -04001250 limit = sk->sk_rcvbuf >> TIPC_CRITICAL_IMPORTANCE <<
1251 msg_importance(msg);
Ying Xueaba79f32013-01-20 23:30:09 +01001252 return limit;
1253}
1254
1255/**
Allan Stephens0c3141e2008-04-15 00:22:02 -07001256 * filter_rcv - validate incoming message
1257 * @sk: socket
Per Lidenb97bf3f2006-01-02 19:04:38 +01001258 * @buf: message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001259 *
Allan Stephens0c3141e2008-04-15 00:22:02 -07001260 * Enqueues message on receive queue if acceptable; optionally handles
1261 * disconnect indication for a connected socket.
1262 *
1263 * Called with socket lock already taken; port lock may also be taken.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001264 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001265 * Returns TIPC error status code (TIPC_OK if message is not to be rejected)
1266 */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001267static u32 filter_rcv(struct sock *sk, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001268{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001269 struct socket *sock = sk->sk_socket;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001270 struct tipc_msg *msg = buf_msg(buf);
Ying Xueaba79f32013-01-20 23:30:09 +01001271 unsigned int limit = rcvbuf_limit(sk, buf);
Ying Xue7e6c1312012-11-29 18:39:14 -05001272 u32 res = TIPC_OK;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001273
Per Lidenb97bf3f2006-01-02 19:04:38 +01001274 /* Reject message if it is wrong sort of message for socket */
Allan Stephensaad58542012-04-26 18:13:08 -04001275 if (msg_type(msg) > TIPC_DIRECT_MSG)
1276 return TIPC_ERR_NO_PORT;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001277
Per Lidenb97bf3f2006-01-02 19:04:38 +01001278 if (sock->state == SS_READY) {
Allan Stephensb29f1422010-12-31 18:59:25 +00001279 if (msg_connected(msg))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001280 return TIPC_ERR_NO_PORT;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001281 } else {
Ying Xue7e6c1312012-11-29 18:39:14 -05001282 res = filter_connect(tipc_sk(sk), &buf);
1283 if (res != TIPC_OK || buf == NULL)
1284 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001285 }
1286
1287 /* Reject message if there isn't room to queue it */
Ying Xueaba79f32013-01-20 23:30:09 +01001288 if (sk_rmem_alloc_get(sk) + buf->truesize >= limit)
1289 return TIPC_ERR_OVERLOAD;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001290
Ying Xueaba79f32013-01-20 23:30:09 +01001291 /* Enqueue message */
Allan Stephens0232fd02011-02-21 09:45:40 -05001292 TIPC_SKB_CB(buf)->handle = 0;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001293 __skb_queue_tail(&sk->sk_receive_queue, buf);
Ying Xueaba79f32013-01-20 23:30:09 +01001294 skb_set_owner_r(buf, sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001295
Ying Xuef288bef2012-08-21 11:16:57 +08001296 sk->sk_data_ready(sk, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001297 return TIPC_OK;
1298}
1299
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001300/**
Allan Stephens0c3141e2008-04-15 00:22:02 -07001301 * backlog_rcv - handle incoming message from backlog queue
1302 * @sk: socket
1303 * @buf: message
1304 *
1305 * Caller must hold socket lock, but not port lock.
1306 *
1307 * Returns 0
1308 */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001309static int backlog_rcv(struct sock *sk, struct sk_buff *buf)
1310{
1311 u32 res;
1312
1313 res = filter_rcv(sk, buf);
1314 if (res)
1315 tipc_reject_msg(buf, res);
1316 return 0;
1317}
1318
1319/**
1320 * dispatch - handle incoming message
1321 * @tport: TIPC port that received message
1322 * @buf: message
1323 *
1324 * Called with port lock already taken.
1325 *
1326 * Returns TIPC error status code (TIPC_OK if message is not to be rejected)
1327 */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001328static u32 dispatch(struct tipc_port *tport, struct sk_buff *buf)
1329{
1330 struct sock *sk = (struct sock *)tport->usr_handle;
1331 u32 res;
1332
1333 /*
1334 * Process message if socket is unlocked; otherwise add to backlog queue
1335 *
1336 * This code is based on sk_receive_skb(), but must be distinct from it
1337 * since a TIPC-specific filter/reject mechanism is utilized
1338 */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001339 bh_lock_sock(sk);
1340 if (!sock_owned_by_user(sk)) {
1341 res = filter_rcv(sk, buf);
1342 } else {
Ying Xueaba79f32013-01-20 23:30:09 +01001343 if (sk_add_backlog(sk, buf, rcvbuf_limit(sk, buf)))
Zhu Yi53eecb12010-03-04 18:01:45 +00001344 res = TIPC_ERR_OVERLOAD;
1345 else
1346 res = TIPC_OK;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001347 }
1348 bh_unlock_sock(sk);
1349
1350 return res;
1351}
1352
1353/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001354 * wakeupdispatch - wake up port after congestion
1355 * @tport: port to wakeup
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001356 *
Allan Stephens0c3141e2008-04-15 00:22:02 -07001357 * Called with port lock already taken.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001358 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001359static void wakeupdispatch(struct tipc_port *tport)
1360{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001361 struct sock *sk = (struct sock *)tport->usr_handle;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001362
Ying Xuef288bef2012-08-21 11:16:57 +08001363 sk->sk_write_space(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001364}
1365
1366/**
1367 * connect - establish a connection to another TIPC port
1368 * @sock: socket structure
1369 * @dest: socket address for destination port
1370 * @destlen: size of socket address data structure
Allan Stephens0c3141e2008-04-15 00:22:02 -07001371 * @flags: file-related flags associated with socket
Per Lidenb97bf3f2006-01-02 19:04:38 +01001372 *
1373 * Returns 0 on success, errno otherwise
1374 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001375static int connect(struct socket *sock, struct sockaddr *dest, int destlen,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001376 int flags)
1377{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001378 struct sock *sk = sock->sk;
Allan Stephensb89741a2008-04-15 00:20:37 -07001379 struct sockaddr_tipc *dst = (struct sockaddr_tipc *)dest;
1380 struct msghdr m = {NULL,};
Allan Stephensa0f40f02011-05-26 13:44:34 -04001381 unsigned int timeout;
Allan Stephensb89741a2008-04-15 00:20:37 -07001382 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001383
Allan Stephens0c3141e2008-04-15 00:22:02 -07001384 lock_sock(sk);
1385
Allan Stephensb89741a2008-04-15 00:20:37 -07001386 /* For now, TIPC does not allow use of connect() with DGRAM/RDM types */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001387 if (sock->state == SS_READY) {
1388 res = -EOPNOTSUPP;
1389 goto exit;
1390 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001391
Allan Stephensb89741a2008-04-15 00:20:37 -07001392 /*
1393 * Reject connection attempt using multicast address
1394 *
1395 * Note: send_msg() validates the rest of the address fields,
1396 * so there's no need to do it here
1397 */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001398 if (dst->addrtype == TIPC_ADDR_MCAST) {
1399 res = -EINVAL;
1400 goto exit;
1401 }
1402
Ying Xue584d24b2012-11-29 18:51:19 -05001403 timeout = (flags & O_NONBLOCK) ? 0 : tipc_sk(sk)->conn_timeout;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001404
Ying Xue584d24b2012-11-29 18:51:19 -05001405 switch (sock->state) {
1406 case SS_UNCONNECTED:
1407 /* Send a 'SYN-' to destination */
1408 m.msg_name = dest;
1409 m.msg_namelen = destlen;
1410
1411 /* If connect is in non-blocking case, set MSG_DONTWAIT to
1412 * indicate send_msg() is never blocked.
1413 */
1414 if (!timeout)
1415 m.msg_flags = MSG_DONTWAIT;
1416
1417 res = send_msg(NULL, sock, &m, 0);
1418 if ((res < 0) && (res != -EWOULDBLOCK))
1419 goto exit;
1420
1421 /* Just entered SS_CONNECTING state; the only
1422 * difference is that return value in non-blocking
1423 * case is EINPROGRESS, rather than EALREADY.
1424 */
1425 res = -EINPROGRESS;
1426 break;
1427 case SS_CONNECTING:
1428 res = -EALREADY;
1429 break;
1430 case SS_CONNECTED:
1431 res = -EISCONN;
1432 break;
1433 default:
1434 res = -EINVAL;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001435 goto exit;
Allan Stephensb89741a2008-04-15 00:20:37 -07001436 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001437
Ying Xue584d24b2012-11-29 18:51:19 -05001438 if (sock->state == SS_CONNECTING) {
1439 if (!timeout)
1440 goto exit;
1441
1442 /* Wait until an 'ACK' or 'RST' arrives, or a timeout occurs */
1443 release_sock(sk);
1444 res = wait_event_interruptible_timeout(*sk_sleep(sk),
1445 sock->state != SS_CONNECTING,
1446 timeout ? (long)msecs_to_jiffies(timeout)
1447 : MAX_SCHEDULE_TIMEOUT);
1448 lock_sock(sk);
1449 if (res <= 0) {
1450 if (res == 0)
1451 res = -ETIMEDOUT;
1452 else
1453 ; /* leave "res" unchanged */
1454 goto exit;
1455 }
1456 }
1457
1458 if (unlikely(sock->state == SS_DISCONNECTING))
1459 res = sock_error(sk);
1460 else
1461 res = 0;
1462
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 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001475static 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
Ying Xue245f3d32011-07-06 06:01:13 -04001482 if (sock->state != SS_UNCONNECTED)
Allan Stephens0c3141e2008-04-15 00:22:02 -07001483 res = -EINVAL;
1484 else {
1485 sock->state = SS_LISTENING;
1486 res = 0;
1487 }
1488
1489 release_sock(sk);
1490 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001491}
1492
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001493/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001494 * accept - wait for connection request
1495 * @sock: listening socket
1496 * @newsock: new socket that is to be connected
1497 * @flags: file-related flags associated with socket
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001498 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001499 * Returns 0 on success, errno otherwise
1500 */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001501static int accept(struct socket *sock, struct socket *new_sock, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001502{
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001503 struct sock *new_sk, *sk = sock->sk;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001504 struct sk_buff *buf;
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001505 struct tipc_sock *new_tsock;
1506 struct tipc_port *new_tport;
1507 struct tipc_msg *msg;
1508 u32 new_ref;
1509
Allan Stephens0c3141e2008-04-15 00:22:02 -07001510 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001511
Allan Stephens0c3141e2008-04-15 00:22:02 -07001512 lock_sock(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001513
Allan Stephens0c3141e2008-04-15 00:22:02 -07001514 if (sock->state != SS_LISTENING) {
1515 res = -EINVAL;
1516 goto exit;
1517 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001518
Allan Stephens0c3141e2008-04-15 00:22:02 -07001519 while (skb_queue_empty(&sk->sk_receive_queue)) {
1520 if (flags & O_NONBLOCK) {
1521 res = -EWOULDBLOCK;
1522 goto exit;
1523 }
1524 release_sock(sk);
Eric Dumazetaa395142010-04-20 13:03:51 +00001525 res = wait_event_interruptible(*sk_sleep(sk),
Allan Stephens0c3141e2008-04-15 00:22:02 -07001526 (!skb_queue_empty(&sk->sk_receive_queue)));
1527 lock_sock(sk);
1528 if (res)
1529 goto exit;
1530 }
1531
1532 buf = skb_peek(&sk->sk_receive_queue);
1533
Eric Paris3f378b62009-11-05 22:18:14 -08001534 res = tipc_create(sock_net(sock->sk), new_sock, 0, 0);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001535 if (res)
1536 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001537
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001538 new_sk = new_sock->sk;
1539 new_tsock = tipc_sk(new_sk);
1540 new_tport = new_tsock->p;
1541 new_ref = new_tport->ref;
1542 msg = buf_msg(buf);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001543
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001544 /* we lock on new_sk; but lockdep sees the lock on sk */
1545 lock_sock_nested(new_sk, SINGLE_DEPTH_NESTING);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001546
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001547 /*
1548 * Reject any stray messages received by new socket
1549 * before the socket lock was taken (very, very unlikely)
1550 */
1551 reject_rx_queue(new_sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001552
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001553 /* Connect new socket to it's peer */
1554 new_tsock->peer_name.ref = msg_origport(msg);
1555 new_tsock->peer_name.node = msg_orignode(msg);
1556 tipc_connect(new_ref, &new_tsock->peer_name);
1557 new_sock->state = SS_CONNECTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001558
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001559 tipc_set_portimportance(new_ref, msg_importance(msg));
1560 if (msg_named(msg)) {
1561 new_tport->conn_type = msg_nametype(msg);
1562 new_tport->conn_instance = msg_nameinst(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001563 }
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001564
1565 /*
1566 * Respond to 'SYN-' by discarding it & returning 'ACK'-.
1567 * Respond to 'SYN+' by queuing it on new socket.
1568 */
1569 if (!msg_data_sz(msg)) {
1570 struct msghdr m = {NULL,};
1571
1572 advance_rx_queue(sk);
1573 send_packet(NULL, new_sock, &m, 0);
1574 } else {
1575 __skb_dequeue(&sk->sk_receive_queue);
1576 __skb_queue_head(&new_sk->sk_receive_queue, buf);
Ying Xueaba79f32013-01-20 23:30:09 +01001577 skb_set_owner_r(buf, new_sk);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001578 }
1579 release_sock(new_sk);
1580
Per Lidenb97bf3f2006-01-02 19:04:38 +01001581exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001582 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001583 return res;
1584}
1585
1586/**
1587 * shutdown - shutdown socket connection
1588 * @sock: socket structure
Allan Stephense247a8f2008-03-06 15:05:38 -08001589 * @how: direction to close (must be SHUT_RDWR)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001590 *
1591 * Terminates connection (if necessary), then purges socket's receive queue.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001592 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001593 * Returns 0 on success, errno otherwise
1594 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001595static int shutdown(struct socket *sock, int how)
1596{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001597 struct sock *sk = sock->sk;
1598 struct tipc_port *tport = tipc_sk_port(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001599 struct sk_buff *buf;
1600 int res;
1601
Allan Stephense247a8f2008-03-06 15:05:38 -08001602 if (how != SHUT_RDWR)
1603 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001604
Allan Stephens0c3141e2008-04-15 00:22:02 -07001605 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001606
1607 switch (sock->state) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07001608 case SS_CONNECTING:
Per Lidenb97bf3f2006-01-02 19:04:38 +01001609 case SS_CONNECTED:
1610
Per Lidenb97bf3f2006-01-02 19:04:38 +01001611restart:
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001612 /* Disconnect and send a 'FIN+' or 'FIN-' message to peer */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001613 buf = __skb_dequeue(&sk->sk_receive_queue);
1614 if (buf) {
Allan Stephens0232fd02011-02-21 09:45:40 -05001615 if (TIPC_SKB_CB(buf)->handle != 0) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04001616 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001617 goto restart;
1618 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001619 tipc_disconnect(tport->ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001620 tipc_reject_msg(buf, TIPC_CONN_SHUTDOWN);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001621 } else {
1622 tipc_shutdown(tport->ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001623 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001624
1625 sock->state = SS_DISCONNECTING;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001626
1627 /* fall through */
1628
1629 case SS_DISCONNECTING:
1630
Ying Xue75031152012-10-29 09:38:15 -04001631 /* Discard any unreceived messages */
Ying Xue57467e52013-01-20 23:30:08 +01001632 __skb_queue_purge(&sk->sk_receive_queue);
Ying Xue75031152012-10-29 09:38:15 -04001633
1634 /* Wake up anyone sleeping in poll */
1635 sk->sk_state_change(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001636 res = 0;
1637 break;
1638
1639 default:
1640 res = -ENOTCONN;
1641 }
1642
Allan Stephens0c3141e2008-04-15 00:22:02 -07001643 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001644 return res;
1645}
1646
1647/**
1648 * setsockopt - set socket option
1649 * @sock: socket structure
1650 * @lvl: option level
1651 * @opt: option identifier
1652 * @ov: pointer to new option value
1653 * @ol: length of option value
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001654 *
1655 * For stream sockets only, accepts and ignores all IPPROTO_TCP options
Per Lidenb97bf3f2006-01-02 19:04:38 +01001656 * (to ease compatibility).
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001657 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001658 * Returns 0 on success, errno otherwise
1659 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001660static int setsockopt(struct socket *sock,
David S. Millerb7058842009-09-30 16:12:20 -07001661 int lvl, int opt, char __user *ov, unsigned int ol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001662{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001663 struct sock *sk = sock->sk;
1664 struct tipc_port *tport = tipc_sk_port(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001665 u32 value;
1666 int res;
1667
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001668 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
1669 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001670 if (lvl != SOL_TIPC)
1671 return -ENOPROTOOPT;
1672 if (ol < sizeof(value))
1673 return -EINVAL;
Allan Stephens2db99832010-12-31 18:59:33 +00001674 res = get_user(value, (u32 __user *)ov);
1675 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001676 return res;
1677
Allan Stephens0c3141e2008-04-15 00:22:02 -07001678 lock_sock(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001679
Per Lidenb97bf3f2006-01-02 19:04:38 +01001680 switch (opt) {
1681 case TIPC_IMPORTANCE:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001682 res = tipc_set_portimportance(tport->ref, value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001683 break;
1684 case TIPC_SRC_DROPPABLE:
1685 if (sock->type != SOCK_STREAM)
Allan Stephens0c3141e2008-04-15 00:22:02 -07001686 res = tipc_set_portunreliable(tport->ref, value);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001687 else
Per Lidenb97bf3f2006-01-02 19:04:38 +01001688 res = -ENOPROTOOPT;
1689 break;
1690 case TIPC_DEST_DROPPABLE:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001691 res = tipc_set_portunreturnable(tport->ref, value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001692 break;
1693 case TIPC_CONN_TIMEOUT:
Allan Stephensa0f40f02011-05-26 13:44:34 -04001694 tipc_sk(sk)->conn_timeout = value;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001695 /* no need to set "res", since already 0 at this point */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001696 break;
1697 default:
1698 res = -EINVAL;
1699 }
1700
Allan Stephens0c3141e2008-04-15 00:22:02 -07001701 release_sock(sk);
1702
Per Lidenb97bf3f2006-01-02 19:04:38 +01001703 return res;
1704}
1705
1706/**
1707 * getsockopt - get socket option
1708 * @sock: socket structure
1709 * @lvl: option level
1710 * @opt: option identifier
1711 * @ov: receptacle for option value
1712 * @ol: receptacle for length of option value
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001713 *
1714 * For stream sockets only, returns 0 length result for all IPPROTO_TCP options
Per Lidenb97bf3f2006-01-02 19:04:38 +01001715 * (to ease compatibility).
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001716 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001717 * Returns 0 on success, errno otherwise
1718 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001719static int getsockopt(struct socket *sock,
Al Viro28c4dad2006-10-10 22:45:57 +01001720 int lvl, int opt, char __user *ov, int __user *ol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001721{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001722 struct sock *sk = sock->sk;
1723 struct tipc_port *tport = tipc_sk_port(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001724 int len;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001725 u32 value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001726 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001727
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001728 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
1729 return put_user(0, ol);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001730 if (lvl != SOL_TIPC)
1731 return -ENOPROTOOPT;
Allan Stephens2db99832010-12-31 18:59:33 +00001732 res = get_user(len, ol);
1733 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001734 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001735
Allan Stephens0c3141e2008-04-15 00:22:02 -07001736 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001737
1738 switch (opt) {
1739 case TIPC_IMPORTANCE:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001740 res = tipc_portimportance(tport->ref, &value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001741 break;
1742 case TIPC_SRC_DROPPABLE:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001743 res = tipc_portunreliable(tport->ref, &value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001744 break;
1745 case TIPC_DEST_DROPPABLE:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001746 res = tipc_portunreturnable(tport->ref, &value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001747 break;
1748 case TIPC_CONN_TIMEOUT:
Allan Stephensa0f40f02011-05-26 13:44:34 -04001749 value = tipc_sk(sk)->conn_timeout;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001750 /* no need to set "res", since already 0 at this point */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001751 break;
Allan Stephens0e659672010-12-31 18:59:32 +00001752 case TIPC_NODE_RECVQ_DEPTH:
Ying Xue9da3d472012-11-27 06:15:27 -05001753 value = 0; /* was tipc_queue_size, now obsolete */
oscar.medina@motorola.com66506132009-06-30 03:25:39 +00001754 break;
Allan Stephens0e659672010-12-31 18:59:32 +00001755 case TIPC_SOCK_RECVQ_DEPTH:
oscar.medina@motorola.com66506132009-06-30 03:25:39 +00001756 value = skb_queue_len(&sk->sk_receive_queue);
1757 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001758 default:
1759 res = -EINVAL;
1760 }
1761
Allan Stephens0c3141e2008-04-15 00:22:02 -07001762 release_sock(sk);
1763
Paul Gortmaker25860c32010-12-31 18:59:31 +00001764 if (res)
1765 return res; /* "get" failed */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001766
Paul Gortmaker25860c32010-12-31 18:59:31 +00001767 if (len < sizeof(value))
1768 return -EINVAL;
1769
1770 if (copy_to_user(ov, &value, sizeof(value)))
1771 return -EFAULT;
1772
1773 return put_user(sizeof(value), ol);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001774}
1775
Ben Hutchingsae86b9e2012-07-10 10:55:35 +00001776/* Protocol switches for the various types of TIPC sockets */
1777
Florian Westphalbca65ea2008-02-07 18:18:01 -08001778static const struct proto_ops msg_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00001779 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001780 .family = AF_TIPC,
1781 .release = release,
1782 .bind = bind,
1783 .connect = connect,
Allan Stephens5eee6a62007-06-10 17:24:55 -07001784 .socketpair = sock_no_socketpair,
Ying Xue245f3d32011-07-06 06:01:13 -04001785 .accept = sock_no_accept,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001786 .getname = get_name,
1787 .poll = poll,
Allan Stephens5eee6a62007-06-10 17:24:55 -07001788 .ioctl = sock_no_ioctl,
Ying Xue245f3d32011-07-06 06:01:13 -04001789 .listen = sock_no_listen,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001790 .shutdown = shutdown,
1791 .setsockopt = setsockopt,
1792 .getsockopt = getsockopt,
1793 .sendmsg = send_msg,
1794 .recvmsg = recv_msg,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09001795 .mmap = sock_no_mmap,
1796 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01001797};
1798
Florian Westphalbca65ea2008-02-07 18:18:01 -08001799static const struct proto_ops packet_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00001800 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001801 .family = AF_TIPC,
1802 .release = release,
1803 .bind = bind,
1804 .connect = connect,
Allan Stephens5eee6a62007-06-10 17:24:55 -07001805 .socketpair = sock_no_socketpair,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001806 .accept = accept,
1807 .getname = get_name,
1808 .poll = poll,
Allan Stephens5eee6a62007-06-10 17:24:55 -07001809 .ioctl = sock_no_ioctl,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001810 .listen = listen,
1811 .shutdown = shutdown,
1812 .setsockopt = setsockopt,
1813 .getsockopt = getsockopt,
1814 .sendmsg = send_packet,
1815 .recvmsg = recv_msg,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09001816 .mmap = sock_no_mmap,
1817 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01001818};
1819
Florian Westphalbca65ea2008-02-07 18:18:01 -08001820static const struct proto_ops stream_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00001821 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001822 .family = AF_TIPC,
1823 .release = release,
1824 .bind = bind,
1825 .connect = connect,
Allan Stephens5eee6a62007-06-10 17:24:55 -07001826 .socketpair = sock_no_socketpair,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001827 .accept = accept,
1828 .getname = get_name,
1829 .poll = poll,
Allan Stephens5eee6a62007-06-10 17:24:55 -07001830 .ioctl = sock_no_ioctl,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001831 .listen = listen,
1832 .shutdown = shutdown,
1833 .setsockopt = setsockopt,
1834 .getsockopt = getsockopt,
1835 .sendmsg = send_stream,
1836 .recvmsg = recv_stream,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09001837 .mmap = sock_no_mmap,
1838 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01001839};
1840
Florian Westphalbca65ea2008-02-07 18:18:01 -08001841static const struct net_proto_family tipc_family_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00001842 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001843 .family = AF_TIPC,
1844 .create = tipc_create
1845};
1846
1847static struct proto tipc_proto = {
1848 .name = "TIPC",
1849 .owner = THIS_MODULE,
Ying Xuecc79dd12013-06-17 10:54:37 -04001850 .obj_size = sizeof(struct tipc_sock),
1851 .sysctl_rmem = sysctl_tipc_rmem
Per Lidenb97bf3f2006-01-02 19:04:38 +01001852};
1853
1854/**
Per Liden4323add2006-01-18 00:38:21 +01001855 * tipc_socket_init - initialize TIPC socket interface
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001856 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001857 * Returns 0 on success, errno otherwise
1858 */
Per Liden4323add2006-01-18 00:38:21 +01001859int tipc_socket_init(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001860{
1861 int res;
1862
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001863 res = proto_register(&tipc_proto, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001864 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001865 pr_err("Failed to register TIPC protocol type\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01001866 goto out;
1867 }
1868
1869 res = sock_register(&tipc_family_ops);
1870 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001871 pr_err("Failed to register TIPC socket type\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01001872 proto_unregister(&tipc_proto);
1873 goto out;
1874 }
1875
1876 sockets_enabled = 1;
1877 out:
1878 return res;
1879}
1880
1881/**
Per Liden4323add2006-01-18 00:38:21 +01001882 * tipc_socket_stop - stop TIPC socket interface
Per Lidenb97bf3f2006-01-02 19:04:38 +01001883 */
Per Liden4323add2006-01-18 00:38:21 +01001884void tipc_socket_stop(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001885{
1886 if (!sockets_enabled)
1887 return;
1888
1889 sockets_enabled = 0;
1890 sock_unregister(tipc_family_ops.family);
1891 proto_unregister(&tipc_proto);
1892}