blob: 8d30995682b1904da628c8d8d5597a6cf65f01f3 [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
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400537/* tipc_sk_mcast_rcv - Deliver multicast message to all destination sockets
538 */
539void tipc_sk_mcast_rcv(struct sk_buff *buf)
540{
541 struct tipc_msg *msg = buf_msg(buf);
542 struct tipc_port_list dports = {0, NULL, };
543 struct tipc_port_list *item;
544 struct sk_buff *b;
545 uint i, last, dst = 0;
546 u32 scope = TIPC_CLUSTER_SCOPE;
547
548 if (in_own_node(msg_orignode(msg)))
549 scope = TIPC_NODE_SCOPE;
550
551 /* Create destination port list: */
552 tipc_nametbl_mc_translate(msg_nametype(msg),
553 msg_namelower(msg),
554 msg_nameupper(msg),
555 scope,
556 &dports);
557 last = dports.count;
558 if (!last) {
559 kfree_skb(buf);
560 return;
561 }
562
563 for (item = &dports; item; item = item->next) {
564 for (i = 0; i < PLSIZE && ++dst <= last; i++) {
565 b = (dst != last) ? skb_clone(buf, GFP_ATOMIC) : buf;
566 if (!b) {
567 pr_warn("Failed do clone mcast rcv buffer\n");
568 continue;
569 }
570 msg_set_destport(msg, item->ports[i]);
571 tipc_sk_rcv(b);
572 }
573 }
574 tipc_port_list_free(&dports);
575}
576
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900577/**
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500578 * tipc_sk_proto_rcv - receive a connection mng protocol message
579 * @tsk: receiving socket
580 * @dnode: node to send response message to, if any
581 * @buf: buffer containing protocol message
582 * Returns 0 (TIPC_OK) if message was consumed, 1 (TIPC_FWD_MSG) if
583 * (CONN_PROBE_REPLY) message should be forwarded.
584 */
585int tipc_sk_proto_rcv(struct tipc_sock *tsk, u32 *dnode, struct sk_buff *buf)
586{
587 struct tipc_msg *msg = buf_msg(buf);
588 struct tipc_port *port = &tsk->port;
Jon Paul Maloy60120522014-06-25 20:41:42 -0500589 int conn_cong;
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500590
591 /* Ignore if connection cannot be validated: */
592 if (!port->connected || !tipc_port_peer_msg(port, msg))
593 goto exit;
594
595 port->probing_state = TIPC_CONN_OK;
596
597 if (msg_type(msg) == CONN_ACK) {
Jon Paul Maloy60120522014-06-25 20:41:42 -0500598 conn_cong = tipc_sk_conn_cong(tsk);
599 tsk->sent_unacked -= msg_msgcnt(msg);
600 if (conn_cong)
601 tipc_sock_wakeup(tsk);
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500602 } else if (msg_type(msg) == CONN_PROBE) {
603 if (!tipc_msg_reverse(buf, dnode, TIPC_OK))
604 return TIPC_OK;
605 msg_set_type(msg, CONN_PROBE_REPLY);
606 return TIPC_FWD_MSG;
607 }
608 /* Do nothing if msg_type() == CONN_PROBE_REPLY */
609exit:
610 kfree_skb(buf);
611 return TIPC_OK;
612}
613
614/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100615 * dest_name_check - verify user is permitted to send to specified port name
616 * @dest: destination address
617 * @m: descriptor for message to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900618 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100619 * Prevents restricted configuration commands from being issued by
620 * unauthorized users.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900621 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100622 * Returns 0 if permission is granted, otherwise errno
623 */
Sam Ravnborg05790c62006-03-20 22:37:04 -0800624static int dest_name_check(struct sockaddr_tipc *dest, struct msghdr *m)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100625{
626 struct tipc_cfg_msg_hdr hdr;
627
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500628 if (unlikely(dest->addrtype == TIPC_ADDR_ID))
629 return 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900630 if (likely(dest->addr.name.name.type >= TIPC_RESERVED_TYPES))
631 return 0;
632 if (likely(dest->addr.name.name.type == TIPC_TOP_SRV))
633 return 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900634 if (likely(dest->addr.name.name.type != TIPC_CFG_SRV))
635 return -EACCES;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100636
Allan Stephens3f8dd942011-01-18 13:09:29 -0500637 if (!m->msg_iovlen || (m->msg_iov[0].iov_len < sizeof(hdr)))
638 return -EMSGSIZE;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900639 if (copy_from_user(&hdr, m->msg_iov[0].iov_base, sizeof(hdr)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100640 return -EFAULT;
Allan Stephens70cb2342006-06-25 23:41:47 -0700641 if ((ntohs(hdr.tcm_type) & 0xC000) && (!capable(CAP_NET_ADMIN)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100642 return -EACCES;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900643
Per Lidenb97bf3f2006-01-02 19:04:38 +0100644 return 0;
645}
646
Ying Xue3f405042014-01-17 09:50:05 +0800647static int tipc_wait_for_sndmsg(struct socket *sock, long *timeo_p)
648{
649 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400650 struct tipc_sock *tsk = tipc_sk(sk);
Ying Xue3f405042014-01-17 09:50:05 +0800651 DEFINE_WAIT(wait);
652 int done;
653
654 do {
655 int err = sock_error(sk);
656 if (err)
657 return err;
658 if (sock->state == SS_DISCONNECTING)
659 return -EPIPE;
660 if (!*timeo_p)
661 return -EAGAIN;
662 if (signal_pending(current))
663 return sock_intr_errno(*timeo_p);
664
665 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Jon Paul Maloy60120522014-06-25 20:41:42 -0500666 done = sk_wait_event(sk, timeo_p, !tsk->link_cong);
Ying Xue3f405042014-01-17 09:50:05 +0800667 finish_wait(sk_sleep(sk), &wait);
668 } while (!done);
669 return 0;
670}
671
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500672/**
673 * tipc_sendmcast - send multicast message
674 * @sock: socket structure
675 * @seq: destination address
676 * @iov: message data to send
677 * @dsz: total length of message data
678 * @timeo: timeout to wait for wakeup
679 *
680 * Called from function tipc_sendmsg(), which has done all sanity checks
681 * Returns the number of bytes sent on success, or errno
682 */
683static int tipc_sendmcast(struct socket *sock, struct tipc_name_seq *seq,
684 struct iovec *iov, size_t dsz, long timeo)
685{
686 struct sock *sk = sock->sk;
687 struct tipc_sock *tsk = tipc_sk(sk);
688 int rc;
689
690 do {
691 if (sock->state != SS_READY) {
692 rc = -EOPNOTSUPP;
693 break;
694 }
695 rc = tipc_port_mcast_xmit(&tsk->port, seq, iov, dsz);
696 if (likely(rc >= 0)) {
697 if (sock->state != SS_READY)
698 sock->state = SS_CONNECTING;
699 break;
700 }
701 if (rc != -ELINKCONG)
702 break;
703 rc = tipc_wait_for_sndmsg(sock, &timeo);
704 } while (!rc);
705
706 return rc;
707}
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400708
Per Lidenb97bf3f2006-01-02 19:04:38 +0100709/**
Ying Xue247f0f32014-02-18 16:06:46 +0800710 * tipc_sendmsg - send message in connectionless manner
Allan Stephens0c3141e2008-04-15 00:22:02 -0700711 * @iocb: if NULL, indicates that socket lock is already held
Per Lidenb97bf3f2006-01-02 19:04:38 +0100712 * @sock: socket structure
713 * @m: message to send
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500714 * @dsz: amount of user data to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900715 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100716 * Message must have an destination specified explicitly.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900717 * Used for SOCK_RDM and SOCK_DGRAM messages,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100718 * and for 'SYN' messages on SOCK_SEQPACKET and SOCK_STREAM connections.
719 * (Note: 'SYN+' is prohibited on SOCK_STREAM.)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900720 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100721 * Returns the number of bytes sent on success, or errno otherwise
722 */
Ying Xue247f0f32014-02-18 16:06:46 +0800723static int tipc_sendmsg(struct kiocb *iocb, struct socket *sock,
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500724 struct msghdr *m, size_t dsz)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100725{
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500726 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700727 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400728 struct tipc_sock *tsk = tipc_sk(sk);
Jon Paul Maloy5c311422014-03-12 11:31:13 -0400729 struct tipc_port *port = &tsk->port;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500730 struct tipc_msg *mhdr = &port->phdr;
731 struct iovec *iov = m->msg_iov;
732 u32 dnode, dport;
733 struct sk_buff *buf;
734 struct tipc_name_seq *seq = &dest->addr.nameseq;
735 u32 mtu;
Ying Xue3f405042014-01-17 09:50:05 +0800736 long timeo;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500737 int rc = -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100738
739 if (unlikely(!dest))
740 return -EDESTADDRREQ;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500741
Allan Stephens51f9cc12006-06-25 23:49:06 -0700742 if (unlikely((m->msg_namelen < sizeof(*dest)) ||
743 (dest->family != AF_TIPC)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100744 return -EINVAL;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500745
746 if (dsz > TIPC_MAX_USER_MSG_SIZE)
Allan Stephensc29c3f72010-04-20 17:58:24 -0400747 return -EMSGSIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100748
Allan Stephens0c3141e2008-04-15 00:22:02 -0700749 if (iocb)
750 lock_sock(sk);
751
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500752 if (unlikely(sock->state != SS_READY)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700753 if (sock->state == SS_LISTENING) {
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500754 rc = -EPIPE;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700755 goto exit;
Allan Stephens33880072006-06-25 23:44:57 -0700756 }
Allan Stephens0c3141e2008-04-15 00:22:02 -0700757 if (sock->state != SS_UNCONNECTED) {
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500758 rc = -EISCONN;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700759 goto exit;
760 }
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400761 if (tsk->port.published) {
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500762 rc = -EOPNOTSUPP;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700763 goto exit;
764 }
765 if (dest->addrtype == TIPC_ADDR_NAME) {
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400766 tsk->port.conn_type = dest->addr.name.name.type;
767 tsk->port.conn_instance = dest->addr.name.name.instance;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700768 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100769 }
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500770 rc = dest_name_check(dest, m);
771 if (rc)
772 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100773
Ying Xue3f405042014-01-17 09:50:05 +0800774 timeo = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500775
776 if (dest->addrtype == TIPC_ADDR_MCAST) {
777 rc = tipc_sendmcast(sock, seq, iov, dsz, timeo);
778 goto exit;
779 } else if (dest->addrtype == TIPC_ADDR_NAME) {
780 u32 type = dest->addr.name.name.type;
781 u32 inst = dest->addr.name.name.instance;
782 u32 domain = dest->addr.name.domain;
783
784 dnode = domain;
785 msg_set_type(mhdr, TIPC_NAMED_MSG);
786 msg_set_hdr_sz(mhdr, NAMED_H_SIZE);
787 msg_set_nametype(mhdr, type);
788 msg_set_nameinst(mhdr, inst);
789 msg_set_lookup_scope(mhdr, tipc_addr_scope(domain));
790 dport = tipc_nametbl_translate(type, inst, &dnode);
791 msg_set_destnode(mhdr, dnode);
792 msg_set_destport(mhdr, dport);
793 if (unlikely(!dport && !dnode)) {
794 rc = -EHOSTUNREACH;
795 goto exit;
796 }
797 } else if (dest->addrtype == TIPC_ADDR_ID) {
798 dnode = dest->addr.id.node;
799 msg_set_type(mhdr, TIPC_DIRECT_MSG);
800 msg_set_lookup_scope(mhdr, 0);
801 msg_set_destnode(mhdr, dnode);
802 msg_set_destport(mhdr, dest->addr.id.ref);
803 msg_set_hdr_sz(mhdr, BASIC_H_SIZE);
804 }
805
806new_mtu:
807 mtu = tipc_node_get_mtu(dnode, tsk->port.ref);
808 rc = tipc_msg_build2(mhdr, iov, 0, dsz, mtu, &buf);
809 if (rc < 0)
810 goto exit;
811
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900812 do {
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500813 rc = tipc_link_xmit2(buf, dnode, tsk->port.ref);
814 if (likely(rc >= 0)) {
815 if (sock->state != SS_READY)
Allan Stephens0c3141e2008-04-15 00:22:02 -0700816 sock->state = SS_CONNECTING;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500817 rc = dsz;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700818 break;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900819 }
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500820 if (rc == -EMSGSIZE)
821 goto new_mtu;
822
823 if (rc != -ELINKCONG)
Allan Stephens0c3141e2008-04-15 00:22:02 -0700824 break;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500825
826 rc = tipc_wait_for_sndmsg(sock, &timeo);
Erik Hugne70452dc2014-07-06 20:38:50 -0400827 if (rc)
828 kfree_skb_list(buf);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500829 } while (!rc);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700830exit:
831 if (iocb)
832 release_sock(sk);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500833
834 return rc;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100835}
836
Ying Xue391a6dd2014-01-17 09:50:06 +0800837static int tipc_wait_for_sndpkt(struct socket *sock, long *timeo_p)
838{
839 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400840 struct tipc_sock *tsk = tipc_sk(sk);
Ying Xue391a6dd2014-01-17 09:50:06 +0800841 DEFINE_WAIT(wait);
842 int done;
843
844 do {
845 int err = sock_error(sk);
846 if (err)
847 return err;
848 if (sock->state == SS_DISCONNECTING)
849 return -EPIPE;
850 else if (sock->state != SS_CONNECTED)
851 return -ENOTCONN;
852 if (!*timeo_p)
853 return -EAGAIN;
854 if (signal_pending(current))
855 return sock_intr_errno(*timeo_p);
856
857 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
858 done = sk_wait_event(sk, timeo_p,
Jon Paul Maloy60120522014-06-25 20:41:42 -0500859 (!tsk->link_cong &&
860 !tipc_sk_conn_cong(tsk)) ||
861 !tsk->port.connected);
Ying Xue391a6dd2014-01-17 09:50:06 +0800862 finish_wait(sk_sleep(sk), &wait);
863 } while (!done);
864 return 0;
865}
866
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900867/**
Ying Xue247f0f32014-02-18 16:06:46 +0800868 * tipc_send_stream - send stream-oriented data
Per Lidenb97bf3f2006-01-02 19:04:38 +0100869 * @iocb: (unused)
870 * @sock: socket structure
871 * @m: data to send
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500872 * @dsz: total length of data to be transmitted
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900873 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100874 * Used for SOCK_STREAM data.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900875 *
876 * Returns the number of bytes sent on success (or partial success),
Allan Stephens1303e8f2006-06-25 23:46:50 -0700877 * or errno if no data sent
Per Lidenb97bf3f2006-01-02 19:04:38 +0100878 */
Ying Xue247f0f32014-02-18 16:06:46 +0800879static int tipc_send_stream(struct kiocb *iocb, struct socket *sock,
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500880 struct msghdr *m, size_t dsz)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100881{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700882 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400883 struct tipc_sock *tsk = tipc_sk(sk);
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500884 struct tipc_port *port = &tsk->port;
885 struct tipc_msg *mhdr = &port->phdr;
886 struct sk_buff *buf;
887 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
888 u32 ref = port->ref;
889 int rc = -EINVAL;
890 long timeo;
891 u32 dnode;
892 uint mtu, send, sent = 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900893
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500894 /* Handle implied connection establishment */
895 if (unlikely(dest)) {
896 rc = tipc_sendmsg(iocb, sock, m, dsz);
897 if (dsz && (dsz == rc))
Jon Paul Maloy60120522014-06-25 20:41:42 -0500898 tsk->sent_unacked = 1;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500899 return rc;
900 }
901 if (dsz > (uint)INT_MAX)
902 return -EMSGSIZE;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700903
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500904 if (iocb)
905 lock_sock(sk);
906
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900907 if (unlikely(sock->state != SS_CONNECTED)) {
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500908 if (sock->state == SS_DISCONNECTING)
909 rc = -EPIPE;
wangweidongb0555972013-12-27 10:09:39 +0800910 else
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500911 rc = -ENOTCONN;
wangweidong3b8401f2013-12-12 09:36:40 +0800912 goto exit;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900913 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100914
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500915 timeo = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT);
916 dnode = tipc_port_peernode(port);
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500917
918next:
919 mtu = port->max_pkt;
920 send = min_t(uint, dsz - sent, TIPC_MAX_USER_MSG_SIZE);
921 rc = tipc_msg_build2(mhdr, m->msg_iov, sent, send, mtu, &buf);
922 if (unlikely(rc < 0))
Allan Stephens0c3141e2008-04-15 00:22:02 -0700923 goto exit;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500924 do {
Jon Paul Maloy60120522014-06-25 20:41:42 -0500925 if (likely(!tipc_sk_conn_cong(tsk))) {
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500926 rc = tipc_link_xmit2(buf, dnode, ref);
927 if (likely(!rc)) {
Jon Paul Maloy60120522014-06-25 20:41:42 -0500928 tsk->sent_unacked++;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500929 sent += send;
930 if (sent == dsz)
931 break;
932 goto next;
Allan Stephens1303e8f2006-06-25 23:46:50 -0700933 }
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500934 if (rc == -EMSGSIZE) {
935 port->max_pkt = tipc_node_get_mtu(dnode, ref);
936 goto next;
937 }
938 if (rc != -ELINKCONG)
939 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100940 }
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500941 rc = tipc_wait_for_sndpkt(sock, &timeo);
Erik Hugne70452dc2014-07-06 20:38:50 -0400942 if (rc)
943 kfree_skb_list(buf);
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500944 } while (!rc);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700945exit:
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500946 if (iocb)
947 release_sock(sk);
948 return sent ? sent : rc;
949}
950
951/**
952 * tipc_send_packet - send a connection-oriented message
953 * @iocb: if NULL, indicates that socket lock is already held
954 * @sock: socket structure
955 * @m: message to send
956 * @dsz: length of data to be transmitted
957 *
958 * Used for SOCK_SEQPACKET messages.
959 *
960 * Returns the number of bytes sent on success, or errno otherwise
961 */
962static int tipc_send_packet(struct kiocb *iocb, struct socket *sock,
963 struct msghdr *m, size_t dsz)
964{
965 if (dsz > TIPC_MAX_USER_MSG_SIZE)
966 return -EMSGSIZE;
967
968 return tipc_send_stream(iocb, sock, m, dsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100969}
970
971/**
972 * auto_connect - complete connection setup to a remote port
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400973 * @tsk: tipc socket structure
Per Lidenb97bf3f2006-01-02 19:04:38 +0100974 * @msg: peer's response message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900975 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100976 * Returns 0 on success, errno otherwise
977 */
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400978static int auto_connect(struct tipc_sock *tsk, struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100979{
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400980 struct tipc_port *port = &tsk->port;
981 struct socket *sock = tsk->sk.sk_socket;
Jon Paul Maloyf9fef182014-03-12 11:31:08 -0400982 struct tipc_portid peer;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100983
Jon Paul Maloyf9fef182014-03-12 11:31:08 -0400984 peer.ref = msg_origport(msg);
985 peer.node = msg_orignode(msg);
986
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400987 __tipc_port_connect(port->ref, port, &peer);
Ying Xue584d24b2012-11-29 18:51:19 -0500988
989 if (msg_importance(msg) > TIPC_CRITICAL_IMPORTANCE)
990 return -EINVAL;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400991 msg_set_importance(&port->phdr, (u32)msg_importance(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100992 sock->state = SS_CONNECTED;
993 return 0;
994}
995
996/**
997 * set_orig_addr - capture sender's address for received message
998 * @m: descriptor for message info
999 * @msg: received message header
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001000 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001001 * Note: Address is not captured if not requested by receiver.
1002 */
Sam Ravnborg05790c62006-03-20 22:37:04 -08001003static void set_orig_addr(struct msghdr *m, struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001004{
Steffen Hurrle342dfc32014-01-17 22:53:15 +01001005 DECLARE_SOCKADDR(struct sockaddr_tipc *, addr, m->msg_name);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001006
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001007 if (addr) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001008 addr->family = AF_TIPC;
1009 addr->addrtype = TIPC_ADDR_ID;
Mathias Krause60085c32013-04-07 01:52:00 +00001010 memset(&addr->addr, 0, sizeof(addr->addr));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001011 addr->addr.id.ref = msg_origport(msg);
1012 addr->addr.id.node = msg_orignode(msg);
Allan Stephens0e659672010-12-31 18:59:32 +00001013 addr->addr.name.domain = 0; /* could leave uninitialized */
1014 addr->scope = 0; /* could leave uninitialized */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001015 m->msg_namelen = sizeof(struct sockaddr_tipc);
1016 }
1017}
1018
1019/**
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001020 * anc_data_recv - optionally capture ancillary data for received message
Per Lidenb97bf3f2006-01-02 19:04:38 +01001021 * @m: descriptor for message info
1022 * @msg: received message header
1023 * @tport: TIPC port associated with message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001024 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001025 * Note: Ancillary data is not captured if not requested by receiver.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001026 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001027 * Returns 0 if successful, otherwise errno
1028 */
Sam Ravnborg05790c62006-03-20 22:37:04 -08001029static int anc_data_recv(struct msghdr *m, struct tipc_msg *msg,
Paul Gortmakerae8509c2013-06-17 10:54:47 -04001030 struct tipc_port *tport)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001031{
1032 u32 anc_data[3];
1033 u32 err;
1034 u32 dest_type;
Allan Stephens3546c752006-06-25 23:45:24 -07001035 int has_name;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001036 int res;
1037
1038 if (likely(m->msg_controllen == 0))
1039 return 0;
1040
1041 /* Optionally capture errored message object(s) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001042 err = msg ? msg_errcode(msg) : 0;
1043 if (unlikely(err)) {
1044 anc_data[0] = err;
1045 anc_data[1] = msg_data_sz(msg);
Allan Stephens2db99832010-12-31 18:59:33 +00001046 res = put_cmsg(m, SOL_TIPC, TIPC_ERRINFO, 8, anc_data);
1047 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001048 return res;
Allan Stephens2db99832010-12-31 18:59:33 +00001049 if (anc_data[1]) {
1050 res = put_cmsg(m, SOL_TIPC, TIPC_RETDATA, anc_data[1],
1051 msg_data(msg));
1052 if (res)
1053 return res;
1054 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001055 }
1056
1057 /* Optionally capture message destination object */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001058 dest_type = msg ? msg_type(msg) : TIPC_DIRECT_MSG;
1059 switch (dest_type) {
1060 case TIPC_NAMED_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -07001061 has_name = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001062 anc_data[0] = msg_nametype(msg);
1063 anc_data[1] = msg_namelower(msg);
1064 anc_data[2] = msg_namelower(msg);
1065 break;
1066 case TIPC_MCAST_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -07001067 has_name = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001068 anc_data[0] = msg_nametype(msg);
1069 anc_data[1] = msg_namelower(msg);
1070 anc_data[2] = msg_nameupper(msg);
1071 break;
1072 case TIPC_CONN_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -07001073 has_name = (tport->conn_type != 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001074 anc_data[0] = tport->conn_type;
1075 anc_data[1] = tport->conn_instance;
1076 anc_data[2] = tport->conn_instance;
1077 break;
1078 default:
Allan Stephens3546c752006-06-25 23:45:24 -07001079 has_name = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001080 }
Allan Stephens2db99832010-12-31 18:59:33 +00001081 if (has_name) {
1082 res = put_cmsg(m, SOL_TIPC, TIPC_DESTNAME, 12, anc_data);
1083 if (res)
1084 return res;
1085 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001086
1087 return 0;
1088}
1089
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001090static int tipc_wait_for_rcvmsg(struct socket *sock, long *timeop)
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001091{
1092 struct sock *sk = sock->sk;
1093 DEFINE_WAIT(wait);
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001094 long timeo = *timeop;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001095 int err;
1096
1097 for (;;) {
1098 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Ying Xuefe8e4642014-03-06 14:40:18 +01001099 if (timeo && skb_queue_empty(&sk->sk_receive_queue)) {
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001100 if (sock->state == SS_DISCONNECTING) {
1101 err = -ENOTCONN;
1102 break;
1103 }
1104 release_sock(sk);
1105 timeo = schedule_timeout(timeo);
1106 lock_sock(sk);
1107 }
1108 err = 0;
1109 if (!skb_queue_empty(&sk->sk_receive_queue))
1110 break;
1111 err = sock_intr_errno(timeo);
1112 if (signal_pending(current))
1113 break;
1114 err = -EAGAIN;
1115 if (!timeo)
1116 break;
1117 }
1118 finish_wait(sk_sleep(sk), &wait);
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001119 *timeop = timeo;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001120 return err;
1121}
1122
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001123/**
Ying Xue247f0f32014-02-18 16:06:46 +08001124 * tipc_recvmsg - receive packet-oriented message
Per Lidenb97bf3f2006-01-02 19:04:38 +01001125 * @iocb: (unused)
1126 * @m: descriptor for message info
1127 * @buf_len: total size of user buffer area
1128 * @flags: receive flags
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001129 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001130 * Used for SOCK_DGRAM, SOCK_RDM, and SOCK_SEQPACKET messages.
1131 * If the complete message doesn't fit in user area, truncate it.
1132 *
1133 * Returns size of returned message data, errno otherwise
1134 */
Ying Xue247f0f32014-02-18 16:06:46 +08001135static int tipc_recvmsg(struct kiocb *iocb, struct socket *sock,
1136 struct msghdr *m, size_t buf_len, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001137{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001138 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001139 struct tipc_sock *tsk = tipc_sk(sk);
1140 struct tipc_port *port = &tsk->port;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001141 struct sk_buff *buf;
1142 struct tipc_msg *msg;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001143 long timeo;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001144 unsigned int sz;
1145 u32 err;
1146 int res;
1147
Allan Stephens0c3141e2008-04-15 00:22:02 -07001148 /* Catch invalid receive requests */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001149 if (unlikely(!buf_len))
1150 return -EINVAL;
1151
Allan Stephens0c3141e2008-04-15 00:22:02 -07001152 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001153
Allan Stephens0c3141e2008-04-15 00:22:02 -07001154 if (unlikely(sock->state == SS_UNCONNECTED)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001155 res = -ENOTCONN;
1156 goto exit;
1157 }
1158
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001159 timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001160restart:
Per Lidenb97bf3f2006-01-02 19:04:38 +01001161
Allan Stephens0c3141e2008-04-15 00:22:02 -07001162 /* Look for a message in receive queue; wait if necessary */
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001163 res = tipc_wait_for_rcvmsg(sock, &timeo);
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001164 if (res)
1165 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001166
1167 /* Look at first message in receive queue */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001168 buf = skb_peek(&sk->sk_receive_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001169 msg = buf_msg(buf);
1170 sz = msg_data_sz(msg);
1171 err = msg_errcode(msg);
1172
Per Lidenb97bf3f2006-01-02 19:04:38 +01001173 /* Discard an empty non-errored message & try again */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001174 if ((!sz) && (!err)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07001175 advance_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001176 goto restart;
1177 }
1178
1179 /* Capture sender's address (optional) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001180 set_orig_addr(m, msg);
1181
1182 /* Capture ancillary data (optional) */
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001183 res = anc_data_recv(m, msg, port);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001184 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001185 goto exit;
1186
1187 /* Capture message data (if valid) & compute return value (always) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001188 if (!err) {
1189 if (unlikely(buf_len < sz)) {
1190 sz = buf_len;
1191 m->msg_flags |= MSG_TRUNC;
1192 }
Allan Stephens0232fd02011-02-21 09:45:40 -05001193 res = skb_copy_datagram_iovec(buf, msg_hdr_sz(msg),
1194 m->msg_iov, sz);
1195 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001196 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001197 res = sz;
1198 } else {
1199 if ((sock->state == SS_READY) ||
1200 ((err == TIPC_CONN_SHUTDOWN) || m->msg_control))
1201 res = 0;
1202 else
1203 res = -ECONNRESET;
1204 }
1205
1206 /* Consume received message (optional) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001207 if (likely(!(flags & MSG_PEEK))) {
Allan Stephens99009802008-04-15 00:06:12 -07001208 if ((sock->state != SS_READY) &&
Jon Paul Maloy60120522014-06-25 20:41:42 -05001209 (++tsk->rcv_unacked >= TIPC_CONNACK_INTV)) {
1210 tipc_acknowledge(port->ref, tsk->rcv_unacked);
1211 tsk->rcv_unacked = 0;
1212 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001213 advance_rx_queue(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001214 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001215exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001216 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001217 return res;
1218}
1219
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001220/**
Ying Xue247f0f32014-02-18 16:06:46 +08001221 * tipc_recv_stream - receive stream-oriented data
Per Lidenb97bf3f2006-01-02 19:04:38 +01001222 * @iocb: (unused)
1223 * @m: descriptor for message info
1224 * @buf_len: total size of user buffer area
1225 * @flags: receive flags
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001226 *
1227 * Used for SOCK_STREAM messages only. If not enough data is available
Per Lidenb97bf3f2006-01-02 19:04:38 +01001228 * will optionally wait for more; never truncates data.
1229 *
1230 * Returns size of returned message data, errno otherwise
1231 */
Ying Xue247f0f32014-02-18 16:06:46 +08001232static int tipc_recv_stream(struct kiocb *iocb, struct socket *sock,
1233 struct msghdr *m, size_t buf_len, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001234{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001235 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001236 struct tipc_sock *tsk = tipc_sk(sk);
1237 struct tipc_port *port = &tsk->port;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001238 struct sk_buff *buf;
1239 struct tipc_msg *msg;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001240 long timeo;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001241 unsigned int sz;
Florian Westphal3720d402010-08-17 11:00:04 +00001242 int sz_to_copy, target, needed;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001243 int sz_copied = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001244 u32 err;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001245 int res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001246
1247 /* Catch invalid receive attempts */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001248 if (unlikely(!buf_len))
1249 return -EINVAL;
1250
Allan Stephens0c3141e2008-04-15 00:22:02 -07001251 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001252
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001253 if (unlikely(sock->state == SS_UNCONNECTED)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001254 res = -ENOTCONN;
1255 goto exit;
1256 }
1257
Florian Westphal3720d402010-08-17 11:00:04 +00001258 target = sock_rcvlowat(sk, flags & MSG_WAITALL, buf_len);
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001259 timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001260
Allan Stephens0c3141e2008-04-15 00:22:02 -07001261restart:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001262 /* Look for a message in receive queue; wait if necessary */
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001263 res = tipc_wait_for_rcvmsg(sock, &timeo);
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001264 if (res)
1265 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001266
1267 /* Look at first message in receive queue */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001268 buf = skb_peek(&sk->sk_receive_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001269 msg = buf_msg(buf);
1270 sz = msg_data_sz(msg);
1271 err = msg_errcode(msg);
1272
1273 /* Discard an empty non-errored message & try again */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001274 if ((!sz) && (!err)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07001275 advance_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001276 goto restart;
1277 }
1278
1279 /* Optionally capture sender's address & ancillary data of first msg */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001280 if (sz_copied == 0) {
1281 set_orig_addr(m, msg);
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001282 res = anc_data_recv(m, msg, port);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001283 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001284 goto exit;
1285 }
1286
1287 /* Capture message data (if valid) & compute return value (always) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001288 if (!err) {
Allan Stephens0232fd02011-02-21 09:45:40 -05001289 u32 offset = (u32)(unsigned long)(TIPC_SKB_CB(buf)->handle);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001290
Allan Stephens0232fd02011-02-21 09:45:40 -05001291 sz -= offset;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001292 needed = (buf_len - sz_copied);
1293 sz_to_copy = (sz <= needed) ? sz : needed;
Allan Stephens0232fd02011-02-21 09:45:40 -05001294
1295 res = skb_copy_datagram_iovec(buf, msg_hdr_sz(msg) + offset,
1296 m->msg_iov, sz_to_copy);
1297 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001298 goto exit;
Allan Stephens0232fd02011-02-21 09:45:40 -05001299
Per Lidenb97bf3f2006-01-02 19:04:38 +01001300 sz_copied += sz_to_copy;
1301
1302 if (sz_to_copy < sz) {
1303 if (!(flags & MSG_PEEK))
Allan Stephens0232fd02011-02-21 09:45:40 -05001304 TIPC_SKB_CB(buf)->handle =
1305 (void *)(unsigned long)(offset + sz_to_copy);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001306 goto exit;
1307 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001308 } else {
1309 if (sz_copied != 0)
1310 goto exit; /* can't add error msg to valid data */
1311
1312 if ((err == TIPC_CONN_SHUTDOWN) || m->msg_control)
1313 res = 0;
1314 else
1315 res = -ECONNRESET;
1316 }
1317
1318 /* Consume received message (optional) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001319 if (likely(!(flags & MSG_PEEK))) {
Jon Paul Maloy60120522014-06-25 20:41:42 -05001320 if (unlikely(++tsk->rcv_unacked >= TIPC_CONNACK_INTV)) {
1321 tipc_acknowledge(port->ref, tsk->rcv_unacked);
1322 tsk->rcv_unacked = 0;
1323 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001324 advance_rx_queue(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001325 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001326
1327 /* Loop around if more data is required */
Joe Perchesf64f9e72009-11-29 16:55:45 -08001328 if ((sz_copied < buf_len) && /* didn't get all requested data */
1329 (!skb_queue_empty(&sk->sk_receive_queue) ||
Florian Westphal3720d402010-08-17 11:00:04 +00001330 (sz_copied < target)) && /* and more is ready or required */
Joe Perchesf64f9e72009-11-29 16:55:45 -08001331 (!(flags & MSG_PEEK)) && /* and aren't just peeking at data */
1332 (!err)) /* and haven't reached a FIN */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001333 goto restart;
1334
1335exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001336 release_sock(sk);
Allan Stephensa3b0a5a2006-06-25 23:48:22 -07001337 return sz_copied ? sz_copied : res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001338}
1339
1340/**
Ying Xuef288bef2012-08-21 11:16:57 +08001341 * tipc_write_space - wake up thread if port congestion is released
1342 * @sk: socket
1343 */
1344static void tipc_write_space(struct sock *sk)
1345{
1346 struct socket_wq *wq;
1347
1348 rcu_read_lock();
1349 wq = rcu_dereference(sk->sk_wq);
1350 if (wq_has_sleeper(wq))
1351 wake_up_interruptible_sync_poll(&wq->wait, POLLOUT |
1352 POLLWRNORM | POLLWRBAND);
1353 rcu_read_unlock();
1354}
1355
1356/**
1357 * tipc_data_ready - wake up threads to indicate messages have been received
1358 * @sk: socket
1359 * @len: the length of messages
1360 */
David S. Miller676d2362014-04-11 16:15:36 -04001361static void tipc_data_ready(struct sock *sk)
Ying Xuef288bef2012-08-21 11:16:57 +08001362{
1363 struct socket_wq *wq;
1364
1365 rcu_read_lock();
1366 wq = rcu_dereference(sk->sk_wq);
1367 if (wq_has_sleeper(wq))
1368 wake_up_interruptible_sync_poll(&wq->wait, POLLIN |
1369 POLLRDNORM | POLLRDBAND);
1370 rcu_read_unlock();
1371}
1372
1373/**
Ying Xue7e6c1312012-11-29 18:39:14 -05001374 * filter_connect - Handle all incoming messages for a connection-based socket
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001375 * @tsk: TIPC socket
Ying Xue7e6c1312012-11-29 18:39:14 -05001376 * @msg: message
1377 *
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001378 * Returns 0 (TIPC_OK) if everyting ok, -TIPC_ERR_NO_PORT otherwise
Ying Xue7e6c1312012-11-29 18:39:14 -05001379 */
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001380static int filter_connect(struct tipc_sock *tsk, struct sk_buff **buf)
Ying Xue7e6c1312012-11-29 18:39:14 -05001381{
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001382 struct sock *sk = &tsk->sk;
1383 struct tipc_port *port = &tsk->port;
Jon Paul Maloy8826cde2014-03-12 11:31:09 -04001384 struct socket *sock = sk->sk_socket;
Ying Xue7e6c1312012-11-29 18:39:14 -05001385 struct tipc_msg *msg = buf_msg(*buf);
Jon Paul Maloy8826cde2014-03-12 11:31:09 -04001386
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001387 int retval = -TIPC_ERR_NO_PORT;
Ying Xue584d24b2012-11-29 18:51:19 -05001388 int res;
Ying Xue7e6c1312012-11-29 18:39:14 -05001389
1390 if (msg_mcast(msg))
1391 return retval;
1392
1393 switch ((int)sock->state) {
1394 case SS_CONNECTED:
1395 /* Accept only connection-based messages sent by peer */
Jon Paul Maloy8826cde2014-03-12 11:31:09 -04001396 if (msg_connected(msg) && tipc_port_peer_msg(port, msg)) {
Ying Xue7e6c1312012-11-29 18:39:14 -05001397 if (unlikely(msg_errcode(msg))) {
1398 sock->state = SS_DISCONNECTING;
Jon Paul Maloy8826cde2014-03-12 11:31:09 -04001399 __tipc_port_disconnect(port);
Ying Xue7e6c1312012-11-29 18:39:14 -05001400 }
1401 retval = TIPC_OK;
1402 }
1403 break;
1404 case SS_CONNECTING:
1405 /* Accept only ACK or NACK message */
Ying Xue584d24b2012-11-29 18:51:19 -05001406 if (unlikely(msg_errcode(msg))) {
1407 sock->state = SS_DISCONNECTING;
Erik Hugne2c8d8512013-08-28 09:29:58 +02001408 sk->sk_err = ECONNREFUSED;
Ying Xue7e6c1312012-11-29 18:39:14 -05001409 retval = TIPC_OK;
Ying Xue584d24b2012-11-29 18:51:19 -05001410 break;
1411 }
1412
1413 if (unlikely(!msg_connected(msg)))
1414 break;
1415
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001416 res = auto_connect(tsk, msg);
Ying Xue584d24b2012-11-29 18:51:19 -05001417 if (res) {
1418 sock->state = SS_DISCONNECTING;
Erik Hugne2c8d8512013-08-28 09:29:58 +02001419 sk->sk_err = -res;
Ying Xue584d24b2012-11-29 18:51:19 -05001420 retval = TIPC_OK;
1421 break;
1422 }
1423
1424 /* If an incoming message is an 'ACK-', it should be
1425 * discarded here because it doesn't contain useful
1426 * data. In addition, we should try to wake up
1427 * connect() routine if sleeping.
1428 */
1429 if (msg_data_sz(msg) == 0) {
1430 kfree_skb(*buf);
1431 *buf = NULL;
1432 if (waitqueue_active(sk_sleep(sk)))
1433 wake_up_interruptible(sk_sleep(sk));
1434 }
1435 retval = TIPC_OK;
Ying Xue7e6c1312012-11-29 18:39:14 -05001436 break;
1437 case SS_LISTENING:
1438 case SS_UNCONNECTED:
1439 /* Accept only SYN message */
1440 if (!msg_connected(msg) && !(msg_errcode(msg)))
1441 retval = TIPC_OK;
1442 break;
1443 case SS_DISCONNECTING:
1444 break;
1445 default:
1446 pr_err("Unknown socket state %u\n", sock->state);
1447 }
1448 return retval;
1449}
1450
1451/**
Ying Xueaba79f32013-01-20 23:30:09 +01001452 * rcvbuf_limit - get proper overload limit of socket receive queue
1453 * @sk: socket
1454 * @buf: message
1455 *
1456 * For all connection oriented messages, irrespective of importance,
1457 * the default overload value (i.e. 67MB) is set as limit.
1458 *
1459 * For all connectionless messages, by default new queue limits are
1460 * as belows:
1461 *
Ying Xuecc79dd12013-06-17 10:54:37 -04001462 * TIPC_LOW_IMPORTANCE (4 MB)
1463 * TIPC_MEDIUM_IMPORTANCE (8 MB)
1464 * TIPC_HIGH_IMPORTANCE (16 MB)
1465 * TIPC_CRITICAL_IMPORTANCE (32 MB)
Ying Xueaba79f32013-01-20 23:30:09 +01001466 *
1467 * Returns overload limit according to corresponding message importance
1468 */
1469static unsigned int rcvbuf_limit(struct sock *sk, struct sk_buff *buf)
1470{
1471 struct tipc_msg *msg = buf_msg(buf);
Ying Xueaba79f32013-01-20 23:30:09 +01001472
1473 if (msg_connected(msg))
wangweidong0cee6bb2013-12-12 09:36:39 +08001474 return sysctl_tipc_rmem[2];
1475
1476 return sk->sk_rcvbuf >> TIPC_CRITICAL_IMPORTANCE <<
1477 msg_importance(msg);
Ying Xueaba79f32013-01-20 23:30:09 +01001478}
1479
1480/**
Allan Stephens0c3141e2008-04-15 00:22:02 -07001481 * filter_rcv - validate incoming message
1482 * @sk: socket
Per Lidenb97bf3f2006-01-02 19:04:38 +01001483 * @buf: message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001484 *
Allan Stephens0c3141e2008-04-15 00:22:02 -07001485 * Enqueues message on receive queue if acceptable; optionally handles
1486 * disconnect indication for a connected socket.
1487 *
1488 * Called with socket lock already taken; port lock may also be taken.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001489 *
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001490 * Returns 0 (TIPC_OK) if message was consumed, -TIPC error code if message
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001491 * to be rejected, 1 (TIPC_FWD_MSG) if (CONN_MANAGER) message to be forwarded
Per Lidenb97bf3f2006-01-02 19:04:38 +01001492 */
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001493static int filter_rcv(struct sock *sk, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001494{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001495 struct socket *sock = sk->sk_socket;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001496 struct tipc_sock *tsk = tipc_sk(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001497 struct tipc_msg *msg = buf_msg(buf);
Ying Xueaba79f32013-01-20 23:30:09 +01001498 unsigned int limit = rcvbuf_limit(sk, buf);
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001499 u32 onode;
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001500 int rc = TIPC_OK;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001501
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001502 if (unlikely(msg_user(msg) == CONN_MANAGER))
1503 return tipc_sk_proto_rcv(tsk, &onode, buf);
Jon Paul Maloyec8a2e52014-06-25 20:41:40 -05001504
Per Lidenb97bf3f2006-01-02 19:04:38 +01001505 /* Reject message if it is wrong sort of message for socket */
Allan Stephensaad58542012-04-26 18:13:08 -04001506 if (msg_type(msg) > TIPC_DIRECT_MSG)
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001507 return -TIPC_ERR_NO_PORT;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001508
Per Lidenb97bf3f2006-01-02 19:04:38 +01001509 if (sock->state == SS_READY) {
Allan Stephensb29f1422010-12-31 18:59:25 +00001510 if (msg_connected(msg))
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001511 return -TIPC_ERR_NO_PORT;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001512 } else {
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001513 rc = filter_connect(tsk, &buf);
1514 if (rc != TIPC_OK || buf == NULL)
1515 return rc;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001516 }
1517
1518 /* Reject message if there isn't room to queue it */
Ying Xueaba79f32013-01-20 23:30:09 +01001519 if (sk_rmem_alloc_get(sk) + buf->truesize >= limit)
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001520 return -TIPC_ERR_OVERLOAD;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001521
Ying Xueaba79f32013-01-20 23:30:09 +01001522 /* Enqueue message */
Ying Xue40682432013-10-18 07:23:16 +02001523 TIPC_SKB_CB(buf)->handle = NULL;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001524 __skb_queue_tail(&sk->sk_receive_queue, buf);
Ying Xueaba79f32013-01-20 23:30:09 +01001525 skb_set_owner_r(buf, sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001526
David S. Miller676d2362014-04-11 16:15:36 -04001527 sk->sk_data_ready(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001528 return TIPC_OK;
1529}
1530
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001531/**
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -04001532 * tipc_backlog_rcv - handle incoming message from backlog queue
Allan Stephens0c3141e2008-04-15 00:22:02 -07001533 * @sk: socket
1534 * @buf: message
1535 *
1536 * Caller must hold socket lock, but not port lock.
1537 *
1538 * Returns 0
1539 */
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -04001540static int tipc_backlog_rcv(struct sock *sk, struct sk_buff *buf)
Allan Stephens0c3141e2008-04-15 00:22:02 -07001541{
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001542 int rc;
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -05001543 u32 onode;
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -04001544 struct tipc_sock *tsk = tipc_sk(sk);
Jon Paul Maloy02c00c22014-06-09 11:08:18 -05001545 uint truesize = buf->truesize;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001546
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001547 rc = filter_rcv(sk, buf);
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -04001548
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001549 if (likely(!rc)) {
1550 if (atomic_read(&tsk->dupl_rcvcnt) < TIPC_CONN_OVERLOAD_LIMIT)
1551 atomic_add(truesize, &tsk->dupl_rcvcnt);
1552 return 0;
1553 }
1554
1555 if ((rc < 0) && !tipc_msg_reverse(buf, &onode, -rc))
1556 return 0;
1557
1558 tipc_link_xmit2(buf, onode, 0);
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -04001559
Allan Stephens0c3141e2008-04-15 00:22:02 -07001560 return 0;
1561}
1562
1563/**
Jon Paul Maloy24be34b2014-03-12 11:31:10 -04001564 * tipc_sk_rcv - handle incoming message
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001565 * @buf: buffer containing arriving message
1566 * Consumes buffer
1567 * Returns 0 if success, or errno: -EHOSTUNREACH
Allan Stephens0c3141e2008-04-15 00:22:02 -07001568 */
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001569int tipc_sk_rcv(struct sk_buff *buf)
Allan Stephens0c3141e2008-04-15 00:22:02 -07001570{
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001571 struct tipc_sock *tsk;
1572 struct tipc_port *port;
1573 struct sock *sk;
1574 u32 dport = msg_destport(buf_msg(buf));
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001575 int rc = TIPC_OK;
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -04001576 uint limit;
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -05001577 u32 dnode;
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001578
Jon Paul Maloy5a379072014-06-25 20:41:36 -05001579 /* Validate destination and message */
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001580 port = tipc_port_lock(dport);
1581 if (unlikely(!port)) {
Jon Paul Maloy5a379072014-06-25 20:41:36 -05001582 rc = tipc_msg_eval(buf, &dnode);
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001583 goto exit;
1584 }
1585
1586 tsk = tipc_port_to_sock(port);
1587 sk = &tsk->sk;
1588
1589 /* Queue message */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001590 bh_lock_sock(sk);
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001591
Allan Stephens0c3141e2008-04-15 00:22:02 -07001592 if (!sock_owned_by_user(sk)) {
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001593 rc = filter_rcv(sk, buf);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001594 } else {
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -04001595 if (sk->sk_backlog.len == 0)
1596 atomic_set(&tsk->dupl_rcvcnt, 0);
1597 limit = rcvbuf_limit(sk, buf) + atomic_read(&tsk->dupl_rcvcnt);
1598 if (sk_add_backlog(sk, buf, limit))
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001599 rc = -TIPC_ERR_OVERLOAD;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001600 }
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001601 bh_unlock_sock(sk);
1602 tipc_port_unlock(port);
1603
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001604 if (likely(!rc))
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001605 return 0;
1606exit:
Jon Paul Maloy5a379072014-06-25 20:41:36 -05001607 if ((rc < 0) && !tipc_msg_reverse(buf, &dnode, -rc))
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -05001608 return -EHOSTUNREACH;
Jon Paul Maloy5a379072014-06-25 20:41:36 -05001609
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -05001610 tipc_link_xmit2(buf, dnode, 0);
Jon Paul Maloy5a379072014-06-25 20:41:36 -05001611 return (rc < 0) ? -EHOSTUNREACH : 0;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001612}
1613
Ying Xue78eb3a52014-01-17 09:50:03 +08001614static int tipc_wait_for_connect(struct socket *sock, long *timeo_p)
1615{
1616 struct sock *sk = sock->sk;
1617 DEFINE_WAIT(wait);
1618 int done;
1619
1620 do {
1621 int err = sock_error(sk);
1622 if (err)
1623 return err;
1624 if (!*timeo_p)
1625 return -ETIMEDOUT;
1626 if (signal_pending(current))
1627 return sock_intr_errno(*timeo_p);
1628
1629 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
1630 done = sk_wait_event(sk, timeo_p, sock->state != SS_CONNECTING);
1631 finish_wait(sk_sleep(sk), &wait);
1632 } while (!done);
1633 return 0;
1634}
1635
Per Lidenb97bf3f2006-01-02 19:04:38 +01001636/**
Ying Xue247f0f32014-02-18 16:06:46 +08001637 * tipc_connect - establish a connection to another TIPC port
Per Lidenb97bf3f2006-01-02 19:04:38 +01001638 * @sock: socket structure
1639 * @dest: socket address for destination port
1640 * @destlen: size of socket address data structure
Allan Stephens0c3141e2008-04-15 00:22:02 -07001641 * @flags: file-related flags associated with socket
Per Lidenb97bf3f2006-01-02 19:04:38 +01001642 *
1643 * Returns 0 on success, errno otherwise
1644 */
Ying Xue247f0f32014-02-18 16:06:46 +08001645static int tipc_connect(struct socket *sock, struct sockaddr *dest,
1646 int destlen, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001647{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001648 struct sock *sk = sock->sk;
Allan Stephensb89741a2008-04-15 00:20:37 -07001649 struct sockaddr_tipc *dst = (struct sockaddr_tipc *)dest;
1650 struct msghdr m = {NULL,};
Ying Xue78eb3a52014-01-17 09:50:03 +08001651 long timeout = (flags & O_NONBLOCK) ? 0 : tipc_sk(sk)->conn_timeout;
1652 socket_state previous;
Allan Stephensb89741a2008-04-15 00:20:37 -07001653 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001654
Allan Stephens0c3141e2008-04-15 00:22:02 -07001655 lock_sock(sk);
1656
Allan Stephensb89741a2008-04-15 00:20:37 -07001657 /* For now, TIPC does not allow use of connect() with DGRAM/RDM types */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001658 if (sock->state == SS_READY) {
1659 res = -EOPNOTSUPP;
1660 goto exit;
1661 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001662
Allan Stephensb89741a2008-04-15 00:20:37 -07001663 /*
1664 * Reject connection attempt using multicast address
1665 *
1666 * Note: send_msg() validates the rest of the address fields,
1667 * so there's no need to do it here
1668 */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001669 if (dst->addrtype == TIPC_ADDR_MCAST) {
1670 res = -EINVAL;
1671 goto exit;
1672 }
1673
Ying Xue78eb3a52014-01-17 09:50:03 +08001674 previous = sock->state;
Ying Xue584d24b2012-11-29 18:51:19 -05001675 switch (sock->state) {
1676 case SS_UNCONNECTED:
1677 /* Send a 'SYN-' to destination */
1678 m.msg_name = dest;
1679 m.msg_namelen = destlen;
1680
1681 /* If connect is in non-blocking case, set MSG_DONTWAIT to
1682 * indicate send_msg() is never blocked.
1683 */
1684 if (!timeout)
1685 m.msg_flags = MSG_DONTWAIT;
1686
Ying Xue247f0f32014-02-18 16:06:46 +08001687 res = tipc_sendmsg(NULL, sock, &m, 0);
Ying Xue584d24b2012-11-29 18:51:19 -05001688 if ((res < 0) && (res != -EWOULDBLOCK))
1689 goto exit;
1690
1691 /* Just entered SS_CONNECTING state; the only
1692 * difference is that return value in non-blocking
1693 * case is EINPROGRESS, rather than EALREADY.
1694 */
1695 res = -EINPROGRESS;
Ying Xue584d24b2012-11-29 18:51:19 -05001696 case SS_CONNECTING:
Ying Xue78eb3a52014-01-17 09:50:03 +08001697 if (previous == SS_CONNECTING)
1698 res = -EALREADY;
1699 if (!timeout)
1700 goto exit;
1701 timeout = msecs_to_jiffies(timeout);
1702 /* Wait until an 'ACK' or 'RST' arrives, or a timeout occurs */
1703 res = tipc_wait_for_connect(sock, &timeout);
Ying Xue584d24b2012-11-29 18:51:19 -05001704 break;
1705 case SS_CONNECTED:
1706 res = -EISCONN;
1707 break;
1708 default:
1709 res = -EINVAL;
Ying Xue78eb3a52014-01-17 09:50:03 +08001710 break;
Allan Stephensb89741a2008-04-15 00:20:37 -07001711 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001712exit:
1713 release_sock(sk);
Allan Stephensb89741a2008-04-15 00:20:37 -07001714 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001715}
1716
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001717/**
Ying Xue247f0f32014-02-18 16:06:46 +08001718 * tipc_listen - allow socket to listen for incoming connections
Per Lidenb97bf3f2006-01-02 19:04:38 +01001719 * @sock: socket structure
1720 * @len: (unused)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001721 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001722 * Returns 0 on success, errno otherwise
1723 */
Ying Xue247f0f32014-02-18 16:06:46 +08001724static int tipc_listen(struct socket *sock, int len)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001725{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001726 struct sock *sk = sock->sk;
1727 int res;
1728
1729 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001730
Ying Xue245f3d32011-07-06 06:01:13 -04001731 if (sock->state != SS_UNCONNECTED)
Allan Stephens0c3141e2008-04-15 00:22:02 -07001732 res = -EINVAL;
1733 else {
1734 sock->state = SS_LISTENING;
1735 res = 0;
1736 }
1737
1738 release_sock(sk);
1739 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001740}
1741
Ying Xue6398e232014-01-17 09:50:04 +08001742static int tipc_wait_for_accept(struct socket *sock, long timeo)
1743{
1744 struct sock *sk = sock->sk;
1745 DEFINE_WAIT(wait);
1746 int err;
1747
1748 /* True wake-one mechanism for incoming connections: only
1749 * one process gets woken up, not the 'whole herd'.
1750 * Since we do not 'race & poll' for established sockets
1751 * anymore, the common case will execute the loop only once.
1752 */
1753 for (;;) {
1754 prepare_to_wait_exclusive(sk_sleep(sk), &wait,
1755 TASK_INTERRUPTIBLE);
Ying Xuefe8e4642014-03-06 14:40:18 +01001756 if (timeo && skb_queue_empty(&sk->sk_receive_queue)) {
Ying Xue6398e232014-01-17 09:50:04 +08001757 release_sock(sk);
1758 timeo = schedule_timeout(timeo);
1759 lock_sock(sk);
1760 }
1761 err = 0;
1762 if (!skb_queue_empty(&sk->sk_receive_queue))
1763 break;
1764 err = -EINVAL;
1765 if (sock->state != SS_LISTENING)
1766 break;
1767 err = sock_intr_errno(timeo);
1768 if (signal_pending(current))
1769 break;
1770 err = -EAGAIN;
1771 if (!timeo)
1772 break;
1773 }
1774 finish_wait(sk_sleep(sk), &wait);
1775 return err;
1776}
1777
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001778/**
Ying Xue247f0f32014-02-18 16:06:46 +08001779 * tipc_accept - wait for connection request
Per Lidenb97bf3f2006-01-02 19:04:38 +01001780 * @sock: listening socket
1781 * @newsock: new socket that is to be connected
1782 * @flags: file-related flags associated with socket
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001783 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001784 * Returns 0 on success, errno otherwise
1785 */
Ying Xue247f0f32014-02-18 16:06:46 +08001786static int tipc_accept(struct socket *sock, struct socket *new_sock, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001787{
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001788 struct sock *new_sk, *sk = sock->sk;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001789 struct sk_buff *buf;
Jon Paul Maloy8826cde2014-03-12 11:31:09 -04001790 struct tipc_port *new_port;
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001791 struct tipc_msg *msg;
Jon Paul Maloyf9fef182014-03-12 11:31:08 -04001792 struct tipc_portid peer;
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001793 u32 new_ref;
Ying Xue6398e232014-01-17 09:50:04 +08001794 long timeo;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001795 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001796
Allan Stephens0c3141e2008-04-15 00:22:02 -07001797 lock_sock(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001798
Allan Stephens0c3141e2008-04-15 00:22:02 -07001799 if (sock->state != SS_LISTENING) {
1800 res = -EINVAL;
1801 goto exit;
1802 }
Ying Xue6398e232014-01-17 09:50:04 +08001803 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
1804 res = tipc_wait_for_accept(sock, timeo);
1805 if (res)
1806 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001807
1808 buf = skb_peek(&sk->sk_receive_queue);
1809
Ying Xuec5fa7b32013-06-17 10:54:39 -04001810 res = tipc_sk_create(sock_net(sock->sk), new_sock, 0, 1);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001811 if (res)
1812 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001813
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001814 new_sk = new_sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001815 new_port = &tipc_sk(new_sk)->port;
Jon Paul Maloy8826cde2014-03-12 11:31:09 -04001816 new_ref = new_port->ref;
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001817 msg = buf_msg(buf);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001818
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001819 /* we lock on new_sk; but lockdep sees the lock on sk */
1820 lock_sock_nested(new_sk, SINGLE_DEPTH_NESTING);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001821
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001822 /*
1823 * Reject any stray messages received by new socket
1824 * before the socket lock was taken (very, very unlikely)
1825 */
1826 reject_rx_queue(new_sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001827
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001828 /* Connect new socket to it's peer */
Jon Paul Maloyf9fef182014-03-12 11:31:08 -04001829 peer.ref = msg_origport(msg);
1830 peer.node = msg_orignode(msg);
1831 tipc_port_connect(new_ref, &peer);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001832 new_sock->state = SS_CONNECTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001833
Jon Paul Maloy3b4f3022014-03-12 11:31:11 -04001834 tipc_port_set_importance(new_port, msg_importance(msg));
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001835 if (msg_named(msg)) {
Jon Paul Maloy8826cde2014-03-12 11:31:09 -04001836 new_port->conn_type = msg_nametype(msg);
1837 new_port->conn_instance = msg_nameinst(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001838 }
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001839
1840 /*
1841 * Respond to 'SYN-' by discarding it & returning 'ACK'-.
1842 * Respond to 'SYN+' by queuing it on new socket.
1843 */
1844 if (!msg_data_sz(msg)) {
1845 struct msghdr m = {NULL,};
1846
1847 advance_rx_queue(sk);
Ying Xue247f0f32014-02-18 16:06:46 +08001848 tipc_send_packet(NULL, new_sock, &m, 0);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001849 } else {
1850 __skb_dequeue(&sk->sk_receive_queue);
1851 __skb_queue_head(&new_sk->sk_receive_queue, buf);
Ying Xueaba79f32013-01-20 23:30:09 +01001852 skb_set_owner_r(buf, new_sk);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001853 }
1854 release_sock(new_sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001855exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001856 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001857 return res;
1858}
1859
1860/**
Ying Xue247f0f32014-02-18 16:06:46 +08001861 * tipc_shutdown - shutdown socket connection
Per Lidenb97bf3f2006-01-02 19:04:38 +01001862 * @sock: socket structure
Allan Stephense247a8f2008-03-06 15:05:38 -08001863 * @how: direction to close (must be SHUT_RDWR)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001864 *
1865 * Terminates connection (if necessary), then purges socket's receive queue.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001866 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001867 * Returns 0 on success, errno otherwise
1868 */
Ying Xue247f0f32014-02-18 16:06:46 +08001869static int tipc_shutdown(struct socket *sock, int how)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001870{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001871 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001872 struct tipc_sock *tsk = tipc_sk(sk);
1873 struct tipc_port *port = &tsk->port;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001874 struct sk_buff *buf;
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -05001875 u32 peer;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001876 int res;
1877
Allan Stephense247a8f2008-03-06 15:05:38 -08001878 if (how != SHUT_RDWR)
1879 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001880
Allan Stephens0c3141e2008-04-15 00:22:02 -07001881 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001882
1883 switch (sock->state) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07001884 case SS_CONNECTING:
Per Lidenb97bf3f2006-01-02 19:04:38 +01001885 case SS_CONNECTED:
1886
Per Lidenb97bf3f2006-01-02 19:04:38 +01001887restart:
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001888 /* Disconnect and send a 'FIN+' or 'FIN-' message to peer */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001889 buf = __skb_dequeue(&sk->sk_receive_queue);
1890 if (buf) {
Ying Xue40682432013-10-18 07:23:16 +02001891 if (TIPC_SKB_CB(buf)->handle != NULL) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04001892 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001893 goto restart;
1894 }
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001895 tipc_port_disconnect(port->ref);
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -05001896 if (tipc_msg_reverse(buf, &peer, TIPC_CONN_SHUTDOWN))
1897 tipc_link_xmit2(buf, peer, 0);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001898 } else {
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001899 tipc_port_shutdown(port->ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001900 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001901
1902 sock->state = SS_DISCONNECTING;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001903
1904 /* fall through */
1905
1906 case SS_DISCONNECTING:
1907
Ying Xue75031152012-10-29 09:38:15 -04001908 /* Discard any unreceived messages */
Ying Xue57467e52013-01-20 23:30:08 +01001909 __skb_queue_purge(&sk->sk_receive_queue);
Ying Xue75031152012-10-29 09:38:15 -04001910
1911 /* Wake up anyone sleeping in poll */
1912 sk->sk_state_change(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001913 res = 0;
1914 break;
1915
1916 default:
1917 res = -ENOTCONN;
1918 }
1919
Allan Stephens0c3141e2008-04-15 00:22:02 -07001920 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001921 return res;
1922}
1923
1924/**
Ying Xue247f0f32014-02-18 16:06:46 +08001925 * tipc_setsockopt - set socket option
Per Lidenb97bf3f2006-01-02 19:04:38 +01001926 * @sock: socket structure
1927 * @lvl: option level
1928 * @opt: option identifier
1929 * @ov: pointer to new option value
1930 * @ol: length of option value
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001931 *
1932 * For stream sockets only, accepts and ignores all IPPROTO_TCP options
Per Lidenb97bf3f2006-01-02 19:04:38 +01001933 * (to ease compatibility).
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001934 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001935 * Returns 0 on success, errno otherwise
1936 */
Ying Xue247f0f32014-02-18 16:06:46 +08001937static int tipc_setsockopt(struct socket *sock, int lvl, int opt,
1938 char __user *ov, unsigned int ol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001939{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001940 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001941 struct tipc_sock *tsk = tipc_sk(sk);
1942 struct tipc_port *port = &tsk->port;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001943 u32 value;
1944 int res;
1945
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001946 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
1947 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001948 if (lvl != SOL_TIPC)
1949 return -ENOPROTOOPT;
1950 if (ol < sizeof(value))
1951 return -EINVAL;
Allan Stephens2db99832010-12-31 18:59:33 +00001952 res = get_user(value, (u32 __user *)ov);
1953 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001954 return res;
1955
Allan Stephens0c3141e2008-04-15 00:22:02 -07001956 lock_sock(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001957
Per Lidenb97bf3f2006-01-02 19:04:38 +01001958 switch (opt) {
1959 case TIPC_IMPORTANCE:
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001960 tipc_port_set_importance(port, value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001961 break;
1962 case TIPC_SRC_DROPPABLE:
1963 if (sock->type != SOCK_STREAM)
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001964 tipc_port_set_unreliable(port, value);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001965 else
Per Lidenb97bf3f2006-01-02 19:04:38 +01001966 res = -ENOPROTOOPT;
1967 break;
1968 case TIPC_DEST_DROPPABLE:
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001969 tipc_port_set_unreturnable(port, value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001970 break;
1971 case TIPC_CONN_TIMEOUT:
Allan Stephensa0f40f02011-05-26 13:44:34 -04001972 tipc_sk(sk)->conn_timeout = value;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001973 /* no need to set "res", since already 0 at this point */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001974 break;
1975 default:
1976 res = -EINVAL;
1977 }
1978
Allan Stephens0c3141e2008-04-15 00:22:02 -07001979 release_sock(sk);
1980
Per Lidenb97bf3f2006-01-02 19:04:38 +01001981 return res;
1982}
1983
1984/**
Ying Xue247f0f32014-02-18 16:06:46 +08001985 * tipc_getsockopt - get socket option
Per Lidenb97bf3f2006-01-02 19:04:38 +01001986 * @sock: socket structure
1987 * @lvl: option level
1988 * @opt: option identifier
1989 * @ov: receptacle for option value
1990 * @ol: receptacle for length of option value
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001991 *
1992 * For stream sockets only, returns 0 length result for all IPPROTO_TCP options
Per Lidenb97bf3f2006-01-02 19:04:38 +01001993 * (to ease compatibility).
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001994 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001995 * Returns 0 on success, errno otherwise
1996 */
Ying Xue247f0f32014-02-18 16:06:46 +08001997static int tipc_getsockopt(struct socket *sock, int lvl, int opt,
1998 char __user *ov, int __user *ol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001999{
Allan Stephens0c3141e2008-04-15 00:22:02 -07002000 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002001 struct tipc_sock *tsk = tipc_sk(sk);
2002 struct tipc_port *port = &tsk->port;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002003 int len;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002004 u32 value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002005 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002006
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002007 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
2008 return put_user(0, ol);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002009 if (lvl != SOL_TIPC)
2010 return -ENOPROTOOPT;
Allan Stephens2db99832010-12-31 18:59:33 +00002011 res = get_user(len, ol);
2012 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002013 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002014
Allan Stephens0c3141e2008-04-15 00:22:02 -07002015 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002016
2017 switch (opt) {
2018 case TIPC_IMPORTANCE:
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002019 value = tipc_port_importance(port);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002020 break;
2021 case TIPC_SRC_DROPPABLE:
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002022 value = tipc_port_unreliable(port);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002023 break;
2024 case TIPC_DEST_DROPPABLE:
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002025 value = tipc_port_unreturnable(port);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002026 break;
2027 case TIPC_CONN_TIMEOUT:
Allan Stephensa0f40f02011-05-26 13:44:34 -04002028 value = tipc_sk(sk)->conn_timeout;
Allan Stephens0c3141e2008-04-15 00:22:02 -07002029 /* no need to set "res", since already 0 at this point */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002030 break;
Allan Stephens0e659672010-12-31 18:59:32 +00002031 case TIPC_NODE_RECVQ_DEPTH:
Ying Xue9da3d472012-11-27 06:15:27 -05002032 value = 0; /* was tipc_queue_size, now obsolete */
oscar.medina@motorola.com66506132009-06-30 03:25:39 +00002033 break;
Allan Stephens0e659672010-12-31 18:59:32 +00002034 case TIPC_SOCK_RECVQ_DEPTH:
oscar.medina@motorola.com66506132009-06-30 03:25:39 +00002035 value = skb_queue_len(&sk->sk_receive_queue);
2036 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002037 default:
2038 res = -EINVAL;
2039 }
2040
Allan Stephens0c3141e2008-04-15 00:22:02 -07002041 release_sock(sk);
2042
Paul Gortmaker25860c32010-12-31 18:59:31 +00002043 if (res)
2044 return res; /* "get" failed */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002045
Paul Gortmaker25860c32010-12-31 18:59:31 +00002046 if (len < sizeof(value))
2047 return -EINVAL;
2048
2049 if (copy_to_user(ov, &value, sizeof(value)))
2050 return -EFAULT;
2051
2052 return put_user(sizeof(value), ol);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002053}
2054
Erik Hugne78acb1f2014-04-24 16:26:47 +02002055int tipc_ioctl(struct socket *sk, unsigned int cmd, unsigned long arg)
2056{
2057 struct tipc_sioc_ln_req lnr;
2058 void __user *argp = (void __user *)arg;
2059
2060 switch (cmd) {
2061 case SIOCGETLINKNAME:
2062 if (copy_from_user(&lnr, argp, sizeof(lnr)))
2063 return -EFAULT;
2064 if (!tipc_node_get_linkname(lnr.bearer_id, lnr.peer,
2065 lnr.linkname, TIPC_MAX_LINK_NAME)) {
2066 if (copy_to_user(argp, &lnr, sizeof(lnr)))
2067 return -EFAULT;
2068 return 0;
2069 }
2070 return -EADDRNOTAVAIL;
Erik Hugne78acb1f2014-04-24 16:26:47 +02002071 default:
2072 return -ENOIOCTLCMD;
2073 }
2074}
2075
Ben Hutchingsae86b9e2012-07-10 10:55:35 +00002076/* Protocol switches for the various types of TIPC sockets */
2077
Florian Westphalbca65ea2008-02-07 18:18:01 -08002078static const struct proto_ops msg_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 Xue245f3d32011-07-06 06:01:13 -04002085 .accept = sock_no_accept,
Ying Xue247f0f32014-02-18 16:06:46 +08002086 .getname = tipc_getname,
2087 .poll = tipc_poll,
Erik Hugne78acb1f2014-04-24 16:26:47 +02002088 .ioctl = tipc_ioctl,
Ying Xue245f3d32011-07-06 06:01:13 -04002089 .listen = sock_no_listen,
Ying Xue247f0f32014-02-18 16:06:46 +08002090 .shutdown = tipc_shutdown,
2091 .setsockopt = tipc_setsockopt,
2092 .getsockopt = tipc_getsockopt,
2093 .sendmsg = tipc_sendmsg,
2094 .recvmsg = tipc_recvmsg,
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 proto_ops packet_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00002100 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002101 .family = AF_TIPC,
Ying Xue247f0f32014-02-18 16:06:46 +08002102 .release = tipc_release,
2103 .bind = tipc_bind,
2104 .connect = tipc_connect,
Allan Stephens5eee6a62007-06-10 17:24:55 -07002105 .socketpair = sock_no_socketpair,
Ying Xue247f0f32014-02-18 16:06:46 +08002106 .accept = tipc_accept,
2107 .getname = tipc_getname,
2108 .poll = tipc_poll,
Erik Hugne78acb1f2014-04-24 16:26:47 +02002109 .ioctl = tipc_ioctl,
Ying Xue247f0f32014-02-18 16:06:46 +08002110 .listen = tipc_listen,
2111 .shutdown = tipc_shutdown,
2112 .setsockopt = tipc_setsockopt,
2113 .getsockopt = tipc_getsockopt,
2114 .sendmsg = tipc_send_packet,
2115 .recvmsg = tipc_recvmsg,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09002116 .mmap = sock_no_mmap,
2117 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01002118};
2119
Florian Westphalbca65ea2008-02-07 18:18:01 -08002120static const struct proto_ops stream_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00002121 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002122 .family = AF_TIPC,
Ying Xue247f0f32014-02-18 16:06:46 +08002123 .release = tipc_release,
2124 .bind = tipc_bind,
2125 .connect = tipc_connect,
Allan Stephens5eee6a62007-06-10 17:24:55 -07002126 .socketpair = sock_no_socketpair,
Ying Xue247f0f32014-02-18 16:06:46 +08002127 .accept = tipc_accept,
2128 .getname = tipc_getname,
2129 .poll = tipc_poll,
Erik Hugne78acb1f2014-04-24 16:26:47 +02002130 .ioctl = tipc_ioctl,
Ying Xue247f0f32014-02-18 16:06:46 +08002131 .listen = tipc_listen,
2132 .shutdown = tipc_shutdown,
2133 .setsockopt = tipc_setsockopt,
2134 .getsockopt = tipc_getsockopt,
2135 .sendmsg = tipc_send_stream,
2136 .recvmsg = tipc_recv_stream,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09002137 .mmap = sock_no_mmap,
2138 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01002139};
2140
Florian Westphalbca65ea2008-02-07 18:18:01 -08002141static const struct net_proto_family tipc_family_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00002142 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002143 .family = AF_TIPC,
Ying Xuec5fa7b32013-06-17 10:54:39 -04002144 .create = tipc_sk_create
Per Lidenb97bf3f2006-01-02 19:04:38 +01002145};
2146
2147static struct proto tipc_proto = {
2148 .name = "TIPC",
2149 .owner = THIS_MODULE,
Ying Xuecc79dd12013-06-17 10:54:37 -04002150 .obj_size = sizeof(struct tipc_sock),
2151 .sysctl_rmem = sysctl_tipc_rmem
Per Lidenb97bf3f2006-01-02 19:04:38 +01002152};
2153
Ying Xuec5fa7b32013-06-17 10:54:39 -04002154static struct proto tipc_proto_kern = {
2155 .name = "TIPC",
2156 .obj_size = sizeof(struct tipc_sock),
2157 .sysctl_rmem = sysctl_tipc_rmem
2158};
2159
Per Lidenb97bf3f2006-01-02 19:04:38 +01002160/**
Per Liden4323add2006-01-18 00:38:21 +01002161 * tipc_socket_init - initialize TIPC socket interface
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002162 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002163 * Returns 0 on success, errno otherwise
2164 */
Per Liden4323add2006-01-18 00:38:21 +01002165int tipc_socket_init(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002166{
2167 int res;
2168
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002169 res = proto_register(&tipc_proto, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002170 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002171 pr_err("Failed to register TIPC protocol type\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002172 goto out;
2173 }
2174
2175 res = sock_register(&tipc_family_ops);
2176 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002177 pr_err("Failed to register TIPC socket type\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002178 proto_unregister(&tipc_proto);
2179 goto out;
2180 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002181 out:
2182 return res;
2183}
2184
2185/**
Per Liden4323add2006-01-18 00:38:21 +01002186 * tipc_socket_stop - stop TIPC socket interface
Per Lidenb97bf3f2006-01-02 19:04:38 +01002187 */
Per Liden4323add2006-01-18 00:38:21 +01002188void tipc_socket_stop(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002189{
Per Lidenb97bf3f2006-01-02 19:04:38 +01002190 sock_unregister(tipc_family_ops.family);
2191 proto_unregister(&tipc_proto);
2192}