blob: 8477d08a6aa0fd3cc55b22a3456d9126ea58d4b2 [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);
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -040056static int tipc_wait_for_sndmsg(struct socket *sock, long *timeo_p);
Per Lidenb97bf3f2006-01-02 19:04:38 +010057
Florian Westphalbca65ea2008-02-07 18:18:01 -080058static const struct proto_ops packet_ops;
59static const struct proto_ops stream_ops;
60static const struct proto_ops msg_ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +010061
62static struct proto tipc_proto;
Ying Xuec5fa7b32013-06-17 10:54:39 -040063static struct proto tipc_proto_kern;
Per Lidenb97bf3f2006-01-02 19:04:38 +010064
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090065/*
Allan Stephens0c3141e2008-04-15 00:22:02 -070066 * Revised TIPC socket locking policy:
67 *
68 * Most socket operations take the standard socket lock when they start
69 * and hold it until they finish (or until they need to sleep). Acquiring
70 * this lock grants the owner exclusive access to the fields of the socket
71 * data structures, with the exception of the backlog queue. A few socket
72 * operations can be done without taking the socket lock because they only
73 * read socket information that never changes during the life of the socket.
74 *
75 * Socket operations may acquire the lock for the associated TIPC port if they
76 * need to perform an operation on the port. If any routine needs to acquire
77 * both the socket lock and the port lock it must take the socket lock first
78 * to avoid the risk of deadlock.
79 *
80 * The dispatcher handling incoming messages cannot grab the socket lock in
81 * the standard fashion, since invoked it runs at the BH level and cannot block.
82 * Instead, it checks to see if the socket lock is currently owned by someone,
83 * and either handles the message itself or adds it to the socket's backlog
84 * queue; in the latter case the queued message is processed once the process
85 * owning the socket lock releases it.
86 *
87 * NOTE: Releasing the socket lock while an operation is sleeping overcomes
88 * the problem of a blocked socket operation preventing any other operations
89 * from occurring. However, applications must be careful if they have
90 * multiple threads trying to send (or receive) on the same socket, as these
91 * operations might interfere with each other. For example, doing a connect
92 * and a receive at the same time might allow the receive to consume the
93 * ACK message meant for the connect. While additional work could be done
94 * to try and overcome this, it doesn't seem to be worthwhile at the present.
95 *
96 * NOTE: Releasing the socket lock while an operation is sleeping also ensures
97 * that another operation that must be performed in a non-blocking manner is
98 * not delayed for very long because the lock has already been taken.
99 *
100 * NOTE: This code assumes that certain fields of a port/socket pair are
101 * constant over its lifetime; such fields can be examined without taking
102 * the socket lock and/or port lock, and do not need to be re-read even
103 * after resuming processing after waiting. These fields include:
104 * - socket type
105 * - pointer to socket sk structure (aka tipc_sock structure)
106 * - pointer to port structure
107 * - port reference
Per Lidenb97bf3f2006-01-02 19:04:38 +0100108 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100109
Jon Paul Maloy8826cde2014-03-12 11:31:09 -0400110#include "socket.h"
111
Per Lidenb97bf3f2006-01-02 19:04:38 +0100112/**
Allan Stephens0c3141e2008-04-15 00:22:02 -0700113 * advance_rx_queue - discard first buffer in socket receive queue
114 *
115 * Caller must hold socket lock
Per Lidenb97bf3f2006-01-02 19:04:38 +0100116 */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700117static void advance_rx_queue(struct sock *sk)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100118{
Allan Stephens5f6d9122011-11-04 13:24:29 -0400119 kfree_skb(__skb_dequeue(&sk->sk_receive_queue));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100120}
121
122/**
Allan Stephens0c3141e2008-04-15 00:22:02 -0700123 * reject_rx_queue - reject all buffers in socket receive queue
124 *
125 * Caller must hold socket lock
126 */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700127static void reject_rx_queue(struct sock *sk)
128{
129 struct sk_buff *buf;
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -0500130 u32 dnode;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700131
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -0500132 while ((buf = __skb_dequeue(&sk->sk_receive_queue))) {
133 if (tipc_msg_reverse(buf, &dnode, TIPC_ERR_NO_PORT))
Jon Paul Maloy9fbfb8b2014-07-16 20:41:03 -0400134 tipc_link_xmit(buf, dnode, 0);
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -0500135 }
Allan Stephens0c3141e2008-04-15 00:22:02 -0700136}
137
138/**
Ying Xuec5fa7b32013-06-17 10:54:39 -0400139 * tipc_sk_create - create a TIPC socket
Allan Stephens0c3141e2008-04-15 00:22:02 -0700140 * @net: network namespace (must be default network)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100141 * @sock: pre-allocated socket structure
142 * @protocol: protocol indicator (must be 0)
Eric Paris3f378b62009-11-05 22:18:14 -0800143 * @kern: caused by kernel or by userspace?
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900144 *
Allan Stephens0c3141e2008-04-15 00:22:02 -0700145 * This routine creates additional data structures used by the TIPC socket,
146 * initializes them, and links them together.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100147 *
148 * Returns 0 on success, errno otherwise
149 */
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400150static int tipc_sk_create(struct net *net, struct socket *sock,
151 int protocol, int kern)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100152{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700153 const struct proto_ops *ops;
154 socket_state state;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100155 struct sock *sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400156 struct tipc_sock *tsk;
157 struct tipc_port *port;
158 u32 ref;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700159
160 /* Validate arguments */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100161 if (unlikely(protocol != 0))
162 return -EPROTONOSUPPORT;
163
Per Lidenb97bf3f2006-01-02 19:04:38 +0100164 switch (sock->type) {
165 case SOCK_STREAM:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700166 ops = &stream_ops;
167 state = SS_UNCONNECTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100168 break;
169 case SOCK_SEQPACKET:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700170 ops = &packet_ops;
171 state = SS_UNCONNECTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100172 break;
173 case SOCK_DGRAM:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100174 case SOCK_RDM:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700175 ops = &msg_ops;
176 state = SS_READY;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100177 break;
Allan Stephens49978652006-06-25 23:47:18 -0700178 default:
Allan Stephens49978652006-06-25 23:47:18 -0700179 return -EPROTOTYPE;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100180 }
181
Allan Stephens0c3141e2008-04-15 00:22:02 -0700182 /* Allocate socket's protocol area */
Ying Xuec5fa7b32013-06-17 10:54:39 -0400183 if (!kern)
184 sk = sk_alloc(net, AF_TIPC, GFP_KERNEL, &tipc_proto);
185 else
186 sk = sk_alloc(net, AF_TIPC, GFP_KERNEL, &tipc_proto_kern);
187
Allan Stephens0c3141e2008-04-15 00:22:02 -0700188 if (sk == NULL)
189 return -ENOMEM;
190
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400191 tsk = tipc_sk(sk);
192 port = &tsk->port;
193
194 ref = tipc_port_init(port, TIPC_LOW_IMPORTANCE);
195 if (!ref) {
196 pr_warn("Socket registration failed, ref. table exhausted\n");
Allan Stephens0c3141e2008-04-15 00:22:02 -0700197 sk_free(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100198 return -ENOMEM;
199 }
200
Allan Stephens0c3141e2008-04-15 00:22:02 -0700201 /* Finish initializing socket data structures */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700202 sock->ops = ops;
203 sock->state = state;
204
Per Lidenb97bf3f2006-01-02 19:04:38 +0100205 sock_init_data(sock, sk);
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -0400206 sk->sk_backlog_rcv = tipc_backlog_rcv;
Ying Xuecc79dd12013-06-17 10:54:37 -0400207 sk->sk_rcvbuf = sysctl_tipc_rmem[1];
Ying Xuef288bef2012-08-21 11:16:57 +0800208 sk->sk_data_ready = tipc_data_ready;
209 sk->sk_write_space = tipc_write_space;
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -0400210 tsk->conn_timeout = CONN_TIMEOUT_DEFAULT;
Jon Paul Maloy60120522014-06-25 20:41:42 -0500211 tsk->sent_unacked = 0;
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -0400212 atomic_set(&tsk->dupl_rcvcnt, 0);
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400213 tipc_port_unlock(port);
Allan Stephens7ef43eb2008-05-12 15:42:28 -0700214
Allan Stephens0c3141e2008-04-15 00:22:02 -0700215 if (sock->state == SS_READY) {
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400216 tipc_port_set_unreturnable(port, true);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700217 if (sock->type == SOCK_DGRAM)
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400218 tipc_port_set_unreliable(port, true);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700219 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100220 return 0;
221}
222
223/**
Ying Xuec5fa7b32013-06-17 10:54:39 -0400224 * tipc_sock_create_local - create TIPC socket from inside TIPC module
225 * @type: socket type - SOCK_RDM or SOCK_SEQPACKET
226 *
227 * We cannot use sock_creat_kern here because it bumps module user count.
228 * Since socket owner and creator is the same module we must make sure
229 * that module count remains zero for module local sockets, otherwise
230 * we cannot do rmmod.
231 *
232 * Returns 0 on success, errno otherwise
233 */
234int tipc_sock_create_local(int type, struct socket **res)
235{
236 int rc;
Ying Xuec5fa7b32013-06-17 10:54:39 -0400237
238 rc = sock_create_lite(AF_TIPC, type, 0, res);
239 if (rc < 0) {
240 pr_err("Failed to create kernel socket\n");
241 return rc;
242 }
243 tipc_sk_create(&init_net, *res, 0, 1);
244
Ying Xuec5fa7b32013-06-17 10:54:39 -0400245 return 0;
246}
247
248/**
249 * tipc_sock_release_local - release socket created by tipc_sock_create_local
250 * @sock: the socket to be released.
251 *
252 * Module reference count is not incremented when such sockets are created,
253 * so we must keep it from being decremented when they are released.
254 */
255void tipc_sock_release_local(struct socket *sock)
256{
Ying Xue247f0f32014-02-18 16:06:46 +0800257 tipc_release(sock);
Ying Xuec5fa7b32013-06-17 10:54:39 -0400258 sock->ops = NULL;
259 sock_release(sock);
260}
261
262/**
263 * tipc_sock_accept_local - accept a connection on a socket created
264 * with tipc_sock_create_local. Use this function to avoid that
265 * module reference count is inadvertently incremented.
266 *
267 * @sock: the accepting socket
268 * @newsock: reference to the new socket to be created
269 * @flags: socket flags
270 */
271
272int tipc_sock_accept_local(struct socket *sock, struct socket **newsock,
Paul Gortmakerae8509c2013-06-17 10:54:47 -0400273 int flags)
Ying Xuec5fa7b32013-06-17 10:54:39 -0400274{
275 struct sock *sk = sock->sk;
276 int ret;
277
278 ret = sock_create_lite(sk->sk_family, sk->sk_type,
279 sk->sk_protocol, newsock);
280 if (ret < 0)
281 return ret;
282
Ying Xue247f0f32014-02-18 16:06:46 +0800283 ret = tipc_accept(sock, *newsock, flags);
Ying Xuec5fa7b32013-06-17 10:54:39 -0400284 if (ret < 0) {
285 sock_release(*newsock);
286 return ret;
287 }
288 (*newsock)->ops = sock->ops;
289 return ret;
290}
291
292/**
Ying Xue247f0f32014-02-18 16:06:46 +0800293 * tipc_release - destroy a TIPC socket
Per Lidenb97bf3f2006-01-02 19:04:38 +0100294 * @sock: socket to destroy
295 *
296 * This routine cleans up any messages that are still queued on the socket.
297 * For DGRAM and RDM socket types, all queued messages are rejected.
298 * For SEQPACKET and STREAM socket types, the first message is rejected
299 * and any others are discarded. (If the first message on a STREAM socket
300 * is partially-read, it is discarded and the next one is rejected instead.)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900301 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100302 * NOTE: Rejected messages are not necessarily returned to the sender! They
303 * are returned or discarded according to the "destination droppable" setting
304 * specified for the message by the sender.
305 *
306 * Returns 0 on success, errno otherwise
307 */
Ying Xue247f0f32014-02-18 16:06:46 +0800308static int tipc_release(struct socket *sock)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100309{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100310 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400311 struct tipc_sock *tsk;
312 struct tipc_port *port;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100313 struct sk_buff *buf;
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -0500314 u32 dnode;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100315
Allan Stephens0c3141e2008-04-15 00:22:02 -0700316 /*
317 * Exit if socket isn't fully initialized (occurs when a failed accept()
318 * releases a pre-allocated child socket that was never used)
319 */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700320 if (sk == NULL)
321 return 0;
322
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400323 tsk = tipc_sk(sk);
324 port = &tsk->port;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700325 lock_sock(sk);
326
327 /*
328 * Reject all unreceived messages, except on an active connection
329 * (which disconnects locally & sends a 'FIN+' to peer)
330 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100331 while (sock->state != SS_DISCONNECTING) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700332 buf = __skb_dequeue(&sk->sk_receive_queue);
333 if (buf == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100334 break;
Ying Xue40682432013-10-18 07:23:16 +0200335 if (TIPC_SKB_CB(buf)->handle != NULL)
Allan Stephens5f6d9122011-11-04 13:24:29 -0400336 kfree_skb(buf);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700337 else {
338 if ((sock->state == SS_CONNECTING) ||
339 (sock->state == SS_CONNECTED)) {
340 sock->state = SS_DISCONNECTING;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400341 tipc_port_disconnect(port->ref);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700342 }
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -0500343 if (tipc_msg_reverse(buf, &dnode, TIPC_ERR_NO_PORT))
Jon Paul Maloy9fbfb8b2014-07-16 20:41:03 -0400344 tipc_link_xmit(buf, dnode, 0);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700345 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100346 }
347
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400348 /* Destroy TIPC port; also disconnects an active connection and
349 * sends a 'FIN-' to peer.
Allan Stephens0c3141e2008-04-15 00:22:02 -0700350 */
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400351 tipc_port_destroy(port);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100352
Allan Stephens0c3141e2008-04-15 00:22:02 -0700353 /* Discard any remaining (connection-based) messages in receive queue */
Ying Xue57467e52013-01-20 23:30:08 +0100354 __skb_queue_purge(&sk->sk_receive_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100355
Allan Stephens0c3141e2008-04-15 00:22:02 -0700356 /* Reject any messages that accumulated in backlog queue */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700357 sock->state = SS_DISCONNECTING;
358 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100359
360 sock_put(sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700361 sock->sk = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100362
Geert Uytterhoeven065d7e32014-04-06 15:56:14 +0200363 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100364}
365
366/**
Ying Xue247f0f32014-02-18 16:06:46 +0800367 * tipc_bind - associate or disassocate TIPC name(s) with a socket
Per Lidenb97bf3f2006-01-02 19:04:38 +0100368 * @sock: socket structure
369 * @uaddr: socket address describing name(s) and desired operation
370 * @uaddr_len: size of socket address data structure
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900371 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100372 * Name and name sequence binding is indicated using a positive scope value;
373 * a negative scope value unbinds the specified name. Specifying no name
374 * (i.e. a socket address length of 0) unbinds all names from the socket.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900375 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100376 * Returns 0 on success, errno otherwise
Allan Stephens0c3141e2008-04-15 00:22:02 -0700377 *
378 * NOTE: This routine doesn't need to take the socket lock since it doesn't
379 * access any non-constant socket information.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100380 */
Ying Xue247f0f32014-02-18 16:06:46 +0800381static int tipc_bind(struct socket *sock, struct sockaddr *uaddr,
382 int uaddr_len)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100383{
Ying Xue84602762013-12-27 10:18:28 +0800384 struct sock *sk = sock->sk;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100385 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400386 struct tipc_sock *tsk = tipc_sk(sk);
Ying Xue84602762013-12-27 10:18:28 +0800387 int res = -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100388
Ying Xue84602762013-12-27 10:18:28 +0800389 lock_sock(sk);
390 if (unlikely(!uaddr_len)) {
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400391 res = tipc_withdraw(&tsk->port, 0, NULL);
Ying Xue84602762013-12-27 10:18:28 +0800392 goto exit;
393 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900394
Ying Xue84602762013-12-27 10:18:28 +0800395 if (uaddr_len < sizeof(struct sockaddr_tipc)) {
396 res = -EINVAL;
397 goto exit;
398 }
399 if (addr->family != AF_TIPC) {
400 res = -EAFNOSUPPORT;
401 goto exit;
402 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100403
Per Lidenb97bf3f2006-01-02 19:04:38 +0100404 if (addr->addrtype == TIPC_ADDR_NAME)
405 addr->addr.nameseq.upper = addr->addr.nameseq.lower;
Ying Xue84602762013-12-27 10:18:28 +0800406 else if (addr->addrtype != TIPC_ADDR_NAMESEQ) {
407 res = -EAFNOSUPPORT;
408 goto exit;
409 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900410
Ying Xue13a2e892013-06-17 10:54:40 -0400411 if ((addr->addr.nameseq.type < TIPC_RESERVED_TYPES) &&
Ying Xue7d0ab172013-06-17 10:54:41 -0400412 (addr->addr.nameseq.type != TIPC_TOP_SRV) &&
Ying Xue84602762013-12-27 10:18:28 +0800413 (addr->addr.nameseq.type != TIPC_CFG_SRV)) {
414 res = -EACCES;
415 goto exit;
416 }
Allan Stephensc422f1b2011-11-02 15:49:40 -0400417
Ying Xue84602762013-12-27 10:18:28 +0800418 res = (addr->scope > 0) ?
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400419 tipc_publish(&tsk->port, addr->scope, &addr->addr.nameseq) :
420 tipc_withdraw(&tsk->port, -addr->scope, &addr->addr.nameseq);
Ying Xue84602762013-12-27 10:18:28 +0800421exit:
422 release_sock(sk);
423 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100424}
425
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900426/**
Ying Xue247f0f32014-02-18 16:06:46 +0800427 * tipc_getname - get port ID of socket or peer socket
Per Lidenb97bf3f2006-01-02 19:04:38 +0100428 * @sock: socket structure
429 * @uaddr: area for returned socket address
430 * @uaddr_len: area for returned length of socket address
Allan Stephens2da59912008-07-14 22:43:32 -0700431 * @peer: 0 = own ID, 1 = current peer ID, 2 = current/former peer ID
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900432 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100433 * Returns 0 on success, errno otherwise
Allan Stephens0c3141e2008-04-15 00:22:02 -0700434 *
Allan Stephens2da59912008-07-14 22:43:32 -0700435 * NOTE: This routine doesn't need to take the socket lock since it only
436 * accesses socket information that is unchanging (or which changes in
Allan Stephens0e659672010-12-31 18:59:32 +0000437 * a completely predictable manner).
Per Lidenb97bf3f2006-01-02 19:04:38 +0100438 */
Ying Xue247f0f32014-02-18 16:06:46 +0800439static int tipc_getname(struct socket *sock, struct sockaddr *uaddr,
440 int *uaddr_len, int peer)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100441{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100442 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400443 struct tipc_sock *tsk = tipc_sk(sock->sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100444
Kulikov Vasiliy88f8a5e2010-10-31 07:10:32 +0000445 memset(addr, 0, sizeof(*addr));
Allan Stephens0c3141e2008-04-15 00:22:02 -0700446 if (peer) {
Allan Stephens2da59912008-07-14 22:43:32 -0700447 if ((sock->state != SS_CONNECTED) &&
448 ((peer != 2) || (sock->state != SS_DISCONNECTING)))
449 return -ENOTCONN;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400450 addr->addr.id.ref = tipc_port_peerport(&tsk->port);
451 addr->addr.id.node = tipc_port_peernode(&tsk->port);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700452 } else {
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400453 addr->addr.id.ref = tsk->port.ref;
Allan Stephensb924dcf2010-11-30 12:01:03 +0000454 addr->addr.id.node = tipc_own_addr;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700455 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100456
457 *uaddr_len = sizeof(*addr);
458 addr->addrtype = TIPC_ADDR_ID;
459 addr->family = AF_TIPC;
460 addr->scope = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100461 addr->addr.name.domain = 0;
462
Allan Stephens0c3141e2008-04-15 00:22:02 -0700463 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100464}
465
466/**
Ying Xue247f0f32014-02-18 16:06:46 +0800467 * tipc_poll - read and possibly block on pollmask
Per Lidenb97bf3f2006-01-02 19:04:38 +0100468 * @file: file structure associated with the socket
469 * @sock: socket for which to calculate the poll bits
470 * @wait: ???
471 *
Allan Stephens9b674e82008-03-26 16:48:21 -0700472 * Returns pollmask value
473 *
474 * COMMENTARY:
475 * It appears that the usual socket locking mechanisms are not useful here
476 * since the pollmask info is potentially out-of-date the moment this routine
477 * exits. TCP and other protocols seem to rely on higher level poll routines
478 * to handle any preventable race conditions, so TIPC will do the same ...
479 *
480 * TIPC sets the returned events as follows:
Allan Stephens9b674e82008-03-26 16:48:21 -0700481 *
Allan Stephensf662c072010-08-17 11:00:06 +0000482 * socket state flags set
483 * ------------ ---------
484 * unconnected no read flags
Erik Hugnec4fc2982012-10-16 16:47:06 +0200485 * POLLOUT if port is not congested
Allan Stephensf662c072010-08-17 11:00:06 +0000486 *
487 * connecting POLLIN/POLLRDNORM if ACK/NACK in rx queue
488 * no write flags
489 *
490 * connected POLLIN/POLLRDNORM if data in rx queue
491 * POLLOUT if port is not congested
492 *
493 * disconnecting POLLIN/POLLRDNORM/POLLHUP
494 * no write flags
495 *
496 * listening POLLIN if SYN in rx queue
497 * no write flags
498 *
499 * ready POLLIN/POLLRDNORM if data in rx queue
500 * [connectionless] POLLOUT (since port cannot be congested)
501 *
502 * IMPORTANT: The fact that a read or write operation is indicated does NOT
503 * imply that the operation will succeed, merely that it should be performed
504 * and will not block.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100505 */
Ying Xue247f0f32014-02-18 16:06:46 +0800506static unsigned int tipc_poll(struct file *file, struct socket *sock,
507 poll_table *wait)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100508{
Allan Stephens9b674e82008-03-26 16:48:21 -0700509 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400510 struct tipc_sock *tsk = tipc_sk(sk);
Allan Stephensf662c072010-08-17 11:00:06 +0000511 u32 mask = 0;
Allan Stephens9b674e82008-03-26 16:48:21 -0700512
Ying Xuef288bef2012-08-21 11:16:57 +0800513 sock_poll_wait(file, sk_sleep(sk), wait);
Allan Stephens9b674e82008-03-26 16:48:21 -0700514
Allan Stephensf662c072010-08-17 11:00:06 +0000515 switch ((int)sock->state) {
Erik Hugnec4fc2982012-10-16 16:47:06 +0200516 case SS_UNCONNECTED:
Jon Paul Maloy60120522014-06-25 20:41:42 -0500517 if (!tsk->link_cong)
Erik Hugnec4fc2982012-10-16 16:47:06 +0200518 mask |= POLLOUT;
519 break;
Allan Stephensf662c072010-08-17 11:00:06 +0000520 case SS_READY:
521 case SS_CONNECTED:
Jon Paul Maloy60120522014-06-25 20:41:42 -0500522 if (!tsk->link_cong && !tipc_sk_conn_cong(tsk))
Allan Stephensf662c072010-08-17 11:00:06 +0000523 mask |= POLLOUT;
524 /* fall thru' */
525 case SS_CONNECTING:
526 case SS_LISTENING:
527 if (!skb_queue_empty(&sk->sk_receive_queue))
528 mask |= (POLLIN | POLLRDNORM);
529 break;
530 case SS_DISCONNECTING:
531 mask = (POLLIN | POLLRDNORM | POLLHUP);
532 break;
533 }
Allan Stephens9b674e82008-03-26 16:48:21 -0700534
535 return mask;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100536}
537
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400538/**
539 * tipc_sendmcast - send multicast message
540 * @sock: socket structure
541 * @seq: destination address
542 * @iov: message data to send
543 * @dsz: total length of message data
544 * @timeo: timeout to wait for wakeup
545 *
546 * Called from function tipc_sendmsg(), which has done all sanity checks
547 * Returns the number of bytes sent on success, or errno
548 */
549static int tipc_sendmcast(struct socket *sock, struct tipc_name_seq *seq,
550 struct iovec *iov, size_t dsz, long timeo)
551{
552 struct sock *sk = sock->sk;
553 struct tipc_msg *mhdr = &tipc_sk(sk)->port.phdr;
554 struct sk_buff *buf;
555 uint mtu;
556 int rc;
557
558 msg_set_type(mhdr, TIPC_MCAST_MSG);
559 msg_set_lookup_scope(mhdr, TIPC_CLUSTER_SCOPE);
560 msg_set_destport(mhdr, 0);
561 msg_set_destnode(mhdr, 0);
562 msg_set_nametype(mhdr, seq->type);
563 msg_set_namelower(mhdr, seq->lower);
564 msg_set_nameupper(mhdr, seq->upper);
565 msg_set_hdr_sz(mhdr, MCAST_H_SIZE);
566
567new_mtu:
568 mtu = tipc_bclink_get_mtu();
Jon Paul Maloy9fbfb8b2014-07-16 20:41:03 -0400569 rc = tipc_msg_build(mhdr, iov, 0, dsz, mtu, &buf);
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400570 if (unlikely(rc < 0))
571 return rc;
572
573 do {
574 rc = tipc_bclink_xmit(buf);
575 if (likely(rc >= 0)) {
576 rc = dsz;
577 break;
578 }
579 if (rc == -EMSGSIZE)
580 goto new_mtu;
581 if (rc != -ELINKCONG)
582 break;
583 rc = tipc_wait_for_sndmsg(sock, &timeo);
584 if (rc)
585 kfree_skb_list(buf);
586 } while (!rc);
587 return rc;
588}
589
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400590/* tipc_sk_mcast_rcv - Deliver multicast message to all destination sockets
591 */
592void tipc_sk_mcast_rcv(struct sk_buff *buf)
593{
594 struct tipc_msg *msg = buf_msg(buf);
595 struct tipc_port_list dports = {0, NULL, };
596 struct tipc_port_list *item;
597 struct sk_buff *b;
598 uint i, last, dst = 0;
599 u32 scope = TIPC_CLUSTER_SCOPE;
600
601 if (in_own_node(msg_orignode(msg)))
602 scope = TIPC_NODE_SCOPE;
603
604 /* Create destination port list: */
605 tipc_nametbl_mc_translate(msg_nametype(msg),
606 msg_namelower(msg),
607 msg_nameupper(msg),
608 scope,
609 &dports);
610 last = dports.count;
611 if (!last) {
612 kfree_skb(buf);
613 return;
614 }
615
616 for (item = &dports; item; item = item->next) {
617 for (i = 0; i < PLSIZE && ++dst <= last; i++) {
618 b = (dst != last) ? skb_clone(buf, GFP_ATOMIC) : buf;
619 if (!b) {
620 pr_warn("Failed do clone mcast rcv buffer\n");
621 continue;
622 }
623 msg_set_destport(msg, item->ports[i]);
624 tipc_sk_rcv(b);
625 }
626 }
627 tipc_port_list_free(&dports);
628}
629
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900630/**
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500631 * tipc_sk_proto_rcv - receive a connection mng protocol message
632 * @tsk: receiving socket
633 * @dnode: node to send response message to, if any
634 * @buf: buffer containing protocol message
635 * Returns 0 (TIPC_OK) if message was consumed, 1 (TIPC_FWD_MSG) if
636 * (CONN_PROBE_REPLY) message should be forwarded.
637 */
Wei Yongjun52f50ce2014-07-20 13:14:28 +0800638static int tipc_sk_proto_rcv(struct tipc_sock *tsk, u32 *dnode,
639 struct sk_buff *buf)
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500640{
641 struct tipc_msg *msg = buf_msg(buf);
642 struct tipc_port *port = &tsk->port;
Jon Paul Maloy60120522014-06-25 20:41:42 -0500643 int conn_cong;
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500644
645 /* Ignore if connection cannot be validated: */
646 if (!port->connected || !tipc_port_peer_msg(port, msg))
647 goto exit;
648
649 port->probing_state = TIPC_CONN_OK;
650
651 if (msg_type(msg) == CONN_ACK) {
Jon Paul Maloy60120522014-06-25 20:41:42 -0500652 conn_cong = tipc_sk_conn_cong(tsk);
653 tsk->sent_unacked -= msg_msgcnt(msg);
654 if (conn_cong)
655 tipc_sock_wakeup(tsk);
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500656 } else if (msg_type(msg) == CONN_PROBE) {
657 if (!tipc_msg_reverse(buf, dnode, TIPC_OK))
658 return TIPC_OK;
659 msg_set_type(msg, CONN_PROBE_REPLY);
660 return TIPC_FWD_MSG;
661 }
662 /* Do nothing if msg_type() == CONN_PROBE_REPLY */
663exit:
664 kfree_skb(buf);
665 return TIPC_OK;
666}
667
668/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100669 * dest_name_check - verify user is permitted to send to specified port name
670 * @dest: destination address
671 * @m: descriptor for message to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900672 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100673 * Prevents restricted configuration commands from being issued by
674 * unauthorized users.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900675 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100676 * Returns 0 if permission is granted, otherwise errno
677 */
Sam Ravnborg05790c62006-03-20 22:37:04 -0800678static int dest_name_check(struct sockaddr_tipc *dest, struct msghdr *m)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100679{
680 struct tipc_cfg_msg_hdr hdr;
681
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500682 if (unlikely(dest->addrtype == TIPC_ADDR_ID))
683 return 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900684 if (likely(dest->addr.name.name.type >= TIPC_RESERVED_TYPES))
685 return 0;
686 if (likely(dest->addr.name.name.type == TIPC_TOP_SRV))
687 return 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900688 if (likely(dest->addr.name.name.type != TIPC_CFG_SRV))
689 return -EACCES;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100690
Allan Stephens3f8dd942011-01-18 13:09:29 -0500691 if (!m->msg_iovlen || (m->msg_iov[0].iov_len < sizeof(hdr)))
692 return -EMSGSIZE;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900693 if (copy_from_user(&hdr, m->msg_iov[0].iov_base, sizeof(hdr)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100694 return -EFAULT;
Allan Stephens70cb2342006-06-25 23:41:47 -0700695 if ((ntohs(hdr.tcm_type) & 0xC000) && (!capable(CAP_NET_ADMIN)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100696 return -EACCES;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900697
Per Lidenb97bf3f2006-01-02 19:04:38 +0100698 return 0;
699}
700
Ying Xue3f405042014-01-17 09:50:05 +0800701static int tipc_wait_for_sndmsg(struct socket *sock, long *timeo_p)
702{
703 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400704 struct tipc_sock *tsk = tipc_sk(sk);
Ying Xue3f405042014-01-17 09:50:05 +0800705 DEFINE_WAIT(wait);
706 int done;
707
708 do {
709 int err = sock_error(sk);
710 if (err)
711 return err;
712 if (sock->state == SS_DISCONNECTING)
713 return -EPIPE;
714 if (!*timeo_p)
715 return -EAGAIN;
716 if (signal_pending(current))
717 return sock_intr_errno(*timeo_p);
718
719 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Jon Paul Maloy60120522014-06-25 20:41:42 -0500720 done = sk_wait_event(sk, timeo_p, !tsk->link_cong);
Ying Xue3f405042014-01-17 09:50:05 +0800721 finish_wait(sk_sleep(sk), &wait);
722 } while (!done);
723 return 0;
724}
725
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500726/**
Ying Xue247f0f32014-02-18 16:06:46 +0800727 * tipc_sendmsg - send message in connectionless manner
Allan Stephens0c3141e2008-04-15 00:22:02 -0700728 * @iocb: if NULL, indicates that socket lock is already held
Per Lidenb97bf3f2006-01-02 19:04:38 +0100729 * @sock: socket structure
730 * @m: message to send
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500731 * @dsz: amount of user data to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900732 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100733 * Message must have an destination specified explicitly.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900734 * Used for SOCK_RDM and SOCK_DGRAM messages,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100735 * and for 'SYN' messages on SOCK_SEQPACKET and SOCK_STREAM connections.
736 * (Note: 'SYN+' is prohibited on SOCK_STREAM.)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900737 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100738 * Returns the number of bytes sent on success, or errno otherwise
739 */
Ying Xue247f0f32014-02-18 16:06:46 +0800740static int tipc_sendmsg(struct kiocb *iocb, struct socket *sock,
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500741 struct msghdr *m, size_t dsz)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100742{
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500743 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700744 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400745 struct tipc_sock *tsk = tipc_sk(sk);
Jon Paul Maloy5c311422014-03-12 11:31:13 -0400746 struct tipc_port *port = &tsk->port;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500747 struct tipc_msg *mhdr = &port->phdr;
748 struct iovec *iov = m->msg_iov;
749 u32 dnode, dport;
750 struct sk_buff *buf;
751 struct tipc_name_seq *seq = &dest->addr.nameseq;
752 u32 mtu;
Ying Xue3f405042014-01-17 09:50:05 +0800753 long timeo;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500754 int rc = -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100755
756 if (unlikely(!dest))
757 return -EDESTADDRREQ;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500758
Allan Stephens51f9cc12006-06-25 23:49:06 -0700759 if (unlikely((m->msg_namelen < sizeof(*dest)) ||
760 (dest->family != AF_TIPC)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100761 return -EINVAL;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500762
763 if (dsz > TIPC_MAX_USER_MSG_SIZE)
Allan Stephensc29c3f72010-04-20 17:58:24 -0400764 return -EMSGSIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100765
Allan Stephens0c3141e2008-04-15 00:22:02 -0700766 if (iocb)
767 lock_sock(sk);
768
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500769 if (unlikely(sock->state != SS_READY)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700770 if (sock->state == SS_LISTENING) {
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500771 rc = -EPIPE;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700772 goto exit;
Allan Stephens33880072006-06-25 23:44:57 -0700773 }
Allan Stephens0c3141e2008-04-15 00:22:02 -0700774 if (sock->state != SS_UNCONNECTED) {
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500775 rc = -EISCONN;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700776 goto exit;
777 }
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400778 if (tsk->port.published) {
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500779 rc = -EOPNOTSUPP;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700780 goto exit;
781 }
782 if (dest->addrtype == TIPC_ADDR_NAME) {
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400783 tsk->port.conn_type = dest->addr.name.name.type;
784 tsk->port.conn_instance = dest->addr.name.name.instance;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700785 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100786 }
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500787 rc = dest_name_check(dest, m);
788 if (rc)
789 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100790
Ying Xue3f405042014-01-17 09:50:05 +0800791 timeo = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500792
793 if (dest->addrtype == TIPC_ADDR_MCAST) {
794 rc = tipc_sendmcast(sock, seq, iov, dsz, timeo);
795 goto exit;
796 } else if (dest->addrtype == TIPC_ADDR_NAME) {
797 u32 type = dest->addr.name.name.type;
798 u32 inst = dest->addr.name.name.instance;
799 u32 domain = dest->addr.name.domain;
800
801 dnode = domain;
802 msg_set_type(mhdr, TIPC_NAMED_MSG);
803 msg_set_hdr_sz(mhdr, NAMED_H_SIZE);
804 msg_set_nametype(mhdr, type);
805 msg_set_nameinst(mhdr, inst);
806 msg_set_lookup_scope(mhdr, tipc_addr_scope(domain));
807 dport = tipc_nametbl_translate(type, inst, &dnode);
808 msg_set_destnode(mhdr, dnode);
809 msg_set_destport(mhdr, dport);
810 if (unlikely(!dport && !dnode)) {
811 rc = -EHOSTUNREACH;
812 goto exit;
813 }
814 } else if (dest->addrtype == TIPC_ADDR_ID) {
815 dnode = dest->addr.id.node;
816 msg_set_type(mhdr, TIPC_DIRECT_MSG);
817 msg_set_lookup_scope(mhdr, 0);
818 msg_set_destnode(mhdr, dnode);
819 msg_set_destport(mhdr, dest->addr.id.ref);
820 msg_set_hdr_sz(mhdr, BASIC_H_SIZE);
821 }
822
823new_mtu:
824 mtu = tipc_node_get_mtu(dnode, tsk->port.ref);
Jon Paul Maloy9fbfb8b2014-07-16 20:41:03 -0400825 rc = tipc_msg_build(mhdr, iov, 0, dsz, mtu, &buf);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500826 if (rc < 0)
827 goto exit;
828
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900829 do {
Jon Paul Maloy9fbfb8b2014-07-16 20:41:03 -0400830 rc = tipc_link_xmit(buf, dnode, tsk->port.ref);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500831 if (likely(rc >= 0)) {
832 if (sock->state != SS_READY)
Allan Stephens0c3141e2008-04-15 00:22:02 -0700833 sock->state = SS_CONNECTING;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500834 rc = dsz;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700835 break;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900836 }
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500837 if (rc == -EMSGSIZE)
838 goto new_mtu;
839
840 if (rc != -ELINKCONG)
Allan Stephens0c3141e2008-04-15 00:22:02 -0700841 break;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500842
843 rc = tipc_wait_for_sndmsg(sock, &timeo);
Erik Hugne70452dc2014-07-06 20:38:50 -0400844 if (rc)
845 kfree_skb_list(buf);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500846 } while (!rc);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700847exit:
848 if (iocb)
849 release_sock(sk);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500850
851 return rc;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100852}
853
Ying Xue391a6dd2014-01-17 09:50:06 +0800854static int tipc_wait_for_sndpkt(struct socket *sock, long *timeo_p)
855{
856 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400857 struct tipc_sock *tsk = tipc_sk(sk);
Ying Xue391a6dd2014-01-17 09:50:06 +0800858 DEFINE_WAIT(wait);
859 int done;
860
861 do {
862 int err = sock_error(sk);
863 if (err)
864 return err;
865 if (sock->state == SS_DISCONNECTING)
866 return -EPIPE;
867 else if (sock->state != SS_CONNECTED)
868 return -ENOTCONN;
869 if (!*timeo_p)
870 return -EAGAIN;
871 if (signal_pending(current))
872 return sock_intr_errno(*timeo_p);
873
874 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
875 done = sk_wait_event(sk, timeo_p,
Jon Paul Maloy60120522014-06-25 20:41:42 -0500876 (!tsk->link_cong &&
877 !tipc_sk_conn_cong(tsk)) ||
878 !tsk->port.connected);
Ying Xue391a6dd2014-01-17 09:50:06 +0800879 finish_wait(sk_sleep(sk), &wait);
880 } while (!done);
881 return 0;
882}
883
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900884/**
Ying Xue247f0f32014-02-18 16:06:46 +0800885 * tipc_send_stream - send stream-oriented data
Per Lidenb97bf3f2006-01-02 19:04:38 +0100886 * @iocb: (unused)
887 * @sock: socket structure
888 * @m: data to send
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500889 * @dsz: total length of data to be transmitted
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900890 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100891 * Used for SOCK_STREAM data.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900892 *
893 * Returns the number of bytes sent on success (or partial success),
Allan Stephens1303e8f2006-06-25 23:46:50 -0700894 * or errno if no data sent
Per Lidenb97bf3f2006-01-02 19:04:38 +0100895 */
Ying Xue247f0f32014-02-18 16:06:46 +0800896static int tipc_send_stream(struct kiocb *iocb, struct socket *sock,
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500897 struct msghdr *m, size_t dsz)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100898{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700899 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400900 struct tipc_sock *tsk = tipc_sk(sk);
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500901 struct tipc_port *port = &tsk->port;
902 struct tipc_msg *mhdr = &port->phdr;
903 struct sk_buff *buf;
904 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
905 u32 ref = port->ref;
906 int rc = -EINVAL;
907 long timeo;
908 u32 dnode;
909 uint mtu, send, sent = 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900910
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500911 /* Handle implied connection establishment */
912 if (unlikely(dest)) {
913 rc = tipc_sendmsg(iocb, sock, m, dsz);
914 if (dsz && (dsz == rc))
Jon Paul Maloy60120522014-06-25 20:41:42 -0500915 tsk->sent_unacked = 1;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500916 return rc;
917 }
918 if (dsz > (uint)INT_MAX)
919 return -EMSGSIZE;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700920
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500921 if (iocb)
922 lock_sock(sk);
923
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900924 if (unlikely(sock->state != SS_CONNECTED)) {
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500925 if (sock->state == SS_DISCONNECTING)
926 rc = -EPIPE;
wangweidongb0555972013-12-27 10:09:39 +0800927 else
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500928 rc = -ENOTCONN;
wangweidong3b8401f2013-12-12 09:36:40 +0800929 goto exit;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900930 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100931
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500932 timeo = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT);
933 dnode = tipc_port_peernode(port);
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500934
935next:
936 mtu = port->max_pkt;
937 send = min_t(uint, dsz - sent, TIPC_MAX_USER_MSG_SIZE);
Jon Paul Maloy9fbfb8b2014-07-16 20:41:03 -0400938 rc = tipc_msg_build(mhdr, m->msg_iov, sent, send, mtu, &buf);
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500939 if (unlikely(rc < 0))
Allan Stephens0c3141e2008-04-15 00:22:02 -0700940 goto exit;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500941 do {
Jon Paul Maloy60120522014-06-25 20:41:42 -0500942 if (likely(!tipc_sk_conn_cong(tsk))) {
Jon Paul Maloy9fbfb8b2014-07-16 20:41:03 -0400943 rc = tipc_link_xmit(buf, dnode, ref);
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500944 if (likely(!rc)) {
Jon Paul Maloy60120522014-06-25 20:41:42 -0500945 tsk->sent_unacked++;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500946 sent += send;
947 if (sent == dsz)
948 break;
949 goto next;
Allan Stephens1303e8f2006-06-25 23:46:50 -0700950 }
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500951 if (rc == -EMSGSIZE) {
952 port->max_pkt = tipc_node_get_mtu(dnode, ref);
953 goto next;
954 }
955 if (rc != -ELINKCONG)
956 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100957 }
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500958 rc = tipc_wait_for_sndpkt(sock, &timeo);
Erik Hugne70452dc2014-07-06 20:38:50 -0400959 if (rc)
960 kfree_skb_list(buf);
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500961 } while (!rc);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700962exit:
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500963 if (iocb)
964 release_sock(sk);
965 return sent ? sent : rc;
966}
967
968/**
969 * tipc_send_packet - send a connection-oriented message
970 * @iocb: if NULL, indicates that socket lock is already held
971 * @sock: socket structure
972 * @m: message to send
973 * @dsz: length of data to be transmitted
974 *
975 * Used for SOCK_SEQPACKET messages.
976 *
977 * Returns the number of bytes sent on success, or errno otherwise
978 */
979static int tipc_send_packet(struct kiocb *iocb, struct socket *sock,
980 struct msghdr *m, size_t dsz)
981{
982 if (dsz > TIPC_MAX_USER_MSG_SIZE)
983 return -EMSGSIZE;
984
985 return tipc_send_stream(iocb, sock, m, dsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100986}
987
988/**
989 * auto_connect - complete connection setup to a remote port
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400990 * @tsk: tipc socket structure
Per Lidenb97bf3f2006-01-02 19:04:38 +0100991 * @msg: peer's response message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900992 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100993 * Returns 0 on success, errno otherwise
994 */
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400995static int auto_connect(struct tipc_sock *tsk, struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100996{
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400997 struct tipc_port *port = &tsk->port;
998 struct socket *sock = tsk->sk.sk_socket;
Jon Paul Maloyf9fef182014-03-12 11:31:08 -0400999 struct tipc_portid peer;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001000
Jon Paul Maloyf9fef182014-03-12 11:31:08 -04001001 peer.ref = msg_origport(msg);
1002 peer.node = msg_orignode(msg);
1003
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001004 __tipc_port_connect(port->ref, port, &peer);
Ying Xue584d24b2012-11-29 18:51:19 -05001005
1006 if (msg_importance(msg) > TIPC_CRITICAL_IMPORTANCE)
1007 return -EINVAL;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001008 msg_set_importance(&port->phdr, (u32)msg_importance(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001009 sock->state = SS_CONNECTED;
1010 return 0;
1011}
1012
1013/**
1014 * set_orig_addr - capture sender's address for received message
1015 * @m: descriptor for message info
1016 * @msg: received message header
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001017 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001018 * Note: Address is not captured if not requested by receiver.
1019 */
Sam Ravnborg05790c62006-03-20 22:37:04 -08001020static void set_orig_addr(struct msghdr *m, struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001021{
Steffen Hurrle342dfc32014-01-17 22:53:15 +01001022 DECLARE_SOCKADDR(struct sockaddr_tipc *, addr, m->msg_name);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001023
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001024 if (addr) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001025 addr->family = AF_TIPC;
1026 addr->addrtype = TIPC_ADDR_ID;
Mathias Krause60085c32013-04-07 01:52:00 +00001027 memset(&addr->addr, 0, sizeof(addr->addr));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001028 addr->addr.id.ref = msg_origport(msg);
1029 addr->addr.id.node = msg_orignode(msg);
Allan Stephens0e659672010-12-31 18:59:32 +00001030 addr->addr.name.domain = 0; /* could leave uninitialized */
1031 addr->scope = 0; /* could leave uninitialized */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001032 m->msg_namelen = sizeof(struct sockaddr_tipc);
1033 }
1034}
1035
1036/**
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001037 * anc_data_recv - optionally capture ancillary data for received message
Per Lidenb97bf3f2006-01-02 19:04:38 +01001038 * @m: descriptor for message info
1039 * @msg: received message header
1040 * @tport: TIPC port associated with message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001041 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001042 * Note: Ancillary data is not captured if not requested by receiver.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001043 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001044 * Returns 0 if successful, otherwise errno
1045 */
Sam Ravnborg05790c62006-03-20 22:37:04 -08001046static int anc_data_recv(struct msghdr *m, struct tipc_msg *msg,
Paul Gortmakerae8509c2013-06-17 10:54:47 -04001047 struct tipc_port *tport)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001048{
1049 u32 anc_data[3];
1050 u32 err;
1051 u32 dest_type;
Allan Stephens3546c752006-06-25 23:45:24 -07001052 int has_name;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001053 int res;
1054
1055 if (likely(m->msg_controllen == 0))
1056 return 0;
1057
1058 /* Optionally capture errored message object(s) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001059 err = msg ? msg_errcode(msg) : 0;
1060 if (unlikely(err)) {
1061 anc_data[0] = err;
1062 anc_data[1] = msg_data_sz(msg);
Allan Stephens2db99832010-12-31 18:59:33 +00001063 res = put_cmsg(m, SOL_TIPC, TIPC_ERRINFO, 8, anc_data);
1064 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001065 return res;
Allan Stephens2db99832010-12-31 18:59:33 +00001066 if (anc_data[1]) {
1067 res = put_cmsg(m, SOL_TIPC, TIPC_RETDATA, anc_data[1],
1068 msg_data(msg));
1069 if (res)
1070 return res;
1071 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001072 }
1073
1074 /* Optionally capture message destination object */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001075 dest_type = msg ? msg_type(msg) : TIPC_DIRECT_MSG;
1076 switch (dest_type) {
1077 case TIPC_NAMED_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -07001078 has_name = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001079 anc_data[0] = msg_nametype(msg);
1080 anc_data[1] = msg_namelower(msg);
1081 anc_data[2] = msg_namelower(msg);
1082 break;
1083 case TIPC_MCAST_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -07001084 has_name = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001085 anc_data[0] = msg_nametype(msg);
1086 anc_data[1] = msg_namelower(msg);
1087 anc_data[2] = msg_nameupper(msg);
1088 break;
1089 case TIPC_CONN_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -07001090 has_name = (tport->conn_type != 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001091 anc_data[0] = tport->conn_type;
1092 anc_data[1] = tport->conn_instance;
1093 anc_data[2] = tport->conn_instance;
1094 break;
1095 default:
Allan Stephens3546c752006-06-25 23:45:24 -07001096 has_name = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001097 }
Allan Stephens2db99832010-12-31 18:59:33 +00001098 if (has_name) {
1099 res = put_cmsg(m, SOL_TIPC, TIPC_DESTNAME, 12, anc_data);
1100 if (res)
1101 return res;
1102 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001103
1104 return 0;
1105}
1106
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001107static int tipc_wait_for_rcvmsg(struct socket *sock, long *timeop)
Ying Xue9bbb4ecc2014-01-17 09:50:07 +08001108{
1109 struct sock *sk = sock->sk;
1110 DEFINE_WAIT(wait);
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001111 long timeo = *timeop;
Ying Xue9bbb4ecc2014-01-17 09:50:07 +08001112 int err;
1113
1114 for (;;) {
1115 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Ying Xuefe8e4642014-03-06 14:40:18 +01001116 if (timeo && skb_queue_empty(&sk->sk_receive_queue)) {
Ying Xue9bbb4ecc2014-01-17 09:50:07 +08001117 if (sock->state == SS_DISCONNECTING) {
1118 err = -ENOTCONN;
1119 break;
1120 }
1121 release_sock(sk);
1122 timeo = schedule_timeout(timeo);
1123 lock_sock(sk);
1124 }
1125 err = 0;
1126 if (!skb_queue_empty(&sk->sk_receive_queue))
1127 break;
1128 err = sock_intr_errno(timeo);
1129 if (signal_pending(current))
1130 break;
1131 err = -EAGAIN;
1132 if (!timeo)
1133 break;
1134 }
1135 finish_wait(sk_sleep(sk), &wait);
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001136 *timeop = timeo;
Ying Xue9bbb4ecc2014-01-17 09:50:07 +08001137 return err;
1138}
1139
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001140/**
Ying Xue247f0f32014-02-18 16:06:46 +08001141 * tipc_recvmsg - receive packet-oriented message
Per Lidenb97bf3f2006-01-02 19:04:38 +01001142 * @iocb: (unused)
1143 * @m: descriptor for message info
1144 * @buf_len: total size of user buffer area
1145 * @flags: receive flags
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001146 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001147 * Used for SOCK_DGRAM, SOCK_RDM, and SOCK_SEQPACKET messages.
1148 * If the complete message doesn't fit in user area, truncate it.
1149 *
1150 * Returns size of returned message data, errno otherwise
1151 */
Ying Xue247f0f32014-02-18 16:06:46 +08001152static int tipc_recvmsg(struct kiocb *iocb, struct socket *sock,
1153 struct msghdr *m, size_t buf_len, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001154{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001155 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001156 struct tipc_sock *tsk = tipc_sk(sk);
1157 struct tipc_port *port = &tsk->port;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001158 struct sk_buff *buf;
1159 struct tipc_msg *msg;
Ying Xue9bbb4ecc2014-01-17 09:50:07 +08001160 long timeo;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001161 unsigned int sz;
1162 u32 err;
1163 int res;
1164
Allan Stephens0c3141e2008-04-15 00:22:02 -07001165 /* Catch invalid receive requests */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001166 if (unlikely(!buf_len))
1167 return -EINVAL;
1168
Allan Stephens0c3141e2008-04-15 00:22:02 -07001169 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001170
Allan Stephens0c3141e2008-04-15 00:22:02 -07001171 if (unlikely(sock->state == SS_UNCONNECTED)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001172 res = -ENOTCONN;
1173 goto exit;
1174 }
1175
Ying Xue9bbb4ecc2014-01-17 09:50:07 +08001176 timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001177restart:
Per Lidenb97bf3f2006-01-02 19:04:38 +01001178
Allan Stephens0c3141e2008-04-15 00:22:02 -07001179 /* Look for a message in receive queue; wait if necessary */
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001180 res = tipc_wait_for_rcvmsg(sock, &timeo);
Ying Xue9bbb4ecc2014-01-17 09:50:07 +08001181 if (res)
1182 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001183
1184 /* Look at first message in receive queue */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001185 buf = skb_peek(&sk->sk_receive_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001186 msg = buf_msg(buf);
1187 sz = msg_data_sz(msg);
1188 err = msg_errcode(msg);
1189
Per Lidenb97bf3f2006-01-02 19:04:38 +01001190 /* Discard an empty non-errored message & try again */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001191 if ((!sz) && (!err)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07001192 advance_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001193 goto restart;
1194 }
1195
1196 /* Capture sender's address (optional) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001197 set_orig_addr(m, msg);
1198
1199 /* Capture ancillary data (optional) */
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001200 res = anc_data_recv(m, msg, port);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001201 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001202 goto exit;
1203
1204 /* Capture message data (if valid) & compute return value (always) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001205 if (!err) {
1206 if (unlikely(buf_len < sz)) {
1207 sz = buf_len;
1208 m->msg_flags |= MSG_TRUNC;
1209 }
Allan Stephens0232fd02011-02-21 09:45:40 -05001210 res = skb_copy_datagram_iovec(buf, msg_hdr_sz(msg),
1211 m->msg_iov, sz);
1212 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001213 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001214 res = sz;
1215 } else {
1216 if ((sock->state == SS_READY) ||
1217 ((err == TIPC_CONN_SHUTDOWN) || m->msg_control))
1218 res = 0;
1219 else
1220 res = -ECONNRESET;
1221 }
1222
1223 /* Consume received message (optional) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001224 if (likely(!(flags & MSG_PEEK))) {
Allan Stephens99009802008-04-15 00:06:12 -07001225 if ((sock->state != SS_READY) &&
Jon Paul Maloy60120522014-06-25 20:41:42 -05001226 (++tsk->rcv_unacked >= TIPC_CONNACK_INTV)) {
1227 tipc_acknowledge(port->ref, tsk->rcv_unacked);
1228 tsk->rcv_unacked = 0;
1229 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001230 advance_rx_queue(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001231 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001232exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001233 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001234 return res;
1235}
1236
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001237/**
Ying Xue247f0f32014-02-18 16:06:46 +08001238 * tipc_recv_stream - receive stream-oriented data
Per Lidenb97bf3f2006-01-02 19:04:38 +01001239 * @iocb: (unused)
1240 * @m: descriptor for message info
1241 * @buf_len: total size of user buffer area
1242 * @flags: receive flags
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001243 *
1244 * Used for SOCK_STREAM messages only. If not enough data is available
Per Lidenb97bf3f2006-01-02 19:04:38 +01001245 * will optionally wait for more; never truncates data.
1246 *
1247 * Returns size of returned message data, errno otherwise
1248 */
Ying Xue247f0f32014-02-18 16:06:46 +08001249static int tipc_recv_stream(struct kiocb *iocb, struct socket *sock,
1250 struct msghdr *m, size_t buf_len, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001251{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001252 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001253 struct tipc_sock *tsk = tipc_sk(sk);
1254 struct tipc_port *port = &tsk->port;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001255 struct sk_buff *buf;
1256 struct tipc_msg *msg;
Ying Xue9bbb4ecc2014-01-17 09:50:07 +08001257 long timeo;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001258 unsigned int sz;
Florian Westphal3720d402010-08-17 11:00:04 +00001259 int sz_to_copy, target, needed;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001260 int sz_copied = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001261 u32 err;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001262 int res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001263
1264 /* Catch invalid receive attempts */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001265 if (unlikely(!buf_len))
1266 return -EINVAL;
1267
Allan Stephens0c3141e2008-04-15 00:22:02 -07001268 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001269
Ying Xue9bbb4ecc2014-01-17 09:50:07 +08001270 if (unlikely(sock->state == SS_UNCONNECTED)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001271 res = -ENOTCONN;
1272 goto exit;
1273 }
1274
Florian Westphal3720d402010-08-17 11:00:04 +00001275 target = sock_rcvlowat(sk, flags & MSG_WAITALL, buf_len);
Ying Xue9bbb4ecc2014-01-17 09:50:07 +08001276 timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001277
Allan Stephens0c3141e2008-04-15 00:22:02 -07001278restart:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001279 /* Look for a message in receive queue; wait if necessary */
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001280 res = tipc_wait_for_rcvmsg(sock, &timeo);
Ying Xue9bbb4ecc2014-01-17 09:50:07 +08001281 if (res)
1282 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001283
1284 /* Look at first message in receive queue */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001285 buf = skb_peek(&sk->sk_receive_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001286 msg = buf_msg(buf);
1287 sz = msg_data_sz(msg);
1288 err = msg_errcode(msg);
1289
1290 /* Discard an empty non-errored message & try again */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001291 if ((!sz) && (!err)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07001292 advance_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001293 goto restart;
1294 }
1295
1296 /* Optionally capture sender's address & ancillary data of first msg */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001297 if (sz_copied == 0) {
1298 set_orig_addr(m, msg);
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001299 res = anc_data_recv(m, msg, port);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001300 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001301 goto exit;
1302 }
1303
1304 /* Capture message data (if valid) & compute return value (always) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001305 if (!err) {
Allan Stephens0232fd02011-02-21 09:45:40 -05001306 u32 offset = (u32)(unsigned long)(TIPC_SKB_CB(buf)->handle);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001307
Allan Stephens0232fd02011-02-21 09:45:40 -05001308 sz -= offset;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001309 needed = (buf_len - sz_copied);
1310 sz_to_copy = (sz <= needed) ? sz : needed;
Allan Stephens0232fd02011-02-21 09:45:40 -05001311
1312 res = skb_copy_datagram_iovec(buf, msg_hdr_sz(msg) + offset,
1313 m->msg_iov, sz_to_copy);
1314 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001315 goto exit;
Allan Stephens0232fd02011-02-21 09:45:40 -05001316
Per Lidenb97bf3f2006-01-02 19:04:38 +01001317 sz_copied += sz_to_copy;
1318
1319 if (sz_to_copy < sz) {
1320 if (!(flags & MSG_PEEK))
Allan Stephens0232fd02011-02-21 09:45:40 -05001321 TIPC_SKB_CB(buf)->handle =
1322 (void *)(unsigned long)(offset + sz_to_copy);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001323 goto exit;
1324 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001325 } else {
1326 if (sz_copied != 0)
1327 goto exit; /* can't add error msg to valid data */
1328
1329 if ((err == TIPC_CONN_SHUTDOWN) || m->msg_control)
1330 res = 0;
1331 else
1332 res = -ECONNRESET;
1333 }
1334
1335 /* Consume received message (optional) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001336 if (likely(!(flags & MSG_PEEK))) {
Jon Paul Maloy60120522014-06-25 20:41:42 -05001337 if (unlikely(++tsk->rcv_unacked >= TIPC_CONNACK_INTV)) {
1338 tipc_acknowledge(port->ref, tsk->rcv_unacked);
1339 tsk->rcv_unacked = 0;
1340 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001341 advance_rx_queue(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001342 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001343
1344 /* Loop around if more data is required */
Joe Perchesf64f9e72009-11-29 16:55:45 -08001345 if ((sz_copied < buf_len) && /* didn't get all requested data */
1346 (!skb_queue_empty(&sk->sk_receive_queue) ||
Florian Westphal3720d402010-08-17 11:00:04 +00001347 (sz_copied < target)) && /* and more is ready or required */
Joe Perchesf64f9e72009-11-29 16:55:45 -08001348 (!(flags & MSG_PEEK)) && /* and aren't just peeking at data */
1349 (!err)) /* and haven't reached a FIN */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001350 goto restart;
1351
1352exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001353 release_sock(sk);
Allan Stephensa3b0a5a2006-06-25 23:48:22 -07001354 return sz_copied ? sz_copied : res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001355}
1356
1357/**
Ying Xuef288bef2012-08-21 11:16:57 +08001358 * tipc_write_space - wake up thread if port congestion is released
1359 * @sk: socket
1360 */
1361static void tipc_write_space(struct sock *sk)
1362{
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, POLLOUT |
1369 POLLWRNORM | POLLWRBAND);
1370 rcu_read_unlock();
1371}
1372
1373/**
1374 * tipc_data_ready - wake up threads to indicate messages have been received
1375 * @sk: socket
1376 * @len: the length of messages
1377 */
David S. Miller676d2362014-04-11 16:15:36 -04001378static void tipc_data_ready(struct sock *sk)
Ying Xuef288bef2012-08-21 11:16:57 +08001379{
1380 struct socket_wq *wq;
1381
1382 rcu_read_lock();
1383 wq = rcu_dereference(sk->sk_wq);
1384 if (wq_has_sleeper(wq))
1385 wake_up_interruptible_sync_poll(&wq->wait, POLLIN |
1386 POLLRDNORM | POLLRDBAND);
1387 rcu_read_unlock();
1388}
1389
1390/**
Ying Xue7e6c1312012-11-29 18:39:14 -05001391 * filter_connect - Handle all incoming messages for a connection-based socket
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001392 * @tsk: TIPC socket
Ying Xue7e6c1312012-11-29 18:39:14 -05001393 * @msg: message
1394 *
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001395 * Returns 0 (TIPC_OK) if everyting ok, -TIPC_ERR_NO_PORT otherwise
Ying Xue7e6c1312012-11-29 18:39:14 -05001396 */
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001397static int filter_connect(struct tipc_sock *tsk, struct sk_buff **buf)
Ying Xue7e6c1312012-11-29 18:39:14 -05001398{
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001399 struct sock *sk = &tsk->sk;
1400 struct tipc_port *port = &tsk->port;
Jon Paul Maloy8826cde2014-03-12 11:31:09 -04001401 struct socket *sock = sk->sk_socket;
Ying Xue7e6c1312012-11-29 18:39:14 -05001402 struct tipc_msg *msg = buf_msg(*buf);
Jon Paul Maloy8826cde2014-03-12 11:31:09 -04001403
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001404 int retval = -TIPC_ERR_NO_PORT;
Ying Xue584d24b2012-11-29 18:51:19 -05001405 int res;
Ying Xue7e6c1312012-11-29 18:39:14 -05001406
1407 if (msg_mcast(msg))
1408 return retval;
1409
1410 switch ((int)sock->state) {
1411 case SS_CONNECTED:
1412 /* Accept only connection-based messages sent by peer */
Jon Paul Maloy8826cde2014-03-12 11:31:09 -04001413 if (msg_connected(msg) && tipc_port_peer_msg(port, msg)) {
Ying Xue7e6c1312012-11-29 18:39:14 -05001414 if (unlikely(msg_errcode(msg))) {
1415 sock->state = SS_DISCONNECTING;
Jon Paul Maloy8826cde2014-03-12 11:31:09 -04001416 __tipc_port_disconnect(port);
Ying Xue7e6c1312012-11-29 18:39:14 -05001417 }
1418 retval = TIPC_OK;
1419 }
1420 break;
1421 case SS_CONNECTING:
1422 /* Accept only ACK or NACK message */
Ying Xue584d24b2012-11-29 18:51:19 -05001423 if (unlikely(msg_errcode(msg))) {
1424 sock->state = SS_DISCONNECTING;
Erik Hugne2c8d8512013-08-28 09:29:58 +02001425 sk->sk_err = ECONNREFUSED;
Ying Xue7e6c1312012-11-29 18:39:14 -05001426 retval = TIPC_OK;
Ying Xue584d24b2012-11-29 18:51:19 -05001427 break;
1428 }
1429
1430 if (unlikely(!msg_connected(msg)))
1431 break;
1432
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001433 res = auto_connect(tsk, msg);
Ying Xue584d24b2012-11-29 18:51:19 -05001434 if (res) {
1435 sock->state = SS_DISCONNECTING;
Erik Hugne2c8d8512013-08-28 09:29:58 +02001436 sk->sk_err = -res;
Ying Xue584d24b2012-11-29 18:51:19 -05001437 retval = TIPC_OK;
1438 break;
1439 }
1440
1441 /* If an incoming message is an 'ACK-', it should be
1442 * discarded here because it doesn't contain useful
1443 * data. In addition, we should try to wake up
1444 * connect() routine if sleeping.
1445 */
1446 if (msg_data_sz(msg) == 0) {
1447 kfree_skb(*buf);
1448 *buf = NULL;
1449 if (waitqueue_active(sk_sleep(sk)))
1450 wake_up_interruptible(sk_sleep(sk));
1451 }
1452 retval = TIPC_OK;
Ying Xue7e6c1312012-11-29 18:39:14 -05001453 break;
1454 case SS_LISTENING:
1455 case SS_UNCONNECTED:
1456 /* Accept only SYN message */
1457 if (!msg_connected(msg) && !(msg_errcode(msg)))
1458 retval = TIPC_OK;
1459 break;
1460 case SS_DISCONNECTING:
1461 break;
1462 default:
1463 pr_err("Unknown socket state %u\n", sock->state);
1464 }
1465 return retval;
1466}
1467
1468/**
Ying Xueaba79f32013-01-20 23:30:09 +01001469 * rcvbuf_limit - get proper overload limit of socket receive queue
1470 * @sk: socket
1471 * @buf: message
1472 *
1473 * For all connection oriented messages, irrespective of importance,
1474 * the default overload value (i.e. 67MB) is set as limit.
1475 *
1476 * For all connectionless messages, by default new queue limits are
1477 * as belows:
1478 *
Ying Xuecc79dd12013-06-17 10:54:37 -04001479 * TIPC_LOW_IMPORTANCE (4 MB)
1480 * TIPC_MEDIUM_IMPORTANCE (8 MB)
1481 * TIPC_HIGH_IMPORTANCE (16 MB)
1482 * TIPC_CRITICAL_IMPORTANCE (32 MB)
Ying Xueaba79f32013-01-20 23:30:09 +01001483 *
1484 * Returns overload limit according to corresponding message importance
1485 */
1486static unsigned int rcvbuf_limit(struct sock *sk, struct sk_buff *buf)
1487{
1488 struct tipc_msg *msg = buf_msg(buf);
Ying Xueaba79f32013-01-20 23:30:09 +01001489
1490 if (msg_connected(msg))
wangweidong0cee6bb2013-12-12 09:36:39 +08001491 return sysctl_tipc_rmem[2];
1492
1493 return sk->sk_rcvbuf >> TIPC_CRITICAL_IMPORTANCE <<
1494 msg_importance(msg);
Ying Xueaba79f32013-01-20 23:30:09 +01001495}
1496
1497/**
Allan Stephens0c3141e2008-04-15 00:22:02 -07001498 * filter_rcv - validate incoming message
1499 * @sk: socket
Per Lidenb97bf3f2006-01-02 19:04:38 +01001500 * @buf: message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001501 *
Allan Stephens0c3141e2008-04-15 00:22:02 -07001502 * Enqueues message on receive queue if acceptable; optionally handles
1503 * disconnect indication for a connected socket.
1504 *
1505 * Called with socket lock already taken; port lock may also be taken.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001506 *
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001507 * Returns 0 (TIPC_OK) if message was consumed, -TIPC error code if message
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001508 * to be rejected, 1 (TIPC_FWD_MSG) if (CONN_MANAGER) message to be forwarded
Per Lidenb97bf3f2006-01-02 19:04:38 +01001509 */
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001510static int filter_rcv(struct sock *sk, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001511{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001512 struct socket *sock = sk->sk_socket;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001513 struct tipc_sock *tsk = tipc_sk(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001514 struct tipc_msg *msg = buf_msg(buf);
Ying Xueaba79f32013-01-20 23:30:09 +01001515 unsigned int limit = rcvbuf_limit(sk, buf);
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001516 u32 onode;
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001517 int rc = TIPC_OK;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001518
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001519 if (unlikely(msg_user(msg) == CONN_MANAGER))
1520 return tipc_sk_proto_rcv(tsk, &onode, buf);
Jon Paul Maloyec8a2e52014-06-25 20:41:40 -05001521
Per Lidenb97bf3f2006-01-02 19:04:38 +01001522 /* Reject message if it is wrong sort of message for socket */
Allan Stephensaad58542012-04-26 18:13:08 -04001523 if (msg_type(msg) > TIPC_DIRECT_MSG)
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001524 return -TIPC_ERR_NO_PORT;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001525
Per Lidenb97bf3f2006-01-02 19:04:38 +01001526 if (sock->state == SS_READY) {
Allan Stephensb29f1422010-12-31 18:59:25 +00001527 if (msg_connected(msg))
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001528 return -TIPC_ERR_NO_PORT;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001529 } else {
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001530 rc = filter_connect(tsk, &buf);
1531 if (rc != TIPC_OK || buf == NULL)
1532 return rc;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001533 }
1534
1535 /* Reject message if there isn't room to queue it */
Ying Xueaba79f32013-01-20 23:30:09 +01001536 if (sk_rmem_alloc_get(sk) + buf->truesize >= limit)
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001537 return -TIPC_ERR_OVERLOAD;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001538
Ying Xueaba79f32013-01-20 23:30:09 +01001539 /* Enqueue message */
Ying Xue40682432013-10-18 07:23:16 +02001540 TIPC_SKB_CB(buf)->handle = NULL;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001541 __skb_queue_tail(&sk->sk_receive_queue, buf);
Ying Xueaba79f32013-01-20 23:30:09 +01001542 skb_set_owner_r(buf, sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001543
David S. Miller676d2362014-04-11 16:15:36 -04001544 sk->sk_data_ready(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001545 return TIPC_OK;
1546}
1547
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001548/**
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -04001549 * tipc_backlog_rcv - handle incoming message from backlog queue
Allan Stephens0c3141e2008-04-15 00:22:02 -07001550 * @sk: socket
1551 * @buf: message
1552 *
1553 * Caller must hold socket lock, but not port lock.
1554 *
1555 * Returns 0
1556 */
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -04001557static int tipc_backlog_rcv(struct sock *sk, struct sk_buff *buf)
Allan Stephens0c3141e2008-04-15 00:22:02 -07001558{
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001559 int rc;
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -05001560 u32 onode;
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -04001561 struct tipc_sock *tsk = tipc_sk(sk);
Jon Paul Maloy02c00c22014-06-09 11:08:18 -05001562 uint truesize = buf->truesize;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001563
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001564 rc = filter_rcv(sk, buf);
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -04001565
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001566 if (likely(!rc)) {
1567 if (atomic_read(&tsk->dupl_rcvcnt) < TIPC_CONN_OVERLOAD_LIMIT)
1568 atomic_add(truesize, &tsk->dupl_rcvcnt);
1569 return 0;
1570 }
1571
1572 if ((rc < 0) && !tipc_msg_reverse(buf, &onode, -rc))
1573 return 0;
1574
Jon Paul Maloy9fbfb8b2014-07-16 20:41:03 -04001575 tipc_link_xmit(buf, onode, 0);
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -04001576
Allan Stephens0c3141e2008-04-15 00:22:02 -07001577 return 0;
1578}
1579
1580/**
Jon Paul Maloy24be34b2014-03-12 11:31:10 -04001581 * tipc_sk_rcv - handle incoming message
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001582 * @buf: buffer containing arriving message
1583 * Consumes buffer
1584 * Returns 0 if success, or errno: -EHOSTUNREACH
Allan Stephens0c3141e2008-04-15 00:22:02 -07001585 */
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001586int tipc_sk_rcv(struct sk_buff *buf)
Allan Stephens0c3141e2008-04-15 00:22:02 -07001587{
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001588 struct tipc_sock *tsk;
1589 struct tipc_port *port;
1590 struct sock *sk;
1591 u32 dport = msg_destport(buf_msg(buf));
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001592 int rc = TIPC_OK;
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -04001593 uint limit;
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -05001594 u32 dnode;
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001595
Jon Paul Maloy5a379072014-06-25 20:41:36 -05001596 /* Validate destination and message */
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001597 port = tipc_port_lock(dport);
1598 if (unlikely(!port)) {
Jon Paul Maloy5a379072014-06-25 20:41:36 -05001599 rc = tipc_msg_eval(buf, &dnode);
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001600 goto exit;
1601 }
1602
1603 tsk = tipc_port_to_sock(port);
1604 sk = &tsk->sk;
1605
1606 /* Queue message */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001607 bh_lock_sock(sk);
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001608
Allan Stephens0c3141e2008-04-15 00:22:02 -07001609 if (!sock_owned_by_user(sk)) {
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001610 rc = filter_rcv(sk, buf);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001611 } else {
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -04001612 if (sk->sk_backlog.len == 0)
1613 atomic_set(&tsk->dupl_rcvcnt, 0);
1614 limit = rcvbuf_limit(sk, buf) + atomic_read(&tsk->dupl_rcvcnt);
1615 if (sk_add_backlog(sk, buf, limit))
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001616 rc = -TIPC_ERR_OVERLOAD;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001617 }
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001618 bh_unlock_sock(sk);
1619 tipc_port_unlock(port);
1620
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001621 if (likely(!rc))
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001622 return 0;
1623exit:
Jon Paul Maloy5a379072014-06-25 20:41:36 -05001624 if ((rc < 0) && !tipc_msg_reverse(buf, &dnode, -rc))
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -05001625 return -EHOSTUNREACH;
Jon Paul Maloy5a379072014-06-25 20:41:36 -05001626
Jon Paul Maloy9fbfb8b2014-07-16 20:41:03 -04001627 tipc_link_xmit(buf, dnode, 0);
Jon Paul Maloy5a379072014-06-25 20:41:36 -05001628 return (rc < 0) ? -EHOSTUNREACH : 0;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001629}
1630
Ying Xue78eb3a52014-01-17 09:50:03 +08001631static int tipc_wait_for_connect(struct socket *sock, long *timeo_p)
1632{
1633 struct sock *sk = sock->sk;
1634 DEFINE_WAIT(wait);
1635 int done;
1636
1637 do {
1638 int err = sock_error(sk);
1639 if (err)
1640 return err;
1641 if (!*timeo_p)
1642 return -ETIMEDOUT;
1643 if (signal_pending(current))
1644 return sock_intr_errno(*timeo_p);
1645
1646 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
1647 done = sk_wait_event(sk, timeo_p, sock->state != SS_CONNECTING);
1648 finish_wait(sk_sleep(sk), &wait);
1649 } while (!done);
1650 return 0;
1651}
1652
Per Lidenb97bf3f2006-01-02 19:04:38 +01001653/**
Ying Xue247f0f32014-02-18 16:06:46 +08001654 * tipc_connect - establish a connection to another TIPC port
Per Lidenb97bf3f2006-01-02 19:04:38 +01001655 * @sock: socket structure
1656 * @dest: socket address for destination port
1657 * @destlen: size of socket address data structure
Allan Stephens0c3141e2008-04-15 00:22:02 -07001658 * @flags: file-related flags associated with socket
Per Lidenb97bf3f2006-01-02 19:04:38 +01001659 *
1660 * Returns 0 on success, errno otherwise
1661 */
Ying Xue247f0f32014-02-18 16:06:46 +08001662static int tipc_connect(struct socket *sock, struct sockaddr *dest,
1663 int destlen, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001664{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001665 struct sock *sk = sock->sk;
Allan Stephensb89741a2008-04-15 00:20:37 -07001666 struct sockaddr_tipc *dst = (struct sockaddr_tipc *)dest;
1667 struct msghdr m = {NULL,};
Ying Xue78eb3a52014-01-17 09:50:03 +08001668 long timeout = (flags & O_NONBLOCK) ? 0 : tipc_sk(sk)->conn_timeout;
1669 socket_state previous;
Allan Stephensb89741a2008-04-15 00:20:37 -07001670 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001671
Allan Stephens0c3141e2008-04-15 00:22:02 -07001672 lock_sock(sk);
1673
Allan Stephensb89741a2008-04-15 00:20:37 -07001674 /* For now, TIPC does not allow use of connect() with DGRAM/RDM types */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001675 if (sock->state == SS_READY) {
1676 res = -EOPNOTSUPP;
1677 goto exit;
1678 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001679
Allan Stephensb89741a2008-04-15 00:20:37 -07001680 /*
1681 * Reject connection attempt using multicast address
1682 *
1683 * Note: send_msg() validates the rest of the address fields,
1684 * so there's no need to do it here
1685 */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001686 if (dst->addrtype == TIPC_ADDR_MCAST) {
1687 res = -EINVAL;
1688 goto exit;
1689 }
1690
Ying Xue78eb3a52014-01-17 09:50:03 +08001691 previous = sock->state;
Ying Xue584d24b2012-11-29 18:51:19 -05001692 switch (sock->state) {
1693 case SS_UNCONNECTED:
1694 /* Send a 'SYN-' to destination */
1695 m.msg_name = dest;
1696 m.msg_namelen = destlen;
1697
1698 /* If connect is in non-blocking case, set MSG_DONTWAIT to
1699 * indicate send_msg() is never blocked.
1700 */
1701 if (!timeout)
1702 m.msg_flags = MSG_DONTWAIT;
1703
Ying Xue247f0f32014-02-18 16:06:46 +08001704 res = tipc_sendmsg(NULL, sock, &m, 0);
Ying Xue584d24b2012-11-29 18:51:19 -05001705 if ((res < 0) && (res != -EWOULDBLOCK))
1706 goto exit;
1707
1708 /* Just entered SS_CONNECTING state; the only
1709 * difference is that return value in non-blocking
1710 * case is EINPROGRESS, rather than EALREADY.
1711 */
1712 res = -EINPROGRESS;
Ying Xue584d24b2012-11-29 18:51:19 -05001713 case SS_CONNECTING:
Ying Xue78eb3a52014-01-17 09:50:03 +08001714 if (previous == SS_CONNECTING)
1715 res = -EALREADY;
1716 if (!timeout)
1717 goto exit;
1718 timeout = msecs_to_jiffies(timeout);
1719 /* Wait until an 'ACK' or 'RST' arrives, or a timeout occurs */
1720 res = tipc_wait_for_connect(sock, &timeout);
Ying Xue584d24b2012-11-29 18:51:19 -05001721 break;
1722 case SS_CONNECTED:
1723 res = -EISCONN;
1724 break;
1725 default:
1726 res = -EINVAL;
Ying Xue78eb3a52014-01-17 09:50:03 +08001727 break;
Allan Stephensb89741a2008-04-15 00:20:37 -07001728 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001729exit:
1730 release_sock(sk);
Allan Stephensb89741a2008-04-15 00:20:37 -07001731 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001732}
1733
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001734/**
Ying Xue247f0f32014-02-18 16:06:46 +08001735 * tipc_listen - allow socket to listen for incoming connections
Per Lidenb97bf3f2006-01-02 19:04:38 +01001736 * @sock: socket structure
1737 * @len: (unused)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001738 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001739 * Returns 0 on success, errno otherwise
1740 */
Ying Xue247f0f32014-02-18 16:06:46 +08001741static int tipc_listen(struct socket *sock, int len)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001742{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001743 struct sock *sk = sock->sk;
1744 int res;
1745
1746 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001747
Ying Xue245f3d32011-07-06 06:01:13 -04001748 if (sock->state != SS_UNCONNECTED)
Allan Stephens0c3141e2008-04-15 00:22:02 -07001749 res = -EINVAL;
1750 else {
1751 sock->state = SS_LISTENING;
1752 res = 0;
1753 }
1754
1755 release_sock(sk);
1756 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001757}
1758
Ying Xue6398e232014-01-17 09:50:04 +08001759static int tipc_wait_for_accept(struct socket *sock, long timeo)
1760{
1761 struct sock *sk = sock->sk;
1762 DEFINE_WAIT(wait);
1763 int err;
1764
1765 /* True wake-one mechanism for incoming connections: only
1766 * one process gets woken up, not the 'whole herd'.
1767 * Since we do not 'race & poll' for established sockets
1768 * anymore, the common case will execute the loop only once.
1769 */
1770 for (;;) {
1771 prepare_to_wait_exclusive(sk_sleep(sk), &wait,
1772 TASK_INTERRUPTIBLE);
Ying Xuefe8e4642014-03-06 14:40:18 +01001773 if (timeo && skb_queue_empty(&sk->sk_receive_queue)) {
Ying Xue6398e232014-01-17 09:50:04 +08001774 release_sock(sk);
1775 timeo = schedule_timeout(timeo);
1776 lock_sock(sk);
1777 }
1778 err = 0;
1779 if (!skb_queue_empty(&sk->sk_receive_queue))
1780 break;
1781 err = -EINVAL;
1782 if (sock->state != SS_LISTENING)
1783 break;
1784 err = sock_intr_errno(timeo);
1785 if (signal_pending(current))
1786 break;
1787 err = -EAGAIN;
1788 if (!timeo)
1789 break;
1790 }
1791 finish_wait(sk_sleep(sk), &wait);
1792 return err;
1793}
1794
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001795/**
Ying Xue247f0f32014-02-18 16:06:46 +08001796 * tipc_accept - wait for connection request
Per Lidenb97bf3f2006-01-02 19:04:38 +01001797 * @sock: listening socket
1798 * @newsock: new socket that is to be connected
1799 * @flags: file-related flags associated with socket
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001800 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001801 * Returns 0 on success, errno otherwise
1802 */
Ying Xue247f0f32014-02-18 16:06:46 +08001803static int tipc_accept(struct socket *sock, struct socket *new_sock, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001804{
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001805 struct sock *new_sk, *sk = sock->sk;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001806 struct sk_buff *buf;
Jon Paul Maloy8826cde2014-03-12 11:31:09 -04001807 struct tipc_port *new_port;
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001808 struct tipc_msg *msg;
Jon Paul Maloyf9fef182014-03-12 11:31:08 -04001809 struct tipc_portid peer;
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001810 u32 new_ref;
Ying Xue6398e232014-01-17 09:50:04 +08001811 long timeo;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001812 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001813
Allan Stephens0c3141e2008-04-15 00:22:02 -07001814 lock_sock(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001815
Allan Stephens0c3141e2008-04-15 00:22:02 -07001816 if (sock->state != SS_LISTENING) {
1817 res = -EINVAL;
1818 goto exit;
1819 }
Ying Xue6398e232014-01-17 09:50:04 +08001820 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
1821 res = tipc_wait_for_accept(sock, timeo);
1822 if (res)
1823 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001824
1825 buf = skb_peek(&sk->sk_receive_queue);
1826
Ying Xuec5fa7b32013-06-17 10:54:39 -04001827 res = tipc_sk_create(sock_net(sock->sk), new_sock, 0, 1);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001828 if (res)
1829 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001830
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001831 new_sk = new_sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001832 new_port = &tipc_sk(new_sk)->port;
Jon Paul Maloy8826cde2014-03-12 11:31:09 -04001833 new_ref = new_port->ref;
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001834 msg = buf_msg(buf);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001835
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001836 /* we lock on new_sk; but lockdep sees the lock on sk */
1837 lock_sock_nested(new_sk, SINGLE_DEPTH_NESTING);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001838
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001839 /*
1840 * Reject any stray messages received by new socket
1841 * before the socket lock was taken (very, very unlikely)
1842 */
1843 reject_rx_queue(new_sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001844
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001845 /* Connect new socket to it's peer */
Jon Paul Maloyf9fef182014-03-12 11:31:08 -04001846 peer.ref = msg_origport(msg);
1847 peer.node = msg_orignode(msg);
1848 tipc_port_connect(new_ref, &peer);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001849 new_sock->state = SS_CONNECTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001850
Jon Paul Maloy3b4f3022014-03-12 11:31:11 -04001851 tipc_port_set_importance(new_port, msg_importance(msg));
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001852 if (msg_named(msg)) {
Jon Paul Maloy8826cde2014-03-12 11:31:09 -04001853 new_port->conn_type = msg_nametype(msg);
1854 new_port->conn_instance = msg_nameinst(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001855 }
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001856
1857 /*
1858 * Respond to 'SYN-' by discarding it & returning 'ACK'-.
1859 * Respond to 'SYN+' by queuing it on new socket.
1860 */
1861 if (!msg_data_sz(msg)) {
1862 struct msghdr m = {NULL,};
1863
1864 advance_rx_queue(sk);
Ying Xue247f0f32014-02-18 16:06:46 +08001865 tipc_send_packet(NULL, new_sock, &m, 0);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001866 } else {
1867 __skb_dequeue(&sk->sk_receive_queue);
1868 __skb_queue_head(&new_sk->sk_receive_queue, buf);
Ying Xueaba79f32013-01-20 23:30:09 +01001869 skb_set_owner_r(buf, new_sk);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001870 }
1871 release_sock(new_sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001872exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001873 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001874 return res;
1875}
1876
1877/**
Ying Xue247f0f32014-02-18 16:06:46 +08001878 * tipc_shutdown - shutdown socket connection
Per Lidenb97bf3f2006-01-02 19:04:38 +01001879 * @sock: socket structure
Allan Stephense247a8f2008-03-06 15:05:38 -08001880 * @how: direction to close (must be SHUT_RDWR)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001881 *
1882 * Terminates connection (if necessary), then purges socket's receive queue.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001883 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001884 * Returns 0 on success, errno otherwise
1885 */
Ying Xue247f0f32014-02-18 16:06:46 +08001886static int tipc_shutdown(struct socket *sock, int how)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001887{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001888 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001889 struct tipc_sock *tsk = tipc_sk(sk);
1890 struct tipc_port *port = &tsk->port;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001891 struct sk_buff *buf;
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -05001892 u32 peer;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001893 int res;
1894
Allan Stephense247a8f2008-03-06 15:05:38 -08001895 if (how != SHUT_RDWR)
1896 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001897
Allan Stephens0c3141e2008-04-15 00:22:02 -07001898 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001899
1900 switch (sock->state) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07001901 case SS_CONNECTING:
Per Lidenb97bf3f2006-01-02 19:04:38 +01001902 case SS_CONNECTED:
1903
Per Lidenb97bf3f2006-01-02 19:04:38 +01001904restart:
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001905 /* Disconnect and send a 'FIN+' or 'FIN-' message to peer */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001906 buf = __skb_dequeue(&sk->sk_receive_queue);
1907 if (buf) {
Ying Xue40682432013-10-18 07:23:16 +02001908 if (TIPC_SKB_CB(buf)->handle != NULL) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04001909 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001910 goto restart;
1911 }
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001912 tipc_port_disconnect(port->ref);
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -05001913 if (tipc_msg_reverse(buf, &peer, TIPC_CONN_SHUTDOWN))
Jon Paul Maloy9fbfb8b2014-07-16 20:41:03 -04001914 tipc_link_xmit(buf, peer, 0);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001915 } else {
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001916 tipc_port_shutdown(port->ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001917 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001918
1919 sock->state = SS_DISCONNECTING;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001920
1921 /* fall through */
1922
1923 case SS_DISCONNECTING:
1924
Ying Xue75031152012-10-29 09:38:15 -04001925 /* Discard any unreceived messages */
Ying Xue57467e52013-01-20 23:30:08 +01001926 __skb_queue_purge(&sk->sk_receive_queue);
Ying Xue75031152012-10-29 09:38:15 -04001927
1928 /* Wake up anyone sleeping in poll */
1929 sk->sk_state_change(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001930 res = 0;
1931 break;
1932
1933 default:
1934 res = -ENOTCONN;
1935 }
1936
Allan Stephens0c3141e2008-04-15 00:22:02 -07001937 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001938 return res;
1939}
1940
1941/**
Ying Xue247f0f32014-02-18 16:06:46 +08001942 * tipc_setsockopt - set socket option
Per Lidenb97bf3f2006-01-02 19:04:38 +01001943 * @sock: socket structure
1944 * @lvl: option level
1945 * @opt: option identifier
1946 * @ov: pointer to new option value
1947 * @ol: length of option value
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001948 *
1949 * For stream sockets only, accepts and ignores all IPPROTO_TCP options
Per Lidenb97bf3f2006-01-02 19:04:38 +01001950 * (to ease compatibility).
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001951 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001952 * Returns 0 on success, errno otherwise
1953 */
Ying Xue247f0f32014-02-18 16:06:46 +08001954static int tipc_setsockopt(struct socket *sock, int lvl, int opt,
1955 char __user *ov, unsigned int ol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001956{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001957 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001958 struct tipc_sock *tsk = tipc_sk(sk);
1959 struct tipc_port *port = &tsk->port;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001960 u32 value;
1961 int res;
1962
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001963 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
1964 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001965 if (lvl != SOL_TIPC)
1966 return -ENOPROTOOPT;
1967 if (ol < sizeof(value))
1968 return -EINVAL;
Allan Stephens2db99832010-12-31 18:59:33 +00001969 res = get_user(value, (u32 __user *)ov);
1970 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001971 return res;
1972
Allan Stephens0c3141e2008-04-15 00:22:02 -07001973 lock_sock(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001974
Per Lidenb97bf3f2006-01-02 19:04:38 +01001975 switch (opt) {
1976 case TIPC_IMPORTANCE:
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001977 tipc_port_set_importance(port, value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001978 break;
1979 case TIPC_SRC_DROPPABLE:
1980 if (sock->type != SOCK_STREAM)
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001981 tipc_port_set_unreliable(port, value);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001982 else
Per Lidenb97bf3f2006-01-02 19:04:38 +01001983 res = -ENOPROTOOPT;
1984 break;
1985 case TIPC_DEST_DROPPABLE:
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001986 tipc_port_set_unreturnable(port, value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001987 break;
1988 case TIPC_CONN_TIMEOUT:
Allan Stephensa0f40f02011-05-26 13:44:34 -04001989 tipc_sk(sk)->conn_timeout = value;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001990 /* no need to set "res", since already 0 at this point */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001991 break;
1992 default:
1993 res = -EINVAL;
1994 }
1995
Allan Stephens0c3141e2008-04-15 00:22:02 -07001996 release_sock(sk);
1997
Per Lidenb97bf3f2006-01-02 19:04:38 +01001998 return res;
1999}
2000
2001/**
Ying Xue247f0f32014-02-18 16:06:46 +08002002 * tipc_getsockopt - get socket option
Per Lidenb97bf3f2006-01-02 19:04:38 +01002003 * @sock: socket structure
2004 * @lvl: option level
2005 * @opt: option identifier
2006 * @ov: receptacle for option value
2007 * @ol: receptacle for length of option value
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002008 *
2009 * For stream sockets only, returns 0 length result for all IPPROTO_TCP options
Per Lidenb97bf3f2006-01-02 19:04:38 +01002010 * (to ease compatibility).
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002011 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002012 * Returns 0 on success, errno otherwise
2013 */
Ying Xue247f0f32014-02-18 16:06:46 +08002014static int tipc_getsockopt(struct socket *sock, int lvl, int opt,
2015 char __user *ov, int __user *ol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002016{
Allan Stephens0c3141e2008-04-15 00:22:02 -07002017 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002018 struct tipc_sock *tsk = tipc_sk(sk);
2019 struct tipc_port *port = &tsk->port;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002020 int len;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002021 u32 value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002022 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002023
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002024 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
2025 return put_user(0, ol);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002026 if (lvl != SOL_TIPC)
2027 return -ENOPROTOOPT;
Allan Stephens2db99832010-12-31 18:59:33 +00002028 res = get_user(len, ol);
2029 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002030 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002031
Allan Stephens0c3141e2008-04-15 00:22:02 -07002032 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002033
2034 switch (opt) {
2035 case TIPC_IMPORTANCE:
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002036 value = tipc_port_importance(port);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002037 break;
2038 case TIPC_SRC_DROPPABLE:
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002039 value = tipc_port_unreliable(port);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002040 break;
2041 case TIPC_DEST_DROPPABLE:
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002042 value = tipc_port_unreturnable(port);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002043 break;
2044 case TIPC_CONN_TIMEOUT:
Allan Stephensa0f40f02011-05-26 13:44:34 -04002045 value = tipc_sk(sk)->conn_timeout;
Allan Stephens0c3141e2008-04-15 00:22:02 -07002046 /* no need to set "res", since already 0 at this point */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002047 break;
Allan Stephens0e659672010-12-31 18:59:32 +00002048 case TIPC_NODE_RECVQ_DEPTH:
Ying Xue9da3d472012-11-27 06:15:27 -05002049 value = 0; /* was tipc_queue_size, now obsolete */
oscar.medina@motorola.com66506132009-06-30 03:25:39 +00002050 break;
Allan Stephens0e659672010-12-31 18:59:32 +00002051 case TIPC_SOCK_RECVQ_DEPTH:
oscar.medina@motorola.com66506132009-06-30 03:25:39 +00002052 value = skb_queue_len(&sk->sk_receive_queue);
2053 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002054 default:
2055 res = -EINVAL;
2056 }
2057
Allan Stephens0c3141e2008-04-15 00:22:02 -07002058 release_sock(sk);
2059
Paul Gortmaker25860c32010-12-31 18:59:31 +00002060 if (res)
2061 return res; /* "get" failed */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002062
Paul Gortmaker25860c32010-12-31 18:59:31 +00002063 if (len < sizeof(value))
2064 return -EINVAL;
2065
2066 if (copy_to_user(ov, &value, sizeof(value)))
2067 return -EFAULT;
2068
2069 return put_user(sizeof(value), ol);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002070}
2071
Wei Yongjun52f50ce2014-07-20 13:14:28 +08002072static int tipc_ioctl(struct socket *sk, unsigned int cmd, unsigned long arg)
Erik Hugne78acb1f2014-04-24 16:26:47 +02002073{
2074 struct tipc_sioc_ln_req lnr;
2075 void __user *argp = (void __user *)arg;
2076
2077 switch (cmd) {
2078 case SIOCGETLINKNAME:
2079 if (copy_from_user(&lnr, argp, sizeof(lnr)))
2080 return -EFAULT;
2081 if (!tipc_node_get_linkname(lnr.bearer_id, lnr.peer,
2082 lnr.linkname, TIPC_MAX_LINK_NAME)) {
2083 if (copy_to_user(argp, &lnr, sizeof(lnr)))
2084 return -EFAULT;
2085 return 0;
2086 }
2087 return -EADDRNOTAVAIL;
Erik Hugne78acb1f2014-04-24 16:26:47 +02002088 default:
2089 return -ENOIOCTLCMD;
2090 }
2091}
2092
Ben Hutchingsae86b9e2012-07-10 10:55:35 +00002093/* Protocol switches for the various types of TIPC sockets */
2094
Florian Westphalbca65ea2008-02-07 18:18:01 -08002095static const struct proto_ops msg_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00002096 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002097 .family = AF_TIPC,
Ying Xue247f0f32014-02-18 16:06:46 +08002098 .release = tipc_release,
2099 .bind = tipc_bind,
2100 .connect = tipc_connect,
Allan Stephens5eee6a62007-06-10 17:24:55 -07002101 .socketpair = sock_no_socketpair,
Ying Xue245f3d32011-07-06 06:01:13 -04002102 .accept = sock_no_accept,
Ying Xue247f0f32014-02-18 16:06:46 +08002103 .getname = tipc_getname,
2104 .poll = tipc_poll,
Erik Hugne78acb1f2014-04-24 16:26:47 +02002105 .ioctl = tipc_ioctl,
Ying Xue245f3d32011-07-06 06:01:13 -04002106 .listen = sock_no_listen,
Ying Xue247f0f32014-02-18 16:06:46 +08002107 .shutdown = tipc_shutdown,
2108 .setsockopt = tipc_setsockopt,
2109 .getsockopt = tipc_getsockopt,
2110 .sendmsg = tipc_sendmsg,
2111 .recvmsg = tipc_recvmsg,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09002112 .mmap = sock_no_mmap,
2113 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01002114};
2115
Florian Westphalbca65ea2008-02-07 18:18:01 -08002116static const struct proto_ops packet_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00002117 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002118 .family = AF_TIPC,
Ying Xue247f0f32014-02-18 16:06:46 +08002119 .release = tipc_release,
2120 .bind = tipc_bind,
2121 .connect = tipc_connect,
Allan Stephens5eee6a62007-06-10 17:24:55 -07002122 .socketpair = sock_no_socketpair,
Ying Xue247f0f32014-02-18 16:06:46 +08002123 .accept = tipc_accept,
2124 .getname = tipc_getname,
2125 .poll = tipc_poll,
Erik Hugne78acb1f2014-04-24 16:26:47 +02002126 .ioctl = tipc_ioctl,
Ying Xue247f0f32014-02-18 16:06:46 +08002127 .listen = tipc_listen,
2128 .shutdown = tipc_shutdown,
2129 .setsockopt = tipc_setsockopt,
2130 .getsockopt = tipc_getsockopt,
2131 .sendmsg = tipc_send_packet,
2132 .recvmsg = tipc_recvmsg,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09002133 .mmap = sock_no_mmap,
2134 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01002135};
2136
Florian Westphalbca65ea2008-02-07 18:18:01 -08002137static const struct proto_ops stream_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00002138 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002139 .family = AF_TIPC,
Ying Xue247f0f32014-02-18 16:06:46 +08002140 .release = tipc_release,
2141 .bind = tipc_bind,
2142 .connect = tipc_connect,
Allan Stephens5eee6a62007-06-10 17:24:55 -07002143 .socketpair = sock_no_socketpair,
Ying Xue247f0f32014-02-18 16:06:46 +08002144 .accept = tipc_accept,
2145 .getname = tipc_getname,
2146 .poll = tipc_poll,
Erik Hugne78acb1f2014-04-24 16:26:47 +02002147 .ioctl = tipc_ioctl,
Ying Xue247f0f32014-02-18 16:06:46 +08002148 .listen = tipc_listen,
2149 .shutdown = tipc_shutdown,
2150 .setsockopt = tipc_setsockopt,
2151 .getsockopt = tipc_getsockopt,
2152 .sendmsg = tipc_send_stream,
2153 .recvmsg = tipc_recv_stream,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09002154 .mmap = sock_no_mmap,
2155 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01002156};
2157
Florian Westphalbca65ea2008-02-07 18:18:01 -08002158static const struct net_proto_family tipc_family_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00002159 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002160 .family = AF_TIPC,
Ying Xuec5fa7b32013-06-17 10:54:39 -04002161 .create = tipc_sk_create
Per Lidenb97bf3f2006-01-02 19:04:38 +01002162};
2163
2164static struct proto tipc_proto = {
2165 .name = "TIPC",
2166 .owner = THIS_MODULE,
Ying Xuecc79dd12013-06-17 10:54:37 -04002167 .obj_size = sizeof(struct tipc_sock),
2168 .sysctl_rmem = sysctl_tipc_rmem
Per Lidenb97bf3f2006-01-02 19:04:38 +01002169};
2170
Ying Xuec5fa7b32013-06-17 10:54:39 -04002171static struct proto tipc_proto_kern = {
2172 .name = "TIPC",
2173 .obj_size = sizeof(struct tipc_sock),
2174 .sysctl_rmem = sysctl_tipc_rmem
2175};
2176
Per Lidenb97bf3f2006-01-02 19:04:38 +01002177/**
Per Liden4323add2006-01-18 00:38:21 +01002178 * tipc_socket_init - initialize TIPC socket interface
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002179 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002180 * Returns 0 on success, errno otherwise
2181 */
Per Liden4323add2006-01-18 00:38:21 +01002182int tipc_socket_init(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002183{
2184 int res;
2185
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002186 res = proto_register(&tipc_proto, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002187 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002188 pr_err("Failed to register TIPC protocol type\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002189 goto out;
2190 }
2191
2192 res = sock_register(&tipc_family_ops);
2193 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002194 pr_err("Failed to register TIPC socket type\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002195 proto_unregister(&tipc_proto);
2196 goto out;
2197 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002198 out:
2199 return res;
2200}
2201
2202/**
Per Liden4323add2006-01-18 00:38:21 +01002203 * tipc_socket_stop - stop TIPC socket interface
Per Lidenb97bf3f2006-01-02 19:04:38 +01002204 */
Per Liden4323add2006-01-18 00:38:21 +01002205void tipc_socket_stop(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002206{
Per Lidenb97bf3f2006-01-02 19:04:38 +01002207 sock_unregister(tipc_family_ops.family);
2208 proto_unregister(&tipc_proto);
2209}