blob: c58f66be7e18f4054e708fa57f8eed8b1a33a7ae [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
Ying Xue07f6c4b2015-01-07 13:41:58 +080037#include <linux/rhashtable.h>
38#include <linux/jhash.h>
Per Lidenb97bf3f2006-01-02 19:04:38 +010039#include "core.h"
Jon Paul Maloye2dafe82014-06-25 20:41:37 -050040#include "name_table.h"
Erik Hugne78acb1f2014-04-24 16:26:47 +020041#include "node.h"
Jon Paul Maloye2dafe82014-06-25 20:41:37 -050042#include "link.h"
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -040043#include "config.h"
Jon Paul Maloy2e84c602014-08-22 18:09:18 -040044#include "socket.h"
Erik Hugne2cf8aa12012-06-29 00:16:37 -040045
Ying Xue07f6c4b2015-01-07 13:41:58 +080046#define SS_LISTENING -1 /* socket is listening */
47#define SS_READY -2 /* socket is connectionless */
Per Lidenb97bf3f2006-01-02 19:04:38 +010048
Ying Xue07f6c4b2015-01-07 13:41:58 +080049#define CONN_TIMEOUT_DEFAULT 8000 /* default connect timeout = 8s */
Ying Xue2f55c432015-01-09 15:27:00 +080050#define CONN_PROBING_INTERVAL msecs_to_jiffies(3600000) /* [ms] => 1 h */
Ying Xue07f6c4b2015-01-07 13:41:58 +080051#define TIPC_FWD_MSG 1
52#define TIPC_CONN_OK 0
53#define TIPC_CONN_PROBING 1
54#define TIPC_MAX_PORT 0xffffffff
55#define TIPC_MIN_PORT 1
Jon Paul Maloy301bae52014-08-22 18:09:20 -040056
57/**
58 * struct tipc_sock - TIPC socket structure
59 * @sk: socket - interacts with 'port' and with user via the socket API
60 * @connected: non-zero if port is currently connected to a peer port
61 * @conn_type: TIPC type used when connection was established
62 * @conn_instance: TIPC instance used when connection was established
63 * @published: non-zero if port has one or more associated names
64 * @max_pkt: maximum packet size "hint" used when building messages sent by port
Ying Xue07f6c4b2015-01-07 13:41:58 +080065 * @portid: unique port identity in TIPC socket hash table
Jon Paul Maloy301bae52014-08-22 18:09:20 -040066 * @phdr: preformatted message header used when sending messages
67 * @port_list: adjacent ports in TIPC's global list of ports
68 * @publications: list of publications for port
69 * @pub_count: total # of publications port has made during its lifetime
70 * @probing_state:
Ying Xue2f55c432015-01-09 15:27:00 +080071 * @probing_intv:
Jon Paul Maloy301bae52014-08-22 18:09:20 -040072 * @timer:
73 * @port: port - interacts with 'sk' and with the rest of the TIPC stack
74 * @peer_name: the peer of the connection, if any
75 * @conn_timeout: the time we can wait for an unresponded setup request
76 * @dupl_rcvcnt: number of bytes counted twice, in both backlog and rcv queue
77 * @link_cong: non-zero if owner must sleep because of link congestion
78 * @sent_unacked: # messages sent by socket, and not yet acked by peer
79 * @rcv_unacked: # messages read by user, but not yet acked back to peer
Ying Xue07f6c4b2015-01-07 13:41:58 +080080 * @node: hash table node
81 * @rcu: rcu struct for tipc_sock
Jon Paul Maloy301bae52014-08-22 18:09:20 -040082 */
83struct tipc_sock {
84 struct sock sk;
85 int connected;
86 u32 conn_type;
87 u32 conn_instance;
88 int published;
89 u32 max_pkt;
Ying Xue07f6c4b2015-01-07 13:41:58 +080090 u32 portid;
Jon Paul Maloy301bae52014-08-22 18:09:20 -040091 struct tipc_msg phdr;
92 struct list_head sock_list;
93 struct list_head publications;
94 u32 pub_count;
95 u32 probing_state;
Ying Xue2f55c432015-01-09 15:27:00 +080096 unsigned long probing_intv;
Jon Paul Maloy301bae52014-08-22 18:09:20 -040097 struct timer_list timer;
98 uint conn_timeout;
99 atomic_t dupl_rcvcnt;
100 bool link_cong;
101 uint sent_unacked;
102 uint rcv_unacked;
Ying Xue07f6c4b2015-01-07 13:41:58 +0800103 struct rhash_head node;
104 struct rcu_head rcu;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400105};
Per Lidenb97bf3f2006-01-02 19:04:38 +0100106
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -0400107static int tipc_backlog_rcv(struct sock *sk, struct sk_buff *skb);
David S. Miller676d2362014-04-11 16:15:36 -0400108static void tipc_data_ready(struct sock *sk);
Ying Xuef288bef2012-08-21 11:16:57 +0800109static void tipc_write_space(struct sock *sk);
Ying Xue247f0f32014-02-18 16:06:46 +0800110static int tipc_release(struct socket *sock);
111static int tipc_accept(struct socket *sock, struct socket *new_sock, int flags);
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400112static int tipc_wait_for_sndmsg(struct socket *sock, long *timeo_p);
Ying Xuef2f2a962015-01-09 15:27:02 +0800113static void tipc_sk_timeout(unsigned long data);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400114static int tipc_sk_publish(struct tipc_sock *tsk, uint scope,
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400115 struct tipc_name_seq const *seq);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400116static int tipc_sk_withdraw(struct tipc_sock *tsk, uint scope,
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400117 struct tipc_name_seq const *seq);
Ying Xue07f6c4b2015-01-07 13:41:58 +0800118static struct tipc_sock *tipc_sk_lookup(u32 portid);
119static int tipc_sk_insert(struct tipc_sock *tsk);
120static void tipc_sk_remove(struct tipc_sock *tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100121
Florian Westphalbca65ea2008-02-07 18:18:01 -0800122static const struct proto_ops packet_ops;
123static const struct proto_ops stream_ops;
124static const struct proto_ops msg_ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100125
126static struct proto tipc_proto;
Ying Xuec5fa7b32013-06-17 10:54:39 -0400127static struct proto tipc_proto_kern;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100128
Richard Alpe1a1a1432014-11-20 10:29:11 +0100129static const struct nla_policy tipc_nl_sock_policy[TIPC_NLA_SOCK_MAX + 1] = {
130 [TIPC_NLA_SOCK_UNSPEC] = { .type = NLA_UNSPEC },
131 [TIPC_NLA_SOCK_ADDR] = { .type = NLA_U32 },
132 [TIPC_NLA_SOCK_REF] = { .type = NLA_U32 },
133 [TIPC_NLA_SOCK_CON] = { .type = NLA_NESTED },
134 [TIPC_NLA_SOCK_HAS_PUBL] = { .type = NLA_FLAG }
135};
136
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900137/*
Allan Stephens0c3141e2008-04-15 00:22:02 -0700138 * Revised TIPC socket locking policy:
139 *
140 * Most socket operations take the standard socket lock when they start
141 * and hold it until they finish (or until they need to sleep). Acquiring
142 * this lock grants the owner exclusive access to the fields of the socket
143 * data structures, with the exception of the backlog queue. A few socket
144 * operations can be done without taking the socket lock because they only
145 * read socket information that never changes during the life of the socket.
146 *
147 * Socket operations may acquire the lock for the associated TIPC port if they
148 * need to perform an operation on the port. If any routine needs to acquire
149 * both the socket lock and the port lock it must take the socket lock first
150 * to avoid the risk of deadlock.
151 *
152 * The dispatcher handling incoming messages cannot grab the socket lock in
153 * the standard fashion, since invoked it runs at the BH level and cannot block.
154 * Instead, it checks to see if the socket lock is currently owned by someone,
155 * and either handles the message itself or adds it to the socket's backlog
156 * queue; in the latter case the queued message is processed once the process
157 * owning the socket lock releases it.
158 *
159 * NOTE: Releasing the socket lock while an operation is sleeping overcomes
160 * the problem of a blocked socket operation preventing any other operations
161 * from occurring. However, applications must be careful if they have
162 * multiple threads trying to send (or receive) on the same socket, as these
163 * operations might interfere with each other. For example, doing a connect
164 * and a receive at the same time might allow the receive to consume the
165 * ACK message meant for the connect. While additional work could be done
166 * to try and overcome this, it doesn't seem to be worthwhile at the present.
167 *
168 * NOTE: Releasing the socket lock while an operation is sleeping also ensures
169 * that another operation that must be performed in a non-blocking manner is
170 * not delayed for very long because the lock has already been taken.
171 *
172 * NOTE: This code assumes that certain fields of a port/socket pair are
173 * constant over its lifetime; such fields can be examined without taking
174 * the socket lock and/or port lock, and do not need to be re-read even
175 * after resuming processing after waiting. These fields include:
176 * - socket type
177 * - pointer to socket sk structure (aka tipc_sock structure)
178 * - pointer to port structure
179 * - port reference
Per Lidenb97bf3f2006-01-02 19:04:38 +0100180 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100181
Ying Xue07f6c4b2015-01-07 13:41:58 +0800182/* Protects tipc socket hash table mutations */
183static struct rhashtable tipc_sk_rht;
184
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400185static u32 tsk_peer_node(struct tipc_sock *tsk)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400186{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400187 return msg_destnode(&tsk->phdr);
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400188}
189
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400190static u32 tsk_peer_port(struct tipc_sock *tsk)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400191{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400192 return msg_destport(&tsk->phdr);
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400193}
194
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400195static bool tsk_unreliable(struct tipc_sock *tsk)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400196{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400197 return msg_src_droppable(&tsk->phdr) != 0;
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400198}
199
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400200static void tsk_set_unreliable(struct tipc_sock *tsk, bool unreliable)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400201{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400202 msg_set_src_droppable(&tsk->phdr, unreliable ? 1 : 0);
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400203}
204
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400205static bool tsk_unreturnable(struct tipc_sock *tsk)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400206{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400207 return msg_dest_droppable(&tsk->phdr) != 0;
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400208}
209
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400210static void tsk_set_unreturnable(struct tipc_sock *tsk, bool unreturnable)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400211{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400212 msg_set_dest_droppable(&tsk->phdr, unreturnable ? 1 : 0);
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400213}
214
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400215static int tsk_importance(struct tipc_sock *tsk)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400216{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400217 return msg_importance(&tsk->phdr);
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400218}
219
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400220static int tsk_set_importance(struct tipc_sock *tsk, int imp)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400221{
222 if (imp > TIPC_CRITICAL_IMPORTANCE)
223 return -EINVAL;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400224 msg_set_importance(&tsk->phdr, (u32)imp);
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400225 return 0;
226}
Jon Paul Maloy8826cde2014-03-12 11:31:09 -0400227
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400228static struct tipc_sock *tipc_sk(const struct sock *sk)
229{
230 return container_of(sk, struct tipc_sock, sk);
231}
232
233static int tsk_conn_cong(struct tipc_sock *tsk)
234{
235 return tsk->sent_unacked >= TIPC_FLOWCTRL_WIN;
236}
237
Per Lidenb97bf3f2006-01-02 19:04:38 +0100238/**
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400239 * tsk_advance_rx_queue - discard first buffer in socket receive queue
Allan Stephens0c3141e2008-04-15 00:22:02 -0700240 *
241 * Caller must hold socket lock
Per Lidenb97bf3f2006-01-02 19:04:38 +0100242 */
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400243static void tsk_advance_rx_queue(struct sock *sk)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100244{
Allan Stephens5f6d9122011-11-04 13:24:29 -0400245 kfree_skb(__skb_dequeue(&sk->sk_receive_queue));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100246}
247
248/**
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400249 * tsk_rej_rx_queue - reject all buffers in socket receive queue
Allan Stephens0c3141e2008-04-15 00:22:02 -0700250 *
251 * Caller must hold socket lock
252 */
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400253static void tsk_rej_rx_queue(struct sock *sk)
Allan Stephens0c3141e2008-04-15 00:22:02 -0700254{
Ying Xuea6ca1092014-11-26 11:41:55 +0800255 struct sk_buff *skb;
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -0500256 u32 dnode;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700257
Ying Xuea6ca1092014-11-26 11:41:55 +0800258 while ((skb = __skb_dequeue(&sk->sk_receive_queue))) {
259 if (tipc_msg_reverse(skb, &dnode, TIPC_ERR_NO_PORT))
260 tipc_link_xmit_skb(skb, dnode, 0);
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -0500261 }
Allan Stephens0c3141e2008-04-15 00:22:02 -0700262}
263
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400264/* tsk_peer_msg - verify if message was sent by connected port's peer
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400265 *
266 * Handles cases where the node's network address has changed from
267 * the default of <0.0.0> to its configured setting.
268 */
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400269static bool tsk_peer_msg(struct tipc_sock *tsk, struct tipc_msg *msg)
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400270{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400271 u32 peer_port = tsk_peer_port(tsk);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400272 u32 orig_node;
273 u32 peer_node;
274
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400275 if (unlikely(!tsk->connected))
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400276 return false;
277
278 if (unlikely(msg_origport(msg) != peer_port))
279 return false;
280
281 orig_node = msg_orignode(msg);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400282 peer_node = tsk_peer_node(tsk);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400283
284 if (likely(orig_node == peer_node))
285 return true;
286
287 if (!orig_node && (peer_node == tipc_own_addr))
288 return true;
289
290 if (!peer_node && (orig_node == tipc_own_addr))
291 return true;
292
293 return false;
294}
295
Allan Stephens0c3141e2008-04-15 00:22:02 -0700296/**
Ying Xuec5fa7b32013-06-17 10:54:39 -0400297 * tipc_sk_create - create a TIPC socket
Allan Stephens0c3141e2008-04-15 00:22:02 -0700298 * @net: network namespace (must be default network)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100299 * @sock: pre-allocated socket structure
300 * @protocol: protocol indicator (must be 0)
Eric Paris3f378b62009-11-05 22:18:14 -0800301 * @kern: caused by kernel or by userspace?
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900302 *
Allan Stephens0c3141e2008-04-15 00:22:02 -0700303 * This routine creates additional data structures used by the TIPC socket,
304 * initializes them, and links them together.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100305 *
306 * Returns 0 on success, errno otherwise
307 */
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400308static int tipc_sk_create(struct net *net, struct socket *sock,
309 int protocol, int kern)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100310{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700311 const struct proto_ops *ops;
312 socket_state state;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100313 struct sock *sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400314 struct tipc_sock *tsk;
Jon Paul Maloy5b8fa7c2014-08-22 18:09:13 -0400315 struct tipc_msg *msg;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700316
317 /* Validate arguments */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100318 if (unlikely(protocol != 0))
319 return -EPROTONOSUPPORT;
320
Per Lidenb97bf3f2006-01-02 19:04:38 +0100321 switch (sock->type) {
322 case SOCK_STREAM:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700323 ops = &stream_ops;
324 state = SS_UNCONNECTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100325 break;
326 case SOCK_SEQPACKET:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700327 ops = &packet_ops;
328 state = SS_UNCONNECTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100329 break;
330 case SOCK_DGRAM:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100331 case SOCK_RDM:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700332 ops = &msg_ops;
333 state = SS_READY;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100334 break;
Allan Stephens49978652006-06-25 23:47:18 -0700335 default:
Allan Stephens49978652006-06-25 23:47:18 -0700336 return -EPROTOTYPE;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100337 }
338
Allan Stephens0c3141e2008-04-15 00:22:02 -0700339 /* Allocate socket's protocol area */
Ying Xuec5fa7b32013-06-17 10:54:39 -0400340 if (!kern)
341 sk = sk_alloc(net, AF_TIPC, GFP_KERNEL, &tipc_proto);
342 else
343 sk = sk_alloc(net, AF_TIPC, GFP_KERNEL, &tipc_proto_kern);
344
Allan Stephens0c3141e2008-04-15 00:22:02 -0700345 if (sk == NULL)
346 return -ENOMEM;
347
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400348 tsk = tipc_sk(sk);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400349 tsk->max_pkt = MAX_PKT_DEFAULT;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400350 INIT_LIST_HEAD(&tsk->publications);
351 msg = &tsk->phdr;
Jon Paul Maloy5b8fa7c2014-08-22 18:09:13 -0400352 tipc_msg_init(msg, TIPC_LOW_IMPORTANCE, TIPC_NAMED_MSG,
353 NAMED_H_SIZE, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100354
Allan Stephens0c3141e2008-04-15 00:22:02 -0700355 /* Finish initializing socket data structures */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700356 sock->ops = ops;
357 sock->state = state;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100358 sock_init_data(sock, sk);
Ying Xue07f6c4b2015-01-07 13:41:58 +0800359 if (tipc_sk_insert(tsk)) {
360 pr_warn("Socket create failed; port numbrer exhausted\n");
361 return -EINVAL;
362 }
363 msg_set_origport(msg, tsk->portid);
Ying Xuef2f2a962015-01-09 15:27:02 +0800364 setup_timer(&tsk->timer, tipc_sk_timeout, (unsigned long)tsk);
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -0400365 sk->sk_backlog_rcv = tipc_backlog_rcv;
Ying Xuecc79dd12013-06-17 10:54:37 -0400366 sk->sk_rcvbuf = sysctl_tipc_rmem[1];
Ying Xuef288bef2012-08-21 11:16:57 +0800367 sk->sk_data_ready = tipc_data_ready;
368 sk->sk_write_space = tipc_write_space;
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -0400369 tsk->conn_timeout = CONN_TIMEOUT_DEFAULT;
Jon Paul Maloy60120522014-06-25 20:41:42 -0500370 tsk->sent_unacked = 0;
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -0400371 atomic_set(&tsk->dupl_rcvcnt, 0);
Allan Stephens7ef43eb2008-05-12 15:42:28 -0700372
Allan Stephens0c3141e2008-04-15 00:22:02 -0700373 if (sock->state == SS_READY) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400374 tsk_set_unreturnable(tsk, true);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700375 if (sock->type == SOCK_DGRAM)
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400376 tsk_set_unreliable(tsk, true);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700377 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100378 return 0;
379}
380
381/**
Ying Xuec5fa7b32013-06-17 10:54:39 -0400382 * tipc_sock_create_local - create TIPC socket from inside TIPC module
383 * @type: socket type - SOCK_RDM or SOCK_SEQPACKET
384 *
385 * We cannot use sock_creat_kern here because it bumps module user count.
386 * Since socket owner and creator is the same module we must make sure
387 * that module count remains zero for module local sockets, otherwise
388 * we cannot do rmmod.
389 *
390 * Returns 0 on success, errno otherwise
391 */
392int tipc_sock_create_local(int type, struct socket **res)
393{
394 int rc;
Ying Xuec5fa7b32013-06-17 10:54:39 -0400395
396 rc = sock_create_lite(AF_TIPC, type, 0, res);
397 if (rc < 0) {
398 pr_err("Failed to create kernel socket\n");
399 return rc;
400 }
401 tipc_sk_create(&init_net, *res, 0, 1);
402
Ying Xuec5fa7b32013-06-17 10:54:39 -0400403 return 0;
404}
405
406/**
407 * tipc_sock_release_local - release socket created by tipc_sock_create_local
408 * @sock: the socket to be released.
409 *
410 * Module reference count is not incremented when such sockets are created,
411 * so we must keep it from being decremented when they are released.
412 */
413void tipc_sock_release_local(struct socket *sock)
414{
Ying Xue247f0f32014-02-18 16:06:46 +0800415 tipc_release(sock);
Ying Xuec5fa7b32013-06-17 10:54:39 -0400416 sock->ops = NULL;
417 sock_release(sock);
418}
419
420/**
421 * tipc_sock_accept_local - accept a connection on a socket created
422 * with tipc_sock_create_local. Use this function to avoid that
423 * module reference count is inadvertently incremented.
424 *
425 * @sock: the accepting socket
426 * @newsock: reference to the new socket to be created
427 * @flags: socket flags
428 */
429
430int tipc_sock_accept_local(struct socket *sock, struct socket **newsock,
Paul Gortmakerae8509c2013-06-17 10:54:47 -0400431 int flags)
Ying Xuec5fa7b32013-06-17 10:54:39 -0400432{
433 struct sock *sk = sock->sk;
434 int ret;
435
436 ret = sock_create_lite(sk->sk_family, sk->sk_type,
437 sk->sk_protocol, newsock);
438 if (ret < 0)
439 return ret;
440
Ying Xue247f0f32014-02-18 16:06:46 +0800441 ret = tipc_accept(sock, *newsock, flags);
Ying Xuec5fa7b32013-06-17 10:54:39 -0400442 if (ret < 0) {
443 sock_release(*newsock);
444 return ret;
445 }
446 (*newsock)->ops = sock->ops;
447 return ret;
448}
449
Ying Xue07f6c4b2015-01-07 13:41:58 +0800450static void tipc_sk_callback(struct rcu_head *head)
451{
452 struct tipc_sock *tsk = container_of(head, struct tipc_sock, rcu);
453
454 sock_put(&tsk->sk);
455}
456
Ying Xuec5fa7b32013-06-17 10:54:39 -0400457/**
Ying Xue247f0f32014-02-18 16:06:46 +0800458 * tipc_release - destroy a TIPC socket
Per Lidenb97bf3f2006-01-02 19:04:38 +0100459 * @sock: socket to destroy
460 *
461 * This routine cleans up any messages that are still queued on the socket.
462 * For DGRAM and RDM socket types, all queued messages are rejected.
463 * For SEQPACKET and STREAM socket types, the first message is rejected
464 * and any others are discarded. (If the first message on a STREAM socket
465 * is partially-read, it is discarded and the next one is rejected instead.)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900466 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100467 * NOTE: Rejected messages are not necessarily returned to the sender! They
468 * are returned or discarded according to the "destination droppable" setting
469 * specified for the message by the sender.
470 *
471 * Returns 0 on success, errno otherwise
472 */
Ying Xue247f0f32014-02-18 16:06:46 +0800473static int tipc_release(struct socket *sock)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100474{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100475 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400476 struct tipc_sock *tsk;
Ying Xuea6ca1092014-11-26 11:41:55 +0800477 struct sk_buff *skb;
Ying Xuef2f2a962015-01-09 15:27:02 +0800478 u32 dnode, probing_state;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100479
Allan Stephens0c3141e2008-04-15 00:22:02 -0700480 /*
481 * Exit if socket isn't fully initialized (occurs when a failed accept()
482 * releases a pre-allocated child socket that was never used)
483 */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700484 if (sk == NULL)
485 return 0;
486
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400487 tsk = tipc_sk(sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700488 lock_sock(sk);
489
490 /*
491 * Reject all unreceived messages, except on an active connection
492 * (which disconnects locally & sends a 'FIN+' to peer)
493 */
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400494 dnode = tsk_peer_node(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100495 while (sock->state != SS_DISCONNECTING) {
Ying Xuea6ca1092014-11-26 11:41:55 +0800496 skb = __skb_dequeue(&sk->sk_receive_queue);
497 if (skb == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100498 break;
Ying Xuea6ca1092014-11-26 11:41:55 +0800499 if (TIPC_SKB_CB(skb)->handle != NULL)
500 kfree_skb(skb);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700501 else {
502 if ((sock->state == SS_CONNECTING) ||
503 (sock->state == SS_CONNECTED)) {
504 sock->state = SS_DISCONNECTING;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400505 tsk->connected = 0;
Ying Xue07f6c4b2015-01-07 13:41:58 +0800506 tipc_node_remove_conn(dnode, tsk->portid);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700507 }
Ying Xuea6ca1092014-11-26 11:41:55 +0800508 if (tipc_msg_reverse(skb, &dnode, TIPC_ERR_NO_PORT))
509 tipc_link_xmit_skb(skb, dnode, 0);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700510 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100511 }
512
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400513 tipc_sk_withdraw(tsk, 0, NULL);
Ying Xuef2f2a962015-01-09 15:27:02 +0800514 probing_state = tsk->probing_state;
515 if (del_timer_sync(&tsk->timer) && probing_state != TIPC_CONN_PROBING)
516 sock_put(sk);
Ying Xue07f6c4b2015-01-07 13:41:58 +0800517 tipc_sk_remove(tsk);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400518 if (tsk->connected) {
Ying Xuea6ca1092014-11-26 11:41:55 +0800519 skb = tipc_msg_create(TIPC_CRITICAL_IMPORTANCE, TIPC_CONN_MSG,
Jon Paul Maloy5b8fa7c2014-08-22 18:09:13 -0400520 SHORT_H_SIZE, 0, dnode, tipc_own_addr,
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400521 tsk_peer_port(tsk),
Ying Xue07f6c4b2015-01-07 13:41:58 +0800522 tsk->portid, TIPC_ERR_NO_PORT);
Ying Xuea6ca1092014-11-26 11:41:55 +0800523 if (skb)
Ying Xue07f6c4b2015-01-07 13:41:58 +0800524 tipc_link_xmit_skb(skb, dnode, tsk->portid);
525 tipc_node_remove_conn(dnode, tsk->portid);
Jon Paul Maloy5b8fa7c2014-08-22 18:09:13 -0400526 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100527
Allan Stephens0c3141e2008-04-15 00:22:02 -0700528 /* Discard any remaining (connection-based) messages in receive queue */
Ying Xue57467e52013-01-20 23:30:08 +0100529 __skb_queue_purge(&sk->sk_receive_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100530
Allan Stephens0c3141e2008-04-15 00:22:02 -0700531 /* Reject any messages that accumulated in backlog queue */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700532 sock->state = SS_DISCONNECTING;
533 release_sock(sk);
Ying Xue07f6c4b2015-01-07 13:41:58 +0800534
535 call_rcu(&tsk->rcu, tipc_sk_callback);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700536 sock->sk = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100537
Geert Uytterhoeven065d7e32014-04-06 15:56:14 +0200538 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100539}
540
541/**
Ying Xue247f0f32014-02-18 16:06:46 +0800542 * tipc_bind - associate or disassocate TIPC name(s) with a socket
Per Lidenb97bf3f2006-01-02 19:04:38 +0100543 * @sock: socket structure
544 * @uaddr: socket address describing name(s) and desired operation
545 * @uaddr_len: size of socket address data structure
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900546 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100547 * Name and name sequence binding is indicated using a positive scope value;
548 * a negative scope value unbinds the specified name. Specifying no name
549 * (i.e. a socket address length of 0) unbinds all names from the socket.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900550 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100551 * Returns 0 on success, errno otherwise
Allan Stephens0c3141e2008-04-15 00:22:02 -0700552 *
553 * NOTE: This routine doesn't need to take the socket lock since it doesn't
554 * access any non-constant socket information.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100555 */
Ying Xue247f0f32014-02-18 16:06:46 +0800556static int tipc_bind(struct socket *sock, struct sockaddr *uaddr,
557 int uaddr_len)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100558{
Ying Xue84602762013-12-27 10:18:28 +0800559 struct sock *sk = sock->sk;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100560 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400561 struct tipc_sock *tsk = tipc_sk(sk);
Ying Xue84602762013-12-27 10:18:28 +0800562 int res = -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100563
Ying Xue84602762013-12-27 10:18:28 +0800564 lock_sock(sk);
565 if (unlikely(!uaddr_len)) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400566 res = tipc_sk_withdraw(tsk, 0, NULL);
Ying Xue84602762013-12-27 10:18:28 +0800567 goto exit;
568 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900569
Ying Xue84602762013-12-27 10:18:28 +0800570 if (uaddr_len < sizeof(struct sockaddr_tipc)) {
571 res = -EINVAL;
572 goto exit;
573 }
574 if (addr->family != AF_TIPC) {
575 res = -EAFNOSUPPORT;
576 goto exit;
577 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100578
Per Lidenb97bf3f2006-01-02 19:04:38 +0100579 if (addr->addrtype == TIPC_ADDR_NAME)
580 addr->addr.nameseq.upper = addr->addr.nameseq.lower;
Ying Xue84602762013-12-27 10:18:28 +0800581 else if (addr->addrtype != TIPC_ADDR_NAMESEQ) {
582 res = -EAFNOSUPPORT;
583 goto exit;
584 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900585
Ying Xue13a2e892013-06-17 10:54:40 -0400586 if ((addr->addr.nameseq.type < TIPC_RESERVED_TYPES) &&
Ying Xue7d0ab172013-06-17 10:54:41 -0400587 (addr->addr.nameseq.type != TIPC_TOP_SRV) &&
Ying Xue84602762013-12-27 10:18:28 +0800588 (addr->addr.nameseq.type != TIPC_CFG_SRV)) {
589 res = -EACCES;
590 goto exit;
591 }
Allan Stephensc422f1b2011-11-02 15:49:40 -0400592
Ying Xue84602762013-12-27 10:18:28 +0800593 res = (addr->scope > 0) ?
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400594 tipc_sk_publish(tsk, addr->scope, &addr->addr.nameseq) :
595 tipc_sk_withdraw(tsk, -addr->scope, &addr->addr.nameseq);
Ying Xue84602762013-12-27 10:18:28 +0800596exit:
597 release_sock(sk);
598 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100599}
600
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900601/**
Ying Xue247f0f32014-02-18 16:06:46 +0800602 * tipc_getname - get port ID of socket or peer socket
Per Lidenb97bf3f2006-01-02 19:04:38 +0100603 * @sock: socket structure
604 * @uaddr: area for returned socket address
605 * @uaddr_len: area for returned length of socket address
Allan Stephens2da59912008-07-14 22:43:32 -0700606 * @peer: 0 = own ID, 1 = current peer ID, 2 = current/former peer ID
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900607 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100608 * Returns 0 on success, errno otherwise
Allan Stephens0c3141e2008-04-15 00:22:02 -0700609 *
Allan Stephens2da59912008-07-14 22:43:32 -0700610 * NOTE: This routine doesn't need to take the socket lock since it only
611 * accesses socket information that is unchanging (or which changes in
Allan Stephens0e659672010-12-31 18:59:32 +0000612 * a completely predictable manner).
Per Lidenb97bf3f2006-01-02 19:04:38 +0100613 */
Ying Xue247f0f32014-02-18 16:06:46 +0800614static int tipc_getname(struct socket *sock, struct sockaddr *uaddr,
615 int *uaddr_len, int peer)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100616{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100617 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400618 struct tipc_sock *tsk = tipc_sk(sock->sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100619
Kulikov Vasiliy88f8a5e2010-10-31 07:10:32 +0000620 memset(addr, 0, sizeof(*addr));
Allan Stephens0c3141e2008-04-15 00:22:02 -0700621 if (peer) {
Allan Stephens2da59912008-07-14 22:43:32 -0700622 if ((sock->state != SS_CONNECTED) &&
623 ((peer != 2) || (sock->state != SS_DISCONNECTING)))
624 return -ENOTCONN;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400625 addr->addr.id.ref = tsk_peer_port(tsk);
626 addr->addr.id.node = tsk_peer_node(tsk);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700627 } else {
Ying Xue07f6c4b2015-01-07 13:41:58 +0800628 addr->addr.id.ref = tsk->portid;
Allan Stephensb924dcf2010-11-30 12:01:03 +0000629 addr->addr.id.node = tipc_own_addr;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700630 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100631
632 *uaddr_len = sizeof(*addr);
633 addr->addrtype = TIPC_ADDR_ID;
634 addr->family = AF_TIPC;
635 addr->scope = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100636 addr->addr.name.domain = 0;
637
Allan Stephens0c3141e2008-04-15 00:22:02 -0700638 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100639}
640
641/**
Ying Xue247f0f32014-02-18 16:06:46 +0800642 * tipc_poll - read and possibly block on pollmask
Per Lidenb97bf3f2006-01-02 19:04:38 +0100643 * @file: file structure associated with the socket
644 * @sock: socket for which to calculate the poll bits
645 * @wait: ???
646 *
Allan Stephens9b674e82008-03-26 16:48:21 -0700647 * Returns pollmask value
648 *
649 * COMMENTARY:
650 * It appears that the usual socket locking mechanisms are not useful here
651 * since the pollmask info is potentially out-of-date the moment this routine
652 * exits. TCP and other protocols seem to rely on higher level poll routines
653 * to handle any preventable race conditions, so TIPC will do the same ...
654 *
655 * TIPC sets the returned events as follows:
Allan Stephens9b674e82008-03-26 16:48:21 -0700656 *
Allan Stephensf662c072010-08-17 11:00:06 +0000657 * socket state flags set
658 * ------------ ---------
659 * unconnected no read flags
Erik Hugnec4fc2982012-10-16 16:47:06 +0200660 * POLLOUT if port is not congested
Allan Stephensf662c072010-08-17 11:00:06 +0000661 *
662 * connecting POLLIN/POLLRDNORM if ACK/NACK in rx queue
663 * no write flags
664 *
665 * connected POLLIN/POLLRDNORM if data in rx queue
666 * POLLOUT if port is not congested
667 *
668 * disconnecting POLLIN/POLLRDNORM/POLLHUP
669 * no write flags
670 *
671 * listening POLLIN if SYN in rx queue
672 * no write flags
673 *
674 * ready POLLIN/POLLRDNORM if data in rx queue
675 * [connectionless] POLLOUT (since port cannot be congested)
676 *
677 * IMPORTANT: The fact that a read or write operation is indicated does NOT
678 * imply that the operation will succeed, merely that it should be performed
679 * and will not block.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100680 */
Ying Xue247f0f32014-02-18 16:06:46 +0800681static unsigned int tipc_poll(struct file *file, struct socket *sock,
682 poll_table *wait)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100683{
Allan Stephens9b674e82008-03-26 16:48:21 -0700684 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400685 struct tipc_sock *tsk = tipc_sk(sk);
Allan Stephensf662c072010-08-17 11:00:06 +0000686 u32 mask = 0;
Allan Stephens9b674e82008-03-26 16:48:21 -0700687
Ying Xuef288bef2012-08-21 11:16:57 +0800688 sock_poll_wait(file, sk_sleep(sk), wait);
Allan Stephens9b674e82008-03-26 16:48:21 -0700689
Allan Stephensf662c072010-08-17 11:00:06 +0000690 switch ((int)sock->state) {
Erik Hugnec4fc2982012-10-16 16:47:06 +0200691 case SS_UNCONNECTED:
Jon Paul Maloy60120522014-06-25 20:41:42 -0500692 if (!tsk->link_cong)
Erik Hugnec4fc2982012-10-16 16:47:06 +0200693 mask |= POLLOUT;
694 break;
Allan Stephensf662c072010-08-17 11:00:06 +0000695 case SS_READY:
696 case SS_CONNECTED:
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400697 if (!tsk->link_cong && !tsk_conn_cong(tsk))
Allan Stephensf662c072010-08-17 11:00:06 +0000698 mask |= POLLOUT;
699 /* fall thru' */
700 case SS_CONNECTING:
701 case SS_LISTENING:
702 if (!skb_queue_empty(&sk->sk_receive_queue))
703 mask |= (POLLIN | POLLRDNORM);
704 break;
705 case SS_DISCONNECTING:
706 mask = (POLLIN | POLLRDNORM | POLLHUP);
707 break;
708 }
Allan Stephens9b674e82008-03-26 16:48:21 -0700709
710 return mask;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100711}
712
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400713/**
714 * tipc_sendmcast - send multicast message
715 * @sock: socket structure
716 * @seq: destination address
Al Viro562640f2014-11-15 01:13:43 -0500717 * @msg: message to send
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400718 * @dsz: total length of message data
719 * @timeo: timeout to wait for wakeup
720 *
721 * Called from function tipc_sendmsg(), which has done all sanity checks
722 * Returns the number of bytes sent on success, or errno
723 */
724static int tipc_sendmcast(struct socket *sock, struct tipc_name_seq *seq,
Al Viro562640f2014-11-15 01:13:43 -0500725 struct msghdr *msg, size_t dsz, long timeo)
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400726{
727 struct sock *sk = sock->sk;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400728 struct tipc_msg *mhdr = &tipc_sk(sk)->phdr;
Ying Xuea6ca1092014-11-26 11:41:55 +0800729 struct sk_buff_head head;
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400730 uint mtu;
731 int rc;
732
733 msg_set_type(mhdr, TIPC_MCAST_MSG);
734 msg_set_lookup_scope(mhdr, TIPC_CLUSTER_SCOPE);
735 msg_set_destport(mhdr, 0);
736 msg_set_destnode(mhdr, 0);
737 msg_set_nametype(mhdr, seq->type);
738 msg_set_namelower(mhdr, seq->lower);
739 msg_set_nameupper(mhdr, seq->upper);
740 msg_set_hdr_sz(mhdr, MCAST_H_SIZE);
741
742new_mtu:
743 mtu = tipc_bclink_get_mtu();
Ying Xuea6ca1092014-11-26 11:41:55 +0800744 __skb_queue_head_init(&head);
745 rc = tipc_msg_build(mhdr, msg, 0, dsz, mtu, &head);
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400746 if (unlikely(rc < 0))
747 return rc;
748
749 do {
Ying Xuea6ca1092014-11-26 11:41:55 +0800750 rc = tipc_bclink_xmit(&head);
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400751 if (likely(rc >= 0)) {
752 rc = dsz;
753 break;
754 }
755 if (rc == -EMSGSIZE)
756 goto new_mtu;
757 if (rc != -ELINKCONG)
758 break;
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400759 tipc_sk(sk)->link_cong = 1;
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400760 rc = tipc_wait_for_sndmsg(sock, &timeo);
761 if (rc)
Ying Xuea6ca1092014-11-26 11:41:55 +0800762 __skb_queue_purge(&head);
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400763 } while (!rc);
764 return rc;
765}
766
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400767/* tipc_sk_mcast_rcv - Deliver multicast message to all destination sockets
768 */
769void tipc_sk_mcast_rcv(struct sk_buff *buf)
770{
771 struct tipc_msg *msg = buf_msg(buf);
772 struct tipc_port_list dports = {0, NULL, };
773 struct tipc_port_list *item;
774 struct sk_buff *b;
775 uint i, last, dst = 0;
776 u32 scope = TIPC_CLUSTER_SCOPE;
777
778 if (in_own_node(msg_orignode(msg)))
779 scope = TIPC_NODE_SCOPE;
780
781 /* Create destination port list: */
782 tipc_nametbl_mc_translate(msg_nametype(msg),
783 msg_namelower(msg),
784 msg_nameupper(msg),
785 scope,
786 &dports);
787 last = dports.count;
788 if (!last) {
789 kfree_skb(buf);
790 return;
791 }
792
793 for (item = &dports; item; item = item->next) {
794 for (i = 0; i < PLSIZE && ++dst <= last; i++) {
795 b = (dst != last) ? skb_clone(buf, GFP_ATOMIC) : buf;
796 if (!b) {
797 pr_warn("Failed do clone mcast rcv buffer\n");
798 continue;
799 }
800 msg_set_destport(msg, item->ports[i]);
801 tipc_sk_rcv(b);
802 }
803 }
804 tipc_port_list_free(&dports);
805}
806
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900807/**
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500808 * tipc_sk_proto_rcv - receive a connection mng protocol message
809 * @tsk: receiving socket
810 * @dnode: node to send response message to, if any
811 * @buf: buffer containing protocol message
812 * Returns 0 (TIPC_OK) if message was consumed, 1 (TIPC_FWD_MSG) if
813 * (CONN_PROBE_REPLY) message should be forwarded.
814 */
Wei Yongjun52f50ce2014-07-20 13:14:28 +0800815static int tipc_sk_proto_rcv(struct tipc_sock *tsk, u32 *dnode,
816 struct sk_buff *buf)
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500817{
818 struct tipc_msg *msg = buf_msg(buf);
Jon Paul Maloy60120522014-06-25 20:41:42 -0500819 int conn_cong;
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500820
821 /* Ignore if connection cannot be validated: */
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400822 if (!tsk_peer_msg(tsk, msg))
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500823 goto exit;
824
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400825 tsk->probing_state = TIPC_CONN_OK;
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500826
827 if (msg_type(msg) == CONN_ACK) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400828 conn_cong = tsk_conn_cong(tsk);
Jon Paul Maloy60120522014-06-25 20:41:42 -0500829 tsk->sent_unacked -= msg_msgcnt(msg);
830 if (conn_cong)
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400831 tsk->sk.sk_write_space(&tsk->sk);
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500832 } else if (msg_type(msg) == CONN_PROBE) {
833 if (!tipc_msg_reverse(buf, dnode, TIPC_OK))
834 return TIPC_OK;
835 msg_set_type(msg, CONN_PROBE_REPLY);
836 return TIPC_FWD_MSG;
837 }
838 /* Do nothing if msg_type() == CONN_PROBE_REPLY */
839exit:
840 kfree_skb(buf);
841 return TIPC_OK;
842}
843
Ying Xue3f405042014-01-17 09:50:05 +0800844static int tipc_wait_for_sndmsg(struct socket *sock, long *timeo_p)
845{
846 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400847 struct tipc_sock *tsk = tipc_sk(sk);
Ying Xue3f405042014-01-17 09:50:05 +0800848 DEFINE_WAIT(wait);
849 int done;
850
851 do {
852 int err = sock_error(sk);
853 if (err)
854 return err;
855 if (sock->state == SS_DISCONNECTING)
856 return -EPIPE;
857 if (!*timeo_p)
858 return -EAGAIN;
859 if (signal_pending(current))
860 return sock_intr_errno(*timeo_p);
861
862 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Jon Paul Maloy60120522014-06-25 20:41:42 -0500863 done = sk_wait_event(sk, timeo_p, !tsk->link_cong);
Ying Xue3f405042014-01-17 09:50:05 +0800864 finish_wait(sk_sleep(sk), &wait);
865 } while (!done);
866 return 0;
867}
868
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500869/**
Ying Xue247f0f32014-02-18 16:06:46 +0800870 * tipc_sendmsg - send message in connectionless manner
Allan Stephens0c3141e2008-04-15 00:22:02 -0700871 * @iocb: if NULL, indicates that socket lock is already held
Per Lidenb97bf3f2006-01-02 19:04:38 +0100872 * @sock: socket structure
873 * @m: message to send
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500874 * @dsz: amount of user data to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900875 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100876 * Message must have an destination specified explicitly.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900877 * Used for SOCK_RDM and SOCK_DGRAM messages,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100878 * and for 'SYN' messages on SOCK_SEQPACKET and SOCK_STREAM connections.
879 * (Note: 'SYN+' is prohibited on SOCK_STREAM.)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900880 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100881 * Returns the number of bytes sent on success, or errno otherwise
882 */
Ying Xue247f0f32014-02-18 16:06:46 +0800883static int tipc_sendmsg(struct kiocb *iocb, struct socket *sock,
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500884 struct msghdr *m, size_t dsz)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100885{
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500886 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700887 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400888 struct tipc_sock *tsk = tipc_sk(sk);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400889 struct tipc_msg *mhdr = &tsk->phdr;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500890 u32 dnode, dport;
Ying Xuea6ca1092014-11-26 11:41:55 +0800891 struct sk_buff_head head;
892 struct sk_buff *skb;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500893 struct tipc_name_seq *seq = &dest->addr.nameseq;
894 u32 mtu;
Ying Xue3f405042014-01-17 09:50:05 +0800895 long timeo;
Erik Hugne88b17b62014-12-03 14:44:44 +0100896 int rc;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100897
898 if (unlikely(!dest))
899 return -EDESTADDRREQ;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500900
Allan Stephens51f9cc12006-06-25 23:49:06 -0700901 if (unlikely((m->msg_namelen < sizeof(*dest)) ||
902 (dest->family != AF_TIPC)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100903 return -EINVAL;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500904
905 if (dsz > TIPC_MAX_USER_MSG_SIZE)
Allan Stephensc29c3f72010-04-20 17:58:24 -0400906 return -EMSGSIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100907
Allan Stephens0c3141e2008-04-15 00:22:02 -0700908 if (iocb)
909 lock_sock(sk);
910
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500911 if (unlikely(sock->state != SS_READY)) {
Allan Stephens0c3141e2008-04-15 00:22:02 -0700912 if (sock->state == SS_LISTENING) {
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500913 rc = -EPIPE;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700914 goto exit;
Allan Stephens33880072006-06-25 23:44:57 -0700915 }
Allan Stephens0c3141e2008-04-15 00:22:02 -0700916 if (sock->state != SS_UNCONNECTED) {
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500917 rc = -EISCONN;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700918 goto exit;
919 }
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400920 if (tsk->published) {
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500921 rc = -EOPNOTSUPP;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700922 goto exit;
923 }
924 if (dest->addrtype == TIPC_ADDR_NAME) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400925 tsk->conn_type = dest->addr.name.name.type;
926 tsk->conn_instance = dest->addr.name.name.instance;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700927 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100928 }
929
Ying Xue3f405042014-01-17 09:50:05 +0800930 timeo = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500931
932 if (dest->addrtype == TIPC_ADDR_MCAST) {
Al Viro562640f2014-11-15 01:13:43 -0500933 rc = tipc_sendmcast(sock, seq, m, dsz, timeo);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500934 goto exit;
935 } else if (dest->addrtype == TIPC_ADDR_NAME) {
936 u32 type = dest->addr.name.name.type;
937 u32 inst = dest->addr.name.name.instance;
938 u32 domain = dest->addr.name.domain;
939
940 dnode = domain;
941 msg_set_type(mhdr, TIPC_NAMED_MSG);
942 msg_set_hdr_sz(mhdr, NAMED_H_SIZE);
943 msg_set_nametype(mhdr, type);
944 msg_set_nameinst(mhdr, inst);
945 msg_set_lookup_scope(mhdr, tipc_addr_scope(domain));
946 dport = tipc_nametbl_translate(type, inst, &dnode);
947 msg_set_destnode(mhdr, dnode);
948 msg_set_destport(mhdr, dport);
949 if (unlikely(!dport && !dnode)) {
950 rc = -EHOSTUNREACH;
951 goto exit;
952 }
953 } else if (dest->addrtype == TIPC_ADDR_ID) {
954 dnode = dest->addr.id.node;
955 msg_set_type(mhdr, TIPC_DIRECT_MSG);
956 msg_set_lookup_scope(mhdr, 0);
957 msg_set_destnode(mhdr, dnode);
958 msg_set_destport(mhdr, dest->addr.id.ref);
959 msg_set_hdr_sz(mhdr, BASIC_H_SIZE);
960 }
961
962new_mtu:
Ying Xue07f6c4b2015-01-07 13:41:58 +0800963 mtu = tipc_node_get_mtu(dnode, tsk->portid);
Ying Xuea6ca1092014-11-26 11:41:55 +0800964 __skb_queue_head_init(&head);
965 rc = tipc_msg_build(mhdr, m, 0, dsz, mtu, &head);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500966 if (rc < 0)
967 goto exit;
968
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900969 do {
Ying Xuea6ca1092014-11-26 11:41:55 +0800970 skb = skb_peek(&head);
971 TIPC_SKB_CB(skb)->wakeup_pending = tsk->link_cong;
Ying Xue07f6c4b2015-01-07 13:41:58 +0800972 rc = tipc_link_xmit(&head, dnode, tsk->portid);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500973 if (likely(rc >= 0)) {
974 if (sock->state != SS_READY)
Allan Stephens0c3141e2008-04-15 00:22:02 -0700975 sock->state = SS_CONNECTING;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500976 rc = dsz;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700977 break;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900978 }
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500979 if (rc == -EMSGSIZE)
980 goto new_mtu;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500981 if (rc != -ELINKCONG)
Allan Stephens0c3141e2008-04-15 00:22:02 -0700982 break;
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400983 tsk->link_cong = 1;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500984 rc = tipc_wait_for_sndmsg(sock, &timeo);
Erik Hugne70452dc2014-07-06 20:38:50 -0400985 if (rc)
Ying Xuea6ca1092014-11-26 11:41:55 +0800986 __skb_queue_purge(&head);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500987 } while (!rc);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700988exit:
989 if (iocb)
990 release_sock(sk);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500991
992 return rc;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100993}
994
Ying Xue391a6dd2014-01-17 09:50:06 +0800995static int tipc_wait_for_sndpkt(struct socket *sock, long *timeo_p)
996{
997 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400998 struct tipc_sock *tsk = tipc_sk(sk);
Ying Xue391a6dd2014-01-17 09:50:06 +0800999 DEFINE_WAIT(wait);
1000 int done;
1001
1002 do {
1003 int err = sock_error(sk);
1004 if (err)
1005 return err;
1006 if (sock->state == SS_DISCONNECTING)
1007 return -EPIPE;
1008 else if (sock->state != SS_CONNECTED)
1009 return -ENOTCONN;
1010 if (!*timeo_p)
1011 return -EAGAIN;
1012 if (signal_pending(current))
1013 return sock_intr_errno(*timeo_p);
1014
1015 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
1016 done = sk_wait_event(sk, timeo_p,
Jon Paul Maloy60120522014-06-25 20:41:42 -05001017 (!tsk->link_cong &&
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001018 !tsk_conn_cong(tsk)) ||
1019 !tsk->connected);
Ying Xue391a6dd2014-01-17 09:50:06 +08001020 finish_wait(sk_sleep(sk), &wait);
1021 } while (!done);
1022 return 0;
1023}
1024
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001025/**
Ying Xue247f0f32014-02-18 16:06:46 +08001026 * tipc_send_stream - send stream-oriented data
Per Lidenb97bf3f2006-01-02 19:04:38 +01001027 * @iocb: (unused)
1028 * @sock: socket structure
1029 * @m: data to send
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001030 * @dsz: total length of data to be transmitted
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001031 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001032 * Used for SOCK_STREAM data.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001033 *
1034 * Returns the number of bytes sent on success (or partial success),
Allan Stephens1303e8f2006-06-25 23:46:50 -07001035 * or errno if no data sent
Per Lidenb97bf3f2006-01-02 19:04:38 +01001036 */
Ying Xue247f0f32014-02-18 16:06:46 +08001037static int tipc_send_stream(struct kiocb *iocb, struct socket *sock,
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001038 struct msghdr *m, size_t dsz)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001039{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001040 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001041 struct tipc_sock *tsk = tipc_sk(sk);
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001042 struct tipc_msg *mhdr = &tsk->phdr;
Ying Xuea6ca1092014-11-26 11:41:55 +08001043 struct sk_buff_head head;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001044 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
Ying Xue07f6c4b2015-01-07 13:41:58 +08001045 u32 portid = tsk->portid;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001046 int rc = -EINVAL;
1047 long timeo;
1048 u32 dnode;
1049 uint mtu, send, sent = 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001050
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001051 /* Handle implied connection establishment */
1052 if (unlikely(dest)) {
1053 rc = tipc_sendmsg(iocb, sock, m, dsz);
1054 if (dsz && (dsz == rc))
Jon Paul Maloy60120522014-06-25 20:41:42 -05001055 tsk->sent_unacked = 1;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001056 return rc;
1057 }
1058 if (dsz > (uint)INT_MAX)
1059 return -EMSGSIZE;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001060
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001061 if (iocb)
1062 lock_sock(sk);
1063
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001064 if (unlikely(sock->state != SS_CONNECTED)) {
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001065 if (sock->state == SS_DISCONNECTING)
1066 rc = -EPIPE;
wangweidongb0555972013-12-27 10:09:39 +08001067 else
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001068 rc = -ENOTCONN;
wangweidong3b8401f2013-12-12 09:36:40 +08001069 goto exit;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001070 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001071
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001072 timeo = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT);
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001073 dnode = tsk_peer_node(tsk);
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001074
1075next:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001076 mtu = tsk->max_pkt;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001077 send = min_t(uint, dsz - sent, TIPC_MAX_USER_MSG_SIZE);
Ying Xuea6ca1092014-11-26 11:41:55 +08001078 __skb_queue_head_init(&head);
1079 rc = tipc_msg_build(mhdr, m, sent, send, mtu, &head);
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001080 if (unlikely(rc < 0))
Allan Stephens0c3141e2008-04-15 00:22:02 -07001081 goto exit;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001082 do {
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001083 if (likely(!tsk_conn_cong(tsk))) {
Ying Xue07f6c4b2015-01-07 13:41:58 +08001084 rc = tipc_link_xmit(&head, dnode, portid);
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001085 if (likely(!rc)) {
Jon Paul Maloy60120522014-06-25 20:41:42 -05001086 tsk->sent_unacked++;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001087 sent += send;
1088 if (sent == dsz)
1089 break;
1090 goto next;
Allan Stephens1303e8f2006-06-25 23:46:50 -07001091 }
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001092 if (rc == -EMSGSIZE) {
Ying Xue07f6c4b2015-01-07 13:41:58 +08001093 tsk->max_pkt = tipc_node_get_mtu(dnode, portid);
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001094 goto next;
1095 }
1096 if (rc != -ELINKCONG)
1097 break;
Jon Paul Maloy50100a52014-08-22 18:09:07 -04001098 tsk->link_cong = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001099 }
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001100 rc = tipc_wait_for_sndpkt(sock, &timeo);
Erik Hugne70452dc2014-07-06 20:38:50 -04001101 if (rc)
Ying Xuea6ca1092014-11-26 11:41:55 +08001102 __skb_queue_purge(&head);
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001103 } while (!rc);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001104exit:
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001105 if (iocb)
1106 release_sock(sk);
1107 return sent ? sent : rc;
1108}
1109
1110/**
1111 * tipc_send_packet - send a connection-oriented message
1112 * @iocb: if NULL, indicates that socket lock is already held
1113 * @sock: socket structure
1114 * @m: message to send
1115 * @dsz: length of data to be transmitted
1116 *
1117 * Used for SOCK_SEQPACKET messages.
1118 *
1119 * Returns the number of bytes sent on success, or errno otherwise
1120 */
1121static int tipc_send_packet(struct kiocb *iocb, struct socket *sock,
1122 struct msghdr *m, size_t dsz)
1123{
1124 if (dsz > TIPC_MAX_USER_MSG_SIZE)
1125 return -EMSGSIZE;
1126
1127 return tipc_send_stream(iocb, sock, m, dsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001128}
1129
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001130/* tipc_sk_finish_conn - complete the setup of a connection
Per Lidenb97bf3f2006-01-02 19:04:38 +01001131 */
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001132static void tipc_sk_finish_conn(struct tipc_sock *tsk, u32 peer_port,
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001133 u32 peer_node)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001134{
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001135 struct tipc_msg *msg = &tsk->phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001136
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001137 msg_set_destnode(msg, peer_node);
1138 msg_set_destport(msg, peer_port);
1139 msg_set_type(msg, TIPC_CONN_MSG);
1140 msg_set_lookup_scope(msg, 0);
1141 msg_set_hdr_sz(msg, SHORT_H_SIZE);
Jon Paul Maloyf9fef182014-03-12 11:31:08 -04001142
Ying Xue2f55c432015-01-09 15:27:00 +08001143 tsk->probing_intv = CONN_PROBING_INTERVAL;
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001144 tsk->probing_state = TIPC_CONN_OK;
1145 tsk->connected = 1;
Ying Xuef2f2a962015-01-09 15:27:02 +08001146 if (!mod_timer(&tsk->timer, jiffies + tsk->probing_intv))
1147 sock_hold(&tsk->sk);
Ying Xue07f6c4b2015-01-07 13:41:58 +08001148 tipc_node_add_conn(peer_node, tsk->portid, peer_port);
1149 tsk->max_pkt = tipc_node_get_mtu(peer_node, tsk->portid);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001150}
1151
1152/**
1153 * set_orig_addr - capture sender's address for received message
1154 * @m: descriptor for message info
1155 * @msg: received message header
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001156 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001157 * Note: Address is not captured if not requested by receiver.
1158 */
Sam Ravnborg05790c62006-03-20 22:37:04 -08001159static void set_orig_addr(struct msghdr *m, struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001160{
Steffen Hurrle342dfc32014-01-17 22:53:15 +01001161 DECLARE_SOCKADDR(struct sockaddr_tipc *, addr, m->msg_name);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001162
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001163 if (addr) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001164 addr->family = AF_TIPC;
1165 addr->addrtype = TIPC_ADDR_ID;
Mathias Krause60085c32013-04-07 01:52:00 +00001166 memset(&addr->addr, 0, sizeof(addr->addr));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001167 addr->addr.id.ref = msg_origport(msg);
1168 addr->addr.id.node = msg_orignode(msg);
Allan Stephens0e659672010-12-31 18:59:32 +00001169 addr->addr.name.domain = 0; /* could leave uninitialized */
1170 addr->scope = 0; /* could leave uninitialized */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001171 m->msg_namelen = sizeof(struct sockaddr_tipc);
1172 }
1173}
1174
1175/**
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001176 * tipc_sk_anc_data_recv - optionally capture ancillary data for received message
Per Lidenb97bf3f2006-01-02 19:04:38 +01001177 * @m: descriptor for message info
1178 * @msg: received message header
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001179 * @tsk: TIPC port associated with message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001180 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001181 * Note: Ancillary data is not captured if not requested by receiver.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001182 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001183 * Returns 0 if successful, otherwise errno
1184 */
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001185static int tipc_sk_anc_data_recv(struct msghdr *m, struct tipc_msg *msg,
1186 struct tipc_sock *tsk)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001187{
1188 u32 anc_data[3];
1189 u32 err;
1190 u32 dest_type;
Allan Stephens3546c752006-06-25 23:45:24 -07001191 int has_name;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001192 int res;
1193
1194 if (likely(m->msg_controllen == 0))
1195 return 0;
1196
1197 /* Optionally capture errored message object(s) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001198 err = msg ? msg_errcode(msg) : 0;
1199 if (unlikely(err)) {
1200 anc_data[0] = err;
1201 anc_data[1] = msg_data_sz(msg);
Allan Stephens2db99832010-12-31 18:59:33 +00001202 res = put_cmsg(m, SOL_TIPC, TIPC_ERRINFO, 8, anc_data);
1203 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001204 return res;
Allan Stephens2db99832010-12-31 18:59:33 +00001205 if (anc_data[1]) {
1206 res = put_cmsg(m, SOL_TIPC, TIPC_RETDATA, anc_data[1],
1207 msg_data(msg));
1208 if (res)
1209 return res;
1210 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001211 }
1212
1213 /* Optionally capture message destination object */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001214 dest_type = msg ? msg_type(msg) : TIPC_DIRECT_MSG;
1215 switch (dest_type) {
1216 case TIPC_NAMED_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -07001217 has_name = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001218 anc_data[0] = msg_nametype(msg);
1219 anc_data[1] = msg_namelower(msg);
1220 anc_data[2] = msg_namelower(msg);
1221 break;
1222 case TIPC_MCAST_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -07001223 has_name = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001224 anc_data[0] = msg_nametype(msg);
1225 anc_data[1] = msg_namelower(msg);
1226 anc_data[2] = msg_nameupper(msg);
1227 break;
1228 case TIPC_CONN_MSG:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001229 has_name = (tsk->conn_type != 0);
1230 anc_data[0] = tsk->conn_type;
1231 anc_data[1] = tsk->conn_instance;
1232 anc_data[2] = tsk->conn_instance;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001233 break;
1234 default:
Allan Stephens3546c752006-06-25 23:45:24 -07001235 has_name = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001236 }
Allan Stephens2db99832010-12-31 18:59:33 +00001237 if (has_name) {
1238 res = put_cmsg(m, SOL_TIPC, TIPC_DESTNAME, 12, anc_data);
1239 if (res)
1240 return res;
1241 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001242
1243 return 0;
1244}
1245
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001246static void tipc_sk_send_ack(struct tipc_sock *tsk, uint ack)
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001247{
Ying Xuea6ca1092014-11-26 11:41:55 +08001248 struct sk_buff *skb = NULL;
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001249 struct tipc_msg *msg;
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001250 u32 peer_port = tsk_peer_port(tsk);
1251 u32 dnode = tsk_peer_node(tsk);
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001252
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001253 if (!tsk->connected)
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001254 return;
Ying Xuea6ca1092014-11-26 11:41:55 +08001255 skb = tipc_msg_create(CONN_MANAGER, CONN_ACK, INT_H_SIZE, 0, dnode,
Ying Xue07f6c4b2015-01-07 13:41:58 +08001256 tipc_own_addr, peer_port, tsk->portid, TIPC_OK);
Ying Xuea6ca1092014-11-26 11:41:55 +08001257 if (!skb)
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001258 return;
Ying Xuea6ca1092014-11-26 11:41:55 +08001259 msg = buf_msg(skb);
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001260 msg_set_msgcnt(msg, ack);
Ying Xuea6ca1092014-11-26 11:41:55 +08001261 tipc_link_xmit_skb(skb, dnode, msg_link_selector(msg));
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001262}
1263
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001264static int tipc_wait_for_rcvmsg(struct socket *sock, long *timeop)
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001265{
1266 struct sock *sk = sock->sk;
1267 DEFINE_WAIT(wait);
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001268 long timeo = *timeop;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001269 int err;
1270
1271 for (;;) {
1272 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Ying Xuefe8e4642014-03-06 14:40:18 +01001273 if (timeo && skb_queue_empty(&sk->sk_receive_queue)) {
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001274 if (sock->state == SS_DISCONNECTING) {
1275 err = -ENOTCONN;
1276 break;
1277 }
1278 release_sock(sk);
1279 timeo = schedule_timeout(timeo);
1280 lock_sock(sk);
1281 }
1282 err = 0;
1283 if (!skb_queue_empty(&sk->sk_receive_queue))
1284 break;
1285 err = sock_intr_errno(timeo);
1286 if (signal_pending(current))
1287 break;
1288 err = -EAGAIN;
1289 if (!timeo)
1290 break;
1291 }
1292 finish_wait(sk_sleep(sk), &wait);
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001293 *timeop = timeo;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001294 return err;
1295}
1296
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001297/**
Ying Xue247f0f32014-02-18 16:06:46 +08001298 * tipc_recvmsg - receive packet-oriented message
Per Lidenb97bf3f2006-01-02 19:04:38 +01001299 * @iocb: (unused)
1300 * @m: descriptor for message info
1301 * @buf_len: total size of user buffer area
1302 * @flags: receive flags
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001303 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001304 * Used for SOCK_DGRAM, SOCK_RDM, and SOCK_SEQPACKET messages.
1305 * If the complete message doesn't fit in user area, truncate it.
1306 *
1307 * Returns size of returned message data, errno otherwise
1308 */
Ying Xue247f0f32014-02-18 16:06:46 +08001309static int tipc_recvmsg(struct kiocb *iocb, struct socket *sock,
1310 struct msghdr *m, size_t buf_len, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001311{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001312 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001313 struct tipc_sock *tsk = tipc_sk(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001314 struct sk_buff *buf;
1315 struct tipc_msg *msg;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001316 long timeo;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001317 unsigned int sz;
1318 u32 err;
1319 int res;
1320
Allan Stephens0c3141e2008-04-15 00:22:02 -07001321 /* Catch invalid receive requests */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001322 if (unlikely(!buf_len))
1323 return -EINVAL;
1324
Allan Stephens0c3141e2008-04-15 00:22:02 -07001325 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001326
Allan Stephens0c3141e2008-04-15 00:22:02 -07001327 if (unlikely(sock->state == SS_UNCONNECTED)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001328 res = -ENOTCONN;
1329 goto exit;
1330 }
1331
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001332 timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001333restart:
Per Lidenb97bf3f2006-01-02 19:04:38 +01001334
Allan Stephens0c3141e2008-04-15 00:22:02 -07001335 /* Look for a message in receive queue; wait if necessary */
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001336 res = tipc_wait_for_rcvmsg(sock, &timeo);
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001337 if (res)
1338 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001339
1340 /* Look at first message in receive queue */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001341 buf = skb_peek(&sk->sk_receive_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001342 msg = buf_msg(buf);
1343 sz = msg_data_sz(msg);
1344 err = msg_errcode(msg);
1345
Per Lidenb97bf3f2006-01-02 19:04:38 +01001346 /* Discard an empty non-errored message & try again */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001347 if ((!sz) && (!err)) {
Jon Paul Maloy2e84c602014-08-22 18:09:18 -04001348 tsk_advance_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001349 goto restart;
1350 }
1351
1352 /* Capture sender's address (optional) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001353 set_orig_addr(m, msg);
1354
1355 /* Capture ancillary data (optional) */
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001356 res = tipc_sk_anc_data_recv(m, msg, tsk);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001357 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001358 goto exit;
1359
1360 /* Capture message data (if valid) & compute return value (always) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001361 if (!err) {
1362 if (unlikely(buf_len < sz)) {
1363 sz = buf_len;
1364 m->msg_flags |= MSG_TRUNC;
1365 }
David S. Miller51f3d022014-11-05 16:46:40 -05001366 res = skb_copy_datagram_msg(buf, msg_hdr_sz(msg), m, sz);
Allan Stephens0232fd02011-02-21 09:45:40 -05001367 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001368 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001369 res = sz;
1370 } else {
1371 if ((sock->state == SS_READY) ||
1372 ((err == TIPC_CONN_SHUTDOWN) || m->msg_control))
1373 res = 0;
1374 else
1375 res = -ECONNRESET;
1376 }
1377
1378 /* Consume received message (optional) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001379 if (likely(!(flags & MSG_PEEK))) {
Allan Stephens99009802008-04-15 00:06:12 -07001380 if ((sock->state != SS_READY) &&
Jon Paul Maloy60120522014-06-25 20:41:42 -05001381 (++tsk->rcv_unacked >= TIPC_CONNACK_INTV)) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001382 tipc_sk_send_ack(tsk, tsk->rcv_unacked);
Jon Paul Maloy60120522014-06-25 20:41:42 -05001383 tsk->rcv_unacked = 0;
1384 }
Jon Paul Maloy2e84c602014-08-22 18:09:18 -04001385 tsk_advance_rx_queue(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001386 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001387exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001388 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001389 return res;
1390}
1391
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001392/**
Ying Xue247f0f32014-02-18 16:06:46 +08001393 * tipc_recv_stream - receive stream-oriented data
Per Lidenb97bf3f2006-01-02 19:04:38 +01001394 * @iocb: (unused)
1395 * @m: descriptor for message info
1396 * @buf_len: total size of user buffer area
1397 * @flags: receive flags
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001398 *
1399 * Used for SOCK_STREAM messages only. If not enough data is available
Per Lidenb97bf3f2006-01-02 19:04:38 +01001400 * will optionally wait for more; never truncates data.
1401 *
1402 * Returns size of returned message data, errno otherwise
1403 */
Ying Xue247f0f32014-02-18 16:06:46 +08001404static int tipc_recv_stream(struct kiocb *iocb, struct socket *sock,
1405 struct msghdr *m, size_t buf_len, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001406{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001407 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001408 struct tipc_sock *tsk = tipc_sk(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001409 struct sk_buff *buf;
1410 struct tipc_msg *msg;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001411 long timeo;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001412 unsigned int sz;
Florian Westphal3720d402010-08-17 11:00:04 +00001413 int sz_to_copy, target, needed;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001414 int sz_copied = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001415 u32 err;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001416 int res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001417
1418 /* Catch invalid receive attempts */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001419 if (unlikely(!buf_len))
1420 return -EINVAL;
1421
Allan Stephens0c3141e2008-04-15 00:22:02 -07001422 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001423
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001424 if (unlikely(sock->state == SS_UNCONNECTED)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001425 res = -ENOTCONN;
1426 goto exit;
1427 }
1428
Florian Westphal3720d402010-08-17 11:00:04 +00001429 target = sock_rcvlowat(sk, flags & MSG_WAITALL, buf_len);
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001430 timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001431
Allan Stephens0c3141e2008-04-15 00:22:02 -07001432restart:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001433 /* Look for a message in receive queue; wait if necessary */
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001434 res = tipc_wait_for_rcvmsg(sock, &timeo);
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001435 if (res)
1436 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001437
1438 /* Look at first message in receive queue */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001439 buf = skb_peek(&sk->sk_receive_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001440 msg = buf_msg(buf);
1441 sz = msg_data_sz(msg);
1442 err = msg_errcode(msg);
1443
1444 /* Discard an empty non-errored message & try again */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001445 if ((!sz) && (!err)) {
Jon Paul Maloy2e84c602014-08-22 18:09:18 -04001446 tsk_advance_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001447 goto restart;
1448 }
1449
1450 /* Optionally capture sender's address & ancillary data of first msg */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001451 if (sz_copied == 0) {
1452 set_orig_addr(m, msg);
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001453 res = tipc_sk_anc_data_recv(m, msg, tsk);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001454 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001455 goto exit;
1456 }
1457
1458 /* Capture message data (if valid) & compute return value (always) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001459 if (!err) {
Allan Stephens0232fd02011-02-21 09:45:40 -05001460 u32 offset = (u32)(unsigned long)(TIPC_SKB_CB(buf)->handle);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001461
Allan Stephens0232fd02011-02-21 09:45:40 -05001462 sz -= offset;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001463 needed = (buf_len - sz_copied);
1464 sz_to_copy = (sz <= needed) ? sz : needed;
Allan Stephens0232fd02011-02-21 09:45:40 -05001465
David S. Miller51f3d022014-11-05 16:46:40 -05001466 res = skb_copy_datagram_msg(buf, msg_hdr_sz(msg) + offset,
1467 m, sz_to_copy);
Allan Stephens0232fd02011-02-21 09:45:40 -05001468 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001469 goto exit;
Allan Stephens0232fd02011-02-21 09:45:40 -05001470
Per Lidenb97bf3f2006-01-02 19:04:38 +01001471 sz_copied += sz_to_copy;
1472
1473 if (sz_to_copy < sz) {
1474 if (!(flags & MSG_PEEK))
Allan Stephens0232fd02011-02-21 09:45:40 -05001475 TIPC_SKB_CB(buf)->handle =
1476 (void *)(unsigned long)(offset + sz_to_copy);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001477 goto exit;
1478 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001479 } else {
1480 if (sz_copied != 0)
1481 goto exit; /* can't add error msg to valid data */
1482
1483 if ((err == TIPC_CONN_SHUTDOWN) || m->msg_control)
1484 res = 0;
1485 else
1486 res = -ECONNRESET;
1487 }
1488
1489 /* Consume received message (optional) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001490 if (likely(!(flags & MSG_PEEK))) {
Jon Paul Maloy60120522014-06-25 20:41:42 -05001491 if (unlikely(++tsk->rcv_unacked >= TIPC_CONNACK_INTV)) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001492 tipc_sk_send_ack(tsk, tsk->rcv_unacked);
Jon Paul Maloy60120522014-06-25 20:41:42 -05001493 tsk->rcv_unacked = 0;
1494 }
Jon Paul Maloy2e84c602014-08-22 18:09:18 -04001495 tsk_advance_rx_queue(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001496 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001497
1498 /* Loop around if more data is required */
Joe Perchesf64f9e72009-11-29 16:55:45 -08001499 if ((sz_copied < buf_len) && /* didn't get all requested data */
1500 (!skb_queue_empty(&sk->sk_receive_queue) ||
Florian Westphal3720d402010-08-17 11:00:04 +00001501 (sz_copied < target)) && /* and more is ready or required */
Joe Perchesf64f9e72009-11-29 16:55:45 -08001502 (!(flags & MSG_PEEK)) && /* and aren't just peeking at data */
1503 (!err)) /* and haven't reached a FIN */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001504 goto restart;
1505
1506exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001507 release_sock(sk);
Allan Stephensa3b0a5a2006-06-25 23:48:22 -07001508 return sz_copied ? sz_copied : res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001509}
1510
1511/**
Ying Xuef288bef2012-08-21 11:16:57 +08001512 * tipc_write_space - wake up thread if port congestion is released
1513 * @sk: socket
1514 */
1515static void tipc_write_space(struct sock *sk)
1516{
1517 struct socket_wq *wq;
1518
1519 rcu_read_lock();
1520 wq = rcu_dereference(sk->sk_wq);
1521 if (wq_has_sleeper(wq))
1522 wake_up_interruptible_sync_poll(&wq->wait, POLLOUT |
1523 POLLWRNORM | POLLWRBAND);
1524 rcu_read_unlock();
1525}
1526
1527/**
1528 * tipc_data_ready - wake up threads to indicate messages have been received
1529 * @sk: socket
1530 * @len: the length of messages
1531 */
David S. Miller676d2362014-04-11 16:15:36 -04001532static void tipc_data_ready(struct sock *sk)
Ying Xuef288bef2012-08-21 11:16:57 +08001533{
1534 struct socket_wq *wq;
1535
1536 rcu_read_lock();
1537 wq = rcu_dereference(sk->sk_wq);
1538 if (wq_has_sleeper(wq))
1539 wake_up_interruptible_sync_poll(&wq->wait, POLLIN |
1540 POLLRDNORM | POLLRDBAND);
1541 rcu_read_unlock();
1542}
1543
1544/**
Ying Xue7e6c1312012-11-29 18:39:14 -05001545 * filter_connect - Handle all incoming messages for a connection-based socket
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001546 * @tsk: TIPC socket
Ying Xue7e6c1312012-11-29 18:39:14 -05001547 * @msg: message
1548 *
stephen hemmingerb2ad5e52014-10-29 22:58:51 -07001549 * Returns 0 (TIPC_OK) if everything ok, -TIPC_ERR_NO_PORT otherwise
Ying Xue7e6c1312012-11-29 18:39:14 -05001550 */
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001551static int filter_connect(struct tipc_sock *tsk, struct sk_buff **buf)
Ying Xue7e6c1312012-11-29 18:39:14 -05001552{
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001553 struct sock *sk = &tsk->sk;
Jon Paul Maloy8826cde2014-03-12 11:31:09 -04001554 struct socket *sock = sk->sk_socket;
Ying Xue7e6c1312012-11-29 18:39:14 -05001555 struct tipc_msg *msg = buf_msg(*buf);
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001556 int retval = -TIPC_ERR_NO_PORT;
Ying Xue7e6c1312012-11-29 18:39:14 -05001557
1558 if (msg_mcast(msg))
1559 return retval;
1560
1561 switch ((int)sock->state) {
1562 case SS_CONNECTED:
1563 /* Accept only connection-based messages sent by peer */
Jon Paul Maloy2e84c602014-08-22 18:09:18 -04001564 if (tsk_peer_msg(tsk, msg)) {
Ying Xue7e6c1312012-11-29 18:39:14 -05001565 if (unlikely(msg_errcode(msg))) {
1566 sock->state = SS_DISCONNECTING;
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001567 tsk->connected = 0;
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001568 /* let timer expire on it's own */
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001569 tipc_node_remove_conn(tsk_peer_node(tsk),
Ying Xue07f6c4b2015-01-07 13:41:58 +08001570 tsk->portid);
Ying Xue7e6c1312012-11-29 18:39:14 -05001571 }
1572 retval = TIPC_OK;
1573 }
1574 break;
1575 case SS_CONNECTING:
1576 /* Accept only ACK or NACK message */
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001577
1578 if (unlikely(!msg_connected(msg)))
1579 break;
1580
Ying Xue584d24b2012-11-29 18:51:19 -05001581 if (unlikely(msg_errcode(msg))) {
1582 sock->state = SS_DISCONNECTING;
Erik Hugne2c8d8512013-08-28 09:29:58 +02001583 sk->sk_err = ECONNREFUSED;
Ying Xue7e6c1312012-11-29 18:39:14 -05001584 retval = TIPC_OK;
Ying Xue584d24b2012-11-29 18:51:19 -05001585 break;
1586 }
1587
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001588 if (unlikely(msg_importance(msg) > TIPC_CRITICAL_IMPORTANCE)) {
Ying Xue584d24b2012-11-29 18:51:19 -05001589 sock->state = SS_DISCONNECTING;
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001590 sk->sk_err = EINVAL;
Ying Xue584d24b2012-11-29 18:51:19 -05001591 retval = TIPC_OK;
1592 break;
1593 }
1594
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001595 tipc_sk_finish_conn(tsk, msg_origport(msg), msg_orignode(msg));
1596 msg_set_importance(&tsk->phdr, msg_importance(msg));
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001597 sock->state = SS_CONNECTED;
1598
Ying Xue584d24b2012-11-29 18:51:19 -05001599 /* If an incoming message is an 'ACK-', it should be
1600 * discarded here because it doesn't contain useful
1601 * data. In addition, we should try to wake up
1602 * connect() routine if sleeping.
1603 */
1604 if (msg_data_sz(msg) == 0) {
1605 kfree_skb(*buf);
1606 *buf = NULL;
1607 if (waitqueue_active(sk_sleep(sk)))
1608 wake_up_interruptible(sk_sleep(sk));
1609 }
1610 retval = TIPC_OK;
Ying Xue7e6c1312012-11-29 18:39:14 -05001611 break;
1612 case SS_LISTENING:
1613 case SS_UNCONNECTED:
1614 /* Accept only SYN message */
1615 if (!msg_connected(msg) && !(msg_errcode(msg)))
1616 retval = TIPC_OK;
1617 break;
1618 case SS_DISCONNECTING:
1619 break;
1620 default:
1621 pr_err("Unknown socket state %u\n", sock->state);
1622 }
1623 return retval;
1624}
1625
1626/**
Ying Xueaba79f32013-01-20 23:30:09 +01001627 * rcvbuf_limit - get proper overload limit of socket receive queue
1628 * @sk: socket
1629 * @buf: message
1630 *
1631 * For all connection oriented messages, irrespective of importance,
1632 * the default overload value (i.e. 67MB) is set as limit.
1633 *
1634 * For all connectionless messages, by default new queue limits are
1635 * as belows:
1636 *
Ying Xuecc79dd12013-06-17 10:54:37 -04001637 * TIPC_LOW_IMPORTANCE (4 MB)
1638 * TIPC_MEDIUM_IMPORTANCE (8 MB)
1639 * TIPC_HIGH_IMPORTANCE (16 MB)
1640 * TIPC_CRITICAL_IMPORTANCE (32 MB)
Ying Xueaba79f32013-01-20 23:30:09 +01001641 *
1642 * Returns overload limit according to corresponding message importance
1643 */
1644static unsigned int rcvbuf_limit(struct sock *sk, struct sk_buff *buf)
1645{
1646 struct tipc_msg *msg = buf_msg(buf);
Ying Xueaba79f32013-01-20 23:30:09 +01001647
1648 if (msg_connected(msg))
wangweidong0cee6bb2013-12-12 09:36:39 +08001649 return sysctl_tipc_rmem[2];
1650
1651 return sk->sk_rcvbuf >> TIPC_CRITICAL_IMPORTANCE <<
1652 msg_importance(msg);
Ying Xueaba79f32013-01-20 23:30:09 +01001653}
1654
1655/**
Allan Stephens0c3141e2008-04-15 00:22:02 -07001656 * filter_rcv - validate incoming message
1657 * @sk: socket
Per Lidenb97bf3f2006-01-02 19:04:38 +01001658 * @buf: message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001659 *
Allan Stephens0c3141e2008-04-15 00:22:02 -07001660 * Enqueues message on receive queue if acceptable; optionally handles
1661 * disconnect indication for a connected socket.
1662 *
1663 * Called with socket lock already taken; port lock may also be taken.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001664 *
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001665 * Returns 0 (TIPC_OK) if message was consumed, -TIPC error code if message
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001666 * to be rejected, 1 (TIPC_FWD_MSG) if (CONN_MANAGER) message to be forwarded
Per Lidenb97bf3f2006-01-02 19:04:38 +01001667 */
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001668static int filter_rcv(struct sock *sk, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001669{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001670 struct socket *sock = sk->sk_socket;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001671 struct tipc_sock *tsk = tipc_sk(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001672 struct tipc_msg *msg = buf_msg(buf);
Ying Xueaba79f32013-01-20 23:30:09 +01001673 unsigned int limit = rcvbuf_limit(sk, buf);
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001674 u32 onode;
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001675 int rc = TIPC_OK;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001676
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001677 if (unlikely(msg_user(msg) == CONN_MANAGER))
1678 return tipc_sk_proto_rcv(tsk, &onode, buf);
Jon Paul Maloyec8a2e52014-06-25 20:41:40 -05001679
Jon Paul Maloy50100a52014-08-22 18:09:07 -04001680 if (unlikely(msg_user(msg) == SOCK_WAKEUP)) {
1681 kfree_skb(buf);
1682 tsk->link_cong = 0;
1683 sk->sk_write_space(sk);
1684 return TIPC_OK;
1685 }
1686
Per Lidenb97bf3f2006-01-02 19:04:38 +01001687 /* Reject message if it is wrong sort of message for socket */
Allan Stephensaad58542012-04-26 18:13:08 -04001688 if (msg_type(msg) > TIPC_DIRECT_MSG)
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001689 return -TIPC_ERR_NO_PORT;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001690
Per Lidenb97bf3f2006-01-02 19:04:38 +01001691 if (sock->state == SS_READY) {
Allan Stephensb29f1422010-12-31 18:59:25 +00001692 if (msg_connected(msg))
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001693 return -TIPC_ERR_NO_PORT;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001694 } else {
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001695 rc = filter_connect(tsk, &buf);
1696 if (rc != TIPC_OK || buf == NULL)
1697 return rc;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001698 }
1699
1700 /* Reject message if there isn't room to queue it */
Ying Xueaba79f32013-01-20 23:30:09 +01001701 if (sk_rmem_alloc_get(sk) + buf->truesize >= limit)
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001702 return -TIPC_ERR_OVERLOAD;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001703
Ying Xueaba79f32013-01-20 23:30:09 +01001704 /* Enqueue message */
Ying Xue40682432013-10-18 07:23:16 +02001705 TIPC_SKB_CB(buf)->handle = NULL;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001706 __skb_queue_tail(&sk->sk_receive_queue, buf);
Ying Xueaba79f32013-01-20 23:30:09 +01001707 skb_set_owner_r(buf, sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001708
David S. Miller676d2362014-04-11 16:15:36 -04001709 sk->sk_data_ready(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001710 return TIPC_OK;
1711}
1712
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001713/**
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -04001714 * tipc_backlog_rcv - handle incoming message from backlog queue
Allan Stephens0c3141e2008-04-15 00:22:02 -07001715 * @sk: socket
Ying Xuea6ca1092014-11-26 11:41:55 +08001716 * @skb: message
Allan Stephens0c3141e2008-04-15 00:22:02 -07001717 *
1718 * Caller must hold socket lock, but not port lock.
1719 *
1720 * Returns 0
1721 */
Ying Xuea6ca1092014-11-26 11:41:55 +08001722static int tipc_backlog_rcv(struct sock *sk, struct sk_buff *skb)
Allan Stephens0c3141e2008-04-15 00:22:02 -07001723{
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001724 int rc;
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -05001725 u32 onode;
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -04001726 struct tipc_sock *tsk = tipc_sk(sk);
Ying Xuea6ca1092014-11-26 11:41:55 +08001727 uint truesize = skb->truesize;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001728
Ying Xuea6ca1092014-11-26 11:41:55 +08001729 rc = filter_rcv(sk, skb);
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -04001730
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001731 if (likely(!rc)) {
1732 if (atomic_read(&tsk->dupl_rcvcnt) < TIPC_CONN_OVERLOAD_LIMIT)
1733 atomic_add(truesize, &tsk->dupl_rcvcnt);
1734 return 0;
1735 }
1736
Ying Xuea6ca1092014-11-26 11:41:55 +08001737 if ((rc < 0) && !tipc_msg_reverse(skb, &onode, -rc))
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001738 return 0;
1739
Ying Xuea6ca1092014-11-26 11:41:55 +08001740 tipc_link_xmit_skb(skb, onode, 0);
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -04001741
Allan Stephens0c3141e2008-04-15 00:22:02 -07001742 return 0;
1743}
1744
1745/**
Jon Paul Maloy24be34b2014-03-12 11:31:10 -04001746 * tipc_sk_rcv - handle incoming message
Ying Xuea6ca1092014-11-26 11:41:55 +08001747 * @skb: buffer containing arriving message
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001748 * Consumes buffer
1749 * Returns 0 if success, or errno: -EHOSTUNREACH
Allan Stephens0c3141e2008-04-15 00:22:02 -07001750 */
Ying Xuea6ca1092014-11-26 11:41:55 +08001751int tipc_sk_rcv(struct sk_buff *skb)
Allan Stephens0c3141e2008-04-15 00:22:02 -07001752{
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001753 struct tipc_sock *tsk;
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001754 struct sock *sk;
Ying Xuea6ca1092014-11-26 11:41:55 +08001755 u32 dport = msg_destport(buf_msg(skb));
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001756 int rc = TIPC_OK;
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -04001757 uint limit;
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -05001758 u32 dnode;
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001759
Jon Paul Maloy5a379072014-06-25 20:41:36 -05001760 /* Validate destination and message */
Ying Xue07f6c4b2015-01-07 13:41:58 +08001761 tsk = tipc_sk_lookup(dport);
Jon Paul Maloy9b50fd02014-08-22 18:09:15 -04001762 if (unlikely(!tsk)) {
Ying Xuea6ca1092014-11-26 11:41:55 +08001763 rc = tipc_msg_eval(skb, &dnode);
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001764 goto exit;
1765 }
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001766 sk = &tsk->sk;
1767
1768 /* Queue message */
Ying Xue1a194c22014-10-20 14:46:35 +08001769 spin_lock_bh(&sk->sk_lock.slock);
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001770
Allan Stephens0c3141e2008-04-15 00:22:02 -07001771 if (!sock_owned_by_user(sk)) {
Ying Xuea6ca1092014-11-26 11:41:55 +08001772 rc = filter_rcv(sk, skb);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001773 } else {
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -04001774 if (sk->sk_backlog.len == 0)
1775 atomic_set(&tsk->dupl_rcvcnt, 0);
Ying Xuea6ca1092014-11-26 11:41:55 +08001776 limit = rcvbuf_limit(sk, skb) + atomic_read(&tsk->dupl_rcvcnt);
1777 if (sk_add_backlog(sk, skb, limit))
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001778 rc = -TIPC_ERR_OVERLOAD;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001779 }
Ying Xue1a194c22014-10-20 14:46:35 +08001780 spin_unlock_bh(&sk->sk_lock.slock);
Ying Xue07f6c4b2015-01-07 13:41:58 +08001781 sock_put(sk);
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001782 if (likely(!rc))
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001783 return 0;
1784exit:
Ying Xuea6ca1092014-11-26 11:41:55 +08001785 if ((rc < 0) && !tipc_msg_reverse(skb, &dnode, -rc))
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -05001786 return -EHOSTUNREACH;
Jon Paul Maloy5a379072014-06-25 20:41:36 -05001787
Ying Xuea6ca1092014-11-26 11:41:55 +08001788 tipc_link_xmit_skb(skb, dnode, 0);
Jon Paul Maloy5a379072014-06-25 20:41:36 -05001789 return (rc < 0) ? -EHOSTUNREACH : 0;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001790}
1791
Ying Xue78eb3a52014-01-17 09:50:03 +08001792static int tipc_wait_for_connect(struct socket *sock, long *timeo_p)
1793{
1794 struct sock *sk = sock->sk;
1795 DEFINE_WAIT(wait);
1796 int done;
1797
1798 do {
1799 int err = sock_error(sk);
1800 if (err)
1801 return err;
1802 if (!*timeo_p)
1803 return -ETIMEDOUT;
1804 if (signal_pending(current))
1805 return sock_intr_errno(*timeo_p);
1806
1807 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
1808 done = sk_wait_event(sk, timeo_p, sock->state != SS_CONNECTING);
1809 finish_wait(sk_sleep(sk), &wait);
1810 } while (!done);
1811 return 0;
1812}
1813
Per Lidenb97bf3f2006-01-02 19:04:38 +01001814/**
Ying Xue247f0f32014-02-18 16:06:46 +08001815 * tipc_connect - establish a connection to another TIPC port
Per Lidenb97bf3f2006-01-02 19:04:38 +01001816 * @sock: socket structure
1817 * @dest: socket address for destination port
1818 * @destlen: size of socket address data structure
Allan Stephens0c3141e2008-04-15 00:22:02 -07001819 * @flags: file-related flags associated with socket
Per Lidenb97bf3f2006-01-02 19:04:38 +01001820 *
1821 * Returns 0 on success, errno otherwise
1822 */
Ying Xue247f0f32014-02-18 16:06:46 +08001823static int tipc_connect(struct socket *sock, struct sockaddr *dest,
1824 int destlen, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001825{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001826 struct sock *sk = sock->sk;
Allan Stephensb89741a2008-04-15 00:20:37 -07001827 struct sockaddr_tipc *dst = (struct sockaddr_tipc *)dest;
1828 struct msghdr m = {NULL,};
Ying Xue78eb3a52014-01-17 09:50:03 +08001829 long timeout = (flags & O_NONBLOCK) ? 0 : tipc_sk(sk)->conn_timeout;
1830 socket_state previous;
Allan Stephensb89741a2008-04-15 00:20:37 -07001831 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001832
Allan Stephens0c3141e2008-04-15 00:22:02 -07001833 lock_sock(sk);
1834
Allan Stephensb89741a2008-04-15 00:20:37 -07001835 /* For now, TIPC does not allow use of connect() with DGRAM/RDM types */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001836 if (sock->state == SS_READY) {
1837 res = -EOPNOTSUPP;
1838 goto exit;
1839 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001840
Allan Stephensb89741a2008-04-15 00:20:37 -07001841 /*
1842 * Reject connection attempt using multicast address
1843 *
1844 * Note: send_msg() validates the rest of the address fields,
1845 * so there's no need to do it here
1846 */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001847 if (dst->addrtype == TIPC_ADDR_MCAST) {
1848 res = -EINVAL;
1849 goto exit;
1850 }
1851
Ying Xue78eb3a52014-01-17 09:50:03 +08001852 previous = sock->state;
Ying Xue584d24b2012-11-29 18:51:19 -05001853 switch (sock->state) {
1854 case SS_UNCONNECTED:
1855 /* Send a 'SYN-' to destination */
1856 m.msg_name = dest;
1857 m.msg_namelen = destlen;
1858
1859 /* If connect is in non-blocking case, set MSG_DONTWAIT to
1860 * indicate send_msg() is never blocked.
1861 */
1862 if (!timeout)
1863 m.msg_flags = MSG_DONTWAIT;
1864
Ying Xue247f0f32014-02-18 16:06:46 +08001865 res = tipc_sendmsg(NULL, sock, &m, 0);
Ying Xue584d24b2012-11-29 18:51:19 -05001866 if ((res < 0) && (res != -EWOULDBLOCK))
1867 goto exit;
1868
1869 /* Just entered SS_CONNECTING state; the only
1870 * difference is that return value in non-blocking
1871 * case is EINPROGRESS, rather than EALREADY.
1872 */
1873 res = -EINPROGRESS;
Ying Xue584d24b2012-11-29 18:51:19 -05001874 case SS_CONNECTING:
Ying Xue78eb3a52014-01-17 09:50:03 +08001875 if (previous == SS_CONNECTING)
1876 res = -EALREADY;
1877 if (!timeout)
1878 goto exit;
1879 timeout = msecs_to_jiffies(timeout);
1880 /* Wait until an 'ACK' or 'RST' arrives, or a timeout occurs */
1881 res = tipc_wait_for_connect(sock, &timeout);
Ying Xue584d24b2012-11-29 18:51:19 -05001882 break;
1883 case SS_CONNECTED:
1884 res = -EISCONN;
1885 break;
1886 default:
1887 res = -EINVAL;
Ying Xue78eb3a52014-01-17 09:50:03 +08001888 break;
Allan Stephensb89741a2008-04-15 00:20:37 -07001889 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001890exit:
1891 release_sock(sk);
Allan Stephensb89741a2008-04-15 00:20:37 -07001892 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001893}
1894
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001895/**
Ying Xue247f0f32014-02-18 16:06:46 +08001896 * tipc_listen - allow socket to listen for incoming connections
Per Lidenb97bf3f2006-01-02 19:04:38 +01001897 * @sock: socket structure
1898 * @len: (unused)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001899 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001900 * Returns 0 on success, errno otherwise
1901 */
Ying Xue247f0f32014-02-18 16:06:46 +08001902static int tipc_listen(struct socket *sock, int len)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001903{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001904 struct sock *sk = sock->sk;
1905 int res;
1906
1907 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001908
Ying Xue245f3d32011-07-06 06:01:13 -04001909 if (sock->state != SS_UNCONNECTED)
Allan Stephens0c3141e2008-04-15 00:22:02 -07001910 res = -EINVAL;
1911 else {
1912 sock->state = SS_LISTENING;
1913 res = 0;
1914 }
1915
1916 release_sock(sk);
1917 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001918}
1919
Ying Xue6398e232014-01-17 09:50:04 +08001920static int tipc_wait_for_accept(struct socket *sock, long timeo)
1921{
1922 struct sock *sk = sock->sk;
1923 DEFINE_WAIT(wait);
1924 int err;
1925
1926 /* True wake-one mechanism for incoming connections: only
1927 * one process gets woken up, not the 'whole herd'.
1928 * Since we do not 'race & poll' for established sockets
1929 * anymore, the common case will execute the loop only once.
1930 */
1931 for (;;) {
1932 prepare_to_wait_exclusive(sk_sleep(sk), &wait,
1933 TASK_INTERRUPTIBLE);
Ying Xuefe8e4642014-03-06 14:40:18 +01001934 if (timeo && skb_queue_empty(&sk->sk_receive_queue)) {
Ying Xue6398e232014-01-17 09:50:04 +08001935 release_sock(sk);
1936 timeo = schedule_timeout(timeo);
1937 lock_sock(sk);
1938 }
1939 err = 0;
1940 if (!skb_queue_empty(&sk->sk_receive_queue))
1941 break;
1942 err = -EINVAL;
1943 if (sock->state != SS_LISTENING)
1944 break;
1945 err = sock_intr_errno(timeo);
1946 if (signal_pending(current))
1947 break;
1948 err = -EAGAIN;
1949 if (!timeo)
1950 break;
1951 }
1952 finish_wait(sk_sleep(sk), &wait);
1953 return err;
1954}
1955
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001956/**
Ying Xue247f0f32014-02-18 16:06:46 +08001957 * tipc_accept - wait for connection request
Per Lidenb97bf3f2006-01-02 19:04:38 +01001958 * @sock: listening socket
1959 * @newsock: new socket that is to be connected
1960 * @flags: file-related flags associated with socket
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001961 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001962 * Returns 0 on success, errno otherwise
1963 */
Ying Xue247f0f32014-02-18 16:06:46 +08001964static int tipc_accept(struct socket *sock, struct socket *new_sock, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001965{
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001966 struct sock *new_sk, *sk = sock->sk;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001967 struct sk_buff *buf;
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001968 struct tipc_sock *new_tsock;
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001969 struct tipc_msg *msg;
Ying Xue6398e232014-01-17 09:50:04 +08001970 long timeo;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001971 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001972
Allan Stephens0c3141e2008-04-15 00:22:02 -07001973 lock_sock(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001974
Allan Stephens0c3141e2008-04-15 00:22:02 -07001975 if (sock->state != SS_LISTENING) {
1976 res = -EINVAL;
1977 goto exit;
1978 }
Ying Xue6398e232014-01-17 09:50:04 +08001979 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
1980 res = tipc_wait_for_accept(sock, timeo);
1981 if (res)
1982 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001983
1984 buf = skb_peek(&sk->sk_receive_queue);
1985
Ying Xuec5fa7b32013-06-17 10:54:39 -04001986 res = tipc_sk_create(sock_net(sock->sk), new_sock, 0, 1);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001987 if (res)
1988 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001989
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001990 new_sk = new_sock->sk;
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001991 new_tsock = tipc_sk(new_sk);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001992 msg = buf_msg(buf);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001993
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001994 /* we lock on new_sk; but lockdep sees the lock on sk */
1995 lock_sock_nested(new_sk, SINGLE_DEPTH_NESTING);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001996
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001997 /*
1998 * Reject any stray messages received by new socket
1999 * before the socket lock was taken (very, very unlikely)
2000 */
Jon Paul Maloy2e84c602014-08-22 18:09:18 -04002001 tsk_rej_rx_queue(new_sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002002
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002003 /* Connect new socket to it's peer */
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002004 tipc_sk_finish_conn(new_tsock, msg_origport(msg), msg_orignode(msg));
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002005 new_sock->state = SS_CONNECTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002006
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002007 tsk_set_importance(new_tsock, msg_importance(msg));
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002008 if (msg_named(msg)) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002009 new_tsock->conn_type = msg_nametype(msg);
2010 new_tsock->conn_instance = msg_nameinst(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002011 }
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002012
2013 /*
2014 * Respond to 'SYN-' by discarding it & returning 'ACK'-.
2015 * Respond to 'SYN+' by queuing it on new socket.
2016 */
2017 if (!msg_data_sz(msg)) {
2018 struct msghdr m = {NULL,};
2019
Jon Paul Maloy2e84c602014-08-22 18:09:18 -04002020 tsk_advance_rx_queue(sk);
Ying Xue247f0f32014-02-18 16:06:46 +08002021 tipc_send_packet(NULL, new_sock, &m, 0);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002022 } else {
2023 __skb_dequeue(&sk->sk_receive_queue);
2024 __skb_queue_head(&new_sk->sk_receive_queue, buf);
Ying Xueaba79f32013-01-20 23:30:09 +01002025 skb_set_owner_r(buf, new_sk);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002026 }
2027 release_sock(new_sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002028exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07002029 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002030 return res;
2031}
2032
2033/**
Ying Xue247f0f32014-02-18 16:06:46 +08002034 * tipc_shutdown - shutdown socket connection
Per Lidenb97bf3f2006-01-02 19:04:38 +01002035 * @sock: socket structure
Allan Stephense247a8f2008-03-06 15:05:38 -08002036 * @how: direction to close (must be SHUT_RDWR)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002037 *
2038 * Terminates connection (if necessary), then purges socket's receive queue.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002039 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002040 * Returns 0 on success, errno otherwise
2041 */
Ying Xue247f0f32014-02-18 16:06:46 +08002042static int tipc_shutdown(struct socket *sock, int how)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002043{
Allan Stephens0c3141e2008-04-15 00:22:02 -07002044 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002045 struct tipc_sock *tsk = tipc_sk(sk);
Ying Xuea6ca1092014-11-26 11:41:55 +08002046 struct sk_buff *skb;
Jon Paul Maloy80e44c22014-08-22 18:09:10 -04002047 u32 dnode;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002048 int res;
2049
Allan Stephense247a8f2008-03-06 15:05:38 -08002050 if (how != SHUT_RDWR)
2051 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002052
Allan Stephens0c3141e2008-04-15 00:22:02 -07002053 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002054
2055 switch (sock->state) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07002056 case SS_CONNECTING:
Per Lidenb97bf3f2006-01-02 19:04:38 +01002057 case SS_CONNECTED:
2058
Per Lidenb97bf3f2006-01-02 19:04:38 +01002059restart:
Paul Gortmaker617d3c72012-04-30 15:29:02 -04002060 /* Disconnect and send a 'FIN+' or 'FIN-' message to peer */
Ying Xuea6ca1092014-11-26 11:41:55 +08002061 skb = __skb_dequeue(&sk->sk_receive_queue);
2062 if (skb) {
2063 if (TIPC_SKB_CB(skb)->handle != NULL) {
2064 kfree_skb(skb);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002065 goto restart;
2066 }
Ying Xuea6ca1092014-11-26 11:41:55 +08002067 if (tipc_msg_reverse(skb, &dnode, TIPC_CONN_SHUTDOWN))
Ying Xue07f6c4b2015-01-07 13:41:58 +08002068 tipc_link_xmit_skb(skb, dnode, tsk->portid);
2069 tipc_node_remove_conn(dnode, tsk->portid);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002070 } else {
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002071 dnode = tsk_peer_node(tsk);
Ying Xuea6ca1092014-11-26 11:41:55 +08002072 skb = tipc_msg_create(TIPC_CRITICAL_IMPORTANCE,
Jon Paul Maloy80e44c22014-08-22 18:09:10 -04002073 TIPC_CONN_MSG, SHORT_H_SIZE,
2074 0, dnode, tipc_own_addr,
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002075 tsk_peer_port(tsk),
Ying Xue07f6c4b2015-01-07 13:41:58 +08002076 tsk->portid, TIPC_CONN_SHUTDOWN);
2077 tipc_link_xmit_skb(skb, dnode, tsk->portid);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002078 }
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002079 tsk->connected = 0;
Allan Stephens0c3141e2008-04-15 00:22:02 -07002080 sock->state = SS_DISCONNECTING;
Ying Xue07f6c4b2015-01-07 13:41:58 +08002081 tipc_node_remove_conn(dnode, tsk->portid);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002082 /* fall through */
2083
2084 case SS_DISCONNECTING:
2085
Ying Xue75031152012-10-29 09:38:15 -04002086 /* Discard any unreceived messages */
Ying Xue57467e52013-01-20 23:30:08 +01002087 __skb_queue_purge(&sk->sk_receive_queue);
Ying Xue75031152012-10-29 09:38:15 -04002088
2089 /* Wake up anyone sleeping in poll */
2090 sk->sk_state_change(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002091 res = 0;
2092 break;
2093
2094 default:
2095 res = -ENOTCONN;
2096 }
2097
Allan Stephens0c3141e2008-04-15 00:22:02 -07002098 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002099 return res;
2100}
2101
Ying Xuef2f2a962015-01-09 15:27:02 +08002102static void tipc_sk_timeout(unsigned long data)
Jon Paul Maloy57289012014-08-22 18:09:09 -04002103{
Ying Xuef2f2a962015-01-09 15:27:02 +08002104 struct tipc_sock *tsk = (struct tipc_sock *)data;
2105 struct sock *sk = &tsk->sk;
Ying Xuea6ca1092014-11-26 11:41:55 +08002106 struct sk_buff *skb = NULL;
Jon Paul Maloy57289012014-08-22 18:09:09 -04002107 u32 peer_port, peer_node;
2108
Jon Paul Maloy57289012014-08-22 18:09:09 -04002109 bh_lock_sock(sk);
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002110 if (!tsk->connected) {
Jon Paul Maloy6c9808c2014-08-22 18:09:16 -04002111 bh_unlock_sock(sk);
2112 goto exit;
2113 }
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002114 peer_port = tsk_peer_port(tsk);
2115 peer_node = tsk_peer_node(tsk);
Jon Paul Maloy57289012014-08-22 18:09:09 -04002116
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002117 if (tsk->probing_state == TIPC_CONN_PROBING) {
Jon Paul Maloy57289012014-08-22 18:09:09 -04002118 /* Previous probe not answered -> self abort */
Ying Xuea6ca1092014-11-26 11:41:55 +08002119 skb = tipc_msg_create(TIPC_CRITICAL_IMPORTANCE, TIPC_CONN_MSG,
Jon Paul Maloy57289012014-08-22 18:09:09 -04002120 SHORT_H_SIZE, 0, tipc_own_addr,
Ying Xuef2f2a962015-01-09 15:27:02 +08002121 peer_node, tsk->portid, peer_port,
Jon Paul Maloy57289012014-08-22 18:09:09 -04002122 TIPC_ERR_NO_PORT);
2123 } else {
Ying Xuea6ca1092014-11-26 11:41:55 +08002124 skb = tipc_msg_create(CONN_MANAGER, CONN_PROBE, INT_H_SIZE,
Jon Paul Maloy57289012014-08-22 18:09:09 -04002125 0, peer_node, tipc_own_addr,
Ying Xuef2f2a962015-01-09 15:27:02 +08002126 peer_port, tsk->portid, TIPC_OK);
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002127 tsk->probing_state = TIPC_CONN_PROBING;
Ying Xuef2f2a962015-01-09 15:27:02 +08002128 if (!mod_timer(&tsk->timer, jiffies + tsk->probing_intv))
2129 sock_hold(sk);
Jon Paul Maloy57289012014-08-22 18:09:09 -04002130 }
2131 bh_unlock_sock(sk);
Ying Xuea6ca1092014-11-26 11:41:55 +08002132 if (skb)
Ying Xuef2f2a962015-01-09 15:27:02 +08002133 tipc_link_xmit_skb(skb, peer_node, tsk->portid);
Jon Paul Maloy6c9808c2014-08-22 18:09:16 -04002134exit:
Ying Xue07f6c4b2015-01-07 13:41:58 +08002135 sock_put(sk);
Jon Paul Maloy57289012014-08-22 18:09:09 -04002136}
2137
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002138static int tipc_sk_publish(struct tipc_sock *tsk, uint scope,
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002139 struct tipc_name_seq const *seq)
2140{
2141 struct publication *publ;
2142 u32 key;
2143
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002144 if (tsk->connected)
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002145 return -EINVAL;
Ying Xue07f6c4b2015-01-07 13:41:58 +08002146 key = tsk->portid + tsk->pub_count + 1;
2147 if (key == tsk->portid)
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002148 return -EADDRINUSE;
2149
2150 publ = tipc_nametbl_publish(seq->type, seq->lower, seq->upper,
Ying Xue07f6c4b2015-01-07 13:41:58 +08002151 scope, tsk->portid, key);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002152 if (unlikely(!publ))
2153 return -EINVAL;
2154
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002155 list_add(&publ->pport_list, &tsk->publications);
2156 tsk->pub_count++;
2157 tsk->published = 1;
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002158 return 0;
2159}
2160
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002161static int tipc_sk_withdraw(struct tipc_sock *tsk, uint scope,
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002162 struct tipc_name_seq const *seq)
2163{
2164 struct publication *publ;
2165 struct publication *safe;
2166 int rc = -EINVAL;
2167
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002168 list_for_each_entry_safe(publ, safe, &tsk->publications, pport_list) {
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002169 if (seq) {
2170 if (publ->scope != scope)
2171 continue;
2172 if (publ->type != seq->type)
2173 continue;
2174 if (publ->lower != seq->lower)
2175 continue;
2176 if (publ->upper != seq->upper)
2177 break;
2178 tipc_nametbl_withdraw(publ->type, publ->lower,
2179 publ->ref, publ->key);
2180 rc = 0;
2181 break;
2182 }
2183 tipc_nametbl_withdraw(publ->type, publ->lower,
2184 publ->ref, publ->key);
2185 rc = 0;
2186 }
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002187 if (list_empty(&tsk->publications))
2188 tsk->published = 0;
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002189 return rc;
2190}
2191
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002192static int tipc_sk_show(struct tipc_sock *tsk, char *buf,
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002193 int len, int full_id)
2194{
2195 struct publication *publ;
2196 int ret;
2197
2198 if (full_id)
2199 ret = tipc_snprintf(buf, len, "<%u.%u.%u:%u>:",
2200 tipc_zone(tipc_own_addr),
2201 tipc_cluster(tipc_own_addr),
Ying Xue07f6c4b2015-01-07 13:41:58 +08002202 tipc_node(tipc_own_addr), tsk->portid);
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002203 else
Ying Xue07f6c4b2015-01-07 13:41:58 +08002204 ret = tipc_snprintf(buf, len, "%-10u:", tsk->portid);
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002205
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002206 if (tsk->connected) {
2207 u32 dport = tsk_peer_port(tsk);
2208 u32 destnode = tsk_peer_node(tsk);
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002209
2210 ret += tipc_snprintf(buf + ret, len - ret,
2211 " connected to <%u.%u.%u:%u>",
2212 tipc_zone(destnode),
2213 tipc_cluster(destnode),
2214 tipc_node(destnode), dport);
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002215 if (tsk->conn_type != 0)
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002216 ret += tipc_snprintf(buf + ret, len - ret,
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002217 " via {%u,%u}", tsk->conn_type,
2218 tsk->conn_instance);
2219 } else if (tsk->published) {
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002220 ret += tipc_snprintf(buf + ret, len - ret, " bound to");
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002221 list_for_each_entry(publ, &tsk->publications, pport_list) {
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002222 if (publ->lower == publ->upper)
2223 ret += tipc_snprintf(buf + ret, len - ret,
2224 " {%u,%u}", publ->type,
2225 publ->lower);
2226 else
2227 ret += tipc_snprintf(buf + ret, len - ret,
2228 " {%u,%u,%u}", publ->type,
2229 publ->lower, publ->upper);
2230 }
2231 }
2232 ret += tipc_snprintf(buf + ret, len - ret, "\n");
2233 return ret;
2234}
2235
2236struct sk_buff *tipc_sk_socks_show(void)
2237{
Ying Xue07f6c4b2015-01-07 13:41:58 +08002238 const struct bucket_table *tbl;
2239 struct rhash_head *pos;
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002240 struct sk_buff *buf;
2241 struct tlv_desc *rep_tlv;
2242 char *pb;
2243 int pb_len;
2244 struct tipc_sock *tsk;
2245 int str_len = 0;
Ying Xue07f6c4b2015-01-07 13:41:58 +08002246 int i;
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002247
2248 buf = tipc_cfg_reply_alloc(TLV_SPACE(ULTRA_STRING_MAX_LEN));
2249 if (!buf)
2250 return NULL;
2251 rep_tlv = (struct tlv_desc *)buf->data;
2252 pb = TLV_DATA(rep_tlv);
2253 pb_len = ULTRA_STRING_MAX_LEN;
2254
Ying Xue07f6c4b2015-01-07 13:41:58 +08002255 rcu_read_lock();
2256 tbl = rht_dereference_rcu((&tipc_sk_rht)->tbl, &tipc_sk_rht);
2257 for (i = 0; i < tbl->size; i++) {
2258 rht_for_each_entry_rcu(tsk, pos, tbl, i, node) {
2259 spin_lock_bh(&tsk->sk.sk_lock.slock);
2260 str_len += tipc_sk_show(tsk, pb + str_len,
2261 pb_len - str_len, 0);
2262 spin_unlock_bh(&tsk->sk.sk_lock.slock);
2263 }
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002264 }
Ying Xue07f6c4b2015-01-07 13:41:58 +08002265 rcu_read_unlock();
2266
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002267 str_len += 1; /* for "\0" */
2268 skb_put(buf, TLV_SPACE(str_len));
2269 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
2270
2271 return buf;
2272}
2273
2274/* tipc_sk_reinit: set non-zero address in all existing sockets
2275 * when we go from standalone to network mode.
2276 */
2277void tipc_sk_reinit(void)
2278{
Ying Xue07f6c4b2015-01-07 13:41:58 +08002279 const struct bucket_table *tbl;
2280 struct rhash_head *pos;
2281 struct tipc_sock *tsk;
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002282 struct tipc_msg *msg;
Ying Xue07f6c4b2015-01-07 13:41:58 +08002283 int i;
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002284
Ying Xue07f6c4b2015-01-07 13:41:58 +08002285 rcu_read_lock();
2286 tbl = rht_dereference_rcu((&tipc_sk_rht)->tbl, &tipc_sk_rht);
2287 for (i = 0; i < tbl->size; i++) {
2288 rht_for_each_entry_rcu(tsk, pos, tbl, i, node) {
2289 spin_lock_bh(&tsk->sk.sk_lock.slock);
2290 msg = &tsk->phdr;
2291 msg_set_prevnode(msg, tipc_own_addr);
2292 msg_set_orignode(msg, tipc_own_addr);
2293 spin_unlock_bh(&tsk->sk.sk_lock.slock);
2294 }
2295 }
2296 rcu_read_unlock();
2297}
2298
2299static struct tipc_sock *tipc_sk_lookup(u32 portid)
2300{
2301 struct tipc_sock *tsk;
2302
2303 rcu_read_lock();
2304 tsk = rhashtable_lookup(&tipc_sk_rht, &portid);
2305 if (tsk)
2306 sock_hold(&tsk->sk);
2307 rcu_read_unlock();
2308
2309 return tsk;
2310}
2311
2312static int tipc_sk_insert(struct tipc_sock *tsk)
2313{
2314 u32 remaining = (TIPC_MAX_PORT - TIPC_MIN_PORT) + 1;
2315 u32 portid = prandom_u32() % remaining + TIPC_MIN_PORT;
2316
2317 while (remaining--) {
2318 portid++;
2319 if ((portid < TIPC_MIN_PORT) || (portid > TIPC_MAX_PORT))
2320 portid = TIPC_MIN_PORT;
2321 tsk->portid = portid;
2322 sock_hold(&tsk->sk);
2323 if (rhashtable_lookup_insert(&tipc_sk_rht, &tsk->node))
2324 return 0;
2325 sock_put(&tsk->sk);
2326 }
2327
2328 return -1;
2329}
2330
2331static void tipc_sk_remove(struct tipc_sock *tsk)
2332{
2333 struct sock *sk = &tsk->sk;
2334
2335 if (rhashtable_remove(&tipc_sk_rht, &tsk->node)) {
2336 WARN_ON(atomic_read(&sk->sk_refcnt) == 1);
2337 __sock_put(sk);
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002338 }
2339}
2340
Ying Xue07f6c4b2015-01-07 13:41:58 +08002341int tipc_sk_rht_init(void)
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002342{
Ying Xue07f6c4b2015-01-07 13:41:58 +08002343 struct rhashtable_params rht_params = {
2344 .nelem_hint = 192,
2345 .head_offset = offsetof(struct tipc_sock, node),
2346 .key_offset = offsetof(struct tipc_sock, portid),
2347 .key_len = sizeof(u32), /* portid */
2348 .hashfn = jhash,
2349 .max_shift = 20, /* 1M */
2350 .min_shift = 8, /* 256 */
2351 .grow_decision = rht_grow_above_75,
2352 .shrink_decision = rht_shrink_below_30,
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002353 };
2354
Ying Xue07f6c4b2015-01-07 13:41:58 +08002355 return rhashtable_init(&tipc_sk_rht, &rht_params);
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002356}
2357
Ying Xue07f6c4b2015-01-07 13:41:58 +08002358void tipc_sk_rht_destroy(void)
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002359{
Ying Xue07f6c4b2015-01-07 13:41:58 +08002360 /* Wait for socket readers to complete */
2361 synchronize_net();
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002362
Ying Xue07f6c4b2015-01-07 13:41:58 +08002363 rhashtable_destroy(&tipc_sk_rht);
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002364}
2365
2366/**
Ying Xue247f0f32014-02-18 16:06:46 +08002367 * tipc_setsockopt - set socket option
Per Lidenb97bf3f2006-01-02 19:04:38 +01002368 * @sock: socket structure
2369 * @lvl: option level
2370 * @opt: option identifier
2371 * @ov: pointer to new option value
2372 * @ol: length of option value
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002373 *
2374 * For stream sockets only, accepts and ignores all IPPROTO_TCP options
Per Lidenb97bf3f2006-01-02 19:04:38 +01002375 * (to ease compatibility).
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002376 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002377 * Returns 0 on success, errno otherwise
2378 */
Ying Xue247f0f32014-02-18 16:06:46 +08002379static int tipc_setsockopt(struct socket *sock, int lvl, int opt,
2380 char __user *ov, unsigned int ol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002381{
Allan Stephens0c3141e2008-04-15 00:22:02 -07002382 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002383 struct tipc_sock *tsk = tipc_sk(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002384 u32 value;
2385 int res;
2386
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002387 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
2388 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002389 if (lvl != SOL_TIPC)
2390 return -ENOPROTOOPT;
2391 if (ol < sizeof(value))
2392 return -EINVAL;
Allan Stephens2db99832010-12-31 18:59:33 +00002393 res = get_user(value, (u32 __user *)ov);
2394 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002395 return res;
2396
Allan Stephens0c3141e2008-04-15 00:22:02 -07002397 lock_sock(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002398
Per Lidenb97bf3f2006-01-02 19:04:38 +01002399 switch (opt) {
2400 case TIPC_IMPORTANCE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002401 res = tsk_set_importance(tsk, value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002402 break;
2403 case TIPC_SRC_DROPPABLE:
2404 if (sock->type != SOCK_STREAM)
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002405 tsk_set_unreliable(tsk, value);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002406 else
Per Lidenb97bf3f2006-01-02 19:04:38 +01002407 res = -ENOPROTOOPT;
2408 break;
2409 case TIPC_DEST_DROPPABLE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002410 tsk_set_unreturnable(tsk, value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002411 break;
2412 case TIPC_CONN_TIMEOUT:
Allan Stephensa0f40f02011-05-26 13:44:34 -04002413 tipc_sk(sk)->conn_timeout = value;
Allan Stephens0c3141e2008-04-15 00:22:02 -07002414 /* no need to set "res", since already 0 at this point */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002415 break;
2416 default:
2417 res = -EINVAL;
2418 }
2419
Allan Stephens0c3141e2008-04-15 00:22:02 -07002420 release_sock(sk);
2421
Per Lidenb97bf3f2006-01-02 19:04:38 +01002422 return res;
2423}
2424
2425/**
Ying Xue247f0f32014-02-18 16:06:46 +08002426 * tipc_getsockopt - get socket option
Per Lidenb97bf3f2006-01-02 19:04:38 +01002427 * @sock: socket structure
2428 * @lvl: option level
2429 * @opt: option identifier
2430 * @ov: receptacle for option value
2431 * @ol: receptacle for length of option value
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002432 *
2433 * For stream sockets only, returns 0 length result for all IPPROTO_TCP options
Per Lidenb97bf3f2006-01-02 19:04:38 +01002434 * (to ease compatibility).
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002435 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002436 * Returns 0 on success, errno otherwise
2437 */
Ying Xue247f0f32014-02-18 16:06:46 +08002438static int tipc_getsockopt(struct socket *sock, int lvl, int opt,
2439 char __user *ov, int __user *ol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002440{
Allan Stephens0c3141e2008-04-15 00:22:02 -07002441 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002442 struct tipc_sock *tsk = tipc_sk(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002443 int len;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002444 u32 value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002445 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002446
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002447 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
2448 return put_user(0, ol);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002449 if (lvl != SOL_TIPC)
2450 return -ENOPROTOOPT;
Allan Stephens2db99832010-12-31 18:59:33 +00002451 res = get_user(len, ol);
2452 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002453 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002454
Allan Stephens0c3141e2008-04-15 00:22:02 -07002455 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002456
2457 switch (opt) {
2458 case TIPC_IMPORTANCE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002459 value = tsk_importance(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002460 break;
2461 case TIPC_SRC_DROPPABLE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002462 value = tsk_unreliable(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002463 break;
2464 case TIPC_DEST_DROPPABLE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002465 value = tsk_unreturnable(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002466 break;
2467 case TIPC_CONN_TIMEOUT:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002468 value = tsk->conn_timeout;
Allan Stephens0c3141e2008-04-15 00:22:02 -07002469 /* no need to set "res", since already 0 at this point */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002470 break;
Allan Stephens0e659672010-12-31 18:59:32 +00002471 case TIPC_NODE_RECVQ_DEPTH:
Ying Xue9da3d472012-11-27 06:15:27 -05002472 value = 0; /* was tipc_queue_size, now obsolete */
oscar.medina@motorola.com66506132009-06-30 03:25:39 +00002473 break;
Allan Stephens0e659672010-12-31 18:59:32 +00002474 case TIPC_SOCK_RECVQ_DEPTH:
oscar.medina@motorola.com66506132009-06-30 03:25:39 +00002475 value = skb_queue_len(&sk->sk_receive_queue);
2476 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002477 default:
2478 res = -EINVAL;
2479 }
2480
Allan Stephens0c3141e2008-04-15 00:22:02 -07002481 release_sock(sk);
2482
Paul Gortmaker25860c32010-12-31 18:59:31 +00002483 if (res)
2484 return res; /* "get" failed */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002485
Paul Gortmaker25860c32010-12-31 18:59:31 +00002486 if (len < sizeof(value))
2487 return -EINVAL;
2488
2489 if (copy_to_user(ov, &value, sizeof(value)))
2490 return -EFAULT;
2491
2492 return put_user(sizeof(value), ol);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002493}
2494
Wei Yongjun52f50ce2014-07-20 13:14:28 +08002495static int tipc_ioctl(struct socket *sk, unsigned int cmd, unsigned long arg)
Erik Hugne78acb1f2014-04-24 16:26:47 +02002496{
2497 struct tipc_sioc_ln_req lnr;
2498 void __user *argp = (void __user *)arg;
2499
2500 switch (cmd) {
2501 case SIOCGETLINKNAME:
2502 if (copy_from_user(&lnr, argp, sizeof(lnr)))
2503 return -EFAULT;
Ying Xue7b8613e2014-10-20 14:44:25 +08002504 if (!tipc_node_get_linkname(lnr.bearer_id & 0xffff, lnr.peer,
Erik Hugne78acb1f2014-04-24 16:26:47 +02002505 lnr.linkname, TIPC_MAX_LINK_NAME)) {
2506 if (copy_to_user(argp, &lnr, sizeof(lnr)))
2507 return -EFAULT;
2508 return 0;
2509 }
2510 return -EADDRNOTAVAIL;
Erik Hugne78acb1f2014-04-24 16:26:47 +02002511 default:
2512 return -ENOIOCTLCMD;
2513 }
2514}
2515
Ben Hutchingsae86b9e2012-07-10 10:55:35 +00002516/* Protocol switches for the various types of TIPC sockets */
2517
Florian Westphalbca65ea2008-02-07 18:18:01 -08002518static const struct proto_ops msg_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00002519 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002520 .family = AF_TIPC,
Ying Xue247f0f32014-02-18 16:06:46 +08002521 .release = tipc_release,
2522 .bind = tipc_bind,
2523 .connect = tipc_connect,
Allan Stephens5eee6a62007-06-10 17:24:55 -07002524 .socketpair = sock_no_socketpair,
Ying Xue245f3d32011-07-06 06:01:13 -04002525 .accept = sock_no_accept,
Ying Xue247f0f32014-02-18 16:06:46 +08002526 .getname = tipc_getname,
2527 .poll = tipc_poll,
Erik Hugne78acb1f2014-04-24 16:26:47 +02002528 .ioctl = tipc_ioctl,
Ying Xue245f3d32011-07-06 06:01:13 -04002529 .listen = sock_no_listen,
Ying Xue247f0f32014-02-18 16:06:46 +08002530 .shutdown = tipc_shutdown,
2531 .setsockopt = tipc_setsockopt,
2532 .getsockopt = tipc_getsockopt,
2533 .sendmsg = tipc_sendmsg,
2534 .recvmsg = tipc_recvmsg,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09002535 .mmap = sock_no_mmap,
2536 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01002537};
2538
Florian Westphalbca65ea2008-02-07 18:18:01 -08002539static const struct proto_ops packet_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00002540 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002541 .family = AF_TIPC,
Ying Xue247f0f32014-02-18 16:06:46 +08002542 .release = tipc_release,
2543 .bind = tipc_bind,
2544 .connect = tipc_connect,
Allan Stephens5eee6a62007-06-10 17:24:55 -07002545 .socketpair = sock_no_socketpair,
Ying Xue247f0f32014-02-18 16:06:46 +08002546 .accept = tipc_accept,
2547 .getname = tipc_getname,
2548 .poll = tipc_poll,
Erik Hugne78acb1f2014-04-24 16:26:47 +02002549 .ioctl = tipc_ioctl,
Ying Xue247f0f32014-02-18 16:06:46 +08002550 .listen = tipc_listen,
2551 .shutdown = tipc_shutdown,
2552 .setsockopt = tipc_setsockopt,
2553 .getsockopt = tipc_getsockopt,
2554 .sendmsg = tipc_send_packet,
2555 .recvmsg = tipc_recvmsg,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09002556 .mmap = sock_no_mmap,
2557 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01002558};
2559
Florian Westphalbca65ea2008-02-07 18:18:01 -08002560static const struct proto_ops stream_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00002561 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002562 .family = AF_TIPC,
Ying Xue247f0f32014-02-18 16:06:46 +08002563 .release = tipc_release,
2564 .bind = tipc_bind,
2565 .connect = tipc_connect,
Allan Stephens5eee6a62007-06-10 17:24:55 -07002566 .socketpair = sock_no_socketpair,
Ying Xue247f0f32014-02-18 16:06:46 +08002567 .accept = tipc_accept,
2568 .getname = tipc_getname,
2569 .poll = tipc_poll,
Erik Hugne78acb1f2014-04-24 16:26:47 +02002570 .ioctl = tipc_ioctl,
Ying Xue247f0f32014-02-18 16:06:46 +08002571 .listen = tipc_listen,
2572 .shutdown = tipc_shutdown,
2573 .setsockopt = tipc_setsockopt,
2574 .getsockopt = tipc_getsockopt,
2575 .sendmsg = tipc_send_stream,
2576 .recvmsg = tipc_recv_stream,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09002577 .mmap = sock_no_mmap,
2578 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01002579};
2580
Florian Westphalbca65ea2008-02-07 18:18:01 -08002581static const struct net_proto_family tipc_family_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00002582 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002583 .family = AF_TIPC,
Ying Xuec5fa7b32013-06-17 10:54:39 -04002584 .create = tipc_sk_create
Per Lidenb97bf3f2006-01-02 19:04:38 +01002585};
2586
2587static struct proto tipc_proto = {
2588 .name = "TIPC",
2589 .owner = THIS_MODULE,
Ying Xuecc79dd12013-06-17 10:54:37 -04002590 .obj_size = sizeof(struct tipc_sock),
2591 .sysctl_rmem = sysctl_tipc_rmem
Per Lidenb97bf3f2006-01-02 19:04:38 +01002592};
2593
Ying Xuec5fa7b32013-06-17 10:54:39 -04002594static struct proto tipc_proto_kern = {
2595 .name = "TIPC",
2596 .obj_size = sizeof(struct tipc_sock),
2597 .sysctl_rmem = sysctl_tipc_rmem
2598};
2599
Per Lidenb97bf3f2006-01-02 19:04:38 +01002600/**
Per Liden4323add2006-01-18 00:38:21 +01002601 * tipc_socket_init - initialize TIPC socket interface
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002602 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002603 * Returns 0 on success, errno otherwise
2604 */
Per Liden4323add2006-01-18 00:38:21 +01002605int tipc_socket_init(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002606{
2607 int res;
2608
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002609 res = proto_register(&tipc_proto, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002610 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002611 pr_err("Failed to register TIPC protocol type\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002612 goto out;
2613 }
2614
2615 res = sock_register(&tipc_family_ops);
2616 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002617 pr_err("Failed to register TIPC socket type\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002618 proto_unregister(&tipc_proto);
2619 goto out;
2620 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002621 out:
2622 return res;
2623}
2624
2625/**
Per Liden4323add2006-01-18 00:38:21 +01002626 * tipc_socket_stop - stop TIPC socket interface
Per Lidenb97bf3f2006-01-02 19:04:38 +01002627 */
Per Liden4323add2006-01-18 00:38:21 +01002628void tipc_socket_stop(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002629{
Per Lidenb97bf3f2006-01-02 19:04:38 +01002630 sock_unregister(tipc_family_ops.family);
2631 proto_unregister(&tipc_proto);
2632}
Richard Alpe34b78a122014-11-20 10:29:10 +01002633
2634/* Caller should hold socket lock for the passed tipc socket. */
Richard Alped8182802014-11-24 11:10:29 +01002635static int __tipc_nl_add_sk_con(struct sk_buff *skb, struct tipc_sock *tsk)
Richard Alpe34b78a122014-11-20 10:29:10 +01002636{
2637 u32 peer_node;
2638 u32 peer_port;
2639 struct nlattr *nest;
2640
2641 peer_node = tsk_peer_node(tsk);
2642 peer_port = tsk_peer_port(tsk);
2643
2644 nest = nla_nest_start(skb, TIPC_NLA_SOCK_CON);
2645
2646 if (nla_put_u32(skb, TIPC_NLA_CON_NODE, peer_node))
2647 goto msg_full;
2648 if (nla_put_u32(skb, TIPC_NLA_CON_SOCK, peer_port))
2649 goto msg_full;
2650
2651 if (tsk->conn_type != 0) {
2652 if (nla_put_flag(skb, TIPC_NLA_CON_FLAG))
2653 goto msg_full;
2654 if (nla_put_u32(skb, TIPC_NLA_CON_TYPE, tsk->conn_type))
2655 goto msg_full;
2656 if (nla_put_u32(skb, TIPC_NLA_CON_INST, tsk->conn_instance))
2657 goto msg_full;
2658 }
2659 nla_nest_end(skb, nest);
2660
2661 return 0;
2662
2663msg_full:
2664 nla_nest_cancel(skb, nest);
2665
2666 return -EMSGSIZE;
2667}
2668
2669/* Caller should hold socket lock for the passed tipc socket. */
Richard Alped8182802014-11-24 11:10:29 +01002670static int __tipc_nl_add_sk(struct sk_buff *skb, struct netlink_callback *cb,
2671 struct tipc_sock *tsk)
Richard Alpe34b78a122014-11-20 10:29:10 +01002672{
2673 int err;
2674 void *hdr;
2675 struct nlattr *attrs;
2676
2677 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
2678 &tipc_genl_v2_family, NLM_F_MULTI, TIPC_NL_SOCK_GET);
2679 if (!hdr)
2680 goto msg_cancel;
2681
2682 attrs = nla_nest_start(skb, TIPC_NLA_SOCK);
2683 if (!attrs)
2684 goto genlmsg_cancel;
Ying Xue07f6c4b2015-01-07 13:41:58 +08002685 if (nla_put_u32(skb, TIPC_NLA_SOCK_REF, tsk->portid))
Richard Alpe34b78a122014-11-20 10:29:10 +01002686 goto attr_msg_cancel;
2687 if (nla_put_u32(skb, TIPC_NLA_SOCK_ADDR, tipc_own_addr))
2688 goto attr_msg_cancel;
2689
2690 if (tsk->connected) {
2691 err = __tipc_nl_add_sk_con(skb, tsk);
2692 if (err)
2693 goto attr_msg_cancel;
2694 } else if (!list_empty(&tsk->publications)) {
2695 if (nla_put_flag(skb, TIPC_NLA_SOCK_HAS_PUBL))
2696 goto attr_msg_cancel;
2697 }
2698 nla_nest_end(skb, attrs);
2699 genlmsg_end(skb, hdr);
2700
2701 return 0;
2702
2703attr_msg_cancel:
2704 nla_nest_cancel(skb, attrs);
2705genlmsg_cancel:
2706 genlmsg_cancel(skb, hdr);
2707msg_cancel:
2708 return -EMSGSIZE;
2709}
2710
2711int tipc_nl_sk_dump(struct sk_buff *skb, struct netlink_callback *cb)
2712{
2713 int err;
2714 struct tipc_sock *tsk;
Ying Xue07f6c4b2015-01-07 13:41:58 +08002715 const struct bucket_table *tbl;
2716 struct rhash_head *pos;
2717 u32 prev_portid = cb->args[0];
2718 u32 portid = prev_portid;
2719 int i;
Richard Alpe34b78a122014-11-20 10:29:10 +01002720
Ying Xue07f6c4b2015-01-07 13:41:58 +08002721 rcu_read_lock();
2722 tbl = rht_dereference_rcu((&tipc_sk_rht)->tbl, &tipc_sk_rht);
2723 for (i = 0; i < tbl->size; i++) {
2724 rht_for_each_entry_rcu(tsk, pos, tbl, i, node) {
2725 spin_lock_bh(&tsk->sk.sk_lock.slock);
2726 portid = tsk->portid;
2727 err = __tipc_nl_add_sk(skb, cb, tsk);
2728 spin_unlock_bh(&tsk->sk.sk_lock.slock);
2729 if (err)
2730 break;
Richard Alpe34b78a122014-11-20 10:29:10 +01002731
Ying Xue07f6c4b2015-01-07 13:41:58 +08002732 prev_portid = portid;
2733 }
Richard Alpe34b78a122014-11-20 10:29:10 +01002734 }
Ying Xue07f6c4b2015-01-07 13:41:58 +08002735 rcu_read_unlock();
Richard Alpe34b78a122014-11-20 10:29:10 +01002736
Ying Xue07f6c4b2015-01-07 13:41:58 +08002737 cb->args[0] = prev_portid;
Richard Alpe34b78a122014-11-20 10:29:10 +01002738
2739 return skb->len;
2740}
Richard Alpe1a1a1432014-11-20 10:29:11 +01002741
2742/* Caller should hold socket lock for the passed tipc socket. */
Richard Alped8182802014-11-24 11:10:29 +01002743static int __tipc_nl_add_sk_publ(struct sk_buff *skb,
2744 struct netlink_callback *cb,
2745 struct publication *publ)
Richard Alpe1a1a1432014-11-20 10:29:11 +01002746{
2747 void *hdr;
2748 struct nlattr *attrs;
2749
2750 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
2751 &tipc_genl_v2_family, NLM_F_MULTI, TIPC_NL_PUBL_GET);
2752 if (!hdr)
2753 goto msg_cancel;
2754
2755 attrs = nla_nest_start(skb, TIPC_NLA_PUBL);
2756 if (!attrs)
2757 goto genlmsg_cancel;
2758
2759 if (nla_put_u32(skb, TIPC_NLA_PUBL_KEY, publ->key))
2760 goto attr_msg_cancel;
2761 if (nla_put_u32(skb, TIPC_NLA_PUBL_TYPE, publ->type))
2762 goto attr_msg_cancel;
2763 if (nla_put_u32(skb, TIPC_NLA_PUBL_LOWER, publ->lower))
2764 goto attr_msg_cancel;
2765 if (nla_put_u32(skb, TIPC_NLA_PUBL_UPPER, publ->upper))
2766 goto attr_msg_cancel;
2767
2768 nla_nest_end(skb, attrs);
2769 genlmsg_end(skb, hdr);
2770
2771 return 0;
2772
2773attr_msg_cancel:
2774 nla_nest_cancel(skb, attrs);
2775genlmsg_cancel:
2776 genlmsg_cancel(skb, hdr);
2777msg_cancel:
2778 return -EMSGSIZE;
2779}
2780
2781/* Caller should hold socket lock for the passed tipc socket. */
Richard Alped8182802014-11-24 11:10:29 +01002782static int __tipc_nl_list_sk_publ(struct sk_buff *skb,
2783 struct netlink_callback *cb,
2784 struct tipc_sock *tsk, u32 *last_publ)
Richard Alpe1a1a1432014-11-20 10:29:11 +01002785{
2786 int err;
2787 struct publication *p;
2788
2789 if (*last_publ) {
2790 list_for_each_entry(p, &tsk->publications, pport_list) {
2791 if (p->key == *last_publ)
2792 break;
2793 }
2794 if (p->key != *last_publ) {
2795 /* We never set seq or call nl_dump_check_consistent()
2796 * this means that setting prev_seq here will cause the
2797 * consistence check to fail in the netlink callback
2798 * handler. Resulting in the last NLMSG_DONE message
2799 * having the NLM_F_DUMP_INTR flag set.
2800 */
2801 cb->prev_seq = 1;
2802 *last_publ = 0;
2803 return -EPIPE;
2804 }
2805 } else {
2806 p = list_first_entry(&tsk->publications, struct publication,
2807 pport_list);
2808 }
2809
2810 list_for_each_entry_from(p, &tsk->publications, pport_list) {
2811 err = __tipc_nl_add_sk_publ(skb, cb, p);
2812 if (err) {
2813 *last_publ = p->key;
2814 return err;
2815 }
2816 }
2817 *last_publ = 0;
2818
2819 return 0;
2820}
2821
2822int tipc_nl_publ_dump(struct sk_buff *skb, struct netlink_callback *cb)
2823{
2824 int err;
Ying Xue07f6c4b2015-01-07 13:41:58 +08002825 u32 tsk_portid = cb->args[0];
Richard Alpe1a1a1432014-11-20 10:29:11 +01002826 u32 last_publ = cb->args[1];
2827 u32 done = cb->args[2];
2828 struct tipc_sock *tsk;
2829
Ying Xue07f6c4b2015-01-07 13:41:58 +08002830 if (!tsk_portid) {
Richard Alpe1a1a1432014-11-20 10:29:11 +01002831 struct nlattr **attrs;
2832 struct nlattr *sock[TIPC_NLA_SOCK_MAX + 1];
2833
2834 err = tipc_nlmsg_parse(cb->nlh, &attrs);
2835 if (err)
2836 return err;
2837
2838 err = nla_parse_nested(sock, TIPC_NLA_SOCK_MAX,
2839 attrs[TIPC_NLA_SOCK],
2840 tipc_nl_sock_policy);
2841 if (err)
2842 return err;
2843
2844 if (!sock[TIPC_NLA_SOCK_REF])
2845 return -EINVAL;
2846
Ying Xue07f6c4b2015-01-07 13:41:58 +08002847 tsk_portid = nla_get_u32(sock[TIPC_NLA_SOCK_REF]);
Richard Alpe1a1a1432014-11-20 10:29:11 +01002848 }
2849
2850 if (done)
2851 return 0;
2852
Ying Xue07f6c4b2015-01-07 13:41:58 +08002853 tsk = tipc_sk_lookup(tsk_portid);
Richard Alpe1a1a1432014-11-20 10:29:11 +01002854 if (!tsk)
2855 return -EINVAL;
2856
2857 lock_sock(&tsk->sk);
2858 err = __tipc_nl_list_sk_publ(skb, cb, tsk, &last_publ);
2859 if (!err)
2860 done = 1;
2861 release_sock(&tsk->sk);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002862 sock_put(&tsk->sk);
Richard Alpe1a1a1432014-11-20 10:29:11 +01002863
Ying Xue07f6c4b2015-01-07 13:41:58 +08002864 cb->args[0] = tsk_portid;
Richard Alpe1a1a1432014-11-20 10:29:11 +01002865 cb->args[1] = last_publ;
2866 cb->args[2] = done;
2867
2868 return skb->len;
2869}