blob: 14a5d055717d2a7b95ea353b15f53dfb81a39515 [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
Ying Xue07f6c4b2015-01-07 13:41:58 +080050#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
83 * @probing_state:
Jon Paul Maloy301bae52014-08-22 18:09:20 -040084 * @conn_timeout: the time we can wait for an unresponded setup request
85 * @dupl_rcvcnt: number of bytes counted twice, in both backlog and rcv queue
Jon Paul Maloy365ad352017-01-03 10:55:11 -050086 * @cong_link_cnt: number of congested links
Jon Maloy75da2162017-10-13 11:04:23 +020087 * @snt_unacked: # messages sent by socket, and not yet acked by peer
Jon Paul Maloy301bae52014-08-22 18:09:20 -040088 * @rcv_unacked: # messages read by user, but not yet acked back to peer
Parthasarathy Bhuvaraganaeda16b2016-11-01 14:02:38 +010089 * @peer: 'connected' peer for dgram/rdm
Ying Xue07f6c4b2015-01-07 13:41:58 +080090 * @node: hash table node
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -050091 * @mc_method: cookie for use between socket and broadcast layer
Ying Xue07f6c4b2015-01-07 13:41:58 +080092 * @rcu: rcu struct for tipc_sock
Jon Paul Maloy301bae52014-08-22 18:09:20 -040093 */
94struct tipc_sock {
95 struct sock sk;
Jon Paul Maloy301bae52014-08-22 18:09:20 -040096 u32 conn_type;
97 u32 conn_instance;
98 int published;
99 u32 max_pkt;
Ying Xue07f6c4b2015-01-07 13:41:58 +0800100 u32 portid;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400101 struct tipc_msg phdr;
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500102 struct list_head cong_links;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400103 struct list_head publications;
104 u32 pub_count;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400105 uint conn_timeout;
106 atomic_t dupl_rcvcnt;
Parthasarathy Bhuvaragan8ea642e2016-11-01 14:02:44 +0100107 bool probe_unacked;
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500108 u16 cong_link_cnt;
Jon Paul Maloy10724cc2016-05-02 11:58:47 -0400109 u16 snt_unacked;
110 u16 snd_win;
Jon Paul Maloy60020e12016-05-02 11:58:46 -0400111 u16 peer_caps;
Jon Paul Maloy10724cc2016-05-02 11:58:47 -0400112 u16 rcv_unacked;
113 u16 rcv_win;
Parthasarathy Bhuvaraganaeda16b2016-11-01 14:02:38 +0100114 struct sockaddr_tipc peer;
Ying Xue07f6c4b2015-01-07 13:41:58 +0800115 struct rhash_head node;
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -0500116 struct tipc_mc_method mc_method;
Ying Xue07f6c4b2015-01-07 13:41:58 +0800117 struct rcu_head rcu;
Jon Maloy75da2162017-10-13 11:04:23 +0200118 struct tipc_group *group;
Jon Maloy60c25302018-01-17 16:42:46 +0100119 bool group_is_open;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400120};
Per Lidenb97bf3f2006-01-02 19:04:38 +0100121
Jon Maloy64ac5f52017-10-13 11:04:20 +0200122static int tipc_sk_backlog_rcv(struct sock *sk, struct sk_buff *skb);
David S. Miller676d2362014-04-11 16:15:36 -0400123static void tipc_data_ready(struct sock *sk);
Ying Xuef288bef2012-08-21 11:16:57 +0800124static void tipc_write_space(struct sock *sk);
Ying Xuef4195d12015-11-22 15:46:05 +0800125static void tipc_sock_destruct(struct sock *sk);
Ying Xue247f0f32014-02-18 16:06:46 +0800126static int tipc_release(struct socket *sock);
David Howellscdfbabf2017-03-09 08:09:05 +0000127static int tipc_accept(struct socket *sock, struct socket *new_sock, int flags,
128 bool kern);
Kees Cook31b102b2017-10-30 14:06:45 -0700129static void tipc_sk_timeout(struct timer_list *t);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400130static int tipc_sk_publish(struct tipc_sock *tsk, uint scope,
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400131 struct tipc_name_seq const *seq);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400132static int tipc_sk_withdraw(struct tipc_sock *tsk, uint scope,
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400133 struct tipc_name_seq const *seq);
Jon Maloy75da2162017-10-13 11:04:23 +0200134static int tipc_sk_leave(struct tipc_sock *tsk);
Ying Xuee05b31f2015-01-09 15:27:08 +0800135static struct tipc_sock *tipc_sk_lookup(struct net *net, u32 portid);
Ying Xue07f6c4b2015-01-07 13:41:58 +0800136static int tipc_sk_insert(struct tipc_sock *tsk);
137static void tipc_sk_remove(struct tipc_sock *tsk);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500138static int __tipc_sendstream(struct socket *sock, struct msghdr *m, size_t dsz);
Ying Xue39a02952015-03-02 15:37:47 +0800139static int __tipc_sendmsg(struct socket *sock, struct msghdr *m, size_t dsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100140
Florian Westphalbca65ea2008-02-07 18:18:01 -0800141static const struct proto_ops packet_ops;
142static const struct proto_ops stream_ops;
143static const struct proto_ops msg_ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100144static struct proto tipc_proto;
Herbert Xu6cca72892015-03-20 21:57:05 +1100145static const struct rhashtable_params tsk_rht_params;
146
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500147static u32 tsk_own_node(struct tipc_sock *tsk)
148{
149 return msg_prevnode(&tsk->phdr);
150}
151
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400152static u32 tsk_peer_node(struct tipc_sock *tsk)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400153{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400154 return msg_destnode(&tsk->phdr);
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400155}
156
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400157static u32 tsk_peer_port(struct tipc_sock *tsk)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400158{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400159 return msg_destport(&tsk->phdr);
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400160}
161
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400162static bool tsk_unreliable(struct tipc_sock *tsk)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400163{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400164 return msg_src_droppable(&tsk->phdr) != 0;
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400165}
166
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400167static void tsk_set_unreliable(struct tipc_sock *tsk, bool unreliable)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400168{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400169 msg_set_src_droppable(&tsk->phdr, unreliable ? 1 : 0);
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400170}
171
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400172static bool tsk_unreturnable(struct tipc_sock *tsk)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400173{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400174 return msg_dest_droppable(&tsk->phdr) != 0;
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400175}
176
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400177static void tsk_set_unreturnable(struct tipc_sock *tsk, bool unreturnable)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400178{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400179 msg_set_dest_droppable(&tsk->phdr, unreturnable ? 1 : 0);
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400180}
181
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400182static int tsk_importance(struct tipc_sock *tsk)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400183{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400184 return msg_importance(&tsk->phdr);
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400185}
186
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400187static int tsk_set_importance(struct tipc_sock *tsk, int imp)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400188{
189 if (imp > TIPC_CRITICAL_IMPORTANCE)
190 return -EINVAL;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400191 msg_set_importance(&tsk->phdr, (u32)imp);
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400192 return 0;
193}
Jon Paul Maloy8826cde2014-03-12 11:31:09 -0400194
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400195static struct tipc_sock *tipc_sk(const struct sock *sk)
196{
197 return container_of(sk, struct tipc_sock, sk);
198}
199
Jon Paul Maloy10724cc2016-05-02 11:58:47 -0400200static bool tsk_conn_cong(struct tipc_sock *tsk)
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400201{
Jon Paul Maloy6998cc62016-11-24 18:47:07 -0500202 return tsk->snt_unacked > tsk->snd_win;
Jon Paul Maloy10724cc2016-05-02 11:58:47 -0400203}
204
Jon Maloyb7d42632017-10-13 11:04:26 +0200205static u16 tsk_blocks(int len)
206{
207 return ((len / FLOWCTL_BLK_SZ) + 1);
208}
209
Jon Paul Maloy10724cc2016-05-02 11:58:47 -0400210/* tsk_blocks(): translate a buffer size in bytes to number of
211 * advertisable blocks, taking into account the ratio truesize(len)/len
212 * We can trust that this ratio is always < 4 for len >= FLOWCTL_BLK_SZ
213 */
214static u16 tsk_adv_blocks(int len)
215{
216 return len / FLOWCTL_BLK_SZ / 4;
217}
218
219/* tsk_inc(): increment counter for sent or received data
220 * - If block based flow control is not supported by peer we
221 * fall back to message based ditto, incrementing the counter
222 */
223static u16 tsk_inc(struct tipc_sock *tsk, int msglen)
224{
225 if (likely(tsk->peer_caps & TIPC_BLOCK_FLOWCTL))
226 return ((msglen / FLOWCTL_BLK_SZ) + 1);
227 return 1;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400228}
229
Per Lidenb97bf3f2006-01-02 19:04:38 +0100230/**
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400231 * tsk_advance_rx_queue - discard first buffer in socket receive queue
Allan Stephens0c3141e2008-04-15 00:22:02 -0700232 *
233 * Caller must hold socket lock
Per Lidenb97bf3f2006-01-02 19:04:38 +0100234 */
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400235static void tsk_advance_rx_queue(struct sock *sk)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100236{
Allan Stephens5f6d9122011-11-04 13:24:29 -0400237 kfree_skb(__skb_dequeue(&sk->sk_receive_queue));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100238}
239
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -0400240/* tipc_sk_respond() : send response message back to sender
241 */
242static void tipc_sk_respond(struct sock *sk, struct sk_buff *skb, int err)
243{
244 u32 selector;
245 u32 dnode;
246 u32 onode = tipc_own_addr(sock_net(sk));
247
248 if (!tipc_msg_reverse(onode, &skb, err))
249 return;
250
251 dnode = msg_destnode(buf_msg(skb));
252 selector = msg_origport(buf_msg(skb));
253 tipc_node_xmit_skb(sock_net(sk), skb, dnode, selector);
254}
255
Per Lidenb97bf3f2006-01-02 19:04:38 +0100256/**
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400257 * tsk_rej_rx_queue - reject all buffers in socket receive queue
Allan Stephens0c3141e2008-04-15 00:22:02 -0700258 *
259 * Caller must hold socket lock
260 */
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400261static void tsk_rej_rx_queue(struct sock *sk)
Allan Stephens0c3141e2008-04-15 00:22:02 -0700262{
Ying Xuea6ca1092014-11-26 11:41:55 +0800263 struct sk_buff *skb;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700264
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -0400265 while ((skb = __skb_dequeue(&sk->sk_receive_queue)))
266 tipc_sk_respond(sk, skb, TIPC_ERR_NO_PORT);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700267}
268
Parthasarathy Bhuvaragand6fb7e92016-11-01 14:02:40 +0100269static bool tipc_sk_connected(struct sock *sk)
270{
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +0100271 return sk->sk_state == TIPC_ESTABLISHED;
Parthasarathy Bhuvaragand6fb7e92016-11-01 14:02:40 +0100272}
273
Parthasarathy Bhuvaraganc7520232016-11-01 14:02:42 +0100274/* tipc_sk_type_connectionless - check if the socket is datagram socket
275 * @sk: socket
276 *
277 * Returns true if connection less, false otherwise
278 */
279static bool tipc_sk_type_connectionless(struct sock *sk)
280{
281 return sk->sk_type == SOCK_RDM || sk->sk_type == SOCK_DGRAM;
282}
283
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400284/* tsk_peer_msg - verify if message was sent by connected port's peer
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400285 *
286 * Handles cases where the node's network address has changed from
287 * the default of <0.0.0> to its configured setting.
288 */
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400289static bool tsk_peer_msg(struct tipc_sock *tsk, struct tipc_msg *msg)
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400290{
Parthasarathy Bhuvaragand6fb7e92016-11-01 14:02:40 +0100291 struct sock *sk = &tsk->sk;
Jon Maloy23fd3ea2018-03-22 20:42:49 +0100292 u32 self = tipc_own_addr(sock_net(sk));
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400293 u32 peer_port = tsk_peer_port(tsk);
Jon Maloy23fd3ea2018-03-22 20:42:49 +0100294 u32 orig_node, peer_node;
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400295
Parthasarathy Bhuvaragand6fb7e92016-11-01 14:02:40 +0100296 if (unlikely(!tipc_sk_connected(sk)))
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400297 return false;
298
299 if (unlikely(msg_origport(msg) != peer_port))
300 return false;
301
302 orig_node = msg_orignode(msg);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400303 peer_node = tsk_peer_node(tsk);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400304
305 if (likely(orig_node == peer_node))
306 return true;
307
Jon Maloy23fd3ea2018-03-22 20:42:49 +0100308 if (!orig_node && peer_node == self)
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400309 return true;
310
Jon Maloy23fd3ea2018-03-22 20:42:49 +0100311 if (!peer_node && orig_node == self)
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400312 return true;
313
314 return false;
315}
316
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +0100317/* tipc_set_sk_state - set the sk_state of the socket
318 * @sk: socket
319 *
320 * Caller must hold socket lock
321 *
322 * Returns 0 on success, errno otherwise
323 */
324static int tipc_set_sk_state(struct sock *sk, int state)
325{
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +0100326 int oldsk_state = sk->sk_state;
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +0100327 int res = -EINVAL;
328
329 switch (state) {
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +0100330 case TIPC_OPEN:
331 res = 0;
332 break;
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +0100333 case TIPC_LISTEN:
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +0100334 case TIPC_CONNECTING:
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +0100335 if (oldsk_state == TIPC_OPEN)
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +0100336 res = 0;
337 break;
Parthasarathy Bhuvaragan8ea642e2016-11-01 14:02:44 +0100338 case TIPC_ESTABLISHED:
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +0100339 if (oldsk_state == TIPC_CONNECTING ||
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +0100340 oldsk_state == TIPC_OPEN)
Parthasarathy Bhuvaragan8ea642e2016-11-01 14:02:44 +0100341 res = 0;
342 break;
Parthasarathy Bhuvaragan9fd4b072016-11-01 14:02:46 +0100343 case TIPC_DISCONNECTING:
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +0100344 if (oldsk_state == TIPC_CONNECTING ||
Parthasarathy Bhuvaragan9fd4b072016-11-01 14:02:46 +0100345 oldsk_state == TIPC_ESTABLISHED)
346 res = 0;
347 break;
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +0100348 }
349
350 if (!res)
351 sk->sk_state = state;
352
353 return res;
354}
355
Jon Paul Maloy8c44e1a2017-01-03 10:55:09 -0500356static int tipc_sk_sock_err(struct socket *sock, long *timeout)
357{
358 struct sock *sk = sock->sk;
359 int err = sock_error(sk);
360 int typ = sock->type;
361
362 if (err)
363 return err;
364 if (typ == SOCK_STREAM || typ == SOCK_SEQPACKET) {
365 if (sk->sk_state == TIPC_DISCONNECTING)
366 return -EPIPE;
367 else if (!tipc_sk_connected(sk))
368 return -ENOTCONN;
369 }
370 if (!*timeout)
371 return -EAGAIN;
372 if (signal_pending(current))
373 return sock_intr_errno(*timeout);
374
375 return 0;
376}
377
Jon Paul Maloy844cf762017-05-11 20:28:15 +0200378#define tipc_wait_for_cond(sock_, timeo_, condition_) \
379({ \
380 struct sock *sk_; \
381 int rc_; \
382 \
383 while ((rc_ = !(condition_))) { \
384 DEFINE_WAIT_FUNC(wait_, woken_wake_function); \
385 sk_ = (sock_)->sk; \
386 rc_ = tipc_sk_sock_err((sock_), timeo_); \
387 if (rc_) \
388 break; \
389 prepare_to_wait(sk_sleep(sk_), &wait_, TASK_INTERRUPTIBLE); \
390 release_sock(sk_); \
391 *(timeo_) = wait_woken(&wait_, TASK_INTERRUPTIBLE, *(timeo_)); \
392 sched_annotate_sleep(); \
393 lock_sock(sk_); \
394 remove_wait_queue(sk_sleep(sk_), &wait_); \
395 } \
396 rc_; \
Jon Paul Maloy8c44e1a2017-01-03 10:55:09 -0500397})
398
Allan Stephens0c3141e2008-04-15 00:22:02 -0700399/**
Ying Xuec5fa7b32013-06-17 10:54:39 -0400400 * tipc_sk_create - create a TIPC socket
Allan Stephens0c3141e2008-04-15 00:22:02 -0700401 * @net: network namespace (must be default network)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100402 * @sock: pre-allocated socket structure
403 * @protocol: protocol indicator (must be 0)
Eric Paris3f378b62009-11-05 22:18:14 -0800404 * @kern: caused by kernel or by userspace?
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900405 *
Allan Stephens0c3141e2008-04-15 00:22:02 -0700406 * This routine creates additional data structures used by the TIPC socket,
407 * initializes them, and links them together.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100408 *
409 * Returns 0 on success, errno otherwise
410 */
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400411static int tipc_sk_create(struct net *net, struct socket *sock,
412 int protocol, int kern)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100413{
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500414 struct tipc_net *tn;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700415 const struct proto_ops *ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100416 struct sock *sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400417 struct tipc_sock *tsk;
Jon Paul Maloy5b8fa7c2014-08-22 18:09:13 -0400418 struct tipc_msg *msg;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700419
420 /* Validate arguments */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100421 if (unlikely(protocol != 0))
422 return -EPROTONOSUPPORT;
423
Per Lidenb97bf3f2006-01-02 19:04:38 +0100424 switch (sock->type) {
425 case SOCK_STREAM:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700426 ops = &stream_ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100427 break;
428 case SOCK_SEQPACKET:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700429 ops = &packet_ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100430 break;
431 case SOCK_DGRAM:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100432 case SOCK_RDM:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700433 ops = &msg_ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100434 break;
Allan Stephens49978652006-06-25 23:47:18 -0700435 default:
Allan Stephens49978652006-06-25 23:47:18 -0700436 return -EPROTOTYPE;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100437 }
438
Allan Stephens0c3141e2008-04-15 00:22:02 -0700439 /* Allocate socket's protocol area */
Eric W. Biederman11aa9c22015-05-08 21:09:13 -0500440 sk = sk_alloc(net, AF_TIPC, GFP_KERNEL, &tipc_proto, kern);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700441 if (sk == NULL)
442 return -ENOMEM;
443
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400444 tsk = tipc_sk(sk);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400445 tsk->max_pkt = MAX_PKT_DEFAULT;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400446 INIT_LIST_HEAD(&tsk->publications);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500447 INIT_LIST_HEAD(&tsk->cong_links);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400448 msg = &tsk->phdr;
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500449 tn = net_generic(sock_net(sk), tipc_net_id);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100450
Allan Stephens0c3141e2008-04-15 00:22:02 -0700451 /* Finish initializing socket data structures */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700452 sock->ops = ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100453 sock_init_data(sock, sk);
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +0100454 tipc_set_sk_state(sk, TIPC_OPEN);
Ying Xue07f6c4b2015-01-07 13:41:58 +0800455 if (tipc_sk_insert(tsk)) {
Masanari Iidac19ca6c2016-02-08 20:53:12 +0900456 pr_warn("Socket create failed; port number exhausted\n");
Ying Xue07f6c4b2015-01-07 13:41:58 +0800457 return -EINVAL;
458 }
Herbert Xu40f9f432017-02-11 19:26:46 +0800459
460 /* Ensure tsk is visible before we read own_addr. */
461 smp_mb();
462
Jon Maloy23fd3ea2018-03-22 20:42:49 +0100463 tipc_msg_init(tipc_own_addr(net), msg, TIPC_LOW_IMPORTANCE,
464 TIPC_NAMED_MSG, NAMED_H_SIZE, 0);
Herbert Xu40f9f432017-02-11 19:26:46 +0800465
Ying Xue07f6c4b2015-01-07 13:41:58 +0800466 msg_set_origport(msg, tsk->portid);
Kees Cook31b102b2017-10-30 14:06:45 -0700467 timer_setup(&sk->sk_timer, tipc_sk_timeout, 0);
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100468 sk->sk_shutdown = 0;
Jon Maloy64ac5f52017-10-13 11:04:20 +0200469 sk->sk_backlog_rcv = tipc_sk_backlog_rcv;
Ying Xuecc79dd12013-06-17 10:54:37 -0400470 sk->sk_rcvbuf = sysctl_tipc_rmem[1];
Ying Xuef288bef2012-08-21 11:16:57 +0800471 sk->sk_data_ready = tipc_data_ready;
472 sk->sk_write_space = tipc_write_space;
Ying Xuef4195d12015-11-22 15:46:05 +0800473 sk->sk_destruct = tipc_sock_destruct;
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -0400474 tsk->conn_timeout = CONN_TIMEOUT_DEFAULT;
Jon Maloy1b22bca2018-02-26 20:14:04 +0100475 tsk->group_is_open = true;
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -0400476 atomic_set(&tsk->dupl_rcvcnt, 0);
Allan Stephens7ef43eb2008-05-12 15:42:28 -0700477
Jon Paul Maloy10724cc2016-05-02 11:58:47 -0400478 /* Start out with safe limits until we receive an advertised window */
479 tsk->snd_win = tsk_adv_blocks(RCVBUF_MIN);
480 tsk->rcv_win = tsk->snd_win;
481
Parthasarathy Bhuvaraganc7520232016-11-01 14:02:42 +0100482 if (tipc_sk_type_connectionless(sk)) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400483 tsk_set_unreturnable(tsk, true);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700484 if (sock->type == SOCK_DGRAM)
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400485 tsk_set_unreliable(tsk, true);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700486 }
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +0100487
Per Lidenb97bf3f2006-01-02 19:04:38 +0100488 return 0;
489}
490
Ying Xue07f6c4b2015-01-07 13:41:58 +0800491static void tipc_sk_callback(struct rcu_head *head)
492{
493 struct tipc_sock *tsk = container_of(head, struct tipc_sock, rcu);
494
495 sock_put(&tsk->sk);
496}
497
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100498/* Caller should hold socket lock for the socket. */
499static void __tipc_shutdown(struct socket *sock, int error)
500{
501 struct sock *sk = sock->sk;
502 struct tipc_sock *tsk = tipc_sk(sk);
503 struct net *net = sock_net(sk);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500504 long timeout = CONN_TIMEOUT_DEFAULT;
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100505 u32 dnode = tsk_peer_node(tsk);
506 struct sk_buff *skb;
507
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500508 /* Avoid that hi-prio shutdown msgs bypass msgs in link wakeup queue */
509 tipc_wait_for_cond(sock, &timeout, (!tsk->cong_link_cnt &&
510 !tsk_conn_cong(tsk)));
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
Allan Stephens0c3141e2008-04-15 00:22:02 -0700581 /* Reject any messages that accumulated in backlog queue */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700582 release_sock(sk);
Jon Maloya80ae532017-10-13 11:04:22 +0200583 tipc_dest_list_purge(&tsk->cong_links);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500584 tsk->cong_link_cnt = 0;
Ying Xue07f6c4b2015-01-07 13:41:58 +0800585 call_rcu(&tsk->rcu, tipc_sk_callback);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700586 sock->sk = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100587
Geert Uytterhoeven065d7e32014-04-06 15:56:14 +0200588 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100589}
590
591/**
Ying Xue247f0f32014-02-18 16:06:46 +0800592 * tipc_bind - associate or disassocate TIPC name(s) with a socket
Per Lidenb97bf3f2006-01-02 19:04:38 +0100593 * @sock: socket structure
594 * @uaddr: socket address describing name(s) and desired operation
595 * @uaddr_len: size of socket address data structure
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900596 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100597 * Name and name sequence binding is indicated using a positive scope value;
598 * a negative scope value unbinds the specified name. Specifying no name
599 * (i.e. a socket address length of 0) unbinds all names from the socket.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900600 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100601 * Returns 0 on success, errno otherwise
Allan Stephens0c3141e2008-04-15 00:22:02 -0700602 *
603 * NOTE: This routine doesn't need to take the socket lock since it doesn't
604 * access any non-constant socket information.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100605 */
Ying Xue247f0f32014-02-18 16:06:46 +0800606static int tipc_bind(struct socket *sock, struct sockaddr *uaddr,
607 int uaddr_len)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100608{
Ying Xue84602762013-12-27 10:18:28 +0800609 struct sock *sk = sock->sk;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100610 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400611 struct tipc_sock *tsk = tipc_sk(sk);
Ying Xue84602762013-12-27 10:18:28 +0800612 int res = -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100613
Ying Xue84602762013-12-27 10:18:28 +0800614 lock_sock(sk);
615 if (unlikely(!uaddr_len)) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400616 res = tipc_sk_withdraw(tsk, 0, NULL);
Ying Xue84602762013-12-27 10:18:28 +0800617 goto exit;
618 }
Jon Maloy75da2162017-10-13 11:04:23 +0200619 if (tsk->group) {
620 res = -EACCES;
621 goto exit;
622 }
Ying Xue84602762013-12-27 10:18:28 +0800623 if (uaddr_len < sizeof(struct sockaddr_tipc)) {
624 res = -EINVAL;
625 goto exit;
626 }
627 if (addr->family != AF_TIPC) {
628 res = -EAFNOSUPPORT;
629 goto exit;
630 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100631
Per Lidenb97bf3f2006-01-02 19:04:38 +0100632 if (addr->addrtype == TIPC_ADDR_NAME)
633 addr->addr.nameseq.upper = addr->addr.nameseq.lower;
Ying Xue84602762013-12-27 10:18:28 +0800634 else if (addr->addrtype != TIPC_ADDR_NAMESEQ) {
635 res = -EAFNOSUPPORT;
636 goto exit;
637 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900638
Ying Xue13a2e892013-06-17 10:54:40 -0400639 if ((addr->addr.nameseq.type < TIPC_RESERVED_TYPES) &&
Ying Xue7d0ab172013-06-17 10:54:41 -0400640 (addr->addr.nameseq.type != TIPC_TOP_SRV) &&
Ying Xue84602762013-12-27 10:18:28 +0800641 (addr->addr.nameseq.type != TIPC_CFG_SRV)) {
642 res = -EACCES;
643 goto exit;
644 }
Allan Stephensc422f1b2011-11-02 15:49:40 -0400645
Jon Maloy928df182018-03-15 16:48:51 +0100646 res = (addr->scope >= 0) ?
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400647 tipc_sk_publish(tsk, addr->scope, &addr->addr.nameseq) :
648 tipc_sk_withdraw(tsk, -addr->scope, &addr->addr.nameseq);
Ying Xue84602762013-12-27 10:18:28 +0800649exit:
650 release_sock(sk);
651 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100652}
653
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900654/**
Ying Xue247f0f32014-02-18 16:06:46 +0800655 * tipc_getname - get port ID of socket or peer socket
Per Lidenb97bf3f2006-01-02 19:04:38 +0100656 * @sock: socket structure
657 * @uaddr: area for returned socket address
658 * @uaddr_len: area for returned length of socket address
Allan Stephens2da59912008-07-14 22:43:32 -0700659 * @peer: 0 = own ID, 1 = current peer ID, 2 = current/former peer ID
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900660 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100661 * Returns 0 on success, errno otherwise
Allan Stephens0c3141e2008-04-15 00:22:02 -0700662 *
Allan Stephens2da59912008-07-14 22:43:32 -0700663 * NOTE: This routine doesn't need to take the socket lock since it only
664 * accesses socket information that is unchanging (or which changes in
Allan Stephens0e659672010-12-31 18:59:32 +0000665 * a completely predictable manner).
Per Lidenb97bf3f2006-01-02 19:04:38 +0100666 */
Ying Xue247f0f32014-02-18 16:06:46 +0800667static int tipc_getname(struct socket *sock, struct sockaddr *uaddr,
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +0100668 int peer)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100669{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100670 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
Parthasarathy Bhuvaragan9fd4b072016-11-01 14:02:46 +0100671 struct sock *sk = sock->sk;
672 struct tipc_sock *tsk = tipc_sk(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100673
Kulikov Vasiliy88f8a5e2010-10-31 07:10:32 +0000674 memset(addr, 0, sizeof(*addr));
Allan Stephens0c3141e2008-04-15 00:22:02 -0700675 if (peer) {
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +0100676 if ((!tipc_sk_connected(sk)) &&
Parthasarathy Bhuvaragan9fd4b072016-11-01 14:02:46 +0100677 ((peer != 2) || (sk->sk_state != TIPC_DISCONNECTING)))
Allan Stephens2da59912008-07-14 22:43:32 -0700678 return -ENOTCONN;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400679 addr->addr.id.ref = tsk_peer_port(tsk);
680 addr->addr.id.node = tsk_peer_node(tsk);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700681 } else {
Ying Xue07f6c4b2015-01-07 13:41:58 +0800682 addr->addr.id.ref = tsk->portid;
Jon Maloy23fd3ea2018-03-22 20:42:49 +0100683 addr->addr.id.node = tipc_own_addr(sock_net(sk));
Allan Stephens0c3141e2008-04-15 00:22:02 -0700684 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100685
Per Lidenb97bf3f2006-01-02 19:04:38 +0100686 addr->addrtype = TIPC_ADDR_ID;
687 addr->family = AF_TIPC;
688 addr->scope = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100689 addr->addr.name.domain = 0;
690
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +0100691 return sizeof(*addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100692}
693
694/**
Christoph Hellwig4df73382017-12-31 16:36:32 +0100695 * tipc_poll - read pollmask
Per Lidenb97bf3f2006-01-02 19:04:38 +0100696 * @file: file structure associated with the socket
697 * @sock: socket for which to calculate the poll bits
Per Lidenb97bf3f2006-01-02 19:04:38 +0100698 *
Allan Stephens9b674e82008-03-26 16:48:21 -0700699 * Returns pollmask value
700 *
701 * COMMENTARY:
702 * It appears that the usual socket locking mechanisms are not useful here
703 * since the pollmask info is potentially out-of-date the moment this routine
704 * exits. TCP and other protocols seem to rely on higher level poll routines
705 * to handle any preventable race conditions, so TIPC will do the same ...
706 *
Allan Stephensf662c072010-08-17 11:00:06 +0000707 * IMPORTANT: The fact that a read or write operation is indicated does NOT
708 * imply that the operation will succeed, merely that it should be performed
709 * and will not block.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100710 */
Christoph Hellwig4df73382017-12-31 16:36:32 +0100711static __poll_t tipc_poll_mask(struct socket *sock, __poll_t events)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100712{
Allan Stephens9b674e82008-03-26 16:48:21 -0700713 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400714 struct tipc_sock *tsk = tipc_sk(sk);
Al Viroade994f2017-07-03 00:01:49 -0400715 __poll_t revents = 0;
Allan Stephens9b674e82008-03-26 16:48:21 -0700716
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100717 if (sk->sk_shutdown & RCV_SHUTDOWN)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800718 revents |= EPOLLRDHUP | EPOLLIN | EPOLLRDNORM;
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100719 if (sk->sk_shutdown == SHUTDOWN_MASK)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800720 revents |= EPOLLHUP;
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100721
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +0100722 switch (sk->sk_state) {
723 case TIPC_ESTABLISHED:
Parthasarathy Bhuvaragan517d7c72017-12-28 12:03:06 +0100724 case TIPC_CONNECTING:
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500725 if (!tsk->cong_link_cnt && !tsk_conn_cong(tsk))
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800726 revents |= EPOLLOUT;
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +0100727 /* fall thru' */
728 case TIPC_LISTEN:
Jon Maloycb4dc412017-10-19 16:42:04 +0200729 if (!skb_queue_empty(&sk->sk_receive_queue))
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800730 revents |= EPOLLIN | EPOLLRDNORM;
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +0100731 break;
732 case TIPC_OPEN:
Jon Maloy60c25302018-01-17 16:42:46 +0100733 if (tsk->group_is_open && !tsk->cong_link_cnt)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800734 revents |= EPOLLOUT;
Jon Maloyae236fb2017-10-13 11:04:25 +0200735 if (!tipc_sk_type_connectionless(sk))
736 break;
Jon Maloycb4dc412017-10-19 16:42:04 +0200737 if (skb_queue_empty(&sk->sk_receive_queue))
Jon Maloyae236fb2017-10-13 11:04:25 +0200738 break;
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800739 revents |= EPOLLIN | EPOLLRDNORM;
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +0100740 break;
741 case TIPC_DISCONNECTING:
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800742 revents = EPOLLIN | EPOLLRDNORM | EPOLLHUP;
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +0100743 break;
Allan Stephensf662c072010-08-17 11:00:06 +0000744 }
Jon Maloyae236fb2017-10-13 11:04:25 +0200745 return revents;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100746}
747
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400748/**
749 * tipc_sendmcast - send multicast message
750 * @sock: socket structure
751 * @seq: destination address
Al Viro562640f2014-11-15 01:13:43 -0500752 * @msg: message to send
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500753 * @dlen: length of data to send
754 * @timeout: timeout to wait for wakeup
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400755 *
756 * Called from function tipc_sendmsg(), which has done all sanity checks
757 * Returns the number of bytes sent on success, or errno
758 */
759static int tipc_sendmcast(struct socket *sock, struct tipc_name_seq *seq,
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500760 struct msghdr *msg, size_t dlen, long timeout)
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400761{
762 struct sock *sk = sock->sk;
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500763 struct tipc_sock *tsk = tipc_sk(sk);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500764 struct tipc_msg *hdr = &tsk->phdr;
Ying Xuef2f98002015-01-09 15:27:05 +0800765 struct net *net = sock_net(sk);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500766 int mtu = tipc_bcast_get_mtu(net);
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -0500767 struct tipc_mc_method *method = &tsk->mc_method;
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500768 struct sk_buff_head pkts;
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500769 struct tipc_nlist dsts;
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400770 int rc;
771
Jon Maloy75da2162017-10-13 11:04:23 +0200772 if (tsk->group)
773 return -EACCES;
774
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500775 /* Block or return if any destination link is congested */
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500776 rc = tipc_wait_for_cond(sock, &timeout, !tsk->cong_link_cnt);
777 if (unlikely(rc))
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400778 return rc;
779
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500780 /* Lookup destination nodes */
781 tipc_nlist_init(&dsts, tipc_own_addr(net));
782 tipc_nametbl_lookup_dst_nodes(net, seq->type, seq->lower,
Jon Maloye9a03442018-01-12 20:56:50 +0100783 seq->upper, &dsts);
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500784 if (!dsts.local && !dsts.remote)
785 return -EHOSTUNREACH;
786
787 /* Build message header */
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500788 msg_set_type(hdr, TIPC_MCAST_MSG);
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500789 msg_set_hdr_sz(hdr, MCAST_H_SIZE);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500790 msg_set_lookup_scope(hdr, TIPC_CLUSTER_SCOPE);
791 msg_set_destport(hdr, 0);
792 msg_set_destnode(hdr, 0);
793 msg_set_nametype(hdr, seq->type);
794 msg_set_namelower(hdr, seq->lower);
795 msg_set_nameupper(hdr, seq->upper);
Jon Paul Maloy22d85c72015-07-16 16:54:23 -0400796
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500797 /* Build message as chain of buffers */
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500798 skb_queue_head_init(&pkts);
799 rc = tipc_msg_build(hdr, msg, 0, dlen, mtu, &pkts);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500800
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500801 /* Send message if build was successful */
802 if (unlikely(rc == dlen))
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -0500803 rc = tipc_mcast_xmit(net, &pkts, method, &dsts,
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500804 &tsk->cong_link_cnt);
805
806 tipc_nlist_purge(&dsts);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500807
808 return rc ? rc : dlen;
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400809}
810
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500811/**
Jon Maloy27bd9ec2017-10-13 11:04:27 +0200812 * tipc_send_group_msg - send a message to a member in the group
813 * @net: network namespace
814 * @m: message to send
815 * @mb: group member
816 * @dnode: destination node
817 * @dport: destination port
818 * @dlen: total length of message data
819 */
820static int tipc_send_group_msg(struct net *net, struct tipc_sock *tsk,
821 struct msghdr *m, struct tipc_member *mb,
822 u32 dnode, u32 dport, int dlen)
823{
Jon Maloyb87a5ea2017-10-13 11:04:30 +0200824 u16 bc_snd_nxt = tipc_group_bc_snd_nxt(tsk->group);
Jon Maloy2f487712017-10-13 11:04:31 +0200825 struct tipc_mc_method *method = &tsk->mc_method;
Jon Maloy27bd9ec2017-10-13 11:04:27 +0200826 int blks = tsk_blocks(GROUP_H_SIZE + dlen);
827 struct tipc_msg *hdr = &tsk->phdr;
828 struct sk_buff_head pkts;
829 int mtu, rc;
830
831 /* Complete message header */
832 msg_set_type(hdr, TIPC_GRP_UCAST_MSG);
833 msg_set_hdr_sz(hdr, GROUP_H_SIZE);
834 msg_set_destport(hdr, dport);
835 msg_set_destnode(hdr, dnode);
Jon Maloyb87a5ea2017-10-13 11:04:30 +0200836 msg_set_grp_bc_seqno(hdr, bc_snd_nxt);
Jon Maloy27bd9ec2017-10-13 11:04:27 +0200837
838 /* Build message as chain of buffers */
839 skb_queue_head_init(&pkts);
840 mtu = tipc_node_get_mtu(net, dnode, tsk->portid);
841 rc = tipc_msg_build(hdr, m, 0, dlen, mtu, &pkts);
842 if (unlikely(rc != dlen))
843 return rc;
844
845 /* Send message */
846 rc = tipc_node_xmit(net, &pkts, dnode, tsk->portid);
847 if (unlikely(rc == -ELINKCONG)) {
848 tipc_dest_push(&tsk->cong_links, dnode, 0);
849 tsk->cong_link_cnt++;
850 }
851
Jon Maloy2f487712017-10-13 11:04:31 +0200852 /* Update send window */
Jon Maloy27bd9ec2017-10-13 11:04:27 +0200853 tipc_group_update_member(mb, blks);
854
Jon Maloy2f487712017-10-13 11:04:31 +0200855 /* A broadcast sent within next EXPIRE period must follow same path */
856 method->rcast = true;
857 method->mandatory = true;
Jon Maloy27bd9ec2017-10-13 11:04:27 +0200858 return dlen;
859}
860
861/**
862 * tipc_send_group_unicast - send message to a member in the group
863 * @sock: socket structure
864 * @m: message to send
865 * @dlen: total length of message data
866 * @timeout: timeout to wait for wakeup
867 *
868 * Called from function tipc_sendmsg(), which has done all sanity checks
869 * Returns the number of bytes sent on success, or errno
870 */
871static int tipc_send_group_unicast(struct socket *sock, struct msghdr *m,
872 int dlen, long timeout)
873{
874 struct sock *sk = sock->sk;
875 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
876 int blks = tsk_blocks(GROUP_H_SIZE + dlen);
877 struct tipc_sock *tsk = tipc_sk(sk);
878 struct tipc_group *grp = tsk->group;
879 struct net *net = sock_net(sk);
880 struct tipc_member *mb = NULL;
881 u32 node, port;
882 int rc;
883
884 node = dest->addr.id.node;
885 port = dest->addr.id.ref;
886 if (!port && !node)
887 return -EHOSTUNREACH;
888
889 /* Block or return if destination link or member is congested */
890 rc = tipc_wait_for_cond(sock, &timeout,
891 !tipc_dest_find(&tsk->cong_links, node, 0) &&
892 !tipc_group_cong(grp, node, port, blks, &mb));
893 if (unlikely(rc))
894 return rc;
895
896 if (unlikely(!mb))
897 return -EHOSTUNREACH;
898
899 rc = tipc_send_group_msg(net, tsk, m, mb, node, port, dlen);
900
901 return rc ? rc : dlen;
902}
903
904/**
Jon Maloyee106d72017-10-13 11:04:28 +0200905 * tipc_send_group_anycast - send message to any member with given identity
906 * @sock: socket structure
907 * @m: message to send
908 * @dlen: total length of message data
909 * @timeout: timeout to wait for wakeup
910 *
911 * Called from function tipc_sendmsg(), which has done all sanity checks
912 * Returns the number of bytes sent on success, or errno
913 */
914static int tipc_send_group_anycast(struct socket *sock, struct msghdr *m,
915 int dlen, long timeout)
916{
917 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
918 struct sock *sk = sock->sk;
919 struct tipc_sock *tsk = tipc_sk(sk);
920 struct list_head *cong_links = &tsk->cong_links;
921 int blks = tsk_blocks(GROUP_H_SIZE + dlen);
922 struct tipc_group *grp = tsk->group;
Jon Maloy232d07b2018-01-08 21:03:30 +0100923 struct tipc_msg *hdr = &tsk->phdr;
Jon Maloyee106d72017-10-13 11:04:28 +0200924 struct tipc_member *first = NULL;
925 struct tipc_member *mbr = NULL;
926 struct net *net = sock_net(sk);
927 u32 node, port, exclude;
Jon Maloyee106d72017-10-13 11:04:28 +0200928 struct list_head dsts;
Jon Maloy232d07b2018-01-08 21:03:30 +0100929 u32 type, inst, scope;
Jon Maloyee106d72017-10-13 11:04:28 +0200930 int lookups = 0;
931 int dstcnt, rc;
932 bool cong;
933
934 INIT_LIST_HEAD(&dsts);
935
Jon Maloy232d07b2018-01-08 21:03:30 +0100936 type = msg_nametype(hdr);
Jon Maloyee106d72017-10-13 11:04:28 +0200937 inst = dest->addr.name.name.instance;
Jon Maloy232d07b2018-01-08 21:03:30 +0100938 scope = msg_lookup_scope(hdr);
Jon Maloyee106d72017-10-13 11:04:28 +0200939 exclude = tipc_group_exclude(grp);
940
941 while (++lookups < 4) {
942 first = NULL;
943
944 /* Look for a non-congested destination member, if any */
945 while (1) {
Jon Maloy232d07b2018-01-08 21:03:30 +0100946 if (!tipc_nametbl_lookup(net, type, inst, scope, &dsts,
Jon Maloyee106d72017-10-13 11:04:28 +0200947 &dstcnt, exclude, false))
948 return -EHOSTUNREACH;
949 tipc_dest_pop(&dsts, &node, &port);
950 cong = tipc_group_cong(grp, node, port, blks, &mbr);
951 if (!cong)
952 break;
953 if (mbr == first)
954 break;
955 if (!first)
956 first = mbr;
957 }
958
959 /* Start over if destination was not in member list */
960 if (unlikely(!mbr))
961 continue;
962
963 if (likely(!cong && !tipc_dest_find(cong_links, node, 0)))
964 break;
965
966 /* Block or return if destination link or member is congested */
967 rc = tipc_wait_for_cond(sock, &timeout,
968 !tipc_dest_find(cong_links, node, 0) &&
969 !tipc_group_cong(grp, node, port,
970 blks, &mbr));
971 if (unlikely(rc))
972 return rc;
973
974 /* Send, unless destination disappeared while waiting */
975 if (likely(mbr))
976 break;
977 }
978
979 if (unlikely(lookups >= 4))
980 return -EHOSTUNREACH;
981
982 rc = tipc_send_group_msg(net, tsk, m, mbr, node, port, dlen);
983
984 return rc ? rc : dlen;
985}
986
987/**
Jon Maloy75da2162017-10-13 11:04:23 +0200988 * tipc_send_group_bcast - send message to all members in communication group
989 * @sk: socket structure
990 * @m: message to send
991 * @dlen: total length of message data
992 * @timeout: timeout to wait for wakeup
993 *
994 * Called from function tipc_sendmsg(), which has done all sanity checks
995 * Returns the number of bytes sent on success, or errno
996 */
997static int tipc_send_group_bcast(struct socket *sock, struct msghdr *m,
998 int dlen, long timeout)
999{
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001000 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
Jon Maloy75da2162017-10-13 11:04:23 +02001001 struct sock *sk = sock->sk;
1002 struct net *net = sock_net(sk);
1003 struct tipc_sock *tsk = tipc_sk(sk);
1004 struct tipc_group *grp = tsk->group;
1005 struct tipc_nlist *dsts = tipc_group_dests(grp);
1006 struct tipc_mc_method *method = &tsk->mc_method;
Jon Maloy2f487712017-10-13 11:04:31 +02001007 bool ack = method->mandatory && method->rcast;
Jon Maloyb7d42632017-10-13 11:04:26 +02001008 int blks = tsk_blocks(MCAST_H_SIZE + dlen);
Jon Maloy75da2162017-10-13 11:04:23 +02001009 struct tipc_msg *hdr = &tsk->phdr;
1010 int mtu = tipc_bcast_get_mtu(net);
1011 struct sk_buff_head pkts;
1012 int rc = -EHOSTUNREACH;
1013
1014 if (!dsts->local && !dsts->remote)
1015 return -EHOSTUNREACH;
1016
Jon Maloyb7d42632017-10-13 11:04:26 +02001017 /* Block or return if any destination link or member is congested */
1018 rc = tipc_wait_for_cond(sock, &timeout, !tsk->cong_link_cnt &&
1019 !tipc_group_bc_cong(grp, blks));
Jon Maloy75da2162017-10-13 11:04:23 +02001020 if (unlikely(rc))
1021 return rc;
1022
1023 /* Complete message header */
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001024 if (dest) {
1025 msg_set_type(hdr, TIPC_GRP_MCAST_MSG);
1026 msg_set_nameinst(hdr, dest->addr.name.name.instance);
1027 } else {
1028 msg_set_type(hdr, TIPC_GRP_BCAST_MSG);
1029 msg_set_nameinst(hdr, 0);
1030 }
Jon Maloyb7d42632017-10-13 11:04:26 +02001031 msg_set_hdr_sz(hdr, GROUP_H_SIZE);
Jon Maloy75da2162017-10-13 11:04:23 +02001032 msg_set_destport(hdr, 0);
1033 msg_set_destnode(hdr, 0);
Jon Maloy75da2162017-10-13 11:04:23 +02001034 msg_set_grp_bc_seqno(hdr, tipc_group_bc_snd_nxt(grp));
1035
Jon Maloy2f487712017-10-13 11:04:31 +02001036 /* Avoid getting stuck with repeated forced replicasts */
1037 msg_set_grp_bc_ack_req(hdr, ack);
1038
Jon Maloy75da2162017-10-13 11:04:23 +02001039 /* Build message as chain of buffers */
1040 skb_queue_head_init(&pkts);
1041 rc = tipc_msg_build(hdr, m, 0, dlen, mtu, &pkts);
1042 if (unlikely(rc != dlen))
1043 return rc;
1044
1045 /* Send message */
Jon Maloy2f487712017-10-13 11:04:31 +02001046 rc = tipc_mcast_xmit(net, &pkts, method, dsts, &tsk->cong_link_cnt);
Jon Maloy75da2162017-10-13 11:04:23 +02001047 if (unlikely(rc))
1048 return rc;
1049
Jon Maloyb7d42632017-10-13 11:04:26 +02001050 /* Update broadcast sequence number and send windows */
Jon Maloy2f487712017-10-13 11:04:31 +02001051 tipc_group_update_bc_members(tsk->group, blks, ack);
1052
1053 /* Broadcast link is now free to choose method for next broadcast */
1054 method->mandatory = false;
1055 method->expires = jiffies;
1056
Jon Maloy75da2162017-10-13 11:04:23 +02001057 return dlen;
1058}
1059
1060/**
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001061 * tipc_send_group_mcast - send message to all members with given identity
1062 * @sock: socket structure
1063 * @m: message to send
1064 * @dlen: total length of message data
1065 * @timeout: timeout to wait for wakeup
1066 *
1067 * Called from function tipc_sendmsg(), which has done all sanity checks
1068 * Returns the number of bytes sent on success, or errno
1069 */
1070static int tipc_send_group_mcast(struct socket *sock, struct msghdr *m,
1071 int dlen, long timeout)
1072{
1073 struct sock *sk = sock->sk;
1074 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001075 struct tipc_sock *tsk = tipc_sk(sk);
1076 struct tipc_group *grp = tsk->group;
Jon Maloy232d07b2018-01-08 21:03:30 +01001077 struct tipc_msg *hdr = &tsk->phdr;
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001078 struct net *net = sock_net(sk);
Jon Maloy232d07b2018-01-08 21:03:30 +01001079 u32 type, inst, scope, exclude;
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001080 struct list_head dsts;
Jon Maloy232d07b2018-01-08 21:03:30 +01001081 u32 dstcnt;
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001082
1083 INIT_LIST_HEAD(&dsts);
1084
Jon Maloy232d07b2018-01-08 21:03:30 +01001085 type = msg_nametype(hdr);
1086 inst = dest->addr.name.name.instance;
1087 scope = msg_lookup_scope(hdr);
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001088 exclude = tipc_group_exclude(grp);
Jon Maloy232d07b2018-01-08 21:03:30 +01001089
1090 if (!tipc_nametbl_lookup(net, type, inst, scope, &dsts,
1091 &dstcnt, exclude, true))
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001092 return -EHOSTUNREACH;
1093
1094 if (dstcnt == 1) {
1095 tipc_dest_pop(&dsts, &dest->addr.id.node, &dest->addr.id.ref);
1096 return tipc_send_group_unicast(sock, m, dlen, timeout);
1097 }
1098
1099 tipc_dest_list_purge(&dsts);
1100 return tipc_send_group_bcast(sock, m, dlen, timeout);
1101}
1102
1103/**
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001104 * tipc_sk_mcast_rcv - Deliver multicast messages to all destination sockets
1105 * @arrvq: queue with arriving messages, to be cloned after destination lookup
1106 * @inputq: queue with cloned messages, delivered to socket after dest lookup
1107 *
1108 * Multi-threaded: parallel calls with reference to same queues may occur
Jon Paul Maloy078bec82014-07-16 20:41:00 -04001109 */
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001110void tipc_sk_mcast_rcv(struct net *net, struct sk_buff_head *arrvq,
1111 struct sk_buff_head *inputq)
Jon Paul Maloy078bec82014-07-16 20:41:00 -04001112{
Jon Maloy75da2162017-10-13 11:04:23 +02001113 u32 self = tipc_own_addr(net);
Jon Maloy232d07b2018-01-08 21:03:30 +01001114 u32 type, lower, upper, scope;
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001115 struct sk_buff *skb, *_skb;
Jon Maloy75da2162017-10-13 11:04:23 +02001116 u32 portid, oport, onode;
Jon Maloy232d07b2018-01-08 21:03:30 +01001117 struct sk_buff_head tmpq;
Jon Maloy75da2162017-10-13 11:04:23 +02001118 struct list_head dports;
Jon Maloy232d07b2018-01-08 21:03:30 +01001119 struct tipc_msg *hdr;
1120 int user, mtyp, hlen;
1121 bool exact;
Jon Paul Maloy3c724ac2015-02-05 08:36:43 -05001122
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001123 __skb_queue_head_init(&tmpq);
Jon Paul Maloy4d8642d2017-01-03 10:55:10 -05001124 INIT_LIST_HEAD(&dports);
Jon Paul Maloy078bec82014-07-16 20:41:00 -04001125
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001126 skb = tipc_skb_peek(arrvq, &inputq->lock);
1127 for (; skb; skb = tipc_skb_peek(arrvq, &inputq->lock)) {
Jon Maloy232d07b2018-01-08 21:03:30 +01001128 hdr = buf_msg(skb);
1129 user = msg_user(hdr);
1130 mtyp = msg_type(hdr);
1131 hlen = skb_headroom(skb) + msg_hdr_sz(hdr);
1132 oport = msg_origport(hdr);
1133 onode = msg_orignode(hdr);
1134 type = msg_nametype(hdr);
1135
Jon Maloy2f487712017-10-13 11:04:31 +02001136 if (mtyp == TIPC_GRP_UCAST_MSG || user == GROUP_PROTOCOL) {
1137 spin_lock_bh(&inputq->lock);
1138 if (skb_peek(arrvq) == skb) {
1139 __skb_dequeue(arrvq);
1140 __skb_queue_tail(inputq, skb);
1141 }
Jon Maloyc545a942017-12-11 19:11:55 +01001142 kfree_skb(skb);
Jon Maloy2f487712017-10-13 11:04:31 +02001143 spin_unlock_bh(&inputq->lock);
1144 continue;
1145 }
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001146
Jon Maloy232d07b2018-01-08 21:03:30 +01001147 /* Group messages require exact scope match */
1148 if (msg_in_group(hdr)) {
1149 lower = 0;
1150 upper = ~0;
1151 scope = msg_lookup_scope(hdr);
1152 exact = true;
1153 } else {
1154 /* TIPC_NODE_SCOPE means "any scope" in this context */
1155 if (onode == self)
1156 scope = TIPC_NODE_SCOPE;
1157 else
1158 scope = TIPC_CLUSTER_SCOPE;
1159 exact = false;
1160 lower = msg_namelower(hdr);
1161 upper = msg_nameupper(hdr);
Jon Maloy75da2162017-10-13 11:04:23 +02001162 }
Jon Maloy232d07b2018-01-08 21:03:30 +01001163
1164 /* Create destination port list: */
1165 tipc_nametbl_mc_lookup(net, type, lower, upper,
1166 scope, exact, &dports);
1167
1168 /* Clone message per destination */
Jon Maloya80ae532017-10-13 11:04:22 +02001169 while (tipc_dest_pop(&dports, NULL, &portid)) {
Jon Maloy232d07b2018-01-08 21:03:30 +01001170 _skb = __pskb_copy(skb, hlen, GFP_ATOMIC);
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001171 if (_skb) {
1172 msg_set_destport(buf_msg(_skb), portid);
1173 __skb_queue_tail(&tmpq, _skb);
1174 continue;
1175 }
1176 pr_warn("Failed to clone mcast rcv buffer\n");
Jon Paul Maloy078bec82014-07-16 20:41:00 -04001177 }
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001178 /* Append to inputq if not already done by other thread */
1179 spin_lock_bh(&inputq->lock);
1180 if (skb_peek(arrvq) == skb) {
1181 skb_queue_splice_tail_init(&tmpq, inputq);
1182 kfree_skb(__skb_dequeue(arrvq));
1183 }
1184 spin_unlock_bh(&inputq->lock);
1185 __skb_queue_purge(&tmpq);
1186 kfree_skb(skb);
Jon Paul Maloy078bec82014-07-16 20:41:00 -04001187 }
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001188 tipc_sk_rcv(net, inputq);
Jon Paul Maloy078bec82014-07-16 20:41:00 -04001189}
1190
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001191/**
Jon Maloy64ac5f52017-10-13 11:04:20 +02001192 * tipc_sk_conn_proto_rcv - receive a connection mng protocol message
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001193 * @tsk: receiving socket
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001194 * @skb: pointer to message buffer.
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001195 */
Jon Maloy64ac5f52017-10-13 11:04:20 +02001196static void tipc_sk_conn_proto_rcv(struct tipc_sock *tsk, struct sk_buff *skb,
1197 struct sk_buff_head *xmitq)
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001198{
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001199 struct tipc_msg *hdr = buf_msg(skb);
Jon Maloy64ac5f52017-10-13 11:04:20 +02001200 u32 onode = tsk_own_node(tsk);
1201 struct sock *sk = &tsk->sk;
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001202 int mtyp = msg_type(hdr);
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001203 bool conn_cong;
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001204
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001205 /* Ignore if connection cannot be validated: */
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001206 if (!tsk_peer_msg(tsk, hdr))
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001207 goto exit;
1208
Parthasarathy Bhuvaraganc1be7752017-04-26 10:05:02 +02001209 if (unlikely(msg_errcode(hdr))) {
1210 tipc_set_sk_state(sk, TIPC_DISCONNECTING);
1211 tipc_node_remove_conn(sock_net(sk), tsk_peer_node(tsk),
1212 tsk_peer_port(tsk));
1213 sk->sk_state_change(sk);
1214 goto exit;
1215 }
1216
Parthasarathy Bhuvaragan8ea642e2016-11-01 14:02:44 +01001217 tsk->probe_unacked = false;
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001218
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001219 if (mtyp == CONN_PROBE) {
1220 msg_set_type(hdr, CONN_PROBE_REPLY);
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04001221 if (tipc_msg_reverse(onode, &skb, TIPC_OK))
1222 __skb_queue_tail(xmitq, skb);
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001223 return;
1224 } else if (mtyp == CONN_ACK) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001225 conn_cong = tsk_conn_cong(tsk);
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001226 tsk->snt_unacked -= msg_conn_ack(hdr);
1227 if (tsk->peer_caps & TIPC_BLOCK_FLOWCTL)
1228 tsk->snd_win = msg_adv_win(hdr);
Jon Paul Maloy60120522014-06-25 20:41:42 -05001229 if (conn_cong)
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001230 sk->sk_write_space(sk);
1231 } else if (mtyp != CONN_PROBE_REPLY) {
1232 pr_warn("Received unknown CONN_PROTO msg\n");
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001233 }
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001234exit:
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001235 kfree_skb(skb);
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001236}
1237
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001238/**
Ying Xue247f0f32014-02-18 16:06:46 +08001239 * tipc_sendmsg - send message in connectionless manner
Per Lidenb97bf3f2006-01-02 19:04:38 +01001240 * @sock: socket structure
1241 * @m: message to send
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001242 * @dsz: amount of user data to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001243 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001244 * Message must have an destination specified explicitly.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001245 * Used for SOCK_RDM and SOCK_DGRAM messages,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001246 * and for 'SYN' messages on SOCK_SEQPACKET and SOCK_STREAM connections.
1247 * (Note: 'SYN+' is prohibited on SOCK_STREAM.)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001248 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001249 * Returns the number of bytes sent on success, or errno otherwise
1250 */
Ying Xue1b784142015-03-02 15:37:48 +08001251static int tipc_sendmsg(struct socket *sock,
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001252 struct msghdr *m, size_t dsz)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001253{
Ying Xue39a02952015-03-02 15:37:47 +08001254 struct sock *sk = sock->sk;
1255 int ret;
1256
1257 lock_sock(sk);
1258 ret = __tipc_sendmsg(sock, m, dsz);
1259 release_sock(sk);
1260
1261 return ret;
1262}
1263
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001264static int __tipc_sendmsg(struct socket *sock, struct msghdr *m, size_t dlen)
Ying Xue39a02952015-03-02 15:37:47 +08001265{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001266 struct sock *sk = sock->sk;
Ying Xuef2f98002015-01-09 15:27:05 +08001267 struct net *net = sock_net(sk);
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001268 struct tipc_sock *tsk = tipc_sk(sk);
1269 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
1270 long timeout = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT);
1271 struct list_head *clinks = &tsk->cong_links;
1272 bool syn = !tipc_sk_type_connectionless(sk);
Jon Maloy75da2162017-10-13 11:04:23 +02001273 struct tipc_group *grp = tsk->group;
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001274 struct tipc_msg *hdr = &tsk->phdr;
Erik Hugnef2f80362015-03-19 09:02:19 +01001275 struct tipc_name_seq *seq;
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001276 struct sk_buff_head pkts;
Jon Maloy335b9292018-04-12 01:15:48 +02001277 u32 dport, dnode = 0;
Jon Maloy928df182018-03-15 16:48:51 +01001278 u32 type, inst;
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001279 int mtu, rc;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001280
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001281 if (unlikely(dlen > TIPC_MAX_USER_MSG_SIZE))
Allan Stephensc29c3f72010-04-20 17:58:24 -04001282 return -EMSGSIZE;
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001283
Jon Maloy27bd9ec2017-10-13 11:04:27 +02001284 if (likely(dest)) {
1285 if (unlikely(m->msg_namelen < sizeof(*dest)))
1286 return -EINVAL;
1287 if (unlikely(dest->family != AF_TIPC))
1288 return -EINVAL;
1289 }
1290
1291 if (grp) {
1292 if (!dest)
1293 return tipc_send_group_bcast(sock, m, dlen, timeout);
Jon Maloyee106d72017-10-13 11:04:28 +02001294 if (dest->addrtype == TIPC_ADDR_NAME)
1295 return tipc_send_group_anycast(sock, m, dlen, timeout);
Jon Maloy27bd9ec2017-10-13 11:04:27 +02001296 if (dest->addrtype == TIPC_ADDR_ID)
1297 return tipc_send_group_unicast(sock, m, dlen, timeout);
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001298 if (dest->addrtype == TIPC_ADDR_MCAST)
1299 return tipc_send_group_mcast(sock, m, dlen, timeout);
Jon Maloy27bd9ec2017-10-13 11:04:27 +02001300 return -EINVAL;
1301 }
Jon Maloy75da2162017-10-13 11:04:23 +02001302
Erik Hugnef2f80362015-03-19 09:02:19 +01001303 if (unlikely(!dest)) {
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001304 dest = &tsk->peer;
1305 if (!syn || dest->family != AF_TIPC)
Erik Hugnef2f80362015-03-19 09:02:19 +01001306 return -EDESTADDRREQ;
Erik Hugnef2f80362015-03-19 09:02:19 +01001307 }
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001308
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001309 if (unlikely(syn)) {
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +01001310 if (sk->sk_state == TIPC_LISTEN)
Ying Xue39a02952015-03-02 15:37:47 +08001311 return -EPIPE;
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +01001312 if (sk->sk_state != TIPC_OPEN)
Ying Xue39a02952015-03-02 15:37:47 +08001313 return -EISCONN;
1314 if (tsk->published)
1315 return -EOPNOTSUPP;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001316 if (dest->addrtype == TIPC_ADDR_NAME) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001317 tsk->conn_type = dest->addr.name.name.type;
1318 tsk->conn_instance = dest->addr.name.name.instance;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001319 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001320 }
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001321
Erik Hugnef2f80362015-03-19 09:02:19 +01001322 seq = &dest->addr.nameseq;
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001323 if (dest->addrtype == TIPC_ADDR_MCAST)
1324 return tipc_sendmcast(sock, seq, m, dlen, timeout);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001325
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001326 if (dest->addrtype == TIPC_ADDR_NAME) {
1327 type = dest->addr.name.name.type;
1328 inst = dest->addr.name.name.instance;
Jon Maloy928df182018-03-15 16:48:51 +01001329 dnode = dest->addr.name.domain;
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001330 msg_set_type(hdr, TIPC_NAMED_MSG);
1331 msg_set_hdr_sz(hdr, NAMED_H_SIZE);
1332 msg_set_nametype(hdr, type);
1333 msg_set_nameinst(hdr, inst);
Jon Maloy928df182018-03-15 16:48:51 +01001334 msg_set_lookup_scope(hdr, tipc_node2scope(dnode));
Ying Xue4ac1c8d2015-01-09 15:27:09 +08001335 dport = tipc_nametbl_translate(net, type, inst, &dnode);
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001336 msg_set_destnode(hdr, dnode);
1337 msg_set_destport(hdr, dport);
Ying Xue39a02952015-03-02 15:37:47 +08001338 if (unlikely(!dport && !dnode))
1339 return -EHOSTUNREACH;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001340 } else if (dest->addrtype == TIPC_ADDR_ID) {
1341 dnode = dest->addr.id.node;
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001342 msg_set_type(hdr, TIPC_DIRECT_MSG);
1343 msg_set_lookup_scope(hdr, 0);
1344 msg_set_destnode(hdr, dnode);
1345 msg_set_destport(hdr, dest->addr.id.ref);
1346 msg_set_hdr_sz(hdr, BASIC_H_SIZE);
Jon Maloy335b9292018-04-12 01:15:48 +02001347 } else {
1348 return -EINVAL;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001349 }
1350
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001351 /* Block or return if destination link is congested */
Jon Maloya80ae532017-10-13 11:04:22 +02001352 rc = tipc_wait_for_cond(sock, &timeout,
1353 !tipc_dest_find(clinks, dnode, 0));
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001354 if (unlikely(rc))
Ying Xue39a02952015-03-02 15:37:47 +08001355 return rc;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001356
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001357 skb_queue_head_init(&pkts);
1358 mtu = tipc_node_get_mtu(net, dnode, tsk->portid);
1359 rc = tipc_msg_build(hdr, m, 0, dlen, mtu, &pkts);
1360 if (unlikely(rc != dlen))
1361 return rc;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001362
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001363 rc = tipc_node_xmit(net, &pkts, dnode, tsk->portid);
1364 if (unlikely(rc == -ELINKCONG)) {
Jon Maloya80ae532017-10-13 11:04:22 +02001365 tipc_dest_push(clinks, dnode, 0);
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001366 tsk->cong_link_cnt++;
1367 rc = 0;
1368 }
1369
1370 if (unlikely(syn && !rc))
1371 tipc_set_sk_state(sk, TIPC_CONNECTING);
1372
1373 return rc ? rc : dlen;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001374}
1375
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001376/**
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001377 * tipc_sendstream - send stream-oriented data
Per Lidenb97bf3f2006-01-02 19:04:38 +01001378 * @sock: socket structure
1379 * @m: data to send
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001380 * @dsz: total length of data to be transmitted
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001381 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001382 * Used for SOCK_STREAM data.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001383 *
1384 * Returns the number of bytes sent on success (or partial success),
Allan Stephens1303e8f2006-06-25 23:46:50 -07001385 * or errno if no data sent
Per Lidenb97bf3f2006-01-02 19:04:38 +01001386 */
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001387static int tipc_sendstream(struct socket *sock, struct msghdr *m, size_t dsz)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001388{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001389 struct sock *sk = sock->sk;
Ying Xue39a02952015-03-02 15:37:47 +08001390 int ret;
1391
1392 lock_sock(sk);
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001393 ret = __tipc_sendstream(sock, m, dsz);
Ying Xue39a02952015-03-02 15:37:47 +08001394 release_sock(sk);
1395
1396 return ret;
1397}
1398
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001399static int __tipc_sendstream(struct socket *sock, struct msghdr *m, size_t dlen)
Ying Xue39a02952015-03-02 15:37:47 +08001400{
1401 struct sock *sk = sock->sk;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001402 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001403 long timeout = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT);
1404 struct tipc_sock *tsk = tipc_sk(sk);
1405 struct tipc_msg *hdr = &tsk->phdr;
1406 struct net *net = sock_net(sk);
1407 struct sk_buff_head pkts;
1408 u32 dnode = tsk_peer_node(tsk);
1409 int send, sent = 0;
1410 int rc = 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001411
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001412 skb_queue_head_init(&pkts);
1413
1414 if (unlikely(dlen > INT_MAX))
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001415 return -EMSGSIZE;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001416
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001417 /* Handle implicit connection setup */
1418 if (unlikely(dest)) {
1419 rc = __tipc_sendmsg(sock, m, dlen);
1420 if (dlen && (dlen == rc))
1421 tsk->snt_unacked = tsk_inc(tsk, dlen + msg_hdr_sz(hdr));
1422 return rc;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001423 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001424
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001425 do {
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001426 rc = tipc_wait_for_cond(sock, &timeout,
1427 (!tsk->cong_link_cnt &&
Jon Paul Maloy8c44e1a2017-01-03 10:55:09 -05001428 !tsk_conn_cong(tsk) &&
1429 tipc_sk_connected(sk)));
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001430 if (unlikely(rc))
1431 break;
Ying Xue39a02952015-03-02 15:37:47 +08001432
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001433 send = min_t(size_t, dlen - sent, TIPC_MAX_USER_MSG_SIZE);
1434 rc = tipc_msg_build(hdr, m, sent, send, tsk->max_pkt, &pkts);
1435 if (unlikely(rc != send))
1436 break;
1437
1438 rc = tipc_node_xmit(net, &pkts, dnode, tsk->portid);
1439 if (unlikely(rc == -ELINKCONG)) {
1440 tsk->cong_link_cnt = 1;
1441 rc = 0;
1442 }
1443 if (likely(!rc)) {
1444 tsk->snt_unacked += tsk_inc(tsk, send + MIN_H_SIZE);
1445 sent += send;
1446 }
1447 } while (sent < dlen && !rc);
1448
Parthasarathy Bhuvaragan3364d612017-04-24 15:00:42 +02001449 return sent ? sent : rc;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001450}
1451
1452/**
1453 * tipc_send_packet - send a connection-oriented message
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001454 * @sock: socket structure
1455 * @m: message to send
1456 * @dsz: length of data to be transmitted
1457 *
1458 * Used for SOCK_SEQPACKET messages.
1459 *
1460 * Returns the number of bytes sent on success, or errno otherwise
1461 */
Ying Xue1b784142015-03-02 15:37:48 +08001462static int tipc_send_packet(struct socket *sock, struct msghdr *m, size_t dsz)
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001463{
1464 if (dsz > TIPC_MAX_USER_MSG_SIZE)
1465 return -EMSGSIZE;
1466
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001467 return tipc_sendstream(sock, m, dsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001468}
1469
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001470/* tipc_sk_finish_conn - complete the setup of a connection
Per Lidenb97bf3f2006-01-02 19:04:38 +01001471 */
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001472static void tipc_sk_finish_conn(struct tipc_sock *tsk, u32 peer_port,
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001473 u32 peer_node)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001474{
Ying Xue3721e9c2015-01-13 17:07:48 +08001475 struct sock *sk = &tsk->sk;
1476 struct net *net = sock_net(sk);
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001477 struct tipc_msg *msg = &tsk->phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001478
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001479 msg_set_destnode(msg, peer_node);
1480 msg_set_destport(msg, peer_port);
1481 msg_set_type(msg, TIPC_CONN_MSG);
1482 msg_set_lookup_scope(msg, 0);
1483 msg_set_hdr_sz(msg, SHORT_H_SIZE);
Jon Paul Maloyf9fef182014-03-12 11:31:08 -04001484
Jon Maloy0d5fcebf2017-10-20 11:21:32 +02001485 sk_reset_timer(sk, &sk->sk_timer, jiffies + CONN_PROBING_INTV);
Parthasarathy Bhuvaragan8ea642e2016-11-01 14:02:44 +01001486 tipc_set_sk_state(sk, TIPC_ESTABLISHED);
Ying Xuef2f98002015-01-09 15:27:05 +08001487 tipc_node_add_conn(net, peer_node, tsk->portid, peer_port);
1488 tsk->max_pkt = tipc_node_get_mtu(net, peer_node, tsk->portid);
Jon Paul Maloy60020e12016-05-02 11:58:46 -04001489 tsk->peer_caps = tipc_node_get_capabilities(net, peer_node);
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001490 if (tsk->peer_caps & TIPC_BLOCK_FLOWCTL)
1491 return;
1492
1493 /* Fall back to message based flow control */
1494 tsk->rcv_win = FLOWCTL_MSG_WIN;
1495 tsk->snd_win = FLOWCTL_MSG_WIN;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001496}
1497
1498/**
Jon Maloy31c82a22017-10-13 11:04:24 +02001499 * tipc_sk_set_orig_addr - capture sender's address for received message
Per Lidenb97bf3f2006-01-02 19:04:38 +01001500 * @m: descriptor for message info
Jon Maloy31c82a22017-10-13 11:04:24 +02001501 * @hdr: received message header
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001502 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001503 * Note: Address is not captured if not requested by receiver.
1504 */
Jon Maloy31c82a22017-10-13 11:04:24 +02001505static void tipc_sk_set_orig_addr(struct msghdr *m, struct sk_buff *skb)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001506{
Jon Maloy31c82a22017-10-13 11:04:24 +02001507 DECLARE_SOCKADDR(struct sockaddr_pair *, srcaddr, m->msg_name);
1508 struct tipc_msg *hdr = buf_msg(skb);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001509
Jon Maloy31c82a22017-10-13 11:04:24 +02001510 if (!srcaddr)
1511 return;
1512
1513 srcaddr->sock.family = AF_TIPC;
1514 srcaddr->sock.addrtype = TIPC_ADDR_ID;
Eric Dumazet09c8b972018-05-09 09:50:22 -07001515 srcaddr->sock.scope = 0;
Jon Maloy31c82a22017-10-13 11:04:24 +02001516 srcaddr->sock.addr.id.ref = msg_origport(hdr);
1517 srcaddr->sock.addr.id.node = msg_orignode(hdr);
1518 srcaddr->sock.addr.name.domain = 0;
Jon Maloy31c82a22017-10-13 11:04:24 +02001519 m->msg_namelen = sizeof(struct sockaddr_tipc);
1520
1521 if (!msg_in_group(hdr))
1522 return;
1523
1524 /* Group message users may also want to know sending member's id */
1525 srcaddr->member.family = AF_TIPC;
1526 srcaddr->member.addrtype = TIPC_ADDR_NAME;
Eric Dumazet09c8b972018-05-09 09:50:22 -07001527 srcaddr->member.scope = 0;
Jon Maloy31c82a22017-10-13 11:04:24 +02001528 srcaddr->member.addr.name.name.type = msg_nametype(hdr);
1529 srcaddr->member.addr.name.name.instance = TIPC_SKB_CB(skb)->orig_member;
1530 srcaddr->member.addr.name.domain = 0;
1531 m->msg_namelen = sizeof(*srcaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001532}
1533
1534/**
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001535 * tipc_sk_anc_data_recv - optionally capture ancillary data for received message
Per Lidenb97bf3f2006-01-02 19:04:38 +01001536 * @m: descriptor for message info
1537 * @msg: received message header
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001538 * @tsk: TIPC port associated with message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001539 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001540 * Note: Ancillary data is not captured if not requested by receiver.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001541 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001542 * Returns 0 if successful, otherwise errno
1543 */
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001544static int tipc_sk_anc_data_recv(struct msghdr *m, struct tipc_msg *msg,
1545 struct tipc_sock *tsk)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001546{
1547 u32 anc_data[3];
1548 u32 err;
1549 u32 dest_type;
Allan Stephens3546c752006-06-25 23:45:24 -07001550 int has_name;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001551 int res;
1552
1553 if (likely(m->msg_controllen == 0))
1554 return 0;
1555
1556 /* Optionally capture errored message object(s) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001557 err = msg ? msg_errcode(msg) : 0;
1558 if (unlikely(err)) {
1559 anc_data[0] = err;
1560 anc_data[1] = msg_data_sz(msg);
Allan Stephens2db99832010-12-31 18:59:33 +00001561 res = put_cmsg(m, SOL_TIPC, TIPC_ERRINFO, 8, anc_data);
1562 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001563 return res;
Allan Stephens2db99832010-12-31 18:59:33 +00001564 if (anc_data[1]) {
1565 res = put_cmsg(m, SOL_TIPC, TIPC_RETDATA, anc_data[1],
1566 msg_data(msg));
1567 if (res)
1568 return res;
1569 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001570 }
1571
1572 /* Optionally capture message destination object */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001573 dest_type = msg ? msg_type(msg) : TIPC_DIRECT_MSG;
1574 switch (dest_type) {
1575 case TIPC_NAMED_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -07001576 has_name = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001577 anc_data[0] = msg_nametype(msg);
1578 anc_data[1] = msg_namelower(msg);
1579 anc_data[2] = msg_namelower(msg);
1580 break;
1581 case TIPC_MCAST_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -07001582 has_name = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001583 anc_data[0] = msg_nametype(msg);
1584 anc_data[1] = msg_namelower(msg);
1585 anc_data[2] = msg_nameupper(msg);
1586 break;
1587 case TIPC_CONN_MSG:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001588 has_name = (tsk->conn_type != 0);
1589 anc_data[0] = tsk->conn_type;
1590 anc_data[1] = tsk->conn_instance;
1591 anc_data[2] = tsk->conn_instance;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001592 break;
1593 default:
Allan Stephens3546c752006-06-25 23:45:24 -07001594 has_name = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001595 }
Allan Stephens2db99832010-12-31 18:59:33 +00001596 if (has_name) {
1597 res = put_cmsg(m, SOL_TIPC, TIPC_DESTNAME, 12, anc_data);
1598 if (res)
1599 return res;
1600 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001601
1602 return 0;
1603}
1604
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001605static void tipc_sk_send_ack(struct tipc_sock *tsk)
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001606{
Parthasarathy Bhuvaragand6fb7e92016-11-01 14:02:40 +01001607 struct sock *sk = &tsk->sk;
1608 struct net *net = sock_net(sk);
Ying Xuea6ca1092014-11-26 11:41:55 +08001609 struct sk_buff *skb = NULL;
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001610 struct tipc_msg *msg;
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001611 u32 peer_port = tsk_peer_port(tsk);
1612 u32 dnode = tsk_peer_node(tsk);
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001613
Parthasarathy Bhuvaragand6fb7e92016-11-01 14:02:40 +01001614 if (!tipc_sk_connected(sk))
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001615 return;
Jon Paul Maloyc5898632015-02-05 08:36:36 -05001616 skb = tipc_msg_create(CONN_MANAGER, CONN_ACK, INT_H_SIZE, 0,
1617 dnode, tsk_own_node(tsk), peer_port,
1618 tsk->portid, TIPC_OK);
Ying Xuea6ca1092014-11-26 11:41:55 +08001619 if (!skb)
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001620 return;
Ying Xuea6ca1092014-11-26 11:41:55 +08001621 msg = buf_msg(skb);
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001622 msg_set_conn_ack(msg, tsk->rcv_unacked);
1623 tsk->rcv_unacked = 0;
1624
1625 /* Adjust to and advertize the correct window limit */
1626 if (tsk->peer_caps & TIPC_BLOCK_FLOWCTL) {
1627 tsk->rcv_win = tsk_adv_blocks(tsk->sk.sk_rcvbuf);
1628 msg_set_adv_win(msg, tsk->rcv_win);
1629 }
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -04001630 tipc_node_xmit_skb(net, skb, dnode, msg_link_selector(msg));
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001631}
1632
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001633static int tipc_wait_for_rcvmsg(struct socket *sock, long *timeop)
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001634{
1635 struct sock *sk = sock->sk;
1636 DEFINE_WAIT(wait);
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001637 long timeo = *timeop;
Parthasarathy Bhuvaragan4e0df492017-04-26 10:05:01 +02001638 int err = sock_error(sk);
1639
1640 if (err)
1641 return err;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001642
1643 for (;;) {
1644 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Ying Xuefe8e4642014-03-06 14:40:18 +01001645 if (timeo && skb_queue_empty(&sk->sk_receive_queue)) {
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +01001646 if (sk->sk_shutdown & RCV_SHUTDOWN) {
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001647 err = -ENOTCONN;
1648 break;
1649 }
1650 release_sock(sk);
1651 timeo = schedule_timeout(timeo);
1652 lock_sock(sk);
1653 }
1654 err = 0;
1655 if (!skb_queue_empty(&sk->sk_receive_queue))
1656 break;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001657 err = -EAGAIN;
1658 if (!timeo)
1659 break;
Erik Hugne143fe222015-03-09 10:43:42 +01001660 err = sock_intr_errno(timeo);
1661 if (signal_pending(current))
1662 break;
Parthasarathy Bhuvaragan4e0df492017-04-26 10:05:01 +02001663
1664 err = sock_error(sk);
1665 if (err)
1666 break;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001667 }
1668 finish_wait(sk_sleep(sk), &wait);
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001669 *timeop = timeo;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001670 return err;
1671}
1672
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001673/**
Ying Xue247f0f32014-02-18 16:06:46 +08001674 * tipc_recvmsg - receive packet-oriented message
Per Lidenb97bf3f2006-01-02 19:04:38 +01001675 * @m: descriptor for message info
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001676 * @buflen: length of user buffer area
Per Lidenb97bf3f2006-01-02 19:04:38 +01001677 * @flags: receive flags
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001678 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001679 * Used for SOCK_DGRAM, SOCK_RDM, and SOCK_SEQPACKET messages.
1680 * If the complete message doesn't fit in user area, truncate it.
1681 *
1682 * Returns size of returned message data, errno otherwise
1683 */
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001684static int tipc_recvmsg(struct socket *sock, struct msghdr *m,
1685 size_t buflen, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001686{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001687 struct sock *sk = sock->sk;
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001688 bool connected = !tipc_sk_type_connectionless(sk);
Jon Maloyae236fb2017-10-13 11:04:25 +02001689 struct tipc_sock *tsk = tipc_sk(sk);
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001690 int rc, err, hlen, dlen, copy;
Jon Maloyb7d42632017-10-13 11:04:26 +02001691 struct sk_buff_head xmitq;
Jon Maloyae236fb2017-10-13 11:04:25 +02001692 struct tipc_msg *hdr;
1693 struct sk_buff *skb;
1694 bool grp_evt;
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001695 long timeout;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001696
Allan Stephens0c3141e2008-04-15 00:22:02 -07001697 /* Catch invalid receive requests */
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001698 if (unlikely(!buflen))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001699 return -EINVAL;
1700
Allan Stephens0c3141e2008-04-15 00:22:02 -07001701 lock_sock(sk);
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001702 if (unlikely(connected && sk->sk_state == TIPC_OPEN)) {
1703 rc = -ENOTCONN;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001704 goto exit;
1705 }
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001706 timeout = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001707
Jon Maloyb7d42632017-10-13 11:04:26 +02001708 /* Step rcv queue to first msg with data or error; wait if necessary */
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001709 do {
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001710 rc = tipc_wait_for_rcvmsg(sock, &timeout);
1711 if (unlikely(rc))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001712 goto exit;
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001713 skb = skb_peek(&sk->sk_receive_queue);
1714 hdr = buf_msg(skb);
1715 dlen = msg_data_sz(hdr);
1716 hlen = msg_hdr_sz(hdr);
1717 err = msg_errcode(hdr);
Jon Maloyae236fb2017-10-13 11:04:25 +02001718 grp_evt = msg_is_grp_evt(hdr);
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001719 if (likely(dlen || err))
1720 break;
1721 tsk_advance_rx_queue(sk);
1722 } while (1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001723
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001724 /* Collect msg meta data, including error code and rejected data */
Jon Maloy31c82a22017-10-13 11:04:24 +02001725 tipc_sk_set_orig_addr(m, skb);
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001726 rc = tipc_sk_anc_data_recv(m, hdr, tsk);
1727 if (unlikely(rc))
1728 goto exit;
1729
1730 /* Capture data if non-error msg, otherwise just set return value */
1731 if (likely(!err)) {
1732 copy = min_t(int, dlen, buflen);
1733 if (unlikely(copy != dlen))
1734 m->msg_flags |= MSG_TRUNC;
1735 rc = skb_copy_datagram_msg(skb, hlen, m, copy);
1736 } else {
1737 copy = 0;
1738 rc = 0;
1739 if (err != TIPC_CONN_SHUTDOWN && connected && !m->msg_control)
1740 rc = -ECONNRESET;
1741 }
1742 if (unlikely(rc))
1743 goto exit;
1744
Jon Maloyae236fb2017-10-13 11:04:25 +02001745 /* Mark message as group event if applicable */
1746 if (unlikely(grp_evt)) {
1747 if (msg_grp_evt(hdr) == TIPC_WITHDRAWN)
1748 m->msg_flags |= MSG_EOR;
1749 m->msg_flags |= MSG_OOB;
1750 copy = 0;
1751 }
1752
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001753 /* Caption of data or error code/rejected data was successful */
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001754 if (unlikely(flags & MSG_PEEK))
1755 goto exit;
1756
Jon Maloyb7d42632017-10-13 11:04:26 +02001757 /* Send group flow control advertisement when applicable */
1758 if (tsk->group && msg_in_group(hdr) && !grp_evt) {
1759 skb_queue_head_init(&xmitq);
1760 tipc_group_update_rcv_win(tsk->group, tsk_blocks(hlen + dlen),
1761 msg_orignode(hdr), msg_origport(hdr),
1762 &xmitq);
1763 tipc_node_distr_xmit(sock_net(sk), &xmitq);
1764 }
1765
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001766 tsk_advance_rx_queue(sk);
Jon Maloyae236fb2017-10-13 11:04:25 +02001767
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001768 if (likely(!connected))
1769 goto exit;
1770
Jon Maloyb7d42632017-10-13 11:04:26 +02001771 /* Send connection flow control advertisement when applicable */
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001772 tsk->rcv_unacked += tsk_inc(tsk, hlen + dlen);
1773 if (tsk->rcv_unacked >= tsk->rcv_win / TIPC_ACK_RATE)
1774 tipc_sk_send_ack(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001775exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001776 release_sock(sk);
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001777 return rc ? rc : copy;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001778}
1779
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001780/**
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001781 * tipc_recvstream - receive stream-oriented data
Per Lidenb97bf3f2006-01-02 19:04:38 +01001782 * @m: descriptor for message info
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001783 * @buflen: total size of user buffer area
Per Lidenb97bf3f2006-01-02 19:04:38 +01001784 * @flags: receive flags
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001785 *
1786 * Used for SOCK_STREAM messages only. If not enough data is available
Per Lidenb97bf3f2006-01-02 19:04:38 +01001787 * will optionally wait for more; never truncates data.
1788 *
1789 * Returns size of returned message data, errno otherwise
1790 */
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001791static int tipc_recvstream(struct socket *sock, struct msghdr *m,
1792 size_t buflen, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001793{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001794 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001795 struct tipc_sock *tsk = tipc_sk(sk);
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001796 struct sk_buff *skb;
1797 struct tipc_msg *hdr;
1798 struct tipc_skb_cb *skb_cb;
1799 bool peek = flags & MSG_PEEK;
1800 int offset, required, copy, copied = 0;
1801 int hlen, dlen, err, rc;
1802 long timeout;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001803
1804 /* Catch invalid receive attempts */
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001805 if (unlikely(!buflen))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001806 return -EINVAL;
1807
Allan Stephens0c3141e2008-04-15 00:22:02 -07001808 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001809
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +01001810 if (unlikely(sk->sk_state == TIPC_OPEN)) {
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001811 rc = -ENOTCONN;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001812 goto exit;
1813 }
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001814 required = sock_rcvlowat(sk, flags & MSG_WAITALL, buflen);
1815 timeout = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001816
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001817 do {
1818 /* Look at first msg in receive queue; wait if necessary */
1819 rc = tipc_wait_for_rcvmsg(sock, &timeout);
1820 if (unlikely(rc))
1821 break;
1822 skb = skb_peek(&sk->sk_receive_queue);
1823 skb_cb = TIPC_SKB_CB(skb);
1824 hdr = buf_msg(skb);
1825 dlen = msg_data_sz(hdr);
1826 hlen = msg_hdr_sz(hdr);
1827 err = msg_errcode(hdr);
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001828
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001829 /* Discard any empty non-errored (SYN-) message */
1830 if (unlikely(!dlen && !err)) {
1831 tsk_advance_rx_queue(sk);
1832 continue;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001833 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001834
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001835 /* Collect msg meta data, incl. error code and rejected data */
1836 if (!copied) {
Jon Maloy31c82a22017-10-13 11:04:24 +02001837 tipc_sk_set_orig_addr(m, skb);
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001838 rc = tipc_sk_anc_data_recv(m, hdr, tsk);
1839 if (rc)
1840 break;
1841 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001842
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001843 /* Copy data if msg ok, otherwise return error/partial data */
1844 if (likely(!err)) {
1845 offset = skb_cb->bytes_read;
1846 copy = min_t(int, dlen - offset, buflen - copied);
1847 rc = skb_copy_datagram_msg(skb, hlen + offset, m, copy);
1848 if (unlikely(rc))
1849 break;
1850 copied += copy;
1851 offset += copy;
1852 if (unlikely(offset < dlen)) {
1853 if (!peek)
1854 skb_cb->bytes_read = offset;
1855 break;
1856 }
1857 } else {
1858 rc = 0;
1859 if ((err != TIPC_CONN_SHUTDOWN) && !m->msg_control)
1860 rc = -ECONNRESET;
1861 if (copied || rc)
1862 break;
1863 }
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001864
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001865 if (unlikely(peek))
1866 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001867
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001868 tsk_advance_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001869
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001870 /* Send connection flow control advertisement when applicable */
1871 tsk->rcv_unacked += tsk_inc(tsk, hlen + dlen);
1872 if (unlikely(tsk->rcv_unacked >= tsk->rcv_win / TIPC_ACK_RATE))
1873 tipc_sk_send_ack(tsk);
1874
1875 /* Exit if all requested data or FIN/error received */
1876 if (copied == buflen || err)
1877 break;
1878
1879 } while (!skb_queue_empty(&sk->sk_receive_queue) || copied < required);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001880exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001881 release_sock(sk);
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001882 return copied ? copied : rc;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001883}
1884
1885/**
Ying Xuef288bef2012-08-21 11:16:57 +08001886 * tipc_write_space - wake up thread if port congestion is released
1887 * @sk: socket
1888 */
1889static void tipc_write_space(struct sock *sk)
1890{
1891 struct socket_wq *wq;
1892
1893 rcu_read_lock();
1894 wq = rcu_dereference(sk->sk_wq);
Herbert Xu1ce0bf52015-11-26 13:55:39 +08001895 if (skwq_has_sleeper(wq))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001896 wake_up_interruptible_sync_poll(&wq->wait, EPOLLOUT |
1897 EPOLLWRNORM | EPOLLWRBAND);
Ying Xuef288bef2012-08-21 11:16:57 +08001898 rcu_read_unlock();
1899}
1900
1901/**
1902 * tipc_data_ready - wake up threads to indicate messages have been received
1903 * @sk: socket
1904 * @len: the length of messages
1905 */
David S. Miller676d2362014-04-11 16:15:36 -04001906static void tipc_data_ready(struct sock *sk)
Ying Xuef288bef2012-08-21 11:16:57 +08001907{
1908 struct socket_wq *wq;
1909
1910 rcu_read_lock();
1911 wq = rcu_dereference(sk->sk_wq);
Herbert Xu1ce0bf52015-11-26 13:55:39 +08001912 if (skwq_has_sleeper(wq))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001913 wake_up_interruptible_sync_poll(&wq->wait, EPOLLIN |
1914 EPOLLRDNORM | EPOLLRDBAND);
Ying Xuef288bef2012-08-21 11:16:57 +08001915 rcu_read_unlock();
1916}
1917
Ying Xuef4195d12015-11-22 15:46:05 +08001918static void tipc_sock_destruct(struct sock *sk)
1919{
1920 __skb_queue_purge(&sk->sk_receive_queue);
1921}
1922
Jon Maloy64ac5f52017-10-13 11:04:20 +02001923static void tipc_sk_proto_rcv(struct sock *sk,
1924 struct sk_buff_head *inputq,
1925 struct sk_buff_head *xmitq)
1926{
1927 struct sk_buff *skb = __skb_dequeue(inputq);
1928 struct tipc_sock *tsk = tipc_sk(sk);
1929 struct tipc_msg *hdr = buf_msg(skb);
Jon Maloy75da2162017-10-13 11:04:23 +02001930 struct tipc_group *grp = tsk->group;
Jon Maloyb7d42632017-10-13 11:04:26 +02001931 bool wakeup = false;
Jon Maloy64ac5f52017-10-13 11:04:20 +02001932
1933 switch (msg_user(hdr)) {
1934 case CONN_MANAGER:
1935 tipc_sk_conn_proto_rcv(tsk, skb, xmitq);
1936 return;
1937 case SOCK_WAKEUP:
Jon Maloya80ae532017-10-13 11:04:22 +02001938 tipc_dest_del(&tsk->cong_links, msg_orignode(hdr), 0);
Jon Maloy64ac5f52017-10-13 11:04:20 +02001939 tsk->cong_link_cnt--;
Jon Maloyb7d42632017-10-13 11:04:26 +02001940 wakeup = true;
Jon Maloy64ac5f52017-10-13 11:04:20 +02001941 break;
Jon Maloy75da2162017-10-13 11:04:23 +02001942 case GROUP_PROTOCOL:
Jon Maloyb7d42632017-10-13 11:04:26 +02001943 tipc_group_proto_rcv(grp, &wakeup, hdr, inputq, xmitq);
Jon Maloy75da2162017-10-13 11:04:23 +02001944 break;
Jon Maloy64ac5f52017-10-13 11:04:20 +02001945 case TOP_SRV:
Jon Maloyb7d42632017-10-13 11:04:26 +02001946 tipc_group_member_evt(tsk->group, &wakeup, &sk->sk_rcvbuf,
Jon Maloy7ad32bc2018-01-08 21:03:26 +01001947 hdr, inputq, xmitq);
Jon Maloy64ac5f52017-10-13 11:04:20 +02001948 break;
1949 default:
1950 break;
1951 }
1952
Jon Maloyb7d42632017-10-13 11:04:26 +02001953 if (wakeup)
1954 sk->sk_write_space(sk);
1955
Jon Maloy64ac5f52017-10-13 11:04:20 +02001956 kfree_skb(skb);
1957}
1958
Ying Xuef288bef2012-08-21 11:16:57 +08001959/**
Jon Maloy64ac5f52017-10-13 11:04:20 +02001960 * tipc_filter_connect - Handle incoming message for a connection-based socket
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001961 * @tsk: TIPC socket
Jon Paul Maloy1186adf2015-02-05 08:36:37 -05001962 * @skb: pointer to message buffer. Set to NULL if buffer is consumed
Ying Xue7e6c1312012-11-29 18:39:14 -05001963 *
Jon Paul Maloycda36962015-07-22 10:11:20 -04001964 * Returns true if everything ok, false otherwise
Ying Xue7e6c1312012-11-29 18:39:14 -05001965 */
Jon Maloy64ac5f52017-10-13 11:04:20 +02001966static bool tipc_sk_filter_connect(struct tipc_sock *tsk, struct sk_buff *skb)
Ying Xue7e6c1312012-11-29 18:39:14 -05001967{
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001968 struct sock *sk = &tsk->sk;
Ying Xuef2f98002015-01-09 15:27:05 +08001969 struct net *net = sock_net(sk);
Jon Paul Maloycda36962015-07-22 10:11:20 -04001970 struct tipc_msg *hdr = buf_msg(skb);
Parthasarathy Bhuvaragan4e0df492017-04-26 10:05:01 +02001971 u32 pport = msg_origport(hdr);
1972 u32 pnode = msg_orignode(hdr);
Ying Xue7e6c1312012-11-29 18:39:14 -05001973
Jon Paul Maloycda36962015-07-22 10:11:20 -04001974 if (unlikely(msg_mcast(hdr)))
1975 return false;
Ying Xue7e6c1312012-11-29 18:39:14 -05001976
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01001977 switch (sk->sk_state) {
1978 case TIPC_CONNECTING:
Ying Xue7e6c1312012-11-29 18:39:14 -05001979 /* Accept only ACK or NACK message */
Parthasarathy Bhuvaragan4e0df492017-04-26 10:05:01 +02001980 if (unlikely(!msg_connected(hdr))) {
1981 if (pport != tsk_peer_port(tsk) ||
1982 pnode != tsk_peer_node(tsk))
1983 return false;
1984
1985 tipc_set_sk_state(sk, TIPC_DISCONNECTING);
1986 sk->sk_err = ECONNREFUSED;
1987 sk->sk_state_change(sk);
1988 return true;
1989 }
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001990
Jon Paul Maloycda36962015-07-22 10:11:20 -04001991 if (unlikely(msg_errcode(hdr))) {
Parthasarathy Bhuvaragan9fd4b072016-11-01 14:02:46 +01001992 tipc_set_sk_state(sk, TIPC_DISCONNECTING);
Erik Hugne2c8d8512013-08-28 09:29:58 +02001993 sk->sk_err = ECONNREFUSED;
Parthasarathy Bhuvaragan4e0df492017-04-26 10:05:01 +02001994 sk->sk_state_change(sk);
Jon Paul Maloycda36962015-07-22 10:11:20 -04001995 return true;
Ying Xue584d24b2012-11-29 18:51:19 -05001996 }
1997
Jon Paul Maloycda36962015-07-22 10:11:20 -04001998 if (unlikely(!msg_isdata(hdr))) {
Parthasarathy Bhuvaragan9fd4b072016-11-01 14:02:46 +01001999 tipc_set_sk_state(sk, TIPC_DISCONNECTING);
Jon Paul Maloydadebc02014-08-22 18:09:11 -04002000 sk->sk_err = EINVAL;
Parthasarathy Bhuvaragan4e0df492017-04-26 10:05:01 +02002001 sk->sk_state_change(sk);
Jon Paul Maloycda36962015-07-22 10:11:20 -04002002 return true;
Ying Xue584d24b2012-11-29 18:51:19 -05002003 }
2004
Jon Paul Maloycda36962015-07-22 10:11:20 -04002005 tipc_sk_finish_conn(tsk, msg_origport(hdr), msg_orignode(hdr));
2006 msg_set_importance(&tsk->phdr, msg_importance(hdr));
Jon Paul Maloydadebc02014-08-22 18:09:11 -04002007
Jon Paul Maloycda36962015-07-22 10:11:20 -04002008 /* If 'ACK+' message, add to socket receive queue */
2009 if (msg_data_sz(hdr))
2010 return true;
2011
2012 /* If empty 'ACK-' message, wake up sleeping connect() */
Parthasarathy Bhuvaragan42b531d2017-04-26 10:05:00 +02002013 sk->sk_data_ready(sk);
Jon Paul Maloycda36962015-07-22 10:11:20 -04002014
2015 /* 'ACK-' message is neither accepted nor rejected: */
2016 msg_set_dest_droppable(hdr, 1);
2017 return false;
Jon Paul Maloycda36962015-07-22 10:11:20 -04002018
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +01002019 case TIPC_OPEN:
Parthasarathy Bhuvaragan9fd4b072016-11-01 14:02:46 +01002020 case TIPC_DISCONNECTING:
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +01002021 break;
2022 case TIPC_LISTEN:
Ying Xue7e6c1312012-11-29 18:39:14 -05002023 /* Accept only SYN message */
Jon Paul Maloycda36962015-07-22 10:11:20 -04002024 if (!msg_connected(hdr) && !(msg_errcode(hdr)))
2025 return true;
Ying Xue7e6c1312012-11-29 18:39:14 -05002026 break;
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +01002027 case TIPC_ESTABLISHED:
2028 /* Accept only connection-based messages sent by peer */
2029 if (unlikely(!tsk_peer_msg(tsk, hdr)))
2030 return false;
2031
2032 if (unlikely(msg_errcode(hdr))) {
2033 tipc_set_sk_state(sk, TIPC_DISCONNECTING);
2034 /* Let timer expire on it's own */
2035 tipc_node_remove_conn(net, tsk_peer_node(tsk),
2036 tsk->portid);
2037 sk->sk_state_change(sk);
2038 }
2039 return true;
Ying Xue7e6c1312012-11-29 18:39:14 -05002040 default:
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +01002041 pr_err("Unknown sk_state %u\n", sk->sk_state);
Ying Xue7e6c1312012-11-29 18:39:14 -05002042 }
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +01002043
Jon Paul Maloycda36962015-07-22 10:11:20 -04002044 return false;
Ying Xue7e6c1312012-11-29 18:39:14 -05002045}
2046
2047/**
Ying Xueaba79f32013-01-20 23:30:09 +01002048 * rcvbuf_limit - get proper overload limit of socket receive queue
2049 * @sk: socket
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002050 * @skb: message
Ying Xueaba79f32013-01-20 23:30:09 +01002051 *
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002052 * For connection oriented messages, irrespective of importance,
2053 * default queue limit is 2 MB.
Ying Xueaba79f32013-01-20 23:30:09 +01002054 *
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002055 * For connectionless messages, queue limits are based on message
2056 * importance as follows:
Ying Xueaba79f32013-01-20 23:30:09 +01002057 *
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002058 * TIPC_LOW_IMPORTANCE (2 MB)
2059 * TIPC_MEDIUM_IMPORTANCE (4 MB)
2060 * TIPC_HIGH_IMPORTANCE (8 MB)
2061 * TIPC_CRITICAL_IMPORTANCE (16 MB)
Ying Xueaba79f32013-01-20 23:30:09 +01002062 *
2063 * Returns overload limit according to corresponding message importance
2064 */
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002065static unsigned int rcvbuf_limit(struct sock *sk, struct sk_buff *skb)
Ying Xueaba79f32013-01-20 23:30:09 +01002066{
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002067 struct tipc_sock *tsk = tipc_sk(sk);
2068 struct tipc_msg *hdr = buf_msg(skb);
Ying Xueaba79f32013-01-20 23:30:09 +01002069
Jon Maloyb7d42632017-10-13 11:04:26 +02002070 if (unlikely(msg_in_group(hdr)))
2071 return sk->sk_rcvbuf;
2072
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002073 if (unlikely(!msg_connected(hdr)))
2074 return sk->sk_rcvbuf << msg_importance(hdr);
wangweidong0cee6bb2013-12-12 09:36:39 +08002075
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002076 if (likely(tsk->peer_caps & TIPC_BLOCK_FLOWCTL))
2077 return sk->sk_rcvbuf;
2078
2079 return FLOWCTL_MSG_LIM;
Ying Xueaba79f32013-01-20 23:30:09 +01002080}
2081
2082/**
Jon Maloy64ac5f52017-10-13 11:04:20 +02002083 * tipc_sk_filter_rcv - validate incoming message
Allan Stephens0c3141e2008-04-15 00:22:02 -07002084 * @sk: socket
Jon Paul Maloycda36962015-07-22 10:11:20 -04002085 * @skb: pointer to message.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002086 *
Allan Stephens0c3141e2008-04-15 00:22:02 -07002087 * Enqueues message on receive queue if acceptable; optionally handles
2088 * disconnect indication for a connected socket.
2089 *
Jon Paul Maloy1186adf2015-02-05 08:36:37 -05002090 * Called with socket lock already taken
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002091 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002092 */
Jon Maloy64ac5f52017-10-13 11:04:20 +02002093static void tipc_sk_filter_rcv(struct sock *sk, struct sk_buff *skb,
2094 struct sk_buff_head *xmitq)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002095{
Jon Maloy64ac5f52017-10-13 11:04:20 +02002096 bool sk_conn = !tipc_sk_type_connectionless(sk);
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002097 struct tipc_sock *tsk = tipc_sk(sk);
Jon Maloy75da2162017-10-13 11:04:23 +02002098 struct tipc_group *grp = tsk->group;
Jon Paul Maloycda36962015-07-22 10:11:20 -04002099 struct tipc_msg *hdr = buf_msg(skb);
Jon Maloy64ac5f52017-10-13 11:04:20 +02002100 struct net *net = sock_net(sk);
2101 struct sk_buff_head inputq;
2102 int limit, err = TIPC_OK;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002103
Parthasarathy Bhuvaraganba8aebe2016-11-01 14:02:37 +01002104 TIPC_SKB_CB(skb)->bytes_read = 0;
Jon Maloy64ac5f52017-10-13 11:04:20 +02002105 __skb_queue_head_init(&inputq);
2106 __skb_queue_tail(&inputq, skb);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002107
Jon Maloy64ac5f52017-10-13 11:04:20 +02002108 if (unlikely(!msg_isdata(hdr)))
2109 tipc_sk_proto_rcv(sk, &inputq, xmitq);
Jon Paul Maloycda36962015-07-22 10:11:20 -04002110
Jon Maloy75da2162017-10-13 11:04:23 +02002111 if (unlikely(grp))
2112 tipc_group_filter_msg(grp, &inputq, xmitq);
2113
Jon Maloy64ac5f52017-10-13 11:04:20 +02002114 /* Validate and add to receive buffer if there is space */
2115 while ((skb = __skb_dequeue(&inputq))) {
2116 hdr = buf_msg(skb);
2117 limit = rcvbuf_limit(sk, skb);
2118 if ((sk_conn && !tipc_sk_filter_connect(tsk, skb)) ||
Jon Maloy75da2162017-10-13 11:04:23 +02002119 (!sk_conn && msg_connected(hdr)) ||
2120 (!grp && msg_in_group(hdr)))
Jon Maloy64ac5f52017-10-13 11:04:20 +02002121 err = TIPC_ERR_NO_PORT;
GhantaKrishnamurthy MohanKrishna872619d2018-03-21 14:37:45 +01002122 else if (sk_rmem_alloc_get(sk) + skb->truesize >= limit) {
2123 atomic_inc(&sk->sk_drops);
Jon Maloy64ac5f52017-10-13 11:04:20 +02002124 err = TIPC_ERR_OVERLOAD;
GhantaKrishnamurthy MohanKrishna872619d2018-03-21 14:37:45 +01002125 }
Jon Maloy64ac5f52017-10-13 11:04:20 +02002126
2127 if (unlikely(err)) {
2128 tipc_skb_reject(net, err, skb, xmitq);
2129 err = TIPC_OK;
2130 continue;
2131 }
2132 __skb_queue_tail(&sk->sk_receive_queue, skb);
2133 skb_set_owner_r(skb, sk);
2134 sk->sk_data_ready(sk);
2135 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002136}
2137
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002138/**
Jon Maloy64ac5f52017-10-13 11:04:20 +02002139 * tipc_sk_backlog_rcv - handle incoming message from backlog queue
Allan Stephens0c3141e2008-04-15 00:22:02 -07002140 * @sk: socket
Ying Xuea6ca1092014-11-26 11:41:55 +08002141 * @skb: message
Allan Stephens0c3141e2008-04-15 00:22:02 -07002142 *
Jon Paul Maloye3a77562015-02-05 08:36:39 -05002143 * Caller must hold socket lock
Allan Stephens0c3141e2008-04-15 00:22:02 -07002144 */
Jon Maloy64ac5f52017-10-13 11:04:20 +02002145static int tipc_sk_backlog_rcv(struct sock *sk, struct sk_buff *skb)
Allan Stephens0c3141e2008-04-15 00:22:02 -07002146{
Jon Maloy64ac5f52017-10-13 11:04:20 +02002147 unsigned int before = sk_rmem_alloc_get(sk);
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002148 struct sk_buff_head xmitq;
Jon Maloy64ac5f52017-10-13 11:04:20 +02002149 unsigned int added;
Allan Stephens0c3141e2008-04-15 00:22:02 -07002150
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002151 __skb_queue_head_init(&xmitq);
2152
Jon Maloy64ac5f52017-10-13 11:04:20 +02002153 tipc_sk_filter_rcv(sk, skb, &xmitq);
2154 added = sk_rmem_alloc_get(sk) - before;
2155 atomic_add(added, &tipc_sk(sk)->dupl_rcvcnt);
2156
2157 /* Send pending response/rejected messages, if any */
Jon Maloyf70d37b2017-10-13 11:04:21 +02002158 tipc_node_distr_xmit(sock_net(sk), &xmitq);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002159 return 0;
2160}
2161
2162/**
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002163 * tipc_sk_enqueue - extract all buffers with destination 'dport' from
2164 * inputq and try adding them to socket or backlog queue
2165 * @inputq: list of incoming buffers with potentially different destinations
2166 * @sk: socket where the buffers should be enqueued
2167 * @dport: port number for the socket
Jon Paul Maloyd570d862015-02-05 08:36:38 -05002168 *
2169 * Caller must hold socket lock
Jon Paul Maloyd570d862015-02-05 08:36:38 -05002170 */
Jon Paul Maloycda36962015-07-22 10:11:20 -04002171static void tipc_sk_enqueue(struct sk_buff_head *inputq, struct sock *sk,
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002172 u32 dport, struct sk_buff_head *xmitq)
Jon Paul Maloyd570d862015-02-05 08:36:38 -05002173{
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002174 unsigned long time_limit = jiffies + 2;
2175 struct sk_buff *skb;
Jon Paul Maloyd570d862015-02-05 08:36:38 -05002176 unsigned int lim;
2177 atomic_t *dcnt;
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002178 u32 onode;
Jon Paul Maloyd570d862015-02-05 08:36:38 -05002179
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002180 while (skb_queue_len(inputq)) {
Jon Paul Maloy51a00da2015-02-08 11:10:50 -05002181 if (unlikely(time_after_eq(jiffies, time_limit)))
Jon Paul Maloycda36962015-07-22 10:11:20 -04002182 return;
2183
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002184 skb = tipc_skb_dequeue(inputq, dport);
2185 if (unlikely(!skb))
Jon Paul Maloycda36962015-07-22 10:11:20 -04002186 return;
2187
2188 /* Add message directly to receive queue if possible */
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002189 if (!sock_owned_by_user(sk)) {
Jon Maloy64ac5f52017-10-13 11:04:20 +02002190 tipc_sk_filter_rcv(sk, skb, xmitq);
Jon Paul Maloycda36962015-07-22 10:11:20 -04002191 continue;
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002192 }
Jon Paul Maloycda36962015-07-22 10:11:20 -04002193
2194 /* Try backlog, compensating for double-counted bytes */
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002195 dcnt = &tipc_sk(sk)->dupl_rcvcnt;
Jon Paul Maloy7c8bcfb2016-05-02 11:58:45 -04002196 if (!sk->sk_backlog.len)
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002197 atomic_set(dcnt, 0);
2198 lim = rcvbuf_limit(sk, skb) + atomic_read(dcnt);
2199 if (likely(!sk_add_backlog(sk, skb, lim)))
2200 continue;
Jon Paul Maloycda36962015-07-22 10:11:20 -04002201
2202 /* Overload => reject message back to sender */
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002203 onode = tipc_own_addr(sock_net(sk));
GhantaKrishnamurthy MohanKrishna872619d2018-03-21 14:37:45 +01002204 atomic_inc(&sk->sk_drops);
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002205 if (tipc_msg_reverse(onode, &skb, TIPC_ERR_OVERLOAD))
2206 __skb_queue_tail(xmitq, skb);
Jon Paul Maloycda36962015-07-22 10:11:20 -04002207 break;
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002208 }
Jon Paul Maloyd570d862015-02-05 08:36:38 -05002209}
2210
2211/**
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002212 * tipc_sk_rcv - handle a chain of incoming buffers
2213 * @inputq: buffer list containing the buffers
2214 * Consumes all buffers in list until inputq is empty
2215 * Note: may be called in multiple threads referring to the same queue
Allan Stephens0c3141e2008-04-15 00:22:02 -07002216 */
Jon Paul Maloycda36962015-07-22 10:11:20 -04002217void tipc_sk_rcv(struct net *net, struct sk_buff_head *inputq)
Allan Stephens0c3141e2008-04-15 00:22:02 -07002218{
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002219 struct sk_buff_head xmitq;
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002220 u32 dnode, dport = 0;
Erik Hugne9871b272015-04-23 09:37:39 -04002221 int err;
Jon Paul Maloy9816f062014-05-14 05:39:15 -04002222 struct tipc_sock *tsk;
Jon Paul Maloy9816f062014-05-14 05:39:15 -04002223 struct sock *sk;
Jon Paul Maloycda36962015-07-22 10:11:20 -04002224 struct sk_buff *skb;
Jon Paul Maloy9816f062014-05-14 05:39:15 -04002225
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002226 __skb_queue_head_init(&xmitq);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002227 while (skb_queue_len(inputq)) {
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002228 dport = tipc_skb_peek_port(inputq, dport);
2229 tsk = tipc_sk_lookup(net, dport);
Jon Paul Maloycda36962015-07-22 10:11:20 -04002230
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002231 if (likely(tsk)) {
2232 sk = &tsk->sk;
2233 if (likely(spin_trylock_bh(&sk->sk_lock.slock))) {
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002234 tipc_sk_enqueue(inputq, sk, dport, &xmitq);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002235 spin_unlock_bh(&sk->sk_lock.slock);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002236 }
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002237 /* Send pending response/rejected messages, if any */
Jon Maloyf70d37b2017-10-13 11:04:21 +02002238 tipc_node_distr_xmit(sock_net(sk), &xmitq);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002239 sock_put(sk);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002240 continue;
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002241 }
Jon Paul Maloycda36962015-07-22 10:11:20 -04002242 /* No destination socket => dequeue skb if still there */
2243 skb = tipc_skb_dequeue(inputq, dport);
2244 if (!skb)
2245 return;
2246
2247 /* Try secondary lookup if unresolved named message */
2248 err = TIPC_ERR_NO_PORT;
2249 if (tipc_msg_lookup_dest(net, skb, &err))
2250 goto xmit;
2251
2252 /* Prepare for message rejection */
2253 if (!tipc_msg_reverse(tipc_own_addr(net), &skb, err))
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002254 continue;
Jon Paul Maloye3a77562015-02-05 08:36:39 -05002255xmit:
Jon Paul Maloycda36962015-07-22 10:11:20 -04002256 dnode = msg_destnode(buf_msg(skb));
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -04002257 tipc_node_xmit_skb(net, skb, dnode, dport);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002258 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07002259}
2260
Ying Xue78eb3a52014-01-17 09:50:03 +08002261static int tipc_wait_for_connect(struct socket *sock, long *timeo_p)
2262{
WANG Congd9dc8b02016-11-11 10:20:50 -08002263 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Ying Xue78eb3a52014-01-17 09:50:03 +08002264 struct sock *sk = sock->sk;
Ying Xue78eb3a52014-01-17 09:50:03 +08002265 int done;
2266
2267 do {
2268 int err = sock_error(sk);
2269 if (err)
2270 return err;
2271 if (!*timeo_p)
2272 return -ETIMEDOUT;
2273 if (signal_pending(current))
2274 return sock_intr_errno(*timeo_p);
2275
WANG Congd9dc8b02016-11-11 10:20:50 -08002276 add_wait_queue(sk_sleep(sk), &wait);
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002277 done = sk_wait_event(sk, timeo_p,
WANG Congd9dc8b02016-11-11 10:20:50 -08002278 sk->sk_state != TIPC_CONNECTING, &wait);
2279 remove_wait_queue(sk_sleep(sk), &wait);
Ying Xue78eb3a52014-01-17 09:50:03 +08002280 } while (!done);
2281 return 0;
2282}
2283
Per Lidenb97bf3f2006-01-02 19:04:38 +01002284/**
Ying Xue247f0f32014-02-18 16:06:46 +08002285 * tipc_connect - establish a connection to another TIPC port
Per Lidenb97bf3f2006-01-02 19:04:38 +01002286 * @sock: socket structure
2287 * @dest: socket address for destination port
2288 * @destlen: size of socket address data structure
Allan Stephens0c3141e2008-04-15 00:22:02 -07002289 * @flags: file-related flags associated with socket
Per Lidenb97bf3f2006-01-02 19:04:38 +01002290 *
2291 * Returns 0 on success, errno otherwise
2292 */
Ying Xue247f0f32014-02-18 16:06:46 +08002293static int tipc_connect(struct socket *sock, struct sockaddr *dest,
2294 int destlen, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002295{
Allan Stephens0c3141e2008-04-15 00:22:02 -07002296 struct sock *sk = sock->sk;
Erik Hugnef2f80362015-03-19 09:02:19 +01002297 struct tipc_sock *tsk = tipc_sk(sk);
Allan Stephensb89741a2008-04-15 00:20:37 -07002298 struct sockaddr_tipc *dst = (struct sockaddr_tipc *)dest;
2299 struct msghdr m = {NULL,};
Erik Hugnef2f80362015-03-19 09:02:19 +01002300 long timeout = (flags & O_NONBLOCK) ? 0 : tsk->conn_timeout;
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002301 int previous;
Erik Hugnef2f80362015-03-19 09:02:19 +01002302 int res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002303
Jon Maloy23998832017-10-13 11:04:18 +02002304 if (destlen != sizeof(struct sockaddr_tipc))
2305 return -EINVAL;
2306
Allan Stephens0c3141e2008-04-15 00:22:02 -07002307 lock_sock(sk);
2308
Jon Maloy75da2162017-10-13 11:04:23 +02002309 if (tsk->group) {
2310 res = -EINVAL;
2311 goto exit;
2312 }
2313
Jon Maloy23998832017-10-13 11:04:18 +02002314 if (dst->family == AF_UNSPEC) {
2315 memset(&tsk->peer, 0, sizeof(struct sockaddr_tipc));
2316 if (!tipc_sk_type_connectionless(sk))
2317 res = -EINVAL;
2318 goto exit;
2319 } else if (dst->family != AF_TIPC) {
2320 res = -EINVAL;
2321 }
2322 if (dst->addrtype != TIPC_ADDR_ID && dst->addrtype != TIPC_ADDR_NAME)
2323 res = -EINVAL;
2324 if (res)
2325 goto exit;
2326
Erik Hugnef2f80362015-03-19 09:02:19 +01002327 /* DGRAM/RDM connect(), just save the destaddr */
Parthasarathy Bhuvaraganc7520232016-11-01 14:02:42 +01002328 if (tipc_sk_type_connectionless(sk)) {
Jon Maloy23998832017-10-13 11:04:18 +02002329 memcpy(&tsk->peer, dest, destlen);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002330 goto exit;
2331 }
2332
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002333 previous = sk->sk_state;
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +01002334
2335 switch (sk->sk_state) {
2336 case TIPC_OPEN:
Ying Xue584d24b2012-11-29 18:51:19 -05002337 /* Send a 'SYN-' to destination */
2338 m.msg_name = dest;
2339 m.msg_namelen = destlen;
2340
2341 /* If connect is in non-blocking case, set MSG_DONTWAIT to
2342 * indicate send_msg() is never blocked.
2343 */
2344 if (!timeout)
2345 m.msg_flags = MSG_DONTWAIT;
2346
Ying Xue39a02952015-03-02 15:37:47 +08002347 res = __tipc_sendmsg(sock, &m, 0);
Ying Xue584d24b2012-11-29 18:51:19 -05002348 if ((res < 0) && (res != -EWOULDBLOCK))
2349 goto exit;
2350
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002351 /* Just entered TIPC_CONNECTING state; the only
Ying Xue584d24b2012-11-29 18:51:19 -05002352 * difference is that return value in non-blocking
2353 * case is EINPROGRESS, rather than EALREADY.
2354 */
2355 res = -EINPROGRESS;
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002356 /* fall thru' */
2357 case TIPC_CONNECTING:
2358 if (!timeout) {
2359 if (previous == TIPC_CONNECTING)
2360 res = -EALREADY;
Ying Xue78eb3a52014-01-17 09:50:03 +08002361 goto exit;
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002362 }
Ying Xue78eb3a52014-01-17 09:50:03 +08002363 timeout = msecs_to_jiffies(timeout);
2364 /* Wait until an 'ACK' or 'RST' arrives, or a timeout occurs */
2365 res = tipc_wait_for_connect(sock, &timeout);
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +01002366 break;
2367 case TIPC_ESTABLISHED:
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002368 res = -EISCONN;
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +01002369 break;
2370 default:
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002371 res = -EINVAL;
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +01002372 }
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002373
Allan Stephens0c3141e2008-04-15 00:22:02 -07002374exit:
2375 release_sock(sk);
Allan Stephensb89741a2008-04-15 00:20:37 -07002376 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002377}
2378
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002379/**
Ying Xue247f0f32014-02-18 16:06:46 +08002380 * tipc_listen - allow socket to listen for incoming connections
Per Lidenb97bf3f2006-01-02 19:04:38 +01002381 * @sock: socket structure
2382 * @len: (unused)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002383 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002384 * Returns 0 on success, errno otherwise
2385 */
Ying Xue247f0f32014-02-18 16:06:46 +08002386static int tipc_listen(struct socket *sock, int len)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002387{
Allan Stephens0c3141e2008-04-15 00:22:02 -07002388 struct sock *sk = sock->sk;
2389 int res;
2390
2391 lock_sock(sk);
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +01002392 res = tipc_set_sk_state(sk, TIPC_LISTEN);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002393 release_sock(sk);
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +01002394
Allan Stephens0c3141e2008-04-15 00:22:02 -07002395 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002396}
2397
Ying Xue6398e232014-01-17 09:50:04 +08002398static int tipc_wait_for_accept(struct socket *sock, long timeo)
2399{
2400 struct sock *sk = sock->sk;
2401 DEFINE_WAIT(wait);
2402 int err;
2403
2404 /* True wake-one mechanism for incoming connections: only
2405 * one process gets woken up, not the 'whole herd'.
2406 * Since we do not 'race & poll' for established sockets
2407 * anymore, the common case will execute the loop only once.
2408 */
2409 for (;;) {
2410 prepare_to_wait_exclusive(sk_sleep(sk), &wait,
2411 TASK_INTERRUPTIBLE);
Ying Xuefe8e4642014-03-06 14:40:18 +01002412 if (timeo && skb_queue_empty(&sk->sk_receive_queue)) {
Ying Xue6398e232014-01-17 09:50:04 +08002413 release_sock(sk);
2414 timeo = schedule_timeout(timeo);
2415 lock_sock(sk);
2416 }
2417 err = 0;
2418 if (!skb_queue_empty(&sk->sk_receive_queue))
2419 break;
Ying Xue6398e232014-01-17 09:50:04 +08002420 err = -EAGAIN;
2421 if (!timeo)
2422 break;
Erik Hugne143fe222015-03-09 10:43:42 +01002423 err = sock_intr_errno(timeo);
2424 if (signal_pending(current))
2425 break;
Ying Xue6398e232014-01-17 09:50:04 +08002426 }
2427 finish_wait(sk_sleep(sk), &wait);
2428 return err;
2429}
2430
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002431/**
Ying Xue247f0f32014-02-18 16:06:46 +08002432 * tipc_accept - wait for connection request
Per Lidenb97bf3f2006-01-02 19:04:38 +01002433 * @sock: listening socket
2434 * @newsock: new socket that is to be connected
2435 * @flags: file-related flags associated with socket
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002436 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002437 * Returns 0 on success, errno otherwise
2438 */
David Howellscdfbabf2017-03-09 08:09:05 +00002439static int tipc_accept(struct socket *sock, struct socket *new_sock, int flags,
2440 bool kern)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002441{
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002442 struct sock *new_sk, *sk = sock->sk;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002443 struct sk_buff *buf;
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002444 struct tipc_sock *new_tsock;
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002445 struct tipc_msg *msg;
Ying Xue6398e232014-01-17 09:50:04 +08002446 long timeo;
Allan Stephens0c3141e2008-04-15 00:22:02 -07002447 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002448
Allan Stephens0c3141e2008-04-15 00:22:02 -07002449 lock_sock(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002450
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +01002451 if (sk->sk_state != TIPC_LISTEN) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07002452 res = -EINVAL;
2453 goto exit;
2454 }
Ying Xue6398e232014-01-17 09:50:04 +08002455 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
2456 res = tipc_wait_for_accept(sock, timeo);
2457 if (res)
2458 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07002459
2460 buf = skb_peek(&sk->sk_receive_queue);
2461
David Howellscdfbabf2017-03-09 08:09:05 +00002462 res = tipc_sk_create(sock_net(sock->sk), new_sock, 0, kern);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002463 if (res)
2464 goto exit;
Stephen Smalleyfdd75ea2015-07-07 09:43:45 -04002465 security_sk_clone(sock->sk, new_sock->sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002466
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002467 new_sk = new_sock->sk;
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002468 new_tsock = tipc_sk(new_sk);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002469 msg = buf_msg(buf);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002470
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002471 /* we lock on new_sk; but lockdep sees the lock on sk */
2472 lock_sock_nested(new_sk, SINGLE_DEPTH_NESTING);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002473
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002474 /*
2475 * Reject any stray messages received by new socket
2476 * before the socket lock was taken (very, very unlikely)
2477 */
Jon Paul Maloy2e84c602014-08-22 18:09:18 -04002478 tsk_rej_rx_queue(new_sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002479
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002480 /* Connect new socket to it's peer */
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002481 tipc_sk_finish_conn(new_tsock, msg_origport(msg), msg_orignode(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002482
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002483 tsk_set_importance(new_tsock, msg_importance(msg));
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002484 if (msg_named(msg)) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002485 new_tsock->conn_type = msg_nametype(msg);
2486 new_tsock->conn_instance = msg_nameinst(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002487 }
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002488
2489 /*
2490 * Respond to 'SYN-' by discarding it & returning 'ACK'-.
2491 * Respond to 'SYN+' by queuing it on new socket.
2492 */
2493 if (!msg_data_sz(msg)) {
2494 struct msghdr m = {NULL,};
2495
Jon Paul Maloy2e84c602014-08-22 18:09:18 -04002496 tsk_advance_rx_queue(sk);
Jon Paul Maloy365ad352017-01-03 10:55:11 -05002497 __tipc_sendstream(new_sock, &m, 0);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002498 } else {
2499 __skb_dequeue(&sk->sk_receive_queue);
2500 __skb_queue_head(&new_sk->sk_receive_queue, buf);
Ying Xueaba79f32013-01-20 23:30:09 +01002501 skb_set_owner_r(buf, new_sk);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002502 }
2503 release_sock(new_sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002504exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07002505 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002506 return res;
2507}
2508
2509/**
Ying Xue247f0f32014-02-18 16:06:46 +08002510 * tipc_shutdown - shutdown socket connection
Per Lidenb97bf3f2006-01-02 19:04:38 +01002511 * @sock: socket structure
Allan Stephense247a8f2008-03-06 15:05:38 -08002512 * @how: direction to close (must be SHUT_RDWR)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002513 *
2514 * Terminates connection (if necessary), then purges socket's receive queue.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002515 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002516 * Returns 0 on success, errno otherwise
2517 */
Ying Xue247f0f32014-02-18 16:06:46 +08002518static int tipc_shutdown(struct socket *sock, int how)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002519{
Allan Stephens0c3141e2008-04-15 00:22:02 -07002520 struct sock *sk = sock->sk;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002521 int res;
2522
Allan Stephense247a8f2008-03-06 15:05:38 -08002523 if (how != SHUT_RDWR)
2524 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002525
Allan Stephens0c3141e2008-04-15 00:22:02 -07002526 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002527
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +01002528 __tipc_shutdown(sock, TIPC_CONN_SHUTDOWN);
2529 sk->sk_shutdown = SEND_SHUTDOWN;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002530
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +01002531 if (sk->sk_state == TIPC_DISCONNECTING) {
Ying Xue75031152012-10-29 09:38:15 -04002532 /* Discard any unreceived messages */
Ying Xue57467e52013-01-20 23:30:08 +01002533 __skb_queue_purge(&sk->sk_receive_queue);
Ying Xue75031152012-10-29 09:38:15 -04002534
2535 /* Wake up anyone sleeping in poll */
2536 sk->sk_state_change(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002537 res = 0;
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +01002538 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002539 res = -ENOTCONN;
2540 }
2541
Allan Stephens0c3141e2008-04-15 00:22:02 -07002542 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002543 return res;
2544}
2545
Kees Cook31b102b2017-10-30 14:06:45 -07002546static void tipc_sk_timeout(struct timer_list *t)
Jon Paul Maloy57289012014-08-22 18:09:09 -04002547{
Kees Cook31b102b2017-10-30 14:06:45 -07002548 struct sock *sk = from_timer(sk, t, sk_timer);
2549 struct tipc_sock *tsk = tipc_sk(sk);
Jon Maloy0d5fcebf2017-10-20 11:21:32 +02002550 u32 peer_port = tsk_peer_port(tsk);
2551 u32 peer_node = tsk_peer_node(tsk);
Jon Paul Maloyc5898632015-02-05 08:36:36 -05002552 u32 own_node = tsk_own_node(tsk);
Jon Maloy0d5fcebf2017-10-20 11:21:32 +02002553 u32 own_port = tsk->portid;
Jon Maloy0d5fcebf2017-10-20 11:21:32 +02002554 struct net *net = sock_net(sk);
2555 struct sk_buff *skb = NULL;
Jon Paul Maloy57289012014-08-22 18:09:09 -04002556
Jon Paul Maloy57289012014-08-22 18:09:09 -04002557 bh_lock_sock(sk);
Jon Maloy0d5fcebf2017-10-20 11:21:32 +02002558 if (!tipc_sk_connected(sk))
2559 goto exit;
2560
2561 /* Try again later if socket is busy */
2562 if (sock_owned_by_user(sk)) {
2563 sk_reset_timer(sk, &sk->sk_timer, jiffies + HZ / 20);
Jon Paul Maloy6c9808c2014-08-22 18:09:16 -04002564 goto exit;
2565 }
Jon Paul Maloy57289012014-08-22 18:09:09 -04002566
Parthasarathy Bhuvaragan8ea642e2016-11-01 14:02:44 +01002567 if (tsk->probe_unacked) {
Jon Maloy0d5fcebf2017-10-20 11:21:32 +02002568 tipc_set_sk_state(sk, TIPC_DISCONNECTING);
2569 tipc_node_remove_conn(net, peer_node, peer_port);
2570 sk->sk_state_change(sk);
Parthasarathy Bhuvaragan360aab62016-11-01 14:02:41 +01002571 goto exit;
Jon Paul Maloy57289012014-08-22 18:09:09 -04002572 }
Jon Maloy0d5fcebf2017-10-20 11:21:32 +02002573 /* Send new probe */
2574 skb = tipc_msg_create(CONN_MANAGER, CONN_PROBE, INT_H_SIZE, 0,
2575 peer_node, own_node, peer_port, own_port,
2576 TIPC_OK);
Parthasarathy Bhuvaragan8ea642e2016-11-01 14:02:44 +01002577 tsk->probe_unacked = true;
Jon Maloy0d5fcebf2017-10-20 11:21:32 +02002578 sk_reset_timer(sk, &sk->sk_timer, jiffies + CONN_PROBING_INTV);
2579exit:
Jon Paul Maloy57289012014-08-22 18:09:09 -04002580 bh_unlock_sock(sk);
Ying Xuea6ca1092014-11-26 11:41:55 +08002581 if (skb)
Jon Maloy0d5fcebf2017-10-20 11:21:32 +02002582 tipc_node_xmit_skb(net, skb, peer_node, own_port);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002583 sock_put(sk);
Jon Paul Maloy57289012014-08-22 18:09:09 -04002584}
2585
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002586static int tipc_sk_publish(struct tipc_sock *tsk, uint scope,
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002587 struct tipc_name_seq const *seq)
2588{
Parthasarathy Bhuvaragand6fb7e92016-11-01 14:02:40 +01002589 struct sock *sk = &tsk->sk;
2590 struct net *net = sock_net(sk);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002591 struct publication *publ;
2592 u32 key;
2593
Jon Maloy928df182018-03-15 16:48:51 +01002594 if (scope != TIPC_NODE_SCOPE)
2595 scope = TIPC_CLUSTER_SCOPE;
2596
Parthasarathy Bhuvaragand6fb7e92016-11-01 14:02:40 +01002597 if (tipc_sk_connected(sk))
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002598 return -EINVAL;
Ying Xue07f6c4b2015-01-07 13:41:58 +08002599 key = tsk->portid + tsk->pub_count + 1;
2600 if (key == tsk->portid)
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002601 return -EADDRINUSE;
2602
Ying Xuef2f98002015-01-09 15:27:05 +08002603 publ = tipc_nametbl_publish(net, seq->type, seq->lower, seq->upper,
Ying Xue07f6c4b2015-01-07 13:41:58 +08002604 scope, tsk->portid, key);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002605 if (unlikely(!publ))
2606 return -EINVAL;
2607
Jon Maloye50e73e2018-03-15 16:48:55 +01002608 list_add(&publ->binding_sock, &tsk->publications);
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002609 tsk->pub_count++;
2610 tsk->published = 1;
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002611 return 0;
2612}
2613
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002614static int tipc_sk_withdraw(struct tipc_sock *tsk, uint scope,
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002615 struct tipc_name_seq const *seq)
2616{
Ying Xuef2f98002015-01-09 15:27:05 +08002617 struct net *net = sock_net(&tsk->sk);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002618 struct publication *publ;
2619 struct publication *safe;
2620 int rc = -EINVAL;
2621
Jon Maloy928df182018-03-15 16:48:51 +01002622 if (scope != TIPC_NODE_SCOPE)
2623 scope = TIPC_CLUSTER_SCOPE;
2624
Jon Maloye50e73e2018-03-15 16:48:55 +01002625 list_for_each_entry_safe(publ, safe, &tsk->publications, binding_sock) {
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002626 if (seq) {
2627 if (publ->scope != scope)
2628 continue;
2629 if (publ->type != seq->type)
2630 continue;
2631 if (publ->lower != seq->lower)
2632 continue;
2633 if (publ->upper != seq->upper)
2634 break;
Ying Xuef2f98002015-01-09 15:27:05 +08002635 tipc_nametbl_withdraw(net, publ->type, publ->lower,
Jon Maloy37922ea2018-03-29 23:20:43 +02002636 publ->upper, publ->key);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002637 rc = 0;
2638 break;
2639 }
Ying Xuef2f98002015-01-09 15:27:05 +08002640 tipc_nametbl_withdraw(net, publ->type, publ->lower,
Jon Maloy37922ea2018-03-29 23:20:43 +02002641 publ->upper, publ->key);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002642 rc = 0;
2643 }
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002644 if (list_empty(&tsk->publications))
2645 tsk->published = 0;
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002646 return rc;
2647}
2648
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002649/* tipc_sk_reinit: set non-zero address in all existing sockets
2650 * when we go from standalone to network mode.
2651 */
Ying Xuee05b31f2015-01-09 15:27:08 +08002652void tipc_sk_reinit(struct net *net)
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002653{
Ying Xuee05b31f2015-01-09 15:27:08 +08002654 struct tipc_net *tn = net_generic(net, tipc_net_id);
Herbert Xu40f9f432017-02-11 19:26:46 +08002655 struct rhashtable_iter iter;
Ying Xue07f6c4b2015-01-07 13:41:58 +08002656 struct tipc_sock *tsk;
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002657 struct tipc_msg *msg;
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002658
Herbert Xu40f9f432017-02-11 19:26:46 +08002659 rhashtable_walk_enter(&tn->sk_rht, &iter);
2660
2661 do {
Tom Herbert97a6ec42017-12-04 10:31:41 -08002662 rhashtable_walk_start(&iter);
Herbert Xu40f9f432017-02-11 19:26:46 +08002663
2664 while ((tsk = rhashtable_walk_next(&iter)) && !IS_ERR(tsk)) {
Ying Xue07f6c4b2015-01-07 13:41:58 +08002665 spin_lock_bh(&tsk->sk.sk_lock.slock);
2666 msg = &tsk->phdr;
Jon Maloy23fd3ea2018-03-22 20:42:49 +01002667 msg_set_prevnode(msg, tipc_own_addr(net));
2668 msg_set_orignode(msg, tipc_own_addr(net));
Ying Xue07f6c4b2015-01-07 13:41:58 +08002669 spin_unlock_bh(&tsk->sk.sk_lock.slock);
2670 }
Tom Herbert97a6ec42017-12-04 10:31:41 -08002671
Herbert Xu40f9f432017-02-11 19:26:46 +08002672 rhashtable_walk_stop(&iter);
2673 } while (tsk == ERR_PTR(-EAGAIN));
Ying Xue07f6c4b2015-01-07 13:41:58 +08002674}
2675
Ying Xuee05b31f2015-01-09 15:27:08 +08002676static struct tipc_sock *tipc_sk_lookup(struct net *net, u32 portid)
Ying Xue07f6c4b2015-01-07 13:41:58 +08002677{
Ying Xuee05b31f2015-01-09 15:27:08 +08002678 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002679 struct tipc_sock *tsk;
2680
2681 rcu_read_lock();
Herbert Xu6cca72892015-03-20 21:57:05 +11002682 tsk = rhashtable_lookup_fast(&tn->sk_rht, &portid, tsk_rht_params);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002683 if (tsk)
2684 sock_hold(&tsk->sk);
2685 rcu_read_unlock();
2686
2687 return tsk;
2688}
2689
2690static int tipc_sk_insert(struct tipc_sock *tsk)
2691{
Ying Xuee05b31f2015-01-09 15:27:08 +08002692 struct sock *sk = &tsk->sk;
2693 struct net *net = sock_net(sk);
2694 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002695 u32 remaining = (TIPC_MAX_PORT - TIPC_MIN_PORT) + 1;
2696 u32 portid = prandom_u32() % remaining + TIPC_MIN_PORT;
2697
2698 while (remaining--) {
2699 portid++;
2700 if ((portid < TIPC_MIN_PORT) || (portid > TIPC_MAX_PORT))
2701 portid = TIPC_MIN_PORT;
2702 tsk->portid = portid;
2703 sock_hold(&tsk->sk);
Herbert Xu6cca72892015-03-20 21:57:05 +11002704 if (!rhashtable_lookup_insert_fast(&tn->sk_rht, &tsk->node,
2705 tsk_rht_params))
Ying Xue07f6c4b2015-01-07 13:41:58 +08002706 return 0;
2707 sock_put(&tsk->sk);
2708 }
2709
2710 return -1;
2711}
2712
2713static void tipc_sk_remove(struct tipc_sock *tsk)
2714{
2715 struct sock *sk = &tsk->sk;
Ying Xuee05b31f2015-01-09 15:27:08 +08002716 struct tipc_net *tn = net_generic(sock_net(sk), tipc_net_id);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002717
Herbert Xu6cca72892015-03-20 21:57:05 +11002718 if (!rhashtable_remove_fast(&tn->sk_rht, &tsk->node, tsk_rht_params)) {
Reshetova, Elena41c6d652017-06-30 13:08:01 +03002719 WARN_ON(refcount_read(&sk->sk_refcnt) == 1);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002720 __sock_put(sk);
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002721 }
2722}
2723
Herbert Xu6cca72892015-03-20 21:57:05 +11002724static const struct rhashtable_params tsk_rht_params = {
2725 .nelem_hint = 192,
2726 .head_offset = offsetof(struct tipc_sock, node),
2727 .key_offset = offsetof(struct tipc_sock, portid),
2728 .key_len = sizeof(u32), /* portid */
Herbert Xu6cca72892015-03-20 21:57:05 +11002729 .max_size = 1048576,
2730 .min_size = 256,
Thomas Grafb5e2c152015-03-24 20:42:19 +00002731 .automatic_shrinking = true,
Herbert Xu6cca72892015-03-20 21:57:05 +11002732};
2733
Ying Xuee05b31f2015-01-09 15:27:08 +08002734int tipc_sk_rht_init(struct net *net)
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002735{
Ying Xuee05b31f2015-01-09 15:27:08 +08002736 struct tipc_net *tn = net_generic(net, tipc_net_id);
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002737
Herbert Xu6cca72892015-03-20 21:57:05 +11002738 return rhashtable_init(&tn->sk_rht, &tsk_rht_params);
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002739}
2740
Ying Xuee05b31f2015-01-09 15:27:08 +08002741void tipc_sk_rht_destroy(struct net *net)
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002742{
Ying Xuee05b31f2015-01-09 15:27:08 +08002743 struct tipc_net *tn = net_generic(net, tipc_net_id);
2744
Ying Xue07f6c4b2015-01-07 13:41:58 +08002745 /* Wait for socket readers to complete */
2746 synchronize_net();
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002747
Ying Xuee05b31f2015-01-09 15:27:08 +08002748 rhashtable_destroy(&tn->sk_rht);
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002749}
2750
Jon Maloy75da2162017-10-13 11:04:23 +02002751static int tipc_sk_join(struct tipc_sock *tsk, struct tipc_group_req *mreq)
2752{
2753 struct net *net = sock_net(&tsk->sk);
Jon Maloy75da2162017-10-13 11:04:23 +02002754 struct tipc_group *grp = tsk->group;
2755 struct tipc_msg *hdr = &tsk->phdr;
2756 struct tipc_name_seq seq;
2757 int rc;
2758
2759 if (mreq->type < TIPC_RESERVED_TYPES)
2760 return -EACCES;
Jon Maloy232d07b2018-01-08 21:03:30 +01002761 if (mreq->scope > TIPC_NODE_SCOPE)
2762 return -EINVAL;
Jon Maloy75da2162017-10-13 11:04:23 +02002763 if (grp)
2764 return -EACCES;
Jon Maloy60c25302018-01-17 16:42:46 +01002765 grp = tipc_group_create(net, tsk->portid, mreq, &tsk->group_is_open);
Jon Maloy75da2162017-10-13 11:04:23 +02002766 if (!grp)
2767 return -ENOMEM;
2768 tsk->group = grp;
2769 msg_set_lookup_scope(hdr, mreq->scope);
2770 msg_set_nametype(hdr, mreq->type);
2771 msg_set_dest_droppable(hdr, true);
2772 seq.type = mreq->type;
2773 seq.lower = mreq->instance;
2774 seq.upper = seq.lower;
Jon Maloy232d07b2018-01-08 21:03:30 +01002775 tipc_nametbl_build_group(net, grp, mreq->type, mreq->scope);
Jon Maloy75da2162017-10-13 11:04:23 +02002776 rc = tipc_sk_publish(tsk, mreq->scope, &seq);
Cong Wange233df02017-10-24 15:44:49 -07002777 if (rc) {
Jon Maloy75da2162017-10-13 11:04:23 +02002778 tipc_group_delete(net, grp);
Cong Wange233df02017-10-24 15:44:49 -07002779 tsk->group = NULL;
Jon Maloyfebafc82018-01-10 21:08:50 +01002780 return rc;
Cong Wange233df02017-10-24 15:44:49 -07002781 }
Jon Maloyd12d2e12018-01-08 21:03:28 +01002782 /* Eliminate any risk that a broadcast overtakes sent JOINs */
Jon Maloy399574d2017-10-13 11:04:32 +02002783 tsk->mc_method.rcast = true;
2784 tsk->mc_method.mandatory = true;
Jon Maloyd12d2e12018-01-08 21:03:28 +01002785 tipc_group_join(net, grp, &tsk->sk.sk_rcvbuf);
Jon Maloy75da2162017-10-13 11:04:23 +02002786 return rc;
2787}
2788
2789static int tipc_sk_leave(struct tipc_sock *tsk)
2790{
2791 struct net *net = sock_net(&tsk->sk);
2792 struct tipc_group *grp = tsk->group;
2793 struct tipc_name_seq seq;
2794 int scope;
2795
2796 if (!grp)
2797 return -EINVAL;
2798 tipc_group_self(grp, &seq, &scope);
2799 tipc_group_delete(net, grp);
2800 tsk->group = NULL;
2801 tipc_sk_withdraw(tsk, scope, &seq);
2802 return 0;
2803}
2804
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002805/**
Ying Xue247f0f32014-02-18 16:06:46 +08002806 * tipc_setsockopt - set socket option
Per Lidenb97bf3f2006-01-02 19:04:38 +01002807 * @sock: socket structure
2808 * @lvl: option level
2809 * @opt: option identifier
2810 * @ov: pointer to new option value
2811 * @ol: length of option value
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002812 *
2813 * For stream sockets only, accepts and ignores all IPPROTO_TCP options
Per Lidenb97bf3f2006-01-02 19:04:38 +01002814 * (to ease compatibility).
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002815 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002816 * Returns 0 on success, errno otherwise
2817 */
Ying Xue247f0f32014-02-18 16:06:46 +08002818static int tipc_setsockopt(struct socket *sock, int lvl, int opt,
2819 char __user *ov, unsigned int ol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002820{
Allan Stephens0c3141e2008-04-15 00:22:02 -07002821 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002822 struct tipc_sock *tsk = tipc_sk(sk);
Jon Maloy75da2162017-10-13 11:04:23 +02002823 struct tipc_group_req mreq;
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -05002824 u32 value = 0;
Dan Carpentera08ef472017-01-24 12:49:35 +03002825 int res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002826
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002827 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
2828 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002829 if (lvl != SOL_TIPC)
2830 return -ENOPROTOOPT;
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -05002831
2832 switch (opt) {
2833 case TIPC_IMPORTANCE:
2834 case TIPC_SRC_DROPPABLE:
2835 case TIPC_DEST_DROPPABLE:
2836 case TIPC_CONN_TIMEOUT:
2837 if (ol < sizeof(value))
2838 return -EINVAL;
Jon Maloy75da2162017-10-13 11:04:23 +02002839 if (get_user(value, (u32 __user *)ov))
2840 return -EFAULT;
2841 break;
2842 case TIPC_GROUP_JOIN:
2843 if (ol < sizeof(mreq))
2844 return -EINVAL;
2845 if (copy_from_user(&mreq, ov, sizeof(mreq)))
2846 return -EFAULT;
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -05002847 break;
2848 default:
2849 if (ov || ol)
2850 return -EINVAL;
2851 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002852
Allan Stephens0c3141e2008-04-15 00:22:02 -07002853 lock_sock(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002854
Per Lidenb97bf3f2006-01-02 19:04:38 +01002855 switch (opt) {
2856 case TIPC_IMPORTANCE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002857 res = tsk_set_importance(tsk, value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002858 break;
2859 case TIPC_SRC_DROPPABLE:
2860 if (sock->type != SOCK_STREAM)
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002861 tsk_set_unreliable(tsk, value);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002862 else
Per Lidenb97bf3f2006-01-02 19:04:38 +01002863 res = -ENOPROTOOPT;
2864 break;
2865 case TIPC_DEST_DROPPABLE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002866 tsk_set_unreturnable(tsk, value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002867 break;
2868 case TIPC_CONN_TIMEOUT:
Allan Stephensa0f40f02011-05-26 13:44:34 -04002869 tipc_sk(sk)->conn_timeout = value;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002870 break;
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -05002871 case TIPC_MCAST_BROADCAST:
2872 tsk->mc_method.rcast = false;
2873 tsk->mc_method.mandatory = true;
2874 break;
2875 case TIPC_MCAST_REPLICAST:
2876 tsk->mc_method.rcast = true;
2877 tsk->mc_method.mandatory = true;
2878 break;
Jon Maloy75da2162017-10-13 11:04:23 +02002879 case TIPC_GROUP_JOIN:
2880 res = tipc_sk_join(tsk, &mreq);
2881 break;
2882 case TIPC_GROUP_LEAVE:
2883 res = tipc_sk_leave(tsk);
2884 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002885 default:
2886 res = -EINVAL;
2887 }
2888
Allan Stephens0c3141e2008-04-15 00:22:02 -07002889 release_sock(sk);
2890
Per Lidenb97bf3f2006-01-02 19:04:38 +01002891 return res;
2892}
2893
2894/**
Ying Xue247f0f32014-02-18 16:06:46 +08002895 * tipc_getsockopt - get socket option
Per Lidenb97bf3f2006-01-02 19:04:38 +01002896 * @sock: socket structure
2897 * @lvl: option level
2898 * @opt: option identifier
2899 * @ov: receptacle for option value
2900 * @ol: receptacle for length of option value
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002901 *
2902 * For stream sockets only, returns 0 length result for all IPPROTO_TCP options
Per Lidenb97bf3f2006-01-02 19:04:38 +01002903 * (to ease compatibility).
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002904 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002905 * Returns 0 on success, errno otherwise
2906 */
Ying Xue247f0f32014-02-18 16:06:46 +08002907static int tipc_getsockopt(struct socket *sock, int lvl, int opt,
2908 char __user *ov, int __user *ol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002909{
Allan Stephens0c3141e2008-04-15 00:22:02 -07002910 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002911 struct tipc_sock *tsk = tipc_sk(sk);
Jon Maloy75da2162017-10-13 11:04:23 +02002912 struct tipc_name_seq seq;
2913 int len, scope;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002914 u32 value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002915 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002916
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002917 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
2918 return put_user(0, ol);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002919 if (lvl != SOL_TIPC)
2920 return -ENOPROTOOPT;
Allan Stephens2db99832010-12-31 18:59:33 +00002921 res = get_user(len, ol);
2922 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002923 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002924
Allan Stephens0c3141e2008-04-15 00:22:02 -07002925 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002926
2927 switch (opt) {
2928 case TIPC_IMPORTANCE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002929 value = tsk_importance(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002930 break;
2931 case TIPC_SRC_DROPPABLE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002932 value = tsk_unreliable(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002933 break;
2934 case TIPC_DEST_DROPPABLE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002935 value = tsk_unreturnable(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002936 break;
2937 case TIPC_CONN_TIMEOUT:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002938 value = tsk->conn_timeout;
Allan Stephens0c3141e2008-04-15 00:22:02 -07002939 /* no need to set "res", since already 0 at this point */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002940 break;
Allan Stephens0e659672010-12-31 18:59:32 +00002941 case TIPC_NODE_RECVQ_DEPTH:
Ying Xue9da3d472012-11-27 06:15:27 -05002942 value = 0; /* was tipc_queue_size, now obsolete */
oscar.medina@motorola.com66506132009-06-30 03:25:39 +00002943 break;
Allan Stephens0e659672010-12-31 18:59:32 +00002944 case TIPC_SOCK_RECVQ_DEPTH:
oscar.medina@motorola.com66506132009-06-30 03:25:39 +00002945 value = skb_queue_len(&sk->sk_receive_queue);
2946 break;
Jon Maloy75da2162017-10-13 11:04:23 +02002947 case TIPC_GROUP_JOIN:
2948 seq.type = 0;
2949 if (tsk->group)
2950 tipc_group_self(tsk->group, &seq, &scope);
2951 value = seq.type;
2952 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002953 default:
2954 res = -EINVAL;
2955 }
2956
Allan Stephens0c3141e2008-04-15 00:22:02 -07002957 release_sock(sk);
2958
Paul Gortmaker25860c32010-12-31 18:59:31 +00002959 if (res)
2960 return res; /* "get" failed */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002961
Paul Gortmaker25860c32010-12-31 18:59:31 +00002962 if (len < sizeof(value))
2963 return -EINVAL;
2964
2965 if (copy_to_user(ov, &value, sizeof(value)))
2966 return -EFAULT;
2967
2968 return put_user(sizeof(value), ol);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002969}
2970
Ying Xuef2f98002015-01-09 15:27:05 +08002971static int tipc_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
Erik Hugne78acb1f2014-04-24 16:26:47 +02002972{
Jon Maloy3e5cf362018-04-25 19:29:36 +02002973 struct net *net = sock_net(sock->sk);
2974 struct tipc_sioc_nodeid_req nr = {0};
Erik Hugne78acb1f2014-04-24 16:26:47 +02002975 struct tipc_sioc_ln_req lnr;
2976 void __user *argp = (void __user *)arg;
2977
2978 switch (cmd) {
2979 case SIOCGETLINKNAME:
2980 if (copy_from_user(&lnr, argp, sizeof(lnr)))
2981 return -EFAULT;
Jon Maloy3e5cf362018-04-25 19:29:36 +02002982 if (!tipc_node_get_linkname(net,
Ying Xuef2f98002015-01-09 15:27:05 +08002983 lnr.bearer_id & 0xffff, lnr.peer,
Erik Hugne78acb1f2014-04-24 16:26:47 +02002984 lnr.linkname, TIPC_MAX_LINK_NAME)) {
2985 if (copy_to_user(argp, &lnr, sizeof(lnr)))
2986 return -EFAULT;
2987 return 0;
2988 }
2989 return -EADDRNOTAVAIL;
Jon Maloy3e5cf362018-04-25 19:29:36 +02002990 case SIOCGETNODEID:
2991 if (copy_from_user(&nr, argp, sizeof(nr)))
2992 return -EFAULT;
2993 if (!tipc_node_get_id(net, nr.peer, nr.node_id))
2994 return -EADDRNOTAVAIL;
2995 if (copy_to_user(argp, &nr, sizeof(nr)))
2996 return -EFAULT;
2997 return 0;
Erik Hugne78acb1f2014-04-24 16:26:47 +02002998 default:
2999 return -ENOIOCTLCMD;
3000 }
3001}
3002
Erik Hugne70b03752017-03-29 11:22:16 +02003003static int tipc_socketpair(struct socket *sock1, struct socket *sock2)
3004{
3005 struct tipc_sock *tsk2 = tipc_sk(sock2->sk);
3006 struct tipc_sock *tsk1 = tipc_sk(sock1->sk);
Erik Hugne66bc1e82017-03-29 11:22:17 +02003007 u32 onode = tipc_own_addr(sock_net(sock1->sk));
Erik Hugne70b03752017-03-29 11:22:16 +02003008
Erik Hugne66bc1e82017-03-29 11:22:17 +02003009 tsk1->peer.family = AF_TIPC;
3010 tsk1->peer.addrtype = TIPC_ADDR_ID;
3011 tsk1->peer.scope = TIPC_NODE_SCOPE;
3012 tsk1->peer.addr.id.ref = tsk2->portid;
3013 tsk1->peer.addr.id.node = onode;
3014 tsk2->peer.family = AF_TIPC;
3015 tsk2->peer.addrtype = TIPC_ADDR_ID;
3016 tsk2->peer.scope = TIPC_NODE_SCOPE;
3017 tsk2->peer.addr.id.ref = tsk1->portid;
3018 tsk2->peer.addr.id.node = onode;
3019
3020 tipc_sk_finish_conn(tsk1, tsk2->portid, onode);
3021 tipc_sk_finish_conn(tsk2, tsk1->portid, onode);
Erik Hugne70b03752017-03-29 11:22:16 +02003022 return 0;
3023}
3024
Ben Hutchingsae86b9e2012-07-10 10:55:35 +00003025/* Protocol switches for the various types of TIPC sockets */
3026
Florian Westphalbca65ea2008-02-07 18:18:01 -08003027static const struct proto_ops msg_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00003028 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01003029 .family = AF_TIPC,
Ying Xue247f0f32014-02-18 16:06:46 +08003030 .release = tipc_release,
3031 .bind = tipc_bind,
3032 .connect = tipc_connect,
Erik Hugne66bc1e82017-03-29 11:22:17 +02003033 .socketpair = tipc_socketpair,
Ying Xue245f3d32011-07-06 06:01:13 -04003034 .accept = sock_no_accept,
Ying Xue247f0f32014-02-18 16:06:46 +08003035 .getname = tipc_getname,
Christoph Hellwig4df73382017-12-31 16:36:32 +01003036 .poll_mask = tipc_poll_mask,
Erik Hugne78acb1f2014-04-24 16:26:47 +02003037 .ioctl = tipc_ioctl,
Ying Xue245f3d32011-07-06 06:01:13 -04003038 .listen = sock_no_listen,
Ying Xue247f0f32014-02-18 16:06:46 +08003039 .shutdown = tipc_shutdown,
3040 .setsockopt = tipc_setsockopt,
3041 .getsockopt = tipc_getsockopt,
3042 .sendmsg = tipc_sendmsg,
3043 .recvmsg = tipc_recvmsg,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09003044 .mmap = sock_no_mmap,
3045 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01003046};
3047
Florian Westphalbca65ea2008-02-07 18:18:01 -08003048static const struct proto_ops packet_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00003049 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01003050 .family = AF_TIPC,
Ying Xue247f0f32014-02-18 16:06:46 +08003051 .release = tipc_release,
3052 .bind = tipc_bind,
3053 .connect = tipc_connect,
Erik Hugne70b03752017-03-29 11:22:16 +02003054 .socketpair = tipc_socketpair,
Ying Xue247f0f32014-02-18 16:06:46 +08003055 .accept = tipc_accept,
3056 .getname = tipc_getname,
Christoph Hellwig4df73382017-12-31 16:36:32 +01003057 .poll_mask = tipc_poll_mask,
Erik Hugne78acb1f2014-04-24 16:26:47 +02003058 .ioctl = tipc_ioctl,
Ying Xue247f0f32014-02-18 16:06:46 +08003059 .listen = tipc_listen,
3060 .shutdown = tipc_shutdown,
3061 .setsockopt = tipc_setsockopt,
3062 .getsockopt = tipc_getsockopt,
3063 .sendmsg = tipc_send_packet,
3064 .recvmsg = tipc_recvmsg,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09003065 .mmap = sock_no_mmap,
3066 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01003067};
3068
Florian Westphalbca65ea2008-02-07 18:18:01 -08003069static const struct proto_ops stream_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00003070 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01003071 .family = AF_TIPC,
Ying Xue247f0f32014-02-18 16:06:46 +08003072 .release = tipc_release,
3073 .bind = tipc_bind,
3074 .connect = tipc_connect,
Erik Hugne70b03752017-03-29 11:22:16 +02003075 .socketpair = tipc_socketpair,
Ying Xue247f0f32014-02-18 16:06:46 +08003076 .accept = tipc_accept,
3077 .getname = tipc_getname,
Christoph Hellwig4df73382017-12-31 16:36:32 +01003078 .poll_mask = tipc_poll_mask,
Erik Hugne78acb1f2014-04-24 16:26:47 +02003079 .ioctl = tipc_ioctl,
Ying Xue247f0f32014-02-18 16:06:46 +08003080 .listen = tipc_listen,
3081 .shutdown = tipc_shutdown,
3082 .setsockopt = tipc_setsockopt,
3083 .getsockopt = tipc_getsockopt,
Jon Paul Maloy365ad352017-01-03 10:55:11 -05003084 .sendmsg = tipc_sendstream,
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02003085 .recvmsg = tipc_recvstream,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09003086 .mmap = sock_no_mmap,
3087 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01003088};
3089
Florian Westphalbca65ea2008-02-07 18:18:01 -08003090static const struct net_proto_family tipc_family_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00003091 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01003092 .family = AF_TIPC,
Ying Xuec5fa7b32013-06-17 10:54:39 -04003093 .create = tipc_sk_create
Per Lidenb97bf3f2006-01-02 19:04:38 +01003094};
3095
3096static struct proto tipc_proto = {
3097 .name = "TIPC",
3098 .owner = THIS_MODULE,
Ying Xuecc79dd12013-06-17 10:54:37 -04003099 .obj_size = sizeof(struct tipc_sock),
3100 .sysctl_rmem = sysctl_tipc_rmem
Per Lidenb97bf3f2006-01-02 19:04:38 +01003101};
3102
3103/**
Per Liden4323add2006-01-18 00:38:21 +01003104 * tipc_socket_init - initialize TIPC socket interface
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003105 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01003106 * Returns 0 on success, errno otherwise
3107 */
Per Liden4323add2006-01-18 00:38:21 +01003108int tipc_socket_init(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +01003109{
3110 int res;
3111
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003112 res = proto_register(&tipc_proto, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003113 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04003114 pr_err("Failed to register TIPC protocol type\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01003115 goto out;
3116 }
3117
3118 res = sock_register(&tipc_family_ops);
3119 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04003120 pr_err("Failed to register TIPC socket type\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01003121 proto_unregister(&tipc_proto);
3122 goto out;
3123 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01003124 out:
3125 return res;
3126}
3127
3128/**
Per Liden4323add2006-01-18 00:38:21 +01003129 * tipc_socket_stop - stop TIPC socket interface
Per Lidenb97bf3f2006-01-02 19:04:38 +01003130 */
Per Liden4323add2006-01-18 00:38:21 +01003131void tipc_socket_stop(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +01003132{
Per Lidenb97bf3f2006-01-02 19:04:38 +01003133 sock_unregister(tipc_family_ops.family);
3134 proto_unregister(&tipc_proto);
3135}
Richard Alpe34b78a122014-11-20 10:29:10 +01003136
3137/* Caller should hold socket lock for the passed tipc socket. */
Richard Alped8182802014-11-24 11:10:29 +01003138static int __tipc_nl_add_sk_con(struct sk_buff *skb, struct tipc_sock *tsk)
Richard Alpe34b78a122014-11-20 10:29:10 +01003139{
3140 u32 peer_node;
3141 u32 peer_port;
3142 struct nlattr *nest;
3143
3144 peer_node = tsk_peer_node(tsk);
3145 peer_port = tsk_peer_port(tsk);
3146
3147 nest = nla_nest_start(skb, TIPC_NLA_SOCK_CON);
3148
3149 if (nla_put_u32(skb, TIPC_NLA_CON_NODE, peer_node))
3150 goto msg_full;
3151 if (nla_put_u32(skb, TIPC_NLA_CON_SOCK, peer_port))
3152 goto msg_full;
3153
3154 if (tsk->conn_type != 0) {
3155 if (nla_put_flag(skb, TIPC_NLA_CON_FLAG))
3156 goto msg_full;
3157 if (nla_put_u32(skb, TIPC_NLA_CON_TYPE, tsk->conn_type))
3158 goto msg_full;
3159 if (nla_put_u32(skb, TIPC_NLA_CON_INST, tsk->conn_instance))
3160 goto msg_full;
3161 }
3162 nla_nest_end(skb, nest);
3163
3164 return 0;
3165
3166msg_full:
3167 nla_nest_cancel(skb, nest);
3168
3169 return -EMSGSIZE;
3170}
3171
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003172static int __tipc_nl_add_sk_info(struct sk_buff *skb, struct tipc_sock
3173 *tsk)
3174{
3175 struct net *net = sock_net(skb->sk);
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003176 struct sock *sk = &tsk->sk;
3177
3178 if (nla_put_u32(skb, TIPC_NLA_SOCK_REF, tsk->portid) ||
Jon Maloy23fd3ea2018-03-22 20:42:49 +01003179 nla_put_u32(skb, TIPC_NLA_SOCK_ADDR, tipc_own_addr(net)))
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003180 return -EMSGSIZE;
3181
3182 if (tipc_sk_connected(sk)) {
3183 if (__tipc_nl_add_sk_con(skb, tsk))
3184 return -EMSGSIZE;
3185 } else if (!list_empty(&tsk->publications)) {
3186 if (nla_put_flag(skb, TIPC_NLA_SOCK_HAS_PUBL))
3187 return -EMSGSIZE;
3188 }
3189 return 0;
3190}
3191
Richard Alpe34b78a122014-11-20 10:29:10 +01003192/* Caller should hold socket lock for the passed tipc socket. */
Richard Alped8182802014-11-24 11:10:29 +01003193static int __tipc_nl_add_sk(struct sk_buff *skb, struct netlink_callback *cb,
3194 struct tipc_sock *tsk)
Richard Alpe34b78a122014-11-20 10:29:10 +01003195{
Richard Alpe34b78a122014-11-20 10:29:10 +01003196 struct nlattr *attrs;
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003197 void *hdr;
Richard Alpe34b78a122014-11-20 10:29:10 +01003198
3199 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
Richard Alpebfb3e5d2015-02-09 09:50:03 +01003200 &tipc_genl_family, NLM_F_MULTI, TIPC_NL_SOCK_GET);
Richard Alpe34b78a122014-11-20 10:29:10 +01003201 if (!hdr)
3202 goto msg_cancel;
3203
3204 attrs = nla_nest_start(skb, TIPC_NLA_SOCK);
3205 if (!attrs)
3206 goto genlmsg_cancel;
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003207
3208 if (__tipc_nl_add_sk_info(skb, tsk))
Richard Alpe34b78a122014-11-20 10:29:10 +01003209 goto attr_msg_cancel;
3210
Richard Alpe34b78a122014-11-20 10:29:10 +01003211 nla_nest_end(skb, attrs);
3212 genlmsg_end(skb, hdr);
3213
3214 return 0;
3215
3216attr_msg_cancel:
3217 nla_nest_cancel(skb, attrs);
3218genlmsg_cancel:
3219 genlmsg_cancel(skb, hdr);
3220msg_cancel:
3221 return -EMSGSIZE;
3222}
3223
GhantaKrishnamurthy MohanKrishnac30b70d2018-03-21 14:37:44 +01003224int tipc_nl_sk_walk(struct sk_buff *skb, struct netlink_callback *cb,
3225 int (*skb_handler)(struct sk_buff *skb,
3226 struct netlink_callback *cb,
3227 struct tipc_sock *tsk))
Richard Alpe34b78a122014-11-20 10:29:10 +01003228{
Ying Xuee05b31f2015-01-09 15:27:08 +08003229 struct net *net = sock_net(skb->sk);
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003230 struct tipc_net *tn = tipc_net(net);
3231 const struct bucket_table *tbl;
Richard Alped6e164e2015-01-16 12:30:40 +01003232 u32 prev_portid = cb->args[1];
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003233 u32 tbl_id = cb->args[0];
3234 struct rhash_head *pos;
3235 struct tipc_sock *tsk;
3236 int err;
Richard Alpe34b78a122014-11-20 10:29:10 +01003237
Ying Xue07f6c4b2015-01-07 13:41:58 +08003238 rcu_read_lock();
Ying Xuee05b31f2015-01-09 15:27:08 +08003239 tbl = rht_dereference_rcu((&tn->sk_rht)->tbl, &tn->sk_rht);
Richard Alped6e164e2015-01-16 12:30:40 +01003240 for (; tbl_id < tbl->size; tbl_id++) {
3241 rht_for_each_entry_rcu(tsk, pos, tbl, tbl_id, node) {
Ying Xue07f6c4b2015-01-07 13:41:58 +08003242 spin_lock_bh(&tsk->sk.sk_lock.slock);
Richard Alped6e164e2015-01-16 12:30:40 +01003243 if (prev_portid && prev_portid != tsk->portid) {
3244 spin_unlock_bh(&tsk->sk.sk_lock.slock);
3245 continue;
3246 }
Richard Alpe34b78a122014-11-20 10:29:10 +01003247
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003248 err = skb_handler(skb, cb, tsk);
Richard Alped6e164e2015-01-16 12:30:40 +01003249 if (err) {
3250 prev_portid = tsk->portid;
3251 spin_unlock_bh(&tsk->sk.sk_lock.slock);
3252 goto out;
3253 }
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003254
Richard Alped6e164e2015-01-16 12:30:40 +01003255 prev_portid = 0;
3256 spin_unlock_bh(&tsk->sk.sk_lock.slock);
Ying Xue07f6c4b2015-01-07 13:41:58 +08003257 }
Richard Alpe34b78a122014-11-20 10:29:10 +01003258 }
Richard Alped6e164e2015-01-16 12:30:40 +01003259out:
Ying Xue07f6c4b2015-01-07 13:41:58 +08003260 rcu_read_unlock();
Richard Alped6e164e2015-01-16 12:30:40 +01003261 cb->args[0] = tbl_id;
3262 cb->args[1] = prev_portid;
Richard Alpe34b78a122014-11-20 10:29:10 +01003263
3264 return skb->len;
3265}
GhantaKrishnamurthy MohanKrishnac30b70d2018-03-21 14:37:44 +01003266EXPORT_SYMBOL(tipc_nl_sk_walk);
3267
Cong Wange41f0542018-04-06 18:54:52 -07003268int tipc_sk_fill_sock_diag(struct sk_buff *skb, struct netlink_callback *cb,
3269 struct tipc_sock *tsk, u32 sk_filter_state,
GhantaKrishnamurthy MohanKrishnac30b70d2018-03-21 14:37:44 +01003270 u64 (*tipc_diag_gen_cookie)(struct sock *sk))
3271{
3272 struct sock *sk = &tsk->sk;
3273 struct nlattr *attrs;
3274 struct nlattr *stat;
3275
3276 /*filter response w.r.t sk_state*/
3277 if (!(sk_filter_state & (1 << sk->sk_state)))
3278 return 0;
3279
3280 attrs = nla_nest_start(skb, TIPC_NLA_SOCK);
3281 if (!attrs)
3282 goto msg_cancel;
3283
3284 if (__tipc_nl_add_sk_info(skb, tsk))
3285 goto attr_msg_cancel;
3286
3287 if (nla_put_u32(skb, TIPC_NLA_SOCK_TYPE, (u32)sk->sk_type) ||
3288 nla_put_u32(skb, TIPC_NLA_SOCK_TIPC_STATE, (u32)sk->sk_state) ||
3289 nla_put_u32(skb, TIPC_NLA_SOCK_INO, sock_i_ino(sk)) ||
3290 nla_put_u32(skb, TIPC_NLA_SOCK_UID,
Cong Wange41f0542018-04-06 18:54:52 -07003291 from_kuid_munged(sk_user_ns(NETLINK_CB(cb->skb).sk),
GhantaKrishnamurthy MohanKrishna4b2e6872018-04-04 14:49:47 +02003292 sock_i_uid(sk))) ||
GhantaKrishnamurthy MohanKrishnac30b70d2018-03-21 14:37:44 +01003293 nla_put_u64_64bit(skb, TIPC_NLA_SOCK_COOKIE,
3294 tipc_diag_gen_cookie(sk),
3295 TIPC_NLA_SOCK_PAD))
3296 goto attr_msg_cancel;
3297
3298 stat = nla_nest_start(skb, TIPC_NLA_SOCK_STAT);
3299 if (!stat)
3300 goto attr_msg_cancel;
3301
3302 if (nla_put_u32(skb, TIPC_NLA_SOCK_STAT_RCVQ,
3303 skb_queue_len(&sk->sk_receive_queue)) ||
3304 nla_put_u32(skb, TIPC_NLA_SOCK_STAT_SENDQ,
GhantaKrishnamurthy MohanKrishna872619d2018-03-21 14:37:45 +01003305 skb_queue_len(&sk->sk_write_queue)) ||
3306 nla_put_u32(skb, TIPC_NLA_SOCK_STAT_DROP,
3307 atomic_read(&sk->sk_drops)))
GhantaKrishnamurthy MohanKrishnac30b70d2018-03-21 14:37:44 +01003308 goto stat_msg_cancel;
3309
3310 if (tsk->cong_link_cnt &&
3311 nla_put_flag(skb, TIPC_NLA_SOCK_STAT_LINK_CONG))
3312 goto stat_msg_cancel;
3313
3314 if (tsk_conn_cong(tsk) &&
3315 nla_put_flag(skb, TIPC_NLA_SOCK_STAT_CONN_CONG))
3316 goto stat_msg_cancel;
3317
3318 nla_nest_end(skb, stat);
3319 nla_nest_end(skb, attrs);
3320
3321 return 0;
3322
3323stat_msg_cancel:
3324 nla_nest_cancel(skb, stat);
3325attr_msg_cancel:
3326 nla_nest_cancel(skb, attrs);
3327msg_cancel:
3328 return -EMSGSIZE;
3329}
3330EXPORT_SYMBOL(tipc_sk_fill_sock_diag);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003331
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003332int tipc_nl_sk_dump(struct sk_buff *skb, struct netlink_callback *cb)
3333{
GhantaKrishnamurthy MohanKrishnac30b70d2018-03-21 14:37:44 +01003334 return tipc_nl_sk_walk(skb, cb, __tipc_nl_add_sk);
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003335}
3336
Richard Alpe1a1a1432014-11-20 10:29:11 +01003337/* Caller should hold socket lock for the passed tipc socket. */
Richard Alped8182802014-11-24 11:10:29 +01003338static int __tipc_nl_add_sk_publ(struct sk_buff *skb,
3339 struct netlink_callback *cb,
3340 struct publication *publ)
Richard Alpe1a1a1432014-11-20 10:29:11 +01003341{
3342 void *hdr;
3343 struct nlattr *attrs;
3344
3345 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
Richard Alpebfb3e5d2015-02-09 09:50:03 +01003346 &tipc_genl_family, NLM_F_MULTI, TIPC_NL_PUBL_GET);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003347 if (!hdr)
3348 goto msg_cancel;
3349
3350 attrs = nla_nest_start(skb, TIPC_NLA_PUBL);
3351 if (!attrs)
3352 goto genlmsg_cancel;
3353
3354 if (nla_put_u32(skb, TIPC_NLA_PUBL_KEY, publ->key))
3355 goto attr_msg_cancel;
3356 if (nla_put_u32(skb, TIPC_NLA_PUBL_TYPE, publ->type))
3357 goto attr_msg_cancel;
3358 if (nla_put_u32(skb, TIPC_NLA_PUBL_LOWER, publ->lower))
3359 goto attr_msg_cancel;
3360 if (nla_put_u32(skb, TIPC_NLA_PUBL_UPPER, publ->upper))
3361 goto attr_msg_cancel;
3362
3363 nla_nest_end(skb, attrs);
3364 genlmsg_end(skb, hdr);
3365
3366 return 0;
3367
3368attr_msg_cancel:
3369 nla_nest_cancel(skb, attrs);
3370genlmsg_cancel:
3371 genlmsg_cancel(skb, hdr);
3372msg_cancel:
3373 return -EMSGSIZE;
3374}
3375
3376/* Caller should hold socket lock for the passed tipc socket. */
Richard Alped8182802014-11-24 11:10:29 +01003377static int __tipc_nl_list_sk_publ(struct sk_buff *skb,
3378 struct netlink_callback *cb,
3379 struct tipc_sock *tsk, u32 *last_publ)
Richard Alpe1a1a1432014-11-20 10:29:11 +01003380{
3381 int err;
3382 struct publication *p;
3383
3384 if (*last_publ) {
Jon Maloye50e73e2018-03-15 16:48:55 +01003385 list_for_each_entry(p, &tsk->publications, binding_sock) {
Richard Alpe1a1a1432014-11-20 10:29:11 +01003386 if (p->key == *last_publ)
3387 break;
3388 }
3389 if (p->key != *last_publ) {
3390 /* We never set seq or call nl_dump_check_consistent()
3391 * this means that setting prev_seq here will cause the
3392 * consistence check to fail in the netlink callback
3393 * handler. Resulting in the last NLMSG_DONE message
3394 * having the NLM_F_DUMP_INTR flag set.
3395 */
3396 cb->prev_seq = 1;
3397 *last_publ = 0;
3398 return -EPIPE;
3399 }
3400 } else {
3401 p = list_first_entry(&tsk->publications, struct publication,
Jon Maloye50e73e2018-03-15 16:48:55 +01003402 binding_sock);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003403 }
3404
Jon Maloye50e73e2018-03-15 16:48:55 +01003405 list_for_each_entry_from(p, &tsk->publications, binding_sock) {
Richard Alpe1a1a1432014-11-20 10:29:11 +01003406 err = __tipc_nl_add_sk_publ(skb, cb, p);
3407 if (err) {
3408 *last_publ = p->key;
3409 return err;
3410 }
3411 }
3412 *last_publ = 0;
3413
3414 return 0;
3415}
3416
3417int tipc_nl_publ_dump(struct sk_buff *skb, struct netlink_callback *cb)
3418{
3419 int err;
Ying Xue07f6c4b2015-01-07 13:41:58 +08003420 u32 tsk_portid = cb->args[0];
Richard Alpe1a1a1432014-11-20 10:29:11 +01003421 u32 last_publ = cb->args[1];
3422 u32 done = cb->args[2];
Ying Xuee05b31f2015-01-09 15:27:08 +08003423 struct net *net = sock_net(skb->sk);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003424 struct tipc_sock *tsk;
3425
Ying Xue07f6c4b2015-01-07 13:41:58 +08003426 if (!tsk_portid) {
Richard Alpe1a1a1432014-11-20 10:29:11 +01003427 struct nlattr **attrs;
3428 struct nlattr *sock[TIPC_NLA_SOCK_MAX + 1];
3429
3430 err = tipc_nlmsg_parse(cb->nlh, &attrs);
3431 if (err)
3432 return err;
3433
Richard Alpe45e093a2016-05-16 11:14:54 +02003434 if (!attrs[TIPC_NLA_SOCK])
3435 return -EINVAL;
3436
Richard Alpe1a1a1432014-11-20 10:29:11 +01003437 err = nla_parse_nested(sock, TIPC_NLA_SOCK_MAX,
3438 attrs[TIPC_NLA_SOCK],
Johannes Bergfceb6432017-04-12 14:34:07 +02003439 tipc_nl_sock_policy, NULL);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003440 if (err)
3441 return err;
3442
3443 if (!sock[TIPC_NLA_SOCK_REF])
3444 return -EINVAL;
3445
Ying Xue07f6c4b2015-01-07 13:41:58 +08003446 tsk_portid = nla_get_u32(sock[TIPC_NLA_SOCK_REF]);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003447 }
3448
3449 if (done)
3450 return 0;
3451
Ying Xuee05b31f2015-01-09 15:27:08 +08003452 tsk = tipc_sk_lookup(net, tsk_portid);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003453 if (!tsk)
3454 return -EINVAL;
3455
3456 lock_sock(&tsk->sk);
3457 err = __tipc_nl_list_sk_publ(skb, cb, tsk, &last_publ);
3458 if (!err)
3459 done = 1;
3460 release_sock(&tsk->sk);
Ying Xue07f6c4b2015-01-07 13:41:58 +08003461 sock_put(&tsk->sk);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003462
Ying Xue07f6c4b2015-01-07 13:41:58 +08003463 cb->args[0] = tsk_portid;
Richard Alpe1a1a1432014-11-20 10:29:11 +01003464 cb->args[1] = last_publ;
3465 cb->args[2] = done;
3466
3467 return skb->len;
3468}