blob: 8ac8ddf1e32419d1751a535f5c6d554a9d43836a [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"
Tuong Lienb4b97712018-12-19 09:17:56 +070049#include "trace.h"
Erik Hugne2cf8aa12012-06-29 00:16:37 -040050
Tung Nguyen67879272018-09-28 20:23:22 +020051#define CONN_TIMEOUT_DEFAULT 8000 /* default connect timeout = 8s */
Jon Maloy0d5fcebf2017-10-20 11:21:32 +020052#define CONN_PROBING_INTV msecs_to_jiffies(3600000) /* [ms] => 1 h */
Ying Xue07f6c4b2015-01-07 13:41:58 +080053#define TIPC_FWD_MSG 1
Ying Xue07f6c4b2015-01-07 13:41:58 +080054#define TIPC_MAX_PORT 0xffffffff
55#define TIPC_MIN_PORT 1
Jon Paul Maloye9f8b102017-05-02 18:16:53 +020056#define TIPC_ACK_RATE 4 /* ACK at 1/4 of of rcv window size */
Jon Paul Maloy301bae52014-08-22 18:09:20 -040057
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +010058enum {
59 TIPC_LISTEN = TCP_LISTEN,
Parthasarathy Bhuvaragan8ea642e2016-11-01 14:02:44 +010060 TIPC_ESTABLISHED = TCP_ESTABLISHED,
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +010061 TIPC_OPEN = TCP_CLOSE,
Parthasarathy Bhuvaragan9fd4b072016-11-01 14:02:46 +010062 TIPC_DISCONNECTING = TCP_CLOSE_WAIT,
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +010063 TIPC_CONNECTING = TCP_SYN_SENT,
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +010064};
65
Jon Maloy31c82a22017-10-13 11:04:24 +020066struct sockaddr_pair {
67 struct sockaddr_tipc sock;
68 struct sockaddr_tipc member;
69};
70
Jon Paul Maloy301bae52014-08-22 18:09:20 -040071/**
72 * struct tipc_sock - TIPC socket structure
73 * @sk: socket - interacts with 'port' and with user via the socket API
Jon Paul Maloy301bae52014-08-22 18:09:20 -040074 * @conn_type: TIPC type used when connection was established
75 * @conn_instance: TIPC instance used when connection was established
76 * @published: non-zero if port has one or more associated names
77 * @max_pkt: maximum packet size "hint" used when building messages sent by port
Ying Xue07f6c4b2015-01-07 13:41:58 +080078 * @portid: unique port identity in TIPC socket hash table
Jon Paul Maloy301bae52014-08-22 18:09:20 -040079 * @phdr: preformatted message header used when sending messages
Jon Paul Maloy365ad352017-01-03 10:55:11 -050080 * #cong_links: list of congested links
Jon Paul Maloy301bae52014-08-22 18:09:20 -040081 * @publications: list of publications for port
Jon Paul Maloy365ad352017-01-03 10:55:11 -050082 * @blocking_link: address of the congested link we are currently sleeping on
Jon Paul Maloy301bae52014-08-22 18:09:20 -040083 * @pub_count: total # of publications port has made during its lifetime
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 atomic_t dupl_rcvcnt;
Tung Nguyen67879272018-09-28 20:23:22 +0200106 u16 conn_timeout;
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 Xue39a0295f2015-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{
Tuong Lien01e661e2018-12-19 09:17:58 +0700237 trace_tipc_sk_advance_rx(sk, NULL, TIPC_DUMP_SK_RCVQ, " ");
Allan Stephens5f6d9122011-11-04 13:24:29 -0400238 kfree_skb(__skb_dequeue(&sk->sk_receive_queue));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100239}
240
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -0400241/* tipc_sk_respond() : send response message back to sender
242 */
243static void tipc_sk_respond(struct sock *sk, struct sk_buff *skb, int err)
244{
245 u32 selector;
246 u32 dnode;
247 u32 onode = tipc_own_addr(sock_net(sk));
248
249 if (!tipc_msg_reverse(onode, &skb, err))
250 return;
251
Tuong Lien01e661e2018-12-19 09:17:58 +0700252 trace_tipc_sk_rej_msg(sk, skb, TIPC_DUMP_NONE, "@sk_respond!");
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -0400253 dnode = msg_destnode(buf_msg(skb));
254 selector = msg_origport(buf_msg(skb));
255 tipc_node_xmit_skb(sock_net(sk), skb, dnode, selector);
256}
257
Per Lidenb97bf3f2006-01-02 19:04:38 +0100258/**
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400259 * tsk_rej_rx_queue - reject all buffers in socket receive queue
Allan Stephens0c3141e2008-04-15 00:22:02 -0700260 *
261 * Caller must hold socket lock
262 */
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400263static void tsk_rej_rx_queue(struct sock *sk)
Allan Stephens0c3141e2008-04-15 00:22:02 -0700264{
Ying Xuea6ca1092014-11-26 11:41:55 +0800265 struct sk_buff *skb;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700266
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -0400267 while ((skb = __skb_dequeue(&sk->sk_receive_queue)))
268 tipc_sk_respond(sk, skb, TIPC_ERR_NO_PORT);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700269}
270
Parthasarathy Bhuvaragand6fb7e92016-11-01 14:02:40 +0100271static bool tipc_sk_connected(struct sock *sk)
272{
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +0100273 return sk->sk_state == TIPC_ESTABLISHED;
Parthasarathy Bhuvaragand6fb7e92016-11-01 14:02:40 +0100274}
275
Parthasarathy Bhuvaraganc752023a2016-11-01 14:02:42 +0100276/* tipc_sk_type_connectionless - check if the socket is datagram socket
277 * @sk: socket
278 *
279 * Returns true if connection less, false otherwise
280 */
281static bool tipc_sk_type_connectionless(struct sock *sk)
282{
283 return sk->sk_type == SOCK_RDM || sk->sk_type == SOCK_DGRAM;
284}
285
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400286/* tsk_peer_msg - verify if message was sent by connected port's peer
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400287 *
288 * Handles cases where the node's network address has changed from
289 * the default of <0.0.0> to its configured setting.
290 */
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400291static bool tsk_peer_msg(struct tipc_sock *tsk, struct tipc_msg *msg)
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400292{
Parthasarathy Bhuvaragand6fb7e92016-11-01 14:02:40 +0100293 struct sock *sk = &tsk->sk;
Jon Maloy23fd3ea2018-03-22 20:42:49 +0100294 u32 self = tipc_own_addr(sock_net(sk));
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400295 u32 peer_port = tsk_peer_port(tsk);
Jon Maloy23fd3ea2018-03-22 20:42:49 +0100296 u32 orig_node, peer_node;
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400297
Parthasarathy Bhuvaragand6fb7e92016-11-01 14:02:40 +0100298 if (unlikely(!tipc_sk_connected(sk)))
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400299 return false;
300
301 if (unlikely(msg_origport(msg) != peer_port))
302 return false;
303
304 orig_node = msg_orignode(msg);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400305 peer_node = tsk_peer_node(tsk);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400306
307 if (likely(orig_node == peer_node))
308 return true;
309
Jon Maloy23fd3ea2018-03-22 20:42:49 +0100310 if (!orig_node && peer_node == self)
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400311 return true;
312
Jon Maloy23fd3ea2018-03-22 20:42:49 +0100313 if (!peer_node && orig_node == self)
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400314 return true;
315
316 return false;
317}
318
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +0100319/* tipc_set_sk_state - set the sk_state of the socket
320 * @sk: socket
321 *
322 * Caller must hold socket lock
323 *
324 * Returns 0 on success, errno otherwise
325 */
326static int tipc_set_sk_state(struct sock *sk, int state)
327{
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +0100328 int oldsk_state = sk->sk_state;
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +0100329 int res = -EINVAL;
330
331 switch (state) {
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +0100332 case TIPC_OPEN:
333 res = 0;
334 break;
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +0100335 case TIPC_LISTEN:
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +0100336 case TIPC_CONNECTING:
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +0100337 if (oldsk_state == TIPC_OPEN)
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +0100338 res = 0;
339 break;
Parthasarathy Bhuvaragan8ea642e2016-11-01 14:02:44 +0100340 case TIPC_ESTABLISHED:
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +0100341 if (oldsk_state == TIPC_CONNECTING ||
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +0100342 oldsk_state == TIPC_OPEN)
Parthasarathy Bhuvaragan8ea642e2016-11-01 14:02:44 +0100343 res = 0;
344 break;
Parthasarathy Bhuvaragan9fd4b072016-11-01 14:02:46 +0100345 case TIPC_DISCONNECTING:
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +0100346 if (oldsk_state == TIPC_CONNECTING ||
Parthasarathy Bhuvaragan9fd4b072016-11-01 14:02:46 +0100347 oldsk_state == TIPC_ESTABLISHED)
348 res = 0;
349 break;
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +0100350 }
351
352 if (!res)
353 sk->sk_state = state;
354
355 return res;
356}
357
Jon Paul Maloy8c44e1a2017-01-03 10:55:09 -0500358static int tipc_sk_sock_err(struct socket *sock, long *timeout)
359{
360 struct sock *sk = sock->sk;
361 int err = sock_error(sk);
362 int typ = sock->type;
363
364 if (err)
365 return err;
366 if (typ == SOCK_STREAM || typ == SOCK_SEQPACKET) {
367 if (sk->sk_state == TIPC_DISCONNECTING)
368 return -EPIPE;
369 else if (!tipc_sk_connected(sk))
370 return -ENOTCONN;
371 }
372 if (!*timeout)
373 return -EAGAIN;
374 if (signal_pending(current))
375 return sock_intr_errno(*timeout);
376
377 return 0;
378}
379
Jon Paul Maloy844cf762017-05-11 20:28:15 +0200380#define tipc_wait_for_cond(sock_, timeo_, condition_) \
381({ \
Tung Nguyenbfd07f32019-02-25 10:57:20 +0700382 DEFINE_WAIT_FUNC(wait_, woken_wake_function); \
Jon Paul Maloy844cf762017-05-11 20:28:15 +0200383 struct sock *sk_; \
384 int rc_; \
385 \
386 while ((rc_ = !(condition_))) { \
Tung Nguyenbfd07f32019-02-25 10:57:20 +0700387 /* coupled with smp_wmb() in tipc_sk_proto_rcv() */ \
388 smp_rmb(); \
Jon Paul Maloy844cf762017-05-11 20:28:15 +0200389 sk_ = (sock_)->sk; \
390 rc_ = tipc_sk_sock_err((sock_), timeo_); \
391 if (rc_) \
392 break; \
Tung Nguyen223b7322019-02-19 11:20:47 +0700393 add_wait_queue(sk_sleep(sk_), &wait_); \
Jon Paul Maloy844cf762017-05-11 20:28:15 +0200394 release_sock(sk_); \
395 *(timeo_) = wait_woken(&wait_, TASK_INTERRUPTIBLE, *(timeo_)); \
396 sched_annotate_sleep(); \
397 lock_sock(sk_); \
398 remove_wait_queue(sk_sleep(sk_), &wait_); \
399 } \
400 rc_; \
Jon Paul Maloy8c44e1a2017-01-03 10:55:09 -0500401})
402
Allan Stephens0c3141e2008-04-15 00:22:02 -0700403/**
Ying Xuec5fa7b32013-06-17 10:54:39 -0400404 * tipc_sk_create - create a TIPC socket
Allan Stephens0c3141e2008-04-15 00:22:02 -0700405 * @net: network namespace (must be default network)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100406 * @sock: pre-allocated socket structure
407 * @protocol: protocol indicator (must be 0)
Eric Paris3f378b62009-11-05 22:18:14 -0800408 * @kern: caused by kernel or by userspace?
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900409 *
Allan Stephens0c3141e2008-04-15 00:22:02 -0700410 * This routine creates additional data structures used by the TIPC socket,
411 * initializes them, and links them together.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100412 *
413 * Returns 0 on success, errno otherwise
414 */
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400415static int tipc_sk_create(struct net *net, struct socket *sock,
416 int protocol, int kern)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100417{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700418 const struct proto_ops *ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100419 struct sock *sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400420 struct tipc_sock *tsk;
Jon Paul Maloy5b8fa7c2014-08-22 18:09:13 -0400421 struct tipc_msg *msg;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700422
423 /* Validate arguments */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100424 if (unlikely(protocol != 0))
425 return -EPROTONOSUPPORT;
426
Per Lidenb97bf3f2006-01-02 19:04:38 +0100427 switch (sock->type) {
428 case SOCK_STREAM:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700429 ops = &stream_ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100430 break;
431 case SOCK_SEQPACKET:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700432 ops = &packet_ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100433 break;
434 case SOCK_DGRAM:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100435 case SOCK_RDM:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700436 ops = &msg_ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100437 break;
Allan Stephens49978652006-06-25 23:47:18 -0700438 default:
Allan Stephens49978652006-06-25 23:47:18 -0700439 return -EPROTOTYPE;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100440 }
441
Allan Stephens0c3141e2008-04-15 00:22:02 -0700442 /* Allocate socket's protocol area */
Eric W. Biederman11aa9c22015-05-08 21:09:13 -0500443 sk = sk_alloc(net, AF_TIPC, GFP_KERNEL, &tipc_proto, kern);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700444 if (sk == NULL)
445 return -ENOMEM;
446
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400447 tsk = tipc_sk(sk);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400448 tsk->max_pkt = MAX_PKT_DEFAULT;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400449 INIT_LIST_HEAD(&tsk->publications);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500450 INIT_LIST_HEAD(&tsk->cong_links);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400451 msg = &tsk->phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100452
Allan Stephens0c3141e2008-04-15 00:22:02 -0700453 /* Finish initializing socket data structures */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700454 sock->ops = ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100455 sock_init_data(sock, sk);
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +0100456 tipc_set_sk_state(sk, TIPC_OPEN);
Ying Xue07f6c4b2015-01-07 13:41:58 +0800457 if (tipc_sk_insert(tsk)) {
Masanari Iidac19ca6c2016-02-08 20:53:12 +0900458 pr_warn("Socket create failed; port number exhausted\n");
Ying Xue07f6c4b2015-01-07 13:41:58 +0800459 return -EINVAL;
460 }
Herbert Xu40f9f432017-02-11 19:26:46 +0800461
462 /* Ensure tsk is visible before we read own_addr. */
463 smp_mb();
464
Jon Maloy23fd3ea2018-03-22 20:42:49 +0100465 tipc_msg_init(tipc_own_addr(net), msg, TIPC_LOW_IMPORTANCE,
466 TIPC_NAMED_MSG, NAMED_H_SIZE, 0);
Herbert Xu40f9f432017-02-11 19:26:46 +0800467
Ying Xue07f6c4b2015-01-07 13:41:58 +0800468 msg_set_origport(msg, tsk->portid);
Kees Cook31b102b2017-10-30 14:06:45 -0700469 timer_setup(&sk->sk_timer, tipc_sk_timeout, 0);
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100470 sk->sk_shutdown = 0;
Jon Maloy64ac5f52017-10-13 11:04:20 +0200471 sk->sk_backlog_rcv = tipc_sk_backlog_rcv;
Ying Xuecc79dd12013-06-17 10:54:37 -0400472 sk->sk_rcvbuf = sysctl_tipc_rmem[1];
Ying Xuef288bef2012-08-21 11:16:57 +0800473 sk->sk_data_ready = tipc_data_ready;
474 sk->sk_write_space = tipc_write_space;
Ying Xuef4195d12015-11-22 15:46:05 +0800475 sk->sk_destruct = tipc_sock_destruct;
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -0400476 tsk->conn_timeout = CONN_TIMEOUT_DEFAULT;
Jon Maloy1b22bca2018-02-26 20:14:04 +0100477 tsk->group_is_open = true;
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -0400478 atomic_set(&tsk->dupl_rcvcnt, 0);
Allan Stephens7ef43eb2008-05-12 15:42:28 -0700479
Jon Paul Maloy10724cc2016-05-02 11:58:47 -0400480 /* Start out with safe limits until we receive an advertised window */
481 tsk->snd_win = tsk_adv_blocks(RCVBUF_MIN);
482 tsk->rcv_win = tsk->snd_win;
483
Parthasarathy Bhuvaraganc752023a2016-11-01 14:02:42 +0100484 if (tipc_sk_type_connectionless(sk)) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400485 tsk_set_unreturnable(tsk, true);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700486 if (sock->type == SOCK_DGRAM)
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400487 tsk_set_unreliable(tsk, true);
Hoang Lec55c8ed2019-03-19 18:49:50 +0700488 __skb_queue_head_init(&tsk->mc_method.deferredq);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700489 }
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +0100490
Tuong Lien01e661e2018-12-19 09:17:58 +0700491 trace_tipc_sk_create(sk, NULL, TIPC_DUMP_NONE, " ");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100492 return 0;
493}
494
Ying Xue07f6c4b2015-01-07 13:41:58 +0800495static void tipc_sk_callback(struct rcu_head *head)
496{
497 struct tipc_sock *tsk = container_of(head, struct tipc_sock, rcu);
498
499 sock_put(&tsk->sk);
500}
501
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100502/* Caller should hold socket lock for the socket. */
503static void __tipc_shutdown(struct socket *sock, int error)
504{
505 struct sock *sk = sock->sk;
506 struct tipc_sock *tsk = tipc_sk(sk);
507 struct net *net = sock_net(sk);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500508 long timeout = CONN_TIMEOUT_DEFAULT;
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100509 u32 dnode = tsk_peer_node(tsk);
510 struct sk_buff *skb;
511
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500512 /* Avoid that hi-prio shutdown msgs bypass msgs in link wakeup queue */
513 tipc_wait_for_cond(sock, &timeout, (!tsk->cong_link_cnt &&
514 !tsk_conn_cong(tsk)));
515
Tung Nguyen67879272018-09-28 20:23:22 +0200516 /* Remove any pending SYN message */
517 __skb_queue_purge(&sk->sk_write_queue);
518
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100519 /* Reject all unreceived messages, except on an active connection
520 * (which disconnects locally & sends a 'FIN+' to peer).
521 */
522 while ((skb = __skb_dequeue(&sk->sk_receive_queue)) != NULL) {
523 if (TIPC_SKB_CB(skb)->bytes_read) {
524 kfree_skb(skb);
Jon Paul Maloy693c5642016-12-22 07:22:29 -0500525 continue;
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100526 }
Jon Paul Maloy693c5642016-12-22 07:22:29 -0500527 if (!tipc_sk_type_connectionless(sk) &&
528 sk->sk_state != TIPC_DISCONNECTING) {
529 tipc_set_sk_state(sk, TIPC_DISCONNECTING);
530 tipc_node_remove_conn(net, dnode, tsk->portid);
531 }
532 tipc_sk_respond(sk, skb, error);
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100533 }
Jon Paul Maloy693c5642016-12-22 07:22:29 -0500534
535 if (tipc_sk_type_connectionless(sk))
536 return;
537
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100538 if (sk->sk_state != TIPC_DISCONNECTING) {
539 skb = tipc_msg_create(TIPC_CRITICAL_IMPORTANCE,
540 TIPC_CONN_MSG, SHORT_H_SIZE, 0, dnode,
541 tsk_own_node(tsk), tsk_peer_port(tsk),
542 tsk->portid, error);
543 if (skb)
544 tipc_node_xmit_skb(net, skb, dnode, tsk->portid);
Jon Paul Maloy693c5642016-12-22 07:22:29 -0500545 tipc_node_remove_conn(net, dnode, tsk->portid);
546 tipc_set_sk_state(sk, TIPC_DISCONNECTING);
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100547 }
548}
549
Ying Xuec5fa7b32013-06-17 10:54:39 -0400550/**
Ying Xue247f0f32014-02-18 16:06:46 +0800551 * tipc_release - destroy a TIPC socket
Per Lidenb97bf3f2006-01-02 19:04:38 +0100552 * @sock: socket to destroy
553 *
554 * This routine cleans up any messages that are still queued on the socket.
555 * For DGRAM and RDM socket types, all queued messages are rejected.
556 * For SEQPACKET and STREAM socket types, the first message is rejected
557 * and any others are discarded. (If the first message on a STREAM socket
558 * is partially-read, it is discarded and the next one is rejected instead.)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900559 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100560 * NOTE: Rejected messages are not necessarily returned to the sender! They
561 * are returned or discarded according to the "destination droppable" setting
562 * specified for the message by the sender.
563 *
564 * Returns 0 on success, errno otherwise
565 */
Ying Xue247f0f32014-02-18 16:06:46 +0800566static int tipc_release(struct socket *sock)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100567{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100568 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400569 struct tipc_sock *tsk;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100570
Allan Stephens0c3141e2008-04-15 00:22:02 -0700571 /*
572 * Exit if socket isn't fully initialized (occurs when a failed accept()
573 * releases a pre-allocated child socket that was never used)
574 */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700575 if (sk == NULL)
576 return 0;
577
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400578 tsk = tipc_sk(sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700579 lock_sock(sk);
580
Tuong Lien01e661e2018-12-19 09:17:58 +0700581 trace_tipc_sk_release(sk, NULL, TIPC_DUMP_ALL, " ");
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100582 __tipc_shutdown(sock, TIPC_ERR_NO_PORT);
583 sk->sk_shutdown = SHUTDOWN_MASK;
Jon Maloy75da2162017-10-13 11:04:23 +0200584 tipc_sk_leave(tsk);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400585 tipc_sk_withdraw(tsk, 0, NULL);
Hoang Lec55c8ed2019-03-19 18:49:50 +0700586 __skb_queue_purge(&tsk->mc_method.deferredq);
Ying Xue1ea23a22015-05-28 13:19:22 +0800587 sk_stop_timer(sk, &sk->sk_timer);
Ying Xue07f6c4b2015-01-07 13:41:58 +0800588 tipc_sk_remove(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100589
Cong Wang0a3b8b22018-09-03 19:12:41 -0700590 sock_orphan(sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700591 /* Reject any messages that accumulated in backlog queue */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700592 release_sock(sk);
Jon Maloya80ae532017-10-13 11:04:22 +0200593 tipc_dest_list_purge(&tsk->cong_links);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500594 tsk->cong_link_cnt = 0;
Ying Xue07f6c4b2015-01-07 13:41:58 +0800595 call_rcu(&tsk->rcu, tipc_sk_callback);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700596 sock->sk = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100597
Geert Uytterhoeven065d7e32014-04-06 15:56:14 +0200598 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100599}
600
601/**
Ying Xue247f0f32014-02-18 16:06:46 +0800602 * tipc_bind - associate or disassocate TIPC name(s) with a socket
Per Lidenb97bf3f2006-01-02 19:04:38 +0100603 * @sock: socket structure
604 * @uaddr: socket address describing name(s) and desired operation
605 * @uaddr_len: size of socket address data structure
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900606 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100607 * Name and name sequence binding is indicated using a positive scope value;
608 * a negative scope value unbinds the specified name. Specifying no name
609 * (i.e. a socket address length of 0) unbinds all names from the socket.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900610 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100611 * Returns 0 on success, errno otherwise
Allan Stephens0c3141e2008-04-15 00:22:02 -0700612 *
613 * NOTE: This routine doesn't need to take the socket lock since it doesn't
614 * access any non-constant socket information.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100615 */
Ying Xue247f0f32014-02-18 16:06:46 +0800616static int tipc_bind(struct socket *sock, struct sockaddr *uaddr,
617 int uaddr_len)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100618{
Ying Xue84602762013-12-27 10:18:28 +0800619 struct sock *sk = sock->sk;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100620 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400621 struct tipc_sock *tsk = tipc_sk(sk);
Ying Xue84602762013-12-27 10:18:28 +0800622 int res = -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100623
Ying Xue84602762013-12-27 10:18:28 +0800624 lock_sock(sk);
625 if (unlikely(!uaddr_len)) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400626 res = tipc_sk_withdraw(tsk, 0, NULL);
Ying Xue84602762013-12-27 10:18:28 +0800627 goto exit;
628 }
Jon Maloy75da2162017-10-13 11:04:23 +0200629 if (tsk->group) {
630 res = -EACCES;
631 goto exit;
632 }
Ying Xue84602762013-12-27 10:18:28 +0800633 if (uaddr_len < sizeof(struct sockaddr_tipc)) {
634 res = -EINVAL;
635 goto exit;
636 }
637 if (addr->family != AF_TIPC) {
638 res = -EAFNOSUPPORT;
639 goto exit;
640 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100641
Per Lidenb97bf3f2006-01-02 19:04:38 +0100642 if (addr->addrtype == TIPC_ADDR_NAME)
643 addr->addr.nameseq.upper = addr->addr.nameseq.lower;
Ying Xue84602762013-12-27 10:18:28 +0800644 else if (addr->addrtype != TIPC_ADDR_NAMESEQ) {
645 res = -EAFNOSUPPORT;
646 goto exit;
647 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900648
Ying Xue13a2e892013-06-17 10:54:40 -0400649 if ((addr->addr.nameseq.type < TIPC_RESERVED_TYPES) &&
Ying Xue7d0ab172013-06-17 10:54:41 -0400650 (addr->addr.nameseq.type != TIPC_TOP_SRV) &&
Ying Xue84602762013-12-27 10:18:28 +0800651 (addr->addr.nameseq.type != TIPC_CFG_SRV)) {
652 res = -EACCES;
653 goto exit;
654 }
Allan Stephensc422f1b2011-11-02 15:49:40 -0400655
Jon Maloy928df182018-03-15 16:48:51 +0100656 res = (addr->scope >= 0) ?
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400657 tipc_sk_publish(tsk, addr->scope, &addr->addr.nameseq) :
658 tipc_sk_withdraw(tsk, -addr->scope, &addr->addr.nameseq);
Ying Xue84602762013-12-27 10:18:28 +0800659exit:
660 release_sock(sk);
661 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100662}
663
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900664/**
Ying Xue247f0f32014-02-18 16:06:46 +0800665 * tipc_getname - get port ID of socket or peer socket
Per Lidenb97bf3f2006-01-02 19:04:38 +0100666 * @sock: socket structure
667 * @uaddr: area for returned socket address
668 * @uaddr_len: area for returned length of socket address
Allan Stephens2da59912008-07-14 22:43:32 -0700669 * @peer: 0 = own ID, 1 = current peer ID, 2 = current/former peer ID
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900670 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100671 * Returns 0 on success, errno otherwise
Allan Stephens0c3141e2008-04-15 00:22:02 -0700672 *
Allan Stephens2da59912008-07-14 22:43:32 -0700673 * NOTE: This routine doesn't need to take the socket lock since it only
674 * accesses socket information that is unchanging (or which changes in
Allan Stephens0e659672010-12-31 18:59:32 +0000675 * a completely predictable manner).
Per Lidenb97bf3f2006-01-02 19:04:38 +0100676 */
Ying Xue247f0f32014-02-18 16:06:46 +0800677static int tipc_getname(struct socket *sock, struct sockaddr *uaddr,
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +0100678 int peer)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100679{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100680 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
Parthasarathy Bhuvaragan9fd4b072016-11-01 14:02:46 +0100681 struct sock *sk = sock->sk;
682 struct tipc_sock *tsk = tipc_sk(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100683
Kulikov Vasiliy88f8a5e2010-10-31 07:10:32 +0000684 memset(addr, 0, sizeof(*addr));
Allan Stephens0c3141e2008-04-15 00:22:02 -0700685 if (peer) {
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +0100686 if ((!tipc_sk_connected(sk)) &&
Parthasarathy Bhuvaragan9fd4b072016-11-01 14:02:46 +0100687 ((peer != 2) || (sk->sk_state != TIPC_DISCONNECTING)))
Allan Stephens2da59912008-07-14 22:43:32 -0700688 return -ENOTCONN;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400689 addr->addr.id.ref = tsk_peer_port(tsk);
690 addr->addr.id.node = tsk_peer_node(tsk);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700691 } else {
Ying Xue07f6c4b2015-01-07 13:41:58 +0800692 addr->addr.id.ref = tsk->portid;
Jon Maloy23fd3ea2018-03-22 20:42:49 +0100693 addr->addr.id.node = tipc_own_addr(sock_net(sk));
Allan Stephens0c3141e2008-04-15 00:22:02 -0700694 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100695
Per Lidenb97bf3f2006-01-02 19:04:38 +0100696 addr->addrtype = TIPC_ADDR_ID;
697 addr->family = AF_TIPC;
698 addr->scope = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100699 addr->addr.name.domain = 0;
700
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +0100701 return sizeof(*addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100702}
703
704/**
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700705 * tipc_poll - read and possibly block on pollmask
Per Lidenb97bf3f2006-01-02 19:04:38 +0100706 * @file: file structure associated with the socket
707 * @sock: socket for which to calculate the poll bits
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700708 * @wait: ???
Per Lidenb97bf3f2006-01-02 19:04:38 +0100709 *
Allan Stephens9b674e82008-03-26 16:48:21 -0700710 * Returns pollmask value
711 *
712 * COMMENTARY:
713 * It appears that the usual socket locking mechanisms are not useful here
714 * since the pollmask info is potentially out-of-date the moment this routine
715 * exits. TCP and other protocols seem to rely on higher level poll routines
716 * to handle any preventable race conditions, so TIPC will do the same ...
717 *
Allan Stephensf662c072010-08-17 11:00:06 +0000718 * IMPORTANT: The fact that a read or write operation is indicated does NOT
719 * imply that the operation will succeed, merely that it should be performed
720 * and will not block.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100721 */
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700722static __poll_t tipc_poll(struct file *file, struct socket *sock,
723 poll_table *wait)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100724{
Allan Stephens9b674e82008-03-26 16:48:21 -0700725 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400726 struct tipc_sock *tsk = tipc_sk(sk);
Al Viroade994f2017-07-03 00:01:49 -0400727 __poll_t revents = 0;
Allan Stephens9b674e82008-03-26 16:48:21 -0700728
Karsten Graul89ab0662018-10-23 13:40:39 +0200729 sock_poll_wait(file, sock, wait);
Tuong Lien01e661e2018-12-19 09:17:58 +0700730 trace_tipc_sk_poll(sk, NULL, TIPC_DUMP_ALL, " ");
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700731
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100732 if (sk->sk_shutdown & RCV_SHUTDOWN)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800733 revents |= EPOLLRDHUP | EPOLLIN | EPOLLRDNORM;
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100734 if (sk->sk_shutdown == SHUTDOWN_MASK)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800735 revents |= EPOLLHUP;
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100736
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +0100737 switch (sk->sk_state) {
738 case TIPC_ESTABLISHED:
Parthasarathy Bhuvaragan517d7c72017-12-28 12:03:06 +0100739 case TIPC_CONNECTING:
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500740 if (!tsk->cong_link_cnt && !tsk_conn_cong(tsk))
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800741 revents |= EPOLLOUT;
Gustavo A. R. Silvaf79e3362019-01-23 01:09:31 -0600742 /* fall through */
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +0100743 case TIPC_LISTEN:
Jon Maloycb4dc412017-10-19 16:42:04 +0200744 if (!skb_queue_empty(&sk->sk_receive_queue))
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800745 revents |= EPOLLIN | EPOLLRDNORM;
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +0100746 break;
747 case TIPC_OPEN:
Jon Maloy60c25302018-01-17 16:42:46 +0100748 if (tsk->group_is_open && !tsk->cong_link_cnt)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800749 revents |= EPOLLOUT;
Jon Maloyae236fb2017-10-13 11:04:25 +0200750 if (!tipc_sk_type_connectionless(sk))
751 break;
Jon Maloycb4dc412017-10-19 16:42:04 +0200752 if (skb_queue_empty(&sk->sk_receive_queue))
Jon Maloyae236fb2017-10-13 11:04:25 +0200753 break;
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800754 revents |= EPOLLIN | EPOLLRDNORM;
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +0100755 break;
756 case TIPC_DISCONNECTING:
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800757 revents = EPOLLIN | EPOLLRDNORM | EPOLLHUP;
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +0100758 break;
Allan Stephensf662c072010-08-17 11:00:06 +0000759 }
Jon Maloyae236fb2017-10-13 11:04:25 +0200760 return revents;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100761}
762
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400763/**
764 * tipc_sendmcast - send multicast message
765 * @sock: socket structure
766 * @seq: destination address
Al Viro562640f2014-11-15 01:13:43 -0500767 * @msg: message to send
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500768 * @dlen: length of data to send
769 * @timeout: timeout to wait for wakeup
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400770 *
771 * Called from function tipc_sendmsg(), which has done all sanity checks
772 * Returns the number of bytes sent on success, or errno
773 */
774static int tipc_sendmcast(struct socket *sock, struct tipc_name_seq *seq,
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500775 struct msghdr *msg, size_t dlen, long timeout)
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400776{
777 struct sock *sk = sock->sk;
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500778 struct tipc_sock *tsk = tipc_sk(sk);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500779 struct tipc_msg *hdr = &tsk->phdr;
Ying Xuef2f98002015-01-09 15:27:05 +0800780 struct net *net = sock_net(sk);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500781 int mtu = tipc_bcast_get_mtu(net);
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -0500782 struct tipc_mc_method *method = &tsk->mc_method;
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500783 struct sk_buff_head pkts;
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500784 struct tipc_nlist dsts;
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400785 int rc;
786
Jon Maloy75da2162017-10-13 11:04:23 +0200787 if (tsk->group)
788 return -EACCES;
789
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500790 /* Block or return if any destination link is congested */
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500791 rc = tipc_wait_for_cond(sock, &timeout, !tsk->cong_link_cnt);
792 if (unlikely(rc))
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400793 return rc;
794
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500795 /* Lookup destination nodes */
796 tipc_nlist_init(&dsts, tipc_own_addr(net));
797 tipc_nametbl_lookup_dst_nodes(net, seq->type, seq->lower,
Jon Maloye9a03442018-01-12 20:56:50 +0100798 seq->upper, &dsts);
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500799 if (!dsts.local && !dsts.remote)
800 return -EHOSTUNREACH;
801
802 /* Build message header */
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500803 msg_set_type(hdr, TIPC_MCAST_MSG);
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500804 msg_set_hdr_sz(hdr, MCAST_H_SIZE);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500805 msg_set_lookup_scope(hdr, TIPC_CLUSTER_SCOPE);
806 msg_set_destport(hdr, 0);
807 msg_set_destnode(hdr, 0);
808 msg_set_nametype(hdr, seq->type);
809 msg_set_namelower(hdr, seq->lower);
810 msg_set_nameupper(hdr, seq->upper);
Jon Paul Maloy22d85c72015-07-16 16:54:23 -0400811
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500812 /* Build message as chain of buffers */
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500813 skb_queue_head_init(&pkts);
814 rc = tipc_msg_build(hdr, msg, 0, dlen, mtu, &pkts);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500815
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500816 /* Send message if build was successful */
Tuong Lien01e661e2018-12-19 09:17:58 +0700817 if (unlikely(rc == dlen)) {
818 trace_tipc_sk_sendmcast(sk, skb_peek(&pkts),
819 TIPC_DUMP_SK_SNDQ, " ");
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -0500820 rc = tipc_mcast_xmit(net, &pkts, method, &dsts,
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500821 &tsk->cong_link_cnt);
Tuong Lien01e661e2018-12-19 09:17:58 +0700822 }
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500823
824 tipc_nlist_purge(&dsts);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500825
826 return rc ? rc : dlen;
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400827}
828
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500829/**
Jon Maloy27bd9ec2017-10-13 11:04:27 +0200830 * tipc_send_group_msg - send a message to a member in the group
831 * @net: network namespace
832 * @m: message to send
833 * @mb: group member
834 * @dnode: destination node
835 * @dport: destination port
836 * @dlen: total length of message data
837 */
838static int tipc_send_group_msg(struct net *net, struct tipc_sock *tsk,
839 struct msghdr *m, struct tipc_member *mb,
840 u32 dnode, u32 dport, int dlen)
841{
Jon Maloyb87a5ea2017-10-13 11:04:30 +0200842 u16 bc_snd_nxt = tipc_group_bc_snd_nxt(tsk->group);
Jon Maloy2f487712017-10-13 11:04:31 +0200843 struct tipc_mc_method *method = &tsk->mc_method;
Jon Maloy27bd9ec2017-10-13 11:04:27 +0200844 int blks = tsk_blocks(GROUP_H_SIZE + dlen);
845 struct tipc_msg *hdr = &tsk->phdr;
846 struct sk_buff_head pkts;
847 int mtu, rc;
848
849 /* Complete message header */
850 msg_set_type(hdr, TIPC_GRP_UCAST_MSG);
851 msg_set_hdr_sz(hdr, GROUP_H_SIZE);
852 msg_set_destport(hdr, dport);
853 msg_set_destnode(hdr, dnode);
Jon Maloyb87a5ea2017-10-13 11:04:30 +0200854 msg_set_grp_bc_seqno(hdr, bc_snd_nxt);
Jon Maloy27bd9ec2017-10-13 11:04:27 +0200855
856 /* Build message as chain of buffers */
857 skb_queue_head_init(&pkts);
858 mtu = tipc_node_get_mtu(net, dnode, tsk->portid);
859 rc = tipc_msg_build(hdr, m, 0, dlen, mtu, &pkts);
860 if (unlikely(rc != dlen))
861 return rc;
862
863 /* Send message */
864 rc = tipc_node_xmit(net, &pkts, dnode, tsk->portid);
865 if (unlikely(rc == -ELINKCONG)) {
866 tipc_dest_push(&tsk->cong_links, dnode, 0);
867 tsk->cong_link_cnt++;
868 }
869
Jon Maloy2f487712017-10-13 11:04:31 +0200870 /* Update send window */
Jon Maloy27bd9ec2017-10-13 11:04:27 +0200871 tipc_group_update_member(mb, blks);
872
Jon Maloy2f487712017-10-13 11:04:31 +0200873 /* A broadcast sent within next EXPIRE period must follow same path */
874 method->rcast = true;
875 method->mandatory = true;
Jon Maloy27bd9ec2017-10-13 11:04:27 +0200876 return dlen;
877}
878
879/**
880 * tipc_send_group_unicast - send message to a member in the group
881 * @sock: socket structure
882 * @m: message to send
883 * @dlen: total length of message data
884 * @timeout: timeout to wait for wakeup
885 *
886 * Called from function tipc_sendmsg(), which has done all sanity checks
887 * Returns the number of bytes sent on success, or errno
888 */
889static int tipc_send_group_unicast(struct socket *sock, struct msghdr *m,
890 int dlen, long timeout)
891{
892 struct sock *sk = sock->sk;
893 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
894 int blks = tsk_blocks(GROUP_H_SIZE + dlen);
895 struct tipc_sock *tsk = tipc_sk(sk);
Jon Maloy27bd9ec2017-10-13 11:04:27 +0200896 struct net *net = sock_net(sk);
897 struct tipc_member *mb = NULL;
898 u32 node, port;
899 int rc;
900
901 node = dest->addr.id.node;
902 port = dest->addr.id.ref;
903 if (!port && !node)
904 return -EHOSTUNREACH;
905
906 /* Block or return if destination link or member is congested */
907 rc = tipc_wait_for_cond(sock, &timeout,
908 !tipc_dest_find(&tsk->cong_links, node, 0) &&
Cong Wang143ece62018-12-11 21:43:51 -0800909 tsk->group &&
910 !tipc_group_cong(tsk->group, node, port, blks,
911 &mb));
Jon Maloy27bd9ec2017-10-13 11:04:27 +0200912 if (unlikely(rc))
913 return rc;
914
915 if (unlikely(!mb))
916 return -EHOSTUNREACH;
917
918 rc = tipc_send_group_msg(net, tsk, m, mb, node, port, dlen);
919
920 return rc ? rc : dlen;
921}
922
923/**
Jon Maloyee106d72017-10-13 11:04:28 +0200924 * tipc_send_group_anycast - send message to any member with given identity
925 * @sock: socket structure
926 * @m: message to send
927 * @dlen: total length of message data
928 * @timeout: timeout to wait for wakeup
929 *
930 * Called from function tipc_sendmsg(), which has done all sanity checks
931 * Returns the number of bytes sent on success, or errno
932 */
933static int tipc_send_group_anycast(struct socket *sock, struct msghdr *m,
934 int dlen, long timeout)
935{
936 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
937 struct sock *sk = sock->sk;
938 struct tipc_sock *tsk = tipc_sk(sk);
939 struct list_head *cong_links = &tsk->cong_links;
940 int blks = tsk_blocks(GROUP_H_SIZE + dlen);
Jon Maloy232d07b2018-01-08 21:03:30 +0100941 struct tipc_msg *hdr = &tsk->phdr;
Jon Maloyee106d72017-10-13 11:04:28 +0200942 struct tipc_member *first = NULL;
943 struct tipc_member *mbr = NULL;
944 struct net *net = sock_net(sk);
945 u32 node, port, exclude;
Jon Maloyee106d72017-10-13 11:04:28 +0200946 struct list_head dsts;
Jon Maloy232d07b2018-01-08 21:03:30 +0100947 u32 type, inst, scope;
Jon Maloyee106d72017-10-13 11:04:28 +0200948 int lookups = 0;
949 int dstcnt, rc;
950 bool cong;
951
952 INIT_LIST_HEAD(&dsts);
953
Jon Maloy232d07b2018-01-08 21:03:30 +0100954 type = msg_nametype(hdr);
Jon Maloyee106d72017-10-13 11:04:28 +0200955 inst = dest->addr.name.name.instance;
Jon Maloy232d07b2018-01-08 21:03:30 +0100956 scope = msg_lookup_scope(hdr);
Jon Maloyee106d72017-10-13 11:04:28 +0200957
958 while (++lookups < 4) {
Cong Wang143ece62018-12-11 21:43:51 -0800959 exclude = tipc_group_exclude(tsk->group);
960
Jon Maloyee106d72017-10-13 11:04:28 +0200961 first = NULL;
962
963 /* Look for a non-congested destination member, if any */
964 while (1) {
Jon Maloy232d07b2018-01-08 21:03:30 +0100965 if (!tipc_nametbl_lookup(net, type, inst, scope, &dsts,
Jon Maloyee106d72017-10-13 11:04:28 +0200966 &dstcnt, exclude, false))
967 return -EHOSTUNREACH;
968 tipc_dest_pop(&dsts, &node, &port);
Cong Wang143ece62018-12-11 21:43:51 -0800969 cong = tipc_group_cong(tsk->group, node, port, blks,
970 &mbr);
Jon Maloyee106d72017-10-13 11:04:28 +0200971 if (!cong)
972 break;
973 if (mbr == first)
974 break;
975 if (!first)
976 first = mbr;
977 }
978
979 /* Start over if destination was not in member list */
980 if (unlikely(!mbr))
981 continue;
982
983 if (likely(!cong && !tipc_dest_find(cong_links, node, 0)))
984 break;
985
986 /* Block or return if destination link or member is congested */
987 rc = tipc_wait_for_cond(sock, &timeout,
988 !tipc_dest_find(cong_links, node, 0) &&
Cong Wang143ece62018-12-11 21:43:51 -0800989 tsk->group &&
990 !tipc_group_cong(tsk->group, node, port,
Jon Maloyee106d72017-10-13 11:04:28 +0200991 blks, &mbr));
992 if (unlikely(rc))
993 return rc;
994
995 /* Send, unless destination disappeared while waiting */
996 if (likely(mbr))
997 break;
998 }
999
1000 if (unlikely(lookups >= 4))
1001 return -EHOSTUNREACH;
1002
1003 rc = tipc_send_group_msg(net, tsk, m, mbr, node, port, dlen);
1004
1005 return rc ? rc : dlen;
1006}
1007
1008/**
Jon Maloy75da2162017-10-13 11:04:23 +02001009 * tipc_send_group_bcast - send message to all members in communication group
1010 * @sk: socket structure
1011 * @m: message to send
1012 * @dlen: total length of message data
1013 * @timeout: timeout to wait for wakeup
1014 *
1015 * Called from function tipc_sendmsg(), which has done all sanity checks
1016 * Returns the number of bytes sent on success, or errno
1017 */
1018static int tipc_send_group_bcast(struct socket *sock, struct msghdr *m,
1019 int dlen, long timeout)
1020{
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001021 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
Jon Maloy75da2162017-10-13 11:04:23 +02001022 struct sock *sk = sock->sk;
1023 struct net *net = sock_net(sk);
1024 struct tipc_sock *tsk = tipc_sk(sk);
Cong Wang3c6306d2018-12-16 23:25:12 -08001025 struct tipc_nlist *dsts;
Jon Maloy75da2162017-10-13 11:04:23 +02001026 struct tipc_mc_method *method = &tsk->mc_method;
Jon Maloy2f487712017-10-13 11:04:31 +02001027 bool ack = method->mandatory && method->rcast;
Jon Maloyb7d42632017-10-13 11:04:26 +02001028 int blks = tsk_blocks(MCAST_H_SIZE + dlen);
Jon Maloy75da2162017-10-13 11:04:23 +02001029 struct tipc_msg *hdr = &tsk->phdr;
1030 int mtu = tipc_bcast_get_mtu(net);
1031 struct sk_buff_head pkts;
1032 int rc = -EHOSTUNREACH;
1033
Jon Maloyb7d42632017-10-13 11:04:26 +02001034 /* Block or return if any destination link or member is congested */
Cong Wang143ece62018-12-11 21:43:51 -08001035 rc = tipc_wait_for_cond(sock, &timeout,
1036 !tsk->cong_link_cnt && tsk->group &&
1037 !tipc_group_bc_cong(tsk->group, blks));
Jon Maloy75da2162017-10-13 11:04:23 +02001038 if (unlikely(rc))
1039 return rc;
1040
Cong Wang3c6306d2018-12-16 23:25:12 -08001041 dsts = tipc_group_dests(tsk->group);
1042 if (!dsts->local && !dsts->remote)
1043 return -EHOSTUNREACH;
1044
Jon Maloy75da2162017-10-13 11:04:23 +02001045 /* Complete message header */
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001046 if (dest) {
1047 msg_set_type(hdr, TIPC_GRP_MCAST_MSG);
1048 msg_set_nameinst(hdr, dest->addr.name.name.instance);
1049 } else {
1050 msg_set_type(hdr, TIPC_GRP_BCAST_MSG);
1051 msg_set_nameinst(hdr, 0);
1052 }
Jon Maloyb7d42632017-10-13 11:04:26 +02001053 msg_set_hdr_sz(hdr, GROUP_H_SIZE);
Jon Maloy75da2162017-10-13 11:04:23 +02001054 msg_set_destport(hdr, 0);
1055 msg_set_destnode(hdr, 0);
Cong Wang143ece62018-12-11 21:43:51 -08001056 msg_set_grp_bc_seqno(hdr, tipc_group_bc_snd_nxt(tsk->group));
Jon Maloy75da2162017-10-13 11:04:23 +02001057
Jon Maloy2f487712017-10-13 11:04:31 +02001058 /* Avoid getting stuck with repeated forced replicasts */
1059 msg_set_grp_bc_ack_req(hdr, ack);
1060
Jon Maloy75da2162017-10-13 11:04:23 +02001061 /* Build message as chain of buffers */
1062 skb_queue_head_init(&pkts);
1063 rc = tipc_msg_build(hdr, m, 0, dlen, mtu, &pkts);
1064 if (unlikely(rc != dlen))
1065 return rc;
1066
1067 /* Send message */
Jon Maloy2f487712017-10-13 11:04:31 +02001068 rc = tipc_mcast_xmit(net, &pkts, method, dsts, &tsk->cong_link_cnt);
Jon Maloy75da2162017-10-13 11:04:23 +02001069 if (unlikely(rc))
1070 return rc;
1071
Jon Maloyb7d42632017-10-13 11:04:26 +02001072 /* Update broadcast sequence number and send windows */
Jon Maloy2f487712017-10-13 11:04:31 +02001073 tipc_group_update_bc_members(tsk->group, blks, ack);
1074
1075 /* Broadcast link is now free to choose method for next broadcast */
1076 method->mandatory = false;
1077 method->expires = jiffies;
1078
Jon Maloy75da2162017-10-13 11:04:23 +02001079 return dlen;
1080}
1081
1082/**
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001083 * tipc_send_group_mcast - send message to all members with given identity
1084 * @sock: socket structure
1085 * @m: message to send
1086 * @dlen: total length of message data
1087 * @timeout: timeout to wait for wakeup
1088 *
1089 * Called from function tipc_sendmsg(), which has done all sanity checks
1090 * Returns the number of bytes sent on success, or errno
1091 */
1092static int tipc_send_group_mcast(struct socket *sock, struct msghdr *m,
1093 int dlen, long timeout)
1094{
1095 struct sock *sk = sock->sk;
1096 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001097 struct tipc_sock *tsk = tipc_sk(sk);
1098 struct tipc_group *grp = tsk->group;
Jon Maloy232d07b2018-01-08 21:03:30 +01001099 struct tipc_msg *hdr = &tsk->phdr;
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001100 struct net *net = sock_net(sk);
Jon Maloy232d07b2018-01-08 21:03:30 +01001101 u32 type, inst, scope, exclude;
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001102 struct list_head dsts;
Jon Maloy232d07b2018-01-08 21:03:30 +01001103 u32 dstcnt;
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001104
1105 INIT_LIST_HEAD(&dsts);
1106
Jon Maloy232d07b2018-01-08 21:03:30 +01001107 type = msg_nametype(hdr);
1108 inst = dest->addr.name.name.instance;
1109 scope = msg_lookup_scope(hdr);
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001110 exclude = tipc_group_exclude(grp);
Jon Maloy232d07b2018-01-08 21:03:30 +01001111
1112 if (!tipc_nametbl_lookup(net, type, inst, scope, &dsts,
1113 &dstcnt, exclude, true))
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001114 return -EHOSTUNREACH;
1115
1116 if (dstcnt == 1) {
1117 tipc_dest_pop(&dsts, &dest->addr.id.node, &dest->addr.id.ref);
1118 return tipc_send_group_unicast(sock, m, dlen, timeout);
1119 }
1120
1121 tipc_dest_list_purge(&dsts);
1122 return tipc_send_group_bcast(sock, m, dlen, timeout);
1123}
1124
1125/**
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001126 * tipc_sk_mcast_rcv - Deliver multicast messages to all destination sockets
1127 * @arrvq: queue with arriving messages, to be cloned after destination lookup
1128 * @inputq: queue with cloned messages, delivered to socket after dest lookup
1129 *
1130 * Multi-threaded: parallel calls with reference to same queues may occur
Jon Paul Maloy078bec82014-07-16 20:41:00 -04001131 */
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001132void tipc_sk_mcast_rcv(struct net *net, struct sk_buff_head *arrvq,
1133 struct sk_buff_head *inputq)
Jon Paul Maloy078bec82014-07-16 20:41:00 -04001134{
Jon Maloy75da2162017-10-13 11:04:23 +02001135 u32 self = tipc_own_addr(net);
Jon Maloy232d07b2018-01-08 21:03:30 +01001136 u32 type, lower, upper, scope;
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001137 struct sk_buff *skb, *_skb;
Colin Ian Kingb053fcc2018-07-31 17:01:37 +01001138 u32 portid, onode;
Jon Maloy232d07b2018-01-08 21:03:30 +01001139 struct sk_buff_head tmpq;
Jon Maloy75da2162017-10-13 11:04:23 +02001140 struct list_head dports;
Jon Maloy232d07b2018-01-08 21:03:30 +01001141 struct tipc_msg *hdr;
1142 int user, mtyp, hlen;
1143 bool exact;
Jon Paul Maloy3c724ac2015-02-05 08:36:43 -05001144
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001145 __skb_queue_head_init(&tmpq);
Jon Paul Maloy4d8642d2017-01-03 10:55:10 -05001146 INIT_LIST_HEAD(&dports);
Jon Paul Maloy078bec82014-07-16 20:41:00 -04001147
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001148 skb = tipc_skb_peek(arrvq, &inputq->lock);
1149 for (; skb; skb = tipc_skb_peek(arrvq, &inputq->lock)) {
Jon Maloy232d07b2018-01-08 21:03:30 +01001150 hdr = buf_msg(skb);
1151 user = msg_user(hdr);
1152 mtyp = msg_type(hdr);
1153 hlen = skb_headroom(skb) + msg_hdr_sz(hdr);
Jon Maloy232d07b2018-01-08 21:03:30 +01001154 onode = msg_orignode(hdr);
1155 type = msg_nametype(hdr);
1156
Jon Maloy2f487712017-10-13 11:04:31 +02001157 if (mtyp == TIPC_GRP_UCAST_MSG || user == GROUP_PROTOCOL) {
1158 spin_lock_bh(&inputq->lock);
1159 if (skb_peek(arrvq) == skb) {
1160 __skb_dequeue(arrvq);
1161 __skb_queue_tail(inputq, skb);
1162 }
Jon Maloyc545a942017-12-11 19:11:55 +01001163 kfree_skb(skb);
Jon Maloy2f487712017-10-13 11:04:31 +02001164 spin_unlock_bh(&inputq->lock);
1165 continue;
1166 }
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001167
Jon Maloy232d07b2018-01-08 21:03:30 +01001168 /* Group messages require exact scope match */
1169 if (msg_in_group(hdr)) {
1170 lower = 0;
1171 upper = ~0;
1172 scope = msg_lookup_scope(hdr);
1173 exact = true;
1174 } else {
1175 /* TIPC_NODE_SCOPE means "any scope" in this context */
1176 if (onode == self)
1177 scope = TIPC_NODE_SCOPE;
1178 else
1179 scope = TIPC_CLUSTER_SCOPE;
1180 exact = false;
1181 lower = msg_namelower(hdr);
1182 upper = msg_nameupper(hdr);
Jon Maloy75da2162017-10-13 11:04:23 +02001183 }
Jon Maloy232d07b2018-01-08 21:03:30 +01001184
1185 /* Create destination port list: */
1186 tipc_nametbl_mc_lookup(net, type, lower, upper,
1187 scope, exact, &dports);
1188
1189 /* Clone message per destination */
Jon Maloya80ae532017-10-13 11:04:22 +02001190 while (tipc_dest_pop(&dports, NULL, &portid)) {
Jon Maloy232d07b2018-01-08 21:03:30 +01001191 _skb = __pskb_copy(skb, hlen, GFP_ATOMIC);
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001192 if (_skb) {
1193 msg_set_destport(buf_msg(_skb), portid);
1194 __skb_queue_tail(&tmpq, _skb);
1195 continue;
1196 }
1197 pr_warn("Failed to clone mcast rcv buffer\n");
Jon Paul Maloy078bec82014-07-16 20:41:00 -04001198 }
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001199 /* Append to inputq if not already done by other thread */
1200 spin_lock_bh(&inputq->lock);
1201 if (skb_peek(arrvq) == skb) {
1202 skb_queue_splice_tail_init(&tmpq, inputq);
1203 kfree_skb(__skb_dequeue(arrvq));
1204 }
1205 spin_unlock_bh(&inputq->lock);
1206 __skb_queue_purge(&tmpq);
1207 kfree_skb(skb);
Jon Paul Maloy078bec82014-07-16 20:41:00 -04001208 }
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001209 tipc_sk_rcv(net, inputq);
Jon Paul Maloy078bec82014-07-16 20:41:00 -04001210}
1211
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001212/**
Jon Maloy64ac5f52017-10-13 11:04:20 +02001213 * tipc_sk_conn_proto_rcv - receive a connection mng protocol message
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001214 * @tsk: receiving socket
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001215 * @skb: pointer to message buffer.
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001216 */
Jon Maloy64ac5f52017-10-13 11:04:20 +02001217static void tipc_sk_conn_proto_rcv(struct tipc_sock *tsk, struct sk_buff *skb,
Parthasarathy Bhuvaragane7eb0582018-10-10 17:50:23 +02001218 struct sk_buff_head *inputq,
Jon Maloy64ac5f52017-10-13 11:04:20 +02001219 struct sk_buff_head *xmitq)
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001220{
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001221 struct tipc_msg *hdr = buf_msg(skb);
Jon Maloy64ac5f52017-10-13 11:04:20 +02001222 u32 onode = tsk_own_node(tsk);
1223 struct sock *sk = &tsk->sk;
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001224 int mtyp = msg_type(hdr);
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001225 bool conn_cong;
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001226
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001227 /* Ignore if connection cannot be validated: */
Tuong Lien01e661e2018-12-19 09:17:58 +07001228 if (!tsk_peer_msg(tsk, hdr)) {
1229 trace_tipc_sk_drop_msg(sk, skb, TIPC_DUMP_NONE, "@proto_rcv!");
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001230 goto exit;
Tuong Lien01e661e2018-12-19 09:17:58 +07001231 }
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001232
Parthasarathy Bhuvaraganc1be7752017-04-26 10:05:02 +02001233 if (unlikely(msg_errcode(hdr))) {
1234 tipc_set_sk_state(sk, TIPC_DISCONNECTING);
1235 tipc_node_remove_conn(sock_net(sk), tsk_peer_node(tsk),
1236 tsk_peer_port(tsk));
1237 sk->sk_state_change(sk);
Parthasarathy Bhuvaragane7eb0582018-10-10 17:50:23 +02001238
1239 /* State change is ignored if socket already awake,
1240 * - convert msg to abort msg and add to inqueue
1241 */
1242 msg_set_user(hdr, TIPC_CRITICAL_IMPORTANCE);
1243 msg_set_type(hdr, TIPC_CONN_MSG);
1244 msg_set_size(hdr, BASIC_H_SIZE);
1245 msg_set_hdr_sz(hdr, BASIC_H_SIZE);
1246 __skb_queue_tail(inputq, skb);
1247 return;
Parthasarathy Bhuvaraganc1be7752017-04-26 10:05:02 +02001248 }
1249
Parthasarathy Bhuvaragan8ea642e2016-11-01 14:02:44 +01001250 tsk->probe_unacked = false;
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001251
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001252 if (mtyp == CONN_PROBE) {
1253 msg_set_type(hdr, CONN_PROBE_REPLY);
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04001254 if (tipc_msg_reverse(onode, &skb, TIPC_OK))
1255 __skb_queue_tail(xmitq, skb);
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001256 return;
1257 } else if (mtyp == CONN_ACK) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001258 conn_cong = tsk_conn_cong(tsk);
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001259 tsk->snt_unacked -= msg_conn_ack(hdr);
1260 if (tsk->peer_caps & TIPC_BLOCK_FLOWCTL)
1261 tsk->snd_win = msg_adv_win(hdr);
Jon Paul Maloy60120522014-06-25 20:41:42 -05001262 if (conn_cong)
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001263 sk->sk_write_space(sk);
1264 } else if (mtyp != CONN_PROBE_REPLY) {
1265 pr_warn("Received unknown CONN_PROTO msg\n");
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001266 }
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001267exit:
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001268 kfree_skb(skb);
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001269}
1270
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001271/**
Ying Xue247f0f32014-02-18 16:06:46 +08001272 * tipc_sendmsg - send message in connectionless manner
Per Lidenb97bf3f2006-01-02 19:04:38 +01001273 * @sock: socket structure
1274 * @m: message to send
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001275 * @dsz: amount of user data to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001276 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001277 * Message must have an destination specified explicitly.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001278 * Used for SOCK_RDM and SOCK_DGRAM messages,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001279 * and for 'SYN' messages on SOCK_SEQPACKET and SOCK_STREAM connections.
1280 * (Note: 'SYN+' is prohibited on SOCK_STREAM.)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001281 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001282 * Returns the number of bytes sent on success, or errno otherwise
1283 */
Ying Xue1b784142015-03-02 15:37:48 +08001284static int tipc_sendmsg(struct socket *sock,
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001285 struct msghdr *m, size_t dsz)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001286{
Ying Xue39a0295f2015-03-02 15:37:47 +08001287 struct sock *sk = sock->sk;
1288 int ret;
1289
1290 lock_sock(sk);
1291 ret = __tipc_sendmsg(sock, m, dsz);
1292 release_sock(sk);
1293
1294 return ret;
1295}
1296
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001297static int __tipc_sendmsg(struct socket *sock, struct msghdr *m, size_t dlen)
Ying Xue39a0295f2015-03-02 15:37:47 +08001298{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001299 struct sock *sk = sock->sk;
Ying Xuef2f98002015-01-09 15:27:05 +08001300 struct net *net = sock_net(sk);
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001301 struct tipc_sock *tsk = tipc_sk(sk);
1302 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
1303 long timeout = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT);
1304 struct list_head *clinks = &tsk->cong_links;
1305 bool syn = !tipc_sk_type_connectionless(sk);
Jon Maloy75da2162017-10-13 11:04:23 +02001306 struct tipc_group *grp = tsk->group;
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001307 struct tipc_msg *hdr = &tsk->phdr;
Erik Hugnef2f80362015-03-19 09:02:19 +01001308 struct tipc_name_seq *seq;
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001309 struct sk_buff_head pkts;
Jon Maloy335b9292018-04-12 01:15:48 +02001310 u32 dport, dnode = 0;
Jon Maloy928df182018-03-15 16:48:51 +01001311 u32 type, inst;
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001312 int mtu, rc;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001313
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001314 if (unlikely(dlen > TIPC_MAX_USER_MSG_SIZE))
Allan Stephensc29c3f72010-04-20 17:58:24 -04001315 return -EMSGSIZE;
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001316
Jon Maloy27bd9ec2017-10-13 11:04:27 +02001317 if (likely(dest)) {
1318 if (unlikely(m->msg_namelen < sizeof(*dest)))
1319 return -EINVAL;
1320 if (unlikely(dest->family != AF_TIPC))
1321 return -EINVAL;
1322 }
1323
1324 if (grp) {
1325 if (!dest)
1326 return tipc_send_group_bcast(sock, m, dlen, timeout);
Jon Maloyee106d72017-10-13 11:04:28 +02001327 if (dest->addrtype == TIPC_ADDR_NAME)
1328 return tipc_send_group_anycast(sock, m, dlen, timeout);
Jon Maloy27bd9ec2017-10-13 11:04:27 +02001329 if (dest->addrtype == TIPC_ADDR_ID)
1330 return tipc_send_group_unicast(sock, m, dlen, timeout);
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001331 if (dest->addrtype == TIPC_ADDR_MCAST)
1332 return tipc_send_group_mcast(sock, m, dlen, timeout);
Jon Maloy27bd9ec2017-10-13 11:04:27 +02001333 return -EINVAL;
1334 }
Jon Maloy75da2162017-10-13 11:04:23 +02001335
Erik Hugnef2f80362015-03-19 09:02:19 +01001336 if (unlikely(!dest)) {
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001337 dest = &tsk->peer;
Erik Hugne0e632082019-03-04 23:26:10 +01001338 if (!syn && dest->family != AF_TIPC)
Erik Hugnef2f80362015-03-19 09:02:19 +01001339 return -EDESTADDRREQ;
Erik Hugnef2f80362015-03-19 09:02:19 +01001340 }
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001341
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001342 if (unlikely(syn)) {
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +01001343 if (sk->sk_state == TIPC_LISTEN)
Ying Xue39a0295f2015-03-02 15:37:47 +08001344 return -EPIPE;
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +01001345 if (sk->sk_state != TIPC_OPEN)
Ying Xue39a0295f2015-03-02 15:37:47 +08001346 return -EISCONN;
1347 if (tsk->published)
1348 return -EOPNOTSUPP;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001349 if (dest->addrtype == TIPC_ADDR_NAME) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001350 tsk->conn_type = dest->addr.name.name.type;
1351 tsk->conn_instance = dest->addr.name.name.instance;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001352 }
Jon Maloy25b92212018-09-28 20:23:21 +02001353 msg_set_syn(hdr, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001354 }
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001355
Erik Hugnef2f80362015-03-19 09:02:19 +01001356 seq = &dest->addr.nameseq;
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001357 if (dest->addrtype == TIPC_ADDR_MCAST)
1358 return tipc_sendmcast(sock, seq, m, dlen, timeout);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001359
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001360 if (dest->addrtype == TIPC_ADDR_NAME) {
1361 type = dest->addr.name.name.type;
1362 inst = dest->addr.name.name.instance;
Jon Maloy928df182018-03-15 16:48:51 +01001363 dnode = dest->addr.name.domain;
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001364 msg_set_type(hdr, TIPC_NAMED_MSG);
1365 msg_set_hdr_sz(hdr, NAMED_H_SIZE);
1366 msg_set_nametype(hdr, type);
1367 msg_set_nameinst(hdr, inst);
Jon Maloy928df182018-03-15 16:48:51 +01001368 msg_set_lookup_scope(hdr, tipc_node2scope(dnode));
Ying Xue4ac1c8d2015-01-09 15:27:09 +08001369 dport = tipc_nametbl_translate(net, type, inst, &dnode);
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001370 msg_set_destnode(hdr, dnode);
1371 msg_set_destport(hdr, dport);
Ying Xue39a0295f2015-03-02 15:37:47 +08001372 if (unlikely(!dport && !dnode))
1373 return -EHOSTUNREACH;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001374 } else if (dest->addrtype == TIPC_ADDR_ID) {
1375 dnode = dest->addr.id.node;
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001376 msg_set_type(hdr, TIPC_DIRECT_MSG);
1377 msg_set_lookup_scope(hdr, 0);
1378 msg_set_destnode(hdr, dnode);
1379 msg_set_destport(hdr, dest->addr.id.ref);
1380 msg_set_hdr_sz(hdr, BASIC_H_SIZE);
Jon Maloy335b9292018-04-12 01:15:48 +02001381 } else {
1382 return -EINVAL;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001383 }
1384
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001385 /* Block or return if destination link is congested */
Jon Maloya80ae532017-10-13 11:04:22 +02001386 rc = tipc_wait_for_cond(sock, &timeout,
1387 !tipc_dest_find(clinks, dnode, 0));
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001388 if (unlikely(rc))
Ying Xue39a0295f2015-03-02 15:37:47 +08001389 return rc;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001390
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001391 skb_queue_head_init(&pkts);
1392 mtu = tipc_node_get_mtu(net, dnode, tsk->portid);
1393 rc = tipc_msg_build(hdr, m, 0, dlen, mtu, &pkts);
1394 if (unlikely(rc != dlen))
1395 return rc;
Tung Nguyen67879272018-09-28 20:23:22 +02001396 if (unlikely(syn && !tipc_msg_skb_clone(&pkts, &sk->sk_write_queue)))
1397 return -ENOMEM;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001398
Tuong Lien01e661e2018-12-19 09:17:58 +07001399 trace_tipc_sk_sendmsg(sk, skb_peek(&pkts), TIPC_DUMP_SK_SNDQ, " ");
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001400 rc = tipc_node_xmit(net, &pkts, dnode, tsk->portid);
1401 if (unlikely(rc == -ELINKCONG)) {
Jon Maloya80ae532017-10-13 11:04:22 +02001402 tipc_dest_push(clinks, dnode, 0);
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001403 tsk->cong_link_cnt++;
1404 rc = 0;
1405 }
1406
1407 if (unlikely(syn && !rc))
1408 tipc_set_sk_state(sk, TIPC_CONNECTING);
1409
1410 return rc ? rc : dlen;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001411}
1412
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001413/**
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001414 * tipc_sendstream - send stream-oriented data
Per Lidenb97bf3f2006-01-02 19:04:38 +01001415 * @sock: socket structure
1416 * @m: data to send
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001417 * @dsz: total length of data to be transmitted
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001418 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001419 * Used for SOCK_STREAM data.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001420 *
1421 * Returns the number of bytes sent on success (or partial success),
Allan Stephens1303e8f2006-06-25 23:46:50 -07001422 * or errno if no data sent
Per Lidenb97bf3f2006-01-02 19:04:38 +01001423 */
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001424static int tipc_sendstream(struct socket *sock, struct msghdr *m, size_t dsz)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001425{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001426 struct sock *sk = sock->sk;
Ying Xue39a0295f2015-03-02 15:37:47 +08001427 int ret;
1428
1429 lock_sock(sk);
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001430 ret = __tipc_sendstream(sock, m, dsz);
Ying Xue39a0295f2015-03-02 15:37:47 +08001431 release_sock(sk);
1432
1433 return ret;
1434}
1435
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001436static int __tipc_sendstream(struct socket *sock, struct msghdr *m, size_t dlen)
Ying Xue39a0295f2015-03-02 15:37:47 +08001437{
1438 struct sock *sk = sock->sk;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001439 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001440 long timeout = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT);
1441 struct tipc_sock *tsk = tipc_sk(sk);
1442 struct tipc_msg *hdr = &tsk->phdr;
1443 struct net *net = sock_net(sk);
1444 struct sk_buff_head pkts;
1445 u32 dnode = tsk_peer_node(tsk);
1446 int send, sent = 0;
1447 int rc = 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001448
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001449 skb_queue_head_init(&pkts);
1450
1451 if (unlikely(dlen > INT_MAX))
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001452 return -EMSGSIZE;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001453
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001454 /* Handle implicit connection setup */
1455 if (unlikely(dest)) {
1456 rc = __tipc_sendmsg(sock, m, dlen);
Parthasarathy Bhuvaragan92ef12b2018-09-25 18:21:58 +02001457 if (dlen && dlen == rc) {
1458 tsk->peer_caps = tipc_node_get_capabilities(net, dnode);
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001459 tsk->snt_unacked = tsk_inc(tsk, dlen + msg_hdr_sz(hdr));
Parthasarathy Bhuvaragan92ef12b2018-09-25 18:21:58 +02001460 }
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001461 return rc;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001462 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001463
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001464 do {
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001465 rc = tipc_wait_for_cond(sock, &timeout,
1466 (!tsk->cong_link_cnt &&
Jon Paul Maloy8c44e1a2017-01-03 10:55:09 -05001467 !tsk_conn_cong(tsk) &&
1468 tipc_sk_connected(sk)));
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001469 if (unlikely(rc))
1470 break;
Ying Xue39a0295f2015-03-02 15:37:47 +08001471
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001472 send = min_t(size_t, dlen - sent, TIPC_MAX_USER_MSG_SIZE);
1473 rc = tipc_msg_build(hdr, m, sent, send, tsk->max_pkt, &pkts);
1474 if (unlikely(rc != send))
1475 break;
1476
Tuong Lien01e661e2018-12-19 09:17:58 +07001477 trace_tipc_sk_sendstream(sk, skb_peek(&pkts),
1478 TIPC_DUMP_SK_SNDQ, " ");
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001479 rc = tipc_node_xmit(net, &pkts, dnode, tsk->portid);
1480 if (unlikely(rc == -ELINKCONG)) {
1481 tsk->cong_link_cnt = 1;
1482 rc = 0;
1483 }
1484 if (likely(!rc)) {
1485 tsk->snt_unacked += tsk_inc(tsk, send + MIN_H_SIZE);
1486 sent += send;
1487 }
1488 } while (sent < dlen && !rc);
1489
Parthasarathy Bhuvaragan3364d612017-04-24 15:00:42 +02001490 return sent ? sent : rc;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001491}
1492
1493/**
1494 * tipc_send_packet - send a connection-oriented message
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001495 * @sock: socket structure
1496 * @m: message to send
1497 * @dsz: length of data to be transmitted
1498 *
1499 * Used for SOCK_SEQPACKET messages.
1500 *
1501 * Returns the number of bytes sent on success, or errno otherwise
1502 */
Ying Xue1b784142015-03-02 15:37:48 +08001503static int tipc_send_packet(struct socket *sock, struct msghdr *m, size_t dsz)
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001504{
1505 if (dsz > TIPC_MAX_USER_MSG_SIZE)
1506 return -EMSGSIZE;
1507
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001508 return tipc_sendstream(sock, m, dsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001509}
1510
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001511/* tipc_sk_finish_conn - complete the setup of a connection
Per Lidenb97bf3f2006-01-02 19:04:38 +01001512 */
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001513static void tipc_sk_finish_conn(struct tipc_sock *tsk, u32 peer_port,
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001514 u32 peer_node)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001515{
Ying Xue3721e9c2015-01-13 17:07:48 +08001516 struct sock *sk = &tsk->sk;
1517 struct net *net = sock_net(sk);
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001518 struct tipc_msg *msg = &tsk->phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001519
Jon Maloy25b92212018-09-28 20:23:21 +02001520 msg_set_syn(msg, 0);
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001521 msg_set_destnode(msg, peer_node);
1522 msg_set_destport(msg, peer_port);
1523 msg_set_type(msg, TIPC_CONN_MSG);
1524 msg_set_lookup_scope(msg, 0);
1525 msg_set_hdr_sz(msg, SHORT_H_SIZE);
Jon Paul Maloyf9fef182014-03-12 11:31:08 -04001526
Jon Maloy0d5fcebf2017-10-20 11:21:32 +02001527 sk_reset_timer(sk, &sk->sk_timer, jiffies + CONN_PROBING_INTV);
Parthasarathy Bhuvaragan8ea642e2016-11-01 14:02:44 +01001528 tipc_set_sk_state(sk, TIPC_ESTABLISHED);
Ying Xuef2f98002015-01-09 15:27:05 +08001529 tipc_node_add_conn(net, peer_node, tsk->portid, peer_port);
1530 tsk->max_pkt = tipc_node_get_mtu(net, peer_node, tsk->portid);
Jon Paul Maloy60020e12016-05-02 11:58:46 -04001531 tsk->peer_caps = tipc_node_get_capabilities(net, peer_node);
Tung Nguyen67879272018-09-28 20:23:22 +02001532 __skb_queue_purge(&sk->sk_write_queue);
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001533 if (tsk->peer_caps & TIPC_BLOCK_FLOWCTL)
1534 return;
1535
1536 /* Fall back to message based flow control */
1537 tsk->rcv_win = FLOWCTL_MSG_WIN;
1538 tsk->snd_win = FLOWCTL_MSG_WIN;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001539}
1540
1541/**
Jon Maloy31c82a22017-10-13 11:04:24 +02001542 * tipc_sk_set_orig_addr - capture sender's address for received message
Per Lidenb97bf3f2006-01-02 19:04:38 +01001543 * @m: descriptor for message info
Jon Maloy31c82a22017-10-13 11:04:24 +02001544 * @hdr: received message header
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001545 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001546 * Note: Address is not captured if not requested by receiver.
1547 */
Jon Maloy31c82a22017-10-13 11:04:24 +02001548static void tipc_sk_set_orig_addr(struct msghdr *m, struct sk_buff *skb)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001549{
Jon Maloy31c82a22017-10-13 11:04:24 +02001550 DECLARE_SOCKADDR(struct sockaddr_pair *, srcaddr, m->msg_name);
1551 struct tipc_msg *hdr = buf_msg(skb);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001552
Jon Maloy31c82a22017-10-13 11:04:24 +02001553 if (!srcaddr)
1554 return;
1555
1556 srcaddr->sock.family = AF_TIPC;
1557 srcaddr->sock.addrtype = TIPC_ADDR_ID;
Eric Dumazet09c8b972018-05-09 09:50:22 -07001558 srcaddr->sock.scope = 0;
Jon Maloy31c82a22017-10-13 11:04:24 +02001559 srcaddr->sock.addr.id.ref = msg_origport(hdr);
1560 srcaddr->sock.addr.id.node = msg_orignode(hdr);
1561 srcaddr->sock.addr.name.domain = 0;
Jon Maloy31c82a22017-10-13 11:04:24 +02001562 m->msg_namelen = sizeof(struct sockaddr_tipc);
1563
1564 if (!msg_in_group(hdr))
1565 return;
1566
1567 /* Group message users may also want to know sending member's id */
1568 srcaddr->member.family = AF_TIPC;
1569 srcaddr->member.addrtype = TIPC_ADDR_NAME;
Eric Dumazet09c8b972018-05-09 09:50:22 -07001570 srcaddr->member.scope = 0;
Jon Maloy31c82a22017-10-13 11:04:24 +02001571 srcaddr->member.addr.name.name.type = msg_nametype(hdr);
1572 srcaddr->member.addr.name.name.instance = TIPC_SKB_CB(skb)->orig_member;
1573 srcaddr->member.addr.name.domain = 0;
1574 m->msg_namelen = sizeof(*srcaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001575}
1576
1577/**
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001578 * tipc_sk_anc_data_recv - optionally capture ancillary data for received message
Per Lidenb97bf3f2006-01-02 19:04:38 +01001579 * @m: descriptor for message info
Jon Maloy1c1274a2018-11-17 12:17:06 -05001580 * @skb: received message buffer
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001581 * @tsk: TIPC port associated with message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001582 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001583 * Note: Ancillary data is not captured if not requested by receiver.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001584 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001585 * Returns 0 if successful, otherwise errno
1586 */
Jon Maloy1c1274a2018-11-17 12:17:06 -05001587static int tipc_sk_anc_data_recv(struct msghdr *m, struct sk_buff *skb,
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001588 struct tipc_sock *tsk)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001589{
Jon Maloy1c1274a2018-11-17 12:17:06 -05001590 struct tipc_msg *msg;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001591 u32 anc_data[3];
1592 u32 err;
1593 u32 dest_type;
Allan Stephens3546c752006-06-25 23:45:24 -07001594 int has_name;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001595 int res;
1596
1597 if (likely(m->msg_controllen == 0))
1598 return 0;
Jon Maloy1c1274a2018-11-17 12:17:06 -05001599 msg = buf_msg(skb);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001600
1601 /* Optionally capture errored message object(s) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001602 err = msg ? msg_errcode(msg) : 0;
1603 if (unlikely(err)) {
1604 anc_data[0] = err;
1605 anc_data[1] = msg_data_sz(msg);
Allan Stephens2db99832010-12-31 18:59:33 +00001606 res = put_cmsg(m, SOL_TIPC, TIPC_ERRINFO, 8, anc_data);
1607 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001608 return res;
Allan Stephens2db99832010-12-31 18:59:33 +00001609 if (anc_data[1]) {
Jon Maloy1c1274a2018-11-17 12:17:06 -05001610 if (skb_linearize(skb))
1611 return -ENOMEM;
1612 msg = buf_msg(skb);
Allan Stephens2db99832010-12-31 18:59:33 +00001613 res = put_cmsg(m, SOL_TIPC, TIPC_RETDATA, anc_data[1],
1614 msg_data(msg));
1615 if (res)
1616 return res;
1617 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001618 }
1619
1620 /* Optionally capture message destination object */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001621 dest_type = msg ? msg_type(msg) : TIPC_DIRECT_MSG;
1622 switch (dest_type) {
1623 case TIPC_NAMED_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -07001624 has_name = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001625 anc_data[0] = msg_nametype(msg);
1626 anc_data[1] = msg_namelower(msg);
1627 anc_data[2] = msg_namelower(msg);
1628 break;
1629 case TIPC_MCAST_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -07001630 has_name = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001631 anc_data[0] = msg_nametype(msg);
1632 anc_data[1] = msg_namelower(msg);
1633 anc_data[2] = msg_nameupper(msg);
1634 break;
1635 case TIPC_CONN_MSG:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001636 has_name = (tsk->conn_type != 0);
1637 anc_data[0] = tsk->conn_type;
1638 anc_data[1] = tsk->conn_instance;
1639 anc_data[2] = tsk->conn_instance;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001640 break;
1641 default:
Allan Stephens3546c752006-06-25 23:45:24 -07001642 has_name = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001643 }
Allan Stephens2db99832010-12-31 18:59:33 +00001644 if (has_name) {
1645 res = put_cmsg(m, SOL_TIPC, TIPC_DESTNAME, 12, anc_data);
1646 if (res)
1647 return res;
1648 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001649
1650 return 0;
1651}
1652
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001653static void tipc_sk_send_ack(struct tipc_sock *tsk)
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001654{
Parthasarathy Bhuvaragand6fb7e92016-11-01 14:02:40 +01001655 struct sock *sk = &tsk->sk;
1656 struct net *net = sock_net(sk);
Ying Xuea6ca1092014-11-26 11:41:55 +08001657 struct sk_buff *skb = NULL;
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001658 struct tipc_msg *msg;
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001659 u32 peer_port = tsk_peer_port(tsk);
1660 u32 dnode = tsk_peer_node(tsk);
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001661
Parthasarathy Bhuvaragand6fb7e92016-11-01 14:02:40 +01001662 if (!tipc_sk_connected(sk))
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001663 return;
Jon Paul Maloyc5898632015-02-05 08:36:36 -05001664 skb = tipc_msg_create(CONN_MANAGER, CONN_ACK, INT_H_SIZE, 0,
1665 dnode, tsk_own_node(tsk), peer_port,
1666 tsk->portid, TIPC_OK);
Ying Xuea6ca1092014-11-26 11:41:55 +08001667 if (!skb)
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001668 return;
Ying Xuea6ca1092014-11-26 11:41:55 +08001669 msg = buf_msg(skb);
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001670 msg_set_conn_ack(msg, tsk->rcv_unacked);
1671 tsk->rcv_unacked = 0;
1672
1673 /* Adjust to and advertize the correct window limit */
1674 if (tsk->peer_caps & TIPC_BLOCK_FLOWCTL) {
1675 tsk->rcv_win = tsk_adv_blocks(tsk->sk.sk_rcvbuf);
1676 msg_set_adv_win(msg, tsk->rcv_win);
1677 }
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -04001678 tipc_node_xmit_skb(net, skb, dnode, msg_link_selector(msg));
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001679}
1680
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001681static int tipc_wait_for_rcvmsg(struct socket *sock, long *timeop)
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001682{
1683 struct sock *sk = sock->sk;
Tung Nguyen48766a52019-02-19 11:20:48 +07001684 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001685 long timeo = *timeop;
Parthasarathy Bhuvaragan4e0df492017-04-26 10:05:01 +02001686 int err = sock_error(sk);
1687
1688 if (err)
1689 return err;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001690
1691 for (;;) {
Ying Xuefe8e4642014-03-06 14:40:18 +01001692 if (timeo && skb_queue_empty(&sk->sk_receive_queue)) {
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +01001693 if (sk->sk_shutdown & RCV_SHUTDOWN) {
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001694 err = -ENOTCONN;
1695 break;
1696 }
Tung Nguyen48766a52019-02-19 11:20:48 +07001697 add_wait_queue(sk_sleep(sk), &wait);
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001698 release_sock(sk);
Tung Nguyen48766a52019-02-19 11:20:48 +07001699 timeo = wait_woken(&wait, TASK_INTERRUPTIBLE, timeo);
1700 sched_annotate_sleep();
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001701 lock_sock(sk);
Tung Nguyen48766a52019-02-19 11:20:48 +07001702 remove_wait_queue(sk_sleep(sk), &wait);
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001703 }
1704 err = 0;
1705 if (!skb_queue_empty(&sk->sk_receive_queue))
1706 break;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001707 err = -EAGAIN;
1708 if (!timeo)
1709 break;
Erik Hugne143fe222015-03-09 10:43:42 +01001710 err = sock_intr_errno(timeo);
1711 if (signal_pending(current))
1712 break;
Parthasarathy Bhuvaragan4e0df492017-04-26 10:05:01 +02001713
1714 err = sock_error(sk);
1715 if (err)
1716 break;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001717 }
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001718 *timeop = timeo;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001719 return err;
1720}
1721
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001722/**
Ying Xue247f0f32014-02-18 16:06:46 +08001723 * tipc_recvmsg - receive packet-oriented message
Per Lidenb97bf3f2006-01-02 19:04:38 +01001724 * @m: descriptor for message info
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001725 * @buflen: length of user buffer area
Per Lidenb97bf3f2006-01-02 19:04:38 +01001726 * @flags: receive flags
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001727 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001728 * Used for SOCK_DGRAM, SOCK_RDM, and SOCK_SEQPACKET messages.
1729 * If the complete message doesn't fit in user area, truncate it.
1730 *
1731 * Returns size of returned message data, errno otherwise
1732 */
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001733static int tipc_recvmsg(struct socket *sock, struct msghdr *m,
1734 size_t buflen, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001735{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001736 struct sock *sk = sock->sk;
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001737 bool connected = !tipc_sk_type_connectionless(sk);
Jon Maloyae236fb2017-10-13 11:04:25 +02001738 struct tipc_sock *tsk = tipc_sk(sk);
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001739 int rc, err, hlen, dlen, copy;
Jon Maloyb7d42632017-10-13 11:04:26 +02001740 struct sk_buff_head xmitq;
Jon Maloyae236fb2017-10-13 11:04:25 +02001741 struct tipc_msg *hdr;
1742 struct sk_buff *skb;
1743 bool grp_evt;
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001744 long timeout;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001745
Allan Stephens0c3141e2008-04-15 00:22:02 -07001746 /* Catch invalid receive requests */
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001747 if (unlikely(!buflen))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001748 return -EINVAL;
1749
Allan Stephens0c3141e2008-04-15 00:22:02 -07001750 lock_sock(sk);
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001751 if (unlikely(connected && sk->sk_state == TIPC_OPEN)) {
1752 rc = -ENOTCONN;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001753 goto exit;
1754 }
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001755 timeout = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001756
Jon Maloyb7d42632017-10-13 11:04:26 +02001757 /* Step rcv queue to first msg with data or error; wait if necessary */
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001758 do {
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001759 rc = tipc_wait_for_rcvmsg(sock, &timeout);
1760 if (unlikely(rc))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001761 goto exit;
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001762 skb = skb_peek(&sk->sk_receive_queue);
1763 hdr = buf_msg(skb);
1764 dlen = msg_data_sz(hdr);
1765 hlen = msg_hdr_sz(hdr);
1766 err = msg_errcode(hdr);
Jon Maloyae236fb2017-10-13 11:04:25 +02001767 grp_evt = msg_is_grp_evt(hdr);
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001768 if (likely(dlen || err))
1769 break;
1770 tsk_advance_rx_queue(sk);
1771 } while (1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001772
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001773 /* Collect msg meta data, including error code and rejected data */
Jon Maloy31c82a22017-10-13 11:04:24 +02001774 tipc_sk_set_orig_addr(m, skb);
Jon Maloy1c1274a2018-11-17 12:17:06 -05001775 rc = tipc_sk_anc_data_recv(m, skb, tsk);
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001776 if (unlikely(rc))
1777 goto exit;
Jon Maloy1c1274a2018-11-17 12:17:06 -05001778 hdr = buf_msg(skb);
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001779
1780 /* Capture data if non-error msg, otherwise just set return value */
1781 if (likely(!err)) {
1782 copy = min_t(int, dlen, buflen);
1783 if (unlikely(copy != dlen))
1784 m->msg_flags |= MSG_TRUNC;
1785 rc = skb_copy_datagram_msg(skb, hlen, m, copy);
1786 } else {
1787 copy = 0;
1788 rc = 0;
1789 if (err != TIPC_CONN_SHUTDOWN && connected && !m->msg_control)
1790 rc = -ECONNRESET;
1791 }
1792 if (unlikely(rc))
1793 goto exit;
1794
Jon Maloyae236fb2017-10-13 11:04:25 +02001795 /* Mark message as group event if applicable */
1796 if (unlikely(grp_evt)) {
1797 if (msg_grp_evt(hdr) == TIPC_WITHDRAWN)
1798 m->msg_flags |= MSG_EOR;
1799 m->msg_flags |= MSG_OOB;
1800 copy = 0;
1801 }
1802
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001803 /* Caption of data or error code/rejected data was successful */
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001804 if (unlikely(flags & MSG_PEEK))
1805 goto exit;
1806
Jon Maloyb7d42632017-10-13 11:04:26 +02001807 /* Send group flow control advertisement when applicable */
1808 if (tsk->group && msg_in_group(hdr) && !grp_evt) {
1809 skb_queue_head_init(&xmitq);
1810 tipc_group_update_rcv_win(tsk->group, tsk_blocks(hlen + dlen),
1811 msg_orignode(hdr), msg_origport(hdr),
1812 &xmitq);
1813 tipc_node_distr_xmit(sock_net(sk), &xmitq);
1814 }
1815
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001816 tsk_advance_rx_queue(sk);
Jon Maloyae236fb2017-10-13 11:04:25 +02001817
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001818 if (likely(!connected))
1819 goto exit;
1820
Jon Maloyb7d42632017-10-13 11:04:26 +02001821 /* Send connection flow control advertisement when applicable */
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001822 tsk->rcv_unacked += tsk_inc(tsk, hlen + dlen);
1823 if (tsk->rcv_unacked >= tsk->rcv_win / TIPC_ACK_RATE)
1824 tipc_sk_send_ack(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001825exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001826 release_sock(sk);
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001827 return rc ? rc : copy;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001828}
1829
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001830/**
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001831 * tipc_recvstream - receive stream-oriented data
Per Lidenb97bf3f2006-01-02 19:04:38 +01001832 * @m: descriptor for message info
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001833 * @buflen: total size of user buffer area
Per Lidenb97bf3f2006-01-02 19:04:38 +01001834 * @flags: receive flags
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001835 *
1836 * Used for SOCK_STREAM messages only. If not enough data is available
Per Lidenb97bf3f2006-01-02 19:04:38 +01001837 * will optionally wait for more; never truncates data.
1838 *
1839 * Returns size of returned message data, errno otherwise
1840 */
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001841static int tipc_recvstream(struct socket *sock, struct msghdr *m,
1842 size_t buflen, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001843{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001844 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001845 struct tipc_sock *tsk = tipc_sk(sk);
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001846 struct sk_buff *skb;
1847 struct tipc_msg *hdr;
1848 struct tipc_skb_cb *skb_cb;
1849 bool peek = flags & MSG_PEEK;
1850 int offset, required, copy, copied = 0;
1851 int hlen, dlen, err, rc;
1852 long timeout;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001853
1854 /* Catch invalid receive attempts */
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001855 if (unlikely(!buflen))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001856 return -EINVAL;
1857
Allan Stephens0c3141e2008-04-15 00:22:02 -07001858 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001859
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +01001860 if (unlikely(sk->sk_state == TIPC_OPEN)) {
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001861 rc = -ENOTCONN;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001862 goto exit;
1863 }
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001864 required = sock_rcvlowat(sk, flags & MSG_WAITALL, buflen);
1865 timeout = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001866
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001867 do {
1868 /* Look at first msg in receive queue; wait if necessary */
1869 rc = tipc_wait_for_rcvmsg(sock, &timeout);
1870 if (unlikely(rc))
1871 break;
1872 skb = skb_peek(&sk->sk_receive_queue);
1873 skb_cb = TIPC_SKB_CB(skb);
1874 hdr = buf_msg(skb);
1875 dlen = msg_data_sz(hdr);
1876 hlen = msg_hdr_sz(hdr);
1877 err = msg_errcode(hdr);
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001878
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001879 /* Discard any empty non-errored (SYN-) message */
1880 if (unlikely(!dlen && !err)) {
1881 tsk_advance_rx_queue(sk);
1882 continue;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001883 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001884
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001885 /* Collect msg meta data, incl. error code and rejected data */
1886 if (!copied) {
Jon Maloy31c82a22017-10-13 11:04:24 +02001887 tipc_sk_set_orig_addr(m, skb);
Jon Maloy1c1274a2018-11-17 12:17:06 -05001888 rc = tipc_sk_anc_data_recv(m, skb, tsk);
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001889 if (rc)
1890 break;
Jon Maloy1c1274a2018-11-17 12:17:06 -05001891 hdr = buf_msg(skb);
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001892 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001893
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001894 /* Copy data if msg ok, otherwise return error/partial data */
1895 if (likely(!err)) {
1896 offset = skb_cb->bytes_read;
1897 copy = min_t(int, dlen - offset, buflen - copied);
1898 rc = skb_copy_datagram_msg(skb, hlen + offset, m, copy);
1899 if (unlikely(rc))
1900 break;
1901 copied += copy;
1902 offset += copy;
1903 if (unlikely(offset < dlen)) {
1904 if (!peek)
1905 skb_cb->bytes_read = offset;
1906 break;
1907 }
1908 } else {
1909 rc = 0;
1910 if ((err != TIPC_CONN_SHUTDOWN) && !m->msg_control)
1911 rc = -ECONNRESET;
1912 if (copied || rc)
1913 break;
1914 }
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001915
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001916 if (unlikely(peek))
1917 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001918
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001919 tsk_advance_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001920
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001921 /* Send connection flow control advertisement when applicable */
1922 tsk->rcv_unacked += tsk_inc(tsk, hlen + dlen);
1923 if (unlikely(tsk->rcv_unacked >= tsk->rcv_win / TIPC_ACK_RATE))
1924 tipc_sk_send_ack(tsk);
1925
1926 /* Exit if all requested data or FIN/error received */
1927 if (copied == buflen || err)
1928 break;
1929
1930 } while (!skb_queue_empty(&sk->sk_receive_queue) || copied < required);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001931exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001932 release_sock(sk);
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001933 return copied ? copied : rc;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001934}
1935
1936/**
Ying Xuef288bef2012-08-21 11:16:57 +08001937 * tipc_write_space - wake up thread if port congestion is released
1938 * @sk: socket
1939 */
1940static void tipc_write_space(struct sock *sk)
1941{
1942 struct socket_wq *wq;
1943
1944 rcu_read_lock();
1945 wq = rcu_dereference(sk->sk_wq);
Herbert Xu1ce0bf52015-11-26 13:55:39 +08001946 if (skwq_has_sleeper(wq))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001947 wake_up_interruptible_sync_poll(&wq->wait, EPOLLOUT |
1948 EPOLLWRNORM | EPOLLWRBAND);
Ying Xuef288bef2012-08-21 11:16:57 +08001949 rcu_read_unlock();
1950}
1951
1952/**
1953 * tipc_data_ready - wake up threads to indicate messages have been received
1954 * @sk: socket
1955 * @len: the length of messages
1956 */
David S. Miller676d2362014-04-11 16:15:36 -04001957static void tipc_data_ready(struct sock *sk)
Ying Xuef288bef2012-08-21 11:16:57 +08001958{
1959 struct socket_wq *wq;
1960
1961 rcu_read_lock();
1962 wq = rcu_dereference(sk->sk_wq);
Herbert Xu1ce0bf52015-11-26 13:55:39 +08001963 if (skwq_has_sleeper(wq))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001964 wake_up_interruptible_sync_poll(&wq->wait, EPOLLIN |
1965 EPOLLRDNORM | EPOLLRDBAND);
Ying Xuef288bef2012-08-21 11:16:57 +08001966 rcu_read_unlock();
1967}
1968
Ying Xuef4195d12015-11-22 15:46:05 +08001969static void tipc_sock_destruct(struct sock *sk)
1970{
1971 __skb_queue_purge(&sk->sk_receive_queue);
1972}
1973
Jon Maloy64ac5f52017-10-13 11:04:20 +02001974static void tipc_sk_proto_rcv(struct sock *sk,
1975 struct sk_buff_head *inputq,
1976 struct sk_buff_head *xmitq)
1977{
1978 struct sk_buff *skb = __skb_dequeue(inputq);
1979 struct tipc_sock *tsk = tipc_sk(sk);
1980 struct tipc_msg *hdr = buf_msg(skb);
Jon Maloy75da2162017-10-13 11:04:23 +02001981 struct tipc_group *grp = tsk->group;
Jon Maloyb7d42632017-10-13 11:04:26 +02001982 bool wakeup = false;
Jon Maloy64ac5f52017-10-13 11:04:20 +02001983
1984 switch (msg_user(hdr)) {
1985 case CONN_MANAGER:
Parthasarathy Bhuvaragane7eb0582018-10-10 17:50:23 +02001986 tipc_sk_conn_proto_rcv(tsk, skb, inputq, xmitq);
Jon Maloy64ac5f52017-10-13 11:04:20 +02001987 return;
1988 case SOCK_WAKEUP:
Jon Maloya80ae532017-10-13 11:04:22 +02001989 tipc_dest_del(&tsk->cong_links, msg_orignode(hdr), 0);
Tung Nguyenbfd07f32019-02-25 10:57:20 +07001990 /* coupled with smp_rmb() in tipc_wait_for_cond() */
1991 smp_wmb();
Jon Maloy64ac5f52017-10-13 11:04:20 +02001992 tsk->cong_link_cnt--;
Jon Maloyb7d42632017-10-13 11:04:26 +02001993 wakeup = true;
Jon Maloy64ac5f52017-10-13 11:04:20 +02001994 break;
Jon Maloy75da2162017-10-13 11:04:23 +02001995 case GROUP_PROTOCOL:
Jon Maloyb7d42632017-10-13 11:04:26 +02001996 tipc_group_proto_rcv(grp, &wakeup, hdr, inputq, xmitq);
Jon Maloy75da2162017-10-13 11:04:23 +02001997 break;
Jon Maloy64ac5f52017-10-13 11:04:20 +02001998 case TOP_SRV:
Jon Maloyb7d42632017-10-13 11:04:26 +02001999 tipc_group_member_evt(tsk->group, &wakeup, &sk->sk_rcvbuf,
Jon Maloy7ad32bc2018-01-08 21:03:26 +01002000 hdr, inputq, xmitq);
Jon Maloy64ac5f52017-10-13 11:04:20 +02002001 break;
2002 default:
2003 break;
2004 }
2005
Jon Maloyb7d42632017-10-13 11:04:26 +02002006 if (wakeup)
2007 sk->sk_write_space(sk);
2008
Jon Maloy64ac5f52017-10-13 11:04:20 +02002009 kfree_skb(skb);
2010}
2011
Ying Xuef288bef2012-08-21 11:16:57 +08002012/**
Jon Maloy39fdc9c2018-09-28 20:23:20 +02002013 * tipc_sk_filter_connect - check incoming message for a connection-based socket
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002014 * @tsk: TIPC socket
Jon Maloy39fdc9c2018-09-28 20:23:20 +02002015 * @skb: pointer to message buffer.
2016 * Returns true if message should be added to receive queue, false otherwise
Ying Xue7e6c1312012-11-29 18:39:14 -05002017 */
Jon Maloy64ac5f52017-10-13 11:04:20 +02002018static bool tipc_sk_filter_connect(struct tipc_sock *tsk, struct sk_buff *skb)
Ying Xue7e6c1312012-11-29 18:39:14 -05002019{
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002020 struct sock *sk = &tsk->sk;
Ying Xuef2f98002015-01-09 15:27:05 +08002021 struct net *net = sock_net(sk);
Jon Paul Maloycda36962015-07-22 10:11:20 -04002022 struct tipc_msg *hdr = buf_msg(skb);
Jon Maloy39fdc9c2018-09-28 20:23:20 +02002023 bool con_msg = msg_connected(hdr);
2024 u32 pport = tsk_peer_port(tsk);
2025 u32 pnode = tsk_peer_node(tsk);
2026 u32 oport = msg_origport(hdr);
2027 u32 onode = msg_orignode(hdr);
2028 int err = msg_errcode(hdr);
Tung Nguyen67879272018-09-28 20:23:22 +02002029 unsigned long delay;
Ying Xue7e6c1312012-11-29 18:39:14 -05002030
Jon Paul Maloycda36962015-07-22 10:11:20 -04002031 if (unlikely(msg_mcast(hdr)))
2032 return false;
Ying Xue7e6c1312012-11-29 18:39:14 -05002033
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002034 switch (sk->sk_state) {
2035 case TIPC_CONNECTING:
Jon Maloy39fdc9c2018-09-28 20:23:20 +02002036 /* Setup ACK */
2037 if (likely(con_msg)) {
2038 if (err)
2039 break;
2040 tipc_sk_finish_conn(tsk, oport, onode);
2041 msg_set_importance(&tsk->phdr, msg_importance(hdr));
2042 /* ACK+ message with data is added to receive queue */
2043 if (msg_data_sz(hdr))
2044 return true;
2045 /* Empty ACK-, - wake up sleeping connect() and drop */
2046 sk->sk_data_ready(sk);
2047 msg_set_dest_droppable(hdr, 1);
2048 return false;
Parthasarathy Bhuvaragan4e0df492017-04-26 10:05:01 +02002049 }
Jon Maloy39fdc9c2018-09-28 20:23:20 +02002050 /* Ignore connectionless message if not from listening socket */
2051 if (oport != pport || onode != pnode)
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +01002052 return false;
2053
Tung Nguyen67879272018-09-28 20:23:22 +02002054 /* Rejected SYN */
2055 if (err != TIPC_ERR_OVERLOAD)
2056 break;
2057
2058 /* Prepare for new setup attempt if we have a SYN clone */
2059 if (skb_queue_empty(&sk->sk_write_queue))
2060 break;
2061 get_random_bytes(&delay, 2);
2062 delay %= (tsk->conn_timeout / 4);
2063 delay = msecs_to_jiffies(delay + 100);
2064 sk_reset_timer(sk, &sk->sk_timer, jiffies + delay);
2065 return false;
Jon Maloy39fdc9c2018-09-28 20:23:20 +02002066 case TIPC_OPEN:
2067 case TIPC_DISCONNECTING:
2068 return false;
2069 case TIPC_LISTEN:
2070 /* Accept only SYN message */
Jon Maloy25b92212018-09-28 20:23:21 +02002071 if (!msg_is_syn(hdr) &&
2072 tipc_node_get_capabilities(net, onode) & TIPC_SYN_BIT)
2073 return false;
Jon Maloy39fdc9c2018-09-28 20:23:20 +02002074 if (!con_msg && !err)
2075 return true;
2076 return false;
2077 case TIPC_ESTABLISHED:
2078 /* Accept only connection-based messages sent by peer */
2079 if (likely(con_msg && !err && pport == oport && pnode == onode))
2080 return true;
2081 if (!tsk_peer_msg(tsk, hdr))
2082 return false;
2083 if (!err)
2084 return true;
2085 tipc_set_sk_state(sk, TIPC_DISCONNECTING);
2086 tipc_node_remove_conn(net, pnode, tsk->portid);
2087 sk->sk_state_change(sk);
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +01002088 return true;
Ying Xue7e6c1312012-11-29 18:39:14 -05002089 default:
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +01002090 pr_err("Unknown sk_state %u\n", sk->sk_state);
Ying Xue7e6c1312012-11-29 18:39:14 -05002091 }
Jon Maloy39fdc9c2018-09-28 20:23:20 +02002092 /* Abort connection setup attempt */
2093 tipc_set_sk_state(sk, TIPC_DISCONNECTING);
2094 sk->sk_err = ECONNREFUSED;
2095 sk->sk_state_change(sk);
2096 return true;
Ying Xue7e6c1312012-11-29 18:39:14 -05002097}
2098
2099/**
Ying Xueaba79f32013-01-20 23:30:09 +01002100 * rcvbuf_limit - get proper overload limit of socket receive queue
2101 * @sk: socket
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002102 * @skb: message
Ying Xueaba79f32013-01-20 23:30:09 +01002103 *
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002104 * For connection oriented messages, irrespective of importance,
2105 * default queue limit is 2 MB.
Ying Xueaba79f32013-01-20 23:30:09 +01002106 *
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002107 * For connectionless messages, queue limits are based on message
2108 * importance as follows:
Ying Xueaba79f32013-01-20 23:30:09 +01002109 *
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002110 * TIPC_LOW_IMPORTANCE (2 MB)
2111 * TIPC_MEDIUM_IMPORTANCE (4 MB)
2112 * TIPC_HIGH_IMPORTANCE (8 MB)
2113 * TIPC_CRITICAL_IMPORTANCE (16 MB)
Ying Xueaba79f32013-01-20 23:30:09 +01002114 *
2115 * Returns overload limit according to corresponding message importance
2116 */
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002117static unsigned int rcvbuf_limit(struct sock *sk, struct sk_buff *skb)
Ying Xueaba79f32013-01-20 23:30:09 +01002118{
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002119 struct tipc_sock *tsk = tipc_sk(sk);
2120 struct tipc_msg *hdr = buf_msg(skb);
Ying Xueaba79f32013-01-20 23:30:09 +01002121
Jon Maloyb7d42632017-10-13 11:04:26 +02002122 if (unlikely(msg_in_group(hdr)))
2123 return sk->sk_rcvbuf;
2124
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002125 if (unlikely(!msg_connected(hdr)))
2126 return sk->sk_rcvbuf << msg_importance(hdr);
wangweidong0cee6bb2013-12-12 09:36:39 +08002127
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002128 if (likely(tsk->peer_caps & TIPC_BLOCK_FLOWCTL))
2129 return sk->sk_rcvbuf;
2130
2131 return FLOWCTL_MSG_LIM;
Ying Xueaba79f32013-01-20 23:30:09 +01002132}
2133
2134/**
Jon Maloy64ac5f52017-10-13 11:04:20 +02002135 * tipc_sk_filter_rcv - validate incoming message
Allan Stephens0c3141e2008-04-15 00:22:02 -07002136 * @sk: socket
Jon Paul Maloycda36962015-07-22 10:11:20 -04002137 * @skb: pointer to message.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002138 *
Allan Stephens0c3141e2008-04-15 00:22:02 -07002139 * Enqueues message on receive queue if acceptable; optionally handles
2140 * disconnect indication for a connected socket.
2141 *
Jon Paul Maloy1186adf2015-02-05 08:36:37 -05002142 * Called with socket lock already taken
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002143 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002144 */
Jon Maloy64ac5f52017-10-13 11:04:20 +02002145static void tipc_sk_filter_rcv(struct sock *sk, struct sk_buff *skb,
2146 struct sk_buff_head *xmitq)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002147{
Jon Maloy64ac5f52017-10-13 11:04:20 +02002148 bool sk_conn = !tipc_sk_type_connectionless(sk);
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002149 struct tipc_sock *tsk = tipc_sk(sk);
Jon Maloy75da2162017-10-13 11:04:23 +02002150 struct tipc_group *grp = tsk->group;
Jon Paul Maloycda36962015-07-22 10:11:20 -04002151 struct tipc_msg *hdr = buf_msg(skb);
Jon Maloy64ac5f52017-10-13 11:04:20 +02002152 struct net *net = sock_net(sk);
2153 struct sk_buff_head inputq;
Hoang Le77d5ad42019-03-21 17:25:17 +07002154 int mtyp = msg_type(hdr);
Jon Maloy64ac5f52017-10-13 11:04:20 +02002155 int limit, err = TIPC_OK;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002156
Tuong Lien01e661e2018-12-19 09:17:58 +07002157 trace_tipc_sk_filter_rcv(sk, skb, TIPC_DUMP_ALL, " ");
Parthasarathy Bhuvaraganba8aebe2016-11-01 14:02:37 +01002158 TIPC_SKB_CB(skb)->bytes_read = 0;
Jon Maloy64ac5f52017-10-13 11:04:20 +02002159 __skb_queue_head_init(&inputq);
2160 __skb_queue_tail(&inputq, skb);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002161
Jon Maloy64ac5f52017-10-13 11:04:20 +02002162 if (unlikely(!msg_isdata(hdr)))
2163 tipc_sk_proto_rcv(sk, &inputq, xmitq);
Jon Paul Maloycda36962015-07-22 10:11:20 -04002164
Jon Maloy75da2162017-10-13 11:04:23 +02002165 if (unlikely(grp))
2166 tipc_group_filter_msg(grp, &inputq, xmitq);
2167
Hoang Le77d5ad42019-03-21 17:25:17 +07002168 if (unlikely(!grp) && mtyp == TIPC_MCAST_MSG)
Hoang Le08e046c2019-03-21 17:25:18 +07002169 tipc_mcast_filter_msg(net, &tsk->mc_method.deferredq, &inputq);
Hoang Lec55c8ed2019-03-19 18:49:50 +07002170
Jon Maloy64ac5f52017-10-13 11:04:20 +02002171 /* Validate and add to receive buffer if there is space */
2172 while ((skb = __skb_dequeue(&inputq))) {
2173 hdr = buf_msg(skb);
2174 limit = rcvbuf_limit(sk, skb);
2175 if ((sk_conn && !tipc_sk_filter_connect(tsk, skb)) ||
Jon Maloy75da2162017-10-13 11:04:23 +02002176 (!sk_conn && msg_connected(hdr)) ||
2177 (!grp && msg_in_group(hdr)))
Jon Maloy64ac5f52017-10-13 11:04:20 +02002178 err = TIPC_ERR_NO_PORT;
GhantaKrishnamurthy MohanKrishna872619d2018-03-21 14:37:45 +01002179 else if (sk_rmem_alloc_get(sk) + skb->truesize >= limit) {
Tuong Lien01e661e2018-12-19 09:17:58 +07002180 trace_tipc_sk_dump(sk, skb, TIPC_DUMP_ALL,
2181 "err_overload2!");
GhantaKrishnamurthy MohanKrishna872619d2018-03-21 14:37:45 +01002182 atomic_inc(&sk->sk_drops);
Jon Maloy64ac5f52017-10-13 11:04:20 +02002183 err = TIPC_ERR_OVERLOAD;
GhantaKrishnamurthy MohanKrishna872619d2018-03-21 14:37:45 +01002184 }
Jon Maloy64ac5f52017-10-13 11:04:20 +02002185
2186 if (unlikely(err)) {
Tuong Lien01e661e2018-12-19 09:17:58 +07002187 if (tipc_msg_reverse(tipc_own_addr(net), &skb, err)) {
2188 trace_tipc_sk_rej_msg(sk, skb, TIPC_DUMP_NONE,
2189 "@filter_rcv!");
2190 __skb_queue_tail(xmitq, skb);
2191 }
Jon Maloy64ac5f52017-10-13 11:04:20 +02002192 err = TIPC_OK;
2193 continue;
2194 }
2195 __skb_queue_tail(&sk->sk_receive_queue, skb);
2196 skb_set_owner_r(skb, sk);
Tuong Lien01e661e2018-12-19 09:17:58 +07002197 trace_tipc_sk_overlimit2(sk, skb, TIPC_DUMP_ALL,
2198 "rcvq >90% allocated!");
Jon Maloy64ac5f52017-10-13 11:04:20 +02002199 sk->sk_data_ready(sk);
2200 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002201}
2202
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002203/**
Jon Maloy64ac5f52017-10-13 11:04:20 +02002204 * tipc_sk_backlog_rcv - handle incoming message from backlog queue
Allan Stephens0c3141e2008-04-15 00:22:02 -07002205 * @sk: socket
Ying Xuea6ca1092014-11-26 11:41:55 +08002206 * @skb: message
Allan Stephens0c3141e2008-04-15 00:22:02 -07002207 *
Jon Paul Maloye3a77562015-02-05 08:36:39 -05002208 * Caller must hold socket lock
Allan Stephens0c3141e2008-04-15 00:22:02 -07002209 */
Jon Maloy64ac5f52017-10-13 11:04:20 +02002210static int tipc_sk_backlog_rcv(struct sock *sk, struct sk_buff *skb)
Allan Stephens0c3141e2008-04-15 00:22:02 -07002211{
Jon Maloy64ac5f52017-10-13 11:04:20 +02002212 unsigned int before = sk_rmem_alloc_get(sk);
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002213 struct sk_buff_head xmitq;
Jon Maloy64ac5f52017-10-13 11:04:20 +02002214 unsigned int added;
Allan Stephens0c3141e2008-04-15 00:22:02 -07002215
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002216 __skb_queue_head_init(&xmitq);
2217
Jon Maloy64ac5f52017-10-13 11:04:20 +02002218 tipc_sk_filter_rcv(sk, skb, &xmitq);
2219 added = sk_rmem_alloc_get(sk) - before;
2220 atomic_add(added, &tipc_sk(sk)->dupl_rcvcnt);
2221
2222 /* Send pending response/rejected messages, if any */
Jon Maloyf70d37b2017-10-13 11:04:21 +02002223 tipc_node_distr_xmit(sock_net(sk), &xmitq);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002224 return 0;
2225}
2226
2227/**
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002228 * tipc_sk_enqueue - extract all buffers with destination 'dport' from
2229 * inputq and try adding them to socket or backlog queue
2230 * @inputq: list of incoming buffers with potentially different destinations
2231 * @sk: socket where the buffers should be enqueued
2232 * @dport: port number for the socket
Jon Paul Maloyd570d862015-02-05 08:36:38 -05002233 *
2234 * Caller must hold socket lock
Jon Paul Maloyd570d862015-02-05 08:36:38 -05002235 */
Jon Paul Maloycda36962015-07-22 10:11:20 -04002236static void tipc_sk_enqueue(struct sk_buff_head *inputq, struct sock *sk,
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002237 u32 dport, struct sk_buff_head *xmitq)
Jon Paul Maloyd570d862015-02-05 08:36:38 -05002238{
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002239 unsigned long time_limit = jiffies + 2;
2240 struct sk_buff *skb;
Jon Paul Maloyd570d862015-02-05 08:36:38 -05002241 unsigned int lim;
2242 atomic_t *dcnt;
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002243 u32 onode;
Jon Paul Maloyd570d862015-02-05 08:36:38 -05002244
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002245 while (skb_queue_len(inputq)) {
Jon Paul Maloy51a00da2015-02-08 11:10:50 -05002246 if (unlikely(time_after_eq(jiffies, time_limit)))
Jon Paul Maloycda36962015-07-22 10:11:20 -04002247 return;
2248
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002249 skb = tipc_skb_dequeue(inputq, dport);
2250 if (unlikely(!skb))
Jon Paul Maloycda36962015-07-22 10:11:20 -04002251 return;
2252
2253 /* Add message directly to receive queue if possible */
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002254 if (!sock_owned_by_user(sk)) {
Jon Maloy64ac5f52017-10-13 11:04:20 +02002255 tipc_sk_filter_rcv(sk, skb, xmitq);
Jon Paul Maloycda36962015-07-22 10:11:20 -04002256 continue;
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002257 }
Jon Paul Maloycda36962015-07-22 10:11:20 -04002258
2259 /* Try backlog, compensating for double-counted bytes */
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002260 dcnt = &tipc_sk(sk)->dupl_rcvcnt;
Jon Paul Maloy7c8bcfb2016-05-02 11:58:45 -04002261 if (!sk->sk_backlog.len)
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002262 atomic_set(dcnt, 0);
2263 lim = rcvbuf_limit(sk, skb) + atomic_read(dcnt);
Tuong Lien01e661e2018-12-19 09:17:58 +07002264 if (likely(!sk_add_backlog(sk, skb, lim))) {
2265 trace_tipc_sk_overlimit1(sk, skb, TIPC_DUMP_ALL,
2266 "bklg & rcvq >90% allocated!");
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002267 continue;
Tuong Lien01e661e2018-12-19 09:17:58 +07002268 }
Jon Paul Maloycda36962015-07-22 10:11:20 -04002269
Tuong Lien01e661e2018-12-19 09:17:58 +07002270 trace_tipc_sk_dump(sk, skb, TIPC_DUMP_ALL, "err_overload!");
Jon Paul Maloycda36962015-07-22 10:11:20 -04002271 /* Overload => reject message back to sender */
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002272 onode = tipc_own_addr(sock_net(sk));
GhantaKrishnamurthy MohanKrishna872619d2018-03-21 14:37:45 +01002273 atomic_inc(&sk->sk_drops);
Tuong Lien01e661e2018-12-19 09:17:58 +07002274 if (tipc_msg_reverse(onode, &skb, TIPC_ERR_OVERLOAD)) {
2275 trace_tipc_sk_rej_msg(sk, skb, TIPC_DUMP_ALL,
2276 "@sk_enqueue!");
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002277 __skb_queue_tail(xmitq, skb);
Tuong Lien01e661e2018-12-19 09:17:58 +07002278 }
Jon Paul Maloycda36962015-07-22 10:11:20 -04002279 break;
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002280 }
Jon Paul Maloyd570d862015-02-05 08:36:38 -05002281}
2282
2283/**
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002284 * tipc_sk_rcv - handle a chain of incoming buffers
2285 * @inputq: buffer list containing the buffers
2286 * Consumes all buffers in list until inputq is empty
2287 * Note: may be called in multiple threads referring to the same queue
Allan Stephens0c3141e2008-04-15 00:22:02 -07002288 */
Jon Paul Maloycda36962015-07-22 10:11:20 -04002289void tipc_sk_rcv(struct net *net, struct sk_buff_head *inputq)
Allan Stephens0c3141e2008-04-15 00:22:02 -07002290{
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002291 struct sk_buff_head xmitq;
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002292 u32 dnode, dport = 0;
Erik Hugne9871b272015-04-23 09:37:39 -04002293 int err;
Jon Paul Maloy9816f062014-05-14 05:39:15 -04002294 struct tipc_sock *tsk;
Jon Paul Maloy9816f062014-05-14 05:39:15 -04002295 struct sock *sk;
Jon Paul Maloycda36962015-07-22 10:11:20 -04002296 struct sk_buff *skb;
Jon Paul Maloy9816f062014-05-14 05:39:15 -04002297
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002298 __skb_queue_head_init(&xmitq);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002299 while (skb_queue_len(inputq)) {
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002300 dport = tipc_skb_peek_port(inputq, dport);
2301 tsk = tipc_sk_lookup(net, dport);
Jon Paul Maloycda36962015-07-22 10:11:20 -04002302
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002303 if (likely(tsk)) {
2304 sk = &tsk->sk;
2305 if (likely(spin_trylock_bh(&sk->sk_lock.slock))) {
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002306 tipc_sk_enqueue(inputq, sk, dport, &xmitq);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002307 spin_unlock_bh(&sk->sk_lock.slock);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002308 }
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002309 /* Send pending response/rejected messages, if any */
Jon Maloyf70d37b2017-10-13 11:04:21 +02002310 tipc_node_distr_xmit(sock_net(sk), &xmitq);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002311 sock_put(sk);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002312 continue;
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002313 }
Jon Paul Maloycda36962015-07-22 10:11:20 -04002314 /* No destination socket => dequeue skb if still there */
2315 skb = tipc_skb_dequeue(inputq, dport);
2316 if (!skb)
2317 return;
2318
2319 /* Try secondary lookup if unresolved named message */
2320 err = TIPC_ERR_NO_PORT;
2321 if (tipc_msg_lookup_dest(net, skb, &err))
2322 goto xmit;
2323
2324 /* Prepare for message rejection */
2325 if (!tipc_msg_reverse(tipc_own_addr(net), &skb, err))
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002326 continue;
Tuong Lien01e661e2018-12-19 09:17:58 +07002327
2328 trace_tipc_sk_rej_msg(NULL, skb, TIPC_DUMP_NONE, "@sk_rcv!");
Jon Paul Maloye3a77562015-02-05 08:36:39 -05002329xmit:
Jon Paul Maloycda36962015-07-22 10:11:20 -04002330 dnode = msg_destnode(buf_msg(skb));
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -04002331 tipc_node_xmit_skb(net, skb, dnode, dport);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002332 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07002333}
2334
Ying Xue78eb3a52014-01-17 09:50:03 +08002335static int tipc_wait_for_connect(struct socket *sock, long *timeo_p)
2336{
WANG Congd9dc8b02016-11-11 10:20:50 -08002337 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Ying Xue78eb3a52014-01-17 09:50:03 +08002338 struct sock *sk = sock->sk;
Ying Xue78eb3a52014-01-17 09:50:03 +08002339 int done;
2340
2341 do {
2342 int err = sock_error(sk);
2343 if (err)
2344 return err;
2345 if (!*timeo_p)
2346 return -ETIMEDOUT;
2347 if (signal_pending(current))
2348 return sock_intr_errno(*timeo_p);
2349
WANG Congd9dc8b02016-11-11 10:20:50 -08002350 add_wait_queue(sk_sleep(sk), &wait);
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002351 done = sk_wait_event(sk, timeo_p,
WANG Congd9dc8b02016-11-11 10:20:50 -08002352 sk->sk_state != TIPC_CONNECTING, &wait);
2353 remove_wait_queue(sk_sleep(sk), &wait);
Ying Xue78eb3a52014-01-17 09:50:03 +08002354 } while (!done);
2355 return 0;
2356}
2357
Erik Hugneea239312019-03-17 18:46:42 +01002358static bool tipc_sockaddr_is_sane(struct sockaddr_tipc *addr)
2359{
2360 if (addr->family != AF_TIPC)
2361 return false;
2362 if (addr->addrtype == TIPC_SERVICE_RANGE)
2363 return (addr->addr.nameseq.lower <= addr->addr.nameseq.upper);
2364 return (addr->addrtype == TIPC_SERVICE_ADDR ||
2365 addr->addrtype == TIPC_SOCKET_ADDR);
2366}
2367
Per Lidenb97bf3f2006-01-02 19:04:38 +01002368/**
Ying Xue247f0f32014-02-18 16:06:46 +08002369 * tipc_connect - establish a connection to another TIPC port
Per Lidenb97bf3f2006-01-02 19:04:38 +01002370 * @sock: socket structure
2371 * @dest: socket address for destination port
2372 * @destlen: size of socket address data structure
Allan Stephens0c3141e2008-04-15 00:22:02 -07002373 * @flags: file-related flags associated with socket
Per Lidenb97bf3f2006-01-02 19:04:38 +01002374 *
2375 * Returns 0 on success, errno otherwise
2376 */
Ying Xue247f0f32014-02-18 16:06:46 +08002377static int tipc_connect(struct socket *sock, struct sockaddr *dest,
2378 int destlen, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002379{
Allan Stephens0c3141e2008-04-15 00:22:02 -07002380 struct sock *sk = sock->sk;
Erik Hugnef2f80362015-03-19 09:02:19 +01002381 struct tipc_sock *tsk = tipc_sk(sk);
Allan Stephensb89741a2008-04-15 00:20:37 -07002382 struct sockaddr_tipc *dst = (struct sockaddr_tipc *)dest;
2383 struct msghdr m = {NULL,};
Erik Hugnef2f80362015-03-19 09:02:19 +01002384 long timeout = (flags & O_NONBLOCK) ? 0 : tsk->conn_timeout;
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002385 int previous;
Erik Hugnef2f80362015-03-19 09:02:19 +01002386 int res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002387
Jon Maloy23998832017-10-13 11:04:18 +02002388 if (destlen != sizeof(struct sockaddr_tipc))
2389 return -EINVAL;
2390
Allan Stephens0c3141e2008-04-15 00:22:02 -07002391 lock_sock(sk);
2392
Jon Maloy75da2162017-10-13 11:04:23 +02002393 if (tsk->group) {
2394 res = -EINVAL;
2395 goto exit;
2396 }
2397
Jon Maloy23998832017-10-13 11:04:18 +02002398 if (dst->family == AF_UNSPEC) {
2399 memset(&tsk->peer, 0, sizeof(struct sockaddr_tipc));
2400 if (!tipc_sk_type_connectionless(sk))
2401 res = -EINVAL;
2402 goto exit;
Jon Maloy23998832017-10-13 11:04:18 +02002403 }
Erik Hugneea239312019-03-17 18:46:42 +01002404 if (!tipc_sockaddr_is_sane(dst)) {
Jon Maloy23998832017-10-13 11:04:18 +02002405 res = -EINVAL;
Jon Maloy23998832017-10-13 11:04:18 +02002406 goto exit;
Erik Hugneea239312019-03-17 18:46:42 +01002407 }
Erik Hugnef2f80362015-03-19 09:02:19 +01002408 /* DGRAM/RDM connect(), just save the destaddr */
Parthasarathy Bhuvaraganc752023a2016-11-01 14:02:42 +01002409 if (tipc_sk_type_connectionless(sk)) {
Jon Maloy23998832017-10-13 11:04:18 +02002410 memcpy(&tsk->peer, dest, destlen);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002411 goto exit;
Erik Hugneea239312019-03-17 18:46:42 +01002412 } else if (dst->addrtype == TIPC_SERVICE_RANGE) {
2413 res = -EINVAL;
2414 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07002415 }
2416
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002417 previous = sk->sk_state;
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +01002418
2419 switch (sk->sk_state) {
2420 case TIPC_OPEN:
Ying Xue584d24b2012-11-29 18:51:19 -05002421 /* Send a 'SYN-' to destination */
2422 m.msg_name = dest;
2423 m.msg_namelen = destlen;
2424
2425 /* If connect is in non-blocking case, set MSG_DONTWAIT to
2426 * indicate send_msg() is never blocked.
2427 */
2428 if (!timeout)
2429 m.msg_flags = MSG_DONTWAIT;
2430
Ying Xue39a0295f2015-03-02 15:37:47 +08002431 res = __tipc_sendmsg(sock, &m, 0);
Ying Xue584d24b2012-11-29 18:51:19 -05002432 if ((res < 0) && (res != -EWOULDBLOCK))
2433 goto exit;
2434
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002435 /* Just entered TIPC_CONNECTING state; the only
Ying Xue584d24b2012-11-29 18:51:19 -05002436 * difference is that return value in non-blocking
2437 * case is EINPROGRESS, rather than EALREADY.
2438 */
2439 res = -EINPROGRESS;
Gustavo A. R. Silvaf79e3362019-01-23 01:09:31 -06002440 /* fall through */
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002441 case TIPC_CONNECTING:
2442 if (!timeout) {
2443 if (previous == TIPC_CONNECTING)
2444 res = -EALREADY;
Ying Xue78eb3a52014-01-17 09:50:03 +08002445 goto exit;
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002446 }
Ying Xue78eb3a52014-01-17 09:50:03 +08002447 timeout = msecs_to_jiffies(timeout);
2448 /* Wait until an 'ACK' or 'RST' arrives, or a timeout occurs */
2449 res = tipc_wait_for_connect(sock, &timeout);
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +01002450 break;
2451 case TIPC_ESTABLISHED:
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002452 res = -EISCONN;
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +01002453 break;
2454 default:
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002455 res = -EINVAL;
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +01002456 }
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002457
Allan Stephens0c3141e2008-04-15 00:22:02 -07002458exit:
2459 release_sock(sk);
Allan Stephensb89741a2008-04-15 00:20:37 -07002460 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002461}
2462
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002463/**
Ying Xue247f0f32014-02-18 16:06:46 +08002464 * tipc_listen - allow socket to listen for incoming connections
Per Lidenb97bf3f2006-01-02 19:04:38 +01002465 * @sock: socket structure
2466 * @len: (unused)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002467 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002468 * Returns 0 on success, errno otherwise
2469 */
Ying Xue247f0f32014-02-18 16:06:46 +08002470static int tipc_listen(struct socket *sock, int len)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002471{
Allan Stephens0c3141e2008-04-15 00:22:02 -07002472 struct sock *sk = sock->sk;
2473 int res;
2474
2475 lock_sock(sk);
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +01002476 res = tipc_set_sk_state(sk, TIPC_LISTEN);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002477 release_sock(sk);
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +01002478
Allan Stephens0c3141e2008-04-15 00:22:02 -07002479 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002480}
2481
Ying Xue6398e232014-01-17 09:50:04 +08002482static int tipc_wait_for_accept(struct socket *sock, long timeo)
2483{
2484 struct sock *sk = sock->sk;
2485 DEFINE_WAIT(wait);
2486 int err;
2487
2488 /* True wake-one mechanism for incoming connections: only
2489 * one process gets woken up, not the 'whole herd'.
2490 * Since we do not 'race & poll' for established sockets
2491 * anymore, the common case will execute the loop only once.
2492 */
2493 for (;;) {
2494 prepare_to_wait_exclusive(sk_sleep(sk), &wait,
2495 TASK_INTERRUPTIBLE);
Ying Xuefe8e4642014-03-06 14:40:18 +01002496 if (timeo && skb_queue_empty(&sk->sk_receive_queue)) {
Ying Xue6398e232014-01-17 09:50:04 +08002497 release_sock(sk);
2498 timeo = schedule_timeout(timeo);
2499 lock_sock(sk);
2500 }
2501 err = 0;
2502 if (!skb_queue_empty(&sk->sk_receive_queue))
2503 break;
Ying Xue6398e232014-01-17 09:50:04 +08002504 err = -EAGAIN;
2505 if (!timeo)
2506 break;
Erik Hugne143fe222015-03-09 10:43:42 +01002507 err = sock_intr_errno(timeo);
2508 if (signal_pending(current))
2509 break;
Ying Xue6398e232014-01-17 09:50:04 +08002510 }
2511 finish_wait(sk_sleep(sk), &wait);
2512 return err;
2513}
2514
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002515/**
Ying Xue247f0f32014-02-18 16:06:46 +08002516 * tipc_accept - wait for connection request
Per Lidenb97bf3f2006-01-02 19:04:38 +01002517 * @sock: listening socket
2518 * @newsock: new socket that is to be connected
2519 * @flags: file-related flags associated with socket
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002520 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002521 * Returns 0 on success, errno otherwise
2522 */
David Howellscdfbabf2017-03-09 08:09:05 +00002523static int tipc_accept(struct socket *sock, struct socket *new_sock, int flags,
2524 bool kern)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002525{
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002526 struct sock *new_sk, *sk = sock->sk;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002527 struct sk_buff *buf;
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002528 struct tipc_sock *new_tsock;
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002529 struct tipc_msg *msg;
Ying Xue6398e232014-01-17 09:50:04 +08002530 long timeo;
Allan Stephens0c3141e2008-04-15 00:22:02 -07002531 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002532
Allan Stephens0c3141e2008-04-15 00:22:02 -07002533 lock_sock(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002534
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +01002535 if (sk->sk_state != TIPC_LISTEN) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07002536 res = -EINVAL;
2537 goto exit;
2538 }
Ying Xue6398e232014-01-17 09:50:04 +08002539 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
2540 res = tipc_wait_for_accept(sock, timeo);
2541 if (res)
2542 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07002543
2544 buf = skb_peek(&sk->sk_receive_queue);
2545
David Howellscdfbabf2017-03-09 08:09:05 +00002546 res = tipc_sk_create(sock_net(sock->sk), new_sock, 0, kern);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002547 if (res)
2548 goto exit;
Stephen Smalleyfdd75ea2015-07-07 09:43:45 -04002549 security_sk_clone(sock->sk, new_sock->sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002550
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002551 new_sk = new_sock->sk;
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002552 new_tsock = tipc_sk(new_sk);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002553 msg = buf_msg(buf);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002554
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002555 /* we lock on new_sk; but lockdep sees the lock on sk */
2556 lock_sock_nested(new_sk, SINGLE_DEPTH_NESTING);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002557
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002558 /*
2559 * Reject any stray messages received by new socket
2560 * before the socket lock was taken (very, very unlikely)
2561 */
Jon Paul Maloy2e84c602014-08-22 18:09:18 -04002562 tsk_rej_rx_queue(new_sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002563
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002564 /* Connect new socket to it's peer */
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002565 tipc_sk_finish_conn(new_tsock, msg_origport(msg), msg_orignode(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002566
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002567 tsk_set_importance(new_tsock, msg_importance(msg));
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002568 if (msg_named(msg)) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002569 new_tsock->conn_type = msg_nametype(msg);
2570 new_tsock->conn_instance = msg_nameinst(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002571 }
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002572
2573 /*
2574 * Respond to 'SYN-' by discarding it & returning 'ACK'-.
2575 * Respond to 'SYN+' by queuing it on new socket.
2576 */
2577 if (!msg_data_sz(msg)) {
2578 struct msghdr m = {NULL,};
2579
Jon Paul Maloy2e84c602014-08-22 18:09:18 -04002580 tsk_advance_rx_queue(sk);
Jon Paul Maloy365ad352017-01-03 10:55:11 -05002581 __tipc_sendstream(new_sock, &m, 0);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002582 } else {
2583 __skb_dequeue(&sk->sk_receive_queue);
2584 __skb_queue_head(&new_sk->sk_receive_queue, buf);
Ying Xueaba79f32013-01-20 23:30:09 +01002585 skb_set_owner_r(buf, new_sk);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002586 }
2587 release_sock(new_sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002588exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07002589 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002590 return res;
2591}
2592
2593/**
Ying Xue247f0f32014-02-18 16:06:46 +08002594 * tipc_shutdown - shutdown socket connection
Per Lidenb97bf3f2006-01-02 19:04:38 +01002595 * @sock: socket structure
Allan Stephense247a8f2008-03-06 15:05:38 -08002596 * @how: direction to close (must be SHUT_RDWR)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002597 *
2598 * Terminates connection (if necessary), then purges socket's receive queue.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002599 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002600 * Returns 0 on success, errno otherwise
2601 */
Ying Xue247f0f32014-02-18 16:06:46 +08002602static int tipc_shutdown(struct socket *sock, int how)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002603{
Allan Stephens0c3141e2008-04-15 00:22:02 -07002604 struct sock *sk = sock->sk;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002605 int res;
2606
Allan Stephense247a8f2008-03-06 15:05:38 -08002607 if (how != SHUT_RDWR)
2608 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002609
Allan Stephens0c3141e2008-04-15 00:22:02 -07002610 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002611
Tuong Lien01e661e2018-12-19 09:17:58 +07002612 trace_tipc_sk_shutdown(sk, NULL, TIPC_DUMP_ALL, " ");
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +01002613 __tipc_shutdown(sock, TIPC_CONN_SHUTDOWN);
2614 sk->sk_shutdown = SEND_SHUTDOWN;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002615
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +01002616 if (sk->sk_state == TIPC_DISCONNECTING) {
Ying Xue75031152012-10-29 09:38:15 -04002617 /* Discard any unreceived messages */
Ying Xue57467e52013-01-20 23:30:08 +01002618 __skb_queue_purge(&sk->sk_receive_queue);
Ying Xue75031152012-10-29 09:38:15 -04002619
2620 /* Wake up anyone sleeping in poll */
2621 sk->sk_state_change(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002622 res = 0;
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +01002623 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002624 res = -ENOTCONN;
2625 }
2626
Allan Stephens0c3141e2008-04-15 00:22:02 -07002627 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002628 return res;
2629}
2630
Jon Maloyafe87922018-09-28 20:23:19 +02002631static void tipc_sk_check_probing_state(struct sock *sk,
2632 struct sk_buff_head *list)
2633{
2634 struct tipc_sock *tsk = tipc_sk(sk);
2635 u32 pnode = tsk_peer_node(tsk);
2636 u32 pport = tsk_peer_port(tsk);
2637 u32 self = tsk_own_node(tsk);
2638 u32 oport = tsk->portid;
2639 struct sk_buff *skb;
2640
2641 if (tsk->probe_unacked) {
2642 tipc_set_sk_state(sk, TIPC_DISCONNECTING);
2643 sk->sk_err = ECONNABORTED;
2644 tipc_node_remove_conn(sock_net(sk), pnode, pport);
2645 sk->sk_state_change(sk);
2646 return;
2647 }
2648 /* Prepare new probe */
2649 skb = tipc_msg_create(CONN_MANAGER, CONN_PROBE, INT_H_SIZE, 0,
2650 pnode, self, pport, oport, TIPC_OK);
2651 if (skb)
2652 __skb_queue_tail(list, skb);
2653 tsk->probe_unacked = true;
2654 sk_reset_timer(sk, &sk->sk_timer, jiffies + CONN_PROBING_INTV);
2655}
2656
Tung Nguyen67879272018-09-28 20:23:22 +02002657static void tipc_sk_retry_connect(struct sock *sk, struct sk_buff_head *list)
2658{
2659 struct tipc_sock *tsk = tipc_sk(sk);
2660
2661 /* Try again later if dest link is congested */
2662 if (tsk->cong_link_cnt) {
2663 sk_reset_timer(sk, &sk->sk_timer, msecs_to_jiffies(100));
2664 return;
2665 }
2666 /* Prepare SYN for retransmit */
2667 tipc_msg_skb_clone(&sk->sk_write_queue, list);
2668}
2669
Kees Cook31b102b2017-10-30 14:06:45 -07002670static void tipc_sk_timeout(struct timer_list *t)
Jon Paul Maloy57289012014-08-22 18:09:09 -04002671{
Kees Cook31b102b2017-10-30 14:06:45 -07002672 struct sock *sk = from_timer(sk, t, sk_timer);
2673 struct tipc_sock *tsk = tipc_sk(sk);
Jon Maloyafe87922018-09-28 20:23:19 +02002674 u32 pnode = tsk_peer_node(tsk);
2675 struct sk_buff_head list;
Tung Nguyen67879272018-09-28 20:23:22 +02002676 int rc = 0;
Jon Paul Maloy57289012014-08-22 18:09:09 -04002677
Jon Maloyafe87922018-09-28 20:23:19 +02002678 skb_queue_head_init(&list);
Jon Paul Maloy57289012014-08-22 18:09:09 -04002679 bh_lock_sock(sk);
Jon Maloy0d5fcebf2017-10-20 11:21:32 +02002680
2681 /* Try again later if socket is busy */
2682 if (sock_owned_by_user(sk)) {
2683 sk_reset_timer(sk, &sk->sk_timer, jiffies + HZ / 20);
Jon Maloyafe87922018-09-28 20:23:19 +02002684 bh_unlock_sock(sk);
2685 return;
Jon Paul Maloy6c9808c2014-08-22 18:09:16 -04002686 }
Jon Paul Maloy57289012014-08-22 18:09:09 -04002687
Jon Maloyafe87922018-09-28 20:23:19 +02002688 if (sk->sk_state == TIPC_ESTABLISHED)
2689 tipc_sk_check_probing_state(sk, &list);
Tung Nguyen67879272018-09-28 20:23:22 +02002690 else if (sk->sk_state == TIPC_CONNECTING)
2691 tipc_sk_retry_connect(sk, &list);
Jon Maloyafe87922018-09-28 20:23:19 +02002692
Jon Paul Maloy57289012014-08-22 18:09:09 -04002693 bh_unlock_sock(sk);
Jon Maloyafe87922018-09-28 20:23:19 +02002694
2695 if (!skb_queue_empty(&list))
Tung Nguyen67879272018-09-28 20:23:22 +02002696 rc = tipc_node_xmit(sock_net(sk), &list, pnode, tsk->portid);
Jon Maloyafe87922018-09-28 20:23:19 +02002697
Tung Nguyen67879272018-09-28 20:23:22 +02002698 /* SYN messages may cause link congestion */
2699 if (rc == -ELINKCONG) {
2700 tipc_dest_push(&tsk->cong_links, pnode, 0);
2701 tsk->cong_link_cnt = 1;
2702 }
Ying Xue07f6c4b2015-01-07 13:41:58 +08002703 sock_put(sk);
Jon Paul Maloy57289012014-08-22 18:09:09 -04002704}
2705
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002706static int tipc_sk_publish(struct tipc_sock *tsk, uint scope,
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002707 struct tipc_name_seq const *seq)
2708{
Parthasarathy Bhuvaragand6fb7e92016-11-01 14:02:40 +01002709 struct sock *sk = &tsk->sk;
2710 struct net *net = sock_net(sk);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002711 struct publication *publ;
2712 u32 key;
2713
Jon Maloy928df182018-03-15 16:48:51 +01002714 if (scope != TIPC_NODE_SCOPE)
2715 scope = TIPC_CLUSTER_SCOPE;
2716
Parthasarathy Bhuvaragand6fb7e92016-11-01 14:02:40 +01002717 if (tipc_sk_connected(sk))
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002718 return -EINVAL;
Ying Xue07f6c4b2015-01-07 13:41:58 +08002719 key = tsk->portid + tsk->pub_count + 1;
2720 if (key == tsk->portid)
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002721 return -EADDRINUSE;
2722
Ying Xuef2f98002015-01-09 15:27:05 +08002723 publ = tipc_nametbl_publish(net, seq->type, seq->lower, seq->upper,
Ying Xue07f6c4b2015-01-07 13:41:58 +08002724 scope, tsk->portid, key);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002725 if (unlikely(!publ))
2726 return -EINVAL;
2727
Jon Maloye50e73e2018-03-15 16:48:55 +01002728 list_add(&publ->binding_sock, &tsk->publications);
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002729 tsk->pub_count++;
2730 tsk->published = 1;
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002731 return 0;
2732}
2733
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002734static int tipc_sk_withdraw(struct tipc_sock *tsk, uint scope,
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002735 struct tipc_name_seq const *seq)
2736{
Ying Xuef2f98002015-01-09 15:27:05 +08002737 struct net *net = sock_net(&tsk->sk);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002738 struct publication *publ;
2739 struct publication *safe;
2740 int rc = -EINVAL;
2741
Jon Maloy928df182018-03-15 16:48:51 +01002742 if (scope != TIPC_NODE_SCOPE)
2743 scope = TIPC_CLUSTER_SCOPE;
2744
Jon Maloye50e73e2018-03-15 16:48:55 +01002745 list_for_each_entry_safe(publ, safe, &tsk->publications, binding_sock) {
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002746 if (seq) {
2747 if (publ->scope != scope)
2748 continue;
2749 if (publ->type != seq->type)
2750 continue;
2751 if (publ->lower != seq->lower)
2752 continue;
2753 if (publ->upper != seq->upper)
2754 break;
Ying Xuef2f98002015-01-09 15:27:05 +08002755 tipc_nametbl_withdraw(net, publ->type, publ->lower,
Jon Maloy37922ea2018-03-29 23:20:43 +02002756 publ->upper, publ->key);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002757 rc = 0;
2758 break;
2759 }
Ying Xuef2f98002015-01-09 15:27:05 +08002760 tipc_nametbl_withdraw(net, publ->type, publ->lower,
Jon Maloy37922ea2018-03-29 23:20:43 +02002761 publ->upper, publ->key);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002762 rc = 0;
2763 }
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002764 if (list_empty(&tsk->publications))
2765 tsk->published = 0;
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002766 return rc;
2767}
2768
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002769/* tipc_sk_reinit: set non-zero address in all existing sockets
2770 * when we go from standalone to network mode.
2771 */
Ying Xuee05b31f2015-01-09 15:27:08 +08002772void tipc_sk_reinit(struct net *net)
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002773{
Ying Xuee05b31f2015-01-09 15:27:08 +08002774 struct tipc_net *tn = net_generic(net, tipc_net_id);
Herbert Xu40f9f432017-02-11 19:26:46 +08002775 struct rhashtable_iter iter;
Ying Xue07f6c4b2015-01-07 13:41:58 +08002776 struct tipc_sock *tsk;
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002777 struct tipc_msg *msg;
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002778
Herbert Xu40f9f432017-02-11 19:26:46 +08002779 rhashtable_walk_enter(&tn->sk_rht, &iter);
2780
2781 do {
Tom Herbert97a6ec42017-12-04 10:31:41 -08002782 rhashtable_walk_start(&iter);
Herbert Xu40f9f432017-02-11 19:26:46 +08002783
2784 while ((tsk = rhashtable_walk_next(&iter)) && !IS_ERR(tsk)) {
Cong Wang15ef70e2018-12-10 11:49:55 -08002785 sock_hold(&tsk->sk);
2786 rhashtable_walk_stop(&iter);
2787 lock_sock(&tsk->sk);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002788 msg = &tsk->phdr;
Jon Maloy23fd3ea2018-03-22 20:42:49 +01002789 msg_set_prevnode(msg, tipc_own_addr(net));
2790 msg_set_orignode(msg, tipc_own_addr(net));
Cong Wang15ef70e2018-12-10 11:49:55 -08002791 release_sock(&tsk->sk);
2792 rhashtable_walk_start(&iter);
2793 sock_put(&tsk->sk);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002794 }
Tom Herbert97a6ec42017-12-04 10:31:41 -08002795
Herbert Xu40f9f432017-02-11 19:26:46 +08002796 rhashtable_walk_stop(&iter);
2797 } while (tsk == ERR_PTR(-EAGAIN));
Cong Wangbd583fe2018-08-23 16:19:44 -07002798
2799 rhashtable_walk_exit(&iter);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002800}
2801
Ying Xuee05b31f2015-01-09 15:27:08 +08002802static struct tipc_sock *tipc_sk_lookup(struct net *net, u32 portid)
Ying Xue07f6c4b2015-01-07 13:41:58 +08002803{
Ying Xuee05b31f2015-01-09 15:27:08 +08002804 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002805 struct tipc_sock *tsk;
2806
2807 rcu_read_lock();
Herbert Xu6cca72892015-03-20 21:57:05 +11002808 tsk = rhashtable_lookup_fast(&tn->sk_rht, &portid, tsk_rht_params);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002809 if (tsk)
2810 sock_hold(&tsk->sk);
2811 rcu_read_unlock();
2812
2813 return tsk;
2814}
2815
2816static int tipc_sk_insert(struct tipc_sock *tsk)
2817{
Ying Xuee05b31f2015-01-09 15:27:08 +08002818 struct sock *sk = &tsk->sk;
2819 struct net *net = sock_net(sk);
2820 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002821 u32 remaining = (TIPC_MAX_PORT - TIPC_MIN_PORT) + 1;
2822 u32 portid = prandom_u32() % remaining + TIPC_MIN_PORT;
2823
2824 while (remaining--) {
2825 portid++;
2826 if ((portid < TIPC_MIN_PORT) || (portid > TIPC_MAX_PORT))
2827 portid = TIPC_MIN_PORT;
2828 tsk->portid = portid;
2829 sock_hold(&tsk->sk);
Herbert Xu6cca72892015-03-20 21:57:05 +11002830 if (!rhashtable_lookup_insert_fast(&tn->sk_rht, &tsk->node,
2831 tsk_rht_params))
Ying Xue07f6c4b2015-01-07 13:41:58 +08002832 return 0;
2833 sock_put(&tsk->sk);
2834 }
2835
2836 return -1;
2837}
2838
2839static void tipc_sk_remove(struct tipc_sock *tsk)
2840{
2841 struct sock *sk = &tsk->sk;
Ying Xuee05b31f2015-01-09 15:27:08 +08002842 struct tipc_net *tn = net_generic(sock_net(sk), tipc_net_id);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002843
Herbert Xu6cca72892015-03-20 21:57:05 +11002844 if (!rhashtable_remove_fast(&tn->sk_rht, &tsk->node, tsk_rht_params)) {
Reshetova, Elena41c6d652017-06-30 13:08:01 +03002845 WARN_ON(refcount_read(&sk->sk_refcnt) == 1);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002846 __sock_put(sk);
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002847 }
2848}
2849
Herbert Xu6cca72892015-03-20 21:57:05 +11002850static const struct rhashtable_params tsk_rht_params = {
2851 .nelem_hint = 192,
2852 .head_offset = offsetof(struct tipc_sock, node),
2853 .key_offset = offsetof(struct tipc_sock, portid),
2854 .key_len = sizeof(u32), /* portid */
Herbert Xu6cca72892015-03-20 21:57:05 +11002855 .max_size = 1048576,
2856 .min_size = 256,
Thomas Grafb5e2c152015-03-24 20:42:19 +00002857 .automatic_shrinking = true,
Herbert Xu6cca72892015-03-20 21:57:05 +11002858};
2859
Ying Xuee05b31f2015-01-09 15:27:08 +08002860int tipc_sk_rht_init(struct net *net)
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002861{
Ying Xuee05b31f2015-01-09 15:27:08 +08002862 struct tipc_net *tn = net_generic(net, tipc_net_id);
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002863
Herbert Xu6cca72892015-03-20 21:57:05 +11002864 return rhashtable_init(&tn->sk_rht, &tsk_rht_params);
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002865}
2866
Ying Xuee05b31f2015-01-09 15:27:08 +08002867void tipc_sk_rht_destroy(struct net *net)
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002868{
Ying Xuee05b31f2015-01-09 15:27:08 +08002869 struct tipc_net *tn = net_generic(net, tipc_net_id);
2870
Ying Xue07f6c4b2015-01-07 13:41:58 +08002871 /* Wait for socket readers to complete */
2872 synchronize_net();
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002873
Ying Xuee05b31f2015-01-09 15:27:08 +08002874 rhashtable_destroy(&tn->sk_rht);
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002875}
2876
Jon Maloy75da2162017-10-13 11:04:23 +02002877static int tipc_sk_join(struct tipc_sock *tsk, struct tipc_group_req *mreq)
2878{
2879 struct net *net = sock_net(&tsk->sk);
Jon Maloy75da2162017-10-13 11:04:23 +02002880 struct tipc_group *grp = tsk->group;
2881 struct tipc_msg *hdr = &tsk->phdr;
2882 struct tipc_name_seq seq;
2883 int rc;
2884
2885 if (mreq->type < TIPC_RESERVED_TYPES)
2886 return -EACCES;
Jon Maloy232d07b2018-01-08 21:03:30 +01002887 if (mreq->scope > TIPC_NODE_SCOPE)
2888 return -EINVAL;
Jon Maloy75da2162017-10-13 11:04:23 +02002889 if (grp)
2890 return -EACCES;
Jon Maloy60c25302018-01-17 16:42:46 +01002891 grp = tipc_group_create(net, tsk->portid, mreq, &tsk->group_is_open);
Jon Maloy75da2162017-10-13 11:04:23 +02002892 if (!grp)
2893 return -ENOMEM;
2894 tsk->group = grp;
2895 msg_set_lookup_scope(hdr, mreq->scope);
2896 msg_set_nametype(hdr, mreq->type);
2897 msg_set_dest_droppable(hdr, true);
2898 seq.type = mreq->type;
2899 seq.lower = mreq->instance;
2900 seq.upper = seq.lower;
Jon Maloy232d07b2018-01-08 21:03:30 +01002901 tipc_nametbl_build_group(net, grp, mreq->type, mreq->scope);
Jon Maloy75da2162017-10-13 11:04:23 +02002902 rc = tipc_sk_publish(tsk, mreq->scope, &seq);
Cong Wange233df02017-10-24 15:44:49 -07002903 if (rc) {
Jon Maloy75da2162017-10-13 11:04:23 +02002904 tipc_group_delete(net, grp);
Cong Wange233df02017-10-24 15:44:49 -07002905 tsk->group = NULL;
Jon Maloyfebafc82018-01-10 21:08:50 +01002906 return rc;
Cong Wange233df02017-10-24 15:44:49 -07002907 }
Jon Maloyd12d2e12018-01-08 21:03:28 +01002908 /* Eliminate any risk that a broadcast overtakes sent JOINs */
Jon Maloy399574d2017-10-13 11:04:32 +02002909 tsk->mc_method.rcast = true;
2910 tsk->mc_method.mandatory = true;
Jon Maloyd12d2e12018-01-08 21:03:28 +01002911 tipc_group_join(net, grp, &tsk->sk.sk_rcvbuf);
Jon Maloy75da2162017-10-13 11:04:23 +02002912 return rc;
2913}
2914
2915static int tipc_sk_leave(struct tipc_sock *tsk)
2916{
2917 struct net *net = sock_net(&tsk->sk);
2918 struct tipc_group *grp = tsk->group;
2919 struct tipc_name_seq seq;
2920 int scope;
2921
2922 if (!grp)
2923 return -EINVAL;
2924 tipc_group_self(grp, &seq, &scope);
2925 tipc_group_delete(net, grp);
2926 tsk->group = NULL;
2927 tipc_sk_withdraw(tsk, scope, &seq);
2928 return 0;
2929}
2930
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002931/**
Ying Xue247f0f32014-02-18 16:06:46 +08002932 * tipc_setsockopt - set socket option
Per Lidenb97bf3f2006-01-02 19:04:38 +01002933 * @sock: socket structure
2934 * @lvl: option level
2935 * @opt: option identifier
2936 * @ov: pointer to new option value
2937 * @ol: length of option value
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002938 *
2939 * For stream sockets only, accepts and ignores all IPPROTO_TCP options
Per Lidenb97bf3f2006-01-02 19:04:38 +01002940 * (to ease compatibility).
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002941 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002942 * Returns 0 on success, errno otherwise
2943 */
Ying Xue247f0f32014-02-18 16:06:46 +08002944static int tipc_setsockopt(struct socket *sock, int lvl, int opt,
2945 char __user *ov, unsigned int ol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002946{
Allan Stephens0c3141e2008-04-15 00:22:02 -07002947 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002948 struct tipc_sock *tsk = tipc_sk(sk);
Jon Maloy75da2162017-10-13 11:04:23 +02002949 struct tipc_group_req mreq;
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -05002950 u32 value = 0;
Dan Carpentera08ef472017-01-24 12:49:35 +03002951 int res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002952
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002953 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
2954 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002955 if (lvl != SOL_TIPC)
2956 return -ENOPROTOOPT;
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -05002957
2958 switch (opt) {
2959 case TIPC_IMPORTANCE:
2960 case TIPC_SRC_DROPPABLE:
2961 case TIPC_DEST_DROPPABLE:
2962 case TIPC_CONN_TIMEOUT:
2963 if (ol < sizeof(value))
2964 return -EINVAL;
Jon Maloy75da2162017-10-13 11:04:23 +02002965 if (get_user(value, (u32 __user *)ov))
2966 return -EFAULT;
2967 break;
2968 case TIPC_GROUP_JOIN:
2969 if (ol < sizeof(mreq))
2970 return -EINVAL;
2971 if (copy_from_user(&mreq, ov, sizeof(mreq)))
2972 return -EFAULT;
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -05002973 break;
2974 default:
2975 if (ov || ol)
2976 return -EINVAL;
2977 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002978
Allan Stephens0c3141e2008-04-15 00:22:02 -07002979 lock_sock(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002980
Per Lidenb97bf3f2006-01-02 19:04:38 +01002981 switch (opt) {
2982 case TIPC_IMPORTANCE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002983 res = tsk_set_importance(tsk, value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002984 break;
2985 case TIPC_SRC_DROPPABLE:
2986 if (sock->type != SOCK_STREAM)
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002987 tsk_set_unreliable(tsk, value);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002988 else
Per Lidenb97bf3f2006-01-02 19:04:38 +01002989 res = -ENOPROTOOPT;
2990 break;
2991 case TIPC_DEST_DROPPABLE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002992 tsk_set_unreturnable(tsk, value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002993 break;
2994 case TIPC_CONN_TIMEOUT:
Allan Stephensa0f40f02011-05-26 13:44:34 -04002995 tipc_sk(sk)->conn_timeout = value;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002996 break;
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -05002997 case TIPC_MCAST_BROADCAST:
2998 tsk->mc_method.rcast = false;
2999 tsk->mc_method.mandatory = true;
3000 break;
3001 case TIPC_MCAST_REPLICAST:
3002 tsk->mc_method.rcast = true;
3003 tsk->mc_method.mandatory = true;
3004 break;
Jon Maloy75da2162017-10-13 11:04:23 +02003005 case TIPC_GROUP_JOIN:
3006 res = tipc_sk_join(tsk, &mreq);
3007 break;
3008 case TIPC_GROUP_LEAVE:
3009 res = tipc_sk_leave(tsk);
3010 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01003011 default:
3012 res = -EINVAL;
3013 }
3014
Allan Stephens0c3141e2008-04-15 00:22:02 -07003015 release_sock(sk);
3016
Per Lidenb97bf3f2006-01-02 19:04:38 +01003017 return res;
3018}
3019
3020/**
Ying Xue247f0f32014-02-18 16:06:46 +08003021 * tipc_getsockopt - get socket option
Per Lidenb97bf3f2006-01-02 19:04:38 +01003022 * @sock: socket structure
3023 * @lvl: option level
3024 * @opt: option identifier
3025 * @ov: receptacle for option value
3026 * @ol: receptacle for length of option value
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003027 *
3028 * For stream sockets only, returns 0 length result for all IPPROTO_TCP options
Per Lidenb97bf3f2006-01-02 19:04:38 +01003029 * (to ease compatibility).
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003030 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01003031 * Returns 0 on success, errno otherwise
3032 */
Ying Xue247f0f32014-02-18 16:06:46 +08003033static int tipc_getsockopt(struct socket *sock, int lvl, int opt,
3034 char __user *ov, int __user *ol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01003035{
Allan Stephens0c3141e2008-04-15 00:22:02 -07003036 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04003037 struct tipc_sock *tsk = tipc_sk(sk);
Jon Maloy75da2162017-10-13 11:04:23 +02003038 struct tipc_name_seq seq;
3039 int len, scope;
Per Lidenb97bf3f2006-01-02 19:04:38 +01003040 u32 value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003041 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01003042
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003043 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
3044 return put_user(0, ol);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003045 if (lvl != SOL_TIPC)
3046 return -ENOPROTOOPT;
Allan Stephens2db99832010-12-31 18:59:33 +00003047 res = get_user(len, ol);
3048 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003049 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01003050
Allan Stephens0c3141e2008-04-15 00:22:02 -07003051 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003052
3053 switch (opt) {
3054 case TIPC_IMPORTANCE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04003055 value = tsk_importance(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003056 break;
3057 case TIPC_SRC_DROPPABLE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04003058 value = tsk_unreliable(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003059 break;
3060 case TIPC_DEST_DROPPABLE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04003061 value = tsk_unreturnable(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003062 break;
3063 case TIPC_CONN_TIMEOUT:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04003064 value = tsk->conn_timeout;
Allan Stephens0c3141e2008-04-15 00:22:02 -07003065 /* no need to set "res", since already 0 at this point */
Per Lidenb97bf3f2006-01-02 19:04:38 +01003066 break;
Allan Stephens0e659672010-12-31 18:59:32 +00003067 case TIPC_NODE_RECVQ_DEPTH:
Ying Xue9da3d472012-11-27 06:15:27 -05003068 value = 0; /* was tipc_queue_size, now obsolete */
oscar.medina@motorola.com66506132009-06-30 03:25:39 +00003069 break;
Allan Stephens0e659672010-12-31 18:59:32 +00003070 case TIPC_SOCK_RECVQ_DEPTH:
oscar.medina@motorola.com66506132009-06-30 03:25:39 +00003071 value = skb_queue_len(&sk->sk_receive_queue);
3072 break;
Jon Maloy75da2162017-10-13 11:04:23 +02003073 case TIPC_GROUP_JOIN:
3074 seq.type = 0;
3075 if (tsk->group)
3076 tipc_group_self(tsk->group, &seq, &scope);
3077 value = seq.type;
3078 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01003079 default:
3080 res = -EINVAL;
3081 }
3082
Allan Stephens0c3141e2008-04-15 00:22:02 -07003083 release_sock(sk);
3084
Paul Gortmaker25860c32010-12-31 18:59:31 +00003085 if (res)
3086 return res; /* "get" failed */
Per Lidenb97bf3f2006-01-02 19:04:38 +01003087
Paul Gortmaker25860c32010-12-31 18:59:31 +00003088 if (len < sizeof(value))
3089 return -EINVAL;
3090
3091 if (copy_to_user(ov, &value, sizeof(value)))
3092 return -EFAULT;
3093
3094 return put_user(sizeof(value), ol);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003095}
3096
Ying Xuef2f98002015-01-09 15:27:05 +08003097static int tipc_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
Erik Hugne78acb1f2014-04-24 16:26:47 +02003098{
Jon Maloy3e5cf362018-04-25 19:29:36 +02003099 struct net *net = sock_net(sock->sk);
3100 struct tipc_sioc_nodeid_req nr = {0};
Erik Hugne78acb1f2014-04-24 16:26:47 +02003101 struct tipc_sioc_ln_req lnr;
3102 void __user *argp = (void __user *)arg;
3103
3104 switch (cmd) {
3105 case SIOCGETLINKNAME:
3106 if (copy_from_user(&lnr, argp, sizeof(lnr)))
3107 return -EFAULT;
Jon Maloy3e5cf362018-04-25 19:29:36 +02003108 if (!tipc_node_get_linkname(net,
Ying Xuef2f98002015-01-09 15:27:05 +08003109 lnr.bearer_id & 0xffff, lnr.peer,
Erik Hugne78acb1f2014-04-24 16:26:47 +02003110 lnr.linkname, TIPC_MAX_LINK_NAME)) {
3111 if (copy_to_user(argp, &lnr, sizeof(lnr)))
3112 return -EFAULT;
3113 return 0;
3114 }
3115 return -EADDRNOTAVAIL;
Jon Maloy3e5cf362018-04-25 19:29:36 +02003116 case SIOCGETNODEID:
3117 if (copy_from_user(&nr, argp, sizeof(nr)))
3118 return -EFAULT;
3119 if (!tipc_node_get_id(net, nr.peer, nr.node_id))
3120 return -EADDRNOTAVAIL;
3121 if (copy_to_user(argp, &nr, sizeof(nr)))
3122 return -EFAULT;
3123 return 0;
Erik Hugne78acb1f2014-04-24 16:26:47 +02003124 default:
3125 return -ENOIOCTLCMD;
3126 }
3127}
3128
Erik Hugne70b03752017-03-29 11:22:16 +02003129static int tipc_socketpair(struct socket *sock1, struct socket *sock2)
3130{
3131 struct tipc_sock *tsk2 = tipc_sk(sock2->sk);
3132 struct tipc_sock *tsk1 = tipc_sk(sock1->sk);
Erik Hugne66bc1e82017-03-29 11:22:17 +02003133 u32 onode = tipc_own_addr(sock_net(sock1->sk));
Erik Hugne70b03752017-03-29 11:22:16 +02003134
Erik Hugne66bc1e82017-03-29 11:22:17 +02003135 tsk1->peer.family = AF_TIPC;
3136 tsk1->peer.addrtype = TIPC_ADDR_ID;
3137 tsk1->peer.scope = TIPC_NODE_SCOPE;
3138 tsk1->peer.addr.id.ref = tsk2->portid;
3139 tsk1->peer.addr.id.node = onode;
3140 tsk2->peer.family = AF_TIPC;
3141 tsk2->peer.addrtype = TIPC_ADDR_ID;
3142 tsk2->peer.scope = TIPC_NODE_SCOPE;
3143 tsk2->peer.addr.id.ref = tsk1->portid;
3144 tsk2->peer.addr.id.node = onode;
3145
3146 tipc_sk_finish_conn(tsk1, tsk2->portid, onode);
3147 tipc_sk_finish_conn(tsk2, tsk1->portid, onode);
Erik Hugne70b03752017-03-29 11:22:16 +02003148 return 0;
3149}
3150
Ben Hutchingsae86b9e2012-07-10 10:55:35 +00003151/* Protocol switches for the various types of TIPC sockets */
3152
Florian Westphalbca65ea2008-02-07 18:18:01 -08003153static const struct proto_ops msg_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00003154 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01003155 .family = AF_TIPC,
Ying Xue247f0f32014-02-18 16:06:46 +08003156 .release = tipc_release,
3157 .bind = tipc_bind,
3158 .connect = tipc_connect,
Erik Hugne66bc1e82017-03-29 11:22:17 +02003159 .socketpair = tipc_socketpair,
Ying Xue245f3d32011-07-06 06:01:13 -04003160 .accept = sock_no_accept,
Ying Xue247f0f32014-02-18 16:06:46 +08003161 .getname = tipc_getname,
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07003162 .poll = tipc_poll,
Erik Hugne78acb1f2014-04-24 16:26:47 +02003163 .ioctl = tipc_ioctl,
Ying Xue245f3d32011-07-06 06:01:13 -04003164 .listen = sock_no_listen,
Ying Xue247f0f32014-02-18 16:06:46 +08003165 .shutdown = tipc_shutdown,
3166 .setsockopt = tipc_setsockopt,
3167 .getsockopt = tipc_getsockopt,
3168 .sendmsg = tipc_sendmsg,
3169 .recvmsg = tipc_recvmsg,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09003170 .mmap = sock_no_mmap,
3171 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01003172};
3173
Florian Westphalbca65ea2008-02-07 18:18:01 -08003174static const struct proto_ops packet_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00003175 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01003176 .family = AF_TIPC,
Ying Xue247f0f32014-02-18 16:06:46 +08003177 .release = tipc_release,
3178 .bind = tipc_bind,
3179 .connect = tipc_connect,
Erik Hugne70b03752017-03-29 11:22:16 +02003180 .socketpair = tipc_socketpair,
Ying Xue247f0f32014-02-18 16:06:46 +08003181 .accept = tipc_accept,
3182 .getname = tipc_getname,
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07003183 .poll = tipc_poll,
Erik Hugne78acb1f2014-04-24 16:26:47 +02003184 .ioctl = tipc_ioctl,
Ying Xue247f0f32014-02-18 16:06:46 +08003185 .listen = tipc_listen,
3186 .shutdown = tipc_shutdown,
3187 .setsockopt = tipc_setsockopt,
3188 .getsockopt = tipc_getsockopt,
3189 .sendmsg = tipc_send_packet,
3190 .recvmsg = tipc_recvmsg,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09003191 .mmap = sock_no_mmap,
3192 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01003193};
3194
Florian Westphalbca65ea2008-02-07 18:18:01 -08003195static const struct proto_ops stream_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00003196 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01003197 .family = AF_TIPC,
Ying Xue247f0f32014-02-18 16:06:46 +08003198 .release = tipc_release,
3199 .bind = tipc_bind,
3200 .connect = tipc_connect,
Erik Hugne70b03752017-03-29 11:22:16 +02003201 .socketpair = tipc_socketpair,
Ying Xue247f0f32014-02-18 16:06:46 +08003202 .accept = tipc_accept,
3203 .getname = tipc_getname,
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07003204 .poll = tipc_poll,
Erik Hugne78acb1f2014-04-24 16:26:47 +02003205 .ioctl = tipc_ioctl,
Ying Xue247f0f32014-02-18 16:06:46 +08003206 .listen = tipc_listen,
3207 .shutdown = tipc_shutdown,
3208 .setsockopt = tipc_setsockopt,
3209 .getsockopt = tipc_getsockopt,
Jon Paul Maloy365ad352017-01-03 10:55:11 -05003210 .sendmsg = tipc_sendstream,
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02003211 .recvmsg = tipc_recvstream,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09003212 .mmap = sock_no_mmap,
3213 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01003214};
3215
Florian Westphalbca65ea2008-02-07 18:18:01 -08003216static const struct net_proto_family tipc_family_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00003217 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01003218 .family = AF_TIPC,
Ying Xuec5fa7b32013-06-17 10:54:39 -04003219 .create = tipc_sk_create
Per Lidenb97bf3f2006-01-02 19:04:38 +01003220};
3221
3222static struct proto tipc_proto = {
3223 .name = "TIPC",
3224 .owner = THIS_MODULE,
Ying Xuecc79dd12013-06-17 10:54:37 -04003225 .obj_size = sizeof(struct tipc_sock),
3226 .sysctl_rmem = sysctl_tipc_rmem
Per Lidenb97bf3f2006-01-02 19:04:38 +01003227};
3228
3229/**
Per Liden4323add2006-01-18 00:38:21 +01003230 * tipc_socket_init - initialize TIPC socket interface
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003231 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01003232 * Returns 0 on success, errno otherwise
3233 */
Per Liden4323add2006-01-18 00:38:21 +01003234int tipc_socket_init(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +01003235{
3236 int res;
3237
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003238 res = proto_register(&tipc_proto, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003239 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04003240 pr_err("Failed to register TIPC protocol type\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01003241 goto out;
3242 }
3243
3244 res = sock_register(&tipc_family_ops);
3245 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04003246 pr_err("Failed to register TIPC socket type\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01003247 proto_unregister(&tipc_proto);
3248 goto out;
3249 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01003250 out:
3251 return res;
3252}
3253
3254/**
Per Liden4323add2006-01-18 00:38:21 +01003255 * tipc_socket_stop - stop TIPC socket interface
Per Lidenb97bf3f2006-01-02 19:04:38 +01003256 */
Per Liden4323add2006-01-18 00:38:21 +01003257void tipc_socket_stop(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +01003258{
Per Lidenb97bf3f2006-01-02 19:04:38 +01003259 sock_unregister(tipc_family_ops.family);
3260 proto_unregister(&tipc_proto);
3261}
Richard Alpe34b78a122014-11-20 10:29:10 +01003262
3263/* Caller should hold socket lock for the passed tipc socket. */
Richard Alped8182802014-11-24 11:10:29 +01003264static int __tipc_nl_add_sk_con(struct sk_buff *skb, struct tipc_sock *tsk)
Richard Alpe34b78a122014-11-20 10:29:10 +01003265{
3266 u32 peer_node;
3267 u32 peer_port;
3268 struct nlattr *nest;
3269
3270 peer_node = tsk_peer_node(tsk);
3271 peer_port = tsk_peer_port(tsk);
3272
3273 nest = nla_nest_start(skb, TIPC_NLA_SOCK_CON);
Kangjie Lu517ccc22019-03-16 16:46:05 -05003274 if (!nest)
3275 return -EMSGSIZE;
Richard Alpe34b78a122014-11-20 10:29:10 +01003276
3277 if (nla_put_u32(skb, TIPC_NLA_CON_NODE, peer_node))
3278 goto msg_full;
3279 if (nla_put_u32(skb, TIPC_NLA_CON_SOCK, peer_port))
3280 goto msg_full;
3281
3282 if (tsk->conn_type != 0) {
3283 if (nla_put_flag(skb, TIPC_NLA_CON_FLAG))
3284 goto msg_full;
3285 if (nla_put_u32(skb, TIPC_NLA_CON_TYPE, tsk->conn_type))
3286 goto msg_full;
3287 if (nla_put_u32(skb, TIPC_NLA_CON_INST, tsk->conn_instance))
3288 goto msg_full;
3289 }
3290 nla_nest_end(skb, nest);
3291
3292 return 0;
3293
3294msg_full:
3295 nla_nest_cancel(skb, nest);
3296
3297 return -EMSGSIZE;
3298}
3299
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003300static int __tipc_nl_add_sk_info(struct sk_buff *skb, struct tipc_sock
3301 *tsk)
3302{
3303 struct net *net = sock_net(skb->sk);
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003304 struct sock *sk = &tsk->sk;
3305
3306 if (nla_put_u32(skb, TIPC_NLA_SOCK_REF, tsk->portid) ||
Jon Maloy23fd3ea2018-03-22 20:42:49 +01003307 nla_put_u32(skb, TIPC_NLA_SOCK_ADDR, tipc_own_addr(net)))
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003308 return -EMSGSIZE;
3309
3310 if (tipc_sk_connected(sk)) {
3311 if (__tipc_nl_add_sk_con(skb, tsk))
3312 return -EMSGSIZE;
3313 } else if (!list_empty(&tsk->publications)) {
3314 if (nla_put_flag(skb, TIPC_NLA_SOCK_HAS_PUBL))
3315 return -EMSGSIZE;
3316 }
3317 return 0;
3318}
3319
Richard Alpe34b78a122014-11-20 10:29:10 +01003320/* Caller should hold socket lock for the passed tipc socket. */
Richard Alped8182802014-11-24 11:10:29 +01003321static int __tipc_nl_add_sk(struct sk_buff *skb, struct netlink_callback *cb,
3322 struct tipc_sock *tsk)
Richard Alpe34b78a122014-11-20 10:29:10 +01003323{
Richard Alpe34b78a122014-11-20 10:29:10 +01003324 struct nlattr *attrs;
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003325 void *hdr;
Richard Alpe34b78a122014-11-20 10:29:10 +01003326
3327 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
Richard Alpebfb3e5d2015-02-09 09:50:03 +01003328 &tipc_genl_family, NLM_F_MULTI, TIPC_NL_SOCK_GET);
Richard Alpe34b78a122014-11-20 10:29:10 +01003329 if (!hdr)
3330 goto msg_cancel;
3331
3332 attrs = nla_nest_start(skb, TIPC_NLA_SOCK);
3333 if (!attrs)
3334 goto genlmsg_cancel;
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003335
3336 if (__tipc_nl_add_sk_info(skb, tsk))
Richard Alpe34b78a122014-11-20 10:29:10 +01003337 goto attr_msg_cancel;
3338
Richard Alpe34b78a122014-11-20 10:29:10 +01003339 nla_nest_end(skb, attrs);
3340 genlmsg_end(skb, hdr);
3341
3342 return 0;
3343
3344attr_msg_cancel:
3345 nla_nest_cancel(skb, attrs);
3346genlmsg_cancel:
3347 genlmsg_cancel(skb, hdr);
3348msg_cancel:
3349 return -EMSGSIZE;
3350}
3351
GhantaKrishnamurthy MohanKrishnac30b70d2018-03-21 14:37:44 +01003352int tipc_nl_sk_walk(struct sk_buff *skb, struct netlink_callback *cb,
3353 int (*skb_handler)(struct sk_buff *skb,
3354 struct netlink_callback *cb,
3355 struct tipc_sock *tsk))
Richard Alpe34b78a122014-11-20 10:29:10 +01003356{
Cong Wang8f5c5fc2018-09-04 14:54:55 -07003357 struct rhashtable_iter *iter = (void *)cb->args[4];
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003358 struct tipc_sock *tsk;
3359 int err;
Richard Alpe34b78a122014-11-20 10:29:10 +01003360
Cong Wang9a07efa2018-08-24 12:28:06 -07003361 rhashtable_walk_start(iter);
3362 while ((tsk = rhashtable_walk_next(iter)) != NULL) {
3363 if (IS_ERR(tsk)) {
3364 err = PTR_ERR(tsk);
3365 if (err == -EAGAIN) {
3366 err = 0;
Richard Alped6e164e2015-01-16 12:30:40 +01003367 continue;
3368 }
Cong Wang9a07efa2018-08-24 12:28:06 -07003369 break;
Ying Xue07f6c4b2015-01-07 13:41:58 +08003370 }
Richard Alpe34b78a122014-11-20 10:29:10 +01003371
Cong Wang9a07efa2018-08-24 12:28:06 -07003372 sock_hold(&tsk->sk);
3373 rhashtable_walk_stop(iter);
3374 lock_sock(&tsk->sk);
3375 err = skb_handler(skb, cb, tsk);
3376 if (err) {
3377 release_sock(&tsk->sk);
3378 sock_put(&tsk->sk);
3379 goto out;
3380 }
3381 release_sock(&tsk->sk);
3382 rhashtable_walk_start(iter);
3383 sock_put(&tsk->sk);
3384 }
3385 rhashtable_walk_stop(iter);
3386out:
Richard Alpe34b78a122014-11-20 10:29:10 +01003387 return skb->len;
3388}
GhantaKrishnamurthy MohanKrishnac30b70d2018-03-21 14:37:44 +01003389EXPORT_SYMBOL(tipc_nl_sk_walk);
3390
Cong Wang9a07efa2018-08-24 12:28:06 -07003391int tipc_dump_start(struct netlink_callback *cb)
3392{
Cong Wang8f5c5fc2018-09-04 14:54:55 -07003393 return __tipc_dump_start(cb, sock_net(cb->skb->sk));
3394}
3395EXPORT_SYMBOL(tipc_dump_start);
3396
3397int __tipc_dump_start(struct netlink_callback *cb, struct net *net)
3398{
3399 /* tipc_nl_name_table_dump() uses cb->args[0...3]. */
3400 struct rhashtable_iter *iter = (void *)cb->args[4];
Cong Wang9a07efa2018-08-24 12:28:06 -07003401 struct tipc_net *tn = tipc_net(net);
3402
3403 if (!iter) {
3404 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
3405 if (!iter)
3406 return -ENOMEM;
3407
Cong Wang8f5c5fc2018-09-04 14:54:55 -07003408 cb->args[4] = (long)iter;
Cong Wang9a07efa2018-08-24 12:28:06 -07003409 }
3410
3411 rhashtable_walk_enter(&tn->sk_rht, iter);
3412 return 0;
3413}
Cong Wang9a07efa2018-08-24 12:28:06 -07003414
3415int tipc_dump_done(struct netlink_callback *cb)
3416{
Cong Wang8f5c5fc2018-09-04 14:54:55 -07003417 struct rhashtable_iter *hti = (void *)cb->args[4];
Cong Wang9a07efa2018-08-24 12:28:06 -07003418
3419 rhashtable_walk_exit(hti);
3420 kfree(hti);
3421 return 0;
3422}
3423EXPORT_SYMBOL(tipc_dump_done);
3424
Cong Wange41f0542018-04-06 18:54:52 -07003425int tipc_sk_fill_sock_diag(struct sk_buff *skb, struct netlink_callback *cb,
3426 struct tipc_sock *tsk, u32 sk_filter_state,
GhantaKrishnamurthy MohanKrishnac30b70d2018-03-21 14:37:44 +01003427 u64 (*tipc_diag_gen_cookie)(struct sock *sk))
3428{
3429 struct sock *sk = &tsk->sk;
3430 struct nlattr *attrs;
3431 struct nlattr *stat;
3432
3433 /*filter response w.r.t sk_state*/
3434 if (!(sk_filter_state & (1 << sk->sk_state)))
3435 return 0;
3436
3437 attrs = nla_nest_start(skb, TIPC_NLA_SOCK);
3438 if (!attrs)
3439 goto msg_cancel;
3440
3441 if (__tipc_nl_add_sk_info(skb, tsk))
3442 goto attr_msg_cancel;
3443
3444 if (nla_put_u32(skb, TIPC_NLA_SOCK_TYPE, (u32)sk->sk_type) ||
3445 nla_put_u32(skb, TIPC_NLA_SOCK_TIPC_STATE, (u32)sk->sk_state) ||
3446 nla_put_u32(skb, TIPC_NLA_SOCK_INO, sock_i_ino(sk)) ||
3447 nla_put_u32(skb, TIPC_NLA_SOCK_UID,
Cong Wange41f0542018-04-06 18:54:52 -07003448 from_kuid_munged(sk_user_ns(NETLINK_CB(cb->skb).sk),
GhantaKrishnamurthy MohanKrishna4b2e6872018-04-04 14:49:47 +02003449 sock_i_uid(sk))) ||
GhantaKrishnamurthy MohanKrishnac30b70d2018-03-21 14:37:44 +01003450 nla_put_u64_64bit(skb, TIPC_NLA_SOCK_COOKIE,
3451 tipc_diag_gen_cookie(sk),
3452 TIPC_NLA_SOCK_PAD))
3453 goto attr_msg_cancel;
3454
3455 stat = nla_nest_start(skb, TIPC_NLA_SOCK_STAT);
3456 if (!stat)
3457 goto attr_msg_cancel;
3458
3459 if (nla_put_u32(skb, TIPC_NLA_SOCK_STAT_RCVQ,
3460 skb_queue_len(&sk->sk_receive_queue)) ||
3461 nla_put_u32(skb, TIPC_NLA_SOCK_STAT_SENDQ,
GhantaKrishnamurthy MohanKrishna872619d2018-03-21 14:37:45 +01003462 skb_queue_len(&sk->sk_write_queue)) ||
3463 nla_put_u32(skb, TIPC_NLA_SOCK_STAT_DROP,
3464 atomic_read(&sk->sk_drops)))
GhantaKrishnamurthy MohanKrishnac30b70d2018-03-21 14:37:44 +01003465 goto stat_msg_cancel;
3466
3467 if (tsk->cong_link_cnt &&
3468 nla_put_flag(skb, TIPC_NLA_SOCK_STAT_LINK_CONG))
3469 goto stat_msg_cancel;
3470
3471 if (tsk_conn_cong(tsk) &&
3472 nla_put_flag(skb, TIPC_NLA_SOCK_STAT_CONN_CONG))
3473 goto stat_msg_cancel;
3474
3475 nla_nest_end(skb, stat);
GhantaKrishnamurthy MohanKrishnaa1be5a22018-06-29 13:26:18 +02003476
3477 if (tsk->group)
3478 if (tipc_group_fill_sock_diag(tsk->group, skb))
3479 goto stat_msg_cancel;
3480
GhantaKrishnamurthy MohanKrishnac30b70d2018-03-21 14:37:44 +01003481 nla_nest_end(skb, attrs);
3482
3483 return 0;
3484
3485stat_msg_cancel:
3486 nla_nest_cancel(skb, stat);
3487attr_msg_cancel:
3488 nla_nest_cancel(skb, attrs);
3489msg_cancel:
3490 return -EMSGSIZE;
3491}
3492EXPORT_SYMBOL(tipc_sk_fill_sock_diag);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003493
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003494int tipc_nl_sk_dump(struct sk_buff *skb, struct netlink_callback *cb)
3495{
GhantaKrishnamurthy MohanKrishnac30b70d2018-03-21 14:37:44 +01003496 return tipc_nl_sk_walk(skb, cb, __tipc_nl_add_sk);
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003497}
3498
Richard Alpe1a1a1432014-11-20 10:29:11 +01003499/* Caller should hold socket lock for the passed tipc socket. */
Richard Alped8182802014-11-24 11:10:29 +01003500static int __tipc_nl_add_sk_publ(struct sk_buff *skb,
3501 struct netlink_callback *cb,
3502 struct publication *publ)
Richard Alpe1a1a1432014-11-20 10:29:11 +01003503{
3504 void *hdr;
3505 struct nlattr *attrs;
3506
3507 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
Richard Alpebfb3e5d2015-02-09 09:50:03 +01003508 &tipc_genl_family, NLM_F_MULTI, TIPC_NL_PUBL_GET);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003509 if (!hdr)
3510 goto msg_cancel;
3511
3512 attrs = nla_nest_start(skb, TIPC_NLA_PUBL);
3513 if (!attrs)
3514 goto genlmsg_cancel;
3515
3516 if (nla_put_u32(skb, TIPC_NLA_PUBL_KEY, publ->key))
3517 goto attr_msg_cancel;
3518 if (nla_put_u32(skb, TIPC_NLA_PUBL_TYPE, publ->type))
3519 goto attr_msg_cancel;
3520 if (nla_put_u32(skb, TIPC_NLA_PUBL_LOWER, publ->lower))
3521 goto attr_msg_cancel;
3522 if (nla_put_u32(skb, TIPC_NLA_PUBL_UPPER, publ->upper))
3523 goto attr_msg_cancel;
3524
3525 nla_nest_end(skb, attrs);
3526 genlmsg_end(skb, hdr);
3527
3528 return 0;
3529
3530attr_msg_cancel:
3531 nla_nest_cancel(skb, attrs);
3532genlmsg_cancel:
3533 genlmsg_cancel(skb, hdr);
3534msg_cancel:
3535 return -EMSGSIZE;
3536}
3537
3538/* Caller should hold socket lock for the passed tipc socket. */
Richard Alped8182802014-11-24 11:10:29 +01003539static int __tipc_nl_list_sk_publ(struct sk_buff *skb,
3540 struct netlink_callback *cb,
3541 struct tipc_sock *tsk, u32 *last_publ)
Richard Alpe1a1a1432014-11-20 10:29:11 +01003542{
3543 int err;
3544 struct publication *p;
3545
3546 if (*last_publ) {
Jon Maloye50e73e2018-03-15 16:48:55 +01003547 list_for_each_entry(p, &tsk->publications, binding_sock) {
Richard Alpe1a1a1432014-11-20 10:29:11 +01003548 if (p->key == *last_publ)
3549 break;
3550 }
3551 if (p->key != *last_publ) {
3552 /* We never set seq or call nl_dump_check_consistent()
3553 * this means that setting prev_seq here will cause the
3554 * consistence check to fail in the netlink callback
3555 * handler. Resulting in the last NLMSG_DONE message
3556 * having the NLM_F_DUMP_INTR flag set.
3557 */
3558 cb->prev_seq = 1;
3559 *last_publ = 0;
3560 return -EPIPE;
3561 }
3562 } else {
3563 p = list_first_entry(&tsk->publications, struct publication,
Jon Maloye50e73e2018-03-15 16:48:55 +01003564 binding_sock);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003565 }
3566
Jon Maloye50e73e2018-03-15 16:48:55 +01003567 list_for_each_entry_from(p, &tsk->publications, binding_sock) {
Richard Alpe1a1a1432014-11-20 10:29:11 +01003568 err = __tipc_nl_add_sk_publ(skb, cb, p);
3569 if (err) {
3570 *last_publ = p->key;
3571 return err;
3572 }
3573 }
3574 *last_publ = 0;
3575
3576 return 0;
3577}
3578
3579int tipc_nl_publ_dump(struct sk_buff *skb, struct netlink_callback *cb)
3580{
3581 int err;
Ying Xue07f6c4b2015-01-07 13:41:58 +08003582 u32 tsk_portid = cb->args[0];
Richard Alpe1a1a1432014-11-20 10:29:11 +01003583 u32 last_publ = cb->args[1];
3584 u32 done = cb->args[2];
Ying Xuee05b31f2015-01-09 15:27:08 +08003585 struct net *net = sock_net(skb->sk);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003586 struct tipc_sock *tsk;
3587
Ying Xue07f6c4b2015-01-07 13:41:58 +08003588 if (!tsk_portid) {
Richard Alpe1a1a1432014-11-20 10:29:11 +01003589 struct nlattr **attrs;
3590 struct nlattr *sock[TIPC_NLA_SOCK_MAX + 1];
3591
3592 err = tipc_nlmsg_parse(cb->nlh, &attrs);
3593 if (err)
3594 return err;
3595
Richard Alpe45e093a2016-05-16 11:14:54 +02003596 if (!attrs[TIPC_NLA_SOCK])
3597 return -EINVAL;
3598
Richard Alpe1a1a1432014-11-20 10:29:11 +01003599 err = nla_parse_nested(sock, TIPC_NLA_SOCK_MAX,
3600 attrs[TIPC_NLA_SOCK],
Johannes Bergfceb6432017-04-12 14:34:07 +02003601 tipc_nl_sock_policy, NULL);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003602 if (err)
3603 return err;
3604
3605 if (!sock[TIPC_NLA_SOCK_REF])
3606 return -EINVAL;
3607
Ying Xue07f6c4b2015-01-07 13:41:58 +08003608 tsk_portid = nla_get_u32(sock[TIPC_NLA_SOCK_REF]);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003609 }
3610
3611 if (done)
3612 return 0;
3613
Ying Xuee05b31f2015-01-09 15:27:08 +08003614 tsk = tipc_sk_lookup(net, tsk_portid);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003615 if (!tsk)
3616 return -EINVAL;
3617
3618 lock_sock(&tsk->sk);
3619 err = __tipc_nl_list_sk_publ(skb, cb, tsk, &last_publ);
3620 if (!err)
3621 done = 1;
3622 release_sock(&tsk->sk);
Ying Xue07f6c4b2015-01-07 13:41:58 +08003623 sock_put(&tsk->sk);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003624
Ying Xue07f6c4b2015-01-07 13:41:58 +08003625 cb->args[0] = tsk_portid;
Richard Alpe1a1a1432014-11-20 10:29:11 +01003626 cb->args[1] = last_publ;
3627 cb->args[2] = done;
3628
3629 return skb->len;
3630}
Tuong Lienb4b97712018-12-19 09:17:56 +07003631
Tuong Lien01e661e2018-12-19 09:17:58 +07003632/**
3633 * tipc_sk_filtering - check if a socket should be traced
3634 * @sk: the socket to be examined
3635 * @sysctl_tipc_sk_filter[]: the socket tuple for filtering,
3636 * (portid, sock type, name type, name lower, name upper)
3637 *
3638 * Returns true if the socket meets the socket tuple data
3639 * (value 0 = 'any') or when there is no tuple set (all = 0),
3640 * otherwise false
3641 */
3642bool tipc_sk_filtering(struct sock *sk)
3643{
3644 struct tipc_sock *tsk;
3645 struct publication *p;
3646 u32 _port, _sktype, _type, _lower, _upper;
3647 u32 type = 0, lower = 0, upper = 0;
3648
3649 if (!sk)
3650 return true;
3651
3652 tsk = tipc_sk(sk);
3653
3654 _port = sysctl_tipc_sk_filter[0];
3655 _sktype = sysctl_tipc_sk_filter[1];
3656 _type = sysctl_tipc_sk_filter[2];
3657 _lower = sysctl_tipc_sk_filter[3];
3658 _upper = sysctl_tipc_sk_filter[4];
3659
3660 if (!_port && !_sktype && !_type && !_lower && !_upper)
3661 return true;
3662
3663 if (_port)
3664 return (_port == tsk->portid);
3665
3666 if (_sktype && _sktype != sk->sk_type)
3667 return false;
3668
3669 if (tsk->published) {
3670 p = list_first_entry_or_null(&tsk->publications,
3671 struct publication, binding_sock);
3672 if (p) {
3673 type = p->type;
3674 lower = p->lower;
3675 upper = p->upper;
3676 }
3677 }
3678
3679 if (!tipc_sk_type_connectionless(sk)) {
3680 type = tsk->conn_type;
3681 lower = tsk->conn_instance;
3682 upper = tsk->conn_instance;
3683 }
3684
3685 if ((_type && _type != type) || (_lower && _lower != lower) ||
3686 (_upper && _upper != upper))
3687 return false;
3688
3689 return true;
3690}
3691
Tuong Lienb4b97712018-12-19 09:17:56 +07003692u32 tipc_sock_get_portid(struct sock *sk)
3693{
3694 return (sk) ? (tipc_sk(sk))->portid : 0;
3695}
3696
3697/**
Tuong Lien01e661e2018-12-19 09:17:58 +07003698 * tipc_sk_overlimit1 - check if socket rx queue is about to be overloaded,
3699 * both the rcv and backlog queues are considered
3700 * @sk: tipc sk to be checked
3701 * @skb: tipc msg to be checked
3702 *
3703 * Returns true if the socket rx queue allocation is > 90%, otherwise false
3704 */
3705
3706bool tipc_sk_overlimit1(struct sock *sk, struct sk_buff *skb)
3707{
3708 atomic_t *dcnt = &tipc_sk(sk)->dupl_rcvcnt;
3709 unsigned int lim = rcvbuf_limit(sk, skb) + atomic_read(dcnt);
3710 unsigned int qsize = sk->sk_backlog.len + sk_rmem_alloc_get(sk);
3711
3712 return (qsize > lim * 90 / 100);
3713}
3714
3715/**
3716 * tipc_sk_overlimit2 - check if socket rx queue is about to be overloaded,
3717 * only the rcv queue is considered
3718 * @sk: tipc sk to be checked
3719 * @skb: tipc msg to be checked
3720 *
3721 * Returns true if the socket rx queue allocation is > 90%, otherwise false
3722 */
3723
3724bool tipc_sk_overlimit2(struct sock *sk, struct sk_buff *skb)
3725{
3726 unsigned int lim = rcvbuf_limit(sk, skb);
3727 unsigned int qsize = sk_rmem_alloc_get(sk);
3728
3729 return (qsize > lim * 90 / 100);
3730}
3731
3732/**
Tuong Lienb4b97712018-12-19 09:17:56 +07003733 * tipc_sk_dump - dump TIPC socket
3734 * @sk: tipc sk to be dumped
3735 * @dqueues: bitmask to decide if any socket queue to be dumped?
3736 * - TIPC_DUMP_NONE: don't dump socket queues
3737 * - TIPC_DUMP_SK_SNDQ: dump socket send queue
3738 * - TIPC_DUMP_SK_RCVQ: dump socket rcv queue
3739 * - TIPC_DUMP_SK_BKLGQ: dump socket backlog queue
3740 * - TIPC_DUMP_ALL: dump all the socket queues above
3741 * @buf: returned buffer of dump data in format
3742 */
3743int tipc_sk_dump(struct sock *sk, u16 dqueues, char *buf)
3744{
3745 int i = 0;
3746 size_t sz = (dqueues) ? SK_LMAX : SK_LMIN;
3747 struct tipc_sock *tsk;
3748 struct publication *p;
3749 bool tsk_connected;
3750
3751 if (!sk) {
3752 i += scnprintf(buf, sz, "sk data: (null)\n");
3753 return i;
3754 }
3755
3756 tsk = tipc_sk(sk);
3757 tsk_connected = !tipc_sk_type_connectionless(sk);
3758
3759 i += scnprintf(buf, sz, "sk data: %u", sk->sk_type);
3760 i += scnprintf(buf + i, sz - i, " %d", sk->sk_state);
3761 i += scnprintf(buf + i, sz - i, " %x", tsk_own_node(tsk));
3762 i += scnprintf(buf + i, sz - i, " %u", tsk->portid);
3763 i += scnprintf(buf + i, sz - i, " | %u", tsk_connected);
3764 if (tsk_connected) {
3765 i += scnprintf(buf + i, sz - i, " %x", tsk_peer_node(tsk));
3766 i += scnprintf(buf + i, sz - i, " %u", tsk_peer_port(tsk));
3767 i += scnprintf(buf + i, sz - i, " %u", tsk->conn_type);
3768 i += scnprintf(buf + i, sz - i, " %u", tsk->conn_instance);
3769 }
3770 i += scnprintf(buf + i, sz - i, " | %u", tsk->published);
3771 if (tsk->published) {
3772 p = list_first_entry_or_null(&tsk->publications,
3773 struct publication, binding_sock);
3774 i += scnprintf(buf + i, sz - i, " %u", (p) ? p->type : 0);
3775 i += scnprintf(buf + i, sz - i, " %u", (p) ? p->lower : 0);
3776 i += scnprintf(buf + i, sz - i, " %u", (p) ? p->upper : 0);
3777 }
3778 i += scnprintf(buf + i, sz - i, " | %u", tsk->snd_win);
3779 i += scnprintf(buf + i, sz - i, " %u", tsk->rcv_win);
3780 i += scnprintf(buf + i, sz - i, " %u", tsk->max_pkt);
3781 i += scnprintf(buf + i, sz - i, " %x", tsk->peer_caps);
3782 i += scnprintf(buf + i, sz - i, " %u", tsk->cong_link_cnt);
3783 i += scnprintf(buf + i, sz - i, " %u", tsk->snt_unacked);
3784 i += scnprintf(buf + i, sz - i, " %u", tsk->rcv_unacked);
3785 i += scnprintf(buf + i, sz - i, " %u", atomic_read(&tsk->dupl_rcvcnt));
3786 i += scnprintf(buf + i, sz - i, " %u", sk->sk_shutdown);
3787 i += scnprintf(buf + i, sz - i, " | %d", sk_wmem_alloc_get(sk));
3788 i += scnprintf(buf + i, sz - i, " %d", sk->sk_sndbuf);
3789 i += scnprintf(buf + i, sz - i, " | %d", sk_rmem_alloc_get(sk));
3790 i += scnprintf(buf + i, sz - i, " %d", sk->sk_rcvbuf);
3791 i += scnprintf(buf + i, sz - i, " | %d\n", sk->sk_backlog.len);
3792
3793 if (dqueues & TIPC_DUMP_SK_SNDQ) {
3794 i += scnprintf(buf + i, sz - i, "sk_write_queue: ");
3795 i += tipc_list_dump(&sk->sk_write_queue, false, buf + i);
3796 }
3797
3798 if (dqueues & TIPC_DUMP_SK_RCVQ) {
3799 i += scnprintf(buf + i, sz - i, "sk_receive_queue: ");
3800 i += tipc_list_dump(&sk->sk_receive_queue, false, buf + i);
3801 }
3802
3803 if (dqueues & TIPC_DUMP_SK_BKLGQ) {
3804 i += scnprintf(buf + i, sz - i, "sk_backlog:\n head ");
3805 i += tipc_skb_dump(sk->sk_backlog.head, false, buf + i);
3806 if (sk->sk_backlog.tail != sk->sk_backlog.head) {
3807 i += scnprintf(buf + i, sz - i, " tail ");
3808 i += tipc_skb_dump(sk->sk_backlog.tail, false,
3809 buf + i);
3810 }
3811 }
3812
3813 return i;
3814}