blob: 656940692a445cea81eca88d03679daa7bdb7d29 [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 Maloy75da2162017-10-13 11:04:23 +02004 * Copyright (c) 2001-2007, 2012-2017, 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>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010038#include <linux/sched/signal.h>
39
Per Lidenb97bf3f2006-01-02 19:04:38 +010040#include "core.h"
Jon Paul Maloye2dafe82014-06-25 20:41:37 -050041#include "name_table.h"
Erik Hugne78acb1f2014-04-24 16:26:47 +020042#include "node.h"
Jon Paul Maloye2dafe82014-06-25 20:41:37 -050043#include "link.h"
Jon Paul Maloyc637c102015-02-05 08:36:41 -050044#include "name_distr.h"
Jon Paul Maloy2e84c602014-08-22 18:09:18 -040045#include "socket.h"
Jon Paul Maloya6bf70f2015-05-14 10:46:13 -040046#include "bcast.h"
Richard Alpe49cc66e2016-03-04 17:04:42 +010047#include "netlink.h"
Jon Maloy75da2162017-10-13 11:04:23 +020048#include "group.h"
Erik Hugne2cf8aa12012-06-29 00:16:37 -040049
Tung Nguyen67879272018-09-28 20:23:22 +020050#define CONN_TIMEOUT_DEFAULT 8000 /* default connect timeout = 8s */
Jon Maloy0d5fcebf2017-10-20 11:21:32 +020051#define CONN_PROBING_INTV msecs_to_jiffies(3600000) /* [ms] => 1 h */
Ying Xue07f6c4b2015-01-07 13:41:58 +080052#define TIPC_FWD_MSG 1
Ying Xue07f6c4b2015-01-07 13:41:58 +080053#define TIPC_MAX_PORT 0xffffffff
54#define TIPC_MIN_PORT 1
Jon Paul Maloye9f8b102017-05-02 18:16:53 +020055#define TIPC_ACK_RATE 4 /* ACK at 1/4 of of rcv window size */
Jon Paul Maloy301bae52014-08-22 18:09:20 -040056
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +010057enum {
58 TIPC_LISTEN = TCP_LISTEN,
Parthasarathy Bhuvaragan8ea642e2016-11-01 14:02:44 +010059 TIPC_ESTABLISHED = TCP_ESTABLISHED,
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +010060 TIPC_OPEN = TCP_CLOSE,
Parthasarathy Bhuvaragan9fd4b072016-11-01 14:02:46 +010061 TIPC_DISCONNECTING = TCP_CLOSE_WAIT,
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +010062 TIPC_CONNECTING = TCP_SYN_SENT,
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +010063};
64
Jon Maloy31c82a22017-10-13 11:04:24 +020065struct sockaddr_pair {
66 struct sockaddr_tipc sock;
67 struct sockaddr_tipc member;
68};
69
Jon Paul Maloy301bae52014-08-22 18:09:20 -040070/**
71 * struct tipc_sock - TIPC socket structure
72 * @sk: socket - interacts with 'port' and with user via the socket API
Jon Paul Maloy301bae52014-08-22 18:09:20 -040073 * @conn_type: TIPC type used when connection was established
74 * @conn_instance: TIPC instance used when connection was established
75 * @published: non-zero if port has one or more associated names
76 * @max_pkt: maximum packet size "hint" used when building messages sent by port
Ying Xue07f6c4b2015-01-07 13:41:58 +080077 * @portid: unique port identity in TIPC socket hash table
Jon Paul Maloy301bae52014-08-22 18:09:20 -040078 * @phdr: preformatted message header used when sending messages
Jon Paul Maloy365ad352017-01-03 10:55:11 -050079 * #cong_links: list of congested links
Jon Paul Maloy301bae52014-08-22 18:09:20 -040080 * @publications: list of publications for port
Jon Paul Maloy365ad352017-01-03 10:55:11 -050081 * @blocking_link: address of the congested link we are currently sleeping on
Jon Paul Maloy301bae52014-08-22 18:09:20 -040082 * @pub_count: total # of publications port has made during its lifetime
Jon Paul Maloy301bae52014-08-22 18:09:20 -040083 * @conn_timeout: the time we can wait for an unresponded setup request
84 * @dupl_rcvcnt: number of bytes counted twice, in both backlog and rcv queue
Jon Paul Maloy365ad352017-01-03 10:55:11 -050085 * @cong_link_cnt: number of congested links
Jon Maloy75da2162017-10-13 11:04:23 +020086 * @snt_unacked: # messages sent by socket, and not yet acked by peer
Jon Paul Maloy301bae52014-08-22 18:09:20 -040087 * @rcv_unacked: # messages read by user, but not yet acked back to peer
Parthasarathy Bhuvaraganaeda16b2016-11-01 14:02:38 +010088 * @peer: 'connected' peer for dgram/rdm
Ying Xue07f6c4b2015-01-07 13:41:58 +080089 * @node: hash table node
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -050090 * @mc_method: cookie for use between socket and broadcast layer
Ying Xue07f6c4b2015-01-07 13:41:58 +080091 * @rcu: rcu struct for tipc_sock
Jon Paul Maloy301bae52014-08-22 18:09:20 -040092 */
93struct tipc_sock {
94 struct sock sk;
Jon Paul Maloy301bae52014-08-22 18:09:20 -040095 u32 conn_type;
96 u32 conn_instance;
97 int published;
98 u32 max_pkt;
Ying Xue07f6c4b2015-01-07 13:41:58 +080099 u32 portid;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400100 struct tipc_msg phdr;
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500101 struct list_head cong_links;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400102 struct list_head publications;
103 u32 pub_count;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400104 atomic_t dupl_rcvcnt;
Tung Nguyen67879272018-09-28 20:23:22 +0200105 u16 conn_timeout;
Parthasarathy Bhuvaragan8ea642e2016-11-01 14:02:44 +0100106 bool probe_unacked;
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500107 u16 cong_link_cnt;
Jon Paul Maloy10724cc2016-05-02 11:58:47 -0400108 u16 snt_unacked;
109 u16 snd_win;
Jon Paul Maloy60020e12016-05-02 11:58:46 -0400110 u16 peer_caps;
Jon Paul Maloy10724cc2016-05-02 11:58:47 -0400111 u16 rcv_unacked;
112 u16 rcv_win;
Parthasarathy Bhuvaraganaeda16b2016-11-01 14:02:38 +0100113 struct sockaddr_tipc peer;
Ying Xue07f6c4b2015-01-07 13:41:58 +0800114 struct rhash_head node;
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -0500115 struct tipc_mc_method mc_method;
Ying Xue07f6c4b2015-01-07 13:41:58 +0800116 struct rcu_head rcu;
Jon Maloy75da2162017-10-13 11:04:23 +0200117 struct tipc_group *group;
Jon Maloy60c25302018-01-17 16:42:46 +0100118 bool group_is_open;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400119};
Per Lidenb97bf3f2006-01-02 19:04:38 +0100120
Jon Maloy64ac5f52017-10-13 11:04:20 +0200121static int tipc_sk_backlog_rcv(struct sock *sk, struct sk_buff *skb);
David S. Miller676d2362014-04-11 16:15:36 -0400122static void tipc_data_ready(struct sock *sk);
Ying Xuef288bef2012-08-21 11:16:57 +0800123static void tipc_write_space(struct sock *sk);
Ying Xuef4195d12015-11-22 15:46:05 +0800124static void tipc_sock_destruct(struct sock *sk);
Ying Xue247f0f32014-02-18 16:06:46 +0800125static int tipc_release(struct socket *sock);
David Howellscdfbabf2017-03-09 08:09:05 +0000126static int tipc_accept(struct socket *sock, struct socket *new_sock, int flags,
127 bool kern);
Kees Cook31b102b2017-10-30 14:06:45 -0700128static void tipc_sk_timeout(struct timer_list *t);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400129static int tipc_sk_publish(struct tipc_sock *tsk, uint scope,
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400130 struct tipc_name_seq const *seq);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400131static int tipc_sk_withdraw(struct tipc_sock *tsk, uint scope,
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400132 struct tipc_name_seq const *seq);
Jon Maloy75da2162017-10-13 11:04:23 +0200133static int tipc_sk_leave(struct tipc_sock *tsk);
Ying Xuee05b31f2015-01-09 15:27:08 +0800134static struct tipc_sock *tipc_sk_lookup(struct net *net, u32 portid);
Ying Xue07f6c4b2015-01-07 13:41:58 +0800135static int tipc_sk_insert(struct tipc_sock *tsk);
136static void tipc_sk_remove(struct tipc_sock *tsk);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500137static int __tipc_sendstream(struct socket *sock, struct msghdr *m, size_t dsz);
Ying Xue39a02952015-03-02 15:37:47 +0800138static int __tipc_sendmsg(struct socket *sock, struct msghdr *m, size_t dsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100139
Florian Westphalbca65ea2008-02-07 18:18:01 -0800140static const struct proto_ops packet_ops;
141static const struct proto_ops stream_ops;
142static const struct proto_ops msg_ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100143static struct proto tipc_proto;
Herbert Xu6cca72892015-03-20 21:57:05 +1100144static const struct rhashtable_params tsk_rht_params;
145
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500146static u32 tsk_own_node(struct tipc_sock *tsk)
147{
148 return msg_prevnode(&tsk->phdr);
149}
150
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400151static u32 tsk_peer_node(struct tipc_sock *tsk)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400152{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400153 return msg_destnode(&tsk->phdr);
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400154}
155
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400156static u32 tsk_peer_port(struct tipc_sock *tsk)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400157{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400158 return msg_destport(&tsk->phdr);
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400159}
160
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400161static bool tsk_unreliable(struct tipc_sock *tsk)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400162{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400163 return msg_src_droppable(&tsk->phdr) != 0;
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400164}
165
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400166static void tsk_set_unreliable(struct tipc_sock *tsk, bool unreliable)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400167{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400168 msg_set_src_droppable(&tsk->phdr, unreliable ? 1 : 0);
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400169}
170
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400171static bool tsk_unreturnable(struct tipc_sock *tsk)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400172{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400173 return msg_dest_droppable(&tsk->phdr) != 0;
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400174}
175
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400176static void tsk_set_unreturnable(struct tipc_sock *tsk, bool unreturnable)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400177{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400178 msg_set_dest_droppable(&tsk->phdr, unreturnable ? 1 : 0);
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400179}
180
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400181static int tsk_importance(struct tipc_sock *tsk)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400182{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400183 return msg_importance(&tsk->phdr);
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400184}
185
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400186static int tsk_set_importance(struct tipc_sock *tsk, int imp)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400187{
188 if (imp > TIPC_CRITICAL_IMPORTANCE)
189 return -EINVAL;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400190 msg_set_importance(&tsk->phdr, (u32)imp);
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400191 return 0;
192}
Jon Paul Maloy8826cde2014-03-12 11:31:09 -0400193
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400194static struct tipc_sock *tipc_sk(const struct sock *sk)
195{
196 return container_of(sk, struct tipc_sock, sk);
197}
198
Jon Paul Maloy10724cc2016-05-02 11:58:47 -0400199static bool tsk_conn_cong(struct tipc_sock *tsk)
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400200{
Jon Paul Maloy6998cc62016-11-24 18:47:07 -0500201 return tsk->snt_unacked > tsk->snd_win;
Jon Paul Maloy10724cc2016-05-02 11:58:47 -0400202}
203
Jon Maloyb7d42632017-10-13 11:04:26 +0200204static u16 tsk_blocks(int len)
205{
206 return ((len / FLOWCTL_BLK_SZ) + 1);
207}
208
Jon Paul Maloy10724cc2016-05-02 11:58:47 -0400209/* tsk_blocks(): translate a buffer size in bytes to number of
210 * advertisable blocks, taking into account the ratio truesize(len)/len
211 * We can trust that this ratio is always < 4 for len >= FLOWCTL_BLK_SZ
212 */
213static u16 tsk_adv_blocks(int len)
214{
215 return len / FLOWCTL_BLK_SZ / 4;
216}
217
218/* tsk_inc(): increment counter for sent or received data
219 * - If block based flow control is not supported by peer we
220 * fall back to message based ditto, incrementing the counter
221 */
222static u16 tsk_inc(struct tipc_sock *tsk, int msglen)
223{
224 if (likely(tsk->peer_caps & TIPC_BLOCK_FLOWCTL))
225 return ((msglen / FLOWCTL_BLK_SZ) + 1);
226 return 1;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400227}
228
Per Lidenb97bf3f2006-01-02 19:04:38 +0100229/**
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400230 * tsk_advance_rx_queue - discard first buffer in socket receive queue
Allan Stephens0c3141e2008-04-15 00:22:02 -0700231 *
232 * Caller must hold socket lock
Per Lidenb97bf3f2006-01-02 19:04:38 +0100233 */
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400234static void tsk_advance_rx_queue(struct sock *sk)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100235{
Allan Stephens5f6d9122011-11-04 13:24:29 -0400236 kfree_skb(__skb_dequeue(&sk->sk_receive_queue));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100237}
238
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -0400239/* tipc_sk_respond() : send response message back to sender
240 */
241static void tipc_sk_respond(struct sock *sk, struct sk_buff *skb, int err)
242{
243 u32 selector;
244 u32 dnode;
245 u32 onode = tipc_own_addr(sock_net(sk));
246
247 if (!tipc_msg_reverse(onode, &skb, err))
248 return;
249
250 dnode = msg_destnode(buf_msg(skb));
251 selector = msg_origport(buf_msg(skb));
252 tipc_node_xmit_skb(sock_net(sk), skb, dnode, selector);
253}
254
Per Lidenb97bf3f2006-01-02 19:04:38 +0100255/**
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400256 * tsk_rej_rx_queue - reject all buffers in socket receive queue
Allan Stephens0c3141e2008-04-15 00:22:02 -0700257 *
258 * Caller must hold socket lock
259 */
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400260static void tsk_rej_rx_queue(struct sock *sk)
Allan Stephens0c3141e2008-04-15 00:22:02 -0700261{
Ying Xuea6ca1092014-11-26 11:41:55 +0800262 struct sk_buff *skb;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700263
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -0400264 while ((skb = __skb_dequeue(&sk->sk_receive_queue)))
265 tipc_sk_respond(sk, skb, TIPC_ERR_NO_PORT);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700266}
267
Parthasarathy Bhuvaragand6fb7e92016-11-01 14:02:40 +0100268static bool tipc_sk_connected(struct sock *sk)
269{
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +0100270 return sk->sk_state == TIPC_ESTABLISHED;
Parthasarathy Bhuvaragand6fb7e92016-11-01 14:02:40 +0100271}
272
Parthasarathy Bhuvaraganc7520232016-11-01 14:02:42 +0100273/* tipc_sk_type_connectionless - check if the socket is datagram socket
274 * @sk: socket
275 *
276 * Returns true if connection less, false otherwise
277 */
278static bool tipc_sk_type_connectionless(struct sock *sk)
279{
280 return sk->sk_type == SOCK_RDM || sk->sk_type == SOCK_DGRAM;
281}
282
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400283/* tsk_peer_msg - verify if message was sent by connected port's peer
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400284 *
285 * Handles cases where the node's network address has changed from
286 * the default of <0.0.0> to its configured setting.
287 */
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400288static bool tsk_peer_msg(struct tipc_sock *tsk, struct tipc_msg *msg)
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400289{
Parthasarathy Bhuvaragand6fb7e92016-11-01 14:02:40 +0100290 struct sock *sk = &tsk->sk;
Jon Maloy23fd3ea2018-03-22 20:42:49 +0100291 u32 self = tipc_own_addr(sock_net(sk));
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400292 u32 peer_port = tsk_peer_port(tsk);
Jon Maloy23fd3ea2018-03-22 20:42:49 +0100293 u32 orig_node, peer_node;
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400294
Parthasarathy Bhuvaragand6fb7e92016-11-01 14:02:40 +0100295 if (unlikely(!tipc_sk_connected(sk)))
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400296 return false;
297
298 if (unlikely(msg_origport(msg) != peer_port))
299 return false;
300
301 orig_node = msg_orignode(msg);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400302 peer_node = tsk_peer_node(tsk);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400303
304 if (likely(orig_node == peer_node))
305 return true;
306
Jon Maloy23fd3ea2018-03-22 20:42:49 +0100307 if (!orig_node && peer_node == self)
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400308 return true;
309
Jon Maloy23fd3ea2018-03-22 20:42:49 +0100310 if (!peer_node && orig_node == self)
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400311 return true;
312
313 return false;
314}
315
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +0100316/* tipc_set_sk_state - set the sk_state of the socket
317 * @sk: socket
318 *
319 * Caller must hold socket lock
320 *
321 * Returns 0 on success, errno otherwise
322 */
323static int tipc_set_sk_state(struct sock *sk, int state)
324{
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +0100325 int oldsk_state = sk->sk_state;
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +0100326 int res = -EINVAL;
327
328 switch (state) {
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +0100329 case TIPC_OPEN:
330 res = 0;
331 break;
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +0100332 case TIPC_LISTEN:
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +0100333 case TIPC_CONNECTING:
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +0100334 if (oldsk_state == TIPC_OPEN)
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +0100335 res = 0;
336 break;
Parthasarathy Bhuvaragan8ea642e2016-11-01 14:02:44 +0100337 case TIPC_ESTABLISHED:
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +0100338 if (oldsk_state == TIPC_CONNECTING ||
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +0100339 oldsk_state == TIPC_OPEN)
Parthasarathy Bhuvaragan8ea642e2016-11-01 14:02:44 +0100340 res = 0;
341 break;
Parthasarathy Bhuvaragan9fd4b072016-11-01 14:02:46 +0100342 case TIPC_DISCONNECTING:
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +0100343 if (oldsk_state == TIPC_CONNECTING ||
Parthasarathy Bhuvaragan9fd4b072016-11-01 14:02:46 +0100344 oldsk_state == TIPC_ESTABLISHED)
345 res = 0;
346 break;
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +0100347 }
348
349 if (!res)
350 sk->sk_state = state;
351
352 return res;
353}
354
Jon Paul Maloy8c44e1a2017-01-03 10:55:09 -0500355static int tipc_sk_sock_err(struct socket *sock, long *timeout)
356{
357 struct sock *sk = sock->sk;
358 int err = sock_error(sk);
359 int typ = sock->type;
360
361 if (err)
362 return err;
363 if (typ == SOCK_STREAM || typ == SOCK_SEQPACKET) {
364 if (sk->sk_state == TIPC_DISCONNECTING)
365 return -EPIPE;
366 else if (!tipc_sk_connected(sk))
367 return -ENOTCONN;
368 }
369 if (!*timeout)
370 return -EAGAIN;
371 if (signal_pending(current))
372 return sock_intr_errno(*timeout);
373
374 return 0;
375}
376
Jon Paul Maloy844cf762017-05-11 20:28:15 +0200377#define tipc_wait_for_cond(sock_, timeo_, condition_) \
378({ \
379 struct sock *sk_; \
380 int rc_; \
381 \
382 while ((rc_ = !(condition_))) { \
383 DEFINE_WAIT_FUNC(wait_, woken_wake_function); \
384 sk_ = (sock_)->sk; \
385 rc_ = tipc_sk_sock_err((sock_), timeo_); \
386 if (rc_) \
387 break; \
388 prepare_to_wait(sk_sleep(sk_), &wait_, TASK_INTERRUPTIBLE); \
389 release_sock(sk_); \
390 *(timeo_) = wait_woken(&wait_, TASK_INTERRUPTIBLE, *(timeo_)); \
391 sched_annotate_sleep(); \
392 lock_sock(sk_); \
393 remove_wait_queue(sk_sleep(sk_), &wait_); \
394 } \
395 rc_; \
Jon Paul Maloy8c44e1a2017-01-03 10:55:09 -0500396})
397
Allan Stephens0c3141e2008-04-15 00:22:02 -0700398/**
Ying Xuec5fa7b32013-06-17 10:54:39 -0400399 * tipc_sk_create - create a TIPC socket
Allan Stephens0c3141e2008-04-15 00:22:02 -0700400 * @net: network namespace (must be default network)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100401 * @sock: pre-allocated socket structure
402 * @protocol: protocol indicator (must be 0)
Eric Paris3f378b62009-11-05 22:18:14 -0800403 * @kern: caused by kernel or by userspace?
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900404 *
Allan Stephens0c3141e2008-04-15 00:22:02 -0700405 * This routine creates additional data structures used by the TIPC socket,
406 * initializes them, and links them together.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100407 *
408 * Returns 0 on success, errno otherwise
409 */
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400410static int tipc_sk_create(struct net *net, struct socket *sock,
411 int protocol, int kern)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100412{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700413 const struct proto_ops *ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100414 struct sock *sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400415 struct tipc_sock *tsk;
Jon Paul Maloy5b8fa7c2014-08-22 18:09:13 -0400416 struct tipc_msg *msg;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700417
418 /* Validate arguments */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100419 if (unlikely(protocol != 0))
420 return -EPROTONOSUPPORT;
421
Per Lidenb97bf3f2006-01-02 19:04:38 +0100422 switch (sock->type) {
423 case SOCK_STREAM:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700424 ops = &stream_ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100425 break;
426 case SOCK_SEQPACKET:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700427 ops = &packet_ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100428 break;
429 case SOCK_DGRAM:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100430 case SOCK_RDM:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700431 ops = &msg_ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100432 break;
Allan Stephens49978652006-06-25 23:47:18 -0700433 default:
Allan Stephens49978652006-06-25 23:47:18 -0700434 return -EPROTOTYPE;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100435 }
436
Allan Stephens0c3141e2008-04-15 00:22:02 -0700437 /* Allocate socket's protocol area */
Eric W. Biederman11aa9c22015-05-08 21:09:13 -0500438 sk = sk_alloc(net, AF_TIPC, GFP_KERNEL, &tipc_proto, kern);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700439 if (sk == NULL)
440 return -ENOMEM;
441
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400442 tsk = tipc_sk(sk);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400443 tsk->max_pkt = MAX_PKT_DEFAULT;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400444 INIT_LIST_HEAD(&tsk->publications);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500445 INIT_LIST_HEAD(&tsk->cong_links);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400446 msg = &tsk->phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100447
Allan Stephens0c3141e2008-04-15 00:22:02 -0700448 /* Finish initializing socket data structures */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700449 sock->ops = ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100450 sock_init_data(sock, sk);
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +0100451 tipc_set_sk_state(sk, TIPC_OPEN);
Ying Xue07f6c4b2015-01-07 13:41:58 +0800452 if (tipc_sk_insert(tsk)) {
Masanari Iidac19ca6c2016-02-08 20:53:12 +0900453 pr_warn("Socket create failed; port number exhausted\n");
Ying Xue07f6c4b2015-01-07 13:41:58 +0800454 return -EINVAL;
455 }
Herbert Xu40f9f432017-02-11 19:26:46 +0800456
457 /* Ensure tsk is visible before we read own_addr. */
458 smp_mb();
459
Jon Maloy23fd3ea2018-03-22 20:42:49 +0100460 tipc_msg_init(tipc_own_addr(net), msg, TIPC_LOW_IMPORTANCE,
461 TIPC_NAMED_MSG, NAMED_H_SIZE, 0);
Herbert Xu40f9f432017-02-11 19:26:46 +0800462
Ying Xue07f6c4b2015-01-07 13:41:58 +0800463 msg_set_origport(msg, tsk->portid);
Kees Cook31b102b2017-10-30 14:06:45 -0700464 timer_setup(&sk->sk_timer, tipc_sk_timeout, 0);
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100465 sk->sk_shutdown = 0;
Jon Maloy64ac5f52017-10-13 11:04:20 +0200466 sk->sk_backlog_rcv = tipc_sk_backlog_rcv;
Ying Xuecc79dd12013-06-17 10:54:37 -0400467 sk->sk_rcvbuf = sysctl_tipc_rmem[1];
Ying Xuef288bef2012-08-21 11:16:57 +0800468 sk->sk_data_ready = tipc_data_ready;
469 sk->sk_write_space = tipc_write_space;
Ying Xuef4195d12015-11-22 15:46:05 +0800470 sk->sk_destruct = tipc_sock_destruct;
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -0400471 tsk->conn_timeout = CONN_TIMEOUT_DEFAULT;
Jon Maloy1b22bca2018-02-26 20:14:04 +0100472 tsk->group_is_open = true;
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -0400473 atomic_set(&tsk->dupl_rcvcnt, 0);
Allan Stephens7ef43eb2008-05-12 15:42:28 -0700474
Jon Paul Maloy10724cc2016-05-02 11:58:47 -0400475 /* Start out with safe limits until we receive an advertised window */
476 tsk->snd_win = tsk_adv_blocks(RCVBUF_MIN);
477 tsk->rcv_win = tsk->snd_win;
478
Parthasarathy Bhuvaraganc7520232016-11-01 14:02:42 +0100479 if (tipc_sk_type_connectionless(sk)) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400480 tsk_set_unreturnable(tsk, true);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700481 if (sock->type == SOCK_DGRAM)
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400482 tsk_set_unreliable(tsk, true);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700483 }
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +0100484
Per Lidenb97bf3f2006-01-02 19:04:38 +0100485 return 0;
486}
487
Ying Xue07f6c4b2015-01-07 13:41:58 +0800488static void tipc_sk_callback(struct rcu_head *head)
489{
490 struct tipc_sock *tsk = container_of(head, struct tipc_sock, rcu);
491
492 sock_put(&tsk->sk);
493}
494
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100495/* Caller should hold socket lock for the socket. */
496static void __tipc_shutdown(struct socket *sock, int error)
497{
498 struct sock *sk = sock->sk;
499 struct tipc_sock *tsk = tipc_sk(sk);
500 struct net *net = sock_net(sk);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500501 long timeout = CONN_TIMEOUT_DEFAULT;
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100502 u32 dnode = tsk_peer_node(tsk);
503 struct sk_buff *skb;
504
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500505 /* Avoid that hi-prio shutdown msgs bypass msgs in link wakeup queue */
506 tipc_wait_for_cond(sock, &timeout, (!tsk->cong_link_cnt &&
507 !tsk_conn_cong(tsk)));
508
Tung Nguyen67879272018-09-28 20:23:22 +0200509 /* Remove any pending SYN message */
510 __skb_queue_purge(&sk->sk_write_queue);
511
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100512 /* Reject all unreceived messages, except on an active connection
513 * (which disconnects locally & sends a 'FIN+' to peer).
514 */
515 while ((skb = __skb_dequeue(&sk->sk_receive_queue)) != NULL) {
516 if (TIPC_SKB_CB(skb)->bytes_read) {
517 kfree_skb(skb);
Jon Paul Maloy693c5642016-12-22 07:22:29 -0500518 continue;
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100519 }
Jon Paul Maloy693c5642016-12-22 07:22:29 -0500520 if (!tipc_sk_type_connectionless(sk) &&
521 sk->sk_state != TIPC_DISCONNECTING) {
522 tipc_set_sk_state(sk, TIPC_DISCONNECTING);
523 tipc_node_remove_conn(net, dnode, tsk->portid);
524 }
525 tipc_sk_respond(sk, skb, error);
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100526 }
Jon Paul Maloy693c5642016-12-22 07:22:29 -0500527
528 if (tipc_sk_type_connectionless(sk))
529 return;
530
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100531 if (sk->sk_state != TIPC_DISCONNECTING) {
532 skb = tipc_msg_create(TIPC_CRITICAL_IMPORTANCE,
533 TIPC_CONN_MSG, SHORT_H_SIZE, 0, dnode,
534 tsk_own_node(tsk), tsk_peer_port(tsk),
535 tsk->portid, error);
536 if (skb)
537 tipc_node_xmit_skb(net, skb, dnode, tsk->portid);
Jon Paul Maloy693c5642016-12-22 07:22:29 -0500538 tipc_node_remove_conn(net, dnode, tsk->portid);
539 tipc_set_sk_state(sk, TIPC_DISCONNECTING);
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100540 }
541}
542
Ying Xuec5fa7b32013-06-17 10:54:39 -0400543/**
Ying Xue247f0f32014-02-18 16:06:46 +0800544 * tipc_release - destroy a TIPC socket
Per Lidenb97bf3f2006-01-02 19:04:38 +0100545 * @sock: socket to destroy
546 *
547 * This routine cleans up any messages that are still queued on the socket.
548 * For DGRAM and RDM socket types, all queued messages are rejected.
549 * For SEQPACKET and STREAM socket types, the first message is rejected
550 * and any others are discarded. (If the first message on a STREAM socket
551 * is partially-read, it is discarded and the next one is rejected instead.)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900552 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100553 * NOTE: Rejected messages are not necessarily returned to the sender! They
554 * are returned or discarded according to the "destination droppable" setting
555 * specified for the message by the sender.
556 *
557 * Returns 0 on success, errno otherwise
558 */
Ying Xue247f0f32014-02-18 16:06:46 +0800559static int tipc_release(struct socket *sock)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100560{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100561 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400562 struct tipc_sock *tsk;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100563
Allan Stephens0c3141e2008-04-15 00:22:02 -0700564 /*
565 * Exit if socket isn't fully initialized (occurs when a failed accept()
566 * releases a pre-allocated child socket that was never used)
567 */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700568 if (sk == NULL)
569 return 0;
570
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400571 tsk = tipc_sk(sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700572 lock_sock(sk);
573
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100574 __tipc_shutdown(sock, TIPC_ERR_NO_PORT);
575 sk->sk_shutdown = SHUTDOWN_MASK;
Jon Maloy75da2162017-10-13 11:04:23 +0200576 tipc_sk_leave(tsk);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400577 tipc_sk_withdraw(tsk, 0, NULL);
Ying Xue1ea23a22015-05-28 13:19:22 +0800578 sk_stop_timer(sk, &sk->sk_timer);
Ying Xue07f6c4b2015-01-07 13:41:58 +0800579 tipc_sk_remove(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100580
Cong Wang0a3b8b22018-09-03 19:12:41 -0700581 sock_orphan(sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700582 /* Reject any messages that accumulated in backlog queue */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700583 release_sock(sk);
Jon Maloya80ae532017-10-13 11:04:22 +0200584 tipc_dest_list_purge(&tsk->cong_links);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500585 tsk->cong_link_cnt = 0;
Ying Xue07f6c4b2015-01-07 13:41:58 +0800586 call_rcu(&tsk->rcu, tipc_sk_callback);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700587 sock->sk = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100588
Geert Uytterhoeven065d7e32014-04-06 15:56:14 +0200589 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100590}
591
592/**
Ying Xue247f0f32014-02-18 16:06:46 +0800593 * tipc_bind - associate or disassocate TIPC name(s) with a socket
Per Lidenb97bf3f2006-01-02 19:04:38 +0100594 * @sock: socket structure
595 * @uaddr: socket address describing name(s) and desired operation
596 * @uaddr_len: size of socket address data structure
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900597 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100598 * Name and name sequence binding is indicated using a positive scope value;
599 * a negative scope value unbinds the specified name. Specifying no name
600 * (i.e. a socket address length of 0) unbinds all names from the socket.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900601 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100602 * Returns 0 on success, errno otherwise
Allan Stephens0c3141e2008-04-15 00:22:02 -0700603 *
604 * NOTE: This routine doesn't need to take the socket lock since it doesn't
605 * access any non-constant socket information.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100606 */
Ying Xue247f0f32014-02-18 16:06:46 +0800607static int tipc_bind(struct socket *sock, struct sockaddr *uaddr,
608 int uaddr_len)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100609{
Ying Xue84602762013-12-27 10:18:28 +0800610 struct sock *sk = sock->sk;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100611 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400612 struct tipc_sock *tsk = tipc_sk(sk);
Ying Xue84602762013-12-27 10:18:28 +0800613 int res = -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100614
Ying Xue84602762013-12-27 10:18:28 +0800615 lock_sock(sk);
616 if (unlikely(!uaddr_len)) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400617 res = tipc_sk_withdraw(tsk, 0, NULL);
Ying Xue84602762013-12-27 10:18:28 +0800618 goto exit;
619 }
Jon Maloy75da2162017-10-13 11:04:23 +0200620 if (tsk->group) {
621 res = -EACCES;
622 goto exit;
623 }
Ying Xue84602762013-12-27 10:18:28 +0800624 if (uaddr_len < sizeof(struct sockaddr_tipc)) {
625 res = -EINVAL;
626 goto exit;
627 }
628 if (addr->family != AF_TIPC) {
629 res = -EAFNOSUPPORT;
630 goto exit;
631 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100632
Per Lidenb97bf3f2006-01-02 19:04:38 +0100633 if (addr->addrtype == TIPC_ADDR_NAME)
634 addr->addr.nameseq.upper = addr->addr.nameseq.lower;
Ying Xue84602762013-12-27 10:18:28 +0800635 else if (addr->addrtype != TIPC_ADDR_NAMESEQ) {
636 res = -EAFNOSUPPORT;
637 goto exit;
638 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900639
Ying Xue13a2e892013-06-17 10:54:40 -0400640 if ((addr->addr.nameseq.type < TIPC_RESERVED_TYPES) &&
Ying Xue7d0ab172013-06-17 10:54:41 -0400641 (addr->addr.nameseq.type != TIPC_TOP_SRV) &&
Ying Xue84602762013-12-27 10:18:28 +0800642 (addr->addr.nameseq.type != TIPC_CFG_SRV)) {
643 res = -EACCES;
644 goto exit;
645 }
Allan Stephensc422f1b2011-11-02 15:49:40 -0400646
Jon Maloy928df182018-03-15 16:48:51 +0100647 res = (addr->scope >= 0) ?
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400648 tipc_sk_publish(tsk, addr->scope, &addr->addr.nameseq) :
649 tipc_sk_withdraw(tsk, -addr->scope, &addr->addr.nameseq);
Ying Xue84602762013-12-27 10:18:28 +0800650exit:
651 release_sock(sk);
652 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100653}
654
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900655/**
Ying Xue247f0f32014-02-18 16:06:46 +0800656 * tipc_getname - get port ID of socket or peer socket
Per Lidenb97bf3f2006-01-02 19:04:38 +0100657 * @sock: socket structure
658 * @uaddr: area for returned socket address
659 * @uaddr_len: area for returned length of socket address
Allan Stephens2da59912008-07-14 22:43:32 -0700660 * @peer: 0 = own ID, 1 = current peer ID, 2 = current/former peer ID
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900661 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100662 * Returns 0 on success, errno otherwise
Allan Stephens0c3141e2008-04-15 00:22:02 -0700663 *
Allan Stephens2da59912008-07-14 22:43:32 -0700664 * NOTE: This routine doesn't need to take the socket lock since it only
665 * accesses socket information that is unchanging (or which changes in
Allan Stephens0e659672010-12-31 18:59:32 +0000666 * a completely predictable manner).
Per Lidenb97bf3f2006-01-02 19:04:38 +0100667 */
Ying Xue247f0f32014-02-18 16:06:46 +0800668static int tipc_getname(struct socket *sock, struct sockaddr *uaddr,
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +0100669 int peer)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100670{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100671 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
Parthasarathy Bhuvaragan9fd4b072016-11-01 14:02:46 +0100672 struct sock *sk = sock->sk;
673 struct tipc_sock *tsk = tipc_sk(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100674
Kulikov Vasiliy88f8a5e2010-10-31 07:10:32 +0000675 memset(addr, 0, sizeof(*addr));
Allan Stephens0c3141e2008-04-15 00:22:02 -0700676 if (peer) {
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +0100677 if ((!tipc_sk_connected(sk)) &&
Parthasarathy Bhuvaragan9fd4b072016-11-01 14:02:46 +0100678 ((peer != 2) || (sk->sk_state != TIPC_DISCONNECTING)))
Allan Stephens2da59912008-07-14 22:43:32 -0700679 return -ENOTCONN;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400680 addr->addr.id.ref = tsk_peer_port(tsk);
681 addr->addr.id.node = tsk_peer_node(tsk);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700682 } else {
Ying Xue07f6c4b2015-01-07 13:41:58 +0800683 addr->addr.id.ref = tsk->portid;
Jon Maloy23fd3ea2018-03-22 20:42:49 +0100684 addr->addr.id.node = tipc_own_addr(sock_net(sk));
Allan Stephens0c3141e2008-04-15 00:22:02 -0700685 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100686
Per Lidenb97bf3f2006-01-02 19:04:38 +0100687 addr->addrtype = TIPC_ADDR_ID;
688 addr->family = AF_TIPC;
689 addr->scope = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100690 addr->addr.name.domain = 0;
691
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +0100692 return sizeof(*addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100693}
694
695/**
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700696 * tipc_poll - read and possibly block on pollmask
Per Lidenb97bf3f2006-01-02 19:04:38 +0100697 * @file: file structure associated with the socket
698 * @sock: socket for which to calculate the poll bits
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700699 * @wait: ???
Per Lidenb97bf3f2006-01-02 19:04:38 +0100700 *
Allan Stephens9b674e82008-03-26 16:48:21 -0700701 * Returns pollmask value
702 *
703 * COMMENTARY:
704 * It appears that the usual socket locking mechanisms are not useful here
705 * since the pollmask info is potentially out-of-date the moment this routine
706 * exits. TCP and other protocols seem to rely on higher level poll routines
707 * to handle any preventable race conditions, so TIPC will do the same ...
708 *
Allan Stephensf662c072010-08-17 11:00:06 +0000709 * IMPORTANT: The fact that a read or write operation is indicated does NOT
710 * imply that the operation will succeed, merely that it should be performed
711 * and will not block.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100712 */
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700713static __poll_t tipc_poll(struct file *file, struct socket *sock,
714 poll_table *wait)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100715{
Allan Stephens9b674e82008-03-26 16:48:21 -0700716 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400717 struct tipc_sock *tsk = tipc_sk(sk);
Al Viroade994f2017-07-03 00:01:49 -0400718 __poll_t revents = 0;
Allan Stephens9b674e82008-03-26 16:48:21 -0700719
Karsten Graul89ab0662018-10-23 13:40:39 +0200720 sock_poll_wait(file, sock, wait);
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700721
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100722 if (sk->sk_shutdown & RCV_SHUTDOWN)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800723 revents |= EPOLLRDHUP | EPOLLIN | EPOLLRDNORM;
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100724 if (sk->sk_shutdown == SHUTDOWN_MASK)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800725 revents |= EPOLLHUP;
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100726
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +0100727 switch (sk->sk_state) {
728 case TIPC_ESTABLISHED:
Parthasarathy Bhuvaragan517d7c72017-12-28 12:03:06 +0100729 case TIPC_CONNECTING:
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500730 if (!tsk->cong_link_cnt && !tsk_conn_cong(tsk))
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800731 revents |= EPOLLOUT;
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +0100732 /* fall thru' */
733 case TIPC_LISTEN:
Jon Maloycb4dc412017-10-19 16:42:04 +0200734 if (!skb_queue_empty(&sk->sk_receive_queue))
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800735 revents |= EPOLLIN | EPOLLRDNORM;
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +0100736 break;
737 case TIPC_OPEN:
Jon Maloy60c25302018-01-17 16:42:46 +0100738 if (tsk->group_is_open && !tsk->cong_link_cnt)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800739 revents |= EPOLLOUT;
Jon Maloyae236fb2017-10-13 11:04:25 +0200740 if (!tipc_sk_type_connectionless(sk))
741 break;
Jon Maloycb4dc412017-10-19 16:42:04 +0200742 if (skb_queue_empty(&sk->sk_receive_queue))
Jon Maloyae236fb2017-10-13 11:04:25 +0200743 break;
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800744 revents |= EPOLLIN | EPOLLRDNORM;
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +0100745 break;
746 case TIPC_DISCONNECTING:
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800747 revents = EPOLLIN | EPOLLRDNORM | EPOLLHUP;
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +0100748 break;
Allan Stephensf662c072010-08-17 11:00:06 +0000749 }
Jon Maloyae236fb2017-10-13 11:04:25 +0200750 return revents;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100751}
752
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400753/**
754 * tipc_sendmcast - send multicast message
755 * @sock: socket structure
756 * @seq: destination address
Al Viro562640f2014-11-15 01:13:43 -0500757 * @msg: message to send
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500758 * @dlen: length of data to send
759 * @timeout: timeout to wait for wakeup
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400760 *
761 * Called from function tipc_sendmsg(), which has done all sanity checks
762 * Returns the number of bytes sent on success, or errno
763 */
764static int tipc_sendmcast(struct socket *sock, struct tipc_name_seq *seq,
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500765 struct msghdr *msg, size_t dlen, long timeout)
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400766{
767 struct sock *sk = sock->sk;
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500768 struct tipc_sock *tsk = tipc_sk(sk);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500769 struct tipc_msg *hdr = &tsk->phdr;
Ying Xuef2f98002015-01-09 15:27:05 +0800770 struct net *net = sock_net(sk);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500771 int mtu = tipc_bcast_get_mtu(net);
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -0500772 struct tipc_mc_method *method = &tsk->mc_method;
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500773 struct sk_buff_head pkts;
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500774 struct tipc_nlist dsts;
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400775 int rc;
776
Jon Maloy75da2162017-10-13 11:04:23 +0200777 if (tsk->group)
778 return -EACCES;
779
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500780 /* Block or return if any destination link is congested */
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500781 rc = tipc_wait_for_cond(sock, &timeout, !tsk->cong_link_cnt);
782 if (unlikely(rc))
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400783 return rc;
784
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500785 /* Lookup destination nodes */
786 tipc_nlist_init(&dsts, tipc_own_addr(net));
787 tipc_nametbl_lookup_dst_nodes(net, seq->type, seq->lower,
Jon Maloye9a03442018-01-12 20:56:50 +0100788 seq->upper, &dsts);
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500789 if (!dsts.local && !dsts.remote)
790 return -EHOSTUNREACH;
791
792 /* Build message header */
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500793 msg_set_type(hdr, TIPC_MCAST_MSG);
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500794 msg_set_hdr_sz(hdr, MCAST_H_SIZE);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500795 msg_set_lookup_scope(hdr, TIPC_CLUSTER_SCOPE);
796 msg_set_destport(hdr, 0);
797 msg_set_destnode(hdr, 0);
798 msg_set_nametype(hdr, seq->type);
799 msg_set_namelower(hdr, seq->lower);
800 msg_set_nameupper(hdr, seq->upper);
Jon Paul Maloy22d85c72015-07-16 16:54:23 -0400801
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500802 /* Build message as chain of buffers */
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500803 skb_queue_head_init(&pkts);
804 rc = tipc_msg_build(hdr, msg, 0, dlen, mtu, &pkts);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500805
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500806 /* Send message if build was successful */
807 if (unlikely(rc == dlen))
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -0500808 rc = tipc_mcast_xmit(net, &pkts, method, &dsts,
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500809 &tsk->cong_link_cnt);
810
811 tipc_nlist_purge(&dsts);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500812
813 return rc ? rc : dlen;
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400814}
815
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500816/**
Jon Maloy27bd9ec2017-10-13 11:04:27 +0200817 * tipc_send_group_msg - send a message to a member in the group
818 * @net: network namespace
819 * @m: message to send
820 * @mb: group member
821 * @dnode: destination node
822 * @dport: destination port
823 * @dlen: total length of message data
824 */
825static int tipc_send_group_msg(struct net *net, struct tipc_sock *tsk,
826 struct msghdr *m, struct tipc_member *mb,
827 u32 dnode, u32 dport, int dlen)
828{
Jon Maloyb87a5ea2017-10-13 11:04:30 +0200829 u16 bc_snd_nxt = tipc_group_bc_snd_nxt(tsk->group);
Jon Maloy2f487712017-10-13 11:04:31 +0200830 struct tipc_mc_method *method = &tsk->mc_method;
Jon Maloy27bd9ec2017-10-13 11:04:27 +0200831 int blks = tsk_blocks(GROUP_H_SIZE + dlen);
832 struct tipc_msg *hdr = &tsk->phdr;
833 struct sk_buff_head pkts;
834 int mtu, rc;
835
836 /* Complete message header */
837 msg_set_type(hdr, TIPC_GRP_UCAST_MSG);
838 msg_set_hdr_sz(hdr, GROUP_H_SIZE);
839 msg_set_destport(hdr, dport);
840 msg_set_destnode(hdr, dnode);
Jon Maloyb87a5ea2017-10-13 11:04:30 +0200841 msg_set_grp_bc_seqno(hdr, bc_snd_nxt);
Jon Maloy27bd9ec2017-10-13 11:04:27 +0200842
843 /* Build message as chain of buffers */
844 skb_queue_head_init(&pkts);
845 mtu = tipc_node_get_mtu(net, dnode, tsk->portid);
846 rc = tipc_msg_build(hdr, m, 0, dlen, mtu, &pkts);
847 if (unlikely(rc != dlen))
848 return rc;
849
850 /* Send message */
851 rc = tipc_node_xmit(net, &pkts, dnode, tsk->portid);
852 if (unlikely(rc == -ELINKCONG)) {
853 tipc_dest_push(&tsk->cong_links, dnode, 0);
854 tsk->cong_link_cnt++;
855 }
856
Jon Maloy2f487712017-10-13 11:04:31 +0200857 /* Update send window */
Jon Maloy27bd9ec2017-10-13 11:04:27 +0200858 tipc_group_update_member(mb, blks);
859
Jon Maloy2f487712017-10-13 11:04:31 +0200860 /* A broadcast sent within next EXPIRE period must follow same path */
861 method->rcast = true;
862 method->mandatory = true;
Jon Maloy27bd9ec2017-10-13 11:04:27 +0200863 return dlen;
864}
865
866/**
867 * tipc_send_group_unicast - send message to a member in the group
868 * @sock: socket structure
869 * @m: message to send
870 * @dlen: total length of message data
871 * @timeout: timeout to wait for wakeup
872 *
873 * Called from function tipc_sendmsg(), which has done all sanity checks
874 * Returns the number of bytes sent on success, or errno
875 */
876static int tipc_send_group_unicast(struct socket *sock, struct msghdr *m,
877 int dlen, long timeout)
878{
879 struct sock *sk = sock->sk;
880 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
881 int blks = tsk_blocks(GROUP_H_SIZE + dlen);
882 struct tipc_sock *tsk = tipc_sk(sk);
Jon Maloy27bd9ec2017-10-13 11:04:27 +0200883 struct net *net = sock_net(sk);
884 struct tipc_member *mb = NULL;
885 u32 node, port;
886 int rc;
887
888 node = dest->addr.id.node;
889 port = dest->addr.id.ref;
890 if (!port && !node)
891 return -EHOSTUNREACH;
892
893 /* Block or return if destination link or member is congested */
894 rc = tipc_wait_for_cond(sock, &timeout,
895 !tipc_dest_find(&tsk->cong_links, node, 0) &&
Cong Wang143ece62018-12-11 21:43:51 -0800896 tsk->group &&
897 !tipc_group_cong(tsk->group, node, port, blks,
898 &mb));
Jon Maloy27bd9ec2017-10-13 11:04:27 +0200899 if (unlikely(rc))
900 return rc;
901
902 if (unlikely(!mb))
903 return -EHOSTUNREACH;
904
905 rc = tipc_send_group_msg(net, tsk, m, mb, node, port, dlen);
906
907 return rc ? rc : dlen;
908}
909
910/**
Jon Maloyee106d72017-10-13 11:04:28 +0200911 * tipc_send_group_anycast - send message to any member with given identity
912 * @sock: socket structure
913 * @m: message to send
914 * @dlen: total length of message data
915 * @timeout: timeout to wait for wakeup
916 *
917 * Called from function tipc_sendmsg(), which has done all sanity checks
918 * Returns the number of bytes sent on success, or errno
919 */
920static int tipc_send_group_anycast(struct socket *sock, struct msghdr *m,
921 int dlen, long timeout)
922{
923 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
924 struct sock *sk = sock->sk;
925 struct tipc_sock *tsk = tipc_sk(sk);
926 struct list_head *cong_links = &tsk->cong_links;
927 int blks = tsk_blocks(GROUP_H_SIZE + dlen);
Jon Maloy232d07b2018-01-08 21:03:30 +0100928 struct tipc_msg *hdr = &tsk->phdr;
Jon Maloyee106d72017-10-13 11:04:28 +0200929 struct tipc_member *first = NULL;
930 struct tipc_member *mbr = NULL;
931 struct net *net = sock_net(sk);
932 u32 node, port, exclude;
Jon Maloyee106d72017-10-13 11:04:28 +0200933 struct list_head dsts;
Jon Maloy232d07b2018-01-08 21:03:30 +0100934 u32 type, inst, scope;
Jon Maloyee106d72017-10-13 11:04:28 +0200935 int lookups = 0;
936 int dstcnt, rc;
937 bool cong;
938
939 INIT_LIST_HEAD(&dsts);
940
Jon Maloy232d07b2018-01-08 21:03:30 +0100941 type = msg_nametype(hdr);
Jon Maloyee106d72017-10-13 11:04:28 +0200942 inst = dest->addr.name.name.instance;
Jon Maloy232d07b2018-01-08 21:03:30 +0100943 scope = msg_lookup_scope(hdr);
Jon Maloyee106d72017-10-13 11:04:28 +0200944
945 while (++lookups < 4) {
Cong Wang143ece62018-12-11 21:43:51 -0800946 exclude = tipc_group_exclude(tsk->group);
947
Jon Maloyee106d72017-10-13 11:04:28 +0200948 first = NULL;
949
950 /* Look for a non-congested destination member, if any */
951 while (1) {
Jon Maloy232d07b2018-01-08 21:03:30 +0100952 if (!tipc_nametbl_lookup(net, type, inst, scope, &dsts,
Jon Maloyee106d72017-10-13 11:04:28 +0200953 &dstcnt, exclude, false))
954 return -EHOSTUNREACH;
955 tipc_dest_pop(&dsts, &node, &port);
Cong Wang143ece62018-12-11 21:43:51 -0800956 cong = tipc_group_cong(tsk->group, node, port, blks,
957 &mbr);
Jon Maloyee106d72017-10-13 11:04:28 +0200958 if (!cong)
959 break;
960 if (mbr == first)
961 break;
962 if (!first)
963 first = mbr;
964 }
965
966 /* Start over if destination was not in member list */
967 if (unlikely(!mbr))
968 continue;
969
970 if (likely(!cong && !tipc_dest_find(cong_links, node, 0)))
971 break;
972
973 /* Block or return if destination link or member is congested */
974 rc = tipc_wait_for_cond(sock, &timeout,
975 !tipc_dest_find(cong_links, node, 0) &&
Cong Wang143ece62018-12-11 21:43:51 -0800976 tsk->group &&
977 !tipc_group_cong(tsk->group, node, port,
Jon Maloyee106d72017-10-13 11:04:28 +0200978 blks, &mbr));
979 if (unlikely(rc))
980 return rc;
981
982 /* Send, unless destination disappeared while waiting */
983 if (likely(mbr))
984 break;
985 }
986
987 if (unlikely(lookups >= 4))
988 return -EHOSTUNREACH;
989
990 rc = tipc_send_group_msg(net, tsk, m, mbr, node, port, dlen);
991
992 return rc ? rc : dlen;
993}
994
995/**
Jon Maloy75da2162017-10-13 11:04:23 +0200996 * tipc_send_group_bcast - send message to all members in communication group
997 * @sk: socket structure
998 * @m: message to send
999 * @dlen: total length of message data
1000 * @timeout: timeout to wait for wakeup
1001 *
1002 * Called from function tipc_sendmsg(), which has done all sanity checks
1003 * Returns the number of bytes sent on success, or errno
1004 */
1005static int tipc_send_group_bcast(struct socket *sock, struct msghdr *m,
1006 int dlen, long timeout)
1007{
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001008 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
Jon Maloy75da2162017-10-13 11:04:23 +02001009 struct sock *sk = sock->sk;
1010 struct net *net = sock_net(sk);
1011 struct tipc_sock *tsk = tipc_sk(sk);
Cong Wang143ece62018-12-11 21:43:51 -08001012 struct tipc_nlist *dsts = tipc_group_dests(tsk->group);
Jon Maloy75da2162017-10-13 11:04:23 +02001013 struct tipc_mc_method *method = &tsk->mc_method;
Jon Maloy2f487712017-10-13 11:04:31 +02001014 bool ack = method->mandatory && method->rcast;
Jon Maloyb7d42632017-10-13 11:04:26 +02001015 int blks = tsk_blocks(MCAST_H_SIZE + dlen);
Jon Maloy75da2162017-10-13 11:04:23 +02001016 struct tipc_msg *hdr = &tsk->phdr;
1017 int mtu = tipc_bcast_get_mtu(net);
1018 struct sk_buff_head pkts;
1019 int rc = -EHOSTUNREACH;
1020
1021 if (!dsts->local && !dsts->remote)
1022 return -EHOSTUNREACH;
1023
Jon Maloyb7d42632017-10-13 11:04:26 +02001024 /* Block or return if any destination link or member is congested */
Cong Wang143ece62018-12-11 21:43:51 -08001025 rc = tipc_wait_for_cond(sock, &timeout,
1026 !tsk->cong_link_cnt && tsk->group &&
1027 !tipc_group_bc_cong(tsk->group, blks));
Jon Maloy75da2162017-10-13 11:04:23 +02001028 if (unlikely(rc))
1029 return rc;
1030
1031 /* Complete message header */
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001032 if (dest) {
1033 msg_set_type(hdr, TIPC_GRP_MCAST_MSG);
1034 msg_set_nameinst(hdr, dest->addr.name.name.instance);
1035 } else {
1036 msg_set_type(hdr, TIPC_GRP_BCAST_MSG);
1037 msg_set_nameinst(hdr, 0);
1038 }
Jon Maloyb7d42632017-10-13 11:04:26 +02001039 msg_set_hdr_sz(hdr, GROUP_H_SIZE);
Jon Maloy75da2162017-10-13 11:04:23 +02001040 msg_set_destport(hdr, 0);
1041 msg_set_destnode(hdr, 0);
Cong Wang143ece62018-12-11 21:43:51 -08001042 msg_set_grp_bc_seqno(hdr, tipc_group_bc_snd_nxt(tsk->group));
Jon Maloy75da2162017-10-13 11:04:23 +02001043
Jon Maloy2f487712017-10-13 11:04:31 +02001044 /* Avoid getting stuck with repeated forced replicasts */
1045 msg_set_grp_bc_ack_req(hdr, ack);
1046
Jon Maloy75da2162017-10-13 11:04:23 +02001047 /* Build message as chain of buffers */
1048 skb_queue_head_init(&pkts);
1049 rc = tipc_msg_build(hdr, m, 0, dlen, mtu, &pkts);
1050 if (unlikely(rc != dlen))
1051 return rc;
1052
1053 /* Send message */
Jon Maloy2f487712017-10-13 11:04:31 +02001054 rc = tipc_mcast_xmit(net, &pkts, method, dsts, &tsk->cong_link_cnt);
Jon Maloy75da2162017-10-13 11:04:23 +02001055 if (unlikely(rc))
1056 return rc;
1057
Jon Maloyb7d42632017-10-13 11:04:26 +02001058 /* Update broadcast sequence number and send windows */
Jon Maloy2f487712017-10-13 11:04:31 +02001059 tipc_group_update_bc_members(tsk->group, blks, ack);
1060
1061 /* Broadcast link is now free to choose method for next broadcast */
1062 method->mandatory = false;
1063 method->expires = jiffies;
1064
Jon Maloy75da2162017-10-13 11:04:23 +02001065 return dlen;
1066}
1067
1068/**
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001069 * tipc_send_group_mcast - send message to all members with given identity
1070 * @sock: socket structure
1071 * @m: message to send
1072 * @dlen: total length of message data
1073 * @timeout: timeout to wait for wakeup
1074 *
1075 * Called from function tipc_sendmsg(), which has done all sanity checks
1076 * Returns the number of bytes sent on success, or errno
1077 */
1078static int tipc_send_group_mcast(struct socket *sock, struct msghdr *m,
1079 int dlen, long timeout)
1080{
1081 struct sock *sk = sock->sk;
1082 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001083 struct tipc_sock *tsk = tipc_sk(sk);
1084 struct tipc_group *grp = tsk->group;
Jon Maloy232d07b2018-01-08 21:03:30 +01001085 struct tipc_msg *hdr = &tsk->phdr;
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001086 struct net *net = sock_net(sk);
Jon Maloy232d07b2018-01-08 21:03:30 +01001087 u32 type, inst, scope, exclude;
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001088 struct list_head dsts;
Jon Maloy232d07b2018-01-08 21:03:30 +01001089 u32 dstcnt;
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001090
1091 INIT_LIST_HEAD(&dsts);
1092
Jon Maloy232d07b2018-01-08 21:03:30 +01001093 type = msg_nametype(hdr);
1094 inst = dest->addr.name.name.instance;
1095 scope = msg_lookup_scope(hdr);
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001096 exclude = tipc_group_exclude(grp);
Jon Maloy232d07b2018-01-08 21:03:30 +01001097
1098 if (!tipc_nametbl_lookup(net, type, inst, scope, &dsts,
1099 &dstcnt, exclude, true))
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001100 return -EHOSTUNREACH;
1101
1102 if (dstcnt == 1) {
1103 tipc_dest_pop(&dsts, &dest->addr.id.node, &dest->addr.id.ref);
1104 return tipc_send_group_unicast(sock, m, dlen, timeout);
1105 }
1106
1107 tipc_dest_list_purge(&dsts);
1108 return tipc_send_group_bcast(sock, m, dlen, timeout);
1109}
1110
1111/**
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001112 * tipc_sk_mcast_rcv - Deliver multicast messages to all destination sockets
1113 * @arrvq: queue with arriving messages, to be cloned after destination lookup
1114 * @inputq: queue with cloned messages, delivered to socket after dest lookup
1115 *
1116 * Multi-threaded: parallel calls with reference to same queues may occur
Jon Paul Maloy078bec82014-07-16 20:41:00 -04001117 */
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001118void tipc_sk_mcast_rcv(struct net *net, struct sk_buff_head *arrvq,
1119 struct sk_buff_head *inputq)
Jon Paul Maloy078bec82014-07-16 20:41:00 -04001120{
Jon Maloy75da2162017-10-13 11:04:23 +02001121 u32 self = tipc_own_addr(net);
Jon Maloy232d07b2018-01-08 21:03:30 +01001122 u32 type, lower, upper, scope;
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001123 struct sk_buff *skb, *_skb;
Colin Ian Kingb053fcc2018-07-31 17:01:37 +01001124 u32 portid, onode;
Jon Maloy232d07b2018-01-08 21:03:30 +01001125 struct sk_buff_head tmpq;
Jon Maloy75da2162017-10-13 11:04:23 +02001126 struct list_head dports;
Jon Maloy232d07b2018-01-08 21:03:30 +01001127 struct tipc_msg *hdr;
1128 int user, mtyp, hlen;
1129 bool exact;
Jon Paul Maloy3c724ac2015-02-05 08:36:43 -05001130
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001131 __skb_queue_head_init(&tmpq);
Jon Paul Maloy4d8642d2017-01-03 10:55:10 -05001132 INIT_LIST_HEAD(&dports);
Jon Paul Maloy078bec82014-07-16 20:41:00 -04001133
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001134 skb = tipc_skb_peek(arrvq, &inputq->lock);
1135 for (; skb; skb = tipc_skb_peek(arrvq, &inputq->lock)) {
Jon Maloy232d07b2018-01-08 21:03:30 +01001136 hdr = buf_msg(skb);
1137 user = msg_user(hdr);
1138 mtyp = msg_type(hdr);
1139 hlen = skb_headroom(skb) + msg_hdr_sz(hdr);
Jon Maloy232d07b2018-01-08 21:03:30 +01001140 onode = msg_orignode(hdr);
1141 type = msg_nametype(hdr);
1142
Jon Maloy2f487712017-10-13 11:04:31 +02001143 if (mtyp == TIPC_GRP_UCAST_MSG || user == GROUP_PROTOCOL) {
1144 spin_lock_bh(&inputq->lock);
1145 if (skb_peek(arrvq) == skb) {
1146 __skb_dequeue(arrvq);
1147 __skb_queue_tail(inputq, skb);
1148 }
Jon Maloyc545a942017-12-11 19:11:55 +01001149 kfree_skb(skb);
Jon Maloy2f487712017-10-13 11:04:31 +02001150 spin_unlock_bh(&inputq->lock);
1151 continue;
1152 }
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001153
Jon Maloy232d07b2018-01-08 21:03:30 +01001154 /* Group messages require exact scope match */
1155 if (msg_in_group(hdr)) {
1156 lower = 0;
1157 upper = ~0;
1158 scope = msg_lookup_scope(hdr);
1159 exact = true;
1160 } else {
1161 /* TIPC_NODE_SCOPE means "any scope" in this context */
1162 if (onode == self)
1163 scope = TIPC_NODE_SCOPE;
1164 else
1165 scope = TIPC_CLUSTER_SCOPE;
1166 exact = false;
1167 lower = msg_namelower(hdr);
1168 upper = msg_nameupper(hdr);
Jon Maloy75da2162017-10-13 11:04:23 +02001169 }
Jon Maloy232d07b2018-01-08 21:03:30 +01001170
1171 /* Create destination port list: */
1172 tipc_nametbl_mc_lookup(net, type, lower, upper,
1173 scope, exact, &dports);
1174
1175 /* Clone message per destination */
Jon Maloya80ae532017-10-13 11:04:22 +02001176 while (tipc_dest_pop(&dports, NULL, &portid)) {
Jon Maloy232d07b2018-01-08 21:03:30 +01001177 _skb = __pskb_copy(skb, hlen, GFP_ATOMIC);
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001178 if (_skb) {
1179 msg_set_destport(buf_msg(_skb), portid);
1180 __skb_queue_tail(&tmpq, _skb);
1181 continue;
1182 }
1183 pr_warn("Failed to clone mcast rcv buffer\n");
Jon Paul Maloy078bec82014-07-16 20:41:00 -04001184 }
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001185 /* Append to inputq if not already done by other thread */
1186 spin_lock_bh(&inputq->lock);
1187 if (skb_peek(arrvq) == skb) {
1188 skb_queue_splice_tail_init(&tmpq, inputq);
1189 kfree_skb(__skb_dequeue(arrvq));
1190 }
1191 spin_unlock_bh(&inputq->lock);
1192 __skb_queue_purge(&tmpq);
1193 kfree_skb(skb);
Jon Paul Maloy078bec82014-07-16 20:41:00 -04001194 }
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001195 tipc_sk_rcv(net, inputq);
Jon Paul Maloy078bec82014-07-16 20:41:00 -04001196}
1197
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001198/**
Jon Maloy64ac5f52017-10-13 11:04:20 +02001199 * tipc_sk_conn_proto_rcv - receive a connection mng protocol message
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001200 * @tsk: receiving socket
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001201 * @skb: pointer to message buffer.
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001202 */
Jon Maloy64ac5f52017-10-13 11:04:20 +02001203static void tipc_sk_conn_proto_rcv(struct tipc_sock *tsk, struct sk_buff *skb,
Parthasarathy Bhuvaragane7eb0582018-10-10 17:50:23 +02001204 struct sk_buff_head *inputq,
Jon Maloy64ac5f52017-10-13 11:04:20 +02001205 struct sk_buff_head *xmitq)
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001206{
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001207 struct tipc_msg *hdr = buf_msg(skb);
Jon Maloy64ac5f52017-10-13 11:04:20 +02001208 u32 onode = tsk_own_node(tsk);
1209 struct sock *sk = &tsk->sk;
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001210 int mtyp = msg_type(hdr);
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001211 bool conn_cong;
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001212
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001213 /* Ignore if connection cannot be validated: */
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001214 if (!tsk_peer_msg(tsk, hdr))
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001215 goto exit;
1216
Parthasarathy Bhuvaraganc1be7752017-04-26 10:05:02 +02001217 if (unlikely(msg_errcode(hdr))) {
1218 tipc_set_sk_state(sk, TIPC_DISCONNECTING);
1219 tipc_node_remove_conn(sock_net(sk), tsk_peer_node(tsk),
1220 tsk_peer_port(tsk));
1221 sk->sk_state_change(sk);
Parthasarathy Bhuvaragane7eb0582018-10-10 17:50:23 +02001222
1223 /* State change is ignored if socket already awake,
1224 * - convert msg to abort msg and add to inqueue
1225 */
1226 msg_set_user(hdr, TIPC_CRITICAL_IMPORTANCE);
1227 msg_set_type(hdr, TIPC_CONN_MSG);
1228 msg_set_size(hdr, BASIC_H_SIZE);
1229 msg_set_hdr_sz(hdr, BASIC_H_SIZE);
1230 __skb_queue_tail(inputq, skb);
1231 return;
Parthasarathy Bhuvaraganc1be7752017-04-26 10:05:02 +02001232 }
1233
Parthasarathy Bhuvaragan8ea642e2016-11-01 14:02:44 +01001234 tsk->probe_unacked = false;
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001235
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001236 if (mtyp == CONN_PROBE) {
1237 msg_set_type(hdr, CONN_PROBE_REPLY);
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04001238 if (tipc_msg_reverse(onode, &skb, TIPC_OK))
1239 __skb_queue_tail(xmitq, skb);
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001240 return;
1241 } else if (mtyp == CONN_ACK) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001242 conn_cong = tsk_conn_cong(tsk);
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001243 tsk->snt_unacked -= msg_conn_ack(hdr);
1244 if (tsk->peer_caps & TIPC_BLOCK_FLOWCTL)
1245 tsk->snd_win = msg_adv_win(hdr);
Jon Paul Maloy60120522014-06-25 20:41:42 -05001246 if (conn_cong)
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001247 sk->sk_write_space(sk);
1248 } else if (mtyp != CONN_PROBE_REPLY) {
1249 pr_warn("Received unknown CONN_PROTO msg\n");
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001250 }
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001251exit:
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001252 kfree_skb(skb);
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001253}
1254
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001255/**
Ying Xue247f0f32014-02-18 16:06:46 +08001256 * tipc_sendmsg - send message in connectionless manner
Per Lidenb97bf3f2006-01-02 19:04:38 +01001257 * @sock: socket structure
1258 * @m: message to send
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001259 * @dsz: amount of user data to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001260 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001261 * Message must have an destination specified explicitly.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001262 * Used for SOCK_RDM and SOCK_DGRAM messages,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001263 * and for 'SYN' messages on SOCK_SEQPACKET and SOCK_STREAM connections.
1264 * (Note: 'SYN+' is prohibited on SOCK_STREAM.)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001265 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001266 * Returns the number of bytes sent on success, or errno otherwise
1267 */
Ying Xue1b784142015-03-02 15:37:48 +08001268static int tipc_sendmsg(struct socket *sock,
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001269 struct msghdr *m, size_t dsz)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001270{
Ying Xue39a02952015-03-02 15:37:47 +08001271 struct sock *sk = sock->sk;
1272 int ret;
1273
1274 lock_sock(sk);
1275 ret = __tipc_sendmsg(sock, m, dsz);
1276 release_sock(sk);
1277
1278 return ret;
1279}
1280
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001281static int __tipc_sendmsg(struct socket *sock, struct msghdr *m, size_t dlen)
Ying Xue39a02952015-03-02 15:37:47 +08001282{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001283 struct sock *sk = sock->sk;
Ying Xuef2f98002015-01-09 15:27:05 +08001284 struct net *net = sock_net(sk);
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001285 struct tipc_sock *tsk = tipc_sk(sk);
1286 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
1287 long timeout = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT);
1288 struct list_head *clinks = &tsk->cong_links;
1289 bool syn = !tipc_sk_type_connectionless(sk);
Jon Maloy75da2162017-10-13 11:04:23 +02001290 struct tipc_group *grp = tsk->group;
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001291 struct tipc_msg *hdr = &tsk->phdr;
Erik Hugnef2f80362015-03-19 09:02:19 +01001292 struct tipc_name_seq *seq;
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001293 struct sk_buff_head pkts;
Jon Maloy335b9292018-04-12 01:15:48 +02001294 u32 dport, dnode = 0;
Jon Maloy928df182018-03-15 16:48:51 +01001295 u32 type, inst;
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001296 int mtu, rc;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001297
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001298 if (unlikely(dlen > TIPC_MAX_USER_MSG_SIZE))
Allan Stephensc29c3f72010-04-20 17:58:24 -04001299 return -EMSGSIZE;
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001300
Jon Maloy27bd9ec2017-10-13 11:04:27 +02001301 if (likely(dest)) {
1302 if (unlikely(m->msg_namelen < sizeof(*dest)))
1303 return -EINVAL;
1304 if (unlikely(dest->family != AF_TIPC))
1305 return -EINVAL;
1306 }
1307
1308 if (grp) {
1309 if (!dest)
1310 return tipc_send_group_bcast(sock, m, dlen, timeout);
Jon Maloyee106d72017-10-13 11:04:28 +02001311 if (dest->addrtype == TIPC_ADDR_NAME)
1312 return tipc_send_group_anycast(sock, m, dlen, timeout);
Jon Maloy27bd9ec2017-10-13 11:04:27 +02001313 if (dest->addrtype == TIPC_ADDR_ID)
1314 return tipc_send_group_unicast(sock, m, dlen, timeout);
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001315 if (dest->addrtype == TIPC_ADDR_MCAST)
1316 return tipc_send_group_mcast(sock, m, dlen, timeout);
Jon Maloy27bd9ec2017-10-13 11:04:27 +02001317 return -EINVAL;
1318 }
Jon Maloy75da2162017-10-13 11:04:23 +02001319
Erik Hugnef2f80362015-03-19 09:02:19 +01001320 if (unlikely(!dest)) {
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001321 dest = &tsk->peer;
1322 if (!syn || dest->family != AF_TIPC)
Erik Hugnef2f80362015-03-19 09:02:19 +01001323 return -EDESTADDRREQ;
Erik Hugnef2f80362015-03-19 09:02:19 +01001324 }
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001325
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001326 if (unlikely(syn)) {
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +01001327 if (sk->sk_state == TIPC_LISTEN)
Ying Xue39a02952015-03-02 15:37:47 +08001328 return -EPIPE;
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +01001329 if (sk->sk_state != TIPC_OPEN)
Ying Xue39a02952015-03-02 15:37:47 +08001330 return -EISCONN;
1331 if (tsk->published)
1332 return -EOPNOTSUPP;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001333 if (dest->addrtype == TIPC_ADDR_NAME) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001334 tsk->conn_type = dest->addr.name.name.type;
1335 tsk->conn_instance = dest->addr.name.name.instance;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001336 }
Jon Maloy25b92212018-09-28 20:23:21 +02001337 msg_set_syn(hdr, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001338 }
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001339
Erik Hugnef2f80362015-03-19 09:02:19 +01001340 seq = &dest->addr.nameseq;
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001341 if (dest->addrtype == TIPC_ADDR_MCAST)
1342 return tipc_sendmcast(sock, seq, m, dlen, timeout);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001343
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001344 if (dest->addrtype == TIPC_ADDR_NAME) {
1345 type = dest->addr.name.name.type;
1346 inst = dest->addr.name.name.instance;
Jon Maloy928df182018-03-15 16:48:51 +01001347 dnode = dest->addr.name.domain;
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001348 msg_set_type(hdr, TIPC_NAMED_MSG);
1349 msg_set_hdr_sz(hdr, NAMED_H_SIZE);
1350 msg_set_nametype(hdr, type);
1351 msg_set_nameinst(hdr, inst);
Jon Maloy928df182018-03-15 16:48:51 +01001352 msg_set_lookup_scope(hdr, tipc_node2scope(dnode));
Ying Xue4ac1c8d2015-01-09 15:27:09 +08001353 dport = tipc_nametbl_translate(net, type, inst, &dnode);
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001354 msg_set_destnode(hdr, dnode);
1355 msg_set_destport(hdr, dport);
Ying Xue39a02952015-03-02 15:37:47 +08001356 if (unlikely(!dport && !dnode))
1357 return -EHOSTUNREACH;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001358 } else if (dest->addrtype == TIPC_ADDR_ID) {
1359 dnode = dest->addr.id.node;
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001360 msg_set_type(hdr, TIPC_DIRECT_MSG);
1361 msg_set_lookup_scope(hdr, 0);
1362 msg_set_destnode(hdr, dnode);
1363 msg_set_destport(hdr, dest->addr.id.ref);
1364 msg_set_hdr_sz(hdr, BASIC_H_SIZE);
Jon Maloy335b9292018-04-12 01:15:48 +02001365 } else {
1366 return -EINVAL;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001367 }
1368
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001369 /* Block or return if destination link is congested */
Jon Maloya80ae532017-10-13 11:04:22 +02001370 rc = tipc_wait_for_cond(sock, &timeout,
1371 !tipc_dest_find(clinks, dnode, 0));
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001372 if (unlikely(rc))
Ying Xue39a02952015-03-02 15:37:47 +08001373 return rc;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001374
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001375 skb_queue_head_init(&pkts);
1376 mtu = tipc_node_get_mtu(net, dnode, tsk->portid);
1377 rc = tipc_msg_build(hdr, m, 0, dlen, mtu, &pkts);
1378 if (unlikely(rc != dlen))
1379 return rc;
Tung Nguyen67879272018-09-28 20:23:22 +02001380 if (unlikely(syn && !tipc_msg_skb_clone(&pkts, &sk->sk_write_queue)))
1381 return -ENOMEM;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001382
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001383 rc = tipc_node_xmit(net, &pkts, dnode, tsk->portid);
1384 if (unlikely(rc == -ELINKCONG)) {
Jon Maloya80ae532017-10-13 11:04:22 +02001385 tipc_dest_push(clinks, dnode, 0);
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001386 tsk->cong_link_cnt++;
1387 rc = 0;
1388 }
1389
1390 if (unlikely(syn && !rc))
1391 tipc_set_sk_state(sk, TIPC_CONNECTING);
1392
1393 return rc ? rc : dlen;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001394}
1395
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001396/**
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001397 * tipc_sendstream - send stream-oriented data
Per Lidenb97bf3f2006-01-02 19:04:38 +01001398 * @sock: socket structure
1399 * @m: data to send
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001400 * @dsz: total length of data to be transmitted
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001401 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001402 * Used for SOCK_STREAM data.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001403 *
1404 * Returns the number of bytes sent on success (or partial success),
Allan Stephens1303e8f2006-06-25 23:46:50 -07001405 * or errno if no data sent
Per Lidenb97bf3f2006-01-02 19:04:38 +01001406 */
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001407static int tipc_sendstream(struct socket *sock, struct msghdr *m, size_t dsz)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001408{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001409 struct sock *sk = sock->sk;
Ying Xue39a02952015-03-02 15:37:47 +08001410 int ret;
1411
1412 lock_sock(sk);
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001413 ret = __tipc_sendstream(sock, m, dsz);
Ying Xue39a02952015-03-02 15:37:47 +08001414 release_sock(sk);
1415
1416 return ret;
1417}
1418
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001419static int __tipc_sendstream(struct socket *sock, struct msghdr *m, size_t dlen)
Ying Xue39a02952015-03-02 15:37:47 +08001420{
1421 struct sock *sk = sock->sk;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001422 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001423 long timeout = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT);
1424 struct tipc_sock *tsk = tipc_sk(sk);
1425 struct tipc_msg *hdr = &tsk->phdr;
1426 struct net *net = sock_net(sk);
1427 struct sk_buff_head pkts;
1428 u32 dnode = tsk_peer_node(tsk);
1429 int send, sent = 0;
1430 int rc = 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001431
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001432 skb_queue_head_init(&pkts);
1433
1434 if (unlikely(dlen > INT_MAX))
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001435 return -EMSGSIZE;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001436
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001437 /* Handle implicit connection setup */
1438 if (unlikely(dest)) {
1439 rc = __tipc_sendmsg(sock, m, dlen);
Parthasarathy Bhuvaragan92ef12b2018-09-25 18:21:58 +02001440 if (dlen && dlen == rc) {
1441 tsk->peer_caps = tipc_node_get_capabilities(net, dnode);
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001442 tsk->snt_unacked = tsk_inc(tsk, dlen + msg_hdr_sz(hdr));
Parthasarathy Bhuvaragan92ef12b2018-09-25 18:21:58 +02001443 }
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001444 return rc;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001445 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001446
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001447 do {
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001448 rc = tipc_wait_for_cond(sock, &timeout,
1449 (!tsk->cong_link_cnt &&
Jon Paul Maloy8c44e1a2017-01-03 10:55:09 -05001450 !tsk_conn_cong(tsk) &&
1451 tipc_sk_connected(sk)));
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001452 if (unlikely(rc))
1453 break;
Ying Xue39a02952015-03-02 15:37:47 +08001454
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001455 send = min_t(size_t, dlen - sent, TIPC_MAX_USER_MSG_SIZE);
1456 rc = tipc_msg_build(hdr, m, sent, send, tsk->max_pkt, &pkts);
1457 if (unlikely(rc != send))
1458 break;
1459
1460 rc = tipc_node_xmit(net, &pkts, dnode, tsk->portid);
1461 if (unlikely(rc == -ELINKCONG)) {
1462 tsk->cong_link_cnt = 1;
1463 rc = 0;
1464 }
1465 if (likely(!rc)) {
1466 tsk->snt_unacked += tsk_inc(tsk, send + MIN_H_SIZE);
1467 sent += send;
1468 }
1469 } while (sent < dlen && !rc);
1470
Parthasarathy Bhuvaragan3364d612017-04-24 15:00:42 +02001471 return sent ? sent : rc;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001472}
1473
1474/**
1475 * tipc_send_packet - send a connection-oriented message
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001476 * @sock: socket structure
1477 * @m: message to send
1478 * @dsz: length of data to be transmitted
1479 *
1480 * Used for SOCK_SEQPACKET messages.
1481 *
1482 * Returns the number of bytes sent on success, or errno otherwise
1483 */
Ying Xue1b784142015-03-02 15:37:48 +08001484static int tipc_send_packet(struct socket *sock, struct msghdr *m, size_t dsz)
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001485{
1486 if (dsz > TIPC_MAX_USER_MSG_SIZE)
1487 return -EMSGSIZE;
1488
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001489 return tipc_sendstream(sock, m, dsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001490}
1491
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001492/* tipc_sk_finish_conn - complete the setup of a connection
Per Lidenb97bf3f2006-01-02 19:04:38 +01001493 */
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001494static void tipc_sk_finish_conn(struct tipc_sock *tsk, u32 peer_port,
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001495 u32 peer_node)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001496{
Ying Xue3721e9c2015-01-13 17:07:48 +08001497 struct sock *sk = &tsk->sk;
1498 struct net *net = sock_net(sk);
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001499 struct tipc_msg *msg = &tsk->phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001500
Jon Maloy25b92212018-09-28 20:23:21 +02001501 msg_set_syn(msg, 0);
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001502 msg_set_destnode(msg, peer_node);
1503 msg_set_destport(msg, peer_port);
1504 msg_set_type(msg, TIPC_CONN_MSG);
1505 msg_set_lookup_scope(msg, 0);
1506 msg_set_hdr_sz(msg, SHORT_H_SIZE);
Jon Paul Maloyf9fef182014-03-12 11:31:08 -04001507
Jon Maloy0d5fcebf2017-10-20 11:21:32 +02001508 sk_reset_timer(sk, &sk->sk_timer, jiffies + CONN_PROBING_INTV);
Parthasarathy Bhuvaragan8ea642e2016-11-01 14:02:44 +01001509 tipc_set_sk_state(sk, TIPC_ESTABLISHED);
Ying Xuef2f98002015-01-09 15:27:05 +08001510 tipc_node_add_conn(net, peer_node, tsk->portid, peer_port);
1511 tsk->max_pkt = tipc_node_get_mtu(net, peer_node, tsk->portid);
Jon Paul Maloy60020e12016-05-02 11:58:46 -04001512 tsk->peer_caps = tipc_node_get_capabilities(net, peer_node);
Tung Nguyen67879272018-09-28 20:23:22 +02001513 __skb_queue_purge(&sk->sk_write_queue);
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001514 if (tsk->peer_caps & TIPC_BLOCK_FLOWCTL)
1515 return;
1516
1517 /* Fall back to message based flow control */
1518 tsk->rcv_win = FLOWCTL_MSG_WIN;
1519 tsk->snd_win = FLOWCTL_MSG_WIN;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001520}
1521
1522/**
Jon Maloy31c82a22017-10-13 11:04:24 +02001523 * tipc_sk_set_orig_addr - capture sender's address for received message
Per Lidenb97bf3f2006-01-02 19:04:38 +01001524 * @m: descriptor for message info
Jon Maloy31c82a22017-10-13 11:04:24 +02001525 * @hdr: received message header
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001526 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001527 * Note: Address is not captured if not requested by receiver.
1528 */
Jon Maloy31c82a22017-10-13 11:04:24 +02001529static void tipc_sk_set_orig_addr(struct msghdr *m, struct sk_buff *skb)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001530{
Jon Maloy31c82a22017-10-13 11:04:24 +02001531 DECLARE_SOCKADDR(struct sockaddr_pair *, srcaddr, m->msg_name);
1532 struct tipc_msg *hdr = buf_msg(skb);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001533
Jon Maloy31c82a22017-10-13 11:04:24 +02001534 if (!srcaddr)
1535 return;
1536
1537 srcaddr->sock.family = AF_TIPC;
1538 srcaddr->sock.addrtype = TIPC_ADDR_ID;
Eric Dumazet09c8b972018-05-09 09:50:22 -07001539 srcaddr->sock.scope = 0;
Jon Maloy31c82a22017-10-13 11:04:24 +02001540 srcaddr->sock.addr.id.ref = msg_origport(hdr);
1541 srcaddr->sock.addr.id.node = msg_orignode(hdr);
1542 srcaddr->sock.addr.name.domain = 0;
Jon Maloy31c82a22017-10-13 11:04:24 +02001543 m->msg_namelen = sizeof(struct sockaddr_tipc);
1544
1545 if (!msg_in_group(hdr))
1546 return;
1547
1548 /* Group message users may also want to know sending member's id */
1549 srcaddr->member.family = AF_TIPC;
1550 srcaddr->member.addrtype = TIPC_ADDR_NAME;
Eric Dumazet09c8b972018-05-09 09:50:22 -07001551 srcaddr->member.scope = 0;
Jon Maloy31c82a22017-10-13 11:04:24 +02001552 srcaddr->member.addr.name.name.type = msg_nametype(hdr);
1553 srcaddr->member.addr.name.name.instance = TIPC_SKB_CB(skb)->orig_member;
1554 srcaddr->member.addr.name.domain = 0;
1555 m->msg_namelen = sizeof(*srcaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001556}
1557
1558/**
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001559 * tipc_sk_anc_data_recv - optionally capture ancillary data for received message
Per Lidenb97bf3f2006-01-02 19:04:38 +01001560 * @m: descriptor for message info
Jon Maloy1c1274a2018-11-17 12:17:06 -05001561 * @skb: received message buffer
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001562 * @tsk: TIPC port associated with message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001563 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001564 * Note: Ancillary data is not captured if not requested by receiver.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001565 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001566 * Returns 0 if successful, otherwise errno
1567 */
Jon Maloy1c1274a2018-11-17 12:17:06 -05001568static int tipc_sk_anc_data_recv(struct msghdr *m, struct sk_buff *skb,
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001569 struct tipc_sock *tsk)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001570{
Jon Maloy1c1274a2018-11-17 12:17:06 -05001571 struct tipc_msg *msg;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001572 u32 anc_data[3];
1573 u32 err;
1574 u32 dest_type;
Allan Stephens3546c752006-06-25 23:45:24 -07001575 int has_name;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001576 int res;
1577
1578 if (likely(m->msg_controllen == 0))
1579 return 0;
Jon Maloy1c1274a2018-11-17 12:17:06 -05001580 msg = buf_msg(skb);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001581
1582 /* Optionally capture errored message object(s) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001583 err = msg ? msg_errcode(msg) : 0;
1584 if (unlikely(err)) {
1585 anc_data[0] = err;
1586 anc_data[1] = msg_data_sz(msg);
Allan Stephens2db99832010-12-31 18:59:33 +00001587 res = put_cmsg(m, SOL_TIPC, TIPC_ERRINFO, 8, anc_data);
1588 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001589 return res;
Allan Stephens2db99832010-12-31 18:59:33 +00001590 if (anc_data[1]) {
Jon Maloy1c1274a2018-11-17 12:17:06 -05001591 if (skb_linearize(skb))
1592 return -ENOMEM;
1593 msg = buf_msg(skb);
Allan Stephens2db99832010-12-31 18:59:33 +00001594 res = put_cmsg(m, SOL_TIPC, TIPC_RETDATA, anc_data[1],
1595 msg_data(msg));
1596 if (res)
1597 return res;
1598 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001599 }
1600
1601 /* Optionally capture message destination object */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001602 dest_type = msg ? msg_type(msg) : TIPC_DIRECT_MSG;
1603 switch (dest_type) {
1604 case TIPC_NAMED_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -07001605 has_name = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001606 anc_data[0] = msg_nametype(msg);
1607 anc_data[1] = msg_namelower(msg);
1608 anc_data[2] = msg_namelower(msg);
1609 break;
1610 case TIPC_MCAST_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -07001611 has_name = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001612 anc_data[0] = msg_nametype(msg);
1613 anc_data[1] = msg_namelower(msg);
1614 anc_data[2] = msg_nameupper(msg);
1615 break;
1616 case TIPC_CONN_MSG:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001617 has_name = (tsk->conn_type != 0);
1618 anc_data[0] = tsk->conn_type;
1619 anc_data[1] = tsk->conn_instance;
1620 anc_data[2] = tsk->conn_instance;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001621 break;
1622 default:
Allan Stephens3546c752006-06-25 23:45:24 -07001623 has_name = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001624 }
Allan Stephens2db99832010-12-31 18:59:33 +00001625 if (has_name) {
1626 res = put_cmsg(m, SOL_TIPC, TIPC_DESTNAME, 12, anc_data);
1627 if (res)
1628 return res;
1629 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001630
1631 return 0;
1632}
1633
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001634static void tipc_sk_send_ack(struct tipc_sock *tsk)
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001635{
Parthasarathy Bhuvaragand6fb7e92016-11-01 14:02:40 +01001636 struct sock *sk = &tsk->sk;
1637 struct net *net = sock_net(sk);
Ying Xuea6ca1092014-11-26 11:41:55 +08001638 struct sk_buff *skb = NULL;
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001639 struct tipc_msg *msg;
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001640 u32 peer_port = tsk_peer_port(tsk);
1641 u32 dnode = tsk_peer_node(tsk);
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001642
Parthasarathy Bhuvaragand6fb7e92016-11-01 14:02:40 +01001643 if (!tipc_sk_connected(sk))
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001644 return;
Jon Paul Maloyc5898632015-02-05 08:36:36 -05001645 skb = tipc_msg_create(CONN_MANAGER, CONN_ACK, INT_H_SIZE, 0,
1646 dnode, tsk_own_node(tsk), peer_port,
1647 tsk->portid, TIPC_OK);
Ying Xuea6ca1092014-11-26 11:41:55 +08001648 if (!skb)
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001649 return;
Ying Xuea6ca1092014-11-26 11:41:55 +08001650 msg = buf_msg(skb);
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001651 msg_set_conn_ack(msg, tsk->rcv_unacked);
1652 tsk->rcv_unacked = 0;
1653
1654 /* Adjust to and advertize the correct window limit */
1655 if (tsk->peer_caps & TIPC_BLOCK_FLOWCTL) {
1656 tsk->rcv_win = tsk_adv_blocks(tsk->sk.sk_rcvbuf);
1657 msg_set_adv_win(msg, tsk->rcv_win);
1658 }
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -04001659 tipc_node_xmit_skb(net, skb, dnode, msg_link_selector(msg));
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001660}
1661
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001662static int tipc_wait_for_rcvmsg(struct socket *sock, long *timeop)
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001663{
1664 struct sock *sk = sock->sk;
1665 DEFINE_WAIT(wait);
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001666 long timeo = *timeop;
Parthasarathy Bhuvaragan4e0df492017-04-26 10:05:01 +02001667 int err = sock_error(sk);
1668
1669 if (err)
1670 return err;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001671
1672 for (;;) {
1673 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Ying Xuefe8e4642014-03-06 14:40:18 +01001674 if (timeo && skb_queue_empty(&sk->sk_receive_queue)) {
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +01001675 if (sk->sk_shutdown & RCV_SHUTDOWN) {
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001676 err = -ENOTCONN;
1677 break;
1678 }
1679 release_sock(sk);
1680 timeo = schedule_timeout(timeo);
1681 lock_sock(sk);
1682 }
1683 err = 0;
1684 if (!skb_queue_empty(&sk->sk_receive_queue))
1685 break;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001686 err = -EAGAIN;
1687 if (!timeo)
1688 break;
Erik Hugne143fe222015-03-09 10:43:42 +01001689 err = sock_intr_errno(timeo);
1690 if (signal_pending(current))
1691 break;
Parthasarathy Bhuvaragan4e0df492017-04-26 10:05:01 +02001692
1693 err = sock_error(sk);
1694 if (err)
1695 break;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001696 }
1697 finish_wait(sk_sleep(sk), &wait);
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001698 *timeop = timeo;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001699 return err;
1700}
1701
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001702/**
Ying Xue247f0f32014-02-18 16:06:46 +08001703 * tipc_recvmsg - receive packet-oriented message
Per Lidenb97bf3f2006-01-02 19:04:38 +01001704 * @m: descriptor for message info
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001705 * @buflen: length of user buffer area
Per Lidenb97bf3f2006-01-02 19:04:38 +01001706 * @flags: receive flags
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001707 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001708 * Used for SOCK_DGRAM, SOCK_RDM, and SOCK_SEQPACKET messages.
1709 * If the complete message doesn't fit in user area, truncate it.
1710 *
1711 * Returns size of returned message data, errno otherwise
1712 */
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001713static int tipc_recvmsg(struct socket *sock, struct msghdr *m,
1714 size_t buflen, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001715{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001716 struct sock *sk = sock->sk;
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001717 bool connected = !tipc_sk_type_connectionless(sk);
Jon Maloyae236fb2017-10-13 11:04:25 +02001718 struct tipc_sock *tsk = tipc_sk(sk);
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001719 int rc, err, hlen, dlen, copy;
Jon Maloyb7d42632017-10-13 11:04:26 +02001720 struct sk_buff_head xmitq;
Jon Maloyae236fb2017-10-13 11:04:25 +02001721 struct tipc_msg *hdr;
1722 struct sk_buff *skb;
1723 bool grp_evt;
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001724 long timeout;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001725
Allan Stephens0c3141e2008-04-15 00:22:02 -07001726 /* Catch invalid receive requests */
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001727 if (unlikely(!buflen))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001728 return -EINVAL;
1729
Allan Stephens0c3141e2008-04-15 00:22:02 -07001730 lock_sock(sk);
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001731 if (unlikely(connected && sk->sk_state == TIPC_OPEN)) {
1732 rc = -ENOTCONN;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001733 goto exit;
1734 }
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001735 timeout = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001736
Jon Maloyb7d42632017-10-13 11:04:26 +02001737 /* Step rcv queue to first msg with data or error; wait if necessary */
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001738 do {
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001739 rc = tipc_wait_for_rcvmsg(sock, &timeout);
1740 if (unlikely(rc))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001741 goto exit;
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001742 skb = skb_peek(&sk->sk_receive_queue);
1743 hdr = buf_msg(skb);
1744 dlen = msg_data_sz(hdr);
1745 hlen = msg_hdr_sz(hdr);
1746 err = msg_errcode(hdr);
Jon Maloyae236fb2017-10-13 11:04:25 +02001747 grp_evt = msg_is_grp_evt(hdr);
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001748 if (likely(dlen || err))
1749 break;
1750 tsk_advance_rx_queue(sk);
1751 } while (1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001752
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001753 /* Collect msg meta data, including error code and rejected data */
Jon Maloy31c82a22017-10-13 11:04:24 +02001754 tipc_sk_set_orig_addr(m, skb);
Jon Maloy1c1274a2018-11-17 12:17:06 -05001755 rc = tipc_sk_anc_data_recv(m, skb, tsk);
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001756 if (unlikely(rc))
1757 goto exit;
Jon Maloy1c1274a2018-11-17 12:17:06 -05001758 hdr = buf_msg(skb);
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001759
1760 /* Capture data if non-error msg, otherwise just set return value */
1761 if (likely(!err)) {
1762 copy = min_t(int, dlen, buflen);
1763 if (unlikely(copy != dlen))
1764 m->msg_flags |= MSG_TRUNC;
1765 rc = skb_copy_datagram_msg(skb, hlen, m, copy);
1766 } else {
1767 copy = 0;
1768 rc = 0;
1769 if (err != TIPC_CONN_SHUTDOWN && connected && !m->msg_control)
1770 rc = -ECONNRESET;
1771 }
1772 if (unlikely(rc))
1773 goto exit;
1774
Jon Maloyae236fb2017-10-13 11:04:25 +02001775 /* Mark message as group event if applicable */
1776 if (unlikely(grp_evt)) {
1777 if (msg_grp_evt(hdr) == TIPC_WITHDRAWN)
1778 m->msg_flags |= MSG_EOR;
1779 m->msg_flags |= MSG_OOB;
1780 copy = 0;
1781 }
1782
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001783 /* Caption of data or error code/rejected data was successful */
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001784 if (unlikely(flags & MSG_PEEK))
1785 goto exit;
1786
Jon Maloyb7d42632017-10-13 11:04:26 +02001787 /* Send group flow control advertisement when applicable */
1788 if (tsk->group && msg_in_group(hdr) && !grp_evt) {
1789 skb_queue_head_init(&xmitq);
1790 tipc_group_update_rcv_win(tsk->group, tsk_blocks(hlen + dlen),
1791 msg_orignode(hdr), msg_origport(hdr),
1792 &xmitq);
1793 tipc_node_distr_xmit(sock_net(sk), &xmitq);
1794 }
1795
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001796 tsk_advance_rx_queue(sk);
Jon Maloyae236fb2017-10-13 11:04:25 +02001797
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001798 if (likely(!connected))
1799 goto exit;
1800
Jon Maloyb7d42632017-10-13 11:04:26 +02001801 /* Send connection flow control advertisement when applicable */
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001802 tsk->rcv_unacked += tsk_inc(tsk, hlen + dlen);
1803 if (tsk->rcv_unacked >= tsk->rcv_win / TIPC_ACK_RATE)
1804 tipc_sk_send_ack(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001805exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001806 release_sock(sk);
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001807 return rc ? rc : copy;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001808}
1809
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001810/**
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001811 * tipc_recvstream - receive stream-oriented data
Per Lidenb97bf3f2006-01-02 19:04:38 +01001812 * @m: descriptor for message info
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001813 * @buflen: total size of user buffer area
Per Lidenb97bf3f2006-01-02 19:04:38 +01001814 * @flags: receive flags
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001815 *
1816 * Used for SOCK_STREAM messages only. If not enough data is available
Per Lidenb97bf3f2006-01-02 19:04:38 +01001817 * will optionally wait for more; never truncates data.
1818 *
1819 * Returns size of returned message data, errno otherwise
1820 */
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001821static int tipc_recvstream(struct socket *sock, struct msghdr *m,
1822 size_t buflen, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001823{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001824 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001825 struct tipc_sock *tsk = tipc_sk(sk);
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001826 struct sk_buff *skb;
1827 struct tipc_msg *hdr;
1828 struct tipc_skb_cb *skb_cb;
1829 bool peek = flags & MSG_PEEK;
1830 int offset, required, copy, copied = 0;
1831 int hlen, dlen, err, rc;
1832 long timeout;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001833
1834 /* Catch invalid receive attempts */
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001835 if (unlikely(!buflen))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001836 return -EINVAL;
1837
Allan Stephens0c3141e2008-04-15 00:22:02 -07001838 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001839
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +01001840 if (unlikely(sk->sk_state == TIPC_OPEN)) {
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001841 rc = -ENOTCONN;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001842 goto exit;
1843 }
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001844 required = sock_rcvlowat(sk, flags & MSG_WAITALL, buflen);
1845 timeout = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001846
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001847 do {
1848 /* Look at first msg in receive queue; wait if necessary */
1849 rc = tipc_wait_for_rcvmsg(sock, &timeout);
1850 if (unlikely(rc))
1851 break;
1852 skb = skb_peek(&sk->sk_receive_queue);
1853 skb_cb = TIPC_SKB_CB(skb);
1854 hdr = buf_msg(skb);
1855 dlen = msg_data_sz(hdr);
1856 hlen = msg_hdr_sz(hdr);
1857 err = msg_errcode(hdr);
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001858
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001859 /* Discard any empty non-errored (SYN-) message */
1860 if (unlikely(!dlen && !err)) {
1861 tsk_advance_rx_queue(sk);
1862 continue;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001863 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001864
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001865 /* Collect msg meta data, incl. error code and rejected data */
1866 if (!copied) {
Jon Maloy31c82a22017-10-13 11:04:24 +02001867 tipc_sk_set_orig_addr(m, skb);
Jon Maloy1c1274a2018-11-17 12:17:06 -05001868 rc = tipc_sk_anc_data_recv(m, skb, tsk);
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001869 if (rc)
1870 break;
Jon Maloy1c1274a2018-11-17 12:17:06 -05001871 hdr = buf_msg(skb);
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001872 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001873
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001874 /* Copy data if msg ok, otherwise return error/partial data */
1875 if (likely(!err)) {
1876 offset = skb_cb->bytes_read;
1877 copy = min_t(int, dlen - offset, buflen - copied);
1878 rc = skb_copy_datagram_msg(skb, hlen + offset, m, copy);
1879 if (unlikely(rc))
1880 break;
1881 copied += copy;
1882 offset += copy;
1883 if (unlikely(offset < dlen)) {
1884 if (!peek)
1885 skb_cb->bytes_read = offset;
1886 break;
1887 }
1888 } else {
1889 rc = 0;
1890 if ((err != TIPC_CONN_SHUTDOWN) && !m->msg_control)
1891 rc = -ECONNRESET;
1892 if (copied || rc)
1893 break;
1894 }
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001895
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001896 if (unlikely(peek))
1897 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001898
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001899 tsk_advance_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001900
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001901 /* Send connection flow control advertisement when applicable */
1902 tsk->rcv_unacked += tsk_inc(tsk, hlen + dlen);
1903 if (unlikely(tsk->rcv_unacked >= tsk->rcv_win / TIPC_ACK_RATE))
1904 tipc_sk_send_ack(tsk);
1905
1906 /* Exit if all requested data or FIN/error received */
1907 if (copied == buflen || err)
1908 break;
1909
1910 } while (!skb_queue_empty(&sk->sk_receive_queue) || copied < required);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001911exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001912 release_sock(sk);
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001913 return copied ? copied : rc;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001914}
1915
1916/**
Ying Xuef288bef2012-08-21 11:16:57 +08001917 * tipc_write_space - wake up thread if port congestion is released
1918 * @sk: socket
1919 */
1920static void tipc_write_space(struct sock *sk)
1921{
1922 struct socket_wq *wq;
1923
1924 rcu_read_lock();
1925 wq = rcu_dereference(sk->sk_wq);
Herbert Xu1ce0bf52015-11-26 13:55:39 +08001926 if (skwq_has_sleeper(wq))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001927 wake_up_interruptible_sync_poll(&wq->wait, EPOLLOUT |
1928 EPOLLWRNORM | EPOLLWRBAND);
Ying Xuef288bef2012-08-21 11:16:57 +08001929 rcu_read_unlock();
1930}
1931
1932/**
1933 * tipc_data_ready - wake up threads to indicate messages have been received
1934 * @sk: socket
1935 * @len: the length of messages
1936 */
David S. Miller676d2362014-04-11 16:15:36 -04001937static void tipc_data_ready(struct sock *sk)
Ying Xuef288bef2012-08-21 11:16:57 +08001938{
1939 struct socket_wq *wq;
1940
1941 rcu_read_lock();
1942 wq = rcu_dereference(sk->sk_wq);
Herbert Xu1ce0bf52015-11-26 13:55:39 +08001943 if (skwq_has_sleeper(wq))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001944 wake_up_interruptible_sync_poll(&wq->wait, EPOLLIN |
1945 EPOLLRDNORM | EPOLLRDBAND);
Ying Xuef288bef2012-08-21 11:16:57 +08001946 rcu_read_unlock();
1947}
1948
Ying Xuef4195d12015-11-22 15:46:05 +08001949static void tipc_sock_destruct(struct sock *sk)
1950{
1951 __skb_queue_purge(&sk->sk_receive_queue);
1952}
1953
Jon Maloy64ac5f52017-10-13 11:04:20 +02001954static void tipc_sk_proto_rcv(struct sock *sk,
1955 struct sk_buff_head *inputq,
1956 struct sk_buff_head *xmitq)
1957{
1958 struct sk_buff *skb = __skb_dequeue(inputq);
1959 struct tipc_sock *tsk = tipc_sk(sk);
1960 struct tipc_msg *hdr = buf_msg(skb);
Jon Maloy75da2162017-10-13 11:04:23 +02001961 struct tipc_group *grp = tsk->group;
Jon Maloyb7d42632017-10-13 11:04:26 +02001962 bool wakeup = false;
Jon Maloy64ac5f52017-10-13 11:04:20 +02001963
1964 switch (msg_user(hdr)) {
1965 case CONN_MANAGER:
Parthasarathy Bhuvaragane7eb0582018-10-10 17:50:23 +02001966 tipc_sk_conn_proto_rcv(tsk, skb, inputq, xmitq);
Jon Maloy64ac5f52017-10-13 11:04:20 +02001967 return;
1968 case SOCK_WAKEUP:
Jon Maloya80ae532017-10-13 11:04:22 +02001969 tipc_dest_del(&tsk->cong_links, msg_orignode(hdr), 0);
Jon Maloy64ac5f52017-10-13 11:04:20 +02001970 tsk->cong_link_cnt--;
Jon Maloyb7d42632017-10-13 11:04:26 +02001971 wakeup = true;
Jon Maloy64ac5f52017-10-13 11:04:20 +02001972 break;
Jon Maloy75da2162017-10-13 11:04:23 +02001973 case GROUP_PROTOCOL:
Jon Maloyb7d42632017-10-13 11:04:26 +02001974 tipc_group_proto_rcv(grp, &wakeup, hdr, inputq, xmitq);
Jon Maloy75da2162017-10-13 11:04:23 +02001975 break;
Jon Maloy64ac5f52017-10-13 11:04:20 +02001976 case TOP_SRV:
Jon Maloyb7d42632017-10-13 11:04:26 +02001977 tipc_group_member_evt(tsk->group, &wakeup, &sk->sk_rcvbuf,
Jon Maloy7ad32bc2018-01-08 21:03:26 +01001978 hdr, inputq, xmitq);
Jon Maloy64ac5f52017-10-13 11:04:20 +02001979 break;
1980 default:
1981 break;
1982 }
1983
Jon Maloyb7d42632017-10-13 11:04:26 +02001984 if (wakeup)
1985 sk->sk_write_space(sk);
1986
Jon Maloy64ac5f52017-10-13 11:04:20 +02001987 kfree_skb(skb);
1988}
1989
Ying Xuef288bef2012-08-21 11:16:57 +08001990/**
Jon Maloy39fdc9c2018-09-28 20:23:20 +02001991 * tipc_sk_filter_connect - check incoming message for a connection-based socket
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001992 * @tsk: TIPC socket
Jon Maloy39fdc9c2018-09-28 20:23:20 +02001993 * @skb: pointer to message buffer.
1994 * Returns true if message should be added to receive queue, false otherwise
Ying Xue7e6c1312012-11-29 18:39:14 -05001995 */
Jon Maloy64ac5f52017-10-13 11:04:20 +02001996static bool tipc_sk_filter_connect(struct tipc_sock *tsk, struct sk_buff *skb)
Ying Xue7e6c1312012-11-29 18:39:14 -05001997{
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001998 struct sock *sk = &tsk->sk;
Ying Xuef2f98002015-01-09 15:27:05 +08001999 struct net *net = sock_net(sk);
Jon Paul Maloycda36962015-07-22 10:11:20 -04002000 struct tipc_msg *hdr = buf_msg(skb);
Jon Maloy39fdc9c2018-09-28 20:23:20 +02002001 bool con_msg = msg_connected(hdr);
2002 u32 pport = tsk_peer_port(tsk);
2003 u32 pnode = tsk_peer_node(tsk);
2004 u32 oport = msg_origport(hdr);
2005 u32 onode = msg_orignode(hdr);
2006 int err = msg_errcode(hdr);
Tung Nguyen67879272018-09-28 20:23:22 +02002007 unsigned long delay;
Ying Xue7e6c1312012-11-29 18:39:14 -05002008
Jon Paul Maloycda36962015-07-22 10:11:20 -04002009 if (unlikely(msg_mcast(hdr)))
2010 return false;
Ying Xue7e6c1312012-11-29 18:39:14 -05002011
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002012 switch (sk->sk_state) {
2013 case TIPC_CONNECTING:
Jon Maloy39fdc9c2018-09-28 20:23:20 +02002014 /* Setup ACK */
2015 if (likely(con_msg)) {
2016 if (err)
2017 break;
2018 tipc_sk_finish_conn(tsk, oport, onode);
2019 msg_set_importance(&tsk->phdr, msg_importance(hdr));
2020 /* ACK+ message with data is added to receive queue */
2021 if (msg_data_sz(hdr))
2022 return true;
2023 /* Empty ACK-, - wake up sleeping connect() and drop */
2024 sk->sk_data_ready(sk);
2025 msg_set_dest_droppable(hdr, 1);
2026 return false;
Parthasarathy Bhuvaragan4e0df492017-04-26 10:05:01 +02002027 }
Jon Maloy39fdc9c2018-09-28 20:23:20 +02002028 /* Ignore connectionless message if not from listening socket */
2029 if (oport != pport || onode != pnode)
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +01002030 return false;
2031
Tung Nguyen67879272018-09-28 20:23:22 +02002032 /* Rejected SYN */
2033 if (err != TIPC_ERR_OVERLOAD)
2034 break;
2035
2036 /* Prepare for new setup attempt if we have a SYN clone */
2037 if (skb_queue_empty(&sk->sk_write_queue))
2038 break;
2039 get_random_bytes(&delay, 2);
2040 delay %= (tsk->conn_timeout / 4);
2041 delay = msecs_to_jiffies(delay + 100);
2042 sk_reset_timer(sk, &sk->sk_timer, jiffies + delay);
2043 return false;
Jon Maloy39fdc9c2018-09-28 20:23:20 +02002044 case TIPC_OPEN:
2045 case TIPC_DISCONNECTING:
2046 return false;
2047 case TIPC_LISTEN:
2048 /* Accept only SYN message */
Jon Maloy25b92212018-09-28 20:23:21 +02002049 if (!msg_is_syn(hdr) &&
2050 tipc_node_get_capabilities(net, onode) & TIPC_SYN_BIT)
2051 return false;
Jon Maloy39fdc9c2018-09-28 20:23:20 +02002052 if (!con_msg && !err)
2053 return true;
2054 return false;
2055 case TIPC_ESTABLISHED:
2056 /* Accept only connection-based messages sent by peer */
2057 if (likely(con_msg && !err && pport == oport && pnode == onode))
2058 return true;
2059 if (!tsk_peer_msg(tsk, hdr))
2060 return false;
2061 if (!err)
2062 return true;
2063 tipc_set_sk_state(sk, TIPC_DISCONNECTING);
2064 tipc_node_remove_conn(net, pnode, tsk->portid);
2065 sk->sk_state_change(sk);
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +01002066 return true;
Ying Xue7e6c1312012-11-29 18:39:14 -05002067 default:
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +01002068 pr_err("Unknown sk_state %u\n", sk->sk_state);
Ying Xue7e6c1312012-11-29 18:39:14 -05002069 }
Jon Maloy39fdc9c2018-09-28 20:23:20 +02002070 /* Abort connection setup attempt */
2071 tipc_set_sk_state(sk, TIPC_DISCONNECTING);
2072 sk->sk_err = ECONNREFUSED;
2073 sk->sk_state_change(sk);
2074 return true;
Ying Xue7e6c1312012-11-29 18:39:14 -05002075}
2076
2077/**
Ying Xueaba79f32013-01-20 23:30:09 +01002078 * rcvbuf_limit - get proper overload limit of socket receive queue
2079 * @sk: socket
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002080 * @skb: message
Ying Xueaba79f32013-01-20 23:30:09 +01002081 *
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002082 * For connection oriented messages, irrespective of importance,
2083 * default queue limit is 2 MB.
Ying Xueaba79f32013-01-20 23:30:09 +01002084 *
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002085 * For connectionless messages, queue limits are based on message
2086 * importance as follows:
Ying Xueaba79f32013-01-20 23:30:09 +01002087 *
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002088 * TIPC_LOW_IMPORTANCE (2 MB)
2089 * TIPC_MEDIUM_IMPORTANCE (4 MB)
2090 * TIPC_HIGH_IMPORTANCE (8 MB)
2091 * TIPC_CRITICAL_IMPORTANCE (16 MB)
Ying Xueaba79f32013-01-20 23:30:09 +01002092 *
2093 * Returns overload limit according to corresponding message importance
2094 */
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002095static unsigned int rcvbuf_limit(struct sock *sk, struct sk_buff *skb)
Ying Xueaba79f32013-01-20 23:30:09 +01002096{
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002097 struct tipc_sock *tsk = tipc_sk(sk);
2098 struct tipc_msg *hdr = buf_msg(skb);
Ying Xueaba79f32013-01-20 23:30:09 +01002099
Jon Maloyb7d42632017-10-13 11:04:26 +02002100 if (unlikely(msg_in_group(hdr)))
2101 return sk->sk_rcvbuf;
2102
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002103 if (unlikely(!msg_connected(hdr)))
2104 return sk->sk_rcvbuf << msg_importance(hdr);
wangweidong0cee6bb2013-12-12 09:36:39 +08002105
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002106 if (likely(tsk->peer_caps & TIPC_BLOCK_FLOWCTL))
2107 return sk->sk_rcvbuf;
2108
2109 return FLOWCTL_MSG_LIM;
Ying Xueaba79f32013-01-20 23:30:09 +01002110}
2111
2112/**
Jon Maloy64ac5f52017-10-13 11:04:20 +02002113 * tipc_sk_filter_rcv - validate incoming message
Allan Stephens0c3141e2008-04-15 00:22:02 -07002114 * @sk: socket
Jon Paul Maloycda36962015-07-22 10:11:20 -04002115 * @skb: pointer to message.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002116 *
Allan Stephens0c3141e2008-04-15 00:22:02 -07002117 * Enqueues message on receive queue if acceptable; optionally handles
2118 * disconnect indication for a connected socket.
2119 *
Jon Paul Maloy1186adf2015-02-05 08:36:37 -05002120 * Called with socket lock already taken
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002121 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002122 */
Jon Maloy64ac5f52017-10-13 11:04:20 +02002123static void tipc_sk_filter_rcv(struct sock *sk, struct sk_buff *skb,
2124 struct sk_buff_head *xmitq)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002125{
Jon Maloy64ac5f52017-10-13 11:04:20 +02002126 bool sk_conn = !tipc_sk_type_connectionless(sk);
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002127 struct tipc_sock *tsk = tipc_sk(sk);
Jon Maloy75da2162017-10-13 11:04:23 +02002128 struct tipc_group *grp = tsk->group;
Jon Paul Maloycda36962015-07-22 10:11:20 -04002129 struct tipc_msg *hdr = buf_msg(skb);
Jon Maloy64ac5f52017-10-13 11:04:20 +02002130 struct net *net = sock_net(sk);
2131 struct sk_buff_head inputq;
2132 int limit, err = TIPC_OK;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002133
Parthasarathy Bhuvaraganba8aebe2016-11-01 14:02:37 +01002134 TIPC_SKB_CB(skb)->bytes_read = 0;
Jon Maloy64ac5f52017-10-13 11:04:20 +02002135 __skb_queue_head_init(&inputq);
2136 __skb_queue_tail(&inputq, skb);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002137
Jon Maloy64ac5f52017-10-13 11:04:20 +02002138 if (unlikely(!msg_isdata(hdr)))
2139 tipc_sk_proto_rcv(sk, &inputq, xmitq);
Jon Paul Maloycda36962015-07-22 10:11:20 -04002140
Jon Maloy75da2162017-10-13 11:04:23 +02002141 if (unlikely(grp))
2142 tipc_group_filter_msg(grp, &inputq, xmitq);
2143
Jon Maloy64ac5f52017-10-13 11:04:20 +02002144 /* Validate and add to receive buffer if there is space */
2145 while ((skb = __skb_dequeue(&inputq))) {
2146 hdr = buf_msg(skb);
2147 limit = rcvbuf_limit(sk, skb);
2148 if ((sk_conn && !tipc_sk_filter_connect(tsk, skb)) ||
Jon Maloy75da2162017-10-13 11:04:23 +02002149 (!sk_conn && msg_connected(hdr)) ||
2150 (!grp && msg_in_group(hdr)))
Jon Maloy64ac5f52017-10-13 11:04:20 +02002151 err = TIPC_ERR_NO_PORT;
GhantaKrishnamurthy MohanKrishna872619d2018-03-21 14:37:45 +01002152 else if (sk_rmem_alloc_get(sk) + skb->truesize >= limit) {
2153 atomic_inc(&sk->sk_drops);
Jon Maloy64ac5f52017-10-13 11:04:20 +02002154 err = TIPC_ERR_OVERLOAD;
GhantaKrishnamurthy MohanKrishna872619d2018-03-21 14:37:45 +01002155 }
Jon Maloy64ac5f52017-10-13 11:04:20 +02002156
2157 if (unlikely(err)) {
2158 tipc_skb_reject(net, err, skb, xmitq);
2159 err = TIPC_OK;
2160 continue;
2161 }
2162 __skb_queue_tail(&sk->sk_receive_queue, skb);
2163 skb_set_owner_r(skb, sk);
2164 sk->sk_data_ready(sk);
2165 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002166}
2167
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002168/**
Jon Maloy64ac5f52017-10-13 11:04:20 +02002169 * tipc_sk_backlog_rcv - handle incoming message from backlog queue
Allan Stephens0c3141e2008-04-15 00:22:02 -07002170 * @sk: socket
Ying Xuea6ca1092014-11-26 11:41:55 +08002171 * @skb: message
Allan Stephens0c3141e2008-04-15 00:22:02 -07002172 *
Jon Paul Maloye3a77562015-02-05 08:36:39 -05002173 * Caller must hold socket lock
Allan Stephens0c3141e2008-04-15 00:22:02 -07002174 */
Jon Maloy64ac5f52017-10-13 11:04:20 +02002175static int tipc_sk_backlog_rcv(struct sock *sk, struct sk_buff *skb)
Allan Stephens0c3141e2008-04-15 00:22:02 -07002176{
Jon Maloy64ac5f52017-10-13 11:04:20 +02002177 unsigned int before = sk_rmem_alloc_get(sk);
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002178 struct sk_buff_head xmitq;
Jon Maloy64ac5f52017-10-13 11:04:20 +02002179 unsigned int added;
Allan Stephens0c3141e2008-04-15 00:22:02 -07002180
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002181 __skb_queue_head_init(&xmitq);
2182
Jon Maloy64ac5f52017-10-13 11:04:20 +02002183 tipc_sk_filter_rcv(sk, skb, &xmitq);
2184 added = sk_rmem_alloc_get(sk) - before;
2185 atomic_add(added, &tipc_sk(sk)->dupl_rcvcnt);
2186
2187 /* Send pending response/rejected messages, if any */
Jon Maloyf70d37b2017-10-13 11:04:21 +02002188 tipc_node_distr_xmit(sock_net(sk), &xmitq);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002189 return 0;
2190}
2191
2192/**
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002193 * tipc_sk_enqueue - extract all buffers with destination 'dport' from
2194 * inputq and try adding them to socket or backlog queue
2195 * @inputq: list of incoming buffers with potentially different destinations
2196 * @sk: socket where the buffers should be enqueued
2197 * @dport: port number for the socket
Jon Paul Maloyd570d862015-02-05 08:36:38 -05002198 *
2199 * Caller must hold socket lock
Jon Paul Maloyd570d862015-02-05 08:36:38 -05002200 */
Jon Paul Maloycda36962015-07-22 10:11:20 -04002201static void tipc_sk_enqueue(struct sk_buff_head *inputq, struct sock *sk,
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002202 u32 dport, struct sk_buff_head *xmitq)
Jon Paul Maloyd570d862015-02-05 08:36:38 -05002203{
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002204 unsigned long time_limit = jiffies + 2;
2205 struct sk_buff *skb;
Jon Paul Maloyd570d862015-02-05 08:36:38 -05002206 unsigned int lim;
2207 atomic_t *dcnt;
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002208 u32 onode;
Jon Paul Maloyd570d862015-02-05 08:36:38 -05002209
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002210 while (skb_queue_len(inputq)) {
Jon Paul Maloy51a00da2015-02-08 11:10:50 -05002211 if (unlikely(time_after_eq(jiffies, time_limit)))
Jon Paul Maloycda36962015-07-22 10:11:20 -04002212 return;
2213
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002214 skb = tipc_skb_dequeue(inputq, dport);
2215 if (unlikely(!skb))
Jon Paul Maloycda36962015-07-22 10:11:20 -04002216 return;
2217
2218 /* Add message directly to receive queue if possible */
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002219 if (!sock_owned_by_user(sk)) {
Jon Maloy64ac5f52017-10-13 11:04:20 +02002220 tipc_sk_filter_rcv(sk, skb, xmitq);
Jon Paul Maloycda36962015-07-22 10:11:20 -04002221 continue;
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002222 }
Jon Paul Maloycda36962015-07-22 10:11:20 -04002223
2224 /* Try backlog, compensating for double-counted bytes */
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002225 dcnt = &tipc_sk(sk)->dupl_rcvcnt;
Jon Paul Maloy7c8bcfb2016-05-02 11:58:45 -04002226 if (!sk->sk_backlog.len)
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002227 atomic_set(dcnt, 0);
2228 lim = rcvbuf_limit(sk, skb) + atomic_read(dcnt);
2229 if (likely(!sk_add_backlog(sk, skb, lim)))
2230 continue;
Jon Paul Maloycda36962015-07-22 10:11:20 -04002231
2232 /* Overload => reject message back to sender */
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002233 onode = tipc_own_addr(sock_net(sk));
GhantaKrishnamurthy MohanKrishna872619d2018-03-21 14:37:45 +01002234 atomic_inc(&sk->sk_drops);
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002235 if (tipc_msg_reverse(onode, &skb, TIPC_ERR_OVERLOAD))
2236 __skb_queue_tail(xmitq, skb);
Jon Paul Maloycda36962015-07-22 10:11:20 -04002237 break;
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002238 }
Jon Paul Maloyd570d862015-02-05 08:36:38 -05002239}
2240
2241/**
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002242 * tipc_sk_rcv - handle a chain of incoming buffers
2243 * @inputq: buffer list containing the buffers
2244 * Consumes all buffers in list until inputq is empty
2245 * Note: may be called in multiple threads referring to the same queue
Allan Stephens0c3141e2008-04-15 00:22:02 -07002246 */
Jon Paul Maloycda36962015-07-22 10:11:20 -04002247void tipc_sk_rcv(struct net *net, struct sk_buff_head *inputq)
Allan Stephens0c3141e2008-04-15 00:22:02 -07002248{
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002249 struct sk_buff_head xmitq;
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002250 u32 dnode, dport = 0;
Erik Hugne9871b272015-04-23 09:37:39 -04002251 int err;
Jon Paul Maloy9816f062014-05-14 05:39:15 -04002252 struct tipc_sock *tsk;
Jon Paul Maloy9816f062014-05-14 05:39:15 -04002253 struct sock *sk;
Jon Paul Maloycda36962015-07-22 10:11:20 -04002254 struct sk_buff *skb;
Jon Paul Maloy9816f062014-05-14 05:39:15 -04002255
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002256 __skb_queue_head_init(&xmitq);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002257 while (skb_queue_len(inputq)) {
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002258 dport = tipc_skb_peek_port(inputq, dport);
2259 tsk = tipc_sk_lookup(net, dport);
Jon Paul Maloycda36962015-07-22 10:11:20 -04002260
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002261 if (likely(tsk)) {
2262 sk = &tsk->sk;
2263 if (likely(spin_trylock_bh(&sk->sk_lock.slock))) {
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002264 tipc_sk_enqueue(inputq, sk, dport, &xmitq);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002265 spin_unlock_bh(&sk->sk_lock.slock);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002266 }
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002267 /* Send pending response/rejected messages, if any */
Jon Maloyf70d37b2017-10-13 11:04:21 +02002268 tipc_node_distr_xmit(sock_net(sk), &xmitq);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002269 sock_put(sk);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002270 continue;
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002271 }
Jon Paul Maloycda36962015-07-22 10:11:20 -04002272 /* No destination socket => dequeue skb if still there */
2273 skb = tipc_skb_dequeue(inputq, dport);
2274 if (!skb)
2275 return;
2276
2277 /* Try secondary lookup if unresolved named message */
2278 err = TIPC_ERR_NO_PORT;
2279 if (tipc_msg_lookup_dest(net, skb, &err))
2280 goto xmit;
2281
2282 /* Prepare for message rejection */
2283 if (!tipc_msg_reverse(tipc_own_addr(net), &skb, err))
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002284 continue;
Jon Paul Maloye3a77562015-02-05 08:36:39 -05002285xmit:
Jon Paul Maloycda36962015-07-22 10:11:20 -04002286 dnode = msg_destnode(buf_msg(skb));
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -04002287 tipc_node_xmit_skb(net, skb, dnode, dport);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002288 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07002289}
2290
Ying Xue78eb3a52014-01-17 09:50:03 +08002291static int tipc_wait_for_connect(struct socket *sock, long *timeo_p)
2292{
WANG Congd9dc8b02016-11-11 10:20:50 -08002293 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Ying Xue78eb3a52014-01-17 09:50:03 +08002294 struct sock *sk = sock->sk;
Ying Xue78eb3a52014-01-17 09:50:03 +08002295 int done;
2296
2297 do {
2298 int err = sock_error(sk);
2299 if (err)
2300 return err;
2301 if (!*timeo_p)
2302 return -ETIMEDOUT;
2303 if (signal_pending(current))
2304 return sock_intr_errno(*timeo_p);
2305
WANG Congd9dc8b02016-11-11 10:20:50 -08002306 add_wait_queue(sk_sleep(sk), &wait);
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002307 done = sk_wait_event(sk, timeo_p,
WANG Congd9dc8b02016-11-11 10:20:50 -08002308 sk->sk_state != TIPC_CONNECTING, &wait);
2309 remove_wait_queue(sk_sleep(sk), &wait);
Ying Xue78eb3a52014-01-17 09:50:03 +08002310 } while (!done);
2311 return 0;
2312}
2313
Per Lidenb97bf3f2006-01-02 19:04:38 +01002314/**
Ying Xue247f0f32014-02-18 16:06:46 +08002315 * tipc_connect - establish a connection to another TIPC port
Per Lidenb97bf3f2006-01-02 19:04:38 +01002316 * @sock: socket structure
2317 * @dest: socket address for destination port
2318 * @destlen: size of socket address data structure
Allan Stephens0c3141e2008-04-15 00:22:02 -07002319 * @flags: file-related flags associated with socket
Per Lidenb97bf3f2006-01-02 19:04:38 +01002320 *
2321 * Returns 0 on success, errno otherwise
2322 */
Ying Xue247f0f32014-02-18 16:06:46 +08002323static int tipc_connect(struct socket *sock, struct sockaddr *dest,
2324 int destlen, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002325{
Allan Stephens0c3141e2008-04-15 00:22:02 -07002326 struct sock *sk = sock->sk;
Erik Hugnef2f80362015-03-19 09:02:19 +01002327 struct tipc_sock *tsk = tipc_sk(sk);
Allan Stephensb89741a2008-04-15 00:20:37 -07002328 struct sockaddr_tipc *dst = (struct sockaddr_tipc *)dest;
2329 struct msghdr m = {NULL,};
Erik Hugnef2f80362015-03-19 09:02:19 +01002330 long timeout = (flags & O_NONBLOCK) ? 0 : tsk->conn_timeout;
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002331 int previous;
Erik Hugnef2f80362015-03-19 09:02:19 +01002332 int res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002333
Jon Maloy23998832017-10-13 11:04:18 +02002334 if (destlen != sizeof(struct sockaddr_tipc))
2335 return -EINVAL;
2336
Allan Stephens0c3141e2008-04-15 00:22:02 -07002337 lock_sock(sk);
2338
Jon Maloy75da2162017-10-13 11:04:23 +02002339 if (tsk->group) {
2340 res = -EINVAL;
2341 goto exit;
2342 }
2343
Jon Maloy23998832017-10-13 11:04:18 +02002344 if (dst->family == AF_UNSPEC) {
2345 memset(&tsk->peer, 0, sizeof(struct sockaddr_tipc));
2346 if (!tipc_sk_type_connectionless(sk))
2347 res = -EINVAL;
2348 goto exit;
2349 } else if (dst->family != AF_TIPC) {
2350 res = -EINVAL;
2351 }
2352 if (dst->addrtype != TIPC_ADDR_ID && dst->addrtype != TIPC_ADDR_NAME)
2353 res = -EINVAL;
2354 if (res)
2355 goto exit;
2356
Erik Hugnef2f80362015-03-19 09:02:19 +01002357 /* DGRAM/RDM connect(), just save the destaddr */
Parthasarathy Bhuvaraganc7520232016-11-01 14:02:42 +01002358 if (tipc_sk_type_connectionless(sk)) {
Jon Maloy23998832017-10-13 11:04:18 +02002359 memcpy(&tsk->peer, dest, destlen);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002360 goto exit;
2361 }
2362
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002363 previous = sk->sk_state;
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +01002364
2365 switch (sk->sk_state) {
2366 case TIPC_OPEN:
Ying Xue584d24b2012-11-29 18:51:19 -05002367 /* Send a 'SYN-' to destination */
2368 m.msg_name = dest;
2369 m.msg_namelen = destlen;
2370
2371 /* If connect is in non-blocking case, set MSG_DONTWAIT to
2372 * indicate send_msg() is never blocked.
2373 */
2374 if (!timeout)
2375 m.msg_flags = MSG_DONTWAIT;
2376
Ying Xue39a02952015-03-02 15:37:47 +08002377 res = __tipc_sendmsg(sock, &m, 0);
Ying Xue584d24b2012-11-29 18:51:19 -05002378 if ((res < 0) && (res != -EWOULDBLOCK))
2379 goto exit;
2380
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002381 /* Just entered TIPC_CONNECTING state; the only
Ying Xue584d24b2012-11-29 18:51:19 -05002382 * difference is that return value in non-blocking
2383 * case is EINPROGRESS, rather than EALREADY.
2384 */
2385 res = -EINPROGRESS;
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002386 /* fall thru' */
2387 case TIPC_CONNECTING:
2388 if (!timeout) {
2389 if (previous == TIPC_CONNECTING)
2390 res = -EALREADY;
Ying Xue78eb3a52014-01-17 09:50:03 +08002391 goto exit;
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002392 }
Ying Xue78eb3a52014-01-17 09:50:03 +08002393 timeout = msecs_to_jiffies(timeout);
2394 /* Wait until an 'ACK' or 'RST' arrives, or a timeout occurs */
2395 res = tipc_wait_for_connect(sock, &timeout);
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +01002396 break;
2397 case TIPC_ESTABLISHED:
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002398 res = -EISCONN;
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +01002399 break;
2400 default:
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002401 res = -EINVAL;
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +01002402 }
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002403
Allan Stephens0c3141e2008-04-15 00:22:02 -07002404exit:
2405 release_sock(sk);
Allan Stephensb89741a2008-04-15 00:20:37 -07002406 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002407}
2408
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002409/**
Ying Xue247f0f32014-02-18 16:06:46 +08002410 * tipc_listen - allow socket to listen for incoming connections
Per Lidenb97bf3f2006-01-02 19:04:38 +01002411 * @sock: socket structure
2412 * @len: (unused)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002413 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002414 * Returns 0 on success, errno otherwise
2415 */
Ying Xue247f0f32014-02-18 16:06:46 +08002416static int tipc_listen(struct socket *sock, int len)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002417{
Allan Stephens0c3141e2008-04-15 00:22:02 -07002418 struct sock *sk = sock->sk;
2419 int res;
2420
2421 lock_sock(sk);
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +01002422 res = tipc_set_sk_state(sk, TIPC_LISTEN);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002423 release_sock(sk);
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +01002424
Allan Stephens0c3141e2008-04-15 00:22:02 -07002425 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002426}
2427
Ying Xue6398e232014-01-17 09:50:04 +08002428static int tipc_wait_for_accept(struct socket *sock, long timeo)
2429{
2430 struct sock *sk = sock->sk;
2431 DEFINE_WAIT(wait);
2432 int err;
2433
2434 /* True wake-one mechanism for incoming connections: only
2435 * one process gets woken up, not the 'whole herd'.
2436 * Since we do not 'race & poll' for established sockets
2437 * anymore, the common case will execute the loop only once.
2438 */
2439 for (;;) {
2440 prepare_to_wait_exclusive(sk_sleep(sk), &wait,
2441 TASK_INTERRUPTIBLE);
Ying Xuefe8e4642014-03-06 14:40:18 +01002442 if (timeo && skb_queue_empty(&sk->sk_receive_queue)) {
Ying Xue6398e232014-01-17 09:50:04 +08002443 release_sock(sk);
2444 timeo = schedule_timeout(timeo);
2445 lock_sock(sk);
2446 }
2447 err = 0;
2448 if (!skb_queue_empty(&sk->sk_receive_queue))
2449 break;
Ying Xue6398e232014-01-17 09:50:04 +08002450 err = -EAGAIN;
2451 if (!timeo)
2452 break;
Erik Hugne143fe222015-03-09 10:43:42 +01002453 err = sock_intr_errno(timeo);
2454 if (signal_pending(current))
2455 break;
Ying Xue6398e232014-01-17 09:50:04 +08002456 }
2457 finish_wait(sk_sleep(sk), &wait);
2458 return err;
2459}
2460
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002461/**
Ying Xue247f0f32014-02-18 16:06:46 +08002462 * tipc_accept - wait for connection request
Per Lidenb97bf3f2006-01-02 19:04:38 +01002463 * @sock: listening socket
2464 * @newsock: new socket that is to be connected
2465 * @flags: file-related flags associated with socket
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002466 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002467 * Returns 0 on success, errno otherwise
2468 */
David Howellscdfbabf2017-03-09 08:09:05 +00002469static int tipc_accept(struct socket *sock, struct socket *new_sock, int flags,
2470 bool kern)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002471{
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002472 struct sock *new_sk, *sk = sock->sk;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002473 struct sk_buff *buf;
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002474 struct tipc_sock *new_tsock;
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002475 struct tipc_msg *msg;
Ying Xue6398e232014-01-17 09:50:04 +08002476 long timeo;
Allan Stephens0c3141e2008-04-15 00:22:02 -07002477 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002478
Allan Stephens0c3141e2008-04-15 00:22:02 -07002479 lock_sock(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002480
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +01002481 if (sk->sk_state != TIPC_LISTEN) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07002482 res = -EINVAL;
2483 goto exit;
2484 }
Ying Xue6398e232014-01-17 09:50:04 +08002485 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
2486 res = tipc_wait_for_accept(sock, timeo);
2487 if (res)
2488 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07002489
2490 buf = skb_peek(&sk->sk_receive_queue);
2491
David Howellscdfbabf2017-03-09 08:09:05 +00002492 res = tipc_sk_create(sock_net(sock->sk), new_sock, 0, kern);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002493 if (res)
2494 goto exit;
Stephen Smalleyfdd75ea2015-07-07 09:43:45 -04002495 security_sk_clone(sock->sk, new_sock->sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002496
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002497 new_sk = new_sock->sk;
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002498 new_tsock = tipc_sk(new_sk);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002499 msg = buf_msg(buf);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002500
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002501 /* we lock on new_sk; but lockdep sees the lock on sk */
2502 lock_sock_nested(new_sk, SINGLE_DEPTH_NESTING);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002503
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002504 /*
2505 * Reject any stray messages received by new socket
2506 * before the socket lock was taken (very, very unlikely)
2507 */
Jon Paul Maloy2e84c602014-08-22 18:09:18 -04002508 tsk_rej_rx_queue(new_sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002509
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002510 /* Connect new socket to it's peer */
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002511 tipc_sk_finish_conn(new_tsock, msg_origport(msg), msg_orignode(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002512
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002513 tsk_set_importance(new_tsock, msg_importance(msg));
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002514 if (msg_named(msg)) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002515 new_tsock->conn_type = msg_nametype(msg);
2516 new_tsock->conn_instance = msg_nameinst(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002517 }
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002518
2519 /*
2520 * Respond to 'SYN-' by discarding it & returning 'ACK'-.
2521 * Respond to 'SYN+' by queuing it on new socket.
2522 */
2523 if (!msg_data_sz(msg)) {
2524 struct msghdr m = {NULL,};
2525
Jon Paul Maloy2e84c602014-08-22 18:09:18 -04002526 tsk_advance_rx_queue(sk);
Jon Paul Maloy365ad352017-01-03 10:55:11 -05002527 __tipc_sendstream(new_sock, &m, 0);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002528 } else {
2529 __skb_dequeue(&sk->sk_receive_queue);
2530 __skb_queue_head(&new_sk->sk_receive_queue, buf);
Ying Xueaba79f32013-01-20 23:30:09 +01002531 skb_set_owner_r(buf, new_sk);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002532 }
2533 release_sock(new_sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002534exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07002535 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002536 return res;
2537}
2538
2539/**
Ying Xue247f0f32014-02-18 16:06:46 +08002540 * tipc_shutdown - shutdown socket connection
Per Lidenb97bf3f2006-01-02 19:04:38 +01002541 * @sock: socket structure
Allan Stephense247a8f2008-03-06 15:05:38 -08002542 * @how: direction to close (must be SHUT_RDWR)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002543 *
2544 * Terminates connection (if necessary), then purges socket's receive queue.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002545 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002546 * Returns 0 on success, errno otherwise
2547 */
Ying Xue247f0f32014-02-18 16:06:46 +08002548static int tipc_shutdown(struct socket *sock, int how)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002549{
Allan Stephens0c3141e2008-04-15 00:22:02 -07002550 struct sock *sk = sock->sk;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002551 int res;
2552
Allan Stephense247a8f2008-03-06 15:05:38 -08002553 if (how != SHUT_RDWR)
2554 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002555
Allan Stephens0c3141e2008-04-15 00:22:02 -07002556 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002557
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +01002558 __tipc_shutdown(sock, TIPC_CONN_SHUTDOWN);
2559 sk->sk_shutdown = SEND_SHUTDOWN;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002560
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +01002561 if (sk->sk_state == TIPC_DISCONNECTING) {
Ying Xue75031152012-10-29 09:38:15 -04002562 /* Discard any unreceived messages */
Ying Xue57467e52013-01-20 23:30:08 +01002563 __skb_queue_purge(&sk->sk_receive_queue);
Ying Xue75031152012-10-29 09:38:15 -04002564
2565 /* Wake up anyone sleeping in poll */
2566 sk->sk_state_change(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002567 res = 0;
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +01002568 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002569 res = -ENOTCONN;
2570 }
2571
Allan Stephens0c3141e2008-04-15 00:22:02 -07002572 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002573 return res;
2574}
2575
Jon Maloyafe87922018-09-28 20:23:19 +02002576static void tipc_sk_check_probing_state(struct sock *sk,
2577 struct sk_buff_head *list)
2578{
2579 struct tipc_sock *tsk = tipc_sk(sk);
2580 u32 pnode = tsk_peer_node(tsk);
2581 u32 pport = tsk_peer_port(tsk);
2582 u32 self = tsk_own_node(tsk);
2583 u32 oport = tsk->portid;
2584 struct sk_buff *skb;
2585
2586 if (tsk->probe_unacked) {
2587 tipc_set_sk_state(sk, TIPC_DISCONNECTING);
2588 sk->sk_err = ECONNABORTED;
2589 tipc_node_remove_conn(sock_net(sk), pnode, pport);
2590 sk->sk_state_change(sk);
2591 return;
2592 }
2593 /* Prepare new probe */
2594 skb = tipc_msg_create(CONN_MANAGER, CONN_PROBE, INT_H_SIZE, 0,
2595 pnode, self, pport, oport, TIPC_OK);
2596 if (skb)
2597 __skb_queue_tail(list, skb);
2598 tsk->probe_unacked = true;
2599 sk_reset_timer(sk, &sk->sk_timer, jiffies + CONN_PROBING_INTV);
2600}
2601
Tung Nguyen67879272018-09-28 20:23:22 +02002602static void tipc_sk_retry_connect(struct sock *sk, struct sk_buff_head *list)
2603{
2604 struct tipc_sock *tsk = tipc_sk(sk);
2605
2606 /* Try again later if dest link is congested */
2607 if (tsk->cong_link_cnt) {
2608 sk_reset_timer(sk, &sk->sk_timer, msecs_to_jiffies(100));
2609 return;
2610 }
2611 /* Prepare SYN for retransmit */
2612 tipc_msg_skb_clone(&sk->sk_write_queue, list);
2613}
2614
Kees Cook31b102b2017-10-30 14:06:45 -07002615static void tipc_sk_timeout(struct timer_list *t)
Jon Paul Maloy57289012014-08-22 18:09:09 -04002616{
Kees Cook31b102b2017-10-30 14:06:45 -07002617 struct sock *sk = from_timer(sk, t, sk_timer);
2618 struct tipc_sock *tsk = tipc_sk(sk);
Jon Maloyafe87922018-09-28 20:23:19 +02002619 u32 pnode = tsk_peer_node(tsk);
2620 struct sk_buff_head list;
Tung Nguyen67879272018-09-28 20:23:22 +02002621 int rc = 0;
Jon Paul Maloy57289012014-08-22 18:09:09 -04002622
Jon Maloyafe87922018-09-28 20:23:19 +02002623 skb_queue_head_init(&list);
Jon Paul Maloy57289012014-08-22 18:09:09 -04002624 bh_lock_sock(sk);
Jon Maloy0d5fcebf2017-10-20 11:21:32 +02002625
2626 /* Try again later if socket is busy */
2627 if (sock_owned_by_user(sk)) {
2628 sk_reset_timer(sk, &sk->sk_timer, jiffies + HZ / 20);
Jon Maloyafe87922018-09-28 20:23:19 +02002629 bh_unlock_sock(sk);
2630 return;
Jon Paul Maloy6c9808c2014-08-22 18:09:16 -04002631 }
Jon Paul Maloy57289012014-08-22 18:09:09 -04002632
Jon Maloyafe87922018-09-28 20:23:19 +02002633 if (sk->sk_state == TIPC_ESTABLISHED)
2634 tipc_sk_check_probing_state(sk, &list);
Tung Nguyen67879272018-09-28 20:23:22 +02002635 else if (sk->sk_state == TIPC_CONNECTING)
2636 tipc_sk_retry_connect(sk, &list);
Jon Maloyafe87922018-09-28 20:23:19 +02002637
Jon Paul Maloy57289012014-08-22 18:09:09 -04002638 bh_unlock_sock(sk);
Jon Maloyafe87922018-09-28 20:23:19 +02002639
2640 if (!skb_queue_empty(&list))
Tung Nguyen67879272018-09-28 20:23:22 +02002641 rc = tipc_node_xmit(sock_net(sk), &list, pnode, tsk->portid);
Jon Maloyafe87922018-09-28 20:23:19 +02002642
Tung Nguyen67879272018-09-28 20:23:22 +02002643 /* SYN messages may cause link congestion */
2644 if (rc == -ELINKCONG) {
2645 tipc_dest_push(&tsk->cong_links, pnode, 0);
2646 tsk->cong_link_cnt = 1;
2647 }
Ying Xue07f6c4b2015-01-07 13:41:58 +08002648 sock_put(sk);
Jon Paul Maloy57289012014-08-22 18:09:09 -04002649}
2650
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002651static int tipc_sk_publish(struct tipc_sock *tsk, uint scope,
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002652 struct tipc_name_seq const *seq)
2653{
Parthasarathy Bhuvaragand6fb7e92016-11-01 14:02:40 +01002654 struct sock *sk = &tsk->sk;
2655 struct net *net = sock_net(sk);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002656 struct publication *publ;
2657 u32 key;
2658
Jon Maloy928df182018-03-15 16:48:51 +01002659 if (scope != TIPC_NODE_SCOPE)
2660 scope = TIPC_CLUSTER_SCOPE;
2661
Parthasarathy Bhuvaragand6fb7e92016-11-01 14:02:40 +01002662 if (tipc_sk_connected(sk))
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002663 return -EINVAL;
Ying Xue07f6c4b2015-01-07 13:41:58 +08002664 key = tsk->portid + tsk->pub_count + 1;
2665 if (key == tsk->portid)
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002666 return -EADDRINUSE;
2667
Ying Xuef2f98002015-01-09 15:27:05 +08002668 publ = tipc_nametbl_publish(net, seq->type, seq->lower, seq->upper,
Ying Xue07f6c4b2015-01-07 13:41:58 +08002669 scope, tsk->portid, key);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002670 if (unlikely(!publ))
2671 return -EINVAL;
2672
Jon Maloye50e73e2018-03-15 16:48:55 +01002673 list_add(&publ->binding_sock, &tsk->publications);
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002674 tsk->pub_count++;
2675 tsk->published = 1;
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002676 return 0;
2677}
2678
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002679static int tipc_sk_withdraw(struct tipc_sock *tsk, uint scope,
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002680 struct tipc_name_seq const *seq)
2681{
Ying Xuef2f98002015-01-09 15:27:05 +08002682 struct net *net = sock_net(&tsk->sk);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002683 struct publication *publ;
2684 struct publication *safe;
2685 int rc = -EINVAL;
2686
Jon Maloy928df182018-03-15 16:48:51 +01002687 if (scope != TIPC_NODE_SCOPE)
2688 scope = TIPC_CLUSTER_SCOPE;
2689
Jon Maloye50e73e2018-03-15 16:48:55 +01002690 list_for_each_entry_safe(publ, safe, &tsk->publications, binding_sock) {
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002691 if (seq) {
2692 if (publ->scope != scope)
2693 continue;
2694 if (publ->type != seq->type)
2695 continue;
2696 if (publ->lower != seq->lower)
2697 continue;
2698 if (publ->upper != seq->upper)
2699 break;
Ying Xuef2f98002015-01-09 15:27:05 +08002700 tipc_nametbl_withdraw(net, publ->type, publ->lower,
Jon Maloy37922ea2018-03-29 23:20:43 +02002701 publ->upper, publ->key);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002702 rc = 0;
2703 break;
2704 }
Ying Xuef2f98002015-01-09 15:27:05 +08002705 tipc_nametbl_withdraw(net, publ->type, publ->lower,
Jon Maloy37922ea2018-03-29 23:20:43 +02002706 publ->upper, publ->key);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002707 rc = 0;
2708 }
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002709 if (list_empty(&tsk->publications))
2710 tsk->published = 0;
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002711 return rc;
2712}
2713
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002714/* tipc_sk_reinit: set non-zero address in all existing sockets
2715 * when we go from standalone to network mode.
2716 */
Ying Xuee05b31f2015-01-09 15:27:08 +08002717void tipc_sk_reinit(struct net *net)
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002718{
Ying Xuee05b31f2015-01-09 15:27:08 +08002719 struct tipc_net *tn = net_generic(net, tipc_net_id);
Herbert Xu40f9f432017-02-11 19:26:46 +08002720 struct rhashtable_iter iter;
Ying Xue07f6c4b2015-01-07 13:41:58 +08002721 struct tipc_sock *tsk;
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002722 struct tipc_msg *msg;
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002723
Herbert Xu40f9f432017-02-11 19:26:46 +08002724 rhashtable_walk_enter(&tn->sk_rht, &iter);
2725
2726 do {
Tom Herbert97a6ec42017-12-04 10:31:41 -08002727 rhashtable_walk_start(&iter);
Herbert Xu40f9f432017-02-11 19:26:46 +08002728
2729 while ((tsk = rhashtable_walk_next(&iter)) && !IS_ERR(tsk)) {
Cong Wang15ef70e2018-12-10 11:49:55 -08002730 sock_hold(&tsk->sk);
2731 rhashtable_walk_stop(&iter);
2732 lock_sock(&tsk->sk);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002733 msg = &tsk->phdr;
Jon Maloy23fd3ea2018-03-22 20:42:49 +01002734 msg_set_prevnode(msg, tipc_own_addr(net));
2735 msg_set_orignode(msg, tipc_own_addr(net));
Cong Wang15ef70e2018-12-10 11:49:55 -08002736 release_sock(&tsk->sk);
2737 rhashtable_walk_start(&iter);
2738 sock_put(&tsk->sk);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002739 }
Tom Herbert97a6ec42017-12-04 10:31:41 -08002740
Herbert Xu40f9f432017-02-11 19:26:46 +08002741 rhashtable_walk_stop(&iter);
2742 } while (tsk == ERR_PTR(-EAGAIN));
Cong Wangbd583fe2018-08-23 16:19:44 -07002743
2744 rhashtable_walk_exit(&iter);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002745}
2746
Ying Xuee05b31f2015-01-09 15:27:08 +08002747static struct tipc_sock *tipc_sk_lookup(struct net *net, u32 portid)
Ying Xue07f6c4b2015-01-07 13:41:58 +08002748{
Ying Xuee05b31f2015-01-09 15:27:08 +08002749 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002750 struct tipc_sock *tsk;
2751
2752 rcu_read_lock();
Herbert Xu6cca72892015-03-20 21:57:05 +11002753 tsk = rhashtable_lookup_fast(&tn->sk_rht, &portid, tsk_rht_params);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002754 if (tsk)
2755 sock_hold(&tsk->sk);
2756 rcu_read_unlock();
2757
2758 return tsk;
2759}
2760
2761static int tipc_sk_insert(struct tipc_sock *tsk)
2762{
Ying Xuee05b31f2015-01-09 15:27:08 +08002763 struct sock *sk = &tsk->sk;
2764 struct net *net = sock_net(sk);
2765 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002766 u32 remaining = (TIPC_MAX_PORT - TIPC_MIN_PORT) + 1;
2767 u32 portid = prandom_u32() % remaining + TIPC_MIN_PORT;
2768
2769 while (remaining--) {
2770 portid++;
2771 if ((portid < TIPC_MIN_PORT) || (portid > TIPC_MAX_PORT))
2772 portid = TIPC_MIN_PORT;
2773 tsk->portid = portid;
2774 sock_hold(&tsk->sk);
Herbert Xu6cca72892015-03-20 21:57:05 +11002775 if (!rhashtable_lookup_insert_fast(&tn->sk_rht, &tsk->node,
2776 tsk_rht_params))
Ying Xue07f6c4b2015-01-07 13:41:58 +08002777 return 0;
2778 sock_put(&tsk->sk);
2779 }
2780
2781 return -1;
2782}
2783
2784static void tipc_sk_remove(struct tipc_sock *tsk)
2785{
2786 struct sock *sk = &tsk->sk;
Ying Xuee05b31f2015-01-09 15:27:08 +08002787 struct tipc_net *tn = net_generic(sock_net(sk), tipc_net_id);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002788
Herbert Xu6cca72892015-03-20 21:57:05 +11002789 if (!rhashtable_remove_fast(&tn->sk_rht, &tsk->node, tsk_rht_params)) {
Reshetova, Elena41c6d652017-06-30 13:08:01 +03002790 WARN_ON(refcount_read(&sk->sk_refcnt) == 1);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002791 __sock_put(sk);
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002792 }
2793}
2794
Herbert Xu6cca72892015-03-20 21:57:05 +11002795static const struct rhashtable_params tsk_rht_params = {
2796 .nelem_hint = 192,
2797 .head_offset = offsetof(struct tipc_sock, node),
2798 .key_offset = offsetof(struct tipc_sock, portid),
2799 .key_len = sizeof(u32), /* portid */
Herbert Xu6cca72892015-03-20 21:57:05 +11002800 .max_size = 1048576,
2801 .min_size = 256,
Thomas Grafb5e2c152015-03-24 20:42:19 +00002802 .automatic_shrinking = true,
Herbert Xu6cca72892015-03-20 21:57:05 +11002803};
2804
Ying Xuee05b31f2015-01-09 15:27:08 +08002805int tipc_sk_rht_init(struct net *net)
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002806{
Ying Xuee05b31f2015-01-09 15:27:08 +08002807 struct tipc_net *tn = net_generic(net, tipc_net_id);
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002808
Herbert Xu6cca72892015-03-20 21:57:05 +11002809 return rhashtable_init(&tn->sk_rht, &tsk_rht_params);
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002810}
2811
Ying Xuee05b31f2015-01-09 15:27:08 +08002812void tipc_sk_rht_destroy(struct net *net)
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002813{
Ying Xuee05b31f2015-01-09 15:27:08 +08002814 struct tipc_net *tn = net_generic(net, tipc_net_id);
2815
Ying Xue07f6c4b2015-01-07 13:41:58 +08002816 /* Wait for socket readers to complete */
2817 synchronize_net();
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002818
Ying Xuee05b31f2015-01-09 15:27:08 +08002819 rhashtable_destroy(&tn->sk_rht);
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002820}
2821
Jon Maloy75da2162017-10-13 11:04:23 +02002822static int tipc_sk_join(struct tipc_sock *tsk, struct tipc_group_req *mreq)
2823{
2824 struct net *net = sock_net(&tsk->sk);
Jon Maloy75da2162017-10-13 11:04:23 +02002825 struct tipc_group *grp = tsk->group;
2826 struct tipc_msg *hdr = &tsk->phdr;
2827 struct tipc_name_seq seq;
2828 int rc;
2829
2830 if (mreq->type < TIPC_RESERVED_TYPES)
2831 return -EACCES;
Jon Maloy232d07b2018-01-08 21:03:30 +01002832 if (mreq->scope > TIPC_NODE_SCOPE)
2833 return -EINVAL;
Jon Maloy75da2162017-10-13 11:04:23 +02002834 if (grp)
2835 return -EACCES;
Jon Maloy60c25302018-01-17 16:42:46 +01002836 grp = tipc_group_create(net, tsk->portid, mreq, &tsk->group_is_open);
Jon Maloy75da2162017-10-13 11:04:23 +02002837 if (!grp)
2838 return -ENOMEM;
2839 tsk->group = grp;
2840 msg_set_lookup_scope(hdr, mreq->scope);
2841 msg_set_nametype(hdr, mreq->type);
2842 msg_set_dest_droppable(hdr, true);
2843 seq.type = mreq->type;
2844 seq.lower = mreq->instance;
2845 seq.upper = seq.lower;
Jon Maloy232d07b2018-01-08 21:03:30 +01002846 tipc_nametbl_build_group(net, grp, mreq->type, mreq->scope);
Jon Maloy75da2162017-10-13 11:04:23 +02002847 rc = tipc_sk_publish(tsk, mreq->scope, &seq);
Cong Wange233df02017-10-24 15:44:49 -07002848 if (rc) {
Jon Maloy75da2162017-10-13 11:04:23 +02002849 tipc_group_delete(net, grp);
Cong Wange233df02017-10-24 15:44:49 -07002850 tsk->group = NULL;
Jon Maloyfebafc82018-01-10 21:08:50 +01002851 return rc;
Cong Wange233df02017-10-24 15:44:49 -07002852 }
Jon Maloyd12d2e12018-01-08 21:03:28 +01002853 /* Eliminate any risk that a broadcast overtakes sent JOINs */
Jon Maloy399574d2017-10-13 11:04:32 +02002854 tsk->mc_method.rcast = true;
2855 tsk->mc_method.mandatory = true;
Jon Maloyd12d2e12018-01-08 21:03:28 +01002856 tipc_group_join(net, grp, &tsk->sk.sk_rcvbuf);
Jon Maloy75da2162017-10-13 11:04:23 +02002857 return rc;
2858}
2859
2860static int tipc_sk_leave(struct tipc_sock *tsk)
2861{
2862 struct net *net = sock_net(&tsk->sk);
2863 struct tipc_group *grp = tsk->group;
2864 struct tipc_name_seq seq;
2865 int scope;
2866
2867 if (!grp)
2868 return -EINVAL;
2869 tipc_group_self(grp, &seq, &scope);
2870 tipc_group_delete(net, grp);
2871 tsk->group = NULL;
2872 tipc_sk_withdraw(tsk, scope, &seq);
2873 return 0;
2874}
2875
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002876/**
Ying Xue247f0f32014-02-18 16:06:46 +08002877 * tipc_setsockopt - set socket option
Per Lidenb97bf3f2006-01-02 19:04:38 +01002878 * @sock: socket structure
2879 * @lvl: option level
2880 * @opt: option identifier
2881 * @ov: pointer to new option value
2882 * @ol: length of option value
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002883 *
2884 * For stream sockets only, accepts and ignores all IPPROTO_TCP options
Per Lidenb97bf3f2006-01-02 19:04:38 +01002885 * (to ease compatibility).
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002886 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002887 * Returns 0 on success, errno otherwise
2888 */
Ying Xue247f0f32014-02-18 16:06:46 +08002889static int tipc_setsockopt(struct socket *sock, int lvl, int opt,
2890 char __user *ov, unsigned int ol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002891{
Allan Stephens0c3141e2008-04-15 00:22:02 -07002892 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002893 struct tipc_sock *tsk = tipc_sk(sk);
Jon Maloy75da2162017-10-13 11:04:23 +02002894 struct tipc_group_req mreq;
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -05002895 u32 value = 0;
Dan Carpentera08ef472017-01-24 12:49:35 +03002896 int res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002897
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002898 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
2899 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002900 if (lvl != SOL_TIPC)
2901 return -ENOPROTOOPT;
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -05002902
2903 switch (opt) {
2904 case TIPC_IMPORTANCE:
2905 case TIPC_SRC_DROPPABLE:
2906 case TIPC_DEST_DROPPABLE:
2907 case TIPC_CONN_TIMEOUT:
2908 if (ol < sizeof(value))
2909 return -EINVAL;
Jon Maloy75da2162017-10-13 11:04:23 +02002910 if (get_user(value, (u32 __user *)ov))
2911 return -EFAULT;
2912 break;
2913 case TIPC_GROUP_JOIN:
2914 if (ol < sizeof(mreq))
2915 return -EINVAL;
2916 if (copy_from_user(&mreq, ov, sizeof(mreq)))
2917 return -EFAULT;
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -05002918 break;
2919 default:
2920 if (ov || ol)
2921 return -EINVAL;
2922 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002923
Allan Stephens0c3141e2008-04-15 00:22:02 -07002924 lock_sock(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002925
Per Lidenb97bf3f2006-01-02 19:04:38 +01002926 switch (opt) {
2927 case TIPC_IMPORTANCE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002928 res = tsk_set_importance(tsk, value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002929 break;
2930 case TIPC_SRC_DROPPABLE:
2931 if (sock->type != SOCK_STREAM)
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002932 tsk_set_unreliable(tsk, value);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002933 else
Per Lidenb97bf3f2006-01-02 19:04:38 +01002934 res = -ENOPROTOOPT;
2935 break;
2936 case TIPC_DEST_DROPPABLE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002937 tsk_set_unreturnable(tsk, value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002938 break;
2939 case TIPC_CONN_TIMEOUT:
Allan Stephensa0f40f02011-05-26 13:44:34 -04002940 tipc_sk(sk)->conn_timeout = value;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002941 break;
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -05002942 case TIPC_MCAST_BROADCAST:
2943 tsk->mc_method.rcast = false;
2944 tsk->mc_method.mandatory = true;
2945 break;
2946 case TIPC_MCAST_REPLICAST:
2947 tsk->mc_method.rcast = true;
2948 tsk->mc_method.mandatory = true;
2949 break;
Jon Maloy75da2162017-10-13 11:04:23 +02002950 case TIPC_GROUP_JOIN:
2951 res = tipc_sk_join(tsk, &mreq);
2952 break;
2953 case TIPC_GROUP_LEAVE:
2954 res = tipc_sk_leave(tsk);
2955 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002956 default:
2957 res = -EINVAL;
2958 }
2959
Allan Stephens0c3141e2008-04-15 00:22:02 -07002960 release_sock(sk);
2961
Per Lidenb97bf3f2006-01-02 19:04:38 +01002962 return res;
2963}
2964
2965/**
Ying Xue247f0f32014-02-18 16:06:46 +08002966 * tipc_getsockopt - get socket option
Per Lidenb97bf3f2006-01-02 19:04:38 +01002967 * @sock: socket structure
2968 * @lvl: option level
2969 * @opt: option identifier
2970 * @ov: receptacle for option value
2971 * @ol: receptacle for length of option value
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002972 *
2973 * For stream sockets only, returns 0 length result for all IPPROTO_TCP options
Per Lidenb97bf3f2006-01-02 19:04:38 +01002974 * (to ease compatibility).
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002975 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002976 * Returns 0 on success, errno otherwise
2977 */
Ying Xue247f0f32014-02-18 16:06:46 +08002978static int tipc_getsockopt(struct socket *sock, int lvl, int opt,
2979 char __user *ov, int __user *ol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002980{
Allan Stephens0c3141e2008-04-15 00:22:02 -07002981 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002982 struct tipc_sock *tsk = tipc_sk(sk);
Jon Maloy75da2162017-10-13 11:04:23 +02002983 struct tipc_name_seq seq;
2984 int len, scope;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002985 u32 value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002986 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002987
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002988 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
2989 return put_user(0, ol);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002990 if (lvl != SOL_TIPC)
2991 return -ENOPROTOOPT;
Allan Stephens2db99832010-12-31 18:59:33 +00002992 res = get_user(len, ol);
2993 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002994 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002995
Allan Stephens0c3141e2008-04-15 00:22:02 -07002996 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002997
2998 switch (opt) {
2999 case TIPC_IMPORTANCE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04003000 value = tsk_importance(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003001 break;
3002 case TIPC_SRC_DROPPABLE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04003003 value = tsk_unreliable(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003004 break;
3005 case TIPC_DEST_DROPPABLE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04003006 value = tsk_unreturnable(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003007 break;
3008 case TIPC_CONN_TIMEOUT:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04003009 value = tsk->conn_timeout;
Allan Stephens0c3141e2008-04-15 00:22:02 -07003010 /* no need to set "res", since already 0 at this point */
Per Lidenb97bf3f2006-01-02 19:04:38 +01003011 break;
Allan Stephens0e659672010-12-31 18:59:32 +00003012 case TIPC_NODE_RECVQ_DEPTH:
Ying Xue9da3d472012-11-27 06:15:27 -05003013 value = 0; /* was tipc_queue_size, now obsolete */
oscar.medina@motorola.com66506132009-06-30 03:25:39 +00003014 break;
Allan Stephens0e659672010-12-31 18:59:32 +00003015 case TIPC_SOCK_RECVQ_DEPTH:
oscar.medina@motorola.com66506132009-06-30 03:25:39 +00003016 value = skb_queue_len(&sk->sk_receive_queue);
3017 break;
Jon Maloy75da2162017-10-13 11:04:23 +02003018 case TIPC_GROUP_JOIN:
3019 seq.type = 0;
3020 if (tsk->group)
3021 tipc_group_self(tsk->group, &seq, &scope);
3022 value = seq.type;
3023 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01003024 default:
3025 res = -EINVAL;
3026 }
3027
Allan Stephens0c3141e2008-04-15 00:22:02 -07003028 release_sock(sk);
3029
Paul Gortmaker25860c32010-12-31 18:59:31 +00003030 if (res)
3031 return res; /* "get" failed */
Per Lidenb97bf3f2006-01-02 19:04:38 +01003032
Paul Gortmaker25860c32010-12-31 18:59:31 +00003033 if (len < sizeof(value))
3034 return -EINVAL;
3035
3036 if (copy_to_user(ov, &value, sizeof(value)))
3037 return -EFAULT;
3038
3039 return put_user(sizeof(value), ol);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003040}
3041
Ying Xuef2f98002015-01-09 15:27:05 +08003042static int tipc_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
Erik Hugne78acb1f2014-04-24 16:26:47 +02003043{
Jon Maloy3e5cf362018-04-25 19:29:36 +02003044 struct net *net = sock_net(sock->sk);
3045 struct tipc_sioc_nodeid_req nr = {0};
Erik Hugne78acb1f2014-04-24 16:26:47 +02003046 struct tipc_sioc_ln_req lnr;
3047 void __user *argp = (void __user *)arg;
3048
3049 switch (cmd) {
3050 case SIOCGETLINKNAME:
3051 if (copy_from_user(&lnr, argp, sizeof(lnr)))
3052 return -EFAULT;
Jon Maloy3e5cf362018-04-25 19:29:36 +02003053 if (!tipc_node_get_linkname(net,
Ying Xuef2f98002015-01-09 15:27:05 +08003054 lnr.bearer_id & 0xffff, lnr.peer,
Erik Hugne78acb1f2014-04-24 16:26:47 +02003055 lnr.linkname, TIPC_MAX_LINK_NAME)) {
3056 if (copy_to_user(argp, &lnr, sizeof(lnr)))
3057 return -EFAULT;
3058 return 0;
3059 }
3060 return -EADDRNOTAVAIL;
Jon Maloy3e5cf362018-04-25 19:29:36 +02003061 case SIOCGETNODEID:
3062 if (copy_from_user(&nr, argp, sizeof(nr)))
3063 return -EFAULT;
3064 if (!tipc_node_get_id(net, nr.peer, nr.node_id))
3065 return -EADDRNOTAVAIL;
3066 if (copy_to_user(argp, &nr, sizeof(nr)))
3067 return -EFAULT;
3068 return 0;
Erik Hugne78acb1f2014-04-24 16:26:47 +02003069 default:
3070 return -ENOIOCTLCMD;
3071 }
3072}
3073
Erik Hugne70b03752017-03-29 11:22:16 +02003074static int tipc_socketpair(struct socket *sock1, struct socket *sock2)
3075{
3076 struct tipc_sock *tsk2 = tipc_sk(sock2->sk);
3077 struct tipc_sock *tsk1 = tipc_sk(sock1->sk);
Erik Hugne66bc1e82017-03-29 11:22:17 +02003078 u32 onode = tipc_own_addr(sock_net(sock1->sk));
Erik Hugne70b03752017-03-29 11:22:16 +02003079
Erik Hugne66bc1e82017-03-29 11:22:17 +02003080 tsk1->peer.family = AF_TIPC;
3081 tsk1->peer.addrtype = TIPC_ADDR_ID;
3082 tsk1->peer.scope = TIPC_NODE_SCOPE;
3083 tsk1->peer.addr.id.ref = tsk2->portid;
3084 tsk1->peer.addr.id.node = onode;
3085 tsk2->peer.family = AF_TIPC;
3086 tsk2->peer.addrtype = TIPC_ADDR_ID;
3087 tsk2->peer.scope = TIPC_NODE_SCOPE;
3088 tsk2->peer.addr.id.ref = tsk1->portid;
3089 tsk2->peer.addr.id.node = onode;
3090
3091 tipc_sk_finish_conn(tsk1, tsk2->portid, onode);
3092 tipc_sk_finish_conn(tsk2, tsk1->portid, onode);
Erik Hugne70b03752017-03-29 11:22:16 +02003093 return 0;
3094}
3095
Ben Hutchingsae86b9e2012-07-10 10:55:35 +00003096/* Protocol switches for the various types of TIPC sockets */
3097
Florian Westphalbca65ea2008-02-07 18:18:01 -08003098static const struct proto_ops msg_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00003099 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01003100 .family = AF_TIPC,
Ying Xue247f0f32014-02-18 16:06:46 +08003101 .release = tipc_release,
3102 .bind = tipc_bind,
3103 .connect = tipc_connect,
Erik Hugne66bc1e82017-03-29 11:22:17 +02003104 .socketpair = tipc_socketpair,
Ying Xue245f3d32011-07-06 06:01:13 -04003105 .accept = sock_no_accept,
Ying Xue247f0f32014-02-18 16:06:46 +08003106 .getname = tipc_getname,
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07003107 .poll = tipc_poll,
Erik Hugne78acb1f2014-04-24 16:26:47 +02003108 .ioctl = tipc_ioctl,
Ying Xue245f3d32011-07-06 06:01:13 -04003109 .listen = sock_no_listen,
Ying Xue247f0f32014-02-18 16:06:46 +08003110 .shutdown = tipc_shutdown,
3111 .setsockopt = tipc_setsockopt,
3112 .getsockopt = tipc_getsockopt,
3113 .sendmsg = tipc_sendmsg,
3114 .recvmsg = tipc_recvmsg,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09003115 .mmap = sock_no_mmap,
3116 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01003117};
3118
Florian Westphalbca65ea2008-02-07 18:18:01 -08003119static const struct proto_ops packet_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00003120 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01003121 .family = AF_TIPC,
Ying Xue247f0f32014-02-18 16:06:46 +08003122 .release = tipc_release,
3123 .bind = tipc_bind,
3124 .connect = tipc_connect,
Erik Hugne70b03752017-03-29 11:22:16 +02003125 .socketpair = tipc_socketpair,
Ying Xue247f0f32014-02-18 16:06:46 +08003126 .accept = tipc_accept,
3127 .getname = tipc_getname,
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07003128 .poll = tipc_poll,
Erik Hugne78acb1f2014-04-24 16:26:47 +02003129 .ioctl = tipc_ioctl,
Ying Xue247f0f32014-02-18 16:06:46 +08003130 .listen = tipc_listen,
3131 .shutdown = tipc_shutdown,
3132 .setsockopt = tipc_setsockopt,
3133 .getsockopt = tipc_getsockopt,
3134 .sendmsg = tipc_send_packet,
3135 .recvmsg = tipc_recvmsg,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09003136 .mmap = sock_no_mmap,
3137 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01003138};
3139
Florian Westphalbca65ea2008-02-07 18:18:01 -08003140static const struct proto_ops stream_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00003141 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01003142 .family = AF_TIPC,
Ying Xue247f0f32014-02-18 16:06:46 +08003143 .release = tipc_release,
3144 .bind = tipc_bind,
3145 .connect = tipc_connect,
Erik Hugne70b03752017-03-29 11:22:16 +02003146 .socketpair = tipc_socketpair,
Ying Xue247f0f32014-02-18 16:06:46 +08003147 .accept = tipc_accept,
3148 .getname = tipc_getname,
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07003149 .poll = tipc_poll,
Erik Hugne78acb1f2014-04-24 16:26:47 +02003150 .ioctl = tipc_ioctl,
Ying Xue247f0f32014-02-18 16:06:46 +08003151 .listen = tipc_listen,
3152 .shutdown = tipc_shutdown,
3153 .setsockopt = tipc_setsockopt,
3154 .getsockopt = tipc_getsockopt,
Jon Paul Maloy365ad352017-01-03 10:55:11 -05003155 .sendmsg = tipc_sendstream,
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02003156 .recvmsg = tipc_recvstream,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09003157 .mmap = sock_no_mmap,
3158 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01003159};
3160
Florian Westphalbca65ea2008-02-07 18:18:01 -08003161static const struct net_proto_family tipc_family_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00003162 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01003163 .family = AF_TIPC,
Ying Xuec5fa7b32013-06-17 10:54:39 -04003164 .create = tipc_sk_create
Per Lidenb97bf3f2006-01-02 19:04:38 +01003165};
3166
3167static struct proto tipc_proto = {
3168 .name = "TIPC",
3169 .owner = THIS_MODULE,
Ying Xuecc79dd12013-06-17 10:54:37 -04003170 .obj_size = sizeof(struct tipc_sock),
3171 .sysctl_rmem = sysctl_tipc_rmem
Per Lidenb97bf3f2006-01-02 19:04:38 +01003172};
3173
3174/**
Per Liden4323add2006-01-18 00:38:21 +01003175 * tipc_socket_init - initialize TIPC socket interface
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003176 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01003177 * Returns 0 on success, errno otherwise
3178 */
Per Liden4323add2006-01-18 00:38:21 +01003179int tipc_socket_init(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +01003180{
3181 int res;
3182
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003183 res = proto_register(&tipc_proto, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003184 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04003185 pr_err("Failed to register TIPC protocol type\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01003186 goto out;
3187 }
3188
3189 res = sock_register(&tipc_family_ops);
3190 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04003191 pr_err("Failed to register TIPC socket type\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01003192 proto_unregister(&tipc_proto);
3193 goto out;
3194 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01003195 out:
3196 return res;
3197}
3198
3199/**
Per Liden4323add2006-01-18 00:38:21 +01003200 * tipc_socket_stop - stop TIPC socket interface
Per Lidenb97bf3f2006-01-02 19:04:38 +01003201 */
Per Liden4323add2006-01-18 00:38:21 +01003202void tipc_socket_stop(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +01003203{
Per Lidenb97bf3f2006-01-02 19:04:38 +01003204 sock_unregister(tipc_family_ops.family);
3205 proto_unregister(&tipc_proto);
3206}
Richard Alpe34b78a122014-11-20 10:29:10 +01003207
3208/* Caller should hold socket lock for the passed tipc socket. */
Richard Alped8182802014-11-24 11:10:29 +01003209static int __tipc_nl_add_sk_con(struct sk_buff *skb, struct tipc_sock *tsk)
Richard Alpe34b78a122014-11-20 10:29:10 +01003210{
3211 u32 peer_node;
3212 u32 peer_port;
3213 struct nlattr *nest;
3214
3215 peer_node = tsk_peer_node(tsk);
3216 peer_port = tsk_peer_port(tsk);
3217
3218 nest = nla_nest_start(skb, TIPC_NLA_SOCK_CON);
3219
3220 if (nla_put_u32(skb, TIPC_NLA_CON_NODE, peer_node))
3221 goto msg_full;
3222 if (nla_put_u32(skb, TIPC_NLA_CON_SOCK, peer_port))
3223 goto msg_full;
3224
3225 if (tsk->conn_type != 0) {
3226 if (nla_put_flag(skb, TIPC_NLA_CON_FLAG))
3227 goto msg_full;
3228 if (nla_put_u32(skb, TIPC_NLA_CON_TYPE, tsk->conn_type))
3229 goto msg_full;
3230 if (nla_put_u32(skb, TIPC_NLA_CON_INST, tsk->conn_instance))
3231 goto msg_full;
3232 }
3233 nla_nest_end(skb, nest);
3234
3235 return 0;
3236
3237msg_full:
3238 nla_nest_cancel(skb, nest);
3239
3240 return -EMSGSIZE;
3241}
3242
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003243static int __tipc_nl_add_sk_info(struct sk_buff *skb, struct tipc_sock
3244 *tsk)
3245{
3246 struct net *net = sock_net(skb->sk);
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003247 struct sock *sk = &tsk->sk;
3248
3249 if (nla_put_u32(skb, TIPC_NLA_SOCK_REF, tsk->portid) ||
Jon Maloy23fd3ea2018-03-22 20:42:49 +01003250 nla_put_u32(skb, TIPC_NLA_SOCK_ADDR, tipc_own_addr(net)))
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003251 return -EMSGSIZE;
3252
3253 if (tipc_sk_connected(sk)) {
3254 if (__tipc_nl_add_sk_con(skb, tsk))
3255 return -EMSGSIZE;
3256 } else if (!list_empty(&tsk->publications)) {
3257 if (nla_put_flag(skb, TIPC_NLA_SOCK_HAS_PUBL))
3258 return -EMSGSIZE;
3259 }
3260 return 0;
3261}
3262
Richard Alpe34b78a122014-11-20 10:29:10 +01003263/* Caller should hold socket lock for the passed tipc socket. */
Richard Alped8182802014-11-24 11:10:29 +01003264static int __tipc_nl_add_sk(struct sk_buff *skb, struct netlink_callback *cb,
3265 struct tipc_sock *tsk)
Richard Alpe34b78a122014-11-20 10:29:10 +01003266{
Richard Alpe34b78a122014-11-20 10:29:10 +01003267 struct nlattr *attrs;
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003268 void *hdr;
Richard Alpe34b78a122014-11-20 10:29:10 +01003269
3270 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
Richard Alpebfb3e5d2015-02-09 09:50:03 +01003271 &tipc_genl_family, NLM_F_MULTI, TIPC_NL_SOCK_GET);
Richard Alpe34b78a122014-11-20 10:29:10 +01003272 if (!hdr)
3273 goto msg_cancel;
3274
3275 attrs = nla_nest_start(skb, TIPC_NLA_SOCK);
3276 if (!attrs)
3277 goto genlmsg_cancel;
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003278
3279 if (__tipc_nl_add_sk_info(skb, tsk))
Richard Alpe34b78a122014-11-20 10:29:10 +01003280 goto attr_msg_cancel;
3281
Richard Alpe34b78a122014-11-20 10:29:10 +01003282 nla_nest_end(skb, attrs);
3283 genlmsg_end(skb, hdr);
3284
3285 return 0;
3286
3287attr_msg_cancel:
3288 nla_nest_cancel(skb, attrs);
3289genlmsg_cancel:
3290 genlmsg_cancel(skb, hdr);
3291msg_cancel:
3292 return -EMSGSIZE;
3293}
3294
GhantaKrishnamurthy MohanKrishnac30b70d2018-03-21 14:37:44 +01003295int tipc_nl_sk_walk(struct sk_buff *skb, struct netlink_callback *cb,
3296 int (*skb_handler)(struct sk_buff *skb,
3297 struct netlink_callback *cb,
3298 struct tipc_sock *tsk))
Richard Alpe34b78a122014-11-20 10:29:10 +01003299{
Cong Wang8f5c5fc2018-09-04 14:54:55 -07003300 struct rhashtable_iter *iter = (void *)cb->args[4];
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003301 struct tipc_sock *tsk;
3302 int err;
Richard Alpe34b78a122014-11-20 10:29:10 +01003303
Cong Wang9a07efa2018-08-24 12:28:06 -07003304 rhashtable_walk_start(iter);
3305 while ((tsk = rhashtable_walk_next(iter)) != NULL) {
3306 if (IS_ERR(tsk)) {
3307 err = PTR_ERR(tsk);
3308 if (err == -EAGAIN) {
3309 err = 0;
Richard Alped6e164e2015-01-16 12:30:40 +01003310 continue;
3311 }
Cong Wang9a07efa2018-08-24 12:28:06 -07003312 break;
Ying Xue07f6c4b2015-01-07 13:41:58 +08003313 }
Richard Alpe34b78a122014-11-20 10:29:10 +01003314
Cong Wang9a07efa2018-08-24 12:28:06 -07003315 sock_hold(&tsk->sk);
3316 rhashtable_walk_stop(iter);
3317 lock_sock(&tsk->sk);
3318 err = skb_handler(skb, cb, tsk);
3319 if (err) {
3320 release_sock(&tsk->sk);
3321 sock_put(&tsk->sk);
3322 goto out;
3323 }
3324 release_sock(&tsk->sk);
3325 rhashtable_walk_start(iter);
3326 sock_put(&tsk->sk);
3327 }
3328 rhashtable_walk_stop(iter);
3329out:
Richard Alpe34b78a122014-11-20 10:29:10 +01003330 return skb->len;
3331}
GhantaKrishnamurthy MohanKrishnac30b70d2018-03-21 14:37:44 +01003332EXPORT_SYMBOL(tipc_nl_sk_walk);
3333
Cong Wang9a07efa2018-08-24 12:28:06 -07003334int tipc_dump_start(struct netlink_callback *cb)
3335{
Cong Wang8f5c5fc2018-09-04 14:54:55 -07003336 return __tipc_dump_start(cb, sock_net(cb->skb->sk));
3337}
3338EXPORT_SYMBOL(tipc_dump_start);
3339
3340int __tipc_dump_start(struct netlink_callback *cb, struct net *net)
3341{
3342 /* tipc_nl_name_table_dump() uses cb->args[0...3]. */
3343 struct rhashtable_iter *iter = (void *)cb->args[4];
Cong Wang9a07efa2018-08-24 12:28:06 -07003344 struct tipc_net *tn = tipc_net(net);
3345
3346 if (!iter) {
3347 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
3348 if (!iter)
3349 return -ENOMEM;
3350
Cong Wang8f5c5fc2018-09-04 14:54:55 -07003351 cb->args[4] = (long)iter;
Cong Wang9a07efa2018-08-24 12:28:06 -07003352 }
3353
3354 rhashtable_walk_enter(&tn->sk_rht, iter);
3355 return 0;
3356}
Cong Wang9a07efa2018-08-24 12:28:06 -07003357
3358int tipc_dump_done(struct netlink_callback *cb)
3359{
Cong Wang8f5c5fc2018-09-04 14:54:55 -07003360 struct rhashtable_iter *hti = (void *)cb->args[4];
Cong Wang9a07efa2018-08-24 12:28:06 -07003361
3362 rhashtable_walk_exit(hti);
3363 kfree(hti);
3364 return 0;
3365}
3366EXPORT_SYMBOL(tipc_dump_done);
3367
Cong Wange41f0542018-04-06 18:54:52 -07003368int tipc_sk_fill_sock_diag(struct sk_buff *skb, struct netlink_callback *cb,
3369 struct tipc_sock *tsk, u32 sk_filter_state,
GhantaKrishnamurthy MohanKrishnac30b70d2018-03-21 14:37:44 +01003370 u64 (*tipc_diag_gen_cookie)(struct sock *sk))
3371{
3372 struct sock *sk = &tsk->sk;
3373 struct nlattr *attrs;
3374 struct nlattr *stat;
3375
3376 /*filter response w.r.t sk_state*/
3377 if (!(sk_filter_state & (1 << sk->sk_state)))
3378 return 0;
3379
3380 attrs = nla_nest_start(skb, TIPC_NLA_SOCK);
3381 if (!attrs)
3382 goto msg_cancel;
3383
3384 if (__tipc_nl_add_sk_info(skb, tsk))
3385 goto attr_msg_cancel;
3386
3387 if (nla_put_u32(skb, TIPC_NLA_SOCK_TYPE, (u32)sk->sk_type) ||
3388 nla_put_u32(skb, TIPC_NLA_SOCK_TIPC_STATE, (u32)sk->sk_state) ||
3389 nla_put_u32(skb, TIPC_NLA_SOCK_INO, sock_i_ino(sk)) ||
3390 nla_put_u32(skb, TIPC_NLA_SOCK_UID,
Cong Wange41f0542018-04-06 18:54:52 -07003391 from_kuid_munged(sk_user_ns(NETLINK_CB(cb->skb).sk),
GhantaKrishnamurthy MohanKrishna4b2e6872018-04-04 14:49:47 +02003392 sock_i_uid(sk))) ||
GhantaKrishnamurthy MohanKrishnac30b70d2018-03-21 14:37:44 +01003393 nla_put_u64_64bit(skb, TIPC_NLA_SOCK_COOKIE,
3394 tipc_diag_gen_cookie(sk),
3395 TIPC_NLA_SOCK_PAD))
3396 goto attr_msg_cancel;
3397
3398 stat = nla_nest_start(skb, TIPC_NLA_SOCK_STAT);
3399 if (!stat)
3400 goto attr_msg_cancel;
3401
3402 if (nla_put_u32(skb, TIPC_NLA_SOCK_STAT_RCVQ,
3403 skb_queue_len(&sk->sk_receive_queue)) ||
3404 nla_put_u32(skb, TIPC_NLA_SOCK_STAT_SENDQ,
GhantaKrishnamurthy MohanKrishna872619d2018-03-21 14:37:45 +01003405 skb_queue_len(&sk->sk_write_queue)) ||
3406 nla_put_u32(skb, TIPC_NLA_SOCK_STAT_DROP,
3407 atomic_read(&sk->sk_drops)))
GhantaKrishnamurthy MohanKrishnac30b70d2018-03-21 14:37:44 +01003408 goto stat_msg_cancel;
3409
3410 if (tsk->cong_link_cnt &&
3411 nla_put_flag(skb, TIPC_NLA_SOCK_STAT_LINK_CONG))
3412 goto stat_msg_cancel;
3413
3414 if (tsk_conn_cong(tsk) &&
3415 nla_put_flag(skb, TIPC_NLA_SOCK_STAT_CONN_CONG))
3416 goto stat_msg_cancel;
3417
3418 nla_nest_end(skb, stat);
GhantaKrishnamurthy MohanKrishnaa1be5a22018-06-29 13:26:18 +02003419
3420 if (tsk->group)
3421 if (tipc_group_fill_sock_diag(tsk->group, skb))
3422 goto stat_msg_cancel;
3423
GhantaKrishnamurthy MohanKrishnac30b70d2018-03-21 14:37:44 +01003424 nla_nest_end(skb, attrs);
3425
3426 return 0;
3427
3428stat_msg_cancel:
3429 nla_nest_cancel(skb, stat);
3430attr_msg_cancel:
3431 nla_nest_cancel(skb, attrs);
3432msg_cancel:
3433 return -EMSGSIZE;
3434}
3435EXPORT_SYMBOL(tipc_sk_fill_sock_diag);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003436
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003437int tipc_nl_sk_dump(struct sk_buff *skb, struct netlink_callback *cb)
3438{
GhantaKrishnamurthy MohanKrishnac30b70d2018-03-21 14:37:44 +01003439 return tipc_nl_sk_walk(skb, cb, __tipc_nl_add_sk);
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003440}
3441
Richard Alpe1a1a1432014-11-20 10:29:11 +01003442/* Caller should hold socket lock for the passed tipc socket. */
Richard Alped8182802014-11-24 11:10:29 +01003443static int __tipc_nl_add_sk_publ(struct sk_buff *skb,
3444 struct netlink_callback *cb,
3445 struct publication *publ)
Richard Alpe1a1a1432014-11-20 10:29:11 +01003446{
3447 void *hdr;
3448 struct nlattr *attrs;
3449
3450 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
Richard Alpebfb3e5d2015-02-09 09:50:03 +01003451 &tipc_genl_family, NLM_F_MULTI, TIPC_NL_PUBL_GET);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003452 if (!hdr)
3453 goto msg_cancel;
3454
3455 attrs = nla_nest_start(skb, TIPC_NLA_PUBL);
3456 if (!attrs)
3457 goto genlmsg_cancel;
3458
3459 if (nla_put_u32(skb, TIPC_NLA_PUBL_KEY, publ->key))
3460 goto attr_msg_cancel;
3461 if (nla_put_u32(skb, TIPC_NLA_PUBL_TYPE, publ->type))
3462 goto attr_msg_cancel;
3463 if (nla_put_u32(skb, TIPC_NLA_PUBL_LOWER, publ->lower))
3464 goto attr_msg_cancel;
3465 if (nla_put_u32(skb, TIPC_NLA_PUBL_UPPER, publ->upper))
3466 goto attr_msg_cancel;
3467
3468 nla_nest_end(skb, attrs);
3469 genlmsg_end(skb, hdr);
3470
3471 return 0;
3472
3473attr_msg_cancel:
3474 nla_nest_cancel(skb, attrs);
3475genlmsg_cancel:
3476 genlmsg_cancel(skb, hdr);
3477msg_cancel:
3478 return -EMSGSIZE;
3479}
3480
3481/* Caller should hold socket lock for the passed tipc socket. */
Richard Alped8182802014-11-24 11:10:29 +01003482static int __tipc_nl_list_sk_publ(struct sk_buff *skb,
3483 struct netlink_callback *cb,
3484 struct tipc_sock *tsk, u32 *last_publ)
Richard Alpe1a1a1432014-11-20 10:29:11 +01003485{
3486 int err;
3487 struct publication *p;
3488
3489 if (*last_publ) {
Jon Maloye50e73e2018-03-15 16:48:55 +01003490 list_for_each_entry(p, &tsk->publications, binding_sock) {
Richard Alpe1a1a1432014-11-20 10:29:11 +01003491 if (p->key == *last_publ)
3492 break;
3493 }
3494 if (p->key != *last_publ) {
3495 /* We never set seq or call nl_dump_check_consistent()
3496 * this means that setting prev_seq here will cause the
3497 * consistence check to fail in the netlink callback
3498 * handler. Resulting in the last NLMSG_DONE message
3499 * having the NLM_F_DUMP_INTR flag set.
3500 */
3501 cb->prev_seq = 1;
3502 *last_publ = 0;
3503 return -EPIPE;
3504 }
3505 } else {
3506 p = list_first_entry(&tsk->publications, struct publication,
Jon Maloye50e73e2018-03-15 16:48:55 +01003507 binding_sock);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003508 }
3509
Jon Maloye50e73e2018-03-15 16:48:55 +01003510 list_for_each_entry_from(p, &tsk->publications, binding_sock) {
Richard Alpe1a1a1432014-11-20 10:29:11 +01003511 err = __tipc_nl_add_sk_publ(skb, cb, p);
3512 if (err) {
3513 *last_publ = p->key;
3514 return err;
3515 }
3516 }
3517 *last_publ = 0;
3518
3519 return 0;
3520}
3521
3522int tipc_nl_publ_dump(struct sk_buff *skb, struct netlink_callback *cb)
3523{
3524 int err;
Ying Xue07f6c4b2015-01-07 13:41:58 +08003525 u32 tsk_portid = cb->args[0];
Richard Alpe1a1a1432014-11-20 10:29:11 +01003526 u32 last_publ = cb->args[1];
3527 u32 done = cb->args[2];
Ying Xuee05b31f2015-01-09 15:27:08 +08003528 struct net *net = sock_net(skb->sk);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003529 struct tipc_sock *tsk;
3530
Ying Xue07f6c4b2015-01-07 13:41:58 +08003531 if (!tsk_portid) {
Richard Alpe1a1a1432014-11-20 10:29:11 +01003532 struct nlattr **attrs;
3533 struct nlattr *sock[TIPC_NLA_SOCK_MAX + 1];
3534
3535 err = tipc_nlmsg_parse(cb->nlh, &attrs);
3536 if (err)
3537 return err;
3538
Richard Alpe45e093a2016-05-16 11:14:54 +02003539 if (!attrs[TIPC_NLA_SOCK])
3540 return -EINVAL;
3541
Richard Alpe1a1a1432014-11-20 10:29:11 +01003542 err = nla_parse_nested(sock, TIPC_NLA_SOCK_MAX,
3543 attrs[TIPC_NLA_SOCK],
Johannes Bergfceb6432017-04-12 14:34:07 +02003544 tipc_nl_sock_policy, NULL);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003545 if (err)
3546 return err;
3547
3548 if (!sock[TIPC_NLA_SOCK_REF])
3549 return -EINVAL;
3550
Ying Xue07f6c4b2015-01-07 13:41:58 +08003551 tsk_portid = nla_get_u32(sock[TIPC_NLA_SOCK_REF]);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003552 }
3553
3554 if (done)
3555 return 0;
3556
Ying Xuee05b31f2015-01-09 15:27:08 +08003557 tsk = tipc_sk_lookup(net, tsk_portid);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003558 if (!tsk)
3559 return -EINVAL;
3560
3561 lock_sock(&tsk->sk);
3562 err = __tipc_nl_list_sk_publ(skb, cb, tsk, &last_publ);
3563 if (!err)
3564 done = 1;
3565 release_sock(&tsk->sk);
Ying Xue07f6c4b2015-01-07 13:41:58 +08003566 sock_put(&tsk->sk);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003567
Ying Xue07f6c4b2015-01-07 13:41:58 +08003568 cb->args[0] = tsk_portid;
Richard Alpe1a1a1432014-11-20 10:29:11 +01003569 cb->args[1] = last_publ;
3570 cb->args[2] = done;
3571
3572 return skb->len;
3573}