blob: ede78b144dcfee5a37ca900c8581612bd890319e [file] [log] [blame]
Per Lidenb97bf3f2006-01-02 19:04:38 +01001/*
Jon Paul Maloy02c00c22014-06-09 11:08:18 -05002 * net/tipc/socket.c: TIPC socket API
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003 *
Jon Paul Maloy8826cde2014-03-12 11:31:09 -04004 * Copyright (c) 2001-2007, 2012-2014, Ericsson AB
Ying Xuec5fa7b32013-06-17 10:54:39 -04005 * Copyright (c) 2004-2008, 2010-2013, Wind River Systems
Per Lidenb97bf3f2006-01-02 19:04:38 +01006 * All rights reserved.
7 *
Per Liden9ea1fd32006-01-11 13:30:43 +01008 * Redistribution and use in source and binary forms, with or without
Per Lidenb97bf3f2006-01-02 19:04:38 +01009 * modification, are permitted provided that the following conditions are met:
10 *
Per Liden9ea1fd32006-01-11 13:30:43 +010011 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the names of the copyright holders nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
Per Lidenb97bf3f2006-01-02 19:04:38 +010019 *
Per Liden9ea1fd32006-01-11 13:30:43 +010020 * Alternatively, this software may be distributed under the terms of the
21 * GNU General Public License ("GPL") version 2 as published by the Free
22 * Software Foundation.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Per Lidenb97bf3f2006-01-02 19:04:38 +010034 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
Per Lidenb97bf3f2006-01-02 19:04:38 +010037#include "core.h"
Allan Stephensd265fef2010-11-30 12:00:53 +000038#include "port.h"
Jon Paul Maloye2dafe82014-06-25 20:41:37 -050039#include "name_table.h"
Erik Hugne78acb1f2014-04-24 16:26:47 +020040#include "node.h"
Jon Paul Maloye2dafe82014-06-25 20:41:37 -050041#include "link.h"
Erik Hugne2cf8aa12012-06-29 00:16:37 -040042#include <linux/export.h>
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -050043#include "link.h"
Erik Hugne2cf8aa12012-06-29 00:16:37 -040044
Per Lidenb97bf3f2006-01-02 19:04:38 +010045#define SS_LISTENING -1 /* socket is listening */
46#define SS_READY -2 /* socket is connectionless */
47
Allan Stephens3654ea02008-04-13 21:35:11 -070048#define CONN_TIMEOUT_DEFAULT 8000 /* default connect timeout = 8s */
Jon Paul Maloyac0074e2014-06-25 20:41:41 -050049#define TIPC_FWD_MSG 1
Per Lidenb97bf3f2006-01-02 19:04:38 +010050
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -040051static int tipc_backlog_rcv(struct sock *sk, struct sk_buff *skb);
David S. Miller676d2362014-04-11 16:15:36 -040052static void tipc_data_ready(struct sock *sk);
Ying Xuef288bef2012-08-21 11:16:57 +080053static void tipc_write_space(struct sock *sk);
Ying Xue247f0f32014-02-18 16:06:46 +080054static int tipc_release(struct socket *sock);
55static int tipc_accept(struct socket *sock, struct socket *new_sock, int flags);
Per Lidenb97bf3f2006-01-02 19:04:38 +010056
Florian Westphalbca65ea2008-02-07 18:18:01 -080057static const struct proto_ops packet_ops;
58static const struct proto_ops stream_ops;
59static const struct proto_ops msg_ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +010060
61static struct proto tipc_proto;
Ying Xuec5fa7b32013-06-17 10:54:39 -040062static struct proto tipc_proto_kern;
Per Lidenb97bf3f2006-01-02 19:04:38 +010063
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090064/*
Allan Stephens0c3141e2008-04-15 00:22:02 -070065 * Revised TIPC socket locking policy:
66 *
67 * Most socket operations take the standard socket lock when they start
68 * and hold it until they finish (or until they need to sleep). Acquiring
69 * this lock grants the owner exclusive access to the fields of the socket
70 * data structures, with the exception of the backlog queue. A few socket
71 * operations can be done without taking the socket lock because they only
72 * read socket information that never changes during the life of the socket.
73 *
74 * Socket operations may acquire the lock for the associated TIPC port if they
75 * need to perform an operation on the port. If any routine needs to acquire
76 * both the socket lock and the port lock it must take the socket lock first
77 * to avoid the risk of deadlock.
78 *
79 * The dispatcher handling incoming messages cannot grab the socket lock in
80 * the standard fashion, since invoked it runs at the BH level and cannot block.
81 * Instead, it checks to see if the socket lock is currently owned by someone,
82 * and either handles the message itself or adds it to the socket's backlog
83 * queue; in the latter case the queued message is processed once the process
84 * owning the socket lock releases it.
85 *
86 * NOTE: Releasing the socket lock while an operation is sleeping overcomes
87 * the problem of a blocked socket operation preventing any other operations
88 * from occurring. However, applications must be careful if they have
89 * multiple threads trying to send (or receive) on the same socket, as these
90 * operations might interfere with each other. For example, doing a connect
91 * and a receive at the same time might allow the receive to consume the
92 * ACK message meant for the connect. While additional work could be done
93 * to try and overcome this, it doesn't seem to be worthwhile at the present.
94 *
95 * NOTE: Releasing the socket lock while an operation is sleeping also ensures
96 * that another operation that must be performed in a non-blocking manner is
97 * not delayed for very long because the lock has already been taken.
98 *
99 * NOTE: This code assumes that certain fields of a port/socket pair are
100 * constant over its lifetime; such fields can be examined without taking
101 * the socket lock and/or port lock, and do not need to be re-read even
102 * after resuming processing after waiting. These fields include:
103 * - socket type
104 * - pointer to socket sk structure (aka tipc_sock structure)
105 * - pointer to port structure
106 * - port reference
Per Lidenb97bf3f2006-01-02 19:04:38 +0100107 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100108
Jon Paul Maloy8826cde2014-03-12 11:31:09 -0400109#include "socket.h"
110
Per Lidenb97bf3f2006-01-02 19:04:38 +0100111/**
Allan Stephens0c3141e2008-04-15 00:22:02 -0700112 * advance_rx_queue - discard first buffer in socket receive queue
113 *
114 * Caller must hold socket lock
Per Lidenb97bf3f2006-01-02 19:04:38 +0100115 */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700116static void advance_rx_queue(struct sock *sk)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100117{
Allan Stephens5f6d9122011-11-04 13:24:29 -0400118 kfree_skb(__skb_dequeue(&sk->sk_receive_queue));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100119}
120
121/**
Allan Stephens0c3141e2008-04-15 00:22:02 -0700122 * reject_rx_queue - reject all buffers in socket receive queue
123 *
124 * Caller must hold socket lock
125 */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700126static void reject_rx_queue(struct sock *sk)
127{
128 struct sk_buff *buf;
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -0500129 u32 dnode;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700130
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -0500131 while ((buf = __skb_dequeue(&sk->sk_receive_queue))) {
132 if (tipc_msg_reverse(buf, &dnode, TIPC_ERR_NO_PORT))
133 tipc_link_xmit2(buf, dnode, 0);
134 }
Allan Stephens0c3141e2008-04-15 00:22:02 -0700135}
136
137/**
Ying Xuec5fa7b32013-06-17 10:54:39 -0400138 * tipc_sk_create - create a TIPC socket
Allan Stephens0c3141e2008-04-15 00:22:02 -0700139 * @net: network namespace (must be default network)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100140 * @sock: pre-allocated socket structure
141 * @protocol: protocol indicator (must be 0)
Eric Paris3f378b62009-11-05 22:18:14 -0800142 * @kern: caused by kernel or by userspace?
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900143 *
Allan Stephens0c3141e2008-04-15 00:22:02 -0700144 * This routine creates additional data structures used by the TIPC socket,
145 * initializes them, and links them together.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100146 *
147 * Returns 0 on success, errno otherwise
148 */
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400149static int tipc_sk_create(struct net *net, struct socket *sock,
150 int protocol, int kern)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100151{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700152 const struct proto_ops *ops;
153 socket_state state;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100154 struct sock *sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400155 struct tipc_sock *tsk;
156 struct tipc_port *port;
157 u32 ref;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700158
159 /* Validate arguments */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100160 if (unlikely(protocol != 0))
161 return -EPROTONOSUPPORT;
162
Per Lidenb97bf3f2006-01-02 19:04:38 +0100163 switch (sock->type) {
164 case SOCK_STREAM:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700165 ops = &stream_ops;
166 state = SS_UNCONNECTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100167 break;
168 case SOCK_SEQPACKET:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700169 ops = &packet_ops;
170 state = SS_UNCONNECTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100171 break;
172 case SOCK_DGRAM:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100173 case SOCK_RDM:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700174 ops = &msg_ops;
175 state = SS_READY;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100176 break;
Allan Stephens49978652006-06-25 23:47:18 -0700177 default:
Allan Stephens49978652006-06-25 23:47:18 -0700178 return -EPROTOTYPE;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100179 }
180
Allan Stephens0c3141e2008-04-15 00:22:02 -0700181 /* Allocate socket's protocol area */
Ying Xuec5fa7b32013-06-17 10:54:39 -0400182 if (!kern)
183 sk = sk_alloc(net, AF_TIPC, GFP_KERNEL, &tipc_proto);
184 else
185 sk = sk_alloc(net, AF_TIPC, GFP_KERNEL, &tipc_proto_kern);
186
Allan Stephens0c3141e2008-04-15 00:22:02 -0700187 if (sk == NULL)
188 return -ENOMEM;
189
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400190 tsk = tipc_sk(sk);
191 port = &tsk->port;
192
193 ref = tipc_port_init(port, TIPC_LOW_IMPORTANCE);
194 if (!ref) {
195 pr_warn("Socket registration failed, ref. table exhausted\n");
Allan Stephens0c3141e2008-04-15 00:22:02 -0700196 sk_free(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100197 return -ENOMEM;
198 }
199
Allan Stephens0c3141e2008-04-15 00:22:02 -0700200 /* Finish initializing socket data structures */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700201 sock->ops = ops;
202 sock->state = state;
203
Per Lidenb97bf3f2006-01-02 19:04:38 +0100204 sock_init_data(sock, sk);
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -0400205 sk->sk_backlog_rcv = tipc_backlog_rcv;
Ying Xuecc79dd12013-06-17 10:54:37 -0400206 sk->sk_rcvbuf = sysctl_tipc_rmem[1];
Ying Xuef288bef2012-08-21 11:16:57 +0800207 sk->sk_data_ready = tipc_data_ready;
208 sk->sk_write_space = tipc_write_space;
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -0400209 tsk->conn_timeout = CONN_TIMEOUT_DEFAULT;
Jon Paul Maloy60120522014-06-25 20:41:42 -0500210 tsk->sent_unacked = 0;
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -0400211 atomic_set(&tsk->dupl_rcvcnt, 0);
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400212 tipc_port_unlock(port);
Allan Stephens7ef43eb2008-05-12 15:42:28 -0700213
Allan Stephens0c3141e2008-04-15 00:22:02 -0700214 if (sock->state == SS_READY) {
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400215 tipc_port_set_unreturnable(port, true);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700216 if (sock->type == SOCK_DGRAM)
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400217 tipc_port_set_unreliable(port, true);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700218 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100219 return 0;
220}
221
222/**
Ying Xuec5fa7b32013-06-17 10:54:39 -0400223 * tipc_sock_create_local - create TIPC socket from inside TIPC module
224 * @type: socket type - SOCK_RDM or SOCK_SEQPACKET
225 *
226 * We cannot use sock_creat_kern here because it bumps module user count.
227 * Since socket owner and creator is the same module we must make sure
228 * that module count remains zero for module local sockets, otherwise
229 * we cannot do rmmod.
230 *
231 * Returns 0 on success, errno otherwise
232 */
233int tipc_sock_create_local(int type, struct socket **res)
234{
235 int rc;
Ying Xuec5fa7b32013-06-17 10:54:39 -0400236
237 rc = sock_create_lite(AF_TIPC, type, 0, res);
238 if (rc < 0) {
239 pr_err("Failed to create kernel socket\n");
240 return rc;
241 }
242 tipc_sk_create(&init_net, *res, 0, 1);
243
Ying Xuec5fa7b32013-06-17 10:54:39 -0400244 return 0;
245}
246
247/**
248 * tipc_sock_release_local - release socket created by tipc_sock_create_local
249 * @sock: the socket to be released.
250 *
251 * Module reference count is not incremented when such sockets are created,
252 * so we must keep it from being decremented when they are released.
253 */
254void tipc_sock_release_local(struct socket *sock)
255{
Ying Xue247f0f32014-02-18 16:06:46 +0800256 tipc_release(sock);
Ying Xuec5fa7b32013-06-17 10:54:39 -0400257 sock->ops = NULL;
258 sock_release(sock);
259}
260
261/**
262 * tipc_sock_accept_local - accept a connection on a socket created
263 * with tipc_sock_create_local. Use this function to avoid that
264 * module reference count is inadvertently incremented.
265 *
266 * @sock: the accepting socket
267 * @newsock: reference to the new socket to be created
268 * @flags: socket flags
269 */
270
271int tipc_sock_accept_local(struct socket *sock, struct socket **newsock,
Paul Gortmakerae8509c2013-06-17 10:54:47 -0400272 int flags)
Ying Xuec5fa7b32013-06-17 10:54:39 -0400273{
274 struct sock *sk = sock->sk;
275 int ret;
276
277 ret = sock_create_lite(sk->sk_family, sk->sk_type,
278 sk->sk_protocol, newsock);
279 if (ret < 0)
280 return ret;
281
Ying Xue247f0f32014-02-18 16:06:46 +0800282 ret = tipc_accept(sock, *newsock, flags);
Ying Xuec5fa7b32013-06-17 10:54:39 -0400283 if (ret < 0) {
284 sock_release(*newsock);
285 return ret;
286 }
287 (*newsock)->ops = sock->ops;
288 return ret;
289}
290
291/**
Ying Xue247f0f32014-02-18 16:06:46 +0800292 * tipc_release - destroy a TIPC socket
Per Lidenb97bf3f2006-01-02 19:04:38 +0100293 * @sock: socket to destroy
294 *
295 * This routine cleans up any messages that are still queued on the socket.
296 * For DGRAM and RDM socket types, all queued messages are rejected.
297 * For SEQPACKET and STREAM socket types, the first message is rejected
298 * and any others are discarded. (If the first message on a STREAM socket
299 * is partially-read, it is discarded and the next one is rejected instead.)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900300 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100301 * NOTE: Rejected messages are not necessarily returned to the sender! They
302 * are returned or discarded according to the "destination droppable" setting
303 * specified for the message by the sender.
304 *
305 * Returns 0 on success, errno otherwise
306 */
Ying Xue247f0f32014-02-18 16:06:46 +0800307static int tipc_release(struct socket *sock)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100308{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100309 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400310 struct tipc_sock *tsk;
311 struct tipc_port *port;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100312 struct sk_buff *buf;
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -0500313 u32 dnode;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100314
Allan Stephens0c3141e2008-04-15 00:22:02 -0700315 /*
316 * Exit if socket isn't fully initialized (occurs when a failed accept()
317 * releases a pre-allocated child socket that was never used)
318 */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700319 if (sk == NULL)
320 return 0;
321
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400322 tsk = tipc_sk(sk);
323 port = &tsk->port;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700324 lock_sock(sk);
325
326 /*
327 * Reject all unreceived messages, except on an active connection
328 * (which disconnects locally & sends a 'FIN+' to peer)
329 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100330 while (sock->state != SS_DISCONNECTING) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700331 buf = __skb_dequeue(&sk->sk_receive_queue);
332 if (buf == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100333 break;
Ying Xue40682432013-10-18 07:23:16 +0200334 if (TIPC_SKB_CB(buf)->handle != NULL)
Allan Stephens5f6d9122011-11-04 13:24:29 -0400335 kfree_skb(buf);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700336 else {
337 if ((sock->state == SS_CONNECTING) ||
338 (sock->state == SS_CONNECTED)) {
339 sock->state = SS_DISCONNECTING;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400340 tipc_port_disconnect(port->ref);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700341 }
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -0500342 if (tipc_msg_reverse(buf, &dnode, TIPC_ERR_NO_PORT))
343 tipc_link_xmit2(buf, dnode, 0);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700344 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100345 }
346
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400347 /* Destroy TIPC port; also disconnects an active connection and
348 * sends a 'FIN-' to peer.
Allan Stephens0c3141e2008-04-15 00:22:02 -0700349 */
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400350 tipc_port_destroy(port);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100351
Allan Stephens0c3141e2008-04-15 00:22:02 -0700352 /* Discard any remaining (connection-based) messages in receive queue */
Ying Xue57467e52013-01-20 23:30:08 +0100353 __skb_queue_purge(&sk->sk_receive_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100354
Allan Stephens0c3141e2008-04-15 00:22:02 -0700355 /* Reject any messages that accumulated in backlog queue */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700356 sock->state = SS_DISCONNECTING;
357 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100358
359 sock_put(sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700360 sock->sk = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100361
Geert Uytterhoeven065d7e32014-04-06 15:56:14 +0200362 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100363}
364
365/**
Ying Xue247f0f32014-02-18 16:06:46 +0800366 * tipc_bind - associate or disassocate TIPC name(s) with a socket
Per Lidenb97bf3f2006-01-02 19:04:38 +0100367 * @sock: socket structure
368 * @uaddr: socket address describing name(s) and desired operation
369 * @uaddr_len: size of socket address data structure
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900370 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100371 * Name and name sequence binding is indicated using a positive scope value;
372 * a negative scope value unbinds the specified name. Specifying no name
373 * (i.e. a socket address length of 0) unbinds all names from the socket.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900374 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100375 * Returns 0 on success, errno otherwise
Allan Stephens0c3141e2008-04-15 00:22:02 -0700376 *
377 * NOTE: This routine doesn't need to take the socket lock since it doesn't
378 * access any non-constant socket information.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100379 */
Ying Xue247f0f32014-02-18 16:06:46 +0800380static int tipc_bind(struct socket *sock, struct sockaddr *uaddr,
381 int uaddr_len)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100382{
Ying Xue84602762013-12-27 10:18:28 +0800383 struct sock *sk = sock->sk;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100384 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400385 struct tipc_sock *tsk = tipc_sk(sk);
Ying Xue84602762013-12-27 10:18:28 +0800386 int res = -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100387
Ying Xue84602762013-12-27 10:18:28 +0800388 lock_sock(sk);
389 if (unlikely(!uaddr_len)) {
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400390 res = tipc_withdraw(&tsk->port, 0, NULL);
Ying Xue84602762013-12-27 10:18:28 +0800391 goto exit;
392 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900393
Ying Xue84602762013-12-27 10:18:28 +0800394 if (uaddr_len < sizeof(struct sockaddr_tipc)) {
395 res = -EINVAL;
396 goto exit;
397 }
398 if (addr->family != AF_TIPC) {
399 res = -EAFNOSUPPORT;
400 goto exit;
401 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100402
Per Lidenb97bf3f2006-01-02 19:04:38 +0100403 if (addr->addrtype == TIPC_ADDR_NAME)
404 addr->addr.nameseq.upper = addr->addr.nameseq.lower;
Ying Xue84602762013-12-27 10:18:28 +0800405 else if (addr->addrtype != TIPC_ADDR_NAMESEQ) {
406 res = -EAFNOSUPPORT;
407 goto exit;
408 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900409
Ying Xue13a2e892013-06-17 10:54:40 -0400410 if ((addr->addr.nameseq.type < TIPC_RESERVED_TYPES) &&
Ying Xue7d0ab172013-06-17 10:54:41 -0400411 (addr->addr.nameseq.type != TIPC_TOP_SRV) &&
Ying Xue84602762013-12-27 10:18:28 +0800412 (addr->addr.nameseq.type != TIPC_CFG_SRV)) {
413 res = -EACCES;
414 goto exit;
415 }
Allan Stephensc422f1b2011-11-02 15:49:40 -0400416
Ying Xue84602762013-12-27 10:18:28 +0800417 res = (addr->scope > 0) ?
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400418 tipc_publish(&tsk->port, addr->scope, &addr->addr.nameseq) :
419 tipc_withdraw(&tsk->port, -addr->scope, &addr->addr.nameseq);
Ying Xue84602762013-12-27 10:18:28 +0800420exit:
421 release_sock(sk);
422 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100423}
424
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900425/**
Ying Xue247f0f32014-02-18 16:06:46 +0800426 * tipc_getname - get port ID of socket or peer socket
Per Lidenb97bf3f2006-01-02 19:04:38 +0100427 * @sock: socket structure
428 * @uaddr: area for returned socket address
429 * @uaddr_len: area for returned length of socket address
Allan Stephens2da59912008-07-14 22:43:32 -0700430 * @peer: 0 = own ID, 1 = current peer ID, 2 = current/former peer ID
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900431 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100432 * Returns 0 on success, errno otherwise
Allan Stephens0c3141e2008-04-15 00:22:02 -0700433 *
Allan Stephens2da59912008-07-14 22:43:32 -0700434 * NOTE: This routine doesn't need to take the socket lock since it only
435 * accesses socket information that is unchanging (or which changes in
Allan Stephens0e659672010-12-31 18:59:32 +0000436 * a completely predictable manner).
Per Lidenb97bf3f2006-01-02 19:04:38 +0100437 */
Ying Xue247f0f32014-02-18 16:06:46 +0800438static int tipc_getname(struct socket *sock, struct sockaddr *uaddr,
439 int *uaddr_len, int peer)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100440{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100441 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400442 struct tipc_sock *tsk = tipc_sk(sock->sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100443
Kulikov Vasiliy88f8a5e2010-10-31 07:10:32 +0000444 memset(addr, 0, sizeof(*addr));
Allan Stephens0c3141e2008-04-15 00:22:02 -0700445 if (peer) {
Allan Stephens2da59912008-07-14 22:43:32 -0700446 if ((sock->state != SS_CONNECTED) &&
447 ((peer != 2) || (sock->state != SS_DISCONNECTING)))
448 return -ENOTCONN;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400449 addr->addr.id.ref = tipc_port_peerport(&tsk->port);
450 addr->addr.id.node = tipc_port_peernode(&tsk->port);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700451 } else {
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400452 addr->addr.id.ref = tsk->port.ref;
Allan Stephensb924dcf2010-11-30 12:01:03 +0000453 addr->addr.id.node = tipc_own_addr;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700454 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100455
456 *uaddr_len = sizeof(*addr);
457 addr->addrtype = TIPC_ADDR_ID;
458 addr->family = AF_TIPC;
459 addr->scope = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100460 addr->addr.name.domain = 0;
461
Allan Stephens0c3141e2008-04-15 00:22:02 -0700462 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100463}
464
465/**
Ying Xue247f0f32014-02-18 16:06:46 +0800466 * tipc_poll - read and possibly block on pollmask
Per Lidenb97bf3f2006-01-02 19:04:38 +0100467 * @file: file structure associated with the socket
468 * @sock: socket for which to calculate the poll bits
469 * @wait: ???
470 *
Allan Stephens9b674e82008-03-26 16:48:21 -0700471 * Returns pollmask value
472 *
473 * COMMENTARY:
474 * It appears that the usual socket locking mechanisms are not useful here
475 * since the pollmask info is potentially out-of-date the moment this routine
476 * exits. TCP and other protocols seem to rely on higher level poll routines
477 * to handle any preventable race conditions, so TIPC will do the same ...
478 *
479 * TIPC sets the returned events as follows:
Allan Stephens9b674e82008-03-26 16:48:21 -0700480 *
Allan Stephensf662c072010-08-17 11:00:06 +0000481 * socket state flags set
482 * ------------ ---------
483 * unconnected no read flags
Erik Hugnec4fc2982012-10-16 16:47:06 +0200484 * POLLOUT if port is not congested
Allan Stephensf662c072010-08-17 11:00:06 +0000485 *
486 * connecting POLLIN/POLLRDNORM if ACK/NACK in rx queue
487 * no write flags
488 *
489 * connected POLLIN/POLLRDNORM if data in rx queue
490 * POLLOUT if port is not congested
491 *
492 * disconnecting POLLIN/POLLRDNORM/POLLHUP
493 * no write flags
494 *
495 * listening POLLIN if SYN in rx queue
496 * no write flags
497 *
498 * ready POLLIN/POLLRDNORM if data in rx queue
499 * [connectionless] POLLOUT (since port cannot be congested)
500 *
501 * IMPORTANT: The fact that a read or write operation is indicated does NOT
502 * imply that the operation will succeed, merely that it should be performed
503 * and will not block.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100504 */
Ying Xue247f0f32014-02-18 16:06:46 +0800505static unsigned int tipc_poll(struct file *file, struct socket *sock,
506 poll_table *wait)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100507{
Allan Stephens9b674e82008-03-26 16:48:21 -0700508 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400509 struct tipc_sock *tsk = tipc_sk(sk);
Allan Stephensf662c072010-08-17 11:00:06 +0000510 u32 mask = 0;
Allan Stephens9b674e82008-03-26 16:48:21 -0700511
Ying Xuef288bef2012-08-21 11:16:57 +0800512 sock_poll_wait(file, sk_sleep(sk), wait);
Allan Stephens9b674e82008-03-26 16:48:21 -0700513
Allan Stephensf662c072010-08-17 11:00:06 +0000514 switch ((int)sock->state) {
Erik Hugnec4fc2982012-10-16 16:47:06 +0200515 case SS_UNCONNECTED:
Jon Paul Maloy60120522014-06-25 20:41:42 -0500516 if (!tsk->link_cong)
Erik Hugnec4fc2982012-10-16 16:47:06 +0200517 mask |= POLLOUT;
518 break;
Allan Stephensf662c072010-08-17 11:00:06 +0000519 case SS_READY:
520 case SS_CONNECTED:
Jon Paul Maloy60120522014-06-25 20:41:42 -0500521 if (!tsk->link_cong && !tipc_sk_conn_cong(tsk))
Allan Stephensf662c072010-08-17 11:00:06 +0000522 mask |= POLLOUT;
523 /* fall thru' */
524 case SS_CONNECTING:
525 case SS_LISTENING:
526 if (!skb_queue_empty(&sk->sk_receive_queue))
527 mask |= (POLLIN | POLLRDNORM);
528 break;
529 case SS_DISCONNECTING:
530 mask = (POLLIN | POLLRDNORM | POLLHUP);
531 break;
532 }
Allan Stephens9b674e82008-03-26 16:48:21 -0700533
534 return mask;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100535}
536
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900537/**
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500538 * tipc_sk_proto_rcv - receive a connection mng protocol message
539 * @tsk: receiving socket
540 * @dnode: node to send response message to, if any
541 * @buf: buffer containing protocol message
542 * Returns 0 (TIPC_OK) if message was consumed, 1 (TIPC_FWD_MSG) if
543 * (CONN_PROBE_REPLY) message should be forwarded.
544 */
545int tipc_sk_proto_rcv(struct tipc_sock *tsk, u32 *dnode, struct sk_buff *buf)
546{
547 struct tipc_msg *msg = buf_msg(buf);
548 struct tipc_port *port = &tsk->port;
Jon Paul Maloy60120522014-06-25 20:41:42 -0500549 int conn_cong;
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500550
551 /* Ignore if connection cannot be validated: */
552 if (!port->connected || !tipc_port_peer_msg(port, msg))
553 goto exit;
554
555 port->probing_state = TIPC_CONN_OK;
556
557 if (msg_type(msg) == CONN_ACK) {
Jon Paul Maloy60120522014-06-25 20:41:42 -0500558 conn_cong = tipc_sk_conn_cong(tsk);
559 tsk->sent_unacked -= msg_msgcnt(msg);
560 if (conn_cong)
561 tipc_sock_wakeup(tsk);
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500562 } else if (msg_type(msg) == CONN_PROBE) {
563 if (!tipc_msg_reverse(buf, dnode, TIPC_OK))
564 return TIPC_OK;
565 msg_set_type(msg, CONN_PROBE_REPLY);
566 return TIPC_FWD_MSG;
567 }
568 /* Do nothing if msg_type() == CONN_PROBE_REPLY */
569exit:
570 kfree_skb(buf);
571 return TIPC_OK;
572}
573
574/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100575 * dest_name_check - verify user is permitted to send to specified port name
576 * @dest: destination address
577 * @m: descriptor for message to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900578 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100579 * Prevents restricted configuration commands from being issued by
580 * unauthorized users.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900581 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100582 * Returns 0 if permission is granted, otherwise errno
583 */
Sam Ravnborg05790c62006-03-20 22:37:04 -0800584static int dest_name_check(struct sockaddr_tipc *dest, struct msghdr *m)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100585{
586 struct tipc_cfg_msg_hdr hdr;
587
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500588 if (unlikely(dest->addrtype == TIPC_ADDR_ID))
589 return 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900590 if (likely(dest->addr.name.name.type >= TIPC_RESERVED_TYPES))
591 return 0;
592 if (likely(dest->addr.name.name.type == TIPC_TOP_SRV))
593 return 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900594 if (likely(dest->addr.name.name.type != TIPC_CFG_SRV))
595 return -EACCES;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100596
Allan Stephens3f8dd942011-01-18 13:09:29 -0500597 if (!m->msg_iovlen || (m->msg_iov[0].iov_len < sizeof(hdr)))
598 return -EMSGSIZE;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900599 if (copy_from_user(&hdr, m->msg_iov[0].iov_base, sizeof(hdr)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100600 return -EFAULT;
Allan Stephens70cb2342006-06-25 23:41:47 -0700601 if ((ntohs(hdr.tcm_type) & 0xC000) && (!capable(CAP_NET_ADMIN)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100602 return -EACCES;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900603
Per Lidenb97bf3f2006-01-02 19:04:38 +0100604 return 0;
605}
606
Ying Xue3f405042014-01-17 09:50:05 +0800607static int tipc_wait_for_sndmsg(struct socket *sock, long *timeo_p)
608{
609 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400610 struct tipc_sock *tsk = tipc_sk(sk);
Ying Xue3f405042014-01-17 09:50:05 +0800611 DEFINE_WAIT(wait);
612 int done;
613
614 do {
615 int err = sock_error(sk);
616 if (err)
617 return err;
618 if (sock->state == SS_DISCONNECTING)
619 return -EPIPE;
620 if (!*timeo_p)
621 return -EAGAIN;
622 if (signal_pending(current))
623 return sock_intr_errno(*timeo_p);
624
625 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Jon Paul Maloy60120522014-06-25 20:41:42 -0500626 done = sk_wait_event(sk, timeo_p, !tsk->link_cong);
Ying Xue3f405042014-01-17 09:50:05 +0800627 finish_wait(sk_sleep(sk), &wait);
628 } while (!done);
629 return 0;
630}
631
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500632/**
633 * tipc_sendmcast - send multicast message
634 * @sock: socket structure
635 * @seq: destination address
636 * @iov: message data to send
637 * @dsz: total length of message data
638 * @timeo: timeout to wait for wakeup
639 *
640 * Called from function tipc_sendmsg(), which has done all sanity checks
641 * Returns the number of bytes sent on success, or errno
642 */
643static int tipc_sendmcast(struct socket *sock, struct tipc_name_seq *seq,
644 struct iovec *iov, size_t dsz, long timeo)
645{
646 struct sock *sk = sock->sk;
647 struct tipc_sock *tsk = tipc_sk(sk);
648 int rc;
649
650 do {
651 if (sock->state != SS_READY) {
652 rc = -EOPNOTSUPP;
653 break;
654 }
655 rc = tipc_port_mcast_xmit(&tsk->port, seq, iov, dsz);
656 if (likely(rc >= 0)) {
657 if (sock->state != SS_READY)
658 sock->state = SS_CONNECTING;
659 break;
660 }
661 if (rc != -ELINKCONG)
662 break;
663 rc = tipc_wait_for_sndmsg(sock, &timeo);
664 } while (!rc);
665
666 return rc;
667}
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400668
Per Lidenb97bf3f2006-01-02 19:04:38 +0100669/**
Ying Xue247f0f32014-02-18 16:06:46 +0800670 * tipc_sendmsg - send message in connectionless manner
Allan Stephens0c3141e2008-04-15 00:22:02 -0700671 * @iocb: if NULL, indicates that socket lock is already held
Per Lidenb97bf3f2006-01-02 19:04:38 +0100672 * @sock: socket structure
673 * @m: message to send
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500674 * @dsz: amount of user data to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900675 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100676 * Message must have an destination specified explicitly.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900677 * Used for SOCK_RDM and SOCK_DGRAM messages,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100678 * and for 'SYN' messages on SOCK_SEQPACKET and SOCK_STREAM connections.
679 * (Note: 'SYN+' is prohibited on SOCK_STREAM.)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900680 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100681 * Returns the number of bytes sent on success, or errno otherwise
682 */
Ying Xue247f0f32014-02-18 16:06:46 +0800683static int tipc_sendmsg(struct kiocb *iocb, struct socket *sock,
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500684 struct msghdr *m, size_t dsz)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100685{
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500686 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700687 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400688 struct tipc_sock *tsk = tipc_sk(sk);
Jon Paul Maloy5c311422014-03-12 11:31:13 -0400689 struct tipc_port *port = &tsk->port;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500690 struct tipc_msg *mhdr = &port->phdr;
691 struct iovec *iov = m->msg_iov;
692 u32 dnode, dport;
693 struct sk_buff *buf;
694 struct tipc_name_seq *seq = &dest->addr.nameseq;
695 u32 mtu;
Ying Xue3f405042014-01-17 09:50:05 +0800696 long timeo;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500697 int rc = -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100698
699 if (unlikely(!dest))
700 return -EDESTADDRREQ;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500701
Allan Stephens51f9cc12006-06-25 23:49:06 -0700702 if (unlikely((m->msg_namelen < sizeof(*dest)) ||
703 (dest->family != AF_TIPC)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100704 return -EINVAL;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500705
706 if (dsz > TIPC_MAX_USER_MSG_SIZE)
Allan Stephensc29c3f72010-04-20 17:58:24 -0400707 return -EMSGSIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100708
Allan Stephens0c3141e2008-04-15 00:22:02 -0700709 if (iocb)
710 lock_sock(sk);
711
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500712 if (unlikely(sock->state != SS_READY)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700713 if (sock->state == SS_LISTENING) {
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500714 rc = -EPIPE;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700715 goto exit;
Allan Stephens33880072006-06-25 23:44:57 -0700716 }
Allan Stephens0c3141e2008-04-15 00:22:02 -0700717 if (sock->state != SS_UNCONNECTED) {
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500718 rc = -EISCONN;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700719 goto exit;
720 }
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400721 if (tsk->port.published) {
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500722 rc = -EOPNOTSUPP;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700723 goto exit;
724 }
725 if (dest->addrtype == TIPC_ADDR_NAME) {
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400726 tsk->port.conn_type = dest->addr.name.name.type;
727 tsk->port.conn_instance = dest->addr.name.name.instance;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700728 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100729 }
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500730 rc = dest_name_check(dest, m);
731 if (rc)
732 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100733
Ying Xue3f405042014-01-17 09:50:05 +0800734 timeo = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500735
736 if (dest->addrtype == TIPC_ADDR_MCAST) {
737 rc = tipc_sendmcast(sock, seq, iov, dsz, timeo);
738 goto exit;
739 } else if (dest->addrtype == TIPC_ADDR_NAME) {
740 u32 type = dest->addr.name.name.type;
741 u32 inst = dest->addr.name.name.instance;
742 u32 domain = dest->addr.name.domain;
743
744 dnode = domain;
745 msg_set_type(mhdr, TIPC_NAMED_MSG);
746 msg_set_hdr_sz(mhdr, NAMED_H_SIZE);
747 msg_set_nametype(mhdr, type);
748 msg_set_nameinst(mhdr, inst);
749 msg_set_lookup_scope(mhdr, tipc_addr_scope(domain));
750 dport = tipc_nametbl_translate(type, inst, &dnode);
751 msg_set_destnode(mhdr, dnode);
752 msg_set_destport(mhdr, dport);
753 if (unlikely(!dport && !dnode)) {
754 rc = -EHOSTUNREACH;
755 goto exit;
756 }
757 } else if (dest->addrtype == TIPC_ADDR_ID) {
758 dnode = dest->addr.id.node;
759 msg_set_type(mhdr, TIPC_DIRECT_MSG);
760 msg_set_lookup_scope(mhdr, 0);
761 msg_set_destnode(mhdr, dnode);
762 msg_set_destport(mhdr, dest->addr.id.ref);
763 msg_set_hdr_sz(mhdr, BASIC_H_SIZE);
764 }
765
766new_mtu:
767 mtu = tipc_node_get_mtu(dnode, tsk->port.ref);
768 rc = tipc_msg_build2(mhdr, iov, 0, dsz, mtu, &buf);
769 if (rc < 0)
770 goto exit;
771
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900772 do {
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500773 rc = tipc_link_xmit2(buf, dnode, tsk->port.ref);
774 if (likely(rc >= 0)) {
775 if (sock->state != SS_READY)
Allan Stephens0c3141e2008-04-15 00:22:02 -0700776 sock->state = SS_CONNECTING;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500777 rc = dsz;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700778 break;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900779 }
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500780 if (rc == -EMSGSIZE)
781 goto new_mtu;
782
783 if (rc != -ELINKCONG)
Allan Stephens0c3141e2008-04-15 00:22:02 -0700784 break;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500785
786 rc = tipc_wait_for_sndmsg(sock, &timeo);
787 } while (!rc);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700788
789exit:
790 if (iocb)
791 release_sock(sk);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500792
793 return rc;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100794}
795
Ying Xue391a6dd2014-01-17 09:50:06 +0800796static int tipc_wait_for_sndpkt(struct socket *sock, long *timeo_p)
797{
798 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400799 struct tipc_sock *tsk = tipc_sk(sk);
Ying Xue391a6dd2014-01-17 09:50:06 +0800800 DEFINE_WAIT(wait);
801 int done;
802
803 do {
804 int err = sock_error(sk);
805 if (err)
806 return err;
807 if (sock->state == SS_DISCONNECTING)
808 return -EPIPE;
809 else if (sock->state != SS_CONNECTED)
810 return -ENOTCONN;
811 if (!*timeo_p)
812 return -EAGAIN;
813 if (signal_pending(current))
814 return sock_intr_errno(*timeo_p);
815
816 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
817 done = sk_wait_event(sk, timeo_p,
Jon Paul Maloy60120522014-06-25 20:41:42 -0500818 (!tsk->link_cong &&
819 !tipc_sk_conn_cong(tsk)) ||
820 !tsk->port.connected);
Ying Xue391a6dd2014-01-17 09:50:06 +0800821 finish_wait(sk_sleep(sk), &wait);
822 } while (!done);
823 return 0;
824}
825
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900826/**
Ying Xue247f0f32014-02-18 16:06:46 +0800827 * tipc_send_stream - send stream-oriented data
Per Lidenb97bf3f2006-01-02 19:04:38 +0100828 * @iocb: (unused)
829 * @sock: socket structure
830 * @m: data to send
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500831 * @dsz: total length of data to be transmitted
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900832 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100833 * Used for SOCK_STREAM data.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900834 *
835 * Returns the number of bytes sent on success (or partial success),
Allan Stephens1303e8f2006-06-25 23:46:50 -0700836 * or errno if no data sent
Per Lidenb97bf3f2006-01-02 19:04:38 +0100837 */
Ying Xue247f0f32014-02-18 16:06:46 +0800838static int tipc_send_stream(struct kiocb *iocb, struct socket *sock,
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500839 struct msghdr *m, size_t dsz)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100840{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700841 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400842 struct tipc_sock *tsk = tipc_sk(sk);
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500843 struct tipc_port *port = &tsk->port;
844 struct tipc_msg *mhdr = &port->phdr;
845 struct sk_buff *buf;
846 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
847 u32 ref = port->ref;
848 int rc = -EINVAL;
849 long timeo;
850 u32 dnode;
851 uint mtu, send, sent = 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900852
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500853 /* Handle implied connection establishment */
854 if (unlikely(dest)) {
855 rc = tipc_sendmsg(iocb, sock, m, dsz);
856 if (dsz && (dsz == rc))
Jon Paul Maloy60120522014-06-25 20:41:42 -0500857 tsk->sent_unacked = 1;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500858 return rc;
859 }
860 if (dsz > (uint)INT_MAX)
861 return -EMSGSIZE;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700862
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500863 if (iocb)
864 lock_sock(sk);
865
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900866 if (unlikely(sock->state != SS_CONNECTED)) {
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500867 if (sock->state == SS_DISCONNECTING)
868 rc = -EPIPE;
wangweidongb0555972013-12-27 10:09:39 +0800869 else
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500870 rc = -ENOTCONN;
wangweidong3b8401f2013-12-12 09:36:40 +0800871 goto exit;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900872 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100873
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500874 timeo = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT);
875 dnode = tipc_port_peernode(port);
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500876
877next:
878 mtu = port->max_pkt;
879 send = min_t(uint, dsz - sent, TIPC_MAX_USER_MSG_SIZE);
880 rc = tipc_msg_build2(mhdr, m->msg_iov, sent, send, mtu, &buf);
881 if (unlikely(rc < 0))
Allan Stephens0c3141e2008-04-15 00:22:02 -0700882 goto exit;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500883 do {
Jon Paul Maloy60120522014-06-25 20:41:42 -0500884 if (likely(!tipc_sk_conn_cong(tsk))) {
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500885 rc = tipc_link_xmit2(buf, dnode, ref);
886 if (likely(!rc)) {
Jon Paul Maloy60120522014-06-25 20:41:42 -0500887 tsk->sent_unacked++;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500888 sent += send;
889 if (sent == dsz)
890 break;
891 goto next;
Allan Stephens1303e8f2006-06-25 23:46:50 -0700892 }
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500893 if (rc == -EMSGSIZE) {
894 port->max_pkt = tipc_node_get_mtu(dnode, ref);
895 goto next;
896 }
897 if (rc != -ELINKCONG)
898 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100899 }
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500900 rc = tipc_wait_for_sndpkt(sock, &timeo);
901 } while (!rc);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700902exit:
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500903 if (iocb)
904 release_sock(sk);
905 return sent ? sent : rc;
906}
907
908/**
909 * tipc_send_packet - send a connection-oriented message
910 * @iocb: if NULL, indicates that socket lock is already held
911 * @sock: socket structure
912 * @m: message to send
913 * @dsz: length of data to be transmitted
914 *
915 * Used for SOCK_SEQPACKET messages.
916 *
917 * Returns the number of bytes sent on success, or errno otherwise
918 */
919static int tipc_send_packet(struct kiocb *iocb, struct socket *sock,
920 struct msghdr *m, size_t dsz)
921{
922 if (dsz > TIPC_MAX_USER_MSG_SIZE)
923 return -EMSGSIZE;
924
925 return tipc_send_stream(iocb, sock, m, dsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100926}
927
928/**
929 * auto_connect - complete connection setup to a remote port
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400930 * @tsk: tipc socket structure
Per Lidenb97bf3f2006-01-02 19:04:38 +0100931 * @msg: peer's response message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900932 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100933 * Returns 0 on success, errno otherwise
934 */
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400935static int auto_connect(struct tipc_sock *tsk, struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100936{
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400937 struct tipc_port *port = &tsk->port;
938 struct socket *sock = tsk->sk.sk_socket;
Jon Paul Maloyf9fef182014-03-12 11:31:08 -0400939 struct tipc_portid peer;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100940
Jon Paul Maloyf9fef182014-03-12 11:31:08 -0400941 peer.ref = msg_origport(msg);
942 peer.node = msg_orignode(msg);
943
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400944 __tipc_port_connect(port->ref, port, &peer);
Ying Xue584d24b2012-11-29 18:51:19 -0500945
946 if (msg_importance(msg) > TIPC_CRITICAL_IMPORTANCE)
947 return -EINVAL;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400948 msg_set_importance(&port->phdr, (u32)msg_importance(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100949 sock->state = SS_CONNECTED;
950 return 0;
951}
952
953/**
954 * set_orig_addr - capture sender's address for received message
955 * @m: descriptor for message info
956 * @msg: received message header
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900957 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100958 * Note: Address is not captured if not requested by receiver.
959 */
Sam Ravnborg05790c62006-03-20 22:37:04 -0800960static void set_orig_addr(struct msghdr *m, struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100961{
Steffen Hurrle342dfc32014-01-17 22:53:15 +0100962 DECLARE_SOCKADDR(struct sockaddr_tipc *, addr, m->msg_name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100963
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900964 if (addr) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100965 addr->family = AF_TIPC;
966 addr->addrtype = TIPC_ADDR_ID;
Mathias Krause60085c32013-04-07 01:52:00 +0000967 memset(&addr->addr, 0, sizeof(addr->addr));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100968 addr->addr.id.ref = msg_origport(msg);
969 addr->addr.id.node = msg_orignode(msg);
Allan Stephens0e659672010-12-31 18:59:32 +0000970 addr->addr.name.domain = 0; /* could leave uninitialized */
971 addr->scope = 0; /* could leave uninitialized */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100972 m->msg_namelen = sizeof(struct sockaddr_tipc);
973 }
974}
975
976/**
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900977 * anc_data_recv - optionally capture ancillary data for received message
Per Lidenb97bf3f2006-01-02 19:04:38 +0100978 * @m: descriptor for message info
979 * @msg: received message header
980 * @tport: TIPC port associated with message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900981 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100982 * Note: Ancillary data is not captured if not requested by receiver.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900983 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100984 * Returns 0 if successful, otherwise errno
985 */
Sam Ravnborg05790c62006-03-20 22:37:04 -0800986static int anc_data_recv(struct msghdr *m, struct tipc_msg *msg,
Paul Gortmakerae8509c2013-06-17 10:54:47 -0400987 struct tipc_port *tport)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100988{
989 u32 anc_data[3];
990 u32 err;
991 u32 dest_type;
Allan Stephens3546c752006-06-25 23:45:24 -0700992 int has_name;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100993 int res;
994
995 if (likely(m->msg_controllen == 0))
996 return 0;
997
998 /* Optionally capture errored message object(s) */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100999 err = msg ? msg_errcode(msg) : 0;
1000 if (unlikely(err)) {
1001 anc_data[0] = err;
1002 anc_data[1] = msg_data_sz(msg);
Allan Stephens2db99832010-12-31 18:59:33 +00001003 res = put_cmsg(m, SOL_TIPC, TIPC_ERRINFO, 8, anc_data);
1004 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001005 return res;
Allan Stephens2db99832010-12-31 18:59:33 +00001006 if (anc_data[1]) {
1007 res = put_cmsg(m, SOL_TIPC, TIPC_RETDATA, anc_data[1],
1008 msg_data(msg));
1009 if (res)
1010 return res;
1011 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001012 }
1013
1014 /* Optionally capture message destination object */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001015 dest_type = msg ? msg_type(msg) : TIPC_DIRECT_MSG;
1016 switch (dest_type) {
1017 case TIPC_NAMED_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -07001018 has_name = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001019 anc_data[0] = msg_nametype(msg);
1020 anc_data[1] = msg_namelower(msg);
1021 anc_data[2] = msg_namelower(msg);
1022 break;
1023 case TIPC_MCAST_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -07001024 has_name = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001025 anc_data[0] = msg_nametype(msg);
1026 anc_data[1] = msg_namelower(msg);
1027 anc_data[2] = msg_nameupper(msg);
1028 break;
1029 case TIPC_CONN_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -07001030 has_name = (tport->conn_type != 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001031 anc_data[0] = tport->conn_type;
1032 anc_data[1] = tport->conn_instance;
1033 anc_data[2] = tport->conn_instance;
1034 break;
1035 default:
Allan Stephens3546c752006-06-25 23:45:24 -07001036 has_name = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001037 }
Allan Stephens2db99832010-12-31 18:59:33 +00001038 if (has_name) {
1039 res = put_cmsg(m, SOL_TIPC, TIPC_DESTNAME, 12, anc_data);
1040 if (res)
1041 return res;
1042 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001043
1044 return 0;
1045}
1046
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001047static int tipc_wait_for_rcvmsg(struct socket *sock, long *timeop)
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001048{
1049 struct sock *sk = sock->sk;
1050 DEFINE_WAIT(wait);
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001051 long timeo = *timeop;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001052 int err;
1053
1054 for (;;) {
1055 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Ying Xuefe8e4642014-03-06 14:40:18 +01001056 if (timeo && skb_queue_empty(&sk->sk_receive_queue)) {
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001057 if (sock->state == SS_DISCONNECTING) {
1058 err = -ENOTCONN;
1059 break;
1060 }
1061 release_sock(sk);
1062 timeo = schedule_timeout(timeo);
1063 lock_sock(sk);
1064 }
1065 err = 0;
1066 if (!skb_queue_empty(&sk->sk_receive_queue))
1067 break;
1068 err = sock_intr_errno(timeo);
1069 if (signal_pending(current))
1070 break;
1071 err = -EAGAIN;
1072 if (!timeo)
1073 break;
1074 }
1075 finish_wait(sk_sleep(sk), &wait);
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001076 *timeop = timeo;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001077 return err;
1078}
1079
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001080/**
Ying Xue247f0f32014-02-18 16:06:46 +08001081 * tipc_recvmsg - receive packet-oriented message
Per Lidenb97bf3f2006-01-02 19:04:38 +01001082 * @iocb: (unused)
1083 * @m: descriptor for message info
1084 * @buf_len: total size of user buffer area
1085 * @flags: receive flags
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001086 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001087 * Used for SOCK_DGRAM, SOCK_RDM, and SOCK_SEQPACKET messages.
1088 * If the complete message doesn't fit in user area, truncate it.
1089 *
1090 * Returns size of returned message data, errno otherwise
1091 */
Ying Xue247f0f32014-02-18 16:06:46 +08001092static int tipc_recvmsg(struct kiocb *iocb, struct socket *sock,
1093 struct msghdr *m, size_t buf_len, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001094{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001095 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001096 struct tipc_sock *tsk = tipc_sk(sk);
1097 struct tipc_port *port = &tsk->port;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001098 struct sk_buff *buf;
1099 struct tipc_msg *msg;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001100 long timeo;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001101 unsigned int sz;
1102 u32 err;
1103 int res;
1104
Allan Stephens0c3141e2008-04-15 00:22:02 -07001105 /* Catch invalid receive requests */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001106 if (unlikely(!buf_len))
1107 return -EINVAL;
1108
Allan Stephens0c3141e2008-04-15 00:22:02 -07001109 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001110
Allan Stephens0c3141e2008-04-15 00:22:02 -07001111 if (unlikely(sock->state == SS_UNCONNECTED)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001112 res = -ENOTCONN;
1113 goto exit;
1114 }
1115
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001116 timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001117restart:
Per Lidenb97bf3f2006-01-02 19:04:38 +01001118
Allan Stephens0c3141e2008-04-15 00:22:02 -07001119 /* Look for a message in receive queue; wait if necessary */
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001120 res = tipc_wait_for_rcvmsg(sock, &timeo);
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001121 if (res)
1122 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001123
1124 /* Look at first message in receive queue */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001125 buf = skb_peek(&sk->sk_receive_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001126 msg = buf_msg(buf);
1127 sz = msg_data_sz(msg);
1128 err = msg_errcode(msg);
1129
Per Lidenb97bf3f2006-01-02 19:04:38 +01001130 /* Discard an empty non-errored message & try again */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001131 if ((!sz) && (!err)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07001132 advance_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001133 goto restart;
1134 }
1135
1136 /* Capture sender's address (optional) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001137 set_orig_addr(m, msg);
1138
1139 /* Capture ancillary data (optional) */
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001140 res = anc_data_recv(m, msg, port);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001141 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001142 goto exit;
1143
1144 /* Capture message data (if valid) & compute return value (always) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001145 if (!err) {
1146 if (unlikely(buf_len < sz)) {
1147 sz = buf_len;
1148 m->msg_flags |= MSG_TRUNC;
1149 }
Allan Stephens0232fd02011-02-21 09:45:40 -05001150 res = skb_copy_datagram_iovec(buf, msg_hdr_sz(msg),
1151 m->msg_iov, sz);
1152 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001153 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001154 res = sz;
1155 } else {
1156 if ((sock->state == SS_READY) ||
1157 ((err == TIPC_CONN_SHUTDOWN) || m->msg_control))
1158 res = 0;
1159 else
1160 res = -ECONNRESET;
1161 }
1162
1163 /* Consume received message (optional) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001164 if (likely(!(flags & MSG_PEEK))) {
Allan Stephens99009802008-04-15 00:06:12 -07001165 if ((sock->state != SS_READY) &&
Jon Paul Maloy60120522014-06-25 20:41:42 -05001166 (++tsk->rcv_unacked >= TIPC_CONNACK_INTV)) {
1167 tipc_acknowledge(port->ref, tsk->rcv_unacked);
1168 tsk->rcv_unacked = 0;
1169 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001170 advance_rx_queue(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001171 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001172exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001173 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001174 return res;
1175}
1176
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001177/**
Ying Xue247f0f32014-02-18 16:06:46 +08001178 * tipc_recv_stream - receive stream-oriented data
Per Lidenb97bf3f2006-01-02 19:04:38 +01001179 * @iocb: (unused)
1180 * @m: descriptor for message info
1181 * @buf_len: total size of user buffer area
1182 * @flags: receive flags
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001183 *
1184 * Used for SOCK_STREAM messages only. If not enough data is available
Per Lidenb97bf3f2006-01-02 19:04:38 +01001185 * will optionally wait for more; never truncates data.
1186 *
1187 * Returns size of returned message data, errno otherwise
1188 */
Ying Xue247f0f32014-02-18 16:06:46 +08001189static int tipc_recv_stream(struct kiocb *iocb, struct socket *sock,
1190 struct msghdr *m, size_t buf_len, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001191{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001192 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001193 struct tipc_sock *tsk = tipc_sk(sk);
1194 struct tipc_port *port = &tsk->port;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001195 struct sk_buff *buf;
1196 struct tipc_msg *msg;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001197 long timeo;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001198 unsigned int sz;
Florian Westphal3720d402010-08-17 11:00:04 +00001199 int sz_to_copy, target, needed;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001200 int sz_copied = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001201 u32 err;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001202 int res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001203
1204 /* Catch invalid receive attempts */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001205 if (unlikely(!buf_len))
1206 return -EINVAL;
1207
Allan Stephens0c3141e2008-04-15 00:22:02 -07001208 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001209
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001210 if (unlikely(sock->state == SS_UNCONNECTED)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001211 res = -ENOTCONN;
1212 goto exit;
1213 }
1214
Florian Westphal3720d402010-08-17 11:00:04 +00001215 target = sock_rcvlowat(sk, flags & MSG_WAITALL, buf_len);
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001216 timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001217
Allan Stephens0c3141e2008-04-15 00:22:02 -07001218restart:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001219 /* Look for a message in receive queue; wait if necessary */
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001220 res = tipc_wait_for_rcvmsg(sock, &timeo);
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001221 if (res)
1222 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001223
1224 /* Look at first message in receive queue */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001225 buf = skb_peek(&sk->sk_receive_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001226 msg = buf_msg(buf);
1227 sz = msg_data_sz(msg);
1228 err = msg_errcode(msg);
1229
1230 /* Discard an empty non-errored message & try again */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001231 if ((!sz) && (!err)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07001232 advance_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001233 goto restart;
1234 }
1235
1236 /* Optionally capture sender's address & ancillary data of first msg */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001237 if (sz_copied == 0) {
1238 set_orig_addr(m, msg);
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001239 res = anc_data_recv(m, msg, port);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001240 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001241 goto exit;
1242 }
1243
1244 /* Capture message data (if valid) & compute return value (always) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001245 if (!err) {
Allan Stephens0232fd02011-02-21 09:45:40 -05001246 u32 offset = (u32)(unsigned long)(TIPC_SKB_CB(buf)->handle);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001247
Allan Stephens0232fd02011-02-21 09:45:40 -05001248 sz -= offset;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001249 needed = (buf_len - sz_copied);
1250 sz_to_copy = (sz <= needed) ? sz : needed;
Allan Stephens0232fd02011-02-21 09:45:40 -05001251
1252 res = skb_copy_datagram_iovec(buf, msg_hdr_sz(msg) + offset,
1253 m->msg_iov, sz_to_copy);
1254 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001255 goto exit;
Allan Stephens0232fd02011-02-21 09:45:40 -05001256
Per Lidenb97bf3f2006-01-02 19:04:38 +01001257 sz_copied += sz_to_copy;
1258
1259 if (sz_to_copy < sz) {
1260 if (!(flags & MSG_PEEK))
Allan Stephens0232fd02011-02-21 09:45:40 -05001261 TIPC_SKB_CB(buf)->handle =
1262 (void *)(unsigned long)(offset + sz_to_copy);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001263 goto exit;
1264 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001265 } else {
1266 if (sz_copied != 0)
1267 goto exit; /* can't add error msg to valid data */
1268
1269 if ((err == TIPC_CONN_SHUTDOWN) || m->msg_control)
1270 res = 0;
1271 else
1272 res = -ECONNRESET;
1273 }
1274
1275 /* Consume received message (optional) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001276 if (likely(!(flags & MSG_PEEK))) {
Jon Paul Maloy60120522014-06-25 20:41:42 -05001277 if (unlikely(++tsk->rcv_unacked >= TIPC_CONNACK_INTV)) {
1278 tipc_acknowledge(port->ref, tsk->rcv_unacked);
1279 tsk->rcv_unacked = 0;
1280 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001281 advance_rx_queue(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001282 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001283
1284 /* Loop around if more data is required */
Joe Perchesf64f9e72009-11-29 16:55:45 -08001285 if ((sz_copied < buf_len) && /* didn't get all requested data */
1286 (!skb_queue_empty(&sk->sk_receive_queue) ||
Florian Westphal3720d402010-08-17 11:00:04 +00001287 (sz_copied < target)) && /* and more is ready or required */
Joe Perchesf64f9e72009-11-29 16:55:45 -08001288 (!(flags & MSG_PEEK)) && /* and aren't just peeking at data */
1289 (!err)) /* and haven't reached a FIN */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001290 goto restart;
1291
1292exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001293 release_sock(sk);
Allan Stephensa3b0a5a2006-06-25 23:48:22 -07001294 return sz_copied ? sz_copied : res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001295}
1296
1297/**
Ying Xuef288bef2012-08-21 11:16:57 +08001298 * tipc_write_space - wake up thread if port congestion is released
1299 * @sk: socket
1300 */
1301static void tipc_write_space(struct sock *sk)
1302{
1303 struct socket_wq *wq;
1304
1305 rcu_read_lock();
1306 wq = rcu_dereference(sk->sk_wq);
1307 if (wq_has_sleeper(wq))
1308 wake_up_interruptible_sync_poll(&wq->wait, POLLOUT |
1309 POLLWRNORM | POLLWRBAND);
1310 rcu_read_unlock();
1311}
1312
1313/**
1314 * tipc_data_ready - wake up threads to indicate messages have been received
1315 * @sk: socket
1316 * @len: the length of messages
1317 */
David S. Miller676d2362014-04-11 16:15:36 -04001318static void tipc_data_ready(struct sock *sk)
Ying Xuef288bef2012-08-21 11:16:57 +08001319{
1320 struct socket_wq *wq;
1321
1322 rcu_read_lock();
1323 wq = rcu_dereference(sk->sk_wq);
1324 if (wq_has_sleeper(wq))
1325 wake_up_interruptible_sync_poll(&wq->wait, POLLIN |
1326 POLLRDNORM | POLLRDBAND);
1327 rcu_read_unlock();
1328}
1329
1330/**
Ying Xue7e6c1312012-11-29 18:39:14 -05001331 * filter_connect - Handle all incoming messages for a connection-based socket
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001332 * @tsk: TIPC socket
Ying Xue7e6c1312012-11-29 18:39:14 -05001333 * @msg: message
1334 *
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001335 * Returns 0 (TIPC_OK) if everyting ok, -TIPC_ERR_NO_PORT otherwise
Ying Xue7e6c1312012-11-29 18:39:14 -05001336 */
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001337static int filter_connect(struct tipc_sock *tsk, struct sk_buff **buf)
Ying Xue7e6c1312012-11-29 18:39:14 -05001338{
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001339 struct sock *sk = &tsk->sk;
1340 struct tipc_port *port = &tsk->port;
Jon Paul Maloy8826cde2014-03-12 11:31:09 -04001341 struct socket *sock = sk->sk_socket;
Ying Xue7e6c1312012-11-29 18:39:14 -05001342 struct tipc_msg *msg = buf_msg(*buf);
Jon Paul Maloy8826cde2014-03-12 11:31:09 -04001343
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001344 int retval = -TIPC_ERR_NO_PORT;
Ying Xue584d24b2012-11-29 18:51:19 -05001345 int res;
Ying Xue7e6c1312012-11-29 18:39:14 -05001346
1347 if (msg_mcast(msg))
1348 return retval;
1349
1350 switch ((int)sock->state) {
1351 case SS_CONNECTED:
1352 /* Accept only connection-based messages sent by peer */
Jon Paul Maloy8826cde2014-03-12 11:31:09 -04001353 if (msg_connected(msg) && tipc_port_peer_msg(port, msg)) {
Ying Xue7e6c1312012-11-29 18:39:14 -05001354 if (unlikely(msg_errcode(msg))) {
1355 sock->state = SS_DISCONNECTING;
Jon Paul Maloy8826cde2014-03-12 11:31:09 -04001356 __tipc_port_disconnect(port);
Ying Xue7e6c1312012-11-29 18:39:14 -05001357 }
1358 retval = TIPC_OK;
1359 }
1360 break;
1361 case SS_CONNECTING:
1362 /* Accept only ACK or NACK message */
Ying Xue584d24b2012-11-29 18:51:19 -05001363 if (unlikely(msg_errcode(msg))) {
1364 sock->state = SS_DISCONNECTING;
Erik Hugne2c8d8512013-08-28 09:29:58 +02001365 sk->sk_err = ECONNREFUSED;
Ying Xue7e6c1312012-11-29 18:39:14 -05001366 retval = TIPC_OK;
Ying Xue584d24b2012-11-29 18:51:19 -05001367 break;
1368 }
1369
1370 if (unlikely(!msg_connected(msg)))
1371 break;
1372
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001373 res = auto_connect(tsk, msg);
Ying Xue584d24b2012-11-29 18:51:19 -05001374 if (res) {
1375 sock->state = SS_DISCONNECTING;
Erik Hugne2c8d8512013-08-28 09:29:58 +02001376 sk->sk_err = -res;
Ying Xue584d24b2012-11-29 18:51:19 -05001377 retval = TIPC_OK;
1378 break;
1379 }
1380
1381 /* If an incoming message is an 'ACK-', it should be
1382 * discarded here because it doesn't contain useful
1383 * data. In addition, we should try to wake up
1384 * connect() routine if sleeping.
1385 */
1386 if (msg_data_sz(msg) == 0) {
1387 kfree_skb(*buf);
1388 *buf = NULL;
1389 if (waitqueue_active(sk_sleep(sk)))
1390 wake_up_interruptible(sk_sleep(sk));
1391 }
1392 retval = TIPC_OK;
Ying Xue7e6c1312012-11-29 18:39:14 -05001393 break;
1394 case SS_LISTENING:
1395 case SS_UNCONNECTED:
1396 /* Accept only SYN message */
1397 if (!msg_connected(msg) && !(msg_errcode(msg)))
1398 retval = TIPC_OK;
1399 break;
1400 case SS_DISCONNECTING:
1401 break;
1402 default:
1403 pr_err("Unknown socket state %u\n", sock->state);
1404 }
1405 return retval;
1406}
1407
1408/**
Ying Xueaba79f32013-01-20 23:30:09 +01001409 * rcvbuf_limit - get proper overload limit of socket receive queue
1410 * @sk: socket
1411 * @buf: message
1412 *
1413 * For all connection oriented messages, irrespective of importance,
1414 * the default overload value (i.e. 67MB) is set as limit.
1415 *
1416 * For all connectionless messages, by default new queue limits are
1417 * as belows:
1418 *
Ying Xuecc79dd12013-06-17 10:54:37 -04001419 * TIPC_LOW_IMPORTANCE (4 MB)
1420 * TIPC_MEDIUM_IMPORTANCE (8 MB)
1421 * TIPC_HIGH_IMPORTANCE (16 MB)
1422 * TIPC_CRITICAL_IMPORTANCE (32 MB)
Ying Xueaba79f32013-01-20 23:30:09 +01001423 *
1424 * Returns overload limit according to corresponding message importance
1425 */
1426static unsigned int rcvbuf_limit(struct sock *sk, struct sk_buff *buf)
1427{
1428 struct tipc_msg *msg = buf_msg(buf);
Ying Xueaba79f32013-01-20 23:30:09 +01001429
1430 if (msg_connected(msg))
wangweidong0cee6bb2013-12-12 09:36:39 +08001431 return sysctl_tipc_rmem[2];
1432
1433 return sk->sk_rcvbuf >> TIPC_CRITICAL_IMPORTANCE <<
1434 msg_importance(msg);
Ying Xueaba79f32013-01-20 23:30:09 +01001435}
1436
1437/**
Allan Stephens0c3141e2008-04-15 00:22:02 -07001438 * filter_rcv - validate incoming message
1439 * @sk: socket
Per Lidenb97bf3f2006-01-02 19:04:38 +01001440 * @buf: message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001441 *
Allan Stephens0c3141e2008-04-15 00:22:02 -07001442 * Enqueues message on receive queue if acceptable; optionally handles
1443 * disconnect indication for a connected socket.
1444 *
1445 * Called with socket lock already taken; port lock may also be taken.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001446 *
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001447 * Returns 0 (TIPC_OK) if message was consumed, -TIPC error code if message
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001448 * to be rejected, 1 (TIPC_FWD_MSG) if (CONN_MANAGER) message to be forwarded
Per Lidenb97bf3f2006-01-02 19:04:38 +01001449 */
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001450static int filter_rcv(struct sock *sk, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001451{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001452 struct socket *sock = sk->sk_socket;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001453 struct tipc_sock *tsk = tipc_sk(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001454 struct tipc_msg *msg = buf_msg(buf);
Ying Xueaba79f32013-01-20 23:30:09 +01001455 unsigned int limit = rcvbuf_limit(sk, buf);
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001456 u32 onode;
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001457 int rc = TIPC_OK;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001458
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001459 if (unlikely(msg_user(msg) == CONN_MANAGER))
1460 return tipc_sk_proto_rcv(tsk, &onode, buf);
Jon Paul Maloyec8a2e52014-06-25 20:41:40 -05001461
Per Lidenb97bf3f2006-01-02 19:04:38 +01001462 /* Reject message if it is wrong sort of message for socket */
Allan Stephensaad58542012-04-26 18:13:08 -04001463 if (msg_type(msg) > TIPC_DIRECT_MSG)
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001464 return -TIPC_ERR_NO_PORT;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001465
Per Lidenb97bf3f2006-01-02 19:04:38 +01001466 if (sock->state == SS_READY) {
Allan Stephensb29f1422010-12-31 18:59:25 +00001467 if (msg_connected(msg))
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001468 return -TIPC_ERR_NO_PORT;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001469 } else {
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001470 rc = filter_connect(tsk, &buf);
1471 if (rc != TIPC_OK || buf == NULL)
1472 return rc;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001473 }
1474
1475 /* Reject message if there isn't room to queue it */
Ying Xueaba79f32013-01-20 23:30:09 +01001476 if (sk_rmem_alloc_get(sk) + buf->truesize >= limit)
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001477 return -TIPC_ERR_OVERLOAD;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001478
Ying Xueaba79f32013-01-20 23:30:09 +01001479 /* Enqueue message */
Ying Xue40682432013-10-18 07:23:16 +02001480 TIPC_SKB_CB(buf)->handle = NULL;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001481 __skb_queue_tail(&sk->sk_receive_queue, buf);
Ying Xueaba79f32013-01-20 23:30:09 +01001482 skb_set_owner_r(buf, sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001483
David S. Miller676d2362014-04-11 16:15:36 -04001484 sk->sk_data_ready(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001485 return TIPC_OK;
1486}
1487
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001488/**
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -04001489 * tipc_backlog_rcv - handle incoming message from backlog queue
Allan Stephens0c3141e2008-04-15 00:22:02 -07001490 * @sk: socket
1491 * @buf: message
1492 *
1493 * Caller must hold socket lock, but not port lock.
1494 *
1495 * Returns 0
1496 */
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -04001497static int tipc_backlog_rcv(struct sock *sk, struct sk_buff *buf)
Allan Stephens0c3141e2008-04-15 00:22:02 -07001498{
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001499 int rc;
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -05001500 u32 onode;
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -04001501 struct tipc_sock *tsk = tipc_sk(sk);
Jon Paul Maloy02c00c22014-06-09 11:08:18 -05001502 uint truesize = buf->truesize;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001503
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001504 rc = filter_rcv(sk, buf);
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -04001505
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001506 if (likely(!rc)) {
1507 if (atomic_read(&tsk->dupl_rcvcnt) < TIPC_CONN_OVERLOAD_LIMIT)
1508 atomic_add(truesize, &tsk->dupl_rcvcnt);
1509 return 0;
1510 }
1511
1512 if ((rc < 0) && !tipc_msg_reverse(buf, &onode, -rc))
1513 return 0;
1514
1515 tipc_link_xmit2(buf, onode, 0);
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -04001516
Allan Stephens0c3141e2008-04-15 00:22:02 -07001517 return 0;
1518}
1519
1520/**
Jon Paul Maloy24be34b2014-03-12 11:31:10 -04001521 * tipc_sk_rcv - handle incoming message
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001522 * @buf: buffer containing arriving message
1523 * Consumes buffer
1524 * Returns 0 if success, or errno: -EHOSTUNREACH
Allan Stephens0c3141e2008-04-15 00:22:02 -07001525 */
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001526int tipc_sk_rcv(struct sk_buff *buf)
Allan Stephens0c3141e2008-04-15 00:22:02 -07001527{
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001528 struct tipc_sock *tsk;
1529 struct tipc_port *port;
1530 struct sock *sk;
1531 u32 dport = msg_destport(buf_msg(buf));
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001532 int rc = TIPC_OK;
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -04001533 uint limit;
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -05001534 u32 dnode;
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001535
Jon Paul Maloy5a379072014-06-25 20:41:36 -05001536 /* Validate destination and message */
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001537 port = tipc_port_lock(dport);
1538 if (unlikely(!port)) {
Jon Paul Maloy5a379072014-06-25 20:41:36 -05001539 rc = tipc_msg_eval(buf, &dnode);
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001540 goto exit;
1541 }
1542
1543 tsk = tipc_port_to_sock(port);
1544 sk = &tsk->sk;
1545
1546 /* Queue message */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001547 bh_lock_sock(sk);
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001548
Allan Stephens0c3141e2008-04-15 00:22:02 -07001549 if (!sock_owned_by_user(sk)) {
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001550 rc = filter_rcv(sk, buf);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001551 } else {
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -04001552 if (sk->sk_backlog.len == 0)
1553 atomic_set(&tsk->dupl_rcvcnt, 0);
1554 limit = rcvbuf_limit(sk, buf) + atomic_read(&tsk->dupl_rcvcnt);
1555 if (sk_add_backlog(sk, buf, limit))
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001556 rc = -TIPC_ERR_OVERLOAD;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001557 }
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001558 bh_unlock_sock(sk);
1559 tipc_port_unlock(port);
1560
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001561 if (likely(!rc))
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001562 return 0;
1563exit:
Jon Paul Maloy5a379072014-06-25 20:41:36 -05001564 if ((rc < 0) && !tipc_msg_reverse(buf, &dnode, -rc))
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -05001565 return -EHOSTUNREACH;
Jon Paul Maloy5a379072014-06-25 20:41:36 -05001566
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -05001567 tipc_link_xmit2(buf, dnode, 0);
Jon Paul Maloy5a379072014-06-25 20:41:36 -05001568 return (rc < 0) ? -EHOSTUNREACH : 0;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001569}
1570
Ying Xue78eb3a52014-01-17 09:50:03 +08001571static int tipc_wait_for_connect(struct socket *sock, long *timeo_p)
1572{
1573 struct sock *sk = sock->sk;
1574 DEFINE_WAIT(wait);
1575 int done;
1576
1577 do {
1578 int err = sock_error(sk);
1579 if (err)
1580 return err;
1581 if (!*timeo_p)
1582 return -ETIMEDOUT;
1583 if (signal_pending(current))
1584 return sock_intr_errno(*timeo_p);
1585
1586 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
1587 done = sk_wait_event(sk, timeo_p, sock->state != SS_CONNECTING);
1588 finish_wait(sk_sleep(sk), &wait);
1589 } while (!done);
1590 return 0;
1591}
1592
Per Lidenb97bf3f2006-01-02 19:04:38 +01001593/**
Ying Xue247f0f32014-02-18 16:06:46 +08001594 * tipc_connect - establish a connection to another TIPC port
Per Lidenb97bf3f2006-01-02 19:04:38 +01001595 * @sock: socket structure
1596 * @dest: socket address for destination port
1597 * @destlen: size of socket address data structure
Allan Stephens0c3141e2008-04-15 00:22:02 -07001598 * @flags: file-related flags associated with socket
Per Lidenb97bf3f2006-01-02 19:04:38 +01001599 *
1600 * Returns 0 on success, errno otherwise
1601 */
Ying Xue247f0f32014-02-18 16:06:46 +08001602static int tipc_connect(struct socket *sock, struct sockaddr *dest,
1603 int destlen, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001604{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001605 struct sock *sk = sock->sk;
Allan Stephensb89741a2008-04-15 00:20:37 -07001606 struct sockaddr_tipc *dst = (struct sockaddr_tipc *)dest;
1607 struct msghdr m = {NULL,};
Ying Xue78eb3a52014-01-17 09:50:03 +08001608 long timeout = (flags & O_NONBLOCK) ? 0 : tipc_sk(sk)->conn_timeout;
1609 socket_state previous;
Allan Stephensb89741a2008-04-15 00:20:37 -07001610 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001611
Allan Stephens0c3141e2008-04-15 00:22:02 -07001612 lock_sock(sk);
1613
Allan Stephensb89741a2008-04-15 00:20:37 -07001614 /* For now, TIPC does not allow use of connect() with DGRAM/RDM types */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001615 if (sock->state == SS_READY) {
1616 res = -EOPNOTSUPP;
1617 goto exit;
1618 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001619
Allan Stephensb89741a2008-04-15 00:20:37 -07001620 /*
1621 * Reject connection attempt using multicast address
1622 *
1623 * Note: send_msg() validates the rest of the address fields,
1624 * so there's no need to do it here
1625 */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001626 if (dst->addrtype == TIPC_ADDR_MCAST) {
1627 res = -EINVAL;
1628 goto exit;
1629 }
1630
Ying Xue78eb3a52014-01-17 09:50:03 +08001631 previous = sock->state;
Ying Xue584d24b2012-11-29 18:51:19 -05001632 switch (sock->state) {
1633 case SS_UNCONNECTED:
1634 /* Send a 'SYN-' to destination */
1635 m.msg_name = dest;
1636 m.msg_namelen = destlen;
1637
1638 /* If connect is in non-blocking case, set MSG_DONTWAIT to
1639 * indicate send_msg() is never blocked.
1640 */
1641 if (!timeout)
1642 m.msg_flags = MSG_DONTWAIT;
1643
Ying Xue247f0f32014-02-18 16:06:46 +08001644 res = tipc_sendmsg(NULL, sock, &m, 0);
Ying Xue584d24b2012-11-29 18:51:19 -05001645 if ((res < 0) && (res != -EWOULDBLOCK))
1646 goto exit;
1647
1648 /* Just entered SS_CONNECTING state; the only
1649 * difference is that return value in non-blocking
1650 * case is EINPROGRESS, rather than EALREADY.
1651 */
1652 res = -EINPROGRESS;
Ying Xue584d24b2012-11-29 18:51:19 -05001653 case SS_CONNECTING:
Ying Xue78eb3a52014-01-17 09:50:03 +08001654 if (previous == SS_CONNECTING)
1655 res = -EALREADY;
1656 if (!timeout)
1657 goto exit;
1658 timeout = msecs_to_jiffies(timeout);
1659 /* Wait until an 'ACK' or 'RST' arrives, or a timeout occurs */
1660 res = tipc_wait_for_connect(sock, &timeout);
Ying Xue584d24b2012-11-29 18:51:19 -05001661 break;
1662 case SS_CONNECTED:
1663 res = -EISCONN;
1664 break;
1665 default:
1666 res = -EINVAL;
Ying Xue78eb3a52014-01-17 09:50:03 +08001667 break;
Allan Stephensb89741a2008-04-15 00:20:37 -07001668 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001669exit:
1670 release_sock(sk);
Allan Stephensb89741a2008-04-15 00:20:37 -07001671 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001672}
1673
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001674/**
Ying Xue247f0f32014-02-18 16:06:46 +08001675 * tipc_listen - allow socket to listen for incoming connections
Per Lidenb97bf3f2006-01-02 19:04:38 +01001676 * @sock: socket structure
1677 * @len: (unused)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001678 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001679 * Returns 0 on success, errno otherwise
1680 */
Ying Xue247f0f32014-02-18 16:06:46 +08001681static int tipc_listen(struct socket *sock, int len)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001682{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001683 struct sock *sk = sock->sk;
1684 int res;
1685
1686 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001687
Ying Xue245f3d32011-07-06 06:01:13 -04001688 if (sock->state != SS_UNCONNECTED)
Allan Stephens0c3141e2008-04-15 00:22:02 -07001689 res = -EINVAL;
1690 else {
1691 sock->state = SS_LISTENING;
1692 res = 0;
1693 }
1694
1695 release_sock(sk);
1696 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001697}
1698
Ying Xue6398e232014-01-17 09:50:04 +08001699static int tipc_wait_for_accept(struct socket *sock, long timeo)
1700{
1701 struct sock *sk = sock->sk;
1702 DEFINE_WAIT(wait);
1703 int err;
1704
1705 /* True wake-one mechanism for incoming connections: only
1706 * one process gets woken up, not the 'whole herd'.
1707 * Since we do not 'race & poll' for established sockets
1708 * anymore, the common case will execute the loop only once.
1709 */
1710 for (;;) {
1711 prepare_to_wait_exclusive(sk_sleep(sk), &wait,
1712 TASK_INTERRUPTIBLE);
Ying Xuefe8e4642014-03-06 14:40:18 +01001713 if (timeo && skb_queue_empty(&sk->sk_receive_queue)) {
Ying Xue6398e232014-01-17 09:50:04 +08001714 release_sock(sk);
1715 timeo = schedule_timeout(timeo);
1716 lock_sock(sk);
1717 }
1718 err = 0;
1719 if (!skb_queue_empty(&sk->sk_receive_queue))
1720 break;
1721 err = -EINVAL;
1722 if (sock->state != SS_LISTENING)
1723 break;
1724 err = sock_intr_errno(timeo);
1725 if (signal_pending(current))
1726 break;
1727 err = -EAGAIN;
1728 if (!timeo)
1729 break;
1730 }
1731 finish_wait(sk_sleep(sk), &wait);
1732 return err;
1733}
1734
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001735/**
Ying Xue247f0f32014-02-18 16:06:46 +08001736 * tipc_accept - wait for connection request
Per Lidenb97bf3f2006-01-02 19:04:38 +01001737 * @sock: listening socket
1738 * @newsock: new socket that is to be connected
1739 * @flags: file-related flags associated with socket
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001740 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001741 * Returns 0 on success, errno otherwise
1742 */
Ying Xue247f0f32014-02-18 16:06:46 +08001743static int tipc_accept(struct socket *sock, struct socket *new_sock, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001744{
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001745 struct sock *new_sk, *sk = sock->sk;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001746 struct sk_buff *buf;
Jon Paul Maloy8826cde2014-03-12 11:31:09 -04001747 struct tipc_port *new_port;
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001748 struct tipc_msg *msg;
Jon Paul Maloyf9fef182014-03-12 11:31:08 -04001749 struct tipc_portid peer;
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001750 u32 new_ref;
Ying Xue6398e232014-01-17 09:50:04 +08001751 long timeo;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001752 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001753
Allan Stephens0c3141e2008-04-15 00:22:02 -07001754 lock_sock(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001755
Allan Stephens0c3141e2008-04-15 00:22:02 -07001756 if (sock->state != SS_LISTENING) {
1757 res = -EINVAL;
1758 goto exit;
1759 }
Ying Xue6398e232014-01-17 09:50:04 +08001760 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
1761 res = tipc_wait_for_accept(sock, timeo);
1762 if (res)
1763 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001764
1765 buf = skb_peek(&sk->sk_receive_queue);
1766
Ying Xuec5fa7b32013-06-17 10:54:39 -04001767 res = tipc_sk_create(sock_net(sock->sk), new_sock, 0, 1);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001768 if (res)
1769 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001770
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001771 new_sk = new_sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001772 new_port = &tipc_sk(new_sk)->port;
Jon Paul Maloy8826cde2014-03-12 11:31:09 -04001773 new_ref = new_port->ref;
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001774 msg = buf_msg(buf);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001775
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001776 /* we lock on new_sk; but lockdep sees the lock on sk */
1777 lock_sock_nested(new_sk, SINGLE_DEPTH_NESTING);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001778
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001779 /*
1780 * Reject any stray messages received by new socket
1781 * before the socket lock was taken (very, very unlikely)
1782 */
1783 reject_rx_queue(new_sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001784
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001785 /* Connect new socket to it's peer */
Jon Paul Maloyf9fef182014-03-12 11:31:08 -04001786 peer.ref = msg_origport(msg);
1787 peer.node = msg_orignode(msg);
1788 tipc_port_connect(new_ref, &peer);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001789 new_sock->state = SS_CONNECTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001790
Jon Paul Maloy3b4f3022014-03-12 11:31:11 -04001791 tipc_port_set_importance(new_port, msg_importance(msg));
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001792 if (msg_named(msg)) {
Jon Paul Maloy8826cde2014-03-12 11:31:09 -04001793 new_port->conn_type = msg_nametype(msg);
1794 new_port->conn_instance = msg_nameinst(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001795 }
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001796
1797 /*
1798 * Respond to 'SYN-' by discarding it & returning 'ACK'-.
1799 * Respond to 'SYN+' by queuing it on new socket.
1800 */
1801 if (!msg_data_sz(msg)) {
1802 struct msghdr m = {NULL,};
1803
1804 advance_rx_queue(sk);
Ying Xue247f0f32014-02-18 16:06:46 +08001805 tipc_send_packet(NULL, new_sock, &m, 0);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001806 } else {
1807 __skb_dequeue(&sk->sk_receive_queue);
1808 __skb_queue_head(&new_sk->sk_receive_queue, buf);
Ying Xueaba79f32013-01-20 23:30:09 +01001809 skb_set_owner_r(buf, new_sk);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001810 }
1811 release_sock(new_sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001812exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001813 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001814 return res;
1815}
1816
1817/**
Ying Xue247f0f32014-02-18 16:06:46 +08001818 * tipc_shutdown - shutdown socket connection
Per Lidenb97bf3f2006-01-02 19:04:38 +01001819 * @sock: socket structure
Allan Stephense247a8f2008-03-06 15:05:38 -08001820 * @how: direction to close (must be SHUT_RDWR)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001821 *
1822 * Terminates connection (if necessary), then purges socket's receive queue.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001823 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001824 * Returns 0 on success, errno otherwise
1825 */
Ying Xue247f0f32014-02-18 16:06:46 +08001826static int tipc_shutdown(struct socket *sock, int how)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001827{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001828 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001829 struct tipc_sock *tsk = tipc_sk(sk);
1830 struct tipc_port *port = &tsk->port;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001831 struct sk_buff *buf;
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -05001832 u32 peer;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001833 int res;
1834
Allan Stephense247a8f2008-03-06 15:05:38 -08001835 if (how != SHUT_RDWR)
1836 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001837
Allan Stephens0c3141e2008-04-15 00:22:02 -07001838 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001839
1840 switch (sock->state) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07001841 case SS_CONNECTING:
Per Lidenb97bf3f2006-01-02 19:04:38 +01001842 case SS_CONNECTED:
1843
Per Lidenb97bf3f2006-01-02 19:04:38 +01001844restart:
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001845 /* Disconnect and send a 'FIN+' or 'FIN-' message to peer */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001846 buf = __skb_dequeue(&sk->sk_receive_queue);
1847 if (buf) {
Ying Xue40682432013-10-18 07:23:16 +02001848 if (TIPC_SKB_CB(buf)->handle != NULL) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04001849 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001850 goto restart;
1851 }
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001852 tipc_port_disconnect(port->ref);
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -05001853 if (tipc_msg_reverse(buf, &peer, TIPC_CONN_SHUTDOWN))
1854 tipc_link_xmit2(buf, peer, 0);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001855 } else {
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001856 tipc_port_shutdown(port->ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001857 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001858
1859 sock->state = SS_DISCONNECTING;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001860
1861 /* fall through */
1862
1863 case SS_DISCONNECTING:
1864
Ying Xue75031152012-10-29 09:38:15 -04001865 /* Discard any unreceived messages */
Ying Xue57467e52013-01-20 23:30:08 +01001866 __skb_queue_purge(&sk->sk_receive_queue);
Ying Xue75031152012-10-29 09:38:15 -04001867
1868 /* Wake up anyone sleeping in poll */
1869 sk->sk_state_change(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001870 res = 0;
1871 break;
1872
1873 default:
1874 res = -ENOTCONN;
1875 }
1876
Allan Stephens0c3141e2008-04-15 00:22:02 -07001877 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001878 return res;
1879}
1880
1881/**
Ying Xue247f0f32014-02-18 16:06:46 +08001882 * tipc_setsockopt - set socket option
Per Lidenb97bf3f2006-01-02 19:04:38 +01001883 * @sock: socket structure
1884 * @lvl: option level
1885 * @opt: option identifier
1886 * @ov: pointer to new option value
1887 * @ol: length of option value
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001888 *
1889 * For stream sockets only, accepts and ignores all IPPROTO_TCP options
Per Lidenb97bf3f2006-01-02 19:04:38 +01001890 * (to ease compatibility).
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001891 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001892 * Returns 0 on success, errno otherwise
1893 */
Ying Xue247f0f32014-02-18 16:06:46 +08001894static int tipc_setsockopt(struct socket *sock, int lvl, int opt,
1895 char __user *ov, unsigned int ol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001896{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001897 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001898 struct tipc_sock *tsk = tipc_sk(sk);
1899 struct tipc_port *port = &tsk->port;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001900 u32 value;
1901 int res;
1902
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001903 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
1904 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001905 if (lvl != SOL_TIPC)
1906 return -ENOPROTOOPT;
1907 if (ol < sizeof(value))
1908 return -EINVAL;
Allan Stephens2db99832010-12-31 18:59:33 +00001909 res = get_user(value, (u32 __user *)ov);
1910 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001911 return res;
1912
Allan Stephens0c3141e2008-04-15 00:22:02 -07001913 lock_sock(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001914
Per Lidenb97bf3f2006-01-02 19:04:38 +01001915 switch (opt) {
1916 case TIPC_IMPORTANCE:
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001917 tipc_port_set_importance(port, value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001918 break;
1919 case TIPC_SRC_DROPPABLE:
1920 if (sock->type != SOCK_STREAM)
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001921 tipc_port_set_unreliable(port, value);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001922 else
Per Lidenb97bf3f2006-01-02 19:04:38 +01001923 res = -ENOPROTOOPT;
1924 break;
1925 case TIPC_DEST_DROPPABLE:
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001926 tipc_port_set_unreturnable(port, value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001927 break;
1928 case TIPC_CONN_TIMEOUT:
Allan Stephensa0f40f02011-05-26 13:44:34 -04001929 tipc_sk(sk)->conn_timeout = value;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001930 /* no need to set "res", since already 0 at this point */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001931 break;
1932 default:
1933 res = -EINVAL;
1934 }
1935
Allan Stephens0c3141e2008-04-15 00:22:02 -07001936 release_sock(sk);
1937
Per Lidenb97bf3f2006-01-02 19:04:38 +01001938 return res;
1939}
1940
1941/**
Ying Xue247f0f32014-02-18 16:06:46 +08001942 * tipc_getsockopt - get socket option
Per Lidenb97bf3f2006-01-02 19:04:38 +01001943 * @sock: socket structure
1944 * @lvl: option level
1945 * @opt: option identifier
1946 * @ov: receptacle for option value
1947 * @ol: receptacle for length of option value
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001948 *
1949 * For stream sockets only, returns 0 length result for all IPPROTO_TCP options
Per Lidenb97bf3f2006-01-02 19:04:38 +01001950 * (to ease compatibility).
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001951 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001952 * Returns 0 on success, errno otherwise
1953 */
Ying Xue247f0f32014-02-18 16:06:46 +08001954static int tipc_getsockopt(struct socket *sock, int lvl, int opt,
1955 char __user *ov, int __user *ol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001956{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001957 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001958 struct tipc_sock *tsk = tipc_sk(sk);
1959 struct tipc_port *port = &tsk->port;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001960 int len;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001961 u32 value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001962 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001963
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001964 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
1965 return put_user(0, ol);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001966 if (lvl != SOL_TIPC)
1967 return -ENOPROTOOPT;
Allan Stephens2db99832010-12-31 18:59:33 +00001968 res = get_user(len, ol);
1969 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001970 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001971
Allan Stephens0c3141e2008-04-15 00:22:02 -07001972 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001973
1974 switch (opt) {
1975 case TIPC_IMPORTANCE:
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001976 value = tipc_port_importance(port);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001977 break;
1978 case TIPC_SRC_DROPPABLE:
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001979 value = tipc_port_unreliable(port);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001980 break;
1981 case TIPC_DEST_DROPPABLE:
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001982 value = tipc_port_unreturnable(port);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001983 break;
1984 case TIPC_CONN_TIMEOUT:
Allan Stephensa0f40f02011-05-26 13:44:34 -04001985 value = tipc_sk(sk)->conn_timeout;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001986 /* no need to set "res", since already 0 at this point */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001987 break;
Allan Stephens0e659672010-12-31 18:59:32 +00001988 case TIPC_NODE_RECVQ_DEPTH:
Ying Xue9da3d472012-11-27 06:15:27 -05001989 value = 0; /* was tipc_queue_size, now obsolete */
oscar.medina@motorola.com66506132009-06-30 03:25:39 +00001990 break;
Allan Stephens0e659672010-12-31 18:59:32 +00001991 case TIPC_SOCK_RECVQ_DEPTH:
oscar.medina@motorola.com66506132009-06-30 03:25:39 +00001992 value = skb_queue_len(&sk->sk_receive_queue);
1993 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001994 default:
1995 res = -EINVAL;
1996 }
1997
Allan Stephens0c3141e2008-04-15 00:22:02 -07001998 release_sock(sk);
1999
Paul Gortmaker25860c32010-12-31 18:59:31 +00002000 if (res)
2001 return res; /* "get" failed */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002002
Paul Gortmaker25860c32010-12-31 18:59:31 +00002003 if (len < sizeof(value))
2004 return -EINVAL;
2005
2006 if (copy_to_user(ov, &value, sizeof(value)))
2007 return -EFAULT;
2008
2009 return put_user(sizeof(value), ol);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002010}
2011
Erik Hugne78acb1f2014-04-24 16:26:47 +02002012int tipc_ioctl(struct socket *sk, unsigned int cmd, unsigned long arg)
2013{
2014 struct tipc_sioc_ln_req lnr;
2015 void __user *argp = (void __user *)arg;
2016
2017 switch (cmd) {
2018 case SIOCGETLINKNAME:
2019 if (copy_from_user(&lnr, argp, sizeof(lnr)))
2020 return -EFAULT;
2021 if (!tipc_node_get_linkname(lnr.bearer_id, lnr.peer,
2022 lnr.linkname, TIPC_MAX_LINK_NAME)) {
2023 if (copy_to_user(argp, &lnr, sizeof(lnr)))
2024 return -EFAULT;
2025 return 0;
2026 }
2027 return -EADDRNOTAVAIL;
2028 break;
2029 default:
2030 return -ENOIOCTLCMD;
2031 }
2032}
2033
Ben Hutchingsae86b9e2012-07-10 10:55:35 +00002034/* Protocol switches for the various types of TIPC sockets */
2035
Florian Westphalbca65ea2008-02-07 18:18:01 -08002036static const struct proto_ops msg_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00002037 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002038 .family = AF_TIPC,
Ying Xue247f0f32014-02-18 16:06:46 +08002039 .release = tipc_release,
2040 .bind = tipc_bind,
2041 .connect = tipc_connect,
Allan Stephens5eee6a62007-06-10 17:24:55 -07002042 .socketpair = sock_no_socketpair,
Ying Xue245f3d32011-07-06 06:01:13 -04002043 .accept = sock_no_accept,
Ying Xue247f0f32014-02-18 16:06:46 +08002044 .getname = tipc_getname,
2045 .poll = tipc_poll,
Erik Hugne78acb1f2014-04-24 16:26:47 +02002046 .ioctl = tipc_ioctl,
Ying Xue245f3d32011-07-06 06:01:13 -04002047 .listen = sock_no_listen,
Ying Xue247f0f32014-02-18 16:06:46 +08002048 .shutdown = tipc_shutdown,
2049 .setsockopt = tipc_setsockopt,
2050 .getsockopt = tipc_getsockopt,
2051 .sendmsg = tipc_sendmsg,
2052 .recvmsg = tipc_recvmsg,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09002053 .mmap = sock_no_mmap,
2054 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01002055};
2056
Florian Westphalbca65ea2008-02-07 18:18:01 -08002057static const struct proto_ops packet_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00002058 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002059 .family = AF_TIPC,
Ying Xue247f0f32014-02-18 16:06:46 +08002060 .release = tipc_release,
2061 .bind = tipc_bind,
2062 .connect = tipc_connect,
Allan Stephens5eee6a62007-06-10 17:24:55 -07002063 .socketpair = sock_no_socketpair,
Ying Xue247f0f32014-02-18 16:06:46 +08002064 .accept = tipc_accept,
2065 .getname = tipc_getname,
2066 .poll = tipc_poll,
Erik Hugne78acb1f2014-04-24 16:26:47 +02002067 .ioctl = tipc_ioctl,
Ying Xue247f0f32014-02-18 16:06:46 +08002068 .listen = tipc_listen,
2069 .shutdown = tipc_shutdown,
2070 .setsockopt = tipc_setsockopt,
2071 .getsockopt = tipc_getsockopt,
2072 .sendmsg = tipc_send_packet,
2073 .recvmsg = tipc_recvmsg,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09002074 .mmap = sock_no_mmap,
2075 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01002076};
2077
Florian Westphalbca65ea2008-02-07 18:18:01 -08002078static const struct proto_ops stream_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00002079 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002080 .family = AF_TIPC,
Ying Xue247f0f32014-02-18 16:06:46 +08002081 .release = tipc_release,
2082 .bind = tipc_bind,
2083 .connect = tipc_connect,
Allan Stephens5eee6a62007-06-10 17:24:55 -07002084 .socketpair = sock_no_socketpair,
Ying Xue247f0f32014-02-18 16:06:46 +08002085 .accept = tipc_accept,
2086 .getname = tipc_getname,
2087 .poll = tipc_poll,
Erik Hugne78acb1f2014-04-24 16:26:47 +02002088 .ioctl = tipc_ioctl,
Ying Xue247f0f32014-02-18 16:06:46 +08002089 .listen = tipc_listen,
2090 .shutdown = tipc_shutdown,
2091 .setsockopt = tipc_setsockopt,
2092 .getsockopt = tipc_getsockopt,
2093 .sendmsg = tipc_send_stream,
2094 .recvmsg = tipc_recv_stream,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09002095 .mmap = sock_no_mmap,
2096 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01002097};
2098
Florian Westphalbca65ea2008-02-07 18:18:01 -08002099static const struct net_proto_family tipc_family_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00002100 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002101 .family = AF_TIPC,
Ying Xuec5fa7b32013-06-17 10:54:39 -04002102 .create = tipc_sk_create
Per Lidenb97bf3f2006-01-02 19:04:38 +01002103};
2104
2105static struct proto tipc_proto = {
2106 .name = "TIPC",
2107 .owner = THIS_MODULE,
Ying Xuecc79dd12013-06-17 10:54:37 -04002108 .obj_size = sizeof(struct tipc_sock),
2109 .sysctl_rmem = sysctl_tipc_rmem
Per Lidenb97bf3f2006-01-02 19:04:38 +01002110};
2111
Ying Xuec5fa7b32013-06-17 10:54:39 -04002112static struct proto tipc_proto_kern = {
2113 .name = "TIPC",
2114 .obj_size = sizeof(struct tipc_sock),
2115 .sysctl_rmem = sysctl_tipc_rmem
2116};
2117
Per Lidenb97bf3f2006-01-02 19:04:38 +01002118/**
Per Liden4323add2006-01-18 00:38:21 +01002119 * tipc_socket_init - initialize TIPC socket interface
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002120 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002121 * Returns 0 on success, errno otherwise
2122 */
Per Liden4323add2006-01-18 00:38:21 +01002123int tipc_socket_init(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002124{
2125 int res;
2126
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002127 res = proto_register(&tipc_proto, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002128 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002129 pr_err("Failed to register TIPC protocol type\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002130 goto out;
2131 }
2132
2133 res = sock_register(&tipc_family_ops);
2134 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002135 pr_err("Failed to register TIPC socket type\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002136 proto_unregister(&tipc_proto);
2137 goto out;
2138 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002139 out:
2140 return res;
2141}
2142
2143/**
Per Liden4323add2006-01-18 00:38:21 +01002144 * tipc_socket_stop - stop TIPC socket interface
Per Lidenb97bf3f2006-01-02 19:04:38 +01002145 */
Per Liden4323add2006-01-18 00:38:21 +01002146void tipc_socket_stop(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002147{
Per Lidenb97bf3f2006-01-02 19:04:38 +01002148 sock_unregister(tipc_family_ops.family);
2149 proto_unregister(&tipc_proto);
2150}