blob: 813847d25a49b4ea312b0a162a61bdb18ac11499 [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 Maloy3c724ac2015-02-05 08:36:43 -05004 * Copyright (c) 2001-2007, 2012-2015, 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 Maloyc637c102015-02-05 08:36:41 -050043#include "name_distr.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 * @conn_timeout: the time we can wait for an unresponded setup request
73 * @dupl_rcvcnt: number of bytes counted twice, in both backlog and rcv queue
74 * @link_cong: non-zero if owner must sleep because of link congestion
75 * @sent_unacked: # messages sent by socket, and not yet acked by peer
76 * @rcv_unacked: # messages read by user, but not yet acked back to peer
Ying Xue07f6c4b2015-01-07 13:41:58 +080077 * @node: hash table node
78 * @rcu: rcu struct for tipc_sock
Jon Paul Maloy301bae52014-08-22 18:09:20 -040079 */
80struct tipc_sock {
81 struct sock sk;
82 int connected;
83 u32 conn_type;
84 u32 conn_instance;
85 int published;
86 u32 max_pkt;
Ying Xue07f6c4b2015-01-07 13:41:58 +080087 u32 portid;
Jon Paul Maloy301bae52014-08-22 18:09:20 -040088 struct tipc_msg phdr;
89 struct list_head sock_list;
90 struct list_head publications;
91 u32 pub_count;
92 u32 probing_state;
Ying Xue2f55c432015-01-09 15:27:00 +080093 unsigned long probing_intv;
Jon Paul Maloy301bae52014-08-22 18:09:20 -040094 uint conn_timeout;
95 atomic_t dupl_rcvcnt;
96 bool link_cong;
97 uint sent_unacked;
98 uint rcv_unacked;
Ying Xue07f6c4b2015-01-07 13:41:58 +080099 struct rhash_head node;
100 struct rcu_head rcu;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400101};
Per Lidenb97bf3f2006-01-02 19:04:38 +0100102
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -0400103static int tipc_backlog_rcv(struct sock *sk, struct sk_buff *skb);
David S. Miller676d2362014-04-11 16:15:36 -0400104static void tipc_data_ready(struct sock *sk);
Ying Xuef288bef2012-08-21 11:16:57 +0800105static void tipc_write_space(struct sock *sk);
Ying Xue247f0f32014-02-18 16:06:46 +0800106static int tipc_release(struct socket *sock);
107static int tipc_accept(struct socket *sock, struct socket *new_sock, int flags);
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400108static int tipc_wait_for_sndmsg(struct socket *sock, long *timeo_p);
Ying Xuef2f2a962015-01-09 15:27:02 +0800109static void tipc_sk_timeout(unsigned long data);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400110static int tipc_sk_publish(struct tipc_sock *tsk, uint scope,
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400111 struct tipc_name_seq const *seq);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400112static int tipc_sk_withdraw(struct tipc_sock *tsk, uint scope,
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400113 struct tipc_name_seq const *seq);
Ying Xuee05b31f2015-01-09 15:27:08 +0800114static struct tipc_sock *tipc_sk_lookup(struct net *net, u32 portid);
Ying Xue07f6c4b2015-01-07 13:41:58 +0800115static int tipc_sk_insert(struct tipc_sock *tsk);
116static void tipc_sk_remove(struct tipc_sock *tsk);
Ying Xue39a02952015-03-02 15:37:47 +0800117static int __tipc_send_stream(struct socket *sock, struct msghdr *m,
118 size_t dsz);
119static int __tipc_sendmsg(struct socket *sock, struct msghdr *m, size_t dsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100120
Florian Westphalbca65ea2008-02-07 18:18:01 -0800121static const struct proto_ops packet_ops;
122static const struct proto_ops stream_ops;
123static const struct proto_ops msg_ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100124static struct proto tipc_proto;
125
Richard Alpe1a1a1432014-11-20 10:29:11 +0100126static const struct nla_policy tipc_nl_sock_policy[TIPC_NLA_SOCK_MAX + 1] = {
127 [TIPC_NLA_SOCK_UNSPEC] = { .type = NLA_UNSPEC },
128 [TIPC_NLA_SOCK_ADDR] = { .type = NLA_U32 },
129 [TIPC_NLA_SOCK_REF] = { .type = NLA_U32 },
130 [TIPC_NLA_SOCK_CON] = { .type = NLA_NESTED },
131 [TIPC_NLA_SOCK_HAS_PUBL] = { .type = NLA_FLAG }
132};
133
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900134/*
Allan Stephens0c3141e2008-04-15 00:22:02 -0700135 * Revised TIPC socket locking policy:
136 *
137 * Most socket operations take the standard socket lock when they start
138 * and hold it until they finish (or until they need to sleep). Acquiring
139 * this lock grants the owner exclusive access to the fields of the socket
140 * data structures, with the exception of the backlog queue. A few socket
141 * operations can be done without taking the socket lock because they only
142 * read socket information that never changes during the life of the socket.
143 *
144 * Socket operations may acquire the lock for the associated TIPC port if they
145 * need to perform an operation on the port. If any routine needs to acquire
146 * both the socket lock and the port lock it must take the socket lock first
147 * to avoid the risk of deadlock.
148 *
149 * The dispatcher handling incoming messages cannot grab the socket lock in
150 * the standard fashion, since invoked it runs at the BH level and cannot block.
151 * Instead, it checks to see if the socket lock is currently owned by someone,
152 * and either handles the message itself or adds it to the socket's backlog
153 * queue; in the latter case the queued message is processed once the process
154 * owning the socket lock releases it.
155 *
156 * NOTE: Releasing the socket lock while an operation is sleeping overcomes
157 * the problem of a blocked socket operation preventing any other operations
158 * from occurring. However, applications must be careful if they have
159 * multiple threads trying to send (or receive) on the same socket, as these
160 * operations might interfere with each other. For example, doing a connect
161 * and a receive at the same time might allow the receive to consume the
162 * ACK message meant for the connect. While additional work could be done
163 * to try and overcome this, it doesn't seem to be worthwhile at the present.
164 *
165 * NOTE: Releasing the socket lock while an operation is sleeping also ensures
166 * that another operation that must be performed in a non-blocking manner is
167 * not delayed for very long because the lock has already been taken.
168 *
169 * NOTE: This code assumes that certain fields of a port/socket pair are
170 * constant over its lifetime; such fields can be examined without taking
171 * the socket lock and/or port lock, and do not need to be re-read even
172 * after resuming processing after waiting. These fields include:
173 * - socket type
174 * - pointer to socket sk structure (aka tipc_sock structure)
175 * - pointer to port structure
176 * - port reference
Per Lidenb97bf3f2006-01-02 19:04:38 +0100177 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100178
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500179static u32 tsk_own_node(struct tipc_sock *tsk)
180{
181 return msg_prevnode(&tsk->phdr);
182}
183
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400184static u32 tsk_peer_node(struct tipc_sock *tsk)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400185{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400186 return msg_destnode(&tsk->phdr);
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400187}
188
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400189static u32 tsk_peer_port(struct tipc_sock *tsk)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400190{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400191 return msg_destport(&tsk->phdr);
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400192}
193
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400194static bool tsk_unreliable(struct tipc_sock *tsk)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400195{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400196 return msg_src_droppable(&tsk->phdr) != 0;
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400197}
198
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400199static void tsk_set_unreliable(struct tipc_sock *tsk, bool unreliable)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400200{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400201 msg_set_src_droppable(&tsk->phdr, unreliable ? 1 : 0);
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400202}
203
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400204static bool tsk_unreturnable(struct tipc_sock *tsk)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400205{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400206 return msg_dest_droppable(&tsk->phdr) != 0;
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400207}
208
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400209static void tsk_set_unreturnable(struct tipc_sock *tsk, bool unreturnable)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400210{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400211 msg_set_dest_droppable(&tsk->phdr, unreturnable ? 1 : 0);
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400212}
213
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400214static int tsk_importance(struct tipc_sock *tsk)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400215{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400216 return msg_importance(&tsk->phdr);
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400217}
218
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400219static int tsk_set_importance(struct tipc_sock *tsk, int imp)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400220{
221 if (imp > TIPC_CRITICAL_IMPORTANCE)
222 return -EINVAL;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400223 msg_set_importance(&tsk->phdr, (u32)imp);
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400224 return 0;
225}
Jon Paul Maloy8826cde2014-03-12 11:31:09 -0400226
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400227static struct tipc_sock *tipc_sk(const struct sock *sk)
228{
229 return container_of(sk, struct tipc_sock, sk);
230}
231
232static int tsk_conn_cong(struct tipc_sock *tsk)
233{
234 return tsk->sent_unacked >= TIPC_FLOWCTRL_WIN;
235}
236
Per Lidenb97bf3f2006-01-02 19:04:38 +0100237/**
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400238 * tsk_advance_rx_queue - discard first buffer in socket receive queue
Allan Stephens0c3141e2008-04-15 00:22:02 -0700239 *
240 * Caller must hold socket lock
Per Lidenb97bf3f2006-01-02 19:04:38 +0100241 */
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400242static void tsk_advance_rx_queue(struct sock *sk)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100243{
Allan Stephens5f6d9122011-11-04 13:24:29 -0400244 kfree_skb(__skb_dequeue(&sk->sk_receive_queue));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100245}
246
247/**
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400248 * tsk_rej_rx_queue - reject all buffers in socket receive queue
Allan Stephens0c3141e2008-04-15 00:22:02 -0700249 *
250 * Caller must hold socket lock
251 */
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400252static void tsk_rej_rx_queue(struct sock *sk)
Allan Stephens0c3141e2008-04-15 00:22:02 -0700253{
Ying Xuea6ca1092014-11-26 11:41:55 +0800254 struct sk_buff *skb;
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -0500255 u32 dnode;
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500256 u32 own_node = tsk_own_node(tipc_sk(sk));
Allan Stephens0c3141e2008-04-15 00:22:02 -0700257
Ying Xuea6ca1092014-11-26 11:41:55 +0800258 while ((skb = __skb_dequeue(&sk->sk_receive_queue))) {
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500259 if (tipc_msg_reverse(own_node, skb, &dnode, TIPC_ERR_NO_PORT))
260 tipc_link_xmit_skb(sock_net(sk), 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{
Ying Xue34747532015-01-09 15:27:10 +0800271 struct tipc_net *tn = net_generic(sock_net(&tsk->sk), tipc_net_id);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400272 u32 peer_port = tsk_peer_port(tsk);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400273 u32 orig_node;
274 u32 peer_node;
275
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400276 if (unlikely(!tsk->connected))
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400277 return false;
278
279 if (unlikely(msg_origport(msg) != peer_port))
280 return false;
281
282 orig_node = msg_orignode(msg);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400283 peer_node = tsk_peer_node(tsk);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400284
285 if (likely(orig_node == peer_node))
286 return true;
287
Ying Xue34747532015-01-09 15:27:10 +0800288 if (!orig_node && (peer_node == tn->own_addr))
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400289 return true;
290
Ying Xue34747532015-01-09 15:27:10 +0800291 if (!peer_node && (orig_node == tn->own_addr))
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400292 return true;
293
294 return false;
295}
296
Allan Stephens0c3141e2008-04-15 00:22:02 -0700297/**
Ying Xuec5fa7b32013-06-17 10:54:39 -0400298 * tipc_sk_create - create a TIPC socket
Allan Stephens0c3141e2008-04-15 00:22:02 -0700299 * @net: network namespace (must be default network)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100300 * @sock: pre-allocated socket structure
301 * @protocol: protocol indicator (must be 0)
Eric Paris3f378b62009-11-05 22:18:14 -0800302 * @kern: caused by kernel or by userspace?
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900303 *
Allan Stephens0c3141e2008-04-15 00:22:02 -0700304 * This routine creates additional data structures used by the TIPC socket,
305 * initializes them, and links them together.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100306 *
307 * Returns 0 on success, errno otherwise
308 */
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400309static int tipc_sk_create(struct net *net, struct socket *sock,
310 int protocol, int kern)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100311{
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500312 struct tipc_net *tn;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700313 const struct proto_ops *ops;
314 socket_state state;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100315 struct sock *sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400316 struct tipc_sock *tsk;
Jon Paul Maloy5b8fa7c2014-08-22 18:09:13 -0400317 struct tipc_msg *msg;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700318
319 /* Validate arguments */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100320 if (unlikely(protocol != 0))
321 return -EPROTONOSUPPORT;
322
Per Lidenb97bf3f2006-01-02 19:04:38 +0100323 switch (sock->type) {
324 case SOCK_STREAM:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700325 ops = &stream_ops;
326 state = SS_UNCONNECTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100327 break;
328 case SOCK_SEQPACKET:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700329 ops = &packet_ops;
330 state = SS_UNCONNECTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100331 break;
332 case SOCK_DGRAM:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100333 case SOCK_RDM:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700334 ops = &msg_ops;
335 state = SS_READY;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100336 break;
Allan Stephens49978652006-06-25 23:47:18 -0700337 default:
Allan Stephens49978652006-06-25 23:47:18 -0700338 return -EPROTOTYPE;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100339 }
340
Allan Stephens0c3141e2008-04-15 00:22:02 -0700341 /* Allocate socket's protocol area */
Ying Xue76100a82015-03-18 09:32:57 +0800342 sk = sk_alloc(net, AF_TIPC, GFP_KERNEL, &tipc_proto);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700343 if (sk == NULL)
344 return -ENOMEM;
345
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400346 tsk = tipc_sk(sk);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400347 tsk->max_pkt = MAX_PKT_DEFAULT;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400348 INIT_LIST_HEAD(&tsk->publications);
349 msg = &tsk->phdr;
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500350 tn = net_generic(sock_net(sk), tipc_net_id);
351 tipc_msg_init(tn->own_addr, msg, TIPC_LOW_IMPORTANCE, TIPC_NAMED_MSG,
Jon Paul Maloy5b8fa7c2014-08-22 18:09:13 -0400352 NAMED_H_SIZE, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100353
Allan Stephens0c3141e2008-04-15 00:22:02 -0700354 /* Finish initializing socket data structures */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700355 sock->ops = ops;
356 sock->state = state;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100357 sock_init_data(sock, sk);
Ying Xue07f6c4b2015-01-07 13:41:58 +0800358 if (tipc_sk_insert(tsk)) {
359 pr_warn("Socket create failed; port numbrer exhausted\n");
360 return -EINVAL;
361 }
362 msg_set_origport(msg, tsk->portid);
Ying Xue3721e9c2015-01-13 17:07:48 +0800363 setup_timer(&sk->sk_timer, tipc_sk_timeout, (unsigned long)tsk);
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -0400364 sk->sk_backlog_rcv = tipc_backlog_rcv;
Ying Xuecc79dd12013-06-17 10:54:37 -0400365 sk->sk_rcvbuf = sysctl_tipc_rmem[1];
Ying Xuef288bef2012-08-21 11:16:57 +0800366 sk->sk_data_ready = tipc_data_ready;
367 sk->sk_write_space = tipc_write_space;
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -0400368 tsk->conn_timeout = CONN_TIMEOUT_DEFAULT;
Jon Paul Maloy60120522014-06-25 20:41:42 -0500369 tsk->sent_unacked = 0;
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -0400370 atomic_set(&tsk->dupl_rcvcnt, 0);
Allan Stephens7ef43eb2008-05-12 15:42:28 -0700371
Allan Stephens0c3141e2008-04-15 00:22:02 -0700372 if (sock->state == SS_READY) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400373 tsk_set_unreturnable(tsk, true);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700374 if (sock->type == SOCK_DGRAM)
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400375 tsk_set_unreliable(tsk, true);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700376 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100377 return 0;
378}
379
Ying Xue07f6c4b2015-01-07 13:41:58 +0800380static void tipc_sk_callback(struct rcu_head *head)
381{
382 struct tipc_sock *tsk = container_of(head, struct tipc_sock, rcu);
383
384 sock_put(&tsk->sk);
385}
386
Ying Xuec5fa7b32013-06-17 10:54:39 -0400387/**
Ying Xue247f0f32014-02-18 16:06:46 +0800388 * tipc_release - destroy a TIPC socket
Per Lidenb97bf3f2006-01-02 19:04:38 +0100389 * @sock: socket to destroy
390 *
391 * This routine cleans up any messages that are still queued on the socket.
392 * For DGRAM and RDM socket types, all queued messages are rejected.
393 * For SEQPACKET and STREAM socket types, the first message is rejected
394 * and any others are discarded. (If the first message on a STREAM socket
395 * is partially-read, it is discarded and the next one is rejected instead.)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900396 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100397 * NOTE: Rejected messages are not necessarily returned to the sender! They
398 * are returned or discarded according to the "destination droppable" setting
399 * specified for the message by the sender.
400 *
401 * Returns 0 on success, errno otherwise
402 */
Ying Xue247f0f32014-02-18 16:06:46 +0800403static int tipc_release(struct socket *sock)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100404{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100405 struct sock *sk = sock->sk;
Sasha Levin357c4772015-01-13 12:46:41 -0500406 struct net *net;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400407 struct tipc_sock *tsk;
Ying Xuea6ca1092014-11-26 11:41:55 +0800408 struct sk_buff *skb;
Ying Xuef2f2a962015-01-09 15:27:02 +0800409 u32 dnode, probing_state;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100410
Allan Stephens0c3141e2008-04-15 00:22:02 -0700411 /*
412 * Exit if socket isn't fully initialized (occurs when a failed accept()
413 * releases a pre-allocated child socket that was never used)
414 */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700415 if (sk == NULL)
416 return 0;
417
Sasha Levin357c4772015-01-13 12:46:41 -0500418 net = sock_net(sk);
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400419 tsk = tipc_sk(sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700420 lock_sock(sk);
421
422 /*
423 * Reject all unreceived messages, except on an active connection
424 * (which disconnects locally & sends a 'FIN+' to peer)
425 */
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400426 dnode = tsk_peer_node(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100427 while (sock->state != SS_DISCONNECTING) {
Ying Xuea6ca1092014-11-26 11:41:55 +0800428 skb = __skb_dequeue(&sk->sk_receive_queue);
429 if (skb == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100430 break;
Ying Xuea6ca1092014-11-26 11:41:55 +0800431 if (TIPC_SKB_CB(skb)->handle != NULL)
432 kfree_skb(skb);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700433 else {
434 if ((sock->state == SS_CONNECTING) ||
435 (sock->state == SS_CONNECTED)) {
436 sock->state = SS_DISCONNECTING;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400437 tsk->connected = 0;
Ying Xuef2f98002015-01-09 15:27:05 +0800438 tipc_node_remove_conn(net, dnode, tsk->portid);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700439 }
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500440 if (tipc_msg_reverse(tsk_own_node(tsk), skb, &dnode,
Ying Xue34747532015-01-09 15:27:10 +0800441 TIPC_ERR_NO_PORT))
Ying Xuef2f98002015-01-09 15:27:05 +0800442 tipc_link_xmit_skb(net, skb, dnode, 0);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700443 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100444 }
445
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400446 tipc_sk_withdraw(tsk, 0, NULL);
Ying Xuef2f2a962015-01-09 15:27:02 +0800447 probing_state = tsk->probing_state;
Ying Xue3721e9c2015-01-13 17:07:48 +0800448 if (del_timer_sync(&sk->sk_timer) &&
449 probing_state != TIPC_CONN_PROBING)
Ying Xuef2f2a962015-01-09 15:27:02 +0800450 sock_put(sk);
Ying Xue07f6c4b2015-01-07 13:41:58 +0800451 tipc_sk_remove(tsk);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400452 if (tsk->connected) {
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500453 skb = tipc_msg_create(TIPC_CRITICAL_IMPORTANCE,
Ying Xue34747532015-01-09 15:27:10 +0800454 TIPC_CONN_MSG, SHORT_H_SIZE, 0, dnode,
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500455 tsk_own_node(tsk), tsk_peer_port(tsk),
Ying Xue07f6c4b2015-01-07 13:41:58 +0800456 tsk->portid, TIPC_ERR_NO_PORT);
Ying Xuea6ca1092014-11-26 11:41:55 +0800457 if (skb)
Ying Xuef2f98002015-01-09 15:27:05 +0800458 tipc_link_xmit_skb(net, skb, dnode, tsk->portid);
459 tipc_node_remove_conn(net, dnode, tsk->portid);
Jon Paul Maloy5b8fa7c2014-08-22 18:09:13 -0400460 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100461
Allan Stephens0c3141e2008-04-15 00:22:02 -0700462 /* Discard any remaining (connection-based) messages in receive queue */
Ying Xue57467e52013-01-20 23:30:08 +0100463 __skb_queue_purge(&sk->sk_receive_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100464
Allan Stephens0c3141e2008-04-15 00:22:02 -0700465 /* Reject any messages that accumulated in backlog queue */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700466 sock->state = SS_DISCONNECTING;
467 release_sock(sk);
Ying Xue07f6c4b2015-01-07 13:41:58 +0800468
469 call_rcu(&tsk->rcu, tipc_sk_callback);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700470 sock->sk = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100471
Geert Uytterhoeven065d7e32014-04-06 15:56:14 +0200472 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100473}
474
475/**
Ying Xue247f0f32014-02-18 16:06:46 +0800476 * tipc_bind - associate or disassocate TIPC name(s) with a socket
Per Lidenb97bf3f2006-01-02 19:04:38 +0100477 * @sock: socket structure
478 * @uaddr: socket address describing name(s) and desired operation
479 * @uaddr_len: size of socket address data structure
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900480 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100481 * Name and name sequence binding is indicated using a positive scope value;
482 * a negative scope value unbinds the specified name. Specifying no name
483 * (i.e. a socket address length of 0) unbinds all names from the socket.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900484 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100485 * Returns 0 on success, errno otherwise
Allan Stephens0c3141e2008-04-15 00:22:02 -0700486 *
487 * NOTE: This routine doesn't need to take the socket lock since it doesn't
488 * access any non-constant socket information.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100489 */
Ying Xue247f0f32014-02-18 16:06:46 +0800490static int tipc_bind(struct socket *sock, struct sockaddr *uaddr,
491 int uaddr_len)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100492{
Ying Xue84602762013-12-27 10:18:28 +0800493 struct sock *sk = sock->sk;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100494 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400495 struct tipc_sock *tsk = tipc_sk(sk);
Ying Xue84602762013-12-27 10:18:28 +0800496 int res = -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100497
Ying Xue84602762013-12-27 10:18:28 +0800498 lock_sock(sk);
499 if (unlikely(!uaddr_len)) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400500 res = tipc_sk_withdraw(tsk, 0, NULL);
Ying Xue84602762013-12-27 10:18:28 +0800501 goto exit;
502 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900503
Ying Xue84602762013-12-27 10:18:28 +0800504 if (uaddr_len < sizeof(struct sockaddr_tipc)) {
505 res = -EINVAL;
506 goto exit;
507 }
508 if (addr->family != AF_TIPC) {
509 res = -EAFNOSUPPORT;
510 goto exit;
511 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100512
Per Lidenb97bf3f2006-01-02 19:04:38 +0100513 if (addr->addrtype == TIPC_ADDR_NAME)
514 addr->addr.nameseq.upper = addr->addr.nameseq.lower;
Ying Xue84602762013-12-27 10:18:28 +0800515 else if (addr->addrtype != TIPC_ADDR_NAMESEQ) {
516 res = -EAFNOSUPPORT;
517 goto exit;
518 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900519
Ying Xue13a2e892013-06-17 10:54:40 -0400520 if ((addr->addr.nameseq.type < TIPC_RESERVED_TYPES) &&
Ying Xue7d0ab172013-06-17 10:54:41 -0400521 (addr->addr.nameseq.type != TIPC_TOP_SRV) &&
Ying Xue84602762013-12-27 10:18:28 +0800522 (addr->addr.nameseq.type != TIPC_CFG_SRV)) {
523 res = -EACCES;
524 goto exit;
525 }
Allan Stephensc422f1b2011-11-02 15:49:40 -0400526
Ying Xue84602762013-12-27 10:18:28 +0800527 res = (addr->scope > 0) ?
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400528 tipc_sk_publish(tsk, addr->scope, &addr->addr.nameseq) :
529 tipc_sk_withdraw(tsk, -addr->scope, &addr->addr.nameseq);
Ying Xue84602762013-12-27 10:18:28 +0800530exit:
531 release_sock(sk);
532 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100533}
534
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900535/**
Ying Xue247f0f32014-02-18 16:06:46 +0800536 * tipc_getname - get port ID of socket or peer socket
Per Lidenb97bf3f2006-01-02 19:04:38 +0100537 * @sock: socket structure
538 * @uaddr: area for returned socket address
539 * @uaddr_len: area for returned length of socket address
Allan Stephens2da59912008-07-14 22:43:32 -0700540 * @peer: 0 = own ID, 1 = current peer ID, 2 = current/former peer ID
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900541 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100542 * Returns 0 on success, errno otherwise
Allan Stephens0c3141e2008-04-15 00:22:02 -0700543 *
Allan Stephens2da59912008-07-14 22:43:32 -0700544 * NOTE: This routine doesn't need to take the socket lock since it only
545 * accesses socket information that is unchanging (or which changes in
Allan Stephens0e659672010-12-31 18:59:32 +0000546 * a completely predictable manner).
Per Lidenb97bf3f2006-01-02 19:04:38 +0100547 */
Ying Xue247f0f32014-02-18 16:06:46 +0800548static int tipc_getname(struct socket *sock, struct sockaddr *uaddr,
549 int *uaddr_len, int peer)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100550{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100551 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400552 struct tipc_sock *tsk = tipc_sk(sock->sk);
Ying Xue34747532015-01-09 15:27:10 +0800553 struct tipc_net *tn = net_generic(sock_net(sock->sk), tipc_net_id);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100554
Kulikov Vasiliy88f8a5e2010-10-31 07:10:32 +0000555 memset(addr, 0, sizeof(*addr));
Allan Stephens0c3141e2008-04-15 00:22:02 -0700556 if (peer) {
Allan Stephens2da59912008-07-14 22:43:32 -0700557 if ((sock->state != SS_CONNECTED) &&
558 ((peer != 2) || (sock->state != SS_DISCONNECTING)))
559 return -ENOTCONN;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400560 addr->addr.id.ref = tsk_peer_port(tsk);
561 addr->addr.id.node = tsk_peer_node(tsk);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700562 } else {
Ying Xue07f6c4b2015-01-07 13:41:58 +0800563 addr->addr.id.ref = tsk->portid;
Ying Xue34747532015-01-09 15:27:10 +0800564 addr->addr.id.node = tn->own_addr;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700565 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100566
567 *uaddr_len = sizeof(*addr);
568 addr->addrtype = TIPC_ADDR_ID;
569 addr->family = AF_TIPC;
570 addr->scope = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100571 addr->addr.name.domain = 0;
572
Allan Stephens0c3141e2008-04-15 00:22:02 -0700573 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100574}
575
576/**
Ying Xue247f0f32014-02-18 16:06:46 +0800577 * tipc_poll - read and possibly block on pollmask
Per Lidenb97bf3f2006-01-02 19:04:38 +0100578 * @file: file structure associated with the socket
579 * @sock: socket for which to calculate the poll bits
580 * @wait: ???
581 *
Allan Stephens9b674e82008-03-26 16:48:21 -0700582 * Returns pollmask value
583 *
584 * COMMENTARY:
585 * It appears that the usual socket locking mechanisms are not useful here
586 * since the pollmask info is potentially out-of-date the moment this routine
587 * exits. TCP and other protocols seem to rely on higher level poll routines
588 * to handle any preventable race conditions, so TIPC will do the same ...
589 *
590 * TIPC sets the returned events as follows:
Allan Stephens9b674e82008-03-26 16:48:21 -0700591 *
Allan Stephensf662c072010-08-17 11:00:06 +0000592 * socket state flags set
593 * ------------ ---------
594 * unconnected no read flags
Erik Hugnec4fc2982012-10-16 16:47:06 +0200595 * POLLOUT if port is not congested
Allan Stephensf662c072010-08-17 11:00:06 +0000596 *
597 * connecting POLLIN/POLLRDNORM if ACK/NACK in rx queue
598 * no write flags
599 *
600 * connected POLLIN/POLLRDNORM if data in rx queue
601 * POLLOUT if port is not congested
602 *
603 * disconnecting POLLIN/POLLRDNORM/POLLHUP
604 * no write flags
605 *
606 * listening POLLIN if SYN in rx queue
607 * no write flags
608 *
609 * ready POLLIN/POLLRDNORM if data in rx queue
610 * [connectionless] POLLOUT (since port cannot be congested)
611 *
612 * IMPORTANT: The fact that a read or write operation is indicated does NOT
613 * imply that the operation will succeed, merely that it should be performed
614 * and will not block.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100615 */
Ying Xue247f0f32014-02-18 16:06:46 +0800616static unsigned int tipc_poll(struct file *file, struct socket *sock,
617 poll_table *wait)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100618{
Allan Stephens9b674e82008-03-26 16:48:21 -0700619 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400620 struct tipc_sock *tsk = tipc_sk(sk);
Allan Stephensf662c072010-08-17 11:00:06 +0000621 u32 mask = 0;
Allan Stephens9b674e82008-03-26 16:48:21 -0700622
Ying Xuef288bef2012-08-21 11:16:57 +0800623 sock_poll_wait(file, sk_sleep(sk), wait);
Allan Stephens9b674e82008-03-26 16:48:21 -0700624
Allan Stephensf662c072010-08-17 11:00:06 +0000625 switch ((int)sock->state) {
Erik Hugnec4fc2982012-10-16 16:47:06 +0200626 case SS_UNCONNECTED:
Jon Paul Maloy60120522014-06-25 20:41:42 -0500627 if (!tsk->link_cong)
Erik Hugnec4fc2982012-10-16 16:47:06 +0200628 mask |= POLLOUT;
629 break;
Allan Stephensf662c072010-08-17 11:00:06 +0000630 case SS_READY:
631 case SS_CONNECTED:
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400632 if (!tsk->link_cong && !tsk_conn_cong(tsk))
Allan Stephensf662c072010-08-17 11:00:06 +0000633 mask |= POLLOUT;
634 /* fall thru' */
635 case SS_CONNECTING:
636 case SS_LISTENING:
637 if (!skb_queue_empty(&sk->sk_receive_queue))
638 mask |= (POLLIN | POLLRDNORM);
639 break;
640 case SS_DISCONNECTING:
641 mask = (POLLIN | POLLRDNORM | POLLHUP);
642 break;
643 }
Allan Stephens9b674e82008-03-26 16:48:21 -0700644
645 return mask;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100646}
647
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400648/**
649 * tipc_sendmcast - send multicast message
650 * @sock: socket structure
651 * @seq: destination address
Al Viro562640f2014-11-15 01:13:43 -0500652 * @msg: message to send
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400653 * @dsz: total length of message data
654 * @timeo: timeout to wait for wakeup
655 *
656 * Called from function tipc_sendmsg(), which has done all sanity checks
657 * Returns the number of bytes sent on success, or errno
658 */
659static int tipc_sendmcast(struct socket *sock, struct tipc_name_seq *seq,
Al Viro562640f2014-11-15 01:13:43 -0500660 struct msghdr *msg, size_t dsz, long timeo)
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400661{
662 struct sock *sk = sock->sk;
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500663 struct tipc_sock *tsk = tipc_sk(sk);
Ying Xuef2f98002015-01-09 15:27:05 +0800664 struct net *net = sock_net(sk);
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500665 struct tipc_msg *mhdr = &tsk->phdr;
Jon Paul Maloy94153e32015-02-05 08:36:40 -0500666 struct sk_buff_head *pktchain = &sk->sk_write_queue;
Al Virof25dcc72014-11-28 15:52:29 -0500667 struct iov_iter save = msg->msg_iter;
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400668 uint mtu;
669 int rc;
670
671 msg_set_type(mhdr, TIPC_MCAST_MSG);
672 msg_set_lookup_scope(mhdr, TIPC_CLUSTER_SCOPE);
673 msg_set_destport(mhdr, 0);
674 msg_set_destnode(mhdr, 0);
675 msg_set_nametype(mhdr, seq->type);
676 msg_set_namelower(mhdr, seq->lower);
677 msg_set_nameupper(mhdr, seq->upper);
678 msg_set_hdr_sz(mhdr, MCAST_H_SIZE);
679
680new_mtu:
681 mtu = tipc_bclink_get_mtu();
Jon Paul Maloy94153e32015-02-05 08:36:40 -0500682 rc = tipc_msg_build(mhdr, msg, 0, dsz, mtu, pktchain);
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400683 if (unlikely(rc < 0))
684 return rc;
685
686 do {
Jon Paul Maloy94153e32015-02-05 08:36:40 -0500687 rc = tipc_bclink_xmit(net, pktchain);
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400688 if (likely(rc >= 0)) {
689 rc = dsz;
690 break;
691 }
Al Virof25dcc72014-11-28 15:52:29 -0500692 if (rc == -EMSGSIZE) {
693 msg->msg_iter = save;
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400694 goto new_mtu;
Al Virof25dcc72014-11-28 15:52:29 -0500695 }
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400696 if (rc != -ELINKCONG)
697 break;
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400698 tipc_sk(sk)->link_cong = 1;
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400699 rc = tipc_wait_for_sndmsg(sock, &timeo);
700 if (rc)
Jon Paul Maloy94153e32015-02-05 08:36:40 -0500701 __skb_queue_purge(pktchain);
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400702 } while (!rc);
703 return rc;
704}
705
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500706/**
707 * tipc_sk_mcast_rcv - Deliver multicast messages to all destination sockets
708 * @arrvq: queue with arriving messages, to be cloned after destination lookup
709 * @inputq: queue with cloned messages, delivered to socket after dest lookup
710 *
711 * Multi-threaded: parallel calls with reference to same queues may occur
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400712 */
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500713void tipc_sk_mcast_rcv(struct net *net, struct sk_buff_head *arrvq,
714 struct sk_buff_head *inputq)
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400715{
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500716 struct tipc_msg *msg;
Jon Paul Maloy3c724ac2015-02-05 08:36:43 -0500717 struct tipc_plist dports;
Jon Paul Maloy3c724ac2015-02-05 08:36:43 -0500718 u32 portid;
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400719 u32 scope = TIPC_CLUSTER_SCOPE;
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500720 struct sk_buff_head tmpq;
721 uint hsz;
722 struct sk_buff *skb, *_skb;
Jon Paul Maloy3c724ac2015-02-05 08:36:43 -0500723
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500724 __skb_queue_head_init(&tmpq);
Jon Paul Maloy3c724ac2015-02-05 08:36:43 -0500725 tipc_plist_init(&dports);
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400726
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500727 skb = tipc_skb_peek(arrvq, &inputq->lock);
728 for (; skb; skb = tipc_skb_peek(arrvq, &inputq->lock)) {
729 msg = buf_msg(skb);
730 hsz = skb_headroom(skb) + msg_hdr_sz(msg);
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400731
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500732 if (in_own_node(net, msg_orignode(msg)))
733 scope = TIPC_NODE_SCOPE;
734
735 /* Create destination port list and message clones: */
736 tipc_nametbl_mc_translate(net,
737 msg_nametype(msg), msg_namelower(msg),
738 msg_nameupper(msg), scope, &dports);
739 portid = tipc_plist_pop(&dports);
740 for (; portid; portid = tipc_plist_pop(&dports)) {
741 _skb = __pskb_copy(skb, hsz, GFP_ATOMIC);
742 if (_skb) {
743 msg_set_destport(buf_msg(_skb), portid);
744 __skb_queue_tail(&tmpq, _skb);
745 continue;
746 }
747 pr_warn("Failed to clone mcast rcv buffer\n");
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400748 }
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500749 /* Append to inputq if not already done by other thread */
750 spin_lock_bh(&inputq->lock);
751 if (skb_peek(arrvq) == skb) {
752 skb_queue_splice_tail_init(&tmpq, inputq);
753 kfree_skb(__skb_dequeue(arrvq));
754 }
755 spin_unlock_bh(&inputq->lock);
756 __skb_queue_purge(&tmpq);
757 kfree_skb(skb);
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400758 }
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500759 tipc_sk_rcv(net, inputq);
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400760}
761
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900762/**
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500763 * tipc_sk_proto_rcv - receive a connection mng protocol message
764 * @tsk: receiving socket
Jon Paul Maloy1186adf2015-02-05 08:36:37 -0500765 * @skb: pointer to message buffer. Set to NULL if buffer is consumed.
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500766 */
Jon Paul Maloy1186adf2015-02-05 08:36:37 -0500767static void tipc_sk_proto_rcv(struct tipc_sock *tsk, struct sk_buff **skb)
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500768{
Jon Paul Maloy1186adf2015-02-05 08:36:37 -0500769 struct tipc_msg *msg = buf_msg(*skb);
Jon Paul Maloy60120522014-06-25 20:41:42 -0500770 int conn_cong;
Jon Paul Maloy1186adf2015-02-05 08:36:37 -0500771 u32 dnode;
772 u32 own_node = tsk_own_node(tsk);
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500773 /* Ignore if connection cannot be validated: */
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400774 if (!tsk_peer_msg(tsk, msg))
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500775 goto exit;
776
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400777 tsk->probing_state = TIPC_CONN_OK;
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500778
779 if (msg_type(msg) == CONN_ACK) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400780 conn_cong = tsk_conn_cong(tsk);
Jon Paul Maloy60120522014-06-25 20:41:42 -0500781 tsk->sent_unacked -= msg_msgcnt(msg);
782 if (conn_cong)
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400783 tsk->sk.sk_write_space(&tsk->sk);
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500784 } else if (msg_type(msg) == CONN_PROBE) {
Jon Paul Maloy1186adf2015-02-05 08:36:37 -0500785 if (tipc_msg_reverse(own_node, *skb, &dnode, TIPC_OK)) {
786 msg_set_type(msg, CONN_PROBE_REPLY);
787 return;
788 }
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500789 }
790 /* Do nothing if msg_type() == CONN_PROBE_REPLY */
791exit:
Jon Paul Maloy1186adf2015-02-05 08:36:37 -0500792 kfree_skb(*skb);
793 *skb = NULL;
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500794}
795
Ying Xue3f405042014-01-17 09:50:05 +0800796static int tipc_wait_for_sndmsg(struct socket *sock, long *timeo_p)
797{
798 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400799 struct tipc_sock *tsk = tipc_sk(sk);
Ying Xue3f405042014-01-17 09:50:05 +0800800 DEFINE_WAIT(wait);
801 int done;
802
803 do {
804 int err = sock_error(sk);
805 if (err)
806 return err;
807 if (sock->state == SS_DISCONNECTING)
808 return -EPIPE;
809 if (!*timeo_p)
810 return -EAGAIN;
811 if (signal_pending(current))
812 return sock_intr_errno(*timeo_p);
813
814 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Jon Paul Maloy60120522014-06-25 20:41:42 -0500815 done = sk_wait_event(sk, timeo_p, !tsk->link_cong);
Ying Xue3f405042014-01-17 09:50:05 +0800816 finish_wait(sk_sleep(sk), &wait);
817 } while (!done);
818 return 0;
819}
820
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500821/**
Ying Xue247f0f32014-02-18 16:06:46 +0800822 * tipc_sendmsg - send message in connectionless manner
Per Lidenb97bf3f2006-01-02 19:04:38 +0100823 * @sock: socket structure
824 * @m: message to send
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500825 * @dsz: amount of user data to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900826 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100827 * Message must have an destination specified explicitly.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900828 * Used for SOCK_RDM and SOCK_DGRAM messages,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100829 * and for 'SYN' messages on SOCK_SEQPACKET and SOCK_STREAM connections.
830 * (Note: 'SYN+' is prohibited on SOCK_STREAM.)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900831 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100832 * Returns the number of bytes sent on success, or errno otherwise
833 */
Ying Xue1b784142015-03-02 15:37:48 +0800834static int tipc_sendmsg(struct socket *sock,
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500835 struct msghdr *m, size_t dsz)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100836{
Ying Xue39a02952015-03-02 15:37:47 +0800837 struct sock *sk = sock->sk;
838 int ret;
839
840 lock_sock(sk);
841 ret = __tipc_sendmsg(sock, m, dsz);
842 release_sock(sk);
843
844 return ret;
845}
846
847static int __tipc_sendmsg(struct socket *sock, struct msghdr *m, size_t dsz)
848{
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500849 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700850 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400851 struct tipc_sock *tsk = tipc_sk(sk);
Ying Xuef2f98002015-01-09 15:27:05 +0800852 struct net *net = sock_net(sk);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400853 struct tipc_msg *mhdr = &tsk->phdr;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500854 u32 dnode, dport;
Jon Paul Maloy94153e32015-02-05 08:36:40 -0500855 struct sk_buff_head *pktchain = &sk->sk_write_queue;
Ying Xuea6ca1092014-11-26 11:41:55 +0800856 struct sk_buff *skb;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500857 struct tipc_name_seq *seq = &dest->addr.nameseq;
Al Virof25dcc72014-11-28 15:52:29 -0500858 struct iov_iter save;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500859 u32 mtu;
Ying Xue3f405042014-01-17 09:50:05 +0800860 long timeo;
Erik Hugne88b17b62014-12-03 14:44:44 +0100861 int rc;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100862
863 if (unlikely(!dest))
864 return -EDESTADDRREQ;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500865
Allan Stephens51f9cc12006-06-25 23:49:06 -0700866 if (unlikely((m->msg_namelen < sizeof(*dest)) ||
867 (dest->family != AF_TIPC)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100868 return -EINVAL;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500869
870 if (dsz > TIPC_MAX_USER_MSG_SIZE)
Allan Stephensc29c3f72010-04-20 17:58:24 -0400871 return -EMSGSIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100872
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500873 if (unlikely(sock->state != SS_READY)) {
Ying Xue39a02952015-03-02 15:37:47 +0800874 if (sock->state == SS_LISTENING)
875 return -EPIPE;
876 if (sock->state != SS_UNCONNECTED)
877 return -EISCONN;
878 if (tsk->published)
879 return -EOPNOTSUPP;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700880 if (dest->addrtype == TIPC_ADDR_NAME) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400881 tsk->conn_type = dest->addr.name.name.type;
882 tsk->conn_instance = dest->addr.name.name.instance;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700883 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100884 }
885
Ying Xue3f405042014-01-17 09:50:05 +0800886 timeo = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500887
888 if (dest->addrtype == TIPC_ADDR_MCAST) {
Ying Xue39a02952015-03-02 15:37:47 +0800889 return tipc_sendmcast(sock, seq, m, dsz, timeo);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500890 } else if (dest->addrtype == TIPC_ADDR_NAME) {
891 u32 type = dest->addr.name.name.type;
892 u32 inst = dest->addr.name.name.instance;
893 u32 domain = dest->addr.name.domain;
894
895 dnode = domain;
896 msg_set_type(mhdr, TIPC_NAMED_MSG);
897 msg_set_hdr_sz(mhdr, NAMED_H_SIZE);
898 msg_set_nametype(mhdr, type);
899 msg_set_nameinst(mhdr, inst);
900 msg_set_lookup_scope(mhdr, tipc_addr_scope(domain));
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800901 dport = tipc_nametbl_translate(net, type, inst, &dnode);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500902 msg_set_destnode(mhdr, dnode);
903 msg_set_destport(mhdr, dport);
Ying Xue39a02952015-03-02 15:37:47 +0800904 if (unlikely(!dport && !dnode))
905 return -EHOSTUNREACH;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500906 } else if (dest->addrtype == TIPC_ADDR_ID) {
907 dnode = dest->addr.id.node;
908 msg_set_type(mhdr, TIPC_DIRECT_MSG);
909 msg_set_lookup_scope(mhdr, 0);
910 msg_set_destnode(mhdr, dnode);
911 msg_set_destport(mhdr, dest->addr.id.ref);
912 msg_set_hdr_sz(mhdr, BASIC_H_SIZE);
913 }
914
Al Virof25dcc72014-11-28 15:52:29 -0500915 save = m->msg_iter;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500916new_mtu:
Ying Xuef2f98002015-01-09 15:27:05 +0800917 mtu = tipc_node_get_mtu(net, dnode, tsk->portid);
Jon Paul Maloy94153e32015-02-05 08:36:40 -0500918 rc = tipc_msg_build(mhdr, m, 0, dsz, mtu, pktchain);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500919 if (rc < 0)
Ying Xue39a02952015-03-02 15:37:47 +0800920 return rc;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500921
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900922 do {
Jon Paul Maloy94153e32015-02-05 08:36:40 -0500923 skb = skb_peek(pktchain);
Ying Xuea6ca1092014-11-26 11:41:55 +0800924 TIPC_SKB_CB(skb)->wakeup_pending = tsk->link_cong;
Jon Paul Maloy94153e32015-02-05 08:36:40 -0500925 rc = tipc_link_xmit(net, pktchain, dnode, tsk->portid);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500926 if (likely(rc >= 0)) {
927 if (sock->state != SS_READY)
Allan Stephens0c3141e2008-04-15 00:22:02 -0700928 sock->state = SS_CONNECTING;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500929 rc = dsz;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700930 break;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900931 }
Al Virof25dcc72014-11-28 15:52:29 -0500932 if (rc == -EMSGSIZE) {
933 m->msg_iter = save;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500934 goto new_mtu;
Al Virof25dcc72014-11-28 15:52:29 -0500935 }
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500936 if (rc != -ELINKCONG)
Allan Stephens0c3141e2008-04-15 00:22:02 -0700937 break;
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400938 tsk->link_cong = 1;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500939 rc = tipc_wait_for_sndmsg(sock, &timeo);
Erik Hugne70452dc2014-07-06 20:38:50 -0400940 if (rc)
Jon Paul Maloy94153e32015-02-05 08:36:40 -0500941 __skb_queue_purge(pktchain);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500942 } while (!rc);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500943
944 return rc;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100945}
946
Ying Xue391a6dd2014-01-17 09:50:06 +0800947static int tipc_wait_for_sndpkt(struct socket *sock, long *timeo_p)
948{
949 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400950 struct tipc_sock *tsk = tipc_sk(sk);
Ying Xue391a6dd2014-01-17 09:50:06 +0800951 DEFINE_WAIT(wait);
952 int done;
953
954 do {
955 int err = sock_error(sk);
956 if (err)
957 return err;
958 if (sock->state == SS_DISCONNECTING)
959 return -EPIPE;
960 else if (sock->state != SS_CONNECTED)
961 return -ENOTCONN;
962 if (!*timeo_p)
963 return -EAGAIN;
964 if (signal_pending(current))
965 return sock_intr_errno(*timeo_p);
966
967 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
968 done = sk_wait_event(sk, timeo_p,
Jon Paul Maloy60120522014-06-25 20:41:42 -0500969 (!tsk->link_cong &&
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400970 !tsk_conn_cong(tsk)) ||
971 !tsk->connected);
Ying Xue391a6dd2014-01-17 09:50:06 +0800972 finish_wait(sk_sleep(sk), &wait);
973 } while (!done);
974 return 0;
975}
976
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900977/**
Ying Xue247f0f32014-02-18 16:06:46 +0800978 * tipc_send_stream - send stream-oriented data
Per Lidenb97bf3f2006-01-02 19:04:38 +0100979 * @sock: socket structure
980 * @m: data to send
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500981 * @dsz: total length of data to be transmitted
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900982 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100983 * Used for SOCK_STREAM data.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900984 *
985 * Returns the number of bytes sent on success (or partial success),
Allan Stephens1303e8f2006-06-25 23:46:50 -0700986 * or errno if no data sent
Per Lidenb97bf3f2006-01-02 19:04:38 +0100987 */
Ying Xue1b784142015-03-02 15:37:48 +0800988static int tipc_send_stream(struct socket *sock, struct msghdr *m, size_t dsz)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100989{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700990 struct sock *sk = sock->sk;
Ying Xue39a02952015-03-02 15:37:47 +0800991 int ret;
992
993 lock_sock(sk);
994 ret = __tipc_send_stream(sock, m, dsz);
995 release_sock(sk);
996
997 return ret;
998}
999
1000static int __tipc_send_stream(struct socket *sock, struct msghdr *m, size_t dsz)
1001{
1002 struct sock *sk = sock->sk;
Ying Xuef2f98002015-01-09 15:27:05 +08001003 struct net *net = sock_net(sk);
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001004 struct tipc_sock *tsk = tipc_sk(sk);
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001005 struct tipc_msg *mhdr = &tsk->phdr;
Jon Paul Maloy94153e32015-02-05 08:36:40 -05001006 struct sk_buff_head *pktchain = &sk->sk_write_queue;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001007 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
Ying Xue07f6c4b2015-01-07 13:41:58 +08001008 u32 portid = tsk->portid;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001009 int rc = -EINVAL;
1010 long timeo;
1011 u32 dnode;
1012 uint mtu, send, sent = 0;
Al Virof25dcc72014-11-28 15:52:29 -05001013 struct iov_iter save;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001014
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001015 /* Handle implied connection establishment */
1016 if (unlikely(dest)) {
Ying Xue39a02952015-03-02 15:37:47 +08001017 rc = __tipc_sendmsg(sock, m, dsz);
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001018 if (dsz && (dsz == rc))
Jon Paul Maloy60120522014-06-25 20:41:42 -05001019 tsk->sent_unacked = 1;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001020 return rc;
1021 }
1022 if (dsz > (uint)INT_MAX)
1023 return -EMSGSIZE;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001024
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001025 if (unlikely(sock->state != SS_CONNECTED)) {
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001026 if (sock->state == SS_DISCONNECTING)
Ying Xue39a02952015-03-02 15:37:47 +08001027 return -EPIPE;
wangweidongb0555972013-12-27 10:09:39 +08001028 else
Ying Xue39a02952015-03-02 15:37:47 +08001029 return -ENOTCONN;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001030 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001031
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001032 timeo = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT);
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001033 dnode = tsk_peer_node(tsk);
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001034
1035next:
Al Virof25dcc72014-11-28 15:52:29 -05001036 save = m->msg_iter;
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001037 mtu = tsk->max_pkt;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001038 send = min_t(uint, dsz - sent, TIPC_MAX_USER_MSG_SIZE);
Jon Paul Maloy94153e32015-02-05 08:36:40 -05001039 rc = tipc_msg_build(mhdr, m, sent, send, mtu, pktchain);
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001040 if (unlikely(rc < 0))
Ying Xue39a02952015-03-02 15:37:47 +08001041 return rc;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001042 do {
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001043 if (likely(!tsk_conn_cong(tsk))) {
Jon Paul Maloy94153e32015-02-05 08:36:40 -05001044 rc = tipc_link_xmit(net, pktchain, dnode, portid);
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001045 if (likely(!rc)) {
Jon Paul Maloy60120522014-06-25 20:41:42 -05001046 tsk->sent_unacked++;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001047 sent += send;
1048 if (sent == dsz)
1049 break;
1050 goto next;
Allan Stephens1303e8f2006-06-25 23:46:50 -07001051 }
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001052 if (rc == -EMSGSIZE) {
Ying Xuef2f98002015-01-09 15:27:05 +08001053 tsk->max_pkt = tipc_node_get_mtu(net, dnode,
1054 portid);
Al Virof25dcc72014-11-28 15:52:29 -05001055 m->msg_iter = save;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001056 goto next;
1057 }
1058 if (rc != -ELINKCONG)
1059 break;
Jon Paul Maloy50100a52014-08-22 18:09:07 -04001060 tsk->link_cong = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001061 }
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001062 rc = tipc_wait_for_sndpkt(sock, &timeo);
Erik Hugne70452dc2014-07-06 20:38:50 -04001063 if (rc)
Jon Paul Maloy94153e32015-02-05 08:36:40 -05001064 __skb_queue_purge(pktchain);
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001065 } while (!rc);
Ying Xue39a02952015-03-02 15:37:47 +08001066
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001067 return sent ? sent : rc;
1068}
1069
1070/**
1071 * tipc_send_packet - send a connection-oriented message
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001072 * @sock: socket structure
1073 * @m: message to send
1074 * @dsz: length of data to be transmitted
1075 *
1076 * Used for SOCK_SEQPACKET messages.
1077 *
1078 * Returns the number of bytes sent on success, or errno otherwise
1079 */
Ying Xue1b784142015-03-02 15:37:48 +08001080static int tipc_send_packet(struct socket *sock, struct msghdr *m, size_t dsz)
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001081{
1082 if (dsz > TIPC_MAX_USER_MSG_SIZE)
1083 return -EMSGSIZE;
1084
Ying Xue1b784142015-03-02 15:37:48 +08001085 return tipc_send_stream(sock, m, dsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001086}
1087
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001088/* tipc_sk_finish_conn - complete the setup of a connection
Per Lidenb97bf3f2006-01-02 19:04:38 +01001089 */
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001090static void tipc_sk_finish_conn(struct tipc_sock *tsk, u32 peer_port,
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001091 u32 peer_node)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001092{
Ying Xue3721e9c2015-01-13 17:07:48 +08001093 struct sock *sk = &tsk->sk;
1094 struct net *net = sock_net(sk);
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001095 struct tipc_msg *msg = &tsk->phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001096
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001097 msg_set_destnode(msg, peer_node);
1098 msg_set_destport(msg, peer_port);
1099 msg_set_type(msg, TIPC_CONN_MSG);
1100 msg_set_lookup_scope(msg, 0);
1101 msg_set_hdr_sz(msg, SHORT_H_SIZE);
Jon Paul Maloyf9fef182014-03-12 11:31:08 -04001102
Ying Xue2f55c432015-01-09 15:27:00 +08001103 tsk->probing_intv = CONN_PROBING_INTERVAL;
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001104 tsk->probing_state = TIPC_CONN_OK;
1105 tsk->connected = 1;
Ying Xue3721e9c2015-01-13 17:07:48 +08001106 sk_reset_timer(sk, &sk->sk_timer, jiffies + tsk->probing_intv);
Ying Xuef2f98002015-01-09 15:27:05 +08001107 tipc_node_add_conn(net, peer_node, tsk->portid, peer_port);
1108 tsk->max_pkt = tipc_node_get_mtu(net, peer_node, tsk->portid);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001109}
1110
1111/**
1112 * set_orig_addr - capture sender's address for received message
1113 * @m: descriptor for message info
1114 * @msg: received message header
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001115 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001116 * Note: Address is not captured if not requested by receiver.
1117 */
Sam Ravnborg05790c62006-03-20 22:37:04 -08001118static void set_orig_addr(struct msghdr *m, struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001119{
Steffen Hurrle342dfc32014-01-17 22:53:15 +01001120 DECLARE_SOCKADDR(struct sockaddr_tipc *, addr, m->msg_name);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001121
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001122 if (addr) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001123 addr->family = AF_TIPC;
1124 addr->addrtype = TIPC_ADDR_ID;
Mathias Krause60085c32013-04-07 01:52:00 +00001125 memset(&addr->addr, 0, sizeof(addr->addr));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001126 addr->addr.id.ref = msg_origport(msg);
1127 addr->addr.id.node = msg_orignode(msg);
Allan Stephens0e659672010-12-31 18:59:32 +00001128 addr->addr.name.domain = 0; /* could leave uninitialized */
1129 addr->scope = 0; /* could leave uninitialized */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001130 m->msg_namelen = sizeof(struct sockaddr_tipc);
1131 }
1132}
1133
1134/**
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001135 * tipc_sk_anc_data_recv - optionally capture ancillary data for received message
Per Lidenb97bf3f2006-01-02 19:04:38 +01001136 * @m: descriptor for message info
1137 * @msg: received message header
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001138 * @tsk: TIPC port associated with message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001139 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001140 * Note: Ancillary data is not captured if not requested by receiver.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001141 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001142 * Returns 0 if successful, otherwise errno
1143 */
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001144static int tipc_sk_anc_data_recv(struct msghdr *m, struct tipc_msg *msg,
1145 struct tipc_sock *tsk)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001146{
1147 u32 anc_data[3];
1148 u32 err;
1149 u32 dest_type;
Allan Stephens3546c752006-06-25 23:45:24 -07001150 int has_name;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001151 int res;
1152
1153 if (likely(m->msg_controllen == 0))
1154 return 0;
1155
1156 /* Optionally capture errored message object(s) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001157 err = msg ? msg_errcode(msg) : 0;
1158 if (unlikely(err)) {
1159 anc_data[0] = err;
1160 anc_data[1] = msg_data_sz(msg);
Allan Stephens2db99832010-12-31 18:59:33 +00001161 res = put_cmsg(m, SOL_TIPC, TIPC_ERRINFO, 8, anc_data);
1162 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001163 return res;
Allan Stephens2db99832010-12-31 18:59:33 +00001164 if (anc_data[1]) {
1165 res = put_cmsg(m, SOL_TIPC, TIPC_RETDATA, anc_data[1],
1166 msg_data(msg));
1167 if (res)
1168 return res;
1169 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001170 }
1171
1172 /* Optionally capture message destination object */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001173 dest_type = msg ? msg_type(msg) : TIPC_DIRECT_MSG;
1174 switch (dest_type) {
1175 case TIPC_NAMED_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -07001176 has_name = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001177 anc_data[0] = msg_nametype(msg);
1178 anc_data[1] = msg_namelower(msg);
1179 anc_data[2] = msg_namelower(msg);
1180 break;
1181 case TIPC_MCAST_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -07001182 has_name = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001183 anc_data[0] = msg_nametype(msg);
1184 anc_data[1] = msg_namelower(msg);
1185 anc_data[2] = msg_nameupper(msg);
1186 break;
1187 case TIPC_CONN_MSG:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001188 has_name = (tsk->conn_type != 0);
1189 anc_data[0] = tsk->conn_type;
1190 anc_data[1] = tsk->conn_instance;
1191 anc_data[2] = tsk->conn_instance;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001192 break;
1193 default:
Allan Stephens3546c752006-06-25 23:45:24 -07001194 has_name = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001195 }
Allan Stephens2db99832010-12-31 18:59:33 +00001196 if (has_name) {
1197 res = put_cmsg(m, SOL_TIPC, TIPC_DESTNAME, 12, anc_data);
1198 if (res)
1199 return res;
1200 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001201
1202 return 0;
1203}
1204
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001205static void tipc_sk_send_ack(struct tipc_sock *tsk, uint ack)
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001206{
Ying Xuef2f98002015-01-09 15:27:05 +08001207 struct net *net = sock_net(&tsk->sk);
Ying Xuea6ca1092014-11-26 11:41:55 +08001208 struct sk_buff *skb = NULL;
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001209 struct tipc_msg *msg;
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001210 u32 peer_port = tsk_peer_port(tsk);
1211 u32 dnode = tsk_peer_node(tsk);
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001212
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001213 if (!tsk->connected)
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001214 return;
Jon Paul Maloyc5898632015-02-05 08:36:36 -05001215 skb = tipc_msg_create(CONN_MANAGER, CONN_ACK, INT_H_SIZE, 0,
1216 dnode, tsk_own_node(tsk), peer_port,
1217 tsk->portid, TIPC_OK);
Ying Xuea6ca1092014-11-26 11:41:55 +08001218 if (!skb)
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001219 return;
Ying Xuea6ca1092014-11-26 11:41:55 +08001220 msg = buf_msg(skb);
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001221 msg_set_msgcnt(msg, ack);
Ying Xuef2f98002015-01-09 15:27:05 +08001222 tipc_link_xmit_skb(net, skb, dnode, msg_link_selector(msg));
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001223}
1224
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001225static int tipc_wait_for_rcvmsg(struct socket *sock, long *timeop)
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001226{
1227 struct sock *sk = sock->sk;
1228 DEFINE_WAIT(wait);
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001229 long timeo = *timeop;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001230 int err;
1231
1232 for (;;) {
1233 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Ying Xuefe8e4642014-03-06 14:40:18 +01001234 if (timeo && skb_queue_empty(&sk->sk_receive_queue)) {
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001235 if (sock->state == SS_DISCONNECTING) {
1236 err = -ENOTCONN;
1237 break;
1238 }
1239 release_sock(sk);
1240 timeo = schedule_timeout(timeo);
1241 lock_sock(sk);
1242 }
1243 err = 0;
1244 if (!skb_queue_empty(&sk->sk_receive_queue))
1245 break;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001246 err = -EAGAIN;
1247 if (!timeo)
1248 break;
Erik Hugne143fe222015-03-09 10:43:42 +01001249 err = sock_intr_errno(timeo);
1250 if (signal_pending(current))
1251 break;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001252 }
1253 finish_wait(sk_sleep(sk), &wait);
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001254 *timeop = timeo;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001255 return err;
1256}
1257
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001258/**
Ying Xue247f0f32014-02-18 16:06:46 +08001259 * tipc_recvmsg - receive packet-oriented message
Per Lidenb97bf3f2006-01-02 19:04:38 +01001260 * @m: descriptor for message info
1261 * @buf_len: total size of user buffer area
1262 * @flags: receive flags
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001263 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001264 * Used for SOCK_DGRAM, SOCK_RDM, and SOCK_SEQPACKET messages.
1265 * If the complete message doesn't fit in user area, truncate it.
1266 *
1267 * Returns size of returned message data, errno otherwise
1268 */
Ying Xue1b784142015-03-02 15:37:48 +08001269static int tipc_recvmsg(struct socket *sock, struct msghdr *m, size_t buf_len,
1270 int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001271{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001272 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001273 struct tipc_sock *tsk = tipc_sk(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001274 struct sk_buff *buf;
1275 struct tipc_msg *msg;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001276 long timeo;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001277 unsigned int sz;
1278 u32 err;
1279 int res;
1280
Allan Stephens0c3141e2008-04-15 00:22:02 -07001281 /* Catch invalid receive requests */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001282 if (unlikely(!buf_len))
1283 return -EINVAL;
1284
Allan Stephens0c3141e2008-04-15 00:22:02 -07001285 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001286
Allan Stephens0c3141e2008-04-15 00:22:02 -07001287 if (unlikely(sock->state == SS_UNCONNECTED)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001288 res = -ENOTCONN;
1289 goto exit;
1290 }
1291
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001292 timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001293restart:
Per Lidenb97bf3f2006-01-02 19:04:38 +01001294
Allan Stephens0c3141e2008-04-15 00:22:02 -07001295 /* Look for a message in receive queue; wait if necessary */
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001296 res = tipc_wait_for_rcvmsg(sock, &timeo);
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001297 if (res)
1298 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001299
1300 /* Look at first message in receive queue */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001301 buf = skb_peek(&sk->sk_receive_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001302 msg = buf_msg(buf);
1303 sz = msg_data_sz(msg);
1304 err = msg_errcode(msg);
1305
Per Lidenb97bf3f2006-01-02 19:04:38 +01001306 /* Discard an empty non-errored message & try again */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001307 if ((!sz) && (!err)) {
Jon Paul Maloy2e84c602014-08-22 18:09:18 -04001308 tsk_advance_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001309 goto restart;
1310 }
1311
1312 /* Capture sender's address (optional) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001313 set_orig_addr(m, msg);
1314
1315 /* Capture ancillary data (optional) */
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001316 res = tipc_sk_anc_data_recv(m, msg, tsk);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001317 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001318 goto exit;
1319
1320 /* Capture message data (if valid) & compute return value (always) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001321 if (!err) {
1322 if (unlikely(buf_len < sz)) {
1323 sz = buf_len;
1324 m->msg_flags |= MSG_TRUNC;
1325 }
David S. Miller51f3d022014-11-05 16:46:40 -05001326 res = skb_copy_datagram_msg(buf, msg_hdr_sz(msg), m, sz);
Allan Stephens0232fd02011-02-21 09:45:40 -05001327 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001328 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001329 res = sz;
1330 } else {
1331 if ((sock->state == SS_READY) ||
1332 ((err == TIPC_CONN_SHUTDOWN) || m->msg_control))
1333 res = 0;
1334 else
1335 res = -ECONNRESET;
1336 }
1337
1338 /* Consume received message (optional) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001339 if (likely(!(flags & MSG_PEEK))) {
Allan Stephens99009802008-04-15 00:06:12 -07001340 if ((sock->state != SS_READY) &&
Jon Paul Maloy60120522014-06-25 20:41:42 -05001341 (++tsk->rcv_unacked >= TIPC_CONNACK_INTV)) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001342 tipc_sk_send_ack(tsk, tsk->rcv_unacked);
Jon Paul Maloy60120522014-06-25 20:41:42 -05001343 tsk->rcv_unacked = 0;
1344 }
Jon Paul Maloy2e84c602014-08-22 18:09:18 -04001345 tsk_advance_rx_queue(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001346 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001347exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001348 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001349 return res;
1350}
1351
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001352/**
Ying Xue247f0f32014-02-18 16:06:46 +08001353 * tipc_recv_stream - receive stream-oriented data
Per Lidenb97bf3f2006-01-02 19:04:38 +01001354 * @m: descriptor for message info
1355 * @buf_len: total size of user buffer area
1356 * @flags: receive flags
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001357 *
1358 * Used for SOCK_STREAM messages only. If not enough data is available
Per Lidenb97bf3f2006-01-02 19:04:38 +01001359 * will optionally wait for more; never truncates data.
1360 *
1361 * Returns size of returned message data, errno otherwise
1362 */
Ying Xue1b784142015-03-02 15:37:48 +08001363static int tipc_recv_stream(struct socket *sock, struct msghdr *m,
1364 size_t buf_len, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001365{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001366 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001367 struct tipc_sock *tsk = tipc_sk(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001368 struct sk_buff *buf;
1369 struct tipc_msg *msg;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001370 long timeo;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001371 unsigned int sz;
Florian Westphal3720d402010-08-17 11:00:04 +00001372 int sz_to_copy, target, needed;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001373 int sz_copied = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001374 u32 err;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001375 int res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001376
1377 /* Catch invalid receive attempts */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001378 if (unlikely(!buf_len))
1379 return -EINVAL;
1380
Allan Stephens0c3141e2008-04-15 00:22:02 -07001381 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001382
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001383 if (unlikely(sock->state == SS_UNCONNECTED)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001384 res = -ENOTCONN;
1385 goto exit;
1386 }
1387
Florian Westphal3720d402010-08-17 11:00:04 +00001388 target = sock_rcvlowat(sk, flags & MSG_WAITALL, buf_len);
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001389 timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001390
Allan Stephens0c3141e2008-04-15 00:22:02 -07001391restart:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001392 /* Look for a message in receive queue; wait if necessary */
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001393 res = tipc_wait_for_rcvmsg(sock, &timeo);
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001394 if (res)
1395 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001396
1397 /* Look at first message in receive queue */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001398 buf = skb_peek(&sk->sk_receive_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001399 msg = buf_msg(buf);
1400 sz = msg_data_sz(msg);
1401 err = msg_errcode(msg);
1402
1403 /* Discard an empty non-errored message & try again */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001404 if ((!sz) && (!err)) {
Jon Paul Maloy2e84c602014-08-22 18:09:18 -04001405 tsk_advance_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001406 goto restart;
1407 }
1408
1409 /* Optionally capture sender's address & ancillary data of first msg */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001410 if (sz_copied == 0) {
1411 set_orig_addr(m, msg);
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001412 res = tipc_sk_anc_data_recv(m, msg, tsk);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001413 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001414 goto exit;
1415 }
1416
1417 /* Capture message data (if valid) & compute return value (always) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001418 if (!err) {
Allan Stephens0232fd02011-02-21 09:45:40 -05001419 u32 offset = (u32)(unsigned long)(TIPC_SKB_CB(buf)->handle);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001420
Allan Stephens0232fd02011-02-21 09:45:40 -05001421 sz -= offset;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001422 needed = (buf_len - sz_copied);
1423 sz_to_copy = (sz <= needed) ? sz : needed;
Allan Stephens0232fd02011-02-21 09:45:40 -05001424
David S. Miller51f3d022014-11-05 16:46:40 -05001425 res = skb_copy_datagram_msg(buf, msg_hdr_sz(msg) + offset,
1426 m, sz_to_copy);
Allan Stephens0232fd02011-02-21 09:45:40 -05001427 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001428 goto exit;
Allan Stephens0232fd02011-02-21 09:45:40 -05001429
Per Lidenb97bf3f2006-01-02 19:04:38 +01001430 sz_copied += sz_to_copy;
1431
1432 if (sz_to_copy < sz) {
1433 if (!(flags & MSG_PEEK))
Allan Stephens0232fd02011-02-21 09:45:40 -05001434 TIPC_SKB_CB(buf)->handle =
1435 (void *)(unsigned long)(offset + sz_to_copy);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001436 goto exit;
1437 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001438 } else {
1439 if (sz_copied != 0)
1440 goto exit; /* can't add error msg to valid data */
1441
1442 if ((err == TIPC_CONN_SHUTDOWN) || m->msg_control)
1443 res = 0;
1444 else
1445 res = -ECONNRESET;
1446 }
1447
1448 /* Consume received message (optional) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001449 if (likely(!(flags & MSG_PEEK))) {
Jon Paul Maloy60120522014-06-25 20:41:42 -05001450 if (unlikely(++tsk->rcv_unacked >= TIPC_CONNACK_INTV)) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001451 tipc_sk_send_ack(tsk, tsk->rcv_unacked);
Jon Paul Maloy60120522014-06-25 20:41:42 -05001452 tsk->rcv_unacked = 0;
1453 }
Jon Paul Maloy2e84c602014-08-22 18:09:18 -04001454 tsk_advance_rx_queue(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001455 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001456
1457 /* Loop around if more data is required */
Joe Perchesf64f9e72009-11-29 16:55:45 -08001458 if ((sz_copied < buf_len) && /* didn't get all requested data */
1459 (!skb_queue_empty(&sk->sk_receive_queue) ||
Florian Westphal3720d402010-08-17 11:00:04 +00001460 (sz_copied < target)) && /* and more is ready or required */
Joe Perchesf64f9e72009-11-29 16:55:45 -08001461 (!(flags & MSG_PEEK)) && /* and aren't just peeking at data */
1462 (!err)) /* and haven't reached a FIN */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001463 goto restart;
1464
1465exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001466 release_sock(sk);
Allan Stephensa3b0a5a2006-06-25 23:48:22 -07001467 return sz_copied ? sz_copied : res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001468}
1469
1470/**
Ying Xuef288bef2012-08-21 11:16:57 +08001471 * tipc_write_space - wake up thread if port congestion is released
1472 * @sk: socket
1473 */
1474static void tipc_write_space(struct sock *sk)
1475{
1476 struct socket_wq *wq;
1477
1478 rcu_read_lock();
1479 wq = rcu_dereference(sk->sk_wq);
1480 if (wq_has_sleeper(wq))
1481 wake_up_interruptible_sync_poll(&wq->wait, POLLOUT |
1482 POLLWRNORM | POLLWRBAND);
1483 rcu_read_unlock();
1484}
1485
1486/**
1487 * tipc_data_ready - wake up threads to indicate messages have been received
1488 * @sk: socket
1489 * @len: the length of messages
1490 */
David S. Miller676d2362014-04-11 16:15:36 -04001491static void tipc_data_ready(struct sock *sk)
Ying Xuef288bef2012-08-21 11:16:57 +08001492{
1493 struct socket_wq *wq;
1494
1495 rcu_read_lock();
1496 wq = rcu_dereference(sk->sk_wq);
1497 if (wq_has_sleeper(wq))
1498 wake_up_interruptible_sync_poll(&wq->wait, POLLIN |
1499 POLLRDNORM | POLLRDBAND);
1500 rcu_read_unlock();
1501}
1502
1503/**
Ying Xue7e6c1312012-11-29 18:39:14 -05001504 * filter_connect - Handle all incoming messages for a connection-based socket
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001505 * @tsk: TIPC socket
Jon Paul Maloy1186adf2015-02-05 08:36:37 -05001506 * @skb: pointer to message buffer. Set to NULL if buffer is consumed
Ying Xue7e6c1312012-11-29 18:39:14 -05001507 *
stephen hemmingerb2ad5e52014-10-29 22:58:51 -07001508 * Returns 0 (TIPC_OK) if everything ok, -TIPC_ERR_NO_PORT otherwise
Ying Xue7e6c1312012-11-29 18:39:14 -05001509 */
Jon Paul Maloy1186adf2015-02-05 08:36:37 -05001510static int filter_connect(struct tipc_sock *tsk, struct sk_buff **skb)
Ying Xue7e6c1312012-11-29 18:39:14 -05001511{
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001512 struct sock *sk = &tsk->sk;
Ying Xuef2f98002015-01-09 15:27:05 +08001513 struct net *net = sock_net(sk);
Jon Paul Maloy8826cde2014-03-12 11:31:09 -04001514 struct socket *sock = sk->sk_socket;
Jon Paul Maloy1186adf2015-02-05 08:36:37 -05001515 struct tipc_msg *msg = buf_msg(*skb);
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001516 int retval = -TIPC_ERR_NO_PORT;
Ying Xue7e6c1312012-11-29 18:39:14 -05001517
1518 if (msg_mcast(msg))
1519 return retval;
1520
1521 switch ((int)sock->state) {
1522 case SS_CONNECTED:
1523 /* Accept only connection-based messages sent by peer */
Jon Paul Maloy2e84c602014-08-22 18:09:18 -04001524 if (tsk_peer_msg(tsk, msg)) {
Ying Xue7e6c1312012-11-29 18:39:14 -05001525 if (unlikely(msg_errcode(msg))) {
1526 sock->state = SS_DISCONNECTING;
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001527 tsk->connected = 0;
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001528 /* let timer expire on it's own */
Ying Xuef2f98002015-01-09 15:27:05 +08001529 tipc_node_remove_conn(net, tsk_peer_node(tsk),
Ying Xue07f6c4b2015-01-07 13:41:58 +08001530 tsk->portid);
Ying Xue7e6c1312012-11-29 18:39:14 -05001531 }
1532 retval = TIPC_OK;
1533 }
1534 break;
1535 case SS_CONNECTING:
1536 /* Accept only ACK or NACK message */
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001537
1538 if (unlikely(!msg_connected(msg)))
1539 break;
1540
Ying Xue584d24b2012-11-29 18:51:19 -05001541 if (unlikely(msg_errcode(msg))) {
1542 sock->state = SS_DISCONNECTING;
Erik Hugne2c8d8512013-08-28 09:29:58 +02001543 sk->sk_err = ECONNREFUSED;
Ying Xue7e6c1312012-11-29 18:39:14 -05001544 retval = TIPC_OK;
Ying Xue584d24b2012-11-29 18:51:19 -05001545 break;
1546 }
1547
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001548 if (unlikely(msg_importance(msg) > TIPC_CRITICAL_IMPORTANCE)) {
Ying Xue584d24b2012-11-29 18:51:19 -05001549 sock->state = SS_DISCONNECTING;
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001550 sk->sk_err = EINVAL;
Ying Xue584d24b2012-11-29 18:51:19 -05001551 retval = TIPC_OK;
1552 break;
1553 }
1554
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001555 tipc_sk_finish_conn(tsk, msg_origport(msg), msg_orignode(msg));
1556 msg_set_importance(&tsk->phdr, msg_importance(msg));
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001557 sock->state = SS_CONNECTED;
1558
Ying Xue584d24b2012-11-29 18:51:19 -05001559 /* If an incoming message is an 'ACK-', it should be
1560 * discarded here because it doesn't contain useful
1561 * data. In addition, we should try to wake up
1562 * connect() routine if sleeping.
1563 */
1564 if (msg_data_sz(msg) == 0) {
Jon Paul Maloy1186adf2015-02-05 08:36:37 -05001565 kfree_skb(*skb);
1566 *skb = NULL;
Ying Xue584d24b2012-11-29 18:51:19 -05001567 if (waitqueue_active(sk_sleep(sk)))
1568 wake_up_interruptible(sk_sleep(sk));
1569 }
1570 retval = TIPC_OK;
Ying Xue7e6c1312012-11-29 18:39:14 -05001571 break;
1572 case SS_LISTENING:
1573 case SS_UNCONNECTED:
1574 /* Accept only SYN message */
1575 if (!msg_connected(msg) && !(msg_errcode(msg)))
1576 retval = TIPC_OK;
1577 break;
1578 case SS_DISCONNECTING:
1579 break;
1580 default:
1581 pr_err("Unknown socket state %u\n", sock->state);
1582 }
1583 return retval;
1584}
1585
1586/**
Ying Xueaba79f32013-01-20 23:30:09 +01001587 * rcvbuf_limit - get proper overload limit of socket receive queue
1588 * @sk: socket
1589 * @buf: message
1590 *
1591 * For all connection oriented messages, irrespective of importance,
1592 * the default overload value (i.e. 67MB) is set as limit.
1593 *
1594 * For all connectionless messages, by default new queue limits are
1595 * as belows:
1596 *
Ying Xuecc79dd12013-06-17 10:54:37 -04001597 * TIPC_LOW_IMPORTANCE (4 MB)
1598 * TIPC_MEDIUM_IMPORTANCE (8 MB)
1599 * TIPC_HIGH_IMPORTANCE (16 MB)
1600 * TIPC_CRITICAL_IMPORTANCE (32 MB)
Ying Xueaba79f32013-01-20 23:30:09 +01001601 *
1602 * Returns overload limit according to corresponding message importance
1603 */
1604static unsigned int rcvbuf_limit(struct sock *sk, struct sk_buff *buf)
1605{
1606 struct tipc_msg *msg = buf_msg(buf);
Ying Xueaba79f32013-01-20 23:30:09 +01001607
1608 if (msg_connected(msg))
wangweidong0cee6bb2013-12-12 09:36:39 +08001609 return sysctl_tipc_rmem[2];
1610
1611 return sk->sk_rcvbuf >> TIPC_CRITICAL_IMPORTANCE <<
1612 msg_importance(msg);
Ying Xueaba79f32013-01-20 23:30:09 +01001613}
1614
1615/**
Allan Stephens0c3141e2008-04-15 00:22:02 -07001616 * filter_rcv - validate incoming message
1617 * @sk: socket
Jon Paul Maloy1186adf2015-02-05 08:36:37 -05001618 * @skb: pointer to message. Set to NULL if buffer is consumed.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001619 *
Allan Stephens0c3141e2008-04-15 00:22:02 -07001620 * Enqueues message on receive queue if acceptable; optionally handles
1621 * disconnect indication for a connected socket.
1622 *
Jon Paul Maloy1186adf2015-02-05 08:36:37 -05001623 * Called with socket lock already taken
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001624 *
Jon Paul Maloy1186adf2015-02-05 08:36:37 -05001625 * Returns 0 (TIPC_OK) if message was ok, -TIPC error code if rejected
Per Lidenb97bf3f2006-01-02 19:04:38 +01001626 */
Jon Paul Maloy1186adf2015-02-05 08:36:37 -05001627static int filter_rcv(struct sock *sk, struct sk_buff **skb)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001628{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001629 struct socket *sock = sk->sk_socket;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001630 struct tipc_sock *tsk = tipc_sk(sk);
Jon Paul Maloy1186adf2015-02-05 08:36:37 -05001631 struct tipc_msg *msg = buf_msg(*skb);
1632 unsigned int limit = rcvbuf_limit(sk, *skb);
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001633 int rc = TIPC_OK;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001634
Jon Paul Maloy1186adf2015-02-05 08:36:37 -05001635 if (unlikely(msg_user(msg) == CONN_MANAGER)) {
1636 tipc_sk_proto_rcv(tsk, skb);
1637 return TIPC_OK;
1638 }
Jon Paul Maloyec8a2e52014-06-25 20:41:40 -05001639
Jon Paul Maloy50100a52014-08-22 18:09:07 -04001640 if (unlikely(msg_user(msg) == SOCK_WAKEUP)) {
Jon Paul Maloy1186adf2015-02-05 08:36:37 -05001641 kfree_skb(*skb);
Jon Paul Maloy50100a52014-08-22 18:09:07 -04001642 tsk->link_cong = 0;
1643 sk->sk_write_space(sk);
Jon Paul Maloy1186adf2015-02-05 08:36:37 -05001644 *skb = NULL;
Jon Paul Maloy50100a52014-08-22 18:09:07 -04001645 return TIPC_OK;
1646 }
1647
Per Lidenb97bf3f2006-01-02 19:04:38 +01001648 /* Reject message if it is wrong sort of message for socket */
Allan Stephensaad58542012-04-26 18:13:08 -04001649 if (msg_type(msg) > TIPC_DIRECT_MSG)
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001650 return -TIPC_ERR_NO_PORT;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001651
Per Lidenb97bf3f2006-01-02 19:04:38 +01001652 if (sock->state == SS_READY) {
Allan Stephensb29f1422010-12-31 18:59:25 +00001653 if (msg_connected(msg))
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001654 return -TIPC_ERR_NO_PORT;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001655 } else {
Jon Paul Maloy1186adf2015-02-05 08:36:37 -05001656 rc = filter_connect(tsk, skb);
1657 if (rc != TIPC_OK || !*skb)
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001658 return rc;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001659 }
1660
1661 /* Reject message if there isn't room to queue it */
Jon Paul Maloy1186adf2015-02-05 08:36:37 -05001662 if (sk_rmem_alloc_get(sk) + (*skb)->truesize >= limit)
Jon Paul Maloye4de5fa2014-06-25 20:41:31 -05001663 return -TIPC_ERR_OVERLOAD;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001664
Ying Xueaba79f32013-01-20 23:30:09 +01001665 /* Enqueue message */
Jon Paul Maloy1186adf2015-02-05 08:36:37 -05001666 TIPC_SKB_CB(*skb)->handle = NULL;
1667 __skb_queue_tail(&sk->sk_receive_queue, *skb);
1668 skb_set_owner_r(*skb, sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001669
David S. Miller676d2362014-04-11 16:15:36 -04001670 sk->sk_data_ready(sk);
Jon Paul Maloy1186adf2015-02-05 08:36:37 -05001671 *skb = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001672 return TIPC_OK;
1673}
1674
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001675/**
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -04001676 * tipc_backlog_rcv - handle incoming message from backlog queue
Allan Stephens0c3141e2008-04-15 00:22:02 -07001677 * @sk: socket
Ying Xuea6ca1092014-11-26 11:41:55 +08001678 * @skb: message
Allan Stephens0c3141e2008-04-15 00:22:02 -07001679 *
Jon Paul Maloye3a77562015-02-05 08:36:39 -05001680 * Caller must hold socket lock
Allan Stephens0c3141e2008-04-15 00:22:02 -07001681 *
1682 * Returns 0
1683 */
Ying Xuea6ca1092014-11-26 11:41:55 +08001684static int tipc_backlog_rcv(struct sock *sk, struct sk_buff *skb)
Allan Stephens0c3141e2008-04-15 00:22:02 -07001685{
Jon Paul Maloy1186adf2015-02-05 08:36:37 -05001686 int err;
1687 atomic_t *dcnt;
1688 u32 dnode;
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -04001689 struct tipc_sock *tsk = tipc_sk(sk);
Ying Xue34747532015-01-09 15:27:10 +08001690 struct net *net = sock_net(sk);
Ying Xuea6ca1092014-11-26 11:41:55 +08001691 uint truesize = skb->truesize;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001692
Jon Paul Maloy1186adf2015-02-05 08:36:37 -05001693 err = filter_rcv(sk, &skb);
1694 if (likely(!skb)) {
1695 dcnt = &tsk->dupl_rcvcnt;
1696 if (atomic_read(dcnt) < TIPC_CONN_OVERLOAD_LIMIT)
1697 atomic_add(truesize, dcnt);
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001698 return 0;
1699 }
Jon Paul Maloy1186adf2015-02-05 08:36:37 -05001700 if (!err || tipc_msg_reverse(tsk_own_node(tsk), skb, &dnode, -err))
1701 tipc_link_xmit_skb(net, skb, dnode, tsk->portid);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001702 return 0;
1703}
1704
1705/**
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001706 * tipc_sk_enqueue - extract all buffers with destination 'dport' from
1707 * inputq and try adding them to socket or backlog queue
1708 * @inputq: list of incoming buffers with potentially different destinations
1709 * @sk: socket where the buffers should be enqueued
1710 * @dport: port number for the socket
1711 * @_skb: returned buffer to be forwarded or rejected, if applicable
Jon Paul Maloyd570d862015-02-05 08:36:38 -05001712 *
1713 * Caller must hold socket lock
1714 *
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001715 * Returns TIPC_OK if all buffers enqueued, otherwise -TIPC_ERR_OVERLOAD
1716 * or -TIPC_ERR_NO_PORT
Jon Paul Maloyd570d862015-02-05 08:36:38 -05001717 */
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001718static int tipc_sk_enqueue(struct sk_buff_head *inputq, struct sock *sk,
1719 u32 dport, struct sk_buff **_skb)
Jon Paul Maloyd570d862015-02-05 08:36:38 -05001720{
1721 unsigned int lim;
1722 atomic_t *dcnt;
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001723 int err;
1724 struct sk_buff *skb;
1725 unsigned long time_limit = jiffies + 2;
Jon Paul Maloyd570d862015-02-05 08:36:38 -05001726
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001727 while (skb_queue_len(inputq)) {
Jon Paul Maloy51a00da2015-02-08 11:10:50 -05001728 if (unlikely(time_after_eq(jiffies, time_limit)))
1729 return TIPC_OK;
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001730 skb = tipc_skb_dequeue(inputq, dport);
1731 if (unlikely(!skb))
1732 return TIPC_OK;
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001733 if (!sock_owned_by_user(sk)) {
1734 err = filter_rcv(sk, &skb);
1735 if (likely(!skb))
1736 continue;
1737 *_skb = skb;
1738 return err;
1739 }
1740 dcnt = &tipc_sk(sk)->dupl_rcvcnt;
1741 if (sk->sk_backlog.len)
1742 atomic_set(dcnt, 0);
1743 lim = rcvbuf_limit(sk, skb) + atomic_read(dcnt);
1744 if (likely(!sk_add_backlog(sk, skb, lim)))
1745 continue;
1746 *_skb = skb;
Jon Paul Maloyd570d862015-02-05 08:36:38 -05001747 return -TIPC_ERR_OVERLOAD;
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001748 }
Jon Paul Maloyd570d862015-02-05 08:36:38 -05001749 return TIPC_OK;
1750}
1751
1752/**
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001753 * tipc_sk_rcv - handle a chain of incoming buffers
1754 * @inputq: buffer list containing the buffers
1755 * Consumes all buffers in list until inputq is empty
1756 * Note: may be called in multiple threads referring to the same queue
1757 * Returns 0 if last buffer was accepted, otherwise -EHOSTUNREACH
1758 * Only node local calls check the return value, sending single-buffer queues
Allan Stephens0c3141e2008-04-15 00:22:02 -07001759 */
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001760int tipc_sk_rcv(struct net *net, struct sk_buff_head *inputq)
Allan Stephens0c3141e2008-04-15 00:22:02 -07001761{
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001762 u32 dnode, dport = 0;
1763 int err = -TIPC_ERR_NO_PORT;
1764 struct sk_buff *skb;
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001765 struct tipc_sock *tsk;
Jon Paul Maloyc5898632015-02-05 08:36:36 -05001766 struct tipc_net *tn;
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001767 struct sock *sk;
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001768
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001769 while (skb_queue_len(inputq)) {
1770 skb = NULL;
1771 dport = tipc_skb_peek_port(inputq, dport);
1772 tsk = tipc_sk_lookup(net, dport);
1773 if (likely(tsk)) {
1774 sk = &tsk->sk;
1775 if (likely(spin_trylock_bh(&sk->sk_lock.slock))) {
1776 err = tipc_sk_enqueue(inputq, sk, dport, &skb);
1777 spin_unlock_bh(&sk->sk_lock.slock);
1778 dport = 0;
1779 }
1780 sock_put(sk);
1781 } else {
1782 skb = tipc_skb_dequeue(inputq, dport);
1783 }
1784 if (likely(!skb))
1785 continue;
1786 if (tipc_msg_lookup_dest(net, skb, &dnode, &err))
1787 goto xmit;
1788 if (!err) {
1789 dnode = msg_destnode(buf_msg(skb));
1790 goto xmit;
1791 }
1792 tn = net_generic(net, tipc_net_id);
1793 if (!tipc_msg_reverse(tn->own_addr, skb, &dnode, -err))
1794 continue;
Jon Paul Maloye3a77562015-02-05 08:36:39 -05001795xmit:
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001796 tipc_link_xmit_skb(net, skb, dnode, dport);
1797 }
Jon Paul Maloy1186adf2015-02-05 08:36:37 -05001798 return err ? -EHOSTUNREACH : 0;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001799}
1800
Ying Xue78eb3a52014-01-17 09:50:03 +08001801static int tipc_wait_for_connect(struct socket *sock, long *timeo_p)
1802{
1803 struct sock *sk = sock->sk;
1804 DEFINE_WAIT(wait);
1805 int done;
1806
1807 do {
1808 int err = sock_error(sk);
1809 if (err)
1810 return err;
1811 if (!*timeo_p)
1812 return -ETIMEDOUT;
1813 if (signal_pending(current))
1814 return sock_intr_errno(*timeo_p);
1815
1816 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
1817 done = sk_wait_event(sk, timeo_p, sock->state != SS_CONNECTING);
1818 finish_wait(sk_sleep(sk), &wait);
1819 } while (!done);
1820 return 0;
1821}
1822
Per Lidenb97bf3f2006-01-02 19:04:38 +01001823/**
Ying Xue247f0f32014-02-18 16:06:46 +08001824 * tipc_connect - establish a connection to another TIPC port
Per Lidenb97bf3f2006-01-02 19:04:38 +01001825 * @sock: socket structure
1826 * @dest: socket address for destination port
1827 * @destlen: size of socket address data structure
Allan Stephens0c3141e2008-04-15 00:22:02 -07001828 * @flags: file-related flags associated with socket
Per Lidenb97bf3f2006-01-02 19:04:38 +01001829 *
1830 * Returns 0 on success, errno otherwise
1831 */
Ying Xue247f0f32014-02-18 16:06:46 +08001832static int tipc_connect(struct socket *sock, struct sockaddr *dest,
1833 int destlen, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001834{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001835 struct sock *sk = sock->sk;
Allan Stephensb89741a2008-04-15 00:20:37 -07001836 struct sockaddr_tipc *dst = (struct sockaddr_tipc *)dest;
1837 struct msghdr m = {NULL,};
Ying Xue78eb3a52014-01-17 09:50:03 +08001838 long timeout = (flags & O_NONBLOCK) ? 0 : tipc_sk(sk)->conn_timeout;
1839 socket_state previous;
Allan Stephensb89741a2008-04-15 00:20:37 -07001840 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001841
Allan Stephens0c3141e2008-04-15 00:22:02 -07001842 lock_sock(sk);
1843
Allan Stephensb89741a2008-04-15 00:20:37 -07001844 /* For now, TIPC does not allow use of connect() with DGRAM/RDM types */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001845 if (sock->state == SS_READY) {
1846 res = -EOPNOTSUPP;
1847 goto exit;
1848 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001849
Allan Stephensb89741a2008-04-15 00:20:37 -07001850 /*
1851 * Reject connection attempt using multicast address
1852 *
1853 * Note: send_msg() validates the rest of the address fields,
1854 * so there's no need to do it here
1855 */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001856 if (dst->addrtype == TIPC_ADDR_MCAST) {
1857 res = -EINVAL;
1858 goto exit;
1859 }
1860
Ying Xue78eb3a52014-01-17 09:50:03 +08001861 previous = sock->state;
Ying Xue584d24b2012-11-29 18:51:19 -05001862 switch (sock->state) {
1863 case SS_UNCONNECTED:
1864 /* Send a 'SYN-' to destination */
1865 m.msg_name = dest;
1866 m.msg_namelen = destlen;
1867
1868 /* If connect is in non-blocking case, set MSG_DONTWAIT to
1869 * indicate send_msg() is never blocked.
1870 */
1871 if (!timeout)
1872 m.msg_flags = MSG_DONTWAIT;
1873
Ying Xue39a02952015-03-02 15:37:47 +08001874 res = __tipc_sendmsg(sock, &m, 0);
Ying Xue584d24b2012-11-29 18:51:19 -05001875 if ((res < 0) && (res != -EWOULDBLOCK))
1876 goto exit;
1877
1878 /* Just entered SS_CONNECTING state; the only
1879 * difference is that return value in non-blocking
1880 * case is EINPROGRESS, rather than EALREADY.
1881 */
1882 res = -EINPROGRESS;
Ying Xue584d24b2012-11-29 18:51:19 -05001883 case SS_CONNECTING:
Ying Xue78eb3a52014-01-17 09:50:03 +08001884 if (previous == SS_CONNECTING)
1885 res = -EALREADY;
1886 if (!timeout)
1887 goto exit;
1888 timeout = msecs_to_jiffies(timeout);
1889 /* Wait until an 'ACK' or 'RST' arrives, or a timeout occurs */
1890 res = tipc_wait_for_connect(sock, &timeout);
Ying Xue584d24b2012-11-29 18:51:19 -05001891 break;
1892 case SS_CONNECTED:
1893 res = -EISCONN;
1894 break;
1895 default:
1896 res = -EINVAL;
Ying Xue78eb3a52014-01-17 09:50:03 +08001897 break;
Allan Stephensb89741a2008-04-15 00:20:37 -07001898 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001899exit:
1900 release_sock(sk);
Allan Stephensb89741a2008-04-15 00:20:37 -07001901 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001902}
1903
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001904/**
Ying Xue247f0f32014-02-18 16:06:46 +08001905 * tipc_listen - allow socket to listen for incoming connections
Per Lidenb97bf3f2006-01-02 19:04:38 +01001906 * @sock: socket structure
1907 * @len: (unused)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001908 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001909 * Returns 0 on success, errno otherwise
1910 */
Ying Xue247f0f32014-02-18 16:06:46 +08001911static int tipc_listen(struct socket *sock, int len)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001912{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001913 struct sock *sk = sock->sk;
1914 int res;
1915
1916 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001917
Ying Xue245f3d32011-07-06 06:01:13 -04001918 if (sock->state != SS_UNCONNECTED)
Allan Stephens0c3141e2008-04-15 00:22:02 -07001919 res = -EINVAL;
1920 else {
1921 sock->state = SS_LISTENING;
1922 res = 0;
1923 }
1924
1925 release_sock(sk);
1926 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001927}
1928
Ying Xue6398e232014-01-17 09:50:04 +08001929static int tipc_wait_for_accept(struct socket *sock, long timeo)
1930{
1931 struct sock *sk = sock->sk;
1932 DEFINE_WAIT(wait);
1933 int err;
1934
1935 /* True wake-one mechanism for incoming connections: only
1936 * one process gets woken up, not the 'whole herd'.
1937 * Since we do not 'race & poll' for established sockets
1938 * anymore, the common case will execute the loop only once.
1939 */
1940 for (;;) {
1941 prepare_to_wait_exclusive(sk_sleep(sk), &wait,
1942 TASK_INTERRUPTIBLE);
Ying Xuefe8e4642014-03-06 14:40:18 +01001943 if (timeo && skb_queue_empty(&sk->sk_receive_queue)) {
Ying Xue6398e232014-01-17 09:50:04 +08001944 release_sock(sk);
1945 timeo = schedule_timeout(timeo);
1946 lock_sock(sk);
1947 }
1948 err = 0;
1949 if (!skb_queue_empty(&sk->sk_receive_queue))
1950 break;
1951 err = -EINVAL;
1952 if (sock->state != SS_LISTENING)
1953 break;
Ying Xue6398e232014-01-17 09:50:04 +08001954 err = -EAGAIN;
1955 if (!timeo)
1956 break;
Erik Hugne143fe222015-03-09 10:43:42 +01001957 err = sock_intr_errno(timeo);
1958 if (signal_pending(current))
1959 break;
Ying Xue6398e232014-01-17 09:50:04 +08001960 }
1961 finish_wait(sk_sleep(sk), &wait);
1962 return err;
1963}
1964
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001965/**
Ying Xue247f0f32014-02-18 16:06:46 +08001966 * tipc_accept - wait for connection request
Per Lidenb97bf3f2006-01-02 19:04:38 +01001967 * @sock: listening socket
1968 * @newsock: new socket that is to be connected
1969 * @flags: file-related flags associated with socket
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001970 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001971 * Returns 0 on success, errno otherwise
1972 */
Ying Xue247f0f32014-02-18 16:06:46 +08001973static int tipc_accept(struct socket *sock, struct socket *new_sock, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001974{
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001975 struct sock *new_sk, *sk = sock->sk;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001976 struct sk_buff *buf;
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001977 struct tipc_sock *new_tsock;
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001978 struct tipc_msg *msg;
Ying Xue6398e232014-01-17 09:50:04 +08001979 long timeo;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001980 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001981
Allan Stephens0c3141e2008-04-15 00:22:02 -07001982 lock_sock(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001983
Allan Stephens0c3141e2008-04-15 00:22:02 -07001984 if (sock->state != SS_LISTENING) {
1985 res = -EINVAL;
1986 goto exit;
1987 }
Ying Xue6398e232014-01-17 09:50:04 +08001988 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
1989 res = tipc_wait_for_accept(sock, timeo);
1990 if (res)
1991 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001992
1993 buf = skb_peek(&sk->sk_receive_queue);
1994
Ying Xuec5fa7b32013-06-17 10:54:39 -04001995 res = tipc_sk_create(sock_net(sock->sk), new_sock, 0, 1);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001996 if (res)
1997 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001998
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05001999 new_sk = new_sock->sk;
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002000 new_tsock = tipc_sk(new_sk);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002001 msg = buf_msg(buf);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002002
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002003 /* we lock on new_sk; but lockdep sees the lock on sk */
2004 lock_sock_nested(new_sk, SINGLE_DEPTH_NESTING);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002005
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002006 /*
2007 * Reject any stray messages received by new socket
2008 * before the socket lock was taken (very, very unlikely)
2009 */
Jon Paul Maloy2e84c602014-08-22 18:09:18 -04002010 tsk_rej_rx_queue(new_sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002011
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002012 /* Connect new socket to it's peer */
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002013 tipc_sk_finish_conn(new_tsock, msg_origport(msg), msg_orignode(msg));
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002014 new_sock->state = SS_CONNECTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002015
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002016 tsk_set_importance(new_tsock, msg_importance(msg));
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002017 if (msg_named(msg)) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002018 new_tsock->conn_type = msg_nametype(msg);
2019 new_tsock->conn_instance = msg_nameinst(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002020 }
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002021
2022 /*
2023 * Respond to 'SYN-' by discarding it & returning 'ACK'-.
2024 * Respond to 'SYN+' by queuing it on new socket.
2025 */
2026 if (!msg_data_sz(msg)) {
2027 struct msghdr m = {NULL,};
2028
Jon Paul Maloy2e84c602014-08-22 18:09:18 -04002029 tsk_advance_rx_queue(sk);
Ying Xue39a02952015-03-02 15:37:47 +08002030 __tipc_send_stream(new_sock, &m, 0);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002031 } else {
2032 __skb_dequeue(&sk->sk_receive_queue);
2033 __skb_queue_head(&new_sk->sk_receive_queue, buf);
Ying Xueaba79f32013-01-20 23:30:09 +01002034 skb_set_owner_r(buf, new_sk);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002035 }
2036 release_sock(new_sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002037exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07002038 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002039 return res;
2040}
2041
2042/**
Ying Xue247f0f32014-02-18 16:06:46 +08002043 * tipc_shutdown - shutdown socket connection
Per Lidenb97bf3f2006-01-02 19:04:38 +01002044 * @sock: socket structure
Allan Stephense247a8f2008-03-06 15:05:38 -08002045 * @how: direction to close (must be SHUT_RDWR)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002046 *
2047 * Terminates connection (if necessary), then purges socket's receive queue.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002048 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002049 * Returns 0 on success, errno otherwise
2050 */
Ying Xue247f0f32014-02-18 16:06:46 +08002051static int tipc_shutdown(struct socket *sock, int how)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002052{
Allan Stephens0c3141e2008-04-15 00:22:02 -07002053 struct sock *sk = sock->sk;
Ying Xuef2f98002015-01-09 15:27:05 +08002054 struct net *net = sock_net(sk);
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002055 struct tipc_sock *tsk = tipc_sk(sk);
Ying Xuea6ca1092014-11-26 11:41:55 +08002056 struct sk_buff *skb;
Jon Paul Maloy80e44c22014-08-22 18:09:10 -04002057 u32 dnode;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002058 int res;
2059
Allan Stephense247a8f2008-03-06 15:05:38 -08002060 if (how != SHUT_RDWR)
2061 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002062
Allan Stephens0c3141e2008-04-15 00:22:02 -07002063 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002064
2065 switch (sock->state) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07002066 case SS_CONNECTING:
Per Lidenb97bf3f2006-01-02 19:04:38 +01002067 case SS_CONNECTED:
2068
Per Lidenb97bf3f2006-01-02 19:04:38 +01002069restart:
Paul Gortmaker617d3c72012-04-30 15:29:02 -04002070 /* Disconnect and send a 'FIN+' or 'FIN-' message to peer */
Ying Xuea6ca1092014-11-26 11:41:55 +08002071 skb = __skb_dequeue(&sk->sk_receive_queue);
2072 if (skb) {
2073 if (TIPC_SKB_CB(skb)->handle != NULL) {
2074 kfree_skb(skb);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002075 goto restart;
2076 }
Jon Paul Maloyc5898632015-02-05 08:36:36 -05002077 if (tipc_msg_reverse(tsk_own_node(tsk), skb, &dnode,
Ying Xue34747532015-01-09 15:27:10 +08002078 TIPC_CONN_SHUTDOWN))
Ying Xuef2f98002015-01-09 15:27:05 +08002079 tipc_link_xmit_skb(net, skb, dnode,
2080 tsk->portid);
2081 tipc_node_remove_conn(net, dnode, tsk->portid);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002082 } else {
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002083 dnode = tsk_peer_node(tsk);
Jon Paul Maloyc5898632015-02-05 08:36:36 -05002084
2085 skb = tipc_msg_create(TIPC_CRITICAL_IMPORTANCE,
Jon Paul Maloy80e44c22014-08-22 18:09:10 -04002086 TIPC_CONN_MSG, SHORT_H_SIZE,
Jon Paul Maloyc5898632015-02-05 08:36:36 -05002087 0, dnode, tsk_own_node(tsk),
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002088 tsk_peer_port(tsk),
Ying Xue07f6c4b2015-01-07 13:41:58 +08002089 tsk->portid, TIPC_CONN_SHUTDOWN);
Ying Xuef2f98002015-01-09 15:27:05 +08002090 tipc_link_xmit_skb(net, skb, dnode, tsk->portid);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002091 }
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002092 tsk->connected = 0;
Allan Stephens0c3141e2008-04-15 00:22:02 -07002093 sock->state = SS_DISCONNECTING;
Ying Xuef2f98002015-01-09 15:27:05 +08002094 tipc_node_remove_conn(net, dnode, tsk->portid);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002095 /* fall through */
2096
2097 case SS_DISCONNECTING:
2098
Ying Xue75031152012-10-29 09:38:15 -04002099 /* Discard any unreceived messages */
Ying Xue57467e52013-01-20 23:30:08 +01002100 __skb_queue_purge(&sk->sk_receive_queue);
Ying Xue75031152012-10-29 09:38:15 -04002101
2102 /* Wake up anyone sleeping in poll */
2103 sk->sk_state_change(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002104 res = 0;
2105 break;
2106
2107 default:
2108 res = -ENOTCONN;
2109 }
2110
Allan Stephens0c3141e2008-04-15 00:22:02 -07002111 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002112 return res;
2113}
2114
Ying Xuef2f2a962015-01-09 15:27:02 +08002115static void tipc_sk_timeout(unsigned long data)
Jon Paul Maloy57289012014-08-22 18:09:09 -04002116{
Ying Xuef2f2a962015-01-09 15:27:02 +08002117 struct tipc_sock *tsk = (struct tipc_sock *)data;
2118 struct sock *sk = &tsk->sk;
Ying Xuea6ca1092014-11-26 11:41:55 +08002119 struct sk_buff *skb = NULL;
Jon Paul Maloy57289012014-08-22 18:09:09 -04002120 u32 peer_port, peer_node;
Jon Paul Maloyc5898632015-02-05 08:36:36 -05002121 u32 own_node = tsk_own_node(tsk);
Jon Paul Maloy57289012014-08-22 18:09:09 -04002122
Jon Paul Maloy57289012014-08-22 18:09:09 -04002123 bh_lock_sock(sk);
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002124 if (!tsk->connected) {
Jon Paul Maloy6c9808c2014-08-22 18:09:16 -04002125 bh_unlock_sock(sk);
2126 goto exit;
2127 }
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002128 peer_port = tsk_peer_port(tsk);
2129 peer_node = tsk_peer_node(tsk);
Jon Paul Maloy57289012014-08-22 18:09:09 -04002130
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002131 if (tsk->probing_state == TIPC_CONN_PROBING) {
Jon Paul Maloy57289012014-08-22 18:09:09 -04002132 /* Previous probe not answered -> self abort */
Jon Paul Maloyc5898632015-02-05 08:36:36 -05002133 skb = tipc_msg_create(TIPC_CRITICAL_IMPORTANCE,
Ying Xue34747532015-01-09 15:27:10 +08002134 TIPC_CONN_MSG, SHORT_H_SIZE, 0,
Jon Paul Maloyc5898632015-02-05 08:36:36 -05002135 own_node, peer_node, tsk->portid,
Ying Xue34747532015-01-09 15:27:10 +08002136 peer_port, TIPC_ERR_NO_PORT);
Jon Paul Maloy57289012014-08-22 18:09:09 -04002137 } else {
Jon Paul Maloyc5898632015-02-05 08:36:36 -05002138 skb = tipc_msg_create(CONN_MANAGER, CONN_PROBE,
2139 INT_H_SIZE, 0, peer_node, own_node,
Ying Xuef2f2a962015-01-09 15:27:02 +08002140 peer_port, tsk->portid, TIPC_OK);
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002141 tsk->probing_state = TIPC_CONN_PROBING;
Ying Xue3721e9c2015-01-13 17:07:48 +08002142 sk_reset_timer(sk, &sk->sk_timer, jiffies + tsk->probing_intv);
Jon Paul Maloy57289012014-08-22 18:09:09 -04002143 }
2144 bh_unlock_sock(sk);
Ying Xuea6ca1092014-11-26 11:41:55 +08002145 if (skb)
Ying Xuef2f98002015-01-09 15:27:05 +08002146 tipc_link_xmit_skb(sock_net(sk), skb, peer_node, tsk->portid);
Jon Paul Maloy6c9808c2014-08-22 18:09:16 -04002147exit:
Ying Xue07f6c4b2015-01-07 13:41:58 +08002148 sock_put(sk);
Jon Paul Maloy57289012014-08-22 18:09:09 -04002149}
2150
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002151static int tipc_sk_publish(struct tipc_sock *tsk, uint scope,
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002152 struct tipc_name_seq const *seq)
2153{
Ying Xuef2f98002015-01-09 15:27:05 +08002154 struct net *net = sock_net(&tsk->sk);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002155 struct publication *publ;
2156 u32 key;
2157
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002158 if (tsk->connected)
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002159 return -EINVAL;
Ying Xue07f6c4b2015-01-07 13:41:58 +08002160 key = tsk->portid + tsk->pub_count + 1;
2161 if (key == tsk->portid)
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002162 return -EADDRINUSE;
2163
Ying Xuef2f98002015-01-09 15:27:05 +08002164 publ = tipc_nametbl_publish(net, seq->type, seq->lower, seq->upper,
Ying Xue07f6c4b2015-01-07 13:41:58 +08002165 scope, tsk->portid, key);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002166 if (unlikely(!publ))
2167 return -EINVAL;
2168
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002169 list_add(&publ->pport_list, &tsk->publications);
2170 tsk->pub_count++;
2171 tsk->published = 1;
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002172 return 0;
2173}
2174
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002175static int tipc_sk_withdraw(struct tipc_sock *tsk, uint scope,
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002176 struct tipc_name_seq const *seq)
2177{
Ying Xuef2f98002015-01-09 15:27:05 +08002178 struct net *net = sock_net(&tsk->sk);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002179 struct publication *publ;
2180 struct publication *safe;
2181 int rc = -EINVAL;
2182
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002183 list_for_each_entry_safe(publ, safe, &tsk->publications, pport_list) {
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002184 if (seq) {
2185 if (publ->scope != scope)
2186 continue;
2187 if (publ->type != seq->type)
2188 continue;
2189 if (publ->lower != seq->lower)
2190 continue;
2191 if (publ->upper != seq->upper)
2192 break;
Ying Xuef2f98002015-01-09 15:27:05 +08002193 tipc_nametbl_withdraw(net, publ->type, publ->lower,
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002194 publ->ref, publ->key);
2195 rc = 0;
2196 break;
2197 }
Ying Xuef2f98002015-01-09 15:27:05 +08002198 tipc_nametbl_withdraw(net, publ->type, publ->lower,
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002199 publ->ref, publ->key);
2200 rc = 0;
2201 }
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002202 if (list_empty(&tsk->publications))
2203 tsk->published = 0;
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002204 return rc;
2205}
2206
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002207/* tipc_sk_reinit: set non-zero address in all existing sockets
2208 * when we go from standalone to network mode.
2209 */
Ying Xuee05b31f2015-01-09 15:27:08 +08002210void tipc_sk_reinit(struct net *net)
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002211{
Ying Xuee05b31f2015-01-09 15:27:08 +08002212 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002213 const struct bucket_table *tbl;
2214 struct rhash_head *pos;
2215 struct tipc_sock *tsk;
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002216 struct tipc_msg *msg;
Ying Xue07f6c4b2015-01-07 13:41:58 +08002217 int i;
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002218
Ying Xue07f6c4b2015-01-07 13:41:58 +08002219 rcu_read_lock();
Ying Xuee05b31f2015-01-09 15:27:08 +08002220 tbl = rht_dereference_rcu((&tn->sk_rht)->tbl, &tn->sk_rht);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002221 for (i = 0; i < tbl->size; i++) {
2222 rht_for_each_entry_rcu(tsk, pos, tbl, i, node) {
2223 spin_lock_bh(&tsk->sk.sk_lock.slock);
2224 msg = &tsk->phdr;
Ying Xue34747532015-01-09 15:27:10 +08002225 msg_set_prevnode(msg, tn->own_addr);
2226 msg_set_orignode(msg, tn->own_addr);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002227 spin_unlock_bh(&tsk->sk.sk_lock.slock);
2228 }
2229 }
2230 rcu_read_unlock();
2231}
2232
Ying Xuee05b31f2015-01-09 15:27:08 +08002233static struct tipc_sock *tipc_sk_lookup(struct net *net, u32 portid)
Ying Xue07f6c4b2015-01-07 13:41:58 +08002234{
Ying Xuee05b31f2015-01-09 15:27:08 +08002235 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002236 struct tipc_sock *tsk;
2237
2238 rcu_read_lock();
Ying Xuee05b31f2015-01-09 15:27:08 +08002239 tsk = rhashtable_lookup(&tn->sk_rht, &portid);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002240 if (tsk)
2241 sock_hold(&tsk->sk);
2242 rcu_read_unlock();
2243
2244 return tsk;
2245}
2246
2247static int tipc_sk_insert(struct tipc_sock *tsk)
2248{
Ying Xuee05b31f2015-01-09 15:27:08 +08002249 struct sock *sk = &tsk->sk;
2250 struct net *net = sock_net(sk);
2251 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002252 u32 remaining = (TIPC_MAX_PORT - TIPC_MIN_PORT) + 1;
2253 u32 portid = prandom_u32() % remaining + TIPC_MIN_PORT;
2254
2255 while (remaining--) {
2256 portid++;
2257 if ((portid < TIPC_MIN_PORT) || (portid > TIPC_MAX_PORT))
2258 portid = TIPC_MIN_PORT;
2259 tsk->portid = portid;
2260 sock_hold(&tsk->sk);
Ying Xuee05b31f2015-01-09 15:27:08 +08002261 if (rhashtable_lookup_insert(&tn->sk_rht, &tsk->node))
Ying Xue07f6c4b2015-01-07 13:41:58 +08002262 return 0;
2263 sock_put(&tsk->sk);
2264 }
2265
2266 return -1;
2267}
2268
2269static void tipc_sk_remove(struct tipc_sock *tsk)
2270{
2271 struct sock *sk = &tsk->sk;
Ying Xuee05b31f2015-01-09 15:27:08 +08002272 struct tipc_net *tn = net_generic(sock_net(sk), tipc_net_id);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002273
Ying Xuee05b31f2015-01-09 15:27:08 +08002274 if (rhashtable_remove(&tn->sk_rht, &tsk->node)) {
Ying Xue07f6c4b2015-01-07 13:41:58 +08002275 WARN_ON(atomic_read(&sk->sk_refcnt) == 1);
2276 __sock_put(sk);
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002277 }
2278}
2279
Ying Xuee05b31f2015-01-09 15:27:08 +08002280int tipc_sk_rht_init(struct net *net)
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002281{
Ying Xuee05b31f2015-01-09 15:27:08 +08002282 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002283 struct rhashtable_params rht_params = {
2284 .nelem_hint = 192,
2285 .head_offset = offsetof(struct tipc_sock, node),
2286 .key_offset = offsetof(struct tipc_sock, portid),
2287 .key_len = sizeof(u32), /* portid */
2288 .hashfn = jhash,
2289 .max_shift = 20, /* 1M */
2290 .min_shift = 8, /* 256 */
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002291 };
2292
Ying Xuee05b31f2015-01-09 15:27:08 +08002293 return rhashtable_init(&tn->sk_rht, &rht_params);
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002294}
2295
Ying Xuee05b31f2015-01-09 15:27:08 +08002296void tipc_sk_rht_destroy(struct net *net)
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002297{
Ying Xuee05b31f2015-01-09 15:27:08 +08002298 struct tipc_net *tn = net_generic(net, tipc_net_id);
2299
Ying Xue07f6c4b2015-01-07 13:41:58 +08002300 /* Wait for socket readers to complete */
2301 synchronize_net();
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002302
Ying Xuee05b31f2015-01-09 15:27:08 +08002303 rhashtable_destroy(&tn->sk_rht);
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002304}
2305
2306/**
Ying Xue247f0f32014-02-18 16:06:46 +08002307 * tipc_setsockopt - set socket option
Per Lidenb97bf3f2006-01-02 19:04:38 +01002308 * @sock: socket structure
2309 * @lvl: option level
2310 * @opt: option identifier
2311 * @ov: pointer to new option value
2312 * @ol: length of option value
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002313 *
2314 * For stream sockets only, accepts and ignores all IPPROTO_TCP options
Per Lidenb97bf3f2006-01-02 19:04:38 +01002315 * (to ease compatibility).
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002316 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002317 * Returns 0 on success, errno otherwise
2318 */
Ying Xue247f0f32014-02-18 16:06:46 +08002319static int tipc_setsockopt(struct socket *sock, int lvl, int opt,
2320 char __user *ov, unsigned int ol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002321{
Allan Stephens0c3141e2008-04-15 00:22:02 -07002322 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002323 struct tipc_sock *tsk = tipc_sk(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002324 u32 value;
2325 int res;
2326
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002327 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
2328 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002329 if (lvl != SOL_TIPC)
2330 return -ENOPROTOOPT;
2331 if (ol < sizeof(value))
2332 return -EINVAL;
Allan Stephens2db99832010-12-31 18:59:33 +00002333 res = get_user(value, (u32 __user *)ov);
2334 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002335 return res;
2336
Allan Stephens0c3141e2008-04-15 00:22:02 -07002337 lock_sock(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002338
Per Lidenb97bf3f2006-01-02 19:04:38 +01002339 switch (opt) {
2340 case TIPC_IMPORTANCE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002341 res = tsk_set_importance(tsk, value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002342 break;
2343 case TIPC_SRC_DROPPABLE:
2344 if (sock->type != SOCK_STREAM)
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002345 tsk_set_unreliable(tsk, value);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002346 else
Per Lidenb97bf3f2006-01-02 19:04:38 +01002347 res = -ENOPROTOOPT;
2348 break;
2349 case TIPC_DEST_DROPPABLE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002350 tsk_set_unreturnable(tsk, value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002351 break;
2352 case TIPC_CONN_TIMEOUT:
Allan Stephensa0f40f02011-05-26 13:44:34 -04002353 tipc_sk(sk)->conn_timeout = value;
Allan Stephens0c3141e2008-04-15 00:22:02 -07002354 /* no need to set "res", since already 0 at this point */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002355 break;
2356 default:
2357 res = -EINVAL;
2358 }
2359
Allan Stephens0c3141e2008-04-15 00:22:02 -07002360 release_sock(sk);
2361
Per Lidenb97bf3f2006-01-02 19:04:38 +01002362 return res;
2363}
2364
2365/**
Ying Xue247f0f32014-02-18 16:06:46 +08002366 * tipc_getsockopt - get socket option
Per Lidenb97bf3f2006-01-02 19:04:38 +01002367 * @sock: socket structure
2368 * @lvl: option level
2369 * @opt: option identifier
2370 * @ov: receptacle for option value
2371 * @ol: receptacle for length of option value
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002372 *
2373 * For stream sockets only, returns 0 length result for all IPPROTO_TCP options
Per Lidenb97bf3f2006-01-02 19:04:38 +01002374 * (to ease compatibility).
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002375 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002376 * Returns 0 on success, errno otherwise
2377 */
Ying Xue247f0f32014-02-18 16:06:46 +08002378static int tipc_getsockopt(struct socket *sock, int lvl, int opt,
2379 char __user *ov, int __user *ol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002380{
Allan Stephens0c3141e2008-04-15 00:22:02 -07002381 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002382 struct tipc_sock *tsk = tipc_sk(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002383 int len;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002384 u32 value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002385 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002386
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002387 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
2388 return put_user(0, ol);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002389 if (lvl != SOL_TIPC)
2390 return -ENOPROTOOPT;
Allan Stephens2db99832010-12-31 18:59:33 +00002391 res = get_user(len, ol);
2392 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002393 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002394
Allan Stephens0c3141e2008-04-15 00:22:02 -07002395 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002396
2397 switch (opt) {
2398 case TIPC_IMPORTANCE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002399 value = tsk_importance(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002400 break;
2401 case TIPC_SRC_DROPPABLE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002402 value = tsk_unreliable(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002403 break;
2404 case TIPC_DEST_DROPPABLE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002405 value = tsk_unreturnable(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002406 break;
2407 case TIPC_CONN_TIMEOUT:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002408 value = tsk->conn_timeout;
Allan Stephens0c3141e2008-04-15 00:22:02 -07002409 /* no need to set "res", since already 0 at this point */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002410 break;
Allan Stephens0e659672010-12-31 18:59:32 +00002411 case TIPC_NODE_RECVQ_DEPTH:
Ying Xue9da3d472012-11-27 06:15:27 -05002412 value = 0; /* was tipc_queue_size, now obsolete */
oscar.medina@motorola.com66506132009-06-30 03:25:39 +00002413 break;
Allan Stephens0e659672010-12-31 18:59:32 +00002414 case TIPC_SOCK_RECVQ_DEPTH:
oscar.medina@motorola.com66506132009-06-30 03:25:39 +00002415 value = skb_queue_len(&sk->sk_receive_queue);
2416 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002417 default:
2418 res = -EINVAL;
2419 }
2420
Allan Stephens0c3141e2008-04-15 00:22:02 -07002421 release_sock(sk);
2422
Paul Gortmaker25860c32010-12-31 18:59:31 +00002423 if (res)
2424 return res; /* "get" failed */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002425
Paul Gortmaker25860c32010-12-31 18:59:31 +00002426 if (len < sizeof(value))
2427 return -EINVAL;
2428
2429 if (copy_to_user(ov, &value, sizeof(value)))
2430 return -EFAULT;
2431
2432 return put_user(sizeof(value), ol);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002433}
2434
Ying Xuef2f98002015-01-09 15:27:05 +08002435static int tipc_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
Erik Hugne78acb1f2014-04-24 16:26:47 +02002436{
Ying Xuef2f98002015-01-09 15:27:05 +08002437 struct sock *sk = sock->sk;
Erik Hugne78acb1f2014-04-24 16:26:47 +02002438 struct tipc_sioc_ln_req lnr;
2439 void __user *argp = (void __user *)arg;
2440
2441 switch (cmd) {
2442 case SIOCGETLINKNAME:
2443 if (copy_from_user(&lnr, argp, sizeof(lnr)))
2444 return -EFAULT;
Ying Xuef2f98002015-01-09 15:27:05 +08002445 if (!tipc_node_get_linkname(sock_net(sk),
2446 lnr.bearer_id & 0xffff, lnr.peer,
Erik Hugne78acb1f2014-04-24 16:26:47 +02002447 lnr.linkname, TIPC_MAX_LINK_NAME)) {
2448 if (copy_to_user(argp, &lnr, sizeof(lnr)))
2449 return -EFAULT;
2450 return 0;
2451 }
2452 return -EADDRNOTAVAIL;
Erik Hugne78acb1f2014-04-24 16:26:47 +02002453 default:
2454 return -ENOIOCTLCMD;
2455 }
2456}
2457
Ben Hutchingsae86b9e2012-07-10 10:55:35 +00002458/* Protocol switches for the various types of TIPC sockets */
2459
Florian Westphalbca65ea2008-02-07 18:18:01 -08002460static const struct proto_ops msg_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00002461 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002462 .family = AF_TIPC,
Ying Xue247f0f32014-02-18 16:06:46 +08002463 .release = tipc_release,
2464 .bind = tipc_bind,
2465 .connect = tipc_connect,
Allan Stephens5eee6a62007-06-10 17:24:55 -07002466 .socketpair = sock_no_socketpair,
Ying Xue245f3d32011-07-06 06:01:13 -04002467 .accept = sock_no_accept,
Ying Xue247f0f32014-02-18 16:06:46 +08002468 .getname = tipc_getname,
2469 .poll = tipc_poll,
Erik Hugne78acb1f2014-04-24 16:26:47 +02002470 .ioctl = tipc_ioctl,
Ying Xue245f3d32011-07-06 06:01:13 -04002471 .listen = sock_no_listen,
Ying Xue247f0f32014-02-18 16:06:46 +08002472 .shutdown = tipc_shutdown,
2473 .setsockopt = tipc_setsockopt,
2474 .getsockopt = tipc_getsockopt,
2475 .sendmsg = tipc_sendmsg,
2476 .recvmsg = tipc_recvmsg,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09002477 .mmap = sock_no_mmap,
2478 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01002479};
2480
Florian Westphalbca65ea2008-02-07 18:18:01 -08002481static const struct proto_ops packet_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00002482 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002483 .family = AF_TIPC,
Ying Xue247f0f32014-02-18 16:06:46 +08002484 .release = tipc_release,
2485 .bind = tipc_bind,
2486 .connect = tipc_connect,
Allan Stephens5eee6a62007-06-10 17:24:55 -07002487 .socketpair = sock_no_socketpair,
Ying Xue247f0f32014-02-18 16:06:46 +08002488 .accept = tipc_accept,
2489 .getname = tipc_getname,
2490 .poll = tipc_poll,
Erik Hugne78acb1f2014-04-24 16:26:47 +02002491 .ioctl = tipc_ioctl,
Ying Xue247f0f32014-02-18 16:06:46 +08002492 .listen = tipc_listen,
2493 .shutdown = tipc_shutdown,
2494 .setsockopt = tipc_setsockopt,
2495 .getsockopt = tipc_getsockopt,
2496 .sendmsg = tipc_send_packet,
2497 .recvmsg = tipc_recvmsg,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09002498 .mmap = sock_no_mmap,
2499 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01002500};
2501
Florian Westphalbca65ea2008-02-07 18:18:01 -08002502static const struct proto_ops stream_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00002503 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002504 .family = AF_TIPC,
Ying Xue247f0f32014-02-18 16:06:46 +08002505 .release = tipc_release,
2506 .bind = tipc_bind,
2507 .connect = tipc_connect,
Allan Stephens5eee6a62007-06-10 17:24:55 -07002508 .socketpair = sock_no_socketpair,
Ying Xue247f0f32014-02-18 16:06:46 +08002509 .accept = tipc_accept,
2510 .getname = tipc_getname,
2511 .poll = tipc_poll,
Erik Hugne78acb1f2014-04-24 16:26:47 +02002512 .ioctl = tipc_ioctl,
Ying Xue247f0f32014-02-18 16:06:46 +08002513 .listen = tipc_listen,
2514 .shutdown = tipc_shutdown,
2515 .setsockopt = tipc_setsockopt,
2516 .getsockopt = tipc_getsockopt,
2517 .sendmsg = tipc_send_stream,
2518 .recvmsg = tipc_recv_stream,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09002519 .mmap = sock_no_mmap,
2520 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01002521};
2522
Florian Westphalbca65ea2008-02-07 18:18:01 -08002523static const struct net_proto_family tipc_family_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00002524 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002525 .family = AF_TIPC,
Ying Xuec5fa7b32013-06-17 10:54:39 -04002526 .create = tipc_sk_create
Per Lidenb97bf3f2006-01-02 19:04:38 +01002527};
2528
2529static struct proto tipc_proto = {
2530 .name = "TIPC",
2531 .owner = THIS_MODULE,
Ying Xuecc79dd12013-06-17 10:54:37 -04002532 .obj_size = sizeof(struct tipc_sock),
2533 .sysctl_rmem = sysctl_tipc_rmem
Per Lidenb97bf3f2006-01-02 19:04:38 +01002534};
2535
2536/**
Per Liden4323add2006-01-18 00:38:21 +01002537 * tipc_socket_init - initialize TIPC socket interface
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002538 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002539 * Returns 0 on success, errno otherwise
2540 */
Per Liden4323add2006-01-18 00:38:21 +01002541int tipc_socket_init(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002542{
2543 int res;
2544
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002545 res = proto_register(&tipc_proto, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002546 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002547 pr_err("Failed to register TIPC protocol type\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002548 goto out;
2549 }
2550
2551 res = sock_register(&tipc_family_ops);
2552 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002553 pr_err("Failed to register TIPC socket type\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002554 proto_unregister(&tipc_proto);
2555 goto out;
2556 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002557 out:
2558 return res;
2559}
2560
2561/**
Per Liden4323add2006-01-18 00:38:21 +01002562 * tipc_socket_stop - stop TIPC socket interface
Per Lidenb97bf3f2006-01-02 19:04:38 +01002563 */
Per Liden4323add2006-01-18 00:38:21 +01002564void tipc_socket_stop(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002565{
Per Lidenb97bf3f2006-01-02 19:04:38 +01002566 sock_unregister(tipc_family_ops.family);
2567 proto_unregister(&tipc_proto);
2568}
Richard Alpe34b78a122014-11-20 10:29:10 +01002569
2570/* Caller should hold socket lock for the passed tipc socket. */
Richard Alped8182802014-11-24 11:10:29 +01002571static int __tipc_nl_add_sk_con(struct sk_buff *skb, struct tipc_sock *tsk)
Richard Alpe34b78a122014-11-20 10:29:10 +01002572{
2573 u32 peer_node;
2574 u32 peer_port;
2575 struct nlattr *nest;
2576
2577 peer_node = tsk_peer_node(tsk);
2578 peer_port = tsk_peer_port(tsk);
2579
2580 nest = nla_nest_start(skb, TIPC_NLA_SOCK_CON);
2581
2582 if (nla_put_u32(skb, TIPC_NLA_CON_NODE, peer_node))
2583 goto msg_full;
2584 if (nla_put_u32(skb, TIPC_NLA_CON_SOCK, peer_port))
2585 goto msg_full;
2586
2587 if (tsk->conn_type != 0) {
2588 if (nla_put_flag(skb, TIPC_NLA_CON_FLAG))
2589 goto msg_full;
2590 if (nla_put_u32(skb, TIPC_NLA_CON_TYPE, tsk->conn_type))
2591 goto msg_full;
2592 if (nla_put_u32(skb, TIPC_NLA_CON_INST, tsk->conn_instance))
2593 goto msg_full;
2594 }
2595 nla_nest_end(skb, nest);
2596
2597 return 0;
2598
2599msg_full:
2600 nla_nest_cancel(skb, nest);
2601
2602 return -EMSGSIZE;
2603}
2604
2605/* Caller should hold socket lock for the passed tipc socket. */
Richard Alped8182802014-11-24 11:10:29 +01002606static int __tipc_nl_add_sk(struct sk_buff *skb, struct netlink_callback *cb,
2607 struct tipc_sock *tsk)
Richard Alpe34b78a122014-11-20 10:29:10 +01002608{
2609 int err;
2610 void *hdr;
2611 struct nlattr *attrs;
Ying Xue34747532015-01-09 15:27:10 +08002612 struct net *net = sock_net(skb->sk);
2613 struct tipc_net *tn = net_generic(net, tipc_net_id);
Richard Alpe34b78a122014-11-20 10:29:10 +01002614
2615 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
Richard Alpebfb3e5d2015-02-09 09:50:03 +01002616 &tipc_genl_family, NLM_F_MULTI, TIPC_NL_SOCK_GET);
Richard Alpe34b78a122014-11-20 10:29:10 +01002617 if (!hdr)
2618 goto msg_cancel;
2619
2620 attrs = nla_nest_start(skb, TIPC_NLA_SOCK);
2621 if (!attrs)
2622 goto genlmsg_cancel;
Ying Xue07f6c4b2015-01-07 13:41:58 +08002623 if (nla_put_u32(skb, TIPC_NLA_SOCK_REF, tsk->portid))
Richard Alpe34b78a122014-11-20 10:29:10 +01002624 goto attr_msg_cancel;
Ying Xue34747532015-01-09 15:27:10 +08002625 if (nla_put_u32(skb, TIPC_NLA_SOCK_ADDR, tn->own_addr))
Richard Alpe34b78a122014-11-20 10:29:10 +01002626 goto attr_msg_cancel;
2627
2628 if (tsk->connected) {
2629 err = __tipc_nl_add_sk_con(skb, tsk);
2630 if (err)
2631 goto attr_msg_cancel;
2632 } else if (!list_empty(&tsk->publications)) {
2633 if (nla_put_flag(skb, TIPC_NLA_SOCK_HAS_PUBL))
2634 goto attr_msg_cancel;
2635 }
2636 nla_nest_end(skb, attrs);
2637 genlmsg_end(skb, hdr);
2638
2639 return 0;
2640
2641attr_msg_cancel:
2642 nla_nest_cancel(skb, attrs);
2643genlmsg_cancel:
2644 genlmsg_cancel(skb, hdr);
2645msg_cancel:
2646 return -EMSGSIZE;
2647}
2648
2649int tipc_nl_sk_dump(struct sk_buff *skb, struct netlink_callback *cb)
2650{
2651 int err;
2652 struct tipc_sock *tsk;
Ying Xue07f6c4b2015-01-07 13:41:58 +08002653 const struct bucket_table *tbl;
2654 struct rhash_head *pos;
Ying Xuee05b31f2015-01-09 15:27:08 +08002655 struct net *net = sock_net(skb->sk);
2656 struct tipc_net *tn = net_generic(net, tipc_net_id);
Richard Alped6e164e2015-01-16 12:30:40 +01002657 u32 tbl_id = cb->args[0];
2658 u32 prev_portid = cb->args[1];
Richard Alpe34b78a122014-11-20 10:29:10 +01002659
Ying Xue07f6c4b2015-01-07 13:41:58 +08002660 rcu_read_lock();
Ying Xuee05b31f2015-01-09 15:27:08 +08002661 tbl = rht_dereference_rcu((&tn->sk_rht)->tbl, &tn->sk_rht);
Richard Alped6e164e2015-01-16 12:30:40 +01002662 for (; tbl_id < tbl->size; tbl_id++) {
2663 rht_for_each_entry_rcu(tsk, pos, tbl, tbl_id, node) {
Ying Xue07f6c4b2015-01-07 13:41:58 +08002664 spin_lock_bh(&tsk->sk.sk_lock.slock);
Richard Alped6e164e2015-01-16 12:30:40 +01002665 if (prev_portid && prev_portid != tsk->portid) {
2666 spin_unlock_bh(&tsk->sk.sk_lock.slock);
2667 continue;
2668 }
Richard Alpe34b78a122014-11-20 10:29:10 +01002669
Richard Alped6e164e2015-01-16 12:30:40 +01002670 err = __tipc_nl_add_sk(skb, cb, tsk);
2671 if (err) {
2672 prev_portid = tsk->portid;
2673 spin_unlock_bh(&tsk->sk.sk_lock.slock);
2674 goto out;
2675 }
2676 prev_portid = 0;
2677 spin_unlock_bh(&tsk->sk.sk_lock.slock);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002678 }
Richard Alpe34b78a122014-11-20 10:29:10 +01002679 }
Richard Alped6e164e2015-01-16 12:30:40 +01002680out:
Ying Xue07f6c4b2015-01-07 13:41:58 +08002681 rcu_read_unlock();
Richard Alped6e164e2015-01-16 12:30:40 +01002682 cb->args[0] = tbl_id;
2683 cb->args[1] = prev_portid;
Richard Alpe34b78a122014-11-20 10:29:10 +01002684
2685 return skb->len;
2686}
Richard Alpe1a1a1432014-11-20 10:29:11 +01002687
2688/* Caller should hold socket lock for the passed tipc socket. */
Richard Alped8182802014-11-24 11:10:29 +01002689static int __tipc_nl_add_sk_publ(struct sk_buff *skb,
2690 struct netlink_callback *cb,
2691 struct publication *publ)
Richard Alpe1a1a1432014-11-20 10:29:11 +01002692{
2693 void *hdr;
2694 struct nlattr *attrs;
2695
2696 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
Richard Alpebfb3e5d2015-02-09 09:50:03 +01002697 &tipc_genl_family, NLM_F_MULTI, TIPC_NL_PUBL_GET);
Richard Alpe1a1a1432014-11-20 10:29:11 +01002698 if (!hdr)
2699 goto msg_cancel;
2700
2701 attrs = nla_nest_start(skb, TIPC_NLA_PUBL);
2702 if (!attrs)
2703 goto genlmsg_cancel;
2704
2705 if (nla_put_u32(skb, TIPC_NLA_PUBL_KEY, publ->key))
2706 goto attr_msg_cancel;
2707 if (nla_put_u32(skb, TIPC_NLA_PUBL_TYPE, publ->type))
2708 goto attr_msg_cancel;
2709 if (nla_put_u32(skb, TIPC_NLA_PUBL_LOWER, publ->lower))
2710 goto attr_msg_cancel;
2711 if (nla_put_u32(skb, TIPC_NLA_PUBL_UPPER, publ->upper))
2712 goto attr_msg_cancel;
2713
2714 nla_nest_end(skb, attrs);
2715 genlmsg_end(skb, hdr);
2716
2717 return 0;
2718
2719attr_msg_cancel:
2720 nla_nest_cancel(skb, attrs);
2721genlmsg_cancel:
2722 genlmsg_cancel(skb, hdr);
2723msg_cancel:
2724 return -EMSGSIZE;
2725}
2726
2727/* Caller should hold socket lock for the passed tipc socket. */
Richard Alped8182802014-11-24 11:10:29 +01002728static int __tipc_nl_list_sk_publ(struct sk_buff *skb,
2729 struct netlink_callback *cb,
2730 struct tipc_sock *tsk, u32 *last_publ)
Richard Alpe1a1a1432014-11-20 10:29:11 +01002731{
2732 int err;
2733 struct publication *p;
2734
2735 if (*last_publ) {
2736 list_for_each_entry(p, &tsk->publications, pport_list) {
2737 if (p->key == *last_publ)
2738 break;
2739 }
2740 if (p->key != *last_publ) {
2741 /* We never set seq or call nl_dump_check_consistent()
2742 * this means that setting prev_seq here will cause the
2743 * consistence check to fail in the netlink callback
2744 * handler. Resulting in the last NLMSG_DONE message
2745 * having the NLM_F_DUMP_INTR flag set.
2746 */
2747 cb->prev_seq = 1;
2748 *last_publ = 0;
2749 return -EPIPE;
2750 }
2751 } else {
2752 p = list_first_entry(&tsk->publications, struct publication,
2753 pport_list);
2754 }
2755
2756 list_for_each_entry_from(p, &tsk->publications, pport_list) {
2757 err = __tipc_nl_add_sk_publ(skb, cb, p);
2758 if (err) {
2759 *last_publ = p->key;
2760 return err;
2761 }
2762 }
2763 *last_publ = 0;
2764
2765 return 0;
2766}
2767
2768int tipc_nl_publ_dump(struct sk_buff *skb, struct netlink_callback *cb)
2769{
2770 int err;
Ying Xue07f6c4b2015-01-07 13:41:58 +08002771 u32 tsk_portid = cb->args[0];
Richard Alpe1a1a1432014-11-20 10:29:11 +01002772 u32 last_publ = cb->args[1];
2773 u32 done = cb->args[2];
Ying Xuee05b31f2015-01-09 15:27:08 +08002774 struct net *net = sock_net(skb->sk);
Richard Alpe1a1a1432014-11-20 10:29:11 +01002775 struct tipc_sock *tsk;
2776
Ying Xue07f6c4b2015-01-07 13:41:58 +08002777 if (!tsk_portid) {
Richard Alpe1a1a1432014-11-20 10:29:11 +01002778 struct nlattr **attrs;
2779 struct nlattr *sock[TIPC_NLA_SOCK_MAX + 1];
2780
2781 err = tipc_nlmsg_parse(cb->nlh, &attrs);
2782 if (err)
2783 return err;
2784
2785 err = nla_parse_nested(sock, TIPC_NLA_SOCK_MAX,
2786 attrs[TIPC_NLA_SOCK],
2787 tipc_nl_sock_policy);
2788 if (err)
2789 return err;
2790
2791 if (!sock[TIPC_NLA_SOCK_REF])
2792 return -EINVAL;
2793
Ying Xue07f6c4b2015-01-07 13:41:58 +08002794 tsk_portid = nla_get_u32(sock[TIPC_NLA_SOCK_REF]);
Richard Alpe1a1a1432014-11-20 10:29:11 +01002795 }
2796
2797 if (done)
2798 return 0;
2799
Ying Xuee05b31f2015-01-09 15:27:08 +08002800 tsk = tipc_sk_lookup(net, tsk_portid);
Richard Alpe1a1a1432014-11-20 10:29:11 +01002801 if (!tsk)
2802 return -EINVAL;
2803
2804 lock_sock(&tsk->sk);
2805 err = __tipc_nl_list_sk_publ(skb, cb, tsk, &last_publ);
2806 if (!err)
2807 done = 1;
2808 release_sock(&tsk->sk);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002809 sock_put(&tsk->sk);
Richard Alpe1a1a1432014-11-20 10:29:11 +01002810
Ying Xue07f6c4b2015-01-07 13:41:58 +08002811 cb->args[0] = tsk_portid;
Richard Alpe1a1a1432014-11-20 10:29:11 +01002812 cb->args[1] = last_publ;
2813 cb->args[2] = done;
2814
2815 return skb->len;
2816}