blob: 81b87916a0eb67bb27f1352c79d32137713330cc [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({ \
382 struct sock *sk_; \
383 int rc_; \
384 \
385 while ((rc_ = !(condition_))) { \
386 DEFINE_WAIT_FUNC(wait_, woken_wake_function); \
387 sk_ = (sock_)->sk; \
388 rc_ = tipc_sk_sock_err((sock_), timeo_); \
389 if (rc_) \
390 break; \
Tung Nguyen223b7322019-02-19 11:20:47 +0700391 add_wait_queue(sk_sleep(sk_), &wait_); \
Jon Paul Maloy844cf762017-05-11 20:28:15 +0200392 release_sock(sk_); \
393 *(timeo_) = wait_woken(&wait_, TASK_INTERRUPTIBLE, *(timeo_)); \
394 sched_annotate_sleep(); \
395 lock_sock(sk_); \
396 remove_wait_queue(sk_sleep(sk_), &wait_); \
397 } \
398 rc_; \
Jon Paul Maloy8c44e1a2017-01-03 10:55:09 -0500399})
400
Allan Stephens0c3141e2008-04-15 00:22:02 -0700401/**
Ying Xuec5fa7b32013-06-17 10:54:39 -0400402 * tipc_sk_create - create a TIPC socket
Allan Stephens0c3141e2008-04-15 00:22:02 -0700403 * @net: network namespace (must be default network)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100404 * @sock: pre-allocated socket structure
405 * @protocol: protocol indicator (must be 0)
Eric Paris3f378b62009-11-05 22:18:14 -0800406 * @kern: caused by kernel or by userspace?
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900407 *
Allan Stephens0c3141e2008-04-15 00:22:02 -0700408 * This routine creates additional data structures used by the TIPC socket,
409 * initializes them, and links them together.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100410 *
411 * Returns 0 on success, errno otherwise
412 */
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400413static int tipc_sk_create(struct net *net, struct socket *sock,
414 int protocol, int kern)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100415{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700416 const struct proto_ops *ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100417 struct sock *sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400418 struct tipc_sock *tsk;
Jon Paul Maloy5b8fa7c2014-08-22 18:09:13 -0400419 struct tipc_msg *msg;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700420
421 /* Validate arguments */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100422 if (unlikely(protocol != 0))
423 return -EPROTONOSUPPORT;
424
Per Lidenb97bf3f2006-01-02 19:04:38 +0100425 switch (sock->type) {
426 case SOCK_STREAM:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700427 ops = &stream_ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100428 break;
429 case SOCK_SEQPACKET:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700430 ops = &packet_ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100431 break;
432 case SOCK_DGRAM:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100433 case SOCK_RDM:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700434 ops = &msg_ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100435 break;
Allan Stephens49978652006-06-25 23:47:18 -0700436 default:
Allan Stephens49978652006-06-25 23:47:18 -0700437 return -EPROTOTYPE;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100438 }
439
Allan Stephens0c3141e2008-04-15 00:22:02 -0700440 /* Allocate socket's protocol area */
Eric W. Biederman11aa9c22015-05-08 21:09:13 -0500441 sk = sk_alloc(net, AF_TIPC, GFP_KERNEL, &tipc_proto, kern);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700442 if (sk == NULL)
443 return -ENOMEM;
444
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400445 tsk = tipc_sk(sk);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400446 tsk->max_pkt = MAX_PKT_DEFAULT;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400447 INIT_LIST_HEAD(&tsk->publications);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500448 INIT_LIST_HEAD(&tsk->cong_links);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400449 msg = &tsk->phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100450
Allan Stephens0c3141e2008-04-15 00:22:02 -0700451 /* Finish initializing socket data structures */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700452 sock->ops = ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100453 sock_init_data(sock, sk);
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +0100454 tipc_set_sk_state(sk, TIPC_OPEN);
Ying Xue07f6c4b2015-01-07 13:41:58 +0800455 if (tipc_sk_insert(tsk)) {
Masanari Iidac19ca6c2016-02-08 20:53:12 +0900456 pr_warn("Socket create failed; port number exhausted\n");
Ying Xue07f6c4b2015-01-07 13:41:58 +0800457 return -EINVAL;
458 }
Herbert Xu40f9f432017-02-11 19:26:46 +0800459
460 /* Ensure tsk is visible before we read own_addr. */
461 smp_mb();
462
Jon Maloy23fd3ea2018-03-22 20:42:49 +0100463 tipc_msg_init(tipc_own_addr(net), msg, TIPC_LOW_IMPORTANCE,
464 TIPC_NAMED_MSG, NAMED_H_SIZE, 0);
Herbert Xu40f9f432017-02-11 19:26:46 +0800465
Ying Xue07f6c4b2015-01-07 13:41:58 +0800466 msg_set_origport(msg, tsk->portid);
Kees Cook31b102b2017-10-30 14:06:45 -0700467 timer_setup(&sk->sk_timer, tipc_sk_timeout, 0);
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100468 sk->sk_shutdown = 0;
Jon Maloy64ac5f52017-10-13 11:04:20 +0200469 sk->sk_backlog_rcv = tipc_sk_backlog_rcv;
Ying Xuecc79dd12013-06-17 10:54:37 -0400470 sk->sk_rcvbuf = sysctl_tipc_rmem[1];
Ying Xuef288bef2012-08-21 11:16:57 +0800471 sk->sk_data_ready = tipc_data_ready;
472 sk->sk_write_space = tipc_write_space;
Ying Xuef4195d12015-11-22 15:46:05 +0800473 sk->sk_destruct = tipc_sock_destruct;
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -0400474 tsk->conn_timeout = CONN_TIMEOUT_DEFAULT;
Jon Maloy1b22bca2018-02-26 20:14:04 +0100475 tsk->group_is_open = true;
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -0400476 atomic_set(&tsk->dupl_rcvcnt, 0);
Allan Stephens7ef43eb2008-05-12 15:42:28 -0700477
Jon Paul Maloy10724cc2016-05-02 11:58:47 -0400478 /* Start out with safe limits until we receive an advertised window */
479 tsk->snd_win = tsk_adv_blocks(RCVBUF_MIN);
480 tsk->rcv_win = tsk->snd_win;
481
Parthasarathy Bhuvaraganc752023a2016-11-01 14:02:42 +0100482 if (tipc_sk_type_connectionless(sk)) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400483 tsk_set_unreturnable(tsk, true);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700484 if (sock->type == SOCK_DGRAM)
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400485 tsk_set_unreliable(tsk, true);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700486 }
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +0100487
Tuong Lien01e661e2018-12-19 09:17:58 +0700488 trace_tipc_sk_create(sk, NULL, TIPC_DUMP_NONE, " ");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100489 return 0;
490}
491
Ying Xue07f6c4b2015-01-07 13:41:58 +0800492static void tipc_sk_callback(struct rcu_head *head)
493{
494 struct tipc_sock *tsk = container_of(head, struct tipc_sock, rcu);
495
496 sock_put(&tsk->sk);
497}
498
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100499/* Caller should hold socket lock for the socket. */
500static void __tipc_shutdown(struct socket *sock, int error)
501{
502 struct sock *sk = sock->sk;
503 struct tipc_sock *tsk = tipc_sk(sk);
504 struct net *net = sock_net(sk);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500505 long timeout = CONN_TIMEOUT_DEFAULT;
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100506 u32 dnode = tsk_peer_node(tsk);
507 struct sk_buff *skb;
508
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500509 /* Avoid that hi-prio shutdown msgs bypass msgs in link wakeup queue */
510 tipc_wait_for_cond(sock, &timeout, (!tsk->cong_link_cnt &&
511 !tsk_conn_cong(tsk)));
512
Tung Nguyen67879272018-09-28 20:23:22 +0200513 /* Remove any pending SYN message */
514 __skb_queue_purge(&sk->sk_write_queue);
515
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100516 /* Reject all unreceived messages, except on an active connection
517 * (which disconnects locally & sends a 'FIN+' to peer).
518 */
519 while ((skb = __skb_dequeue(&sk->sk_receive_queue)) != NULL) {
520 if (TIPC_SKB_CB(skb)->bytes_read) {
521 kfree_skb(skb);
Jon Paul Maloy693c5642016-12-22 07:22:29 -0500522 continue;
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100523 }
Jon Paul Maloy693c5642016-12-22 07:22:29 -0500524 if (!tipc_sk_type_connectionless(sk) &&
525 sk->sk_state != TIPC_DISCONNECTING) {
526 tipc_set_sk_state(sk, TIPC_DISCONNECTING);
527 tipc_node_remove_conn(net, dnode, tsk->portid);
528 }
529 tipc_sk_respond(sk, skb, error);
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100530 }
Jon Paul Maloy693c5642016-12-22 07:22:29 -0500531
532 if (tipc_sk_type_connectionless(sk))
533 return;
534
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100535 if (sk->sk_state != TIPC_DISCONNECTING) {
536 skb = tipc_msg_create(TIPC_CRITICAL_IMPORTANCE,
537 TIPC_CONN_MSG, SHORT_H_SIZE, 0, dnode,
538 tsk_own_node(tsk), tsk_peer_port(tsk),
539 tsk->portid, error);
540 if (skb)
541 tipc_node_xmit_skb(net, skb, dnode, tsk->portid);
Jon Paul Maloy693c5642016-12-22 07:22:29 -0500542 tipc_node_remove_conn(net, dnode, tsk->portid);
543 tipc_set_sk_state(sk, TIPC_DISCONNECTING);
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100544 }
545}
546
Ying Xuec5fa7b32013-06-17 10:54:39 -0400547/**
Ying Xue247f0f32014-02-18 16:06:46 +0800548 * tipc_release - destroy a TIPC socket
Per Lidenb97bf3f2006-01-02 19:04:38 +0100549 * @sock: socket to destroy
550 *
551 * This routine cleans up any messages that are still queued on the socket.
552 * For DGRAM and RDM socket types, all queued messages are rejected.
553 * For SEQPACKET and STREAM socket types, the first message is rejected
554 * and any others are discarded. (If the first message on a STREAM socket
555 * is partially-read, it is discarded and the next one is rejected instead.)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900556 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100557 * NOTE: Rejected messages are not necessarily returned to the sender! They
558 * are returned or discarded according to the "destination droppable" setting
559 * specified for the message by the sender.
560 *
561 * Returns 0 on success, errno otherwise
562 */
Ying Xue247f0f32014-02-18 16:06:46 +0800563static int tipc_release(struct socket *sock)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100564{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100565 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400566 struct tipc_sock *tsk;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100567
Allan Stephens0c3141e2008-04-15 00:22:02 -0700568 /*
569 * Exit if socket isn't fully initialized (occurs when a failed accept()
570 * releases a pre-allocated child socket that was never used)
571 */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700572 if (sk == NULL)
573 return 0;
574
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400575 tsk = tipc_sk(sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700576 lock_sock(sk);
577
Tuong Lien01e661e2018-12-19 09:17:58 +0700578 trace_tipc_sk_release(sk, NULL, TIPC_DUMP_ALL, " ");
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100579 __tipc_shutdown(sock, TIPC_ERR_NO_PORT);
580 sk->sk_shutdown = SHUTDOWN_MASK;
Jon Maloy75da2162017-10-13 11:04:23 +0200581 tipc_sk_leave(tsk);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400582 tipc_sk_withdraw(tsk, 0, NULL);
Ying Xue1ea23a22015-05-28 13:19:22 +0800583 sk_stop_timer(sk, &sk->sk_timer);
Ying Xue07f6c4b2015-01-07 13:41:58 +0800584 tipc_sk_remove(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100585
Cong Wang0a3b8b22018-09-03 19:12:41 -0700586 sock_orphan(sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700587 /* Reject any messages that accumulated in backlog queue */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700588 release_sock(sk);
Jon Maloya80ae532017-10-13 11:04:22 +0200589 tipc_dest_list_purge(&tsk->cong_links);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500590 tsk->cong_link_cnt = 0;
Ying Xue07f6c4b2015-01-07 13:41:58 +0800591 call_rcu(&tsk->rcu, tipc_sk_callback);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700592 sock->sk = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100593
Geert Uytterhoeven065d7e32014-04-06 15:56:14 +0200594 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100595}
596
597/**
Ying Xue247f0f32014-02-18 16:06:46 +0800598 * tipc_bind - associate or disassocate TIPC name(s) with a socket
Per Lidenb97bf3f2006-01-02 19:04:38 +0100599 * @sock: socket structure
600 * @uaddr: socket address describing name(s) and desired operation
601 * @uaddr_len: size of socket address data structure
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900602 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100603 * Name and name sequence binding is indicated using a positive scope value;
604 * a negative scope value unbinds the specified name. Specifying no name
605 * (i.e. a socket address length of 0) unbinds all names from the socket.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900606 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100607 * Returns 0 on success, errno otherwise
Allan Stephens0c3141e2008-04-15 00:22:02 -0700608 *
609 * NOTE: This routine doesn't need to take the socket lock since it doesn't
610 * access any non-constant socket information.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100611 */
Ying Xue247f0f32014-02-18 16:06:46 +0800612static int tipc_bind(struct socket *sock, struct sockaddr *uaddr,
613 int uaddr_len)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100614{
Ying Xue84602762013-12-27 10:18:28 +0800615 struct sock *sk = sock->sk;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100616 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400617 struct tipc_sock *tsk = tipc_sk(sk);
Ying Xue84602762013-12-27 10:18:28 +0800618 int res = -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100619
Ying Xue84602762013-12-27 10:18:28 +0800620 lock_sock(sk);
621 if (unlikely(!uaddr_len)) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400622 res = tipc_sk_withdraw(tsk, 0, NULL);
Ying Xue84602762013-12-27 10:18:28 +0800623 goto exit;
624 }
Jon Maloy75da2162017-10-13 11:04:23 +0200625 if (tsk->group) {
626 res = -EACCES;
627 goto exit;
628 }
Ying Xue84602762013-12-27 10:18:28 +0800629 if (uaddr_len < sizeof(struct sockaddr_tipc)) {
630 res = -EINVAL;
631 goto exit;
632 }
633 if (addr->family != AF_TIPC) {
634 res = -EAFNOSUPPORT;
635 goto exit;
636 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100637
Per Lidenb97bf3f2006-01-02 19:04:38 +0100638 if (addr->addrtype == TIPC_ADDR_NAME)
639 addr->addr.nameseq.upper = addr->addr.nameseq.lower;
Ying Xue84602762013-12-27 10:18:28 +0800640 else if (addr->addrtype != TIPC_ADDR_NAMESEQ) {
641 res = -EAFNOSUPPORT;
642 goto exit;
643 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900644
Ying Xue13a2e892013-06-17 10:54:40 -0400645 if ((addr->addr.nameseq.type < TIPC_RESERVED_TYPES) &&
Ying Xue7d0ab172013-06-17 10:54:41 -0400646 (addr->addr.nameseq.type != TIPC_TOP_SRV) &&
Ying Xue84602762013-12-27 10:18:28 +0800647 (addr->addr.nameseq.type != TIPC_CFG_SRV)) {
648 res = -EACCES;
649 goto exit;
650 }
Allan Stephensc422f1b2011-11-02 15:49:40 -0400651
Jon Maloy928df182018-03-15 16:48:51 +0100652 res = (addr->scope >= 0) ?
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400653 tipc_sk_publish(tsk, addr->scope, &addr->addr.nameseq) :
654 tipc_sk_withdraw(tsk, -addr->scope, &addr->addr.nameseq);
Ying Xue84602762013-12-27 10:18:28 +0800655exit:
656 release_sock(sk);
657 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100658}
659
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900660/**
Ying Xue247f0f32014-02-18 16:06:46 +0800661 * tipc_getname - get port ID of socket or peer socket
Per Lidenb97bf3f2006-01-02 19:04:38 +0100662 * @sock: socket structure
663 * @uaddr: area for returned socket address
664 * @uaddr_len: area for returned length of socket address
Allan Stephens2da59912008-07-14 22:43:32 -0700665 * @peer: 0 = own ID, 1 = current peer ID, 2 = current/former peer ID
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900666 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100667 * Returns 0 on success, errno otherwise
Allan Stephens0c3141e2008-04-15 00:22:02 -0700668 *
Allan Stephens2da59912008-07-14 22:43:32 -0700669 * NOTE: This routine doesn't need to take the socket lock since it only
670 * accesses socket information that is unchanging (or which changes in
Allan Stephens0e659672010-12-31 18:59:32 +0000671 * a completely predictable manner).
Per Lidenb97bf3f2006-01-02 19:04:38 +0100672 */
Ying Xue247f0f32014-02-18 16:06:46 +0800673static int tipc_getname(struct socket *sock, struct sockaddr *uaddr,
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +0100674 int peer)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100675{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100676 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
Parthasarathy Bhuvaragan9fd4b072016-11-01 14:02:46 +0100677 struct sock *sk = sock->sk;
678 struct tipc_sock *tsk = tipc_sk(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100679
Kulikov Vasiliy88f8a5e2010-10-31 07:10:32 +0000680 memset(addr, 0, sizeof(*addr));
Allan Stephens0c3141e2008-04-15 00:22:02 -0700681 if (peer) {
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +0100682 if ((!tipc_sk_connected(sk)) &&
Parthasarathy Bhuvaragan9fd4b072016-11-01 14:02:46 +0100683 ((peer != 2) || (sk->sk_state != TIPC_DISCONNECTING)))
Allan Stephens2da59912008-07-14 22:43:32 -0700684 return -ENOTCONN;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400685 addr->addr.id.ref = tsk_peer_port(tsk);
686 addr->addr.id.node = tsk_peer_node(tsk);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700687 } else {
Ying Xue07f6c4b2015-01-07 13:41:58 +0800688 addr->addr.id.ref = tsk->portid;
Jon Maloy23fd3ea2018-03-22 20:42:49 +0100689 addr->addr.id.node = tipc_own_addr(sock_net(sk));
Allan Stephens0c3141e2008-04-15 00:22:02 -0700690 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100691
Per Lidenb97bf3f2006-01-02 19:04:38 +0100692 addr->addrtype = TIPC_ADDR_ID;
693 addr->family = AF_TIPC;
694 addr->scope = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100695 addr->addr.name.domain = 0;
696
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +0100697 return sizeof(*addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100698}
699
700/**
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700701 * tipc_poll - read and possibly block on pollmask
Per Lidenb97bf3f2006-01-02 19:04:38 +0100702 * @file: file structure associated with the socket
703 * @sock: socket for which to calculate the poll bits
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700704 * @wait: ???
Per Lidenb97bf3f2006-01-02 19:04:38 +0100705 *
Allan Stephens9b674e82008-03-26 16:48:21 -0700706 * Returns pollmask value
707 *
708 * COMMENTARY:
709 * It appears that the usual socket locking mechanisms are not useful here
710 * since the pollmask info is potentially out-of-date the moment this routine
711 * exits. TCP and other protocols seem to rely on higher level poll routines
712 * to handle any preventable race conditions, so TIPC will do the same ...
713 *
Allan Stephensf662c072010-08-17 11:00:06 +0000714 * IMPORTANT: The fact that a read or write operation is indicated does NOT
715 * imply that the operation will succeed, merely that it should be performed
716 * and will not block.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100717 */
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700718static __poll_t tipc_poll(struct file *file, struct socket *sock,
719 poll_table *wait)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100720{
Allan Stephens9b674e82008-03-26 16:48:21 -0700721 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400722 struct tipc_sock *tsk = tipc_sk(sk);
Al Viroade994f2017-07-03 00:01:49 -0400723 __poll_t revents = 0;
Allan Stephens9b674e82008-03-26 16:48:21 -0700724
Karsten Graul89ab0662018-10-23 13:40:39 +0200725 sock_poll_wait(file, sock, wait);
Tuong Lien01e661e2018-12-19 09:17:58 +0700726 trace_tipc_sk_poll(sk, NULL, TIPC_DUMP_ALL, " ");
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700727
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100728 if (sk->sk_shutdown & RCV_SHUTDOWN)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800729 revents |= EPOLLRDHUP | EPOLLIN | EPOLLRDNORM;
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100730 if (sk->sk_shutdown == SHUTDOWN_MASK)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800731 revents |= EPOLLHUP;
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +0100732
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +0100733 switch (sk->sk_state) {
734 case TIPC_ESTABLISHED:
Parthasarathy Bhuvaragan517d7c72017-12-28 12:03:06 +0100735 case TIPC_CONNECTING:
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500736 if (!tsk->cong_link_cnt && !tsk_conn_cong(tsk))
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800737 revents |= EPOLLOUT;
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +0100738 /* fall thru' */
739 case TIPC_LISTEN:
Jon Maloycb4dc412017-10-19 16:42:04 +0200740 if (!skb_queue_empty(&sk->sk_receive_queue))
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800741 revents |= EPOLLIN | EPOLLRDNORM;
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +0100742 break;
743 case TIPC_OPEN:
Jon Maloy60c25302018-01-17 16:42:46 +0100744 if (tsk->group_is_open && !tsk->cong_link_cnt)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800745 revents |= EPOLLOUT;
Jon Maloyae236fb2017-10-13 11:04:25 +0200746 if (!tipc_sk_type_connectionless(sk))
747 break;
Jon Maloycb4dc412017-10-19 16:42:04 +0200748 if (skb_queue_empty(&sk->sk_receive_queue))
Jon Maloyae236fb2017-10-13 11:04:25 +0200749 break;
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800750 revents |= EPOLLIN | EPOLLRDNORM;
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +0100751 break;
752 case TIPC_DISCONNECTING:
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800753 revents = EPOLLIN | EPOLLRDNORM | EPOLLHUP;
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +0100754 break;
Allan Stephensf662c072010-08-17 11:00:06 +0000755 }
Jon Maloyae236fb2017-10-13 11:04:25 +0200756 return revents;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100757}
758
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400759/**
760 * tipc_sendmcast - send multicast message
761 * @sock: socket structure
762 * @seq: destination address
Al Viro562640f2014-11-15 01:13:43 -0500763 * @msg: message to send
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500764 * @dlen: length of data to send
765 * @timeout: timeout to wait for wakeup
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400766 *
767 * Called from function tipc_sendmsg(), which has done all sanity checks
768 * Returns the number of bytes sent on success, or errno
769 */
770static int tipc_sendmcast(struct socket *sock, struct tipc_name_seq *seq,
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500771 struct msghdr *msg, size_t dlen, long timeout)
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400772{
773 struct sock *sk = sock->sk;
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500774 struct tipc_sock *tsk = tipc_sk(sk);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500775 struct tipc_msg *hdr = &tsk->phdr;
Ying Xuef2f98002015-01-09 15:27:05 +0800776 struct net *net = sock_net(sk);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500777 int mtu = tipc_bcast_get_mtu(net);
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -0500778 struct tipc_mc_method *method = &tsk->mc_method;
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500779 struct sk_buff_head pkts;
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500780 struct tipc_nlist dsts;
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400781 int rc;
782
Jon Maloy75da2162017-10-13 11:04:23 +0200783 if (tsk->group)
784 return -EACCES;
785
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500786 /* Block or return if any destination link is congested */
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500787 rc = tipc_wait_for_cond(sock, &timeout, !tsk->cong_link_cnt);
788 if (unlikely(rc))
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400789 return rc;
790
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500791 /* Lookup destination nodes */
792 tipc_nlist_init(&dsts, tipc_own_addr(net));
793 tipc_nametbl_lookup_dst_nodes(net, seq->type, seq->lower,
Jon Maloye9a03442018-01-12 20:56:50 +0100794 seq->upper, &dsts);
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500795 if (!dsts.local && !dsts.remote)
796 return -EHOSTUNREACH;
797
798 /* Build message header */
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500799 msg_set_type(hdr, TIPC_MCAST_MSG);
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500800 msg_set_hdr_sz(hdr, MCAST_H_SIZE);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500801 msg_set_lookup_scope(hdr, TIPC_CLUSTER_SCOPE);
802 msg_set_destport(hdr, 0);
803 msg_set_destnode(hdr, 0);
804 msg_set_nametype(hdr, seq->type);
805 msg_set_namelower(hdr, seq->lower);
806 msg_set_nameupper(hdr, seq->upper);
Jon Paul Maloy22d85c72015-07-16 16:54:23 -0400807
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500808 /* Build message as chain of buffers */
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500809 skb_queue_head_init(&pkts);
810 rc = tipc_msg_build(hdr, msg, 0, dlen, mtu, &pkts);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500811
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500812 /* Send message if build was successful */
Tuong Lien01e661e2018-12-19 09:17:58 +0700813 if (unlikely(rc == dlen)) {
814 trace_tipc_sk_sendmcast(sk, skb_peek(&pkts),
815 TIPC_DUMP_SK_SNDQ, " ");
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -0500816 rc = tipc_mcast_xmit(net, &pkts, method, &dsts,
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500817 &tsk->cong_link_cnt);
Tuong Lien01e661e2018-12-19 09:17:58 +0700818 }
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500819
820 tipc_nlist_purge(&dsts);
Jon Paul Maloy365ad352017-01-03 10:55:11 -0500821
822 return rc ? rc : dlen;
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400823}
824
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500825/**
Jon Maloy27bd9ec2017-10-13 11:04:27 +0200826 * tipc_send_group_msg - send a message to a member in the group
827 * @net: network namespace
828 * @m: message to send
829 * @mb: group member
830 * @dnode: destination node
831 * @dport: destination port
832 * @dlen: total length of message data
833 */
834static int tipc_send_group_msg(struct net *net, struct tipc_sock *tsk,
835 struct msghdr *m, struct tipc_member *mb,
836 u32 dnode, u32 dport, int dlen)
837{
Jon Maloyb87a5ea2017-10-13 11:04:30 +0200838 u16 bc_snd_nxt = tipc_group_bc_snd_nxt(tsk->group);
Jon Maloy2f487712017-10-13 11:04:31 +0200839 struct tipc_mc_method *method = &tsk->mc_method;
Jon Maloy27bd9ec2017-10-13 11:04:27 +0200840 int blks = tsk_blocks(GROUP_H_SIZE + dlen);
841 struct tipc_msg *hdr = &tsk->phdr;
842 struct sk_buff_head pkts;
843 int mtu, rc;
844
845 /* Complete message header */
846 msg_set_type(hdr, TIPC_GRP_UCAST_MSG);
847 msg_set_hdr_sz(hdr, GROUP_H_SIZE);
848 msg_set_destport(hdr, dport);
849 msg_set_destnode(hdr, dnode);
Jon Maloyb87a5ea2017-10-13 11:04:30 +0200850 msg_set_grp_bc_seqno(hdr, bc_snd_nxt);
Jon Maloy27bd9ec2017-10-13 11:04:27 +0200851
852 /* Build message as chain of buffers */
853 skb_queue_head_init(&pkts);
854 mtu = tipc_node_get_mtu(net, dnode, tsk->portid);
855 rc = tipc_msg_build(hdr, m, 0, dlen, mtu, &pkts);
856 if (unlikely(rc != dlen))
857 return rc;
858
859 /* Send message */
860 rc = tipc_node_xmit(net, &pkts, dnode, tsk->portid);
861 if (unlikely(rc == -ELINKCONG)) {
862 tipc_dest_push(&tsk->cong_links, dnode, 0);
863 tsk->cong_link_cnt++;
864 }
865
Jon Maloy2f487712017-10-13 11:04:31 +0200866 /* Update send window */
Jon Maloy27bd9ec2017-10-13 11:04:27 +0200867 tipc_group_update_member(mb, blks);
868
Jon Maloy2f487712017-10-13 11:04:31 +0200869 /* A broadcast sent within next EXPIRE period must follow same path */
870 method->rcast = true;
871 method->mandatory = true;
Jon Maloy27bd9ec2017-10-13 11:04:27 +0200872 return dlen;
873}
874
875/**
876 * tipc_send_group_unicast - send message to a member in the group
877 * @sock: socket structure
878 * @m: message to send
879 * @dlen: total length of message data
880 * @timeout: timeout to wait for wakeup
881 *
882 * Called from function tipc_sendmsg(), which has done all sanity checks
883 * Returns the number of bytes sent on success, or errno
884 */
885static int tipc_send_group_unicast(struct socket *sock, struct msghdr *m,
886 int dlen, long timeout)
887{
888 struct sock *sk = sock->sk;
889 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
890 int blks = tsk_blocks(GROUP_H_SIZE + dlen);
891 struct tipc_sock *tsk = tipc_sk(sk);
Jon Maloy27bd9ec2017-10-13 11:04:27 +0200892 struct net *net = sock_net(sk);
893 struct tipc_member *mb = NULL;
894 u32 node, port;
895 int rc;
896
897 node = dest->addr.id.node;
898 port = dest->addr.id.ref;
899 if (!port && !node)
900 return -EHOSTUNREACH;
901
902 /* Block or return if destination link or member is congested */
903 rc = tipc_wait_for_cond(sock, &timeout,
904 !tipc_dest_find(&tsk->cong_links, node, 0) &&
Cong Wang143ece62018-12-11 21:43:51 -0800905 tsk->group &&
906 !tipc_group_cong(tsk->group, node, port, blks,
907 &mb));
Jon Maloy27bd9ec2017-10-13 11:04:27 +0200908 if (unlikely(rc))
909 return rc;
910
911 if (unlikely(!mb))
912 return -EHOSTUNREACH;
913
914 rc = tipc_send_group_msg(net, tsk, m, mb, node, port, dlen);
915
916 return rc ? rc : dlen;
917}
918
919/**
Jon Maloyee106d72017-10-13 11:04:28 +0200920 * tipc_send_group_anycast - send message to any member with given identity
921 * @sock: socket structure
922 * @m: message to send
923 * @dlen: total length of message data
924 * @timeout: timeout to wait for wakeup
925 *
926 * Called from function tipc_sendmsg(), which has done all sanity checks
927 * Returns the number of bytes sent on success, or errno
928 */
929static int tipc_send_group_anycast(struct socket *sock, struct msghdr *m,
930 int dlen, long timeout)
931{
932 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
933 struct sock *sk = sock->sk;
934 struct tipc_sock *tsk = tipc_sk(sk);
935 struct list_head *cong_links = &tsk->cong_links;
936 int blks = tsk_blocks(GROUP_H_SIZE + dlen);
Jon Maloy232d07b2018-01-08 21:03:30 +0100937 struct tipc_msg *hdr = &tsk->phdr;
Jon Maloyee106d72017-10-13 11:04:28 +0200938 struct tipc_member *first = NULL;
939 struct tipc_member *mbr = NULL;
940 struct net *net = sock_net(sk);
941 u32 node, port, exclude;
Jon Maloyee106d72017-10-13 11:04:28 +0200942 struct list_head dsts;
Jon Maloy232d07b2018-01-08 21:03:30 +0100943 u32 type, inst, scope;
Jon Maloyee106d72017-10-13 11:04:28 +0200944 int lookups = 0;
945 int dstcnt, rc;
946 bool cong;
947
948 INIT_LIST_HEAD(&dsts);
949
Jon Maloy232d07b2018-01-08 21:03:30 +0100950 type = msg_nametype(hdr);
Jon Maloyee106d72017-10-13 11:04:28 +0200951 inst = dest->addr.name.name.instance;
Jon Maloy232d07b2018-01-08 21:03:30 +0100952 scope = msg_lookup_scope(hdr);
Jon Maloyee106d72017-10-13 11:04:28 +0200953
954 while (++lookups < 4) {
Cong Wang143ece62018-12-11 21:43:51 -0800955 exclude = tipc_group_exclude(tsk->group);
956
Jon Maloyee106d72017-10-13 11:04:28 +0200957 first = NULL;
958
959 /* Look for a non-congested destination member, if any */
960 while (1) {
Jon Maloy232d07b2018-01-08 21:03:30 +0100961 if (!tipc_nametbl_lookup(net, type, inst, scope, &dsts,
Jon Maloyee106d72017-10-13 11:04:28 +0200962 &dstcnt, exclude, false))
963 return -EHOSTUNREACH;
964 tipc_dest_pop(&dsts, &node, &port);
Cong Wang143ece62018-12-11 21:43:51 -0800965 cong = tipc_group_cong(tsk->group, node, port, blks,
966 &mbr);
Jon Maloyee106d72017-10-13 11:04:28 +0200967 if (!cong)
968 break;
969 if (mbr == first)
970 break;
971 if (!first)
972 first = mbr;
973 }
974
975 /* Start over if destination was not in member list */
976 if (unlikely(!mbr))
977 continue;
978
979 if (likely(!cong && !tipc_dest_find(cong_links, node, 0)))
980 break;
981
982 /* Block or return if destination link or member is congested */
983 rc = tipc_wait_for_cond(sock, &timeout,
984 !tipc_dest_find(cong_links, node, 0) &&
Cong Wang143ece62018-12-11 21:43:51 -0800985 tsk->group &&
986 !tipc_group_cong(tsk->group, node, port,
Jon Maloyee106d72017-10-13 11:04:28 +0200987 blks, &mbr));
988 if (unlikely(rc))
989 return rc;
990
991 /* Send, unless destination disappeared while waiting */
992 if (likely(mbr))
993 break;
994 }
995
996 if (unlikely(lookups >= 4))
997 return -EHOSTUNREACH;
998
999 rc = tipc_send_group_msg(net, tsk, m, mbr, node, port, dlen);
1000
1001 return rc ? rc : dlen;
1002}
1003
1004/**
Jon Maloy75da2162017-10-13 11:04:23 +02001005 * tipc_send_group_bcast - send message to all members in communication group
1006 * @sk: socket structure
1007 * @m: message to send
1008 * @dlen: total length of message data
1009 * @timeout: timeout to wait for wakeup
1010 *
1011 * Called from function tipc_sendmsg(), which has done all sanity checks
1012 * Returns the number of bytes sent on success, or errno
1013 */
1014static int tipc_send_group_bcast(struct socket *sock, struct msghdr *m,
1015 int dlen, long timeout)
1016{
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001017 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
Jon Maloy75da2162017-10-13 11:04:23 +02001018 struct sock *sk = sock->sk;
1019 struct net *net = sock_net(sk);
1020 struct tipc_sock *tsk = tipc_sk(sk);
Cong Wang3c6306d2018-12-16 23:25:12 -08001021 struct tipc_nlist *dsts;
Jon Maloy75da2162017-10-13 11:04:23 +02001022 struct tipc_mc_method *method = &tsk->mc_method;
Jon Maloy2f487712017-10-13 11:04:31 +02001023 bool ack = method->mandatory && method->rcast;
Jon Maloyb7d42632017-10-13 11:04:26 +02001024 int blks = tsk_blocks(MCAST_H_SIZE + dlen);
Jon Maloy75da2162017-10-13 11:04:23 +02001025 struct tipc_msg *hdr = &tsk->phdr;
1026 int mtu = tipc_bcast_get_mtu(net);
1027 struct sk_buff_head pkts;
1028 int rc = -EHOSTUNREACH;
1029
Jon Maloyb7d42632017-10-13 11:04:26 +02001030 /* Block or return if any destination link or member is congested */
Cong Wang143ece62018-12-11 21:43:51 -08001031 rc = tipc_wait_for_cond(sock, &timeout,
1032 !tsk->cong_link_cnt && tsk->group &&
1033 !tipc_group_bc_cong(tsk->group, blks));
Jon Maloy75da2162017-10-13 11:04:23 +02001034 if (unlikely(rc))
1035 return rc;
1036
Cong Wang3c6306d2018-12-16 23:25:12 -08001037 dsts = tipc_group_dests(tsk->group);
1038 if (!dsts->local && !dsts->remote)
1039 return -EHOSTUNREACH;
1040
Jon Maloy75da2162017-10-13 11:04:23 +02001041 /* Complete message header */
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001042 if (dest) {
1043 msg_set_type(hdr, TIPC_GRP_MCAST_MSG);
1044 msg_set_nameinst(hdr, dest->addr.name.name.instance);
1045 } else {
1046 msg_set_type(hdr, TIPC_GRP_BCAST_MSG);
1047 msg_set_nameinst(hdr, 0);
1048 }
Jon Maloyb7d42632017-10-13 11:04:26 +02001049 msg_set_hdr_sz(hdr, GROUP_H_SIZE);
Jon Maloy75da2162017-10-13 11:04:23 +02001050 msg_set_destport(hdr, 0);
1051 msg_set_destnode(hdr, 0);
Cong Wang143ece62018-12-11 21:43:51 -08001052 msg_set_grp_bc_seqno(hdr, tipc_group_bc_snd_nxt(tsk->group));
Jon Maloy75da2162017-10-13 11:04:23 +02001053
Jon Maloy2f487712017-10-13 11:04:31 +02001054 /* Avoid getting stuck with repeated forced replicasts */
1055 msg_set_grp_bc_ack_req(hdr, ack);
1056
Jon Maloy75da2162017-10-13 11:04:23 +02001057 /* Build message as chain of buffers */
1058 skb_queue_head_init(&pkts);
1059 rc = tipc_msg_build(hdr, m, 0, dlen, mtu, &pkts);
1060 if (unlikely(rc != dlen))
1061 return rc;
1062
1063 /* Send message */
Jon Maloy2f487712017-10-13 11:04:31 +02001064 rc = tipc_mcast_xmit(net, &pkts, method, dsts, &tsk->cong_link_cnt);
Jon Maloy75da2162017-10-13 11:04:23 +02001065 if (unlikely(rc))
1066 return rc;
1067
Jon Maloyb7d42632017-10-13 11:04:26 +02001068 /* Update broadcast sequence number and send windows */
Jon Maloy2f487712017-10-13 11:04:31 +02001069 tipc_group_update_bc_members(tsk->group, blks, ack);
1070
1071 /* Broadcast link is now free to choose method for next broadcast */
1072 method->mandatory = false;
1073 method->expires = jiffies;
1074
Jon Maloy75da2162017-10-13 11:04:23 +02001075 return dlen;
1076}
1077
1078/**
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001079 * tipc_send_group_mcast - send message to all members with given identity
1080 * @sock: socket structure
1081 * @m: message to send
1082 * @dlen: total length of message data
1083 * @timeout: timeout to wait for wakeup
1084 *
1085 * Called from function tipc_sendmsg(), which has done all sanity checks
1086 * Returns the number of bytes sent on success, or errno
1087 */
1088static int tipc_send_group_mcast(struct socket *sock, struct msghdr *m,
1089 int dlen, long timeout)
1090{
1091 struct sock *sk = sock->sk;
1092 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001093 struct tipc_sock *tsk = tipc_sk(sk);
1094 struct tipc_group *grp = tsk->group;
Jon Maloy232d07b2018-01-08 21:03:30 +01001095 struct tipc_msg *hdr = &tsk->phdr;
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001096 struct net *net = sock_net(sk);
Jon Maloy232d07b2018-01-08 21:03:30 +01001097 u32 type, inst, scope, exclude;
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001098 struct list_head dsts;
Jon Maloy232d07b2018-01-08 21:03:30 +01001099 u32 dstcnt;
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001100
1101 INIT_LIST_HEAD(&dsts);
1102
Jon Maloy232d07b2018-01-08 21:03:30 +01001103 type = msg_nametype(hdr);
1104 inst = dest->addr.name.name.instance;
1105 scope = msg_lookup_scope(hdr);
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001106 exclude = tipc_group_exclude(grp);
Jon Maloy232d07b2018-01-08 21:03:30 +01001107
1108 if (!tipc_nametbl_lookup(net, type, inst, scope, &dsts,
1109 &dstcnt, exclude, true))
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001110 return -EHOSTUNREACH;
1111
1112 if (dstcnt == 1) {
1113 tipc_dest_pop(&dsts, &dest->addr.id.node, &dest->addr.id.ref);
1114 return tipc_send_group_unicast(sock, m, dlen, timeout);
1115 }
1116
1117 tipc_dest_list_purge(&dsts);
1118 return tipc_send_group_bcast(sock, m, dlen, timeout);
1119}
1120
1121/**
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001122 * tipc_sk_mcast_rcv - Deliver multicast messages to all destination sockets
1123 * @arrvq: queue with arriving messages, to be cloned after destination lookup
1124 * @inputq: queue with cloned messages, delivered to socket after dest lookup
1125 *
1126 * Multi-threaded: parallel calls with reference to same queues may occur
Jon Paul Maloy078bec82014-07-16 20:41:00 -04001127 */
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001128void tipc_sk_mcast_rcv(struct net *net, struct sk_buff_head *arrvq,
1129 struct sk_buff_head *inputq)
Jon Paul Maloy078bec82014-07-16 20:41:00 -04001130{
Jon Maloy75da2162017-10-13 11:04:23 +02001131 u32 self = tipc_own_addr(net);
Jon Maloy232d07b2018-01-08 21:03:30 +01001132 u32 type, lower, upper, scope;
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001133 struct sk_buff *skb, *_skb;
Colin Ian Kingb053fcc2018-07-31 17:01:37 +01001134 u32 portid, onode;
Jon Maloy232d07b2018-01-08 21:03:30 +01001135 struct sk_buff_head tmpq;
Jon Maloy75da2162017-10-13 11:04:23 +02001136 struct list_head dports;
Jon Maloy232d07b2018-01-08 21:03:30 +01001137 struct tipc_msg *hdr;
1138 int user, mtyp, hlen;
1139 bool exact;
Jon Paul Maloy3c724ac2015-02-05 08:36:43 -05001140
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001141 __skb_queue_head_init(&tmpq);
Jon Paul Maloy4d8642d2017-01-03 10:55:10 -05001142 INIT_LIST_HEAD(&dports);
Jon Paul Maloy078bec82014-07-16 20:41:00 -04001143
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001144 skb = tipc_skb_peek(arrvq, &inputq->lock);
1145 for (; skb; skb = tipc_skb_peek(arrvq, &inputq->lock)) {
Jon Maloy232d07b2018-01-08 21:03:30 +01001146 hdr = buf_msg(skb);
1147 user = msg_user(hdr);
1148 mtyp = msg_type(hdr);
1149 hlen = skb_headroom(skb) + msg_hdr_sz(hdr);
Jon Maloy232d07b2018-01-08 21:03:30 +01001150 onode = msg_orignode(hdr);
1151 type = msg_nametype(hdr);
1152
Jon Maloy2f487712017-10-13 11:04:31 +02001153 if (mtyp == TIPC_GRP_UCAST_MSG || user == GROUP_PROTOCOL) {
1154 spin_lock_bh(&inputq->lock);
1155 if (skb_peek(arrvq) == skb) {
1156 __skb_dequeue(arrvq);
1157 __skb_queue_tail(inputq, skb);
1158 }
Jon Maloyc545a942017-12-11 19:11:55 +01001159 kfree_skb(skb);
Jon Maloy2f487712017-10-13 11:04:31 +02001160 spin_unlock_bh(&inputq->lock);
1161 continue;
1162 }
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001163
Jon Maloy232d07b2018-01-08 21:03:30 +01001164 /* Group messages require exact scope match */
1165 if (msg_in_group(hdr)) {
1166 lower = 0;
1167 upper = ~0;
1168 scope = msg_lookup_scope(hdr);
1169 exact = true;
1170 } else {
1171 /* TIPC_NODE_SCOPE means "any scope" in this context */
1172 if (onode == self)
1173 scope = TIPC_NODE_SCOPE;
1174 else
1175 scope = TIPC_CLUSTER_SCOPE;
1176 exact = false;
1177 lower = msg_namelower(hdr);
1178 upper = msg_nameupper(hdr);
Jon Maloy75da2162017-10-13 11:04:23 +02001179 }
Jon Maloy232d07b2018-01-08 21:03:30 +01001180
1181 /* Create destination port list: */
1182 tipc_nametbl_mc_lookup(net, type, lower, upper,
1183 scope, exact, &dports);
1184
1185 /* Clone message per destination */
Jon Maloya80ae532017-10-13 11:04:22 +02001186 while (tipc_dest_pop(&dports, NULL, &portid)) {
Jon Maloy232d07b2018-01-08 21:03:30 +01001187 _skb = __pskb_copy(skb, hlen, GFP_ATOMIC);
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001188 if (_skb) {
1189 msg_set_destport(buf_msg(_skb), portid);
1190 __skb_queue_tail(&tmpq, _skb);
1191 continue;
1192 }
1193 pr_warn("Failed to clone mcast rcv buffer\n");
Jon Paul Maloy078bec82014-07-16 20:41:00 -04001194 }
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001195 /* Append to inputq if not already done by other thread */
1196 spin_lock_bh(&inputq->lock);
1197 if (skb_peek(arrvq) == skb) {
1198 skb_queue_splice_tail_init(&tmpq, inputq);
1199 kfree_skb(__skb_dequeue(arrvq));
1200 }
1201 spin_unlock_bh(&inputq->lock);
1202 __skb_queue_purge(&tmpq);
1203 kfree_skb(skb);
Jon Paul Maloy078bec82014-07-16 20:41:00 -04001204 }
Jon Paul Maloycb1b7282015-02-05 08:36:44 -05001205 tipc_sk_rcv(net, inputq);
Jon Paul Maloy078bec82014-07-16 20:41:00 -04001206}
1207
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001208/**
Jon Maloy64ac5f52017-10-13 11:04:20 +02001209 * tipc_sk_conn_proto_rcv - receive a connection mng protocol message
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001210 * @tsk: receiving socket
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001211 * @skb: pointer to message buffer.
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001212 */
Jon Maloy64ac5f52017-10-13 11:04:20 +02001213static void tipc_sk_conn_proto_rcv(struct tipc_sock *tsk, struct sk_buff *skb,
Parthasarathy Bhuvaragane7eb0582018-10-10 17:50:23 +02001214 struct sk_buff_head *inputq,
Jon Maloy64ac5f52017-10-13 11:04:20 +02001215 struct sk_buff_head *xmitq)
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001216{
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001217 struct tipc_msg *hdr = buf_msg(skb);
Jon Maloy64ac5f52017-10-13 11:04:20 +02001218 u32 onode = tsk_own_node(tsk);
1219 struct sock *sk = &tsk->sk;
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001220 int mtyp = msg_type(hdr);
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001221 bool conn_cong;
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001222
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001223 /* Ignore if connection cannot be validated: */
Tuong Lien01e661e2018-12-19 09:17:58 +07001224 if (!tsk_peer_msg(tsk, hdr)) {
1225 trace_tipc_sk_drop_msg(sk, skb, TIPC_DUMP_NONE, "@proto_rcv!");
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001226 goto exit;
Tuong Lien01e661e2018-12-19 09:17:58 +07001227 }
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001228
Parthasarathy Bhuvaraganc1be7752017-04-26 10:05:02 +02001229 if (unlikely(msg_errcode(hdr))) {
1230 tipc_set_sk_state(sk, TIPC_DISCONNECTING);
1231 tipc_node_remove_conn(sock_net(sk), tsk_peer_node(tsk),
1232 tsk_peer_port(tsk));
1233 sk->sk_state_change(sk);
Parthasarathy Bhuvaragane7eb0582018-10-10 17:50:23 +02001234
1235 /* State change is ignored if socket already awake,
1236 * - convert msg to abort msg and add to inqueue
1237 */
1238 msg_set_user(hdr, TIPC_CRITICAL_IMPORTANCE);
1239 msg_set_type(hdr, TIPC_CONN_MSG);
1240 msg_set_size(hdr, BASIC_H_SIZE);
1241 msg_set_hdr_sz(hdr, BASIC_H_SIZE);
1242 __skb_queue_tail(inputq, skb);
1243 return;
Parthasarathy Bhuvaraganc1be7752017-04-26 10:05:02 +02001244 }
1245
Parthasarathy Bhuvaragan8ea642e2016-11-01 14:02:44 +01001246 tsk->probe_unacked = false;
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001247
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001248 if (mtyp == CONN_PROBE) {
1249 msg_set_type(hdr, CONN_PROBE_REPLY);
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04001250 if (tipc_msg_reverse(onode, &skb, TIPC_OK))
1251 __skb_queue_tail(xmitq, skb);
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001252 return;
1253 } else if (mtyp == CONN_ACK) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001254 conn_cong = tsk_conn_cong(tsk);
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001255 tsk->snt_unacked -= msg_conn_ack(hdr);
1256 if (tsk->peer_caps & TIPC_BLOCK_FLOWCTL)
1257 tsk->snd_win = msg_adv_win(hdr);
Jon Paul Maloy60120522014-06-25 20:41:42 -05001258 if (conn_cong)
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001259 sk->sk_write_space(sk);
1260 } else if (mtyp != CONN_PROBE_REPLY) {
1261 pr_warn("Received unknown CONN_PROTO msg\n");
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001262 }
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001263exit:
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04001264 kfree_skb(skb);
Jon Paul Maloyac0074e2014-06-25 20:41:41 -05001265}
1266
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001267/**
Ying Xue247f0f32014-02-18 16:06:46 +08001268 * tipc_sendmsg - send message in connectionless manner
Per Lidenb97bf3f2006-01-02 19:04:38 +01001269 * @sock: socket structure
1270 * @m: message to send
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001271 * @dsz: amount of user data to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001272 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001273 * Message must have an destination specified explicitly.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001274 * Used for SOCK_RDM and SOCK_DGRAM messages,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001275 * and for 'SYN' messages on SOCK_SEQPACKET and SOCK_STREAM connections.
1276 * (Note: 'SYN+' is prohibited on SOCK_STREAM.)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001277 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001278 * Returns the number of bytes sent on success, or errno otherwise
1279 */
Ying Xue1b784142015-03-02 15:37:48 +08001280static int tipc_sendmsg(struct socket *sock,
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001281 struct msghdr *m, size_t dsz)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001282{
Ying Xue39a0295f2015-03-02 15:37:47 +08001283 struct sock *sk = sock->sk;
1284 int ret;
1285
1286 lock_sock(sk);
1287 ret = __tipc_sendmsg(sock, m, dsz);
1288 release_sock(sk);
1289
1290 return ret;
1291}
1292
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001293static int __tipc_sendmsg(struct socket *sock, struct msghdr *m, size_t dlen)
Ying Xue39a0295f2015-03-02 15:37:47 +08001294{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001295 struct sock *sk = sock->sk;
Ying Xuef2f98002015-01-09 15:27:05 +08001296 struct net *net = sock_net(sk);
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001297 struct tipc_sock *tsk = tipc_sk(sk);
1298 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
1299 long timeout = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT);
1300 struct list_head *clinks = &tsk->cong_links;
1301 bool syn = !tipc_sk_type_connectionless(sk);
Jon Maloy75da2162017-10-13 11:04:23 +02001302 struct tipc_group *grp = tsk->group;
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001303 struct tipc_msg *hdr = &tsk->phdr;
Erik Hugnef2f80362015-03-19 09:02:19 +01001304 struct tipc_name_seq *seq;
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001305 struct sk_buff_head pkts;
Jon Maloy335b9292018-04-12 01:15:48 +02001306 u32 dport, dnode = 0;
Jon Maloy928df182018-03-15 16:48:51 +01001307 u32 type, inst;
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001308 int mtu, rc;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001309
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001310 if (unlikely(dlen > TIPC_MAX_USER_MSG_SIZE))
Allan Stephensc29c3f72010-04-20 17:58:24 -04001311 return -EMSGSIZE;
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001312
Jon Maloy27bd9ec2017-10-13 11:04:27 +02001313 if (likely(dest)) {
1314 if (unlikely(m->msg_namelen < sizeof(*dest)))
1315 return -EINVAL;
1316 if (unlikely(dest->family != AF_TIPC))
1317 return -EINVAL;
1318 }
1319
1320 if (grp) {
1321 if (!dest)
1322 return tipc_send_group_bcast(sock, m, dlen, timeout);
Jon Maloyee106d72017-10-13 11:04:28 +02001323 if (dest->addrtype == TIPC_ADDR_NAME)
1324 return tipc_send_group_anycast(sock, m, dlen, timeout);
Jon Maloy27bd9ec2017-10-13 11:04:27 +02001325 if (dest->addrtype == TIPC_ADDR_ID)
1326 return tipc_send_group_unicast(sock, m, dlen, timeout);
Jon Maloy5b8dddb2017-10-13 11:04:29 +02001327 if (dest->addrtype == TIPC_ADDR_MCAST)
1328 return tipc_send_group_mcast(sock, m, dlen, timeout);
Jon Maloy27bd9ec2017-10-13 11:04:27 +02001329 return -EINVAL;
1330 }
Jon Maloy75da2162017-10-13 11:04:23 +02001331
Erik Hugnef2f80362015-03-19 09:02:19 +01001332 if (unlikely(!dest)) {
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001333 dest = &tsk->peer;
1334 if (!syn || dest->family != AF_TIPC)
Erik Hugnef2f80362015-03-19 09:02:19 +01001335 return -EDESTADDRREQ;
Erik Hugnef2f80362015-03-19 09:02:19 +01001336 }
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001337
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001338 if (unlikely(syn)) {
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +01001339 if (sk->sk_state == TIPC_LISTEN)
Ying Xue39a0295f2015-03-02 15:37:47 +08001340 return -EPIPE;
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +01001341 if (sk->sk_state != TIPC_OPEN)
Ying Xue39a0295f2015-03-02 15:37:47 +08001342 return -EISCONN;
1343 if (tsk->published)
1344 return -EOPNOTSUPP;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001345 if (dest->addrtype == TIPC_ADDR_NAME) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001346 tsk->conn_type = dest->addr.name.name.type;
1347 tsk->conn_instance = dest->addr.name.name.instance;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001348 }
Jon Maloy25b92212018-09-28 20:23:21 +02001349 msg_set_syn(hdr, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001350 }
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001351
Erik Hugnef2f80362015-03-19 09:02:19 +01001352 seq = &dest->addr.nameseq;
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001353 if (dest->addrtype == TIPC_ADDR_MCAST)
1354 return tipc_sendmcast(sock, seq, m, dlen, timeout);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001355
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001356 if (dest->addrtype == TIPC_ADDR_NAME) {
1357 type = dest->addr.name.name.type;
1358 inst = dest->addr.name.name.instance;
Jon Maloy928df182018-03-15 16:48:51 +01001359 dnode = dest->addr.name.domain;
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001360 msg_set_type(hdr, TIPC_NAMED_MSG);
1361 msg_set_hdr_sz(hdr, NAMED_H_SIZE);
1362 msg_set_nametype(hdr, type);
1363 msg_set_nameinst(hdr, inst);
Jon Maloy928df182018-03-15 16:48:51 +01001364 msg_set_lookup_scope(hdr, tipc_node2scope(dnode));
Ying Xue4ac1c8d2015-01-09 15:27:09 +08001365 dport = tipc_nametbl_translate(net, type, inst, &dnode);
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001366 msg_set_destnode(hdr, dnode);
1367 msg_set_destport(hdr, dport);
Ying Xue39a0295f2015-03-02 15:37:47 +08001368 if (unlikely(!dport && !dnode))
1369 return -EHOSTUNREACH;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001370 } else if (dest->addrtype == TIPC_ADDR_ID) {
1371 dnode = dest->addr.id.node;
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001372 msg_set_type(hdr, TIPC_DIRECT_MSG);
1373 msg_set_lookup_scope(hdr, 0);
1374 msg_set_destnode(hdr, dnode);
1375 msg_set_destport(hdr, dest->addr.id.ref);
1376 msg_set_hdr_sz(hdr, BASIC_H_SIZE);
Jon Maloy335b9292018-04-12 01:15:48 +02001377 } else {
1378 return -EINVAL;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001379 }
1380
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001381 /* Block or return if destination link is congested */
Jon Maloya80ae532017-10-13 11:04:22 +02001382 rc = tipc_wait_for_cond(sock, &timeout,
1383 !tipc_dest_find(clinks, dnode, 0));
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001384 if (unlikely(rc))
Ying Xue39a0295f2015-03-02 15:37:47 +08001385 return rc;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001386
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001387 skb_queue_head_init(&pkts);
1388 mtu = tipc_node_get_mtu(net, dnode, tsk->portid);
1389 rc = tipc_msg_build(hdr, m, 0, dlen, mtu, &pkts);
1390 if (unlikely(rc != dlen))
1391 return rc;
Tung Nguyen67879272018-09-28 20:23:22 +02001392 if (unlikely(syn && !tipc_msg_skb_clone(&pkts, &sk->sk_write_queue)))
1393 return -ENOMEM;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -05001394
Tuong Lien01e661e2018-12-19 09:17:58 +07001395 trace_tipc_sk_sendmsg(sk, skb_peek(&pkts), TIPC_DUMP_SK_SNDQ, " ");
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001396 rc = tipc_node_xmit(net, &pkts, dnode, tsk->portid);
1397 if (unlikely(rc == -ELINKCONG)) {
Jon Maloya80ae532017-10-13 11:04:22 +02001398 tipc_dest_push(clinks, dnode, 0);
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001399 tsk->cong_link_cnt++;
1400 rc = 0;
1401 }
1402
1403 if (unlikely(syn && !rc))
1404 tipc_set_sk_state(sk, TIPC_CONNECTING);
1405
1406 return rc ? rc : dlen;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001407}
1408
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001409/**
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001410 * tipc_sendstream - send stream-oriented data
Per Lidenb97bf3f2006-01-02 19:04:38 +01001411 * @sock: socket structure
1412 * @m: data to send
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001413 * @dsz: total length of data to be transmitted
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001414 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001415 * Used for SOCK_STREAM data.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001416 *
1417 * Returns the number of bytes sent on success (or partial success),
Allan Stephens1303e8f2006-06-25 23:46:50 -07001418 * or errno if no data sent
Per Lidenb97bf3f2006-01-02 19:04:38 +01001419 */
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001420static int tipc_sendstream(struct socket *sock, struct msghdr *m, size_t dsz)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001421{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001422 struct sock *sk = sock->sk;
Ying Xue39a0295f2015-03-02 15:37:47 +08001423 int ret;
1424
1425 lock_sock(sk);
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001426 ret = __tipc_sendstream(sock, m, dsz);
Ying Xue39a0295f2015-03-02 15:37:47 +08001427 release_sock(sk);
1428
1429 return ret;
1430}
1431
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001432static int __tipc_sendstream(struct socket *sock, struct msghdr *m, size_t dlen)
Ying Xue39a0295f2015-03-02 15:37:47 +08001433{
1434 struct sock *sk = sock->sk;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001435 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001436 long timeout = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT);
1437 struct tipc_sock *tsk = tipc_sk(sk);
1438 struct tipc_msg *hdr = &tsk->phdr;
1439 struct net *net = sock_net(sk);
1440 struct sk_buff_head pkts;
1441 u32 dnode = tsk_peer_node(tsk);
1442 int send, sent = 0;
1443 int rc = 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001444
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001445 skb_queue_head_init(&pkts);
1446
1447 if (unlikely(dlen > INT_MAX))
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001448 return -EMSGSIZE;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001449
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001450 /* Handle implicit connection setup */
1451 if (unlikely(dest)) {
1452 rc = __tipc_sendmsg(sock, m, dlen);
Parthasarathy Bhuvaragan92ef12b2018-09-25 18:21:58 +02001453 if (dlen && dlen == rc) {
1454 tsk->peer_caps = tipc_node_get_capabilities(net, dnode);
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001455 tsk->snt_unacked = tsk_inc(tsk, dlen + msg_hdr_sz(hdr));
Parthasarathy Bhuvaragan92ef12b2018-09-25 18:21:58 +02001456 }
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001457 return rc;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001458 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001459
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001460 do {
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001461 rc = tipc_wait_for_cond(sock, &timeout,
1462 (!tsk->cong_link_cnt &&
Jon Paul Maloy8c44e1a2017-01-03 10:55:09 -05001463 !tsk_conn_cong(tsk) &&
1464 tipc_sk_connected(sk)));
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001465 if (unlikely(rc))
1466 break;
Ying Xue39a0295f2015-03-02 15:37:47 +08001467
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001468 send = min_t(size_t, dlen - sent, TIPC_MAX_USER_MSG_SIZE);
1469 rc = tipc_msg_build(hdr, m, sent, send, tsk->max_pkt, &pkts);
1470 if (unlikely(rc != send))
1471 break;
1472
Tuong Lien01e661e2018-12-19 09:17:58 +07001473 trace_tipc_sk_sendstream(sk, skb_peek(&pkts),
1474 TIPC_DUMP_SK_SNDQ, " ");
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001475 rc = tipc_node_xmit(net, &pkts, dnode, tsk->portid);
1476 if (unlikely(rc == -ELINKCONG)) {
1477 tsk->cong_link_cnt = 1;
1478 rc = 0;
1479 }
1480 if (likely(!rc)) {
1481 tsk->snt_unacked += tsk_inc(tsk, send + MIN_H_SIZE);
1482 sent += send;
1483 }
1484 } while (sent < dlen && !rc);
1485
Parthasarathy Bhuvaragan3364d612017-04-24 15:00:42 +02001486 return sent ? sent : rc;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001487}
1488
1489/**
1490 * tipc_send_packet - send a connection-oriented message
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001491 * @sock: socket structure
1492 * @m: message to send
1493 * @dsz: length of data to be transmitted
1494 *
1495 * Used for SOCK_SEQPACKET messages.
1496 *
1497 * Returns the number of bytes sent on success, or errno otherwise
1498 */
Ying Xue1b784142015-03-02 15:37:48 +08001499static int tipc_send_packet(struct socket *sock, struct msghdr *m, size_t dsz)
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001500{
1501 if (dsz > TIPC_MAX_USER_MSG_SIZE)
1502 return -EMSGSIZE;
1503
Jon Paul Maloy365ad352017-01-03 10:55:11 -05001504 return tipc_sendstream(sock, m, dsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001505}
1506
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001507/* tipc_sk_finish_conn - complete the setup of a connection
Per Lidenb97bf3f2006-01-02 19:04:38 +01001508 */
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001509static void tipc_sk_finish_conn(struct tipc_sock *tsk, u32 peer_port,
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001510 u32 peer_node)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001511{
Ying Xue3721e9c2015-01-13 17:07:48 +08001512 struct sock *sk = &tsk->sk;
1513 struct net *net = sock_net(sk);
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001514 struct tipc_msg *msg = &tsk->phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001515
Jon Maloy25b92212018-09-28 20:23:21 +02001516 msg_set_syn(msg, 0);
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001517 msg_set_destnode(msg, peer_node);
1518 msg_set_destport(msg, peer_port);
1519 msg_set_type(msg, TIPC_CONN_MSG);
1520 msg_set_lookup_scope(msg, 0);
1521 msg_set_hdr_sz(msg, SHORT_H_SIZE);
Jon Paul Maloyf9fef182014-03-12 11:31:08 -04001522
Jon Maloy0d5fcebf2017-10-20 11:21:32 +02001523 sk_reset_timer(sk, &sk->sk_timer, jiffies + CONN_PROBING_INTV);
Parthasarathy Bhuvaragan8ea642e2016-11-01 14:02:44 +01001524 tipc_set_sk_state(sk, TIPC_ESTABLISHED);
Ying Xuef2f98002015-01-09 15:27:05 +08001525 tipc_node_add_conn(net, peer_node, tsk->portid, peer_port);
1526 tsk->max_pkt = tipc_node_get_mtu(net, peer_node, tsk->portid);
Jon Paul Maloy60020e12016-05-02 11:58:46 -04001527 tsk->peer_caps = tipc_node_get_capabilities(net, peer_node);
Tung Nguyen67879272018-09-28 20:23:22 +02001528 __skb_queue_purge(&sk->sk_write_queue);
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001529 if (tsk->peer_caps & TIPC_BLOCK_FLOWCTL)
1530 return;
1531
1532 /* Fall back to message based flow control */
1533 tsk->rcv_win = FLOWCTL_MSG_WIN;
1534 tsk->snd_win = FLOWCTL_MSG_WIN;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001535}
1536
1537/**
Jon Maloy31c82a22017-10-13 11:04:24 +02001538 * tipc_sk_set_orig_addr - capture sender's address for received message
Per Lidenb97bf3f2006-01-02 19:04:38 +01001539 * @m: descriptor for message info
Jon Maloy31c82a22017-10-13 11:04:24 +02001540 * @hdr: received message header
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001541 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001542 * Note: Address is not captured if not requested by receiver.
1543 */
Jon Maloy31c82a22017-10-13 11:04:24 +02001544static void tipc_sk_set_orig_addr(struct msghdr *m, struct sk_buff *skb)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001545{
Jon Maloy31c82a22017-10-13 11:04:24 +02001546 DECLARE_SOCKADDR(struct sockaddr_pair *, srcaddr, m->msg_name);
1547 struct tipc_msg *hdr = buf_msg(skb);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001548
Jon Maloy31c82a22017-10-13 11:04:24 +02001549 if (!srcaddr)
1550 return;
1551
1552 srcaddr->sock.family = AF_TIPC;
1553 srcaddr->sock.addrtype = TIPC_ADDR_ID;
Eric Dumazet09c8b972018-05-09 09:50:22 -07001554 srcaddr->sock.scope = 0;
Jon Maloy31c82a22017-10-13 11:04:24 +02001555 srcaddr->sock.addr.id.ref = msg_origport(hdr);
1556 srcaddr->sock.addr.id.node = msg_orignode(hdr);
1557 srcaddr->sock.addr.name.domain = 0;
Jon Maloy31c82a22017-10-13 11:04:24 +02001558 m->msg_namelen = sizeof(struct sockaddr_tipc);
1559
1560 if (!msg_in_group(hdr))
1561 return;
1562
1563 /* Group message users may also want to know sending member's id */
1564 srcaddr->member.family = AF_TIPC;
1565 srcaddr->member.addrtype = TIPC_ADDR_NAME;
Eric Dumazet09c8b972018-05-09 09:50:22 -07001566 srcaddr->member.scope = 0;
Jon Maloy31c82a22017-10-13 11:04:24 +02001567 srcaddr->member.addr.name.name.type = msg_nametype(hdr);
1568 srcaddr->member.addr.name.name.instance = TIPC_SKB_CB(skb)->orig_member;
1569 srcaddr->member.addr.name.domain = 0;
1570 m->msg_namelen = sizeof(*srcaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001571}
1572
1573/**
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001574 * tipc_sk_anc_data_recv - optionally capture ancillary data for received message
Per Lidenb97bf3f2006-01-02 19:04:38 +01001575 * @m: descriptor for message info
Jon Maloy1c1274a2018-11-17 12:17:06 -05001576 * @skb: received message buffer
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001577 * @tsk: TIPC port associated with message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001578 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001579 * Note: Ancillary data is not captured if not requested by receiver.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001580 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001581 * Returns 0 if successful, otherwise errno
1582 */
Jon Maloy1c1274a2018-11-17 12:17:06 -05001583static int tipc_sk_anc_data_recv(struct msghdr *m, struct sk_buff *skb,
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001584 struct tipc_sock *tsk)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001585{
Jon Maloy1c1274a2018-11-17 12:17:06 -05001586 struct tipc_msg *msg;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001587 u32 anc_data[3];
1588 u32 err;
1589 u32 dest_type;
Allan Stephens3546c752006-06-25 23:45:24 -07001590 int has_name;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001591 int res;
1592
1593 if (likely(m->msg_controllen == 0))
1594 return 0;
Jon Maloy1c1274a2018-11-17 12:17:06 -05001595 msg = buf_msg(skb);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001596
1597 /* Optionally capture errored message object(s) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001598 err = msg ? msg_errcode(msg) : 0;
1599 if (unlikely(err)) {
1600 anc_data[0] = err;
1601 anc_data[1] = msg_data_sz(msg);
Allan Stephens2db99832010-12-31 18:59:33 +00001602 res = put_cmsg(m, SOL_TIPC, TIPC_ERRINFO, 8, anc_data);
1603 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001604 return res;
Allan Stephens2db99832010-12-31 18:59:33 +00001605 if (anc_data[1]) {
Jon Maloy1c1274a2018-11-17 12:17:06 -05001606 if (skb_linearize(skb))
1607 return -ENOMEM;
1608 msg = buf_msg(skb);
Allan Stephens2db99832010-12-31 18:59:33 +00001609 res = put_cmsg(m, SOL_TIPC, TIPC_RETDATA, anc_data[1],
1610 msg_data(msg));
1611 if (res)
1612 return res;
1613 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001614 }
1615
1616 /* Optionally capture message destination object */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001617 dest_type = msg ? msg_type(msg) : TIPC_DIRECT_MSG;
1618 switch (dest_type) {
1619 case TIPC_NAMED_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -07001620 has_name = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001621 anc_data[0] = msg_nametype(msg);
1622 anc_data[1] = msg_namelower(msg);
1623 anc_data[2] = msg_namelower(msg);
1624 break;
1625 case TIPC_MCAST_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -07001626 has_name = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001627 anc_data[0] = msg_nametype(msg);
1628 anc_data[1] = msg_namelower(msg);
1629 anc_data[2] = msg_nameupper(msg);
1630 break;
1631 case TIPC_CONN_MSG:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001632 has_name = (tsk->conn_type != 0);
1633 anc_data[0] = tsk->conn_type;
1634 anc_data[1] = tsk->conn_instance;
1635 anc_data[2] = tsk->conn_instance;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001636 break;
1637 default:
Allan Stephens3546c752006-06-25 23:45:24 -07001638 has_name = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001639 }
Allan Stephens2db99832010-12-31 18:59:33 +00001640 if (has_name) {
1641 res = put_cmsg(m, SOL_TIPC, TIPC_DESTNAME, 12, anc_data);
1642 if (res)
1643 return res;
1644 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001645
1646 return 0;
1647}
1648
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001649static void tipc_sk_send_ack(struct tipc_sock *tsk)
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001650{
Parthasarathy Bhuvaragand6fb7e92016-11-01 14:02:40 +01001651 struct sock *sk = &tsk->sk;
1652 struct net *net = sock_net(sk);
Ying Xuea6ca1092014-11-26 11:41:55 +08001653 struct sk_buff *skb = NULL;
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001654 struct tipc_msg *msg;
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001655 u32 peer_port = tsk_peer_port(tsk);
1656 u32 dnode = tsk_peer_node(tsk);
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001657
Parthasarathy Bhuvaragand6fb7e92016-11-01 14:02:40 +01001658 if (!tipc_sk_connected(sk))
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001659 return;
Jon Paul Maloyc5898632015-02-05 08:36:36 -05001660 skb = tipc_msg_create(CONN_MANAGER, CONN_ACK, INT_H_SIZE, 0,
1661 dnode, tsk_own_node(tsk), peer_port,
1662 tsk->portid, TIPC_OK);
Ying Xuea6ca1092014-11-26 11:41:55 +08001663 if (!skb)
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001664 return;
Ying Xuea6ca1092014-11-26 11:41:55 +08001665 msg = buf_msg(skb);
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001666 msg_set_conn_ack(msg, tsk->rcv_unacked);
1667 tsk->rcv_unacked = 0;
1668
1669 /* Adjust to and advertize the correct window limit */
1670 if (tsk->peer_caps & TIPC_BLOCK_FLOWCTL) {
1671 tsk->rcv_win = tsk_adv_blocks(tsk->sk.sk_rcvbuf);
1672 msg_set_adv_win(msg, tsk->rcv_win);
1673 }
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -04001674 tipc_node_xmit_skb(net, skb, dnode, msg_link_selector(msg));
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001675}
1676
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001677static int tipc_wait_for_rcvmsg(struct socket *sock, long *timeop)
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001678{
1679 struct sock *sk = sock->sk;
1680 DEFINE_WAIT(wait);
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001681 long timeo = *timeop;
Parthasarathy Bhuvaragan4e0df492017-04-26 10:05:01 +02001682 int err = sock_error(sk);
1683
1684 if (err)
1685 return err;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001686
1687 for (;;) {
1688 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Ying Xuefe8e4642014-03-06 14:40:18 +01001689 if (timeo && skb_queue_empty(&sk->sk_receive_queue)) {
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +01001690 if (sk->sk_shutdown & RCV_SHUTDOWN) {
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001691 err = -ENOTCONN;
1692 break;
1693 }
1694 release_sock(sk);
1695 timeo = schedule_timeout(timeo);
1696 lock_sock(sk);
1697 }
1698 err = 0;
1699 if (!skb_queue_empty(&sk->sk_receive_queue))
1700 break;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001701 err = -EAGAIN;
1702 if (!timeo)
1703 break;
Erik Hugne143fe222015-03-09 10:43:42 +01001704 err = sock_intr_errno(timeo);
1705 if (signal_pending(current))
1706 break;
Parthasarathy Bhuvaragan4e0df492017-04-26 10:05:01 +02001707
1708 err = sock_error(sk);
1709 if (err)
1710 break;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001711 }
1712 finish_wait(sk_sleep(sk), &wait);
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001713 *timeop = timeo;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001714 return err;
1715}
1716
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001717/**
Ying Xue247f0f32014-02-18 16:06:46 +08001718 * tipc_recvmsg - receive packet-oriented message
Per Lidenb97bf3f2006-01-02 19:04:38 +01001719 * @m: descriptor for message info
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001720 * @buflen: length of user buffer area
Per Lidenb97bf3f2006-01-02 19:04:38 +01001721 * @flags: receive flags
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001722 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001723 * Used for SOCK_DGRAM, SOCK_RDM, and SOCK_SEQPACKET messages.
1724 * If the complete message doesn't fit in user area, truncate it.
1725 *
1726 * Returns size of returned message data, errno otherwise
1727 */
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001728static int tipc_recvmsg(struct socket *sock, struct msghdr *m,
1729 size_t buflen, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001730{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001731 struct sock *sk = sock->sk;
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001732 bool connected = !tipc_sk_type_connectionless(sk);
Jon Maloyae236fb2017-10-13 11:04:25 +02001733 struct tipc_sock *tsk = tipc_sk(sk);
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001734 int rc, err, hlen, dlen, copy;
Jon Maloyb7d42632017-10-13 11:04:26 +02001735 struct sk_buff_head xmitq;
Jon Maloyae236fb2017-10-13 11:04:25 +02001736 struct tipc_msg *hdr;
1737 struct sk_buff *skb;
1738 bool grp_evt;
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001739 long timeout;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001740
Allan Stephens0c3141e2008-04-15 00:22:02 -07001741 /* Catch invalid receive requests */
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001742 if (unlikely(!buflen))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001743 return -EINVAL;
1744
Allan Stephens0c3141e2008-04-15 00:22:02 -07001745 lock_sock(sk);
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001746 if (unlikely(connected && sk->sk_state == TIPC_OPEN)) {
1747 rc = -ENOTCONN;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001748 goto exit;
1749 }
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001750 timeout = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001751
Jon Maloyb7d42632017-10-13 11:04:26 +02001752 /* Step rcv queue to first msg with data or error; wait if necessary */
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001753 do {
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001754 rc = tipc_wait_for_rcvmsg(sock, &timeout);
1755 if (unlikely(rc))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001756 goto exit;
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001757 skb = skb_peek(&sk->sk_receive_queue);
1758 hdr = buf_msg(skb);
1759 dlen = msg_data_sz(hdr);
1760 hlen = msg_hdr_sz(hdr);
1761 err = msg_errcode(hdr);
Jon Maloyae236fb2017-10-13 11:04:25 +02001762 grp_evt = msg_is_grp_evt(hdr);
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001763 if (likely(dlen || err))
1764 break;
1765 tsk_advance_rx_queue(sk);
1766 } while (1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001767
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001768 /* Collect msg meta data, including error code and rejected data */
Jon Maloy31c82a22017-10-13 11:04:24 +02001769 tipc_sk_set_orig_addr(m, skb);
Jon Maloy1c1274a2018-11-17 12:17:06 -05001770 rc = tipc_sk_anc_data_recv(m, skb, tsk);
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001771 if (unlikely(rc))
1772 goto exit;
Jon Maloy1c1274a2018-11-17 12:17:06 -05001773 hdr = buf_msg(skb);
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001774
1775 /* Capture data if non-error msg, otherwise just set return value */
1776 if (likely(!err)) {
1777 copy = min_t(int, dlen, buflen);
1778 if (unlikely(copy != dlen))
1779 m->msg_flags |= MSG_TRUNC;
1780 rc = skb_copy_datagram_msg(skb, hlen, m, copy);
1781 } else {
1782 copy = 0;
1783 rc = 0;
1784 if (err != TIPC_CONN_SHUTDOWN && connected && !m->msg_control)
1785 rc = -ECONNRESET;
1786 }
1787 if (unlikely(rc))
1788 goto exit;
1789
Jon Maloyae236fb2017-10-13 11:04:25 +02001790 /* Mark message as group event if applicable */
1791 if (unlikely(grp_evt)) {
1792 if (msg_grp_evt(hdr) == TIPC_WITHDRAWN)
1793 m->msg_flags |= MSG_EOR;
1794 m->msg_flags |= MSG_OOB;
1795 copy = 0;
1796 }
1797
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001798 /* Caption of data or error code/rejected data was successful */
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001799 if (unlikely(flags & MSG_PEEK))
1800 goto exit;
1801
Jon Maloyb7d42632017-10-13 11:04:26 +02001802 /* Send group flow control advertisement when applicable */
1803 if (tsk->group && msg_in_group(hdr) && !grp_evt) {
1804 skb_queue_head_init(&xmitq);
1805 tipc_group_update_rcv_win(tsk->group, tsk_blocks(hlen + dlen),
1806 msg_orignode(hdr), msg_origport(hdr),
1807 &xmitq);
1808 tipc_node_distr_xmit(sock_net(sk), &xmitq);
1809 }
1810
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001811 tsk_advance_rx_queue(sk);
Jon Maloyae236fb2017-10-13 11:04:25 +02001812
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001813 if (likely(!connected))
1814 goto exit;
1815
Jon Maloyb7d42632017-10-13 11:04:26 +02001816 /* Send connection flow control advertisement when applicable */
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001817 tsk->rcv_unacked += tsk_inc(tsk, hlen + dlen);
1818 if (tsk->rcv_unacked >= tsk->rcv_win / TIPC_ACK_RATE)
1819 tipc_sk_send_ack(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001820exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001821 release_sock(sk);
Jon Paul Maloye9f8b102017-05-02 18:16:53 +02001822 return rc ? rc : copy;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001823}
1824
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001825/**
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001826 * tipc_recvstream - receive stream-oriented data
Per Lidenb97bf3f2006-01-02 19:04:38 +01001827 * @m: descriptor for message info
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001828 * @buflen: total size of user buffer area
Per Lidenb97bf3f2006-01-02 19:04:38 +01001829 * @flags: receive flags
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001830 *
1831 * Used for SOCK_STREAM messages only. If not enough data is available
Per Lidenb97bf3f2006-01-02 19:04:38 +01001832 * will optionally wait for more; never truncates data.
1833 *
1834 * Returns size of returned message data, errno otherwise
1835 */
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001836static int tipc_recvstream(struct socket *sock, struct msghdr *m,
1837 size_t buflen, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001838{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001839 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001840 struct tipc_sock *tsk = tipc_sk(sk);
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001841 struct sk_buff *skb;
1842 struct tipc_msg *hdr;
1843 struct tipc_skb_cb *skb_cb;
1844 bool peek = flags & MSG_PEEK;
1845 int offset, required, copy, copied = 0;
1846 int hlen, dlen, err, rc;
1847 long timeout;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001848
1849 /* Catch invalid receive attempts */
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001850 if (unlikely(!buflen))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001851 return -EINVAL;
1852
Allan Stephens0c3141e2008-04-15 00:22:02 -07001853 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001854
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +01001855 if (unlikely(sk->sk_state == TIPC_OPEN)) {
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001856 rc = -ENOTCONN;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001857 goto exit;
1858 }
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001859 required = sock_rcvlowat(sk, flags & MSG_WAITALL, buflen);
1860 timeout = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001861
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001862 do {
1863 /* Look at first msg in receive queue; wait if necessary */
1864 rc = tipc_wait_for_rcvmsg(sock, &timeout);
1865 if (unlikely(rc))
1866 break;
1867 skb = skb_peek(&sk->sk_receive_queue);
1868 skb_cb = TIPC_SKB_CB(skb);
1869 hdr = buf_msg(skb);
1870 dlen = msg_data_sz(hdr);
1871 hlen = msg_hdr_sz(hdr);
1872 err = msg_errcode(hdr);
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001873
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001874 /* Discard any empty non-errored (SYN-) message */
1875 if (unlikely(!dlen && !err)) {
1876 tsk_advance_rx_queue(sk);
1877 continue;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001878 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001879
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001880 /* Collect msg meta data, incl. error code and rejected data */
1881 if (!copied) {
Jon Maloy31c82a22017-10-13 11:04:24 +02001882 tipc_sk_set_orig_addr(m, skb);
Jon Maloy1c1274a2018-11-17 12:17:06 -05001883 rc = tipc_sk_anc_data_recv(m, skb, tsk);
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001884 if (rc)
1885 break;
Jon Maloy1c1274a2018-11-17 12:17:06 -05001886 hdr = buf_msg(skb);
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001887 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001888
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001889 /* Copy data if msg ok, otherwise return error/partial data */
1890 if (likely(!err)) {
1891 offset = skb_cb->bytes_read;
1892 copy = min_t(int, dlen - offset, buflen - copied);
1893 rc = skb_copy_datagram_msg(skb, hlen + offset, m, copy);
1894 if (unlikely(rc))
1895 break;
1896 copied += copy;
1897 offset += copy;
1898 if (unlikely(offset < dlen)) {
1899 if (!peek)
1900 skb_cb->bytes_read = offset;
1901 break;
1902 }
1903 } else {
1904 rc = 0;
1905 if ((err != TIPC_CONN_SHUTDOWN) && !m->msg_control)
1906 rc = -ECONNRESET;
1907 if (copied || rc)
1908 break;
1909 }
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001910
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001911 if (unlikely(peek))
1912 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001913
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001914 tsk_advance_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001915
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001916 /* Send connection flow control advertisement when applicable */
1917 tsk->rcv_unacked += tsk_inc(tsk, hlen + dlen);
1918 if (unlikely(tsk->rcv_unacked >= tsk->rcv_win / TIPC_ACK_RATE))
1919 tipc_sk_send_ack(tsk);
1920
1921 /* Exit if all requested data or FIN/error received */
1922 if (copied == buflen || err)
1923 break;
1924
1925 } while (!skb_queue_empty(&sk->sk_receive_queue) || copied < required);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001926exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001927 release_sock(sk);
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02001928 return copied ? copied : rc;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001929}
1930
1931/**
Ying Xuef288bef2012-08-21 11:16:57 +08001932 * tipc_write_space - wake up thread if port congestion is released
1933 * @sk: socket
1934 */
1935static void tipc_write_space(struct sock *sk)
1936{
1937 struct socket_wq *wq;
1938
1939 rcu_read_lock();
1940 wq = rcu_dereference(sk->sk_wq);
Herbert Xu1ce0bf52015-11-26 13:55:39 +08001941 if (skwq_has_sleeper(wq))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001942 wake_up_interruptible_sync_poll(&wq->wait, EPOLLOUT |
1943 EPOLLWRNORM | EPOLLWRBAND);
Ying Xuef288bef2012-08-21 11:16:57 +08001944 rcu_read_unlock();
1945}
1946
1947/**
1948 * tipc_data_ready - wake up threads to indicate messages have been received
1949 * @sk: socket
1950 * @len: the length of messages
1951 */
David S. Miller676d2362014-04-11 16:15:36 -04001952static void tipc_data_ready(struct sock *sk)
Ying Xuef288bef2012-08-21 11:16:57 +08001953{
1954 struct socket_wq *wq;
1955
1956 rcu_read_lock();
1957 wq = rcu_dereference(sk->sk_wq);
Herbert Xu1ce0bf52015-11-26 13:55:39 +08001958 if (skwq_has_sleeper(wq))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001959 wake_up_interruptible_sync_poll(&wq->wait, EPOLLIN |
1960 EPOLLRDNORM | EPOLLRDBAND);
Ying Xuef288bef2012-08-21 11:16:57 +08001961 rcu_read_unlock();
1962}
1963
Ying Xuef4195d12015-11-22 15:46:05 +08001964static void tipc_sock_destruct(struct sock *sk)
1965{
1966 __skb_queue_purge(&sk->sk_receive_queue);
1967}
1968
Jon Maloy64ac5f52017-10-13 11:04:20 +02001969static void tipc_sk_proto_rcv(struct sock *sk,
1970 struct sk_buff_head *inputq,
1971 struct sk_buff_head *xmitq)
1972{
1973 struct sk_buff *skb = __skb_dequeue(inputq);
1974 struct tipc_sock *tsk = tipc_sk(sk);
1975 struct tipc_msg *hdr = buf_msg(skb);
Jon Maloy75da2162017-10-13 11:04:23 +02001976 struct tipc_group *grp = tsk->group;
Jon Maloyb7d42632017-10-13 11:04:26 +02001977 bool wakeup = false;
Jon Maloy64ac5f52017-10-13 11:04:20 +02001978
1979 switch (msg_user(hdr)) {
1980 case CONN_MANAGER:
Parthasarathy Bhuvaragane7eb0582018-10-10 17:50:23 +02001981 tipc_sk_conn_proto_rcv(tsk, skb, inputq, xmitq);
Jon Maloy64ac5f52017-10-13 11:04:20 +02001982 return;
1983 case SOCK_WAKEUP:
Jon Maloya80ae532017-10-13 11:04:22 +02001984 tipc_dest_del(&tsk->cong_links, msg_orignode(hdr), 0);
Jon Maloy64ac5f52017-10-13 11:04:20 +02001985 tsk->cong_link_cnt--;
Jon Maloyb7d42632017-10-13 11:04:26 +02001986 wakeup = true;
Jon Maloy64ac5f52017-10-13 11:04:20 +02001987 break;
Jon Maloy75da2162017-10-13 11:04:23 +02001988 case GROUP_PROTOCOL:
Jon Maloyb7d42632017-10-13 11:04:26 +02001989 tipc_group_proto_rcv(grp, &wakeup, hdr, inputq, xmitq);
Jon Maloy75da2162017-10-13 11:04:23 +02001990 break;
Jon Maloy64ac5f52017-10-13 11:04:20 +02001991 case TOP_SRV:
Jon Maloyb7d42632017-10-13 11:04:26 +02001992 tipc_group_member_evt(tsk->group, &wakeup, &sk->sk_rcvbuf,
Jon Maloy7ad32bc2018-01-08 21:03:26 +01001993 hdr, inputq, xmitq);
Jon Maloy64ac5f52017-10-13 11:04:20 +02001994 break;
1995 default:
1996 break;
1997 }
1998
Jon Maloyb7d42632017-10-13 11:04:26 +02001999 if (wakeup)
2000 sk->sk_write_space(sk);
2001
Jon Maloy64ac5f52017-10-13 11:04:20 +02002002 kfree_skb(skb);
2003}
2004
Ying Xuef288bef2012-08-21 11:16:57 +08002005/**
Jon Maloy39fdc9c2018-09-28 20:23:20 +02002006 * tipc_sk_filter_connect - check incoming message for a connection-based socket
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002007 * @tsk: TIPC socket
Jon Maloy39fdc9c2018-09-28 20:23:20 +02002008 * @skb: pointer to message buffer.
2009 * Returns true if message should be added to receive queue, false otherwise
Ying Xue7e6c1312012-11-29 18:39:14 -05002010 */
Jon Maloy64ac5f52017-10-13 11:04:20 +02002011static bool tipc_sk_filter_connect(struct tipc_sock *tsk, struct sk_buff *skb)
Ying Xue7e6c1312012-11-29 18:39:14 -05002012{
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002013 struct sock *sk = &tsk->sk;
Ying Xuef2f98002015-01-09 15:27:05 +08002014 struct net *net = sock_net(sk);
Jon Paul Maloycda36962015-07-22 10:11:20 -04002015 struct tipc_msg *hdr = buf_msg(skb);
Jon Maloy39fdc9c2018-09-28 20:23:20 +02002016 bool con_msg = msg_connected(hdr);
2017 u32 pport = tsk_peer_port(tsk);
2018 u32 pnode = tsk_peer_node(tsk);
2019 u32 oport = msg_origport(hdr);
2020 u32 onode = msg_orignode(hdr);
2021 int err = msg_errcode(hdr);
Tung Nguyen67879272018-09-28 20:23:22 +02002022 unsigned long delay;
Ying Xue7e6c1312012-11-29 18:39:14 -05002023
Jon Paul Maloycda36962015-07-22 10:11:20 -04002024 if (unlikely(msg_mcast(hdr)))
2025 return false;
Ying Xue7e6c1312012-11-29 18:39:14 -05002026
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002027 switch (sk->sk_state) {
2028 case TIPC_CONNECTING:
Jon Maloy39fdc9c2018-09-28 20:23:20 +02002029 /* Setup ACK */
2030 if (likely(con_msg)) {
2031 if (err)
2032 break;
2033 tipc_sk_finish_conn(tsk, oport, onode);
2034 msg_set_importance(&tsk->phdr, msg_importance(hdr));
2035 /* ACK+ message with data is added to receive queue */
2036 if (msg_data_sz(hdr))
2037 return true;
2038 /* Empty ACK-, - wake up sleeping connect() and drop */
2039 sk->sk_data_ready(sk);
2040 msg_set_dest_droppable(hdr, 1);
2041 return false;
Parthasarathy Bhuvaragan4e0df492017-04-26 10:05:01 +02002042 }
Jon Maloy39fdc9c2018-09-28 20:23:20 +02002043 /* Ignore connectionless message if not from listening socket */
2044 if (oport != pport || onode != pnode)
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +01002045 return false;
2046
Tung Nguyen67879272018-09-28 20:23:22 +02002047 /* Rejected SYN */
2048 if (err != TIPC_ERR_OVERLOAD)
2049 break;
2050
2051 /* Prepare for new setup attempt if we have a SYN clone */
2052 if (skb_queue_empty(&sk->sk_write_queue))
2053 break;
2054 get_random_bytes(&delay, 2);
2055 delay %= (tsk->conn_timeout / 4);
2056 delay = msecs_to_jiffies(delay + 100);
2057 sk_reset_timer(sk, &sk->sk_timer, jiffies + delay);
2058 return false;
Jon Maloy39fdc9c2018-09-28 20:23:20 +02002059 case TIPC_OPEN:
2060 case TIPC_DISCONNECTING:
2061 return false;
2062 case TIPC_LISTEN:
2063 /* Accept only SYN message */
Jon Maloy25b92212018-09-28 20:23:21 +02002064 if (!msg_is_syn(hdr) &&
2065 tipc_node_get_capabilities(net, onode) & TIPC_SYN_BIT)
2066 return false;
Jon Maloy39fdc9c2018-09-28 20:23:20 +02002067 if (!con_msg && !err)
2068 return true;
2069 return false;
2070 case TIPC_ESTABLISHED:
2071 /* Accept only connection-based messages sent by peer */
2072 if (likely(con_msg && !err && pport == oport && pnode == onode))
2073 return true;
2074 if (!tsk_peer_msg(tsk, hdr))
2075 return false;
2076 if (!err)
2077 return true;
2078 tipc_set_sk_state(sk, TIPC_DISCONNECTING);
2079 tipc_node_remove_conn(net, pnode, tsk->portid);
2080 sk->sk_state_change(sk);
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +01002081 return true;
Ying Xue7e6c1312012-11-29 18:39:14 -05002082 default:
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +01002083 pr_err("Unknown sk_state %u\n", sk->sk_state);
Ying Xue7e6c1312012-11-29 18:39:14 -05002084 }
Jon Maloy39fdc9c2018-09-28 20:23:20 +02002085 /* Abort connection setup attempt */
2086 tipc_set_sk_state(sk, TIPC_DISCONNECTING);
2087 sk->sk_err = ECONNREFUSED;
2088 sk->sk_state_change(sk);
2089 return true;
Ying Xue7e6c1312012-11-29 18:39:14 -05002090}
2091
2092/**
Ying Xueaba79f32013-01-20 23:30:09 +01002093 * rcvbuf_limit - get proper overload limit of socket receive queue
2094 * @sk: socket
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002095 * @skb: message
Ying Xueaba79f32013-01-20 23:30:09 +01002096 *
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002097 * For connection oriented messages, irrespective of importance,
2098 * default queue limit is 2 MB.
Ying Xueaba79f32013-01-20 23:30:09 +01002099 *
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002100 * For connectionless messages, queue limits are based on message
2101 * importance as follows:
Ying Xueaba79f32013-01-20 23:30:09 +01002102 *
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002103 * TIPC_LOW_IMPORTANCE (2 MB)
2104 * TIPC_MEDIUM_IMPORTANCE (4 MB)
2105 * TIPC_HIGH_IMPORTANCE (8 MB)
2106 * TIPC_CRITICAL_IMPORTANCE (16 MB)
Ying Xueaba79f32013-01-20 23:30:09 +01002107 *
2108 * Returns overload limit according to corresponding message importance
2109 */
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002110static unsigned int rcvbuf_limit(struct sock *sk, struct sk_buff *skb)
Ying Xueaba79f32013-01-20 23:30:09 +01002111{
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002112 struct tipc_sock *tsk = tipc_sk(sk);
2113 struct tipc_msg *hdr = buf_msg(skb);
Ying Xueaba79f32013-01-20 23:30:09 +01002114
Jon Maloyb7d42632017-10-13 11:04:26 +02002115 if (unlikely(msg_in_group(hdr)))
2116 return sk->sk_rcvbuf;
2117
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002118 if (unlikely(!msg_connected(hdr)))
2119 return sk->sk_rcvbuf << msg_importance(hdr);
wangweidong0cee6bb2013-12-12 09:36:39 +08002120
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04002121 if (likely(tsk->peer_caps & TIPC_BLOCK_FLOWCTL))
2122 return sk->sk_rcvbuf;
2123
2124 return FLOWCTL_MSG_LIM;
Ying Xueaba79f32013-01-20 23:30:09 +01002125}
2126
2127/**
Jon Maloy64ac5f52017-10-13 11:04:20 +02002128 * tipc_sk_filter_rcv - validate incoming message
Allan Stephens0c3141e2008-04-15 00:22:02 -07002129 * @sk: socket
Jon Paul Maloycda36962015-07-22 10:11:20 -04002130 * @skb: pointer to message.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002131 *
Allan Stephens0c3141e2008-04-15 00:22:02 -07002132 * Enqueues message on receive queue if acceptable; optionally handles
2133 * disconnect indication for a connected socket.
2134 *
Jon Paul Maloy1186adf2015-02-05 08:36:37 -05002135 * Called with socket lock already taken
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002136 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002137 */
Jon Maloy64ac5f52017-10-13 11:04:20 +02002138static void tipc_sk_filter_rcv(struct sock *sk, struct sk_buff *skb,
2139 struct sk_buff_head *xmitq)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002140{
Jon Maloy64ac5f52017-10-13 11:04:20 +02002141 bool sk_conn = !tipc_sk_type_connectionless(sk);
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002142 struct tipc_sock *tsk = tipc_sk(sk);
Jon Maloy75da2162017-10-13 11:04:23 +02002143 struct tipc_group *grp = tsk->group;
Jon Paul Maloycda36962015-07-22 10:11:20 -04002144 struct tipc_msg *hdr = buf_msg(skb);
Jon Maloy64ac5f52017-10-13 11:04:20 +02002145 struct net *net = sock_net(sk);
2146 struct sk_buff_head inputq;
2147 int limit, err = TIPC_OK;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002148
Tuong Lien01e661e2018-12-19 09:17:58 +07002149 trace_tipc_sk_filter_rcv(sk, skb, TIPC_DUMP_ALL, " ");
Parthasarathy Bhuvaraganba8aebe2016-11-01 14:02:37 +01002150 TIPC_SKB_CB(skb)->bytes_read = 0;
Jon Maloy64ac5f52017-10-13 11:04:20 +02002151 __skb_queue_head_init(&inputq);
2152 __skb_queue_tail(&inputq, skb);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002153
Jon Maloy64ac5f52017-10-13 11:04:20 +02002154 if (unlikely(!msg_isdata(hdr)))
2155 tipc_sk_proto_rcv(sk, &inputq, xmitq);
Jon Paul Maloycda36962015-07-22 10:11:20 -04002156
Jon Maloy75da2162017-10-13 11:04:23 +02002157 if (unlikely(grp))
2158 tipc_group_filter_msg(grp, &inputq, xmitq);
2159
Jon Maloy64ac5f52017-10-13 11:04:20 +02002160 /* Validate and add to receive buffer if there is space */
2161 while ((skb = __skb_dequeue(&inputq))) {
2162 hdr = buf_msg(skb);
2163 limit = rcvbuf_limit(sk, skb);
2164 if ((sk_conn && !tipc_sk_filter_connect(tsk, skb)) ||
Jon Maloy75da2162017-10-13 11:04:23 +02002165 (!sk_conn && msg_connected(hdr)) ||
2166 (!grp && msg_in_group(hdr)))
Jon Maloy64ac5f52017-10-13 11:04:20 +02002167 err = TIPC_ERR_NO_PORT;
GhantaKrishnamurthy MohanKrishna872619d2018-03-21 14:37:45 +01002168 else if (sk_rmem_alloc_get(sk) + skb->truesize >= limit) {
Tuong Lien01e661e2018-12-19 09:17:58 +07002169 trace_tipc_sk_dump(sk, skb, TIPC_DUMP_ALL,
2170 "err_overload2!");
GhantaKrishnamurthy MohanKrishna872619d2018-03-21 14:37:45 +01002171 atomic_inc(&sk->sk_drops);
Jon Maloy64ac5f52017-10-13 11:04:20 +02002172 err = TIPC_ERR_OVERLOAD;
GhantaKrishnamurthy MohanKrishna872619d2018-03-21 14:37:45 +01002173 }
Jon Maloy64ac5f52017-10-13 11:04:20 +02002174
2175 if (unlikely(err)) {
Tuong Lien01e661e2018-12-19 09:17:58 +07002176 if (tipc_msg_reverse(tipc_own_addr(net), &skb, err)) {
2177 trace_tipc_sk_rej_msg(sk, skb, TIPC_DUMP_NONE,
2178 "@filter_rcv!");
2179 __skb_queue_tail(xmitq, skb);
2180 }
Jon Maloy64ac5f52017-10-13 11:04:20 +02002181 err = TIPC_OK;
2182 continue;
2183 }
2184 __skb_queue_tail(&sk->sk_receive_queue, skb);
2185 skb_set_owner_r(skb, sk);
Tuong Lien01e661e2018-12-19 09:17:58 +07002186 trace_tipc_sk_overlimit2(sk, skb, TIPC_DUMP_ALL,
2187 "rcvq >90% allocated!");
Jon Maloy64ac5f52017-10-13 11:04:20 +02002188 sk->sk_data_ready(sk);
2189 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002190}
2191
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002192/**
Jon Maloy64ac5f52017-10-13 11:04:20 +02002193 * tipc_sk_backlog_rcv - handle incoming message from backlog queue
Allan Stephens0c3141e2008-04-15 00:22:02 -07002194 * @sk: socket
Ying Xuea6ca1092014-11-26 11:41:55 +08002195 * @skb: message
Allan Stephens0c3141e2008-04-15 00:22:02 -07002196 *
Jon Paul Maloye3a77562015-02-05 08:36:39 -05002197 * Caller must hold socket lock
Allan Stephens0c3141e2008-04-15 00:22:02 -07002198 */
Jon Maloy64ac5f52017-10-13 11:04:20 +02002199static int tipc_sk_backlog_rcv(struct sock *sk, struct sk_buff *skb)
Allan Stephens0c3141e2008-04-15 00:22:02 -07002200{
Jon Maloy64ac5f52017-10-13 11:04:20 +02002201 unsigned int before = sk_rmem_alloc_get(sk);
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002202 struct sk_buff_head xmitq;
Jon Maloy64ac5f52017-10-13 11:04:20 +02002203 unsigned int added;
Allan Stephens0c3141e2008-04-15 00:22:02 -07002204
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002205 __skb_queue_head_init(&xmitq);
2206
Jon Maloy64ac5f52017-10-13 11:04:20 +02002207 tipc_sk_filter_rcv(sk, skb, &xmitq);
2208 added = sk_rmem_alloc_get(sk) - before;
2209 atomic_add(added, &tipc_sk(sk)->dupl_rcvcnt);
2210
2211 /* Send pending response/rejected messages, if any */
Jon Maloyf70d37b2017-10-13 11:04:21 +02002212 tipc_node_distr_xmit(sock_net(sk), &xmitq);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002213 return 0;
2214}
2215
2216/**
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002217 * tipc_sk_enqueue - extract all buffers with destination 'dport' from
2218 * inputq and try adding them to socket or backlog queue
2219 * @inputq: list of incoming buffers with potentially different destinations
2220 * @sk: socket where the buffers should be enqueued
2221 * @dport: port number for the socket
Jon Paul Maloyd570d862015-02-05 08:36:38 -05002222 *
2223 * Caller must hold socket lock
Jon Paul Maloyd570d862015-02-05 08:36:38 -05002224 */
Jon Paul Maloycda36962015-07-22 10:11:20 -04002225static void tipc_sk_enqueue(struct sk_buff_head *inputq, struct sock *sk,
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002226 u32 dport, struct sk_buff_head *xmitq)
Jon Paul Maloyd570d862015-02-05 08:36:38 -05002227{
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002228 unsigned long time_limit = jiffies + 2;
2229 struct sk_buff *skb;
Jon Paul Maloyd570d862015-02-05 08:36:38 -05002230 unsigned int lim;
2231 atomic_t *dcnt;
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002232 u32 onode;
Jon Paul Maloyd570d862015-02-05 08:36:38 -05002233
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002234 while (skb_queue_len(inputq)) {
Jon Paul Maloy51a00da2015-02-08 11:10:50 -05002235 if (unlikely(time_after_eq(jiffies, time_limit)))
Jon Paul Maloycda36962015-07-22 10:11:20 -04002236 return;
2237
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002238 skb = tipc_skb_dequeue(inputq, dport);
2239 if (unlikely(!skb))
Jon Paul Maloycda36962015-07-22 10:11:20 -04002240 return;
2241
2242 /* Add message directly to receive queue if possible */
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002243 if (!sock_owned_by_user(sk)) {
Jon Maloy64ac5f52017-10-13 11:04:20 +02002244 tipc_sk_filter_rcv(sk, skb, xmitq);
Jon Paul Maloycda36962015-07-22 10:11:20 -04002245 continue;
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002246 }
Jon Paul Maloycda36962015-07-22 10:11:20 -04002247
2248 /* Try backlog, compensating for double-counted bytes */
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002249 dcnt = &tipc_sk(sk)->dupl_rcvcnt;
Jon Paul Maloy7c8bcfb2016-05-02 11:58:45 -04002250 if (!sk->sk_backlog.len)
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002251 atomic_set(dcnt, 0);
2252 lim = rcvbuf_limit(sk, skb) + atomic_read(dcnt);
Tuong Lien01e661e2018-12-19 09:17:58 +07002253 if (likely(!sk_add_backlog(sk, skb, lim))) {
2254 trace_tipc_sk_overlimit1(sk, skb, TIPC_DUMP_ALL,
2255 "bklg & rcvq >90% allocated!");
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002256 continue;
Tuong Lien01e661e2018-12-19 09:17:58 +07002257 }
Jon Paul Maloycda36962015-07-22 10:11:20 -04002258
Tuong Lien01e661e2018-12-19 09:17:58 +07002259 trace_tipc_sk_dump(sk, skb, TIPC_DUMP_ALL, "err_overload!");
Jon Paul Maloycda36962015-07-22 10:11:20 -04002260 /* Overload => reject message back to sender */
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002261 onode = tipc_own_addr(sock_net(sk));
GhantaKrishnamurthy MohanKrishna872619d2018-03-21 14:37:45 +01002262 atomic_inc(&sk->sk_drops);
Tuong Lien01e661e2018-12-19 09:17:58 +07002263 if (tipc_msg_reverse(onode, &skb, TIPC_ERR_OVERLOAD)) {
2264 trace_tipc_sk_rej_msg(sk, skb, TIPC_DUMP_ALL,
2265 "@sk_enqueue!");
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002266 __skb_queue_tail(xmitq, skb);
Tuong Lien01e661e2018-12-19 09:17:58 +07002267 }
Jon Paul Maloycda36962015-07-22 10:11:20 -04002268 break;
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002269 }
Jon Paul Maloyd570d862015-02-05 08:36:38 -05002270}
2271
2272/**
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002273 * tipc_sk_rcv - handle a chain of incoming buffers
2274 * @inputq: buffer list containing the buffers
2275 * Consumes all buffers in list until inputq is empty
2276 * Note: may be called in multiple threads referring to the same queue
Allan Stephens0c3141e2008-04-15 00:22:02 -07002277 */
Jon Paul Maloycda36962015-07-22 10:11:20 -04002278void tipc_sk_rcv(struct net *net, struct sk_buff_head *inputq)
Allan Stephens0c3141e2008-04-15 00:22:02 -07002279{
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002280 struct sk_buff_head xmitq;
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002281 u32 dnode, dport = 0;
Erik Hugne9871b272015-04-23 09:37:39 -04002282 int err;
Jon Paul Maloy9816f062014-05-14 05:39:15 -04002283 struct tipc_sock *tsk;
Jon Paul Maloy9816f062014-05-14 05:39:15 -04002284 struct sock *sk;
Jon Paul Maloycda36962015-07-22 10:11:20 -04002285 struct sk_buff *skb;
Jon Paul Maloy9816f062014-05-14 05:39:15 -04002286
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002287 __skb_queue_head_init(&xmitq);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002288 while (skb_queue_len(inputq)) {
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002289 dport = tipc_skb_peek_port(inputq, dport);
2290 tsk = tipc_sk_lookup(net, dport);
Jon Paul Maloycda36962015-07-22 10:11:20 -04002291
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002292 if (likely(tsk)) {
2293 sk = &tsk->sk;
2294 if (likely(spin_trylock_bh(&sk->sk_lock.slock))) {
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002295 tipc_sk_enqueue(inputq, sk, dport, &xmitq);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002296 spin_unlock_bh(&sk->sk_lock.slock);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002297 }
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04002298 /* Send pending response/rejected messages, if any */
Jon Maloyf70d37b2017-10-13 11:04:21 +02002299 tipc_node_distr_xmit(sock_net(sk), &xmitq);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002300 sock_put(sk);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002301 continue;
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002302 }
Jon Paul Maloycda36962015-07-22 10:11:20 -04002303 /* No destination socket => dequeue skb if still there */
2304 skb = tipc_skb_dequeue(inputq, dport);
2305 if (!skb)
2306 return;
2307
2308 /* Try secondary lookup if unresolved named message */
2309 err = TIPC_ERR_NO_PORT;
2310 if (tipc_msg_lookup_dest(net, skb, &err))
2311 goto xmit;
2312
2313 /* Prepare for message rejection */
2314 if (!tipc_msg_reverse(tipc_own_addr(net), &skb, err))
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002315 continue;
Tuong Lien01e661e2018-12-19 09:17:58 +07002316
2317 trace_tipc_sk_rej_msg(NULL, skb, TIPC_DUMP_NONE, "@sk_rcv!");
Jon Paul Maloye3a77562015-02-05 08:36:39 -05002318xmit:
Jon Paul Maloycda36962015-07-22 10:11:20 -04002319 dnode = msg_destnode(buf_msg(skb));
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -04002320 tipc_node_xmit_skb(net, skb, dnode, dport);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05002321 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07002322}
2323
Ying Xue78eb3a52014-01-17 09:50:03 +08002324static int tipc_wait_for_connect(struct socket *sock, long *timeo_p)
2325{
WANG Congd9dc8b02016-11-11 10:20:50 -08002326 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Ying Xue78eb3a52014-01-17 09:50:03 +08002327 struct sock *sk = sock->sk;
Ying Xue78eb3a52014-01-17 09:50:03 +08002328 int done;
2329
2330 do {
2331 int err = sock_error(sk);
2332 if (err)
2333 return err;
2334 if (!*timeo_p)
2335 return -ETIMEDOUT;
2336 if (signal_pending(current))
2337 return sock_intr_errno(*timeo_p);
2338
WANG Congd9dc8b02016-11-11 10:20:50 -08002339 add_wait_queue(sk_sleep(sk), &wait);
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002340 done = sk_wait_event(sk, timeo_p,
WANG Congd9dc8b02016-11-11 10:20:50 -08002341 sk->sk_state != TIPC_CONNECTING, &wait);
2342 remove_wait_queue(sk_sleep(sk), &wait);
Ying Xue78eb3a52014-01-17 09:50:03 +08002343 } while (!done);
2344 return 0;
2345}
2346
Per Lidenb97bf3f2006-01-02 19:04:38 +01002347/**
Ying Xue247f0f32014-02-18 16:06:46 +08002348 * tipc_connect - establish a connection to another TIPC port
Per Lidenb97bf3f2006-01-02 19:04:38 +01002349 * @sock: socket structure
2350 * @dest: socket address for destination port
2351 * @destlen: size of socket address data structure
Allan Stephens0c3141e2008-04-15 00:22:02 -07002352 * @flags: file-related flags associated with socket
Per Lidenb97bf3f2006-01-02 19:04:38 +01002353 *
2354 * Returns 0 on success, errno otherwise
2355 */
Ying Xue247f0f32014-02-18 16:06:46 +08002356static int tipc_connect(struct socket *sock, struct sockaddr *dest,
2357 int destlen, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002358{
Allan Stephens0c3141e2008-04-15 00:22:02 -07002359 struct sock *sk = sock->sk;
Erik Hugnef2f80362015-03-19 09:02:19 +01002360 struct tipc_sock *tsk = tipc_sk(sk);
Allan Stephensb89741a2008-04-15 00:20:37 -07002361 struct sockaddr_tipc *dst = (struct sockaddr_tipc *)dest;
2362 struct msghdr m = {NULL,};
Erik Hugnef2f80362015-03-19 09:02:19 +01002363 long timeout = (flags & O_NONBLOCK) ? 0 : tsk->conn_timeout;
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002364 int previous;
Erik Hugnef2f80362015-03-19 09:02:19 +01002365 int res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002366
Jon Maloy23998832017-10-13 11:04:18 +02002367 if (destlen != sizeof(struct sockaddr_tipc))
2368 return -EINVAL;
2369
Allan Stephens0c3141e2008-04-15 00:22:02 -07002370 lock_sock(sk);
2371
Jon Maloy75da2162017-10-13 11:04:23 +02002372 if (tsk->group) {
2373 res = -EINVAL;
2374 goto exit;
2375 }
2376
Jon Maloy23998832017-10-13 11:04:18 +02002377 if (dst->family == AF_UNSPEC) {
2378 memset(&tsk->peer, 0, sizeof(struct sockaddr_tipc));
2379 if (!tipc_sk_type_connectionless(sk))
2380 res = -EINVAL;
2381 goto exit;
2382 } else if (dst->family != AF_TIPC) {
2383 res = -EINVAL;
2384 }
2385 if (dst->addrtype != TIPC_ADDR_ID && dst->addrtype != TIPC_ADDR_NAME)
2386 res = -EINVAL;
2387 if (res)
2388 goto exit;
2389
Erik Hugnef2f80362015-03-19 09:02:19 +01002390 /* DGRAM/RDM connect(), just save the destaddr */
Parthasarathy Bhuvaraganc752023a2016-11-01 14:02:42 +01002391 if (tipc_sk_type_connectionless(sk)) {
Jon Maloy23998832017-10-13 11:04:18 +02002392 memcpy(&tsk->peer, dest, destlen);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002393 goto exit;
2394 }
2395
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002396 previous = sk->sk_state;
Parthasarathy Bhuvaragan438adca2016-11-01 14:02:45 +01002397
2398 switch (sk->sk_state) {
2399 case TIPC_OPEN:
Ying Xue584d24b2012-11-29 18:51:19 -05002400 /* Send a 'SYN-' to destination */
2401 m.msg_name = dest;
2402 m.msg_namelen = destlen;
2403
2404 /* If connect is in non-blocking case, set MSG_DONTWAIT to
2405 * indicate send_msg() is never blocked.
2406 */
2407 if (!timeout)
2408 m.msg_flags = MSG_DONTWAIT;
2409
Ying Xue39a0295f2015-03-02 15:37:47 +08002410 res = __tipc_sendmsg(sock, &m, 0);
Ying Xue584d24b2012-11-29 18:51:19 -05002411 if ((res < 0) && (res != -EWOULDBLOCK))
2412 goto exit;
2413
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002414 /* Just entered TIPC_CONNECTING state; the only
Ying Xue584d24b2012-11-29 18:51:19 -05002415 * difference is that return value in non-blocking
2416 * case is EINPROGRESS, rather than EALREADY.
2417 */
2418 res = -EINPROGRESS;
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002419 /* fall thru' */
2420 case TIPC_CONNECTING:
2421 if (!timeout) {
2422 if (previous == TIPC_CONNECTING)
2423 res = -EALREADY;
Ying Xue78eb3a52014-01-17 09:50:03 +08002424 goto exit;
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002425 }
Ying Xue78eb3a52014-01-17 09:50:03 +08002426 timeout = msecs_to_jiffies(timeout);
2427 /* Wait until an 'ACK' or 'RST' arrives, or a timeout occurs */
2428 res = tipc_wait_for_connect(sock, &timeout);
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +01002429 break;
2430 case TIPC_ESTABLISHED:
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002431 res = -EISCONN;
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +01002432 break;
2433 default:
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002434 res = -EINVAL;
Parthasarathy Bhuvaraganf40acba2016-11-01 14:02:49 +01002435 }
Parthasarathy Bhuvaragan99a20882016-11-01 14:02:48 +01002436
Allan Stephens0c3141e2008-04-15 00:22:02 -07002437exit:
2438 release_sock(sk);
Allan Stephensb89741a2008-04-15 00:20:37 -07002439 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002440}
2441
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002442/**
Ying Xue247f0f32014-02-18 16:06:46 +08002443 * tipc_listen - allow socket to listen for incoming connections
Per Lidenb97bf3f2006-01-02 19:04:38 +01002444 * @sock: socket structure
2445 * @len: (unused)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002446 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002447 * Returns 0 on success, errno otherwise
2448 */
Ying Xue247f0f32014-02-18 16:06:46 +08002449static int tipc_listen(struct socket *sock, int len)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002450{
Allan Stephens0c3141e2008-04-15 00:22:02 -07002451 struct sock *sk = sock->sk;
2452 int res;
2453
2454 lock_sock(sk);
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +01002455 res = tipc_set_sk_state(sk, TIPC_LISTEN);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002456 release_sock(sk);
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +01002457
Allan Stephens0c3141e2008-04-15 00:22:02 -07002458 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002459}
2460
Ying Xue6398e232014-01-17 09:50:04 +08002461static int tipc_wait_for_accept(struct socket *sock, long timeo)
2462{
2463 struct sock *sk = sock->sk;
2464 DEFINE_WAIT(wait);
2465 int err;
2466
2467 /* True wake-one mechanism for incoming connections: only
2468 * one process gets woken up, not the 'whole herd'.
2469 * Since we do not 'race & poll' for established sockets
2470 * anymore, the common case will execute the loop only once.
2471 */
2472 for (;;) {
2473 prepare_to_wait_exclusive(sk_sleep(sk), &wait,
2474 TASK_INTERRUPTIBLE);
Ying Xuefe8e4642014-03-06 14:40:18 +01002475 if (timeo && skb_queue_empty(&sk->sk_receive_queue)) {
Ying Xue6398e232014-01-17 09:50:04 +08002476 release_sock(sk);
2477 timeo = schedule_timeout(timeo);
2478 lock_sock(sk);
2479 }
2480 err = 0;
2481 if (!skb_queue_empty(&sk->sk_receive_queue))
2482 break;
Ying Xue6398e232014-01-17 09:50:04 +08002483 err = -EAGAIN;
2484 if (!timeo)
2485 break;
Erik Hugne143fe222015-03-09 10:43:42 +01002486 err = sock_intr_errno(timeo);
2487 if (signal_pending(current))
2488 break;
Ying Xue6398e232014-01-17 09:50:04 +08002489 }
2490 finish_wait(sk_sleep(sk), &wait);
2491 return err;
2492}
2493
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002494/**
Ying Xue247f0f32014-02-18 16:06:46 +08002495 * tipc_accept - wait for connection request
Per Lidenb97bf3f2006-01-02 19:04:38 +01002496 * @sock: listening socket
2497 * @newsock: new socket that is to be connected
2498 * @flags: file-related flags associated with socket
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002499 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002500 * Returns 0 on success, errno otherwise
2501 */
David Howellscdfbabf2017-03-09 08:09:05 +00002502static int tipc_accept(struct socket *sock, struct socket *new_sock, int flags,
2503 bool kern)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002504{
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002505 struct sock *new_sk, *sk = sock->sk;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002506 struct sk_buff *buf;
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002507 struct tipc_sock *new_tsock;
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002508 struct tipc_msg *msg;
Ying Xue6398e232014-01-17 09:50:04 +08002509 long timeo;
Allan Stephens0c3141e2008-04-15 00:22:02 -07002510 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002511
Allan Stephens0c3141e2008-04-15 00:22:02 -07002512 lock_sock(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002513
Parthasarathy Bhuvaragan0c288c82016-11-01 14:02:43 +01002514 if (sk->sk_state != TIPC_LISTEN) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07002515 res = -EINVAL;
2516 goto exit;
2517 }
Ying Xue6398e232014-01-17 09:50:04 +08002518 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
2519 res = tipc_wait_for_accept(sock, timeo);
2520 if (res)
2521 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07002522
2523 buf = skb_peek(&sk->sk_receive_queue);
2524
David Howellscdfbabf2017-03-09 08:09:05 +00002525 res = tipc_sk_create(sock_net(sock->sk), new_sock, 0, kern);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002526 if (res)
2527 goto exit;
Stephen Smalleyfdd75ea2015-07-07 09:43:45 -04002528 security_sk_clone(sock->sk, new_sock->sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002529
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002530 new_sk = new_sock->sk;
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002531 new_tsock = tipc_sk(new_sk);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002532 msg = buf_msg(buf);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002533
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002534 /* we lock on new_sk; but lockdep sees the lock on sk */
2535 lock_sock_nested(new_sk, SINGLE_DEPTH_NESTING);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002536
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002537 /*
2538 * Reject any stray messages received by new socket
2539 * before the socket lock was taken (very, very unlikely)
2540 */
Jon Paul Maloy2e84c602014-08-22 18:09:18 -04002541 tsk_rej_rx_queue(new_sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002542
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002543 /* Connect new socket to it's peer */
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002544 tipc_sk_finish_conn(new_tsock, msg_origport(msg), msg_orignode(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002545
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002546 tsk_set_importance(new_tsock, msg_importance(msg));
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002547 if (msg_named(msg)) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002548 new_tsock->conn_type = msg_nametype(msg);
2549 new_tsock->conn_instance = msg_nameinst(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002550 }
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002551
2552 /*
2553 * Respond to 'SYN-' by discarding it & returning 'ACK'-.
2554 * Respond to 'SYN+' by queuing it on new socket.
2555 */
2556 if (!msg_data_sz(msg)) {
2557 struct msghdr m = {NULL,};
2558
Jon Paul Maloy2e84c602014-08-22 18:09:18 -04002559 tsk_advance_rx_queue(sk);
Jon Paul Maloy365ad352017-01-03 10:55:11 -05002560 __tipc_sendstream(new_sock, &m, 0);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002561 } else {
2562 __skb_dequeue(&sk->sk_receive_queue);
2563 __skb_queue_head(&new_sk->sk_receive_queue, buf);
Ying Xueaba79f32013-01-20 23:30:09 +01002564 skb_set_owner_r(buf, new_sk);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002565 }
2566 release_sock(new_sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002567exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07002568 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002569 return res;
2570}
2571
2572/**
Ying Xue247f0f32014-02-18 16:06:46 +08002573 * tipc_shutdown - shutdown socket connection
Per Lidenb97bf3f2006-01-02 19:04:38 +01002574 * @sock: socket structure
Allan Stephense247a8f2008-03-06 15:05:38 -08002575 * @how: direction to close (must be SHUT_RDWR)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002576 *
2577 * Terminates connection (if necessary), then purges socket's receive queue.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002578 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002579 * Returns 0 on success, errno otherwise
2580 */
Ying Xue247f0f32014-02-18 16:06:46 +08002581static int tipc_shutdown(struct socket *sock, int how)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002582{
Allan Stephens0c3141e2008-04-15 00:22:02 -07002583 struct sock *sk = sock->sk;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002584 int res;
2585
Allan Stephense247a8f2008-03-06 15:05:38 -08002586 if (how != SHUT_RDWR)
2587 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002588
Allan Stephens0c3141e2008-04-15 00:22:02 -07002589 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002590
Tuong Lien01e661e2018-12-19 09:17:58 +07002591 trace_tipc_sk_shutdown(sk, NULL, TIPC_DUMP_ALL, " ");
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +01002592 __tipc_shutdown(sock, TIPC_CONN_SHUTDOWN);
2593 sk->sk_shutdown = SEND_SHUTDOWN;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002594
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +01002595 if (sk->sk_state == TIPC_DISCONNECTING) {
Ying Xue75031152012-10-29 09:38:15 -04002596 /* Discard any unreceived messages */
Ying Xue57467e52013-01-20 23:30:08 +01002597 __skb_queue_purge(&sk->sk_receive_queue);
Ying Xue75031152012-10-29 09:38:15 -04002598
2599 /* Wake up anyone sleeping in poll */
2600 sk->sk_state_change(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002601 res = 0;
Parthasarathy Bhuvaragan6f000892016-11-01 14:02:47 +01002602 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002603 res = -ENOTCONN;
2604 }
2605
Allan Stephens0c3141e2008-04-15 00:22:02 -07002606 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002607 return res;
2608}
2609
Jon Maloyafe87922018-09-28 20:23:19 +02002610static void tipc_sk_check_probing_state(struct sock *sk,
2611 struct sk_buff_head *list)
2612{
2613 struct tipc_sock *tsk = tipc_sk(sk);
2614 u32 pnode = tsk_peer_node(tsk);
2615 u32 pport = tsk_peer_port(tsk);
2616 u32 self = tsk_own_node(tsk);
2617 u32 oport = tsk->portid;
2618 struct sk_buff *skb;
2619
2620 if (tsk->probe_unacked) {
2621 tipc_set_sk_state(sk, TIPC_DISCONNECTING);
2622 sk->sk_err = ECONNABORTED;
2623 tipc_node_remove_conn(sock_net(sk), pnode, pport);
2624 sk->sk_state_change(sk);
2625 return;
2626 }
2627 /* Prepare new probe */
2628 skb = tipc_msg_create(CONN_MANAGER, CONN_PROBE, INT_H_SIZE, 0,
2629 pnode, self, pport, oport, TIPC_OK);
2630 if (skb)
2631 __skb_queue_tail(list, skb);
2632 tsk->probe_unacked = true;
2633 sk_reset_timer(sk, &sk->sk_timer, jiffies + CONN_PROBING_INTV);
2634}
2635
Tung Nguyen67879272018-09-28 20:23:22 +02002636static void tipc_sk_retry_connect(struct sock *sk, struct sk_buff_head *list)
2637{
2638 struct tipc_sock *tsk = tipc_sk(sk);
2639
2640 /* Try again later if dest link is congested */
2641 if (tsk->cong_link_cnt) {
2642 sk_reset_timer(sk, &sk->sk_timer, msecs_to_jiffies(100));
2643 return;
2644 }
2645 /* Prepare SYN for retransmit */
2646 tipc_msg_skb_clone(&sk->sk_write_queue, list);
2647}
2648
Kees Cook31b102b2017-10-30 14:06:45 -07002649static void tipc_sk_timeout(struct timer_list *t)
Jon Paul Maloy57289012014-08-22 18:09:09 -04002650{
Kees Cook31b102b2017-10-30 14:06:45 -07002651 struct sock *sk = from_timer(sk, t, sk_timer);
2652 struct tipc_sock *tsk = tipc_sk(sk);
Jon Maloyafe87922018-09-28 20:23:19 +02002653 u32 pnode = tsk_peer_node(tsk);
2654 struct sk_buff_head list;
Tung Nguyen67879272018-09-28 20:23:22 +02002655 int rc = 0;
Jon Paul Maloy57289012014-08-22 18:09:09 -04002656
Jon Maloyafe87922018-09-28 20:23:19 +02002657 skb_queue_head_init(&list);
Jon Paul Maloy57289012014-08-22 18:09:09 -04002658 bh_lock_sock(sk);
Jon Maloy0d5fcebf2017-10-20 11:21:32 +02002659
2660 /* Try again later if socket is busy */
2661 if (sock_owned_by_user(sk)) {
2662 sk_reset_timer(sk, &sk->sk_timer, jiffies + HZ / 20);
Jon Maloyafe87922018-09-28 20:23:19 +02002663 bh_unlock_sock(sk);
2664 return;
Jon Paul Maloy6c9808c2014-08-22 18:09:16 -04002665 }
Jon Paul Maloy57289012014-08-22 18:09:09 -04002666
Jon Maloyafe87922018-09-28 20:23:19 +02002667 if (sk->sk_state == TIPC_ESTABLISHED)
2668 tipc_sk_check_probing_state(sk, &list);
Tung Nguyen67879272018-09-28 20:23:22 +02002669 else if (sk->sk_state == TIPC_CONNECTING)
2670 tipc_sk_retry_connect(sk, &list);
Jon Maloyafe87922018-09-28 20:23:19 +02002671
Jon Paul Maloy57289012014-08-22 18:09:09 -04002672 bh_unlock_sock(sk);
Jon Maloyafe87922018-09-28 20:23:19 +02002673
2674 if (!skb_queue_empty(&list))
Tung Nguyen67879272018-09-28 20:23:22 +02002675 rc = tipc_node_xmit(sock_net(sk), &list, pnode, tsk->portid);
Jon Maloyafe87922018-09-28 20:23:19 +02002676
Tung Nguyen67879272018-09-28 20:23:22 +02002677 /* SYN messages may cause link congestion */
2678 if (rc == -ELINKCONG) {
2679 tipc_dest_push(&tsk->cong_links, pnode, 0);
2680 tsk->cong_link_cnt = 1;
2681 }
Ying Xue07f6c4b2015-01-07 13:41:58 +08002682 sock_put(sk);
Jon Paul Maloy57289012014-08-22 18:09:09 -04002683}
2684
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002685static int tipc_sk_publish(struct tipc_sock *tsk, uint scope,
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002686 struct tipc_name_seq const *seq)
2687{
Parthasarathy Bhuvaragand6fb7e92016-11-01 14:02:40 +01002688 struct sock *sk = &tsk->sk;
2689 struct net *net = sock_net(sk);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002690 struct publication *publ;
2691 u32 key;
2692
Jon Maloy928df182018-03-15 16:48:51 +01002693 if (scope != TIPC_NODE_SCOPE)
2694 scope = TIPC_CLUSTER_SCOPE;
2695
Parthasarathy Bhuvaragand6fb7e92016-11-01 14:02:40 +01002696 if (tipc_sk_connected(sk))
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002697 return -EINVAL;
Ying Xue07f6c4b2015-01-07 13:41:58 +08002698 key = tsk->portid + tsk->pub_count + 1;
2699 if (key == tsk->portid)
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002700 return -EADDRINUSE;
2701
Ying Xuef2f98002015-01-09 15:27:05 +08002702 publ = tipc_nametbl_publish(net, seq->type, seq->lower, seq->upper,
Ying Xue07f6c4b2015-01-07 13:41:58 +08002703 scope, tsk->portid, key);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002704 if (unlikely(!publ))
2705 return -EINVAL;
2706
Jon Maloye50e73e2018-03-15 16:48:55 +01002707 list_add(&publ->binding_sock, &tsk->publications);
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002708 tsk->pub_count++;
2709 tsk->published = 1;
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002710 return 0;
2711}
2712
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002713static int tipc_sk_withdraw(struct tipc_sock *tsk, uint scope,
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002714 struct tipc_name_seq const *seq)
2715{
Ying Xuef2f98002015-01-09 15:27:05 +08002716 struct net *net = sock_net(&tsk->sk);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002717 struct publication *publ;
2718 struct publication *safe;
2719 int rc = -EINVAL;
2720
Jon Maloy928df182018-03-15 16:48:51 +01002721 if (scope != TIPC_NODE_SCOPE)
2722 scope = TIPC_CLUSTER_SCOPE;
2723
Jon Maloye50e73e2018-03-15 16:48:55 +01002724 list_for_each_entry_safe(publ, safe, &tsk->publications, binding_sock) {
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002725 if (seq) {
2726 if (publ->scope != scope)
2727 continue;
2728 if (publ->type != seq->type)
2729 continue;
2730 if (publ->lower != seq->lower)
2731 continue;
2732 if (publ->upper != seq->upper)
2733 break;
Ying Xuef2f98002015-01-09 15:27:05 +08002734 tipc_nametbl_withdraw(net, publ->type, publ->lower,
Jon Maloy37922ea2018-03-29 23:20:43 +02002735 publ->upper, publ->key);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002736 rc = 0;
2737 break;
2738 }
Ying Xuef2f98002015-01-09 15:27:05 +08002739 tipc_nametbl_withdraw(net, publ->type, publ->lower,
Jon Maloy37922ea2018-03-29 23:20:43 +02002740 publ->upper, publ->key);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002741 rc = 0;
2742 }
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002743 if (list_empty(&tsk->publications))
2744 tsk->published = 0;
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002745 return rc;
2746}
2747
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002748/* tipc_sk_reinit: set non-zero address in all existing sockets
2749 * when we go from standalone to network mode.
2750 */
Ying Xuee05b31f2015-01-09 15:27:08 +08002751void tipc_sk_reinit(struct net *net)
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002752{
Ying Xuee05b31f2015-01-09 15:27:08 +08002753 struct tipc_net *tn = net_generic(net, tipc_net_id);
Herbert Xu40f9f432017-02-11 19:26:46 +08002754 struct rhashtable_iter iter;
Ying Xue07f6c4b2015-01-07 13:41:58 +08002755 struct tipc_sock *tsk;
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002756 struct tipc_msg *msg;
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002757
Herbert Xu40f9f432017-02-11 19:26:46 +08002758 rhashtable_walk_enter(&tn->sk_rht, &iter);
2759
2760 do {
Tom Herbert97a6ec42017-12-04 10:31:41 -08002761 rhashtable_walk_start(&iter);
Herbert Xu40f9f432017-02-11 19:26:46 +08002762
2763 while ((tsk = rhashtable_walk_next(&iter)) && !IS_ERR(tsk)) {
Cong Wang15ef70e2018-12-10 11:49:55 -08002764 sock_hold(&tsk->sk);
2765 rhashtable_walk_stop(&iter);
2766 lock_sock(&tsk->sk);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002767 msg = &tsk->phdr;
Jon Maloy23fd3ea2018-03-22 20:42:49 +01002768 msg_set_prevnode(msg, tipc_own_addr(net));
2769 msg_set_orignode(msg, tipc_own_addr(net));
Cong Wang15ef70e2018-12-10 11:49:55 -08002770 release_sock(&tsk->sk);
2771 rhashtable_walk_start(&iter);
2772 sock_put(&tsk->sk);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002773 }
Tom Herbert97a6ec42017-12-04 10:31:41 -08002774
Herbert Xu40f9f432017-02-11 19:26:46 +08002775 rhashtable_walk_stop(&iter);
2776 } while (tsk == ERR_PTR(-EAGAIN));
Cong Wangbd583fe2018-08-23 16:19:44 -07002777
2778 rhashtable_walk_exit(&iter);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002779}
2780
Ying Xuee05b31f2015-01-09 15:27:08 +08002781static struct tipc_sock *tipc_sk_lookup(struct net *net, u32 portid)
Ying Xue07f6c4b2015-01-07 13:41:58 +08002782{
Ying Xuee05b31f2015-01-09 15:27:08 +08002783 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002784 struct tipc_sock *tsk;
2785
2786 rcu_read_lock();
Herbert Xu6cca72892015-03-20 21:57:05 +11002787 tsk = rhashtable_lookup_fast(&tn->sk_rht, &portid, tsk_rht_params);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002788 if (tsk)
2789 sock_hold(&tsk->sk);
2790 rcu_read_unlock();
2791
2792 return tsk;
2793}
2794
2795static int tipc_sk_insert(struct tipc_sock *tsk)
2796{
Ying Xuee05b31f2015-01-09 15:27:08 +08002797 struct sock *sk = &tsk->sk;
2798 struct net *net = sock_net(sk);
2799 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002800 u32 remaining = (TIPC_MAX_PORT - TIPC_MIN_PORT) + 1;
2801 u32 portid = prandom_u32() % remaining + TIPC_MIN_PORT;
2802
2803 while (remaining--) {
2804 portid++;
2805 if ((portid < TIPC_MIN_PORT) || (portid > TIPC_MAX_PORT))
2806 portid = TIPC_MIN_PORT;
2807 tsk->portid = portid;
2808 sock_hold(&tsk->sk);
Herbert Xu6cca72892015-03-20 21:57:05 +11002809 if (!rhashtable_lookup_insert_fast(&tn->sk_rht, &tsk->node,
2810 tsk_rht_params))
Ying Xue07f6c4b2015-01-07 13:41:58 +08002811 return 0;
2812 sock_put(&tsk->sk);
2813 }
2814
2815 return -1;
2816}
2817
2818static void tipc_sk_remove(struct tipc_sock *tsk)
2819{
2820 struct sock *sk = &tsk->sk;
Ying Xuee05b31f2015-01-09 15:27:08 +08002821 struct tipc_net *tn = net_generic(sock_net(sk), tipc_net_id);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002822
Herbert Xu6cca72892015-03-20 21:57:05 +11002823 if (!rhashtable_remove_fast(&tn->sk_rht, &tsk->node, tsk_rht_params)) {
Reshetova, Elena41c6d652017-06-30 13:08:01 +03002824 WARN_ON(refcount_read(&sk->sk_refcnt) == 1);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002825 __sock_put(sk);
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002826 }
2827}
2828
Herbert Xu6cca72892015-03-20 21:57:05 +11002829static const struct rhashtable_params tsk_rht_params = {
2830 .nelem_hint = 192,
2831 .head_offset = offsetof(struct tipc_sock, node),
2832 .key_offset = offsetof(struct tipc_sock, portid),
2833 .key_len = sizeof(u32), /* portid */
Herbert Xu6cca72892015-03-20 21:57:05 +11002834 .max_size = 1048576,
2835 .min_size = 256,
Thomas Grafb5e2c152015-03-24 20:42:19 +00002836 .automatic_shrinking = true,
Herbert Xu6cca72892015-03-20 21:57:05 +11002837};
2838
Ying Xuee05b31f2015-01-09 15:27:08 +08002839int tipc_sk_rht_init(struct net *net)
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002840{
Ying Xuee05b31f2015-01-09 15:27:08 +08002841 struct tipc_net *tn = net_generic(net, tipc_net_id);
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002842
Herbert Xu6cca72892015-03-20 21:57:05 +11002843 return rhashtable_init(&tn->sk_rht, &tsk_rht_params);
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002844}
2845
Ying Xuee05b31f2015-01-09 15:27:08 +08002846void tipc_sk_rht_destroy(struct net *net)
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002847{
Ying Xuee05b31f2015-01-09 15:27:08 +08002848 struct tipc_net *tn = net_generic(net, tipc_net_id);
2849
Ying Xue07f6c4b2015-01-07 13:41:58 +08002850 /* Wait for socket readers to complete */
2851 synchronize_net();
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002852
Ying Xuee05b31f2015-01-09 15:27:08 +08002853 rhashtable_destroy(&tn->sk_rht);
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002854}
2855
Jon Maloy75da2162017-10-13 11:04:23 +02002856static int tipc_sk_join(struct tipc_sock *tsk, struct tipc_group_req *mreq)
2857{
2858 struct net *net = sock_net(&tsk->sk);
Jon Maloy75da2162017-10-13 11:04:23 +02002859 struct tipc_group *grp = tsk->group;
2860 struct tipc_msg *hdr = &tsk->phdr;
2861 struct tipc_name_seq seq;
2862 int rc;
2863
2864 if (mreq->type < TIPC_RESERVED_TYPES)
2865 return -EACCES;
Jon Maloy232d07b2018-01-08 21:03:30 +01002866 if (mreq->scope > TIPC_NODE_SCOPE)
2867 return -EINVAL;
Jon Maloy75da2162017-10-13 11:04:23 +02002868 if (grp)
2869 return -EACCES;
Jon Maloy60c25302018-01-17 16:42:46 +01002870 grp = tipc_group_create(net, tsk->portid, mreq, &tsk->group_is_open);
Jon Maloy75da2162017-10-13 11:04:23 +02002871 if (!grp)
2872 return -ENOMEM;
2873 tsk->group = grp;
2874 msg_set_lookup_scope(hdr, mreq->scope);
2875 msg_set_nametype(hdr, mreq->type);
2876 msg_set_dest_droppable(hdr, true);
2877 seq.type = mreq->type;
2878 seq.lower = mreq->instance;
2879 seq.upper = seq.lower;
Jon Maloy232d07b2018-01-08 21:03:30 +01002880 tipc_nametbl_build_group(net, grp, mreq->type, mreq->scope);
Jon Maloy75da2162017-10-13 11:04:23 +02002881 rc = tipc_sk_publish(tsk, mreq->scope, &seq);
Cong Wange233df02017-10-24 15:44:49 -07002882 if (rc) {
Jon Maloy75da2162017-10-13 11:04:23 +02002883 tipc_group_delete(net, grp);
Cong Wange233df02017-10-24 15:44:49 -07002884 tsk->group = NULL;
Jon Maloyfebafc82018-01-10 21:08:50 +01002885 return rc;
Cong Wange233df02017-10-24 15:44:49 -07002886 }
Jon Maloyd12d2e12018-01-08 21:03:28 +01002887 /* Eliminate any risk that a broadcast overtakes sent JOINs */
Jon Maloy399574d2017-10-13 11:04:32 +02002888 tsk->mc_method.rcast = true;
2889 tsk->mc_method.mandatory = true;
Jon Maloyd12d2e12018-01-08 21:03:28 +01002890 tipc_group_join(net, grp, &tsk->sk.sk_rcvbuf);
Jon Maloy75da2162017-10-13 11:04:23 +02002891 return rc;
2892}
2893
2894static int tipc_sk_leave(struct tipc_sock *tsk)
2895{
2896 struct net *net = sock_net(&tsk->sk);
2897 struct tipc_group *grp = tsk->group;
2898 struct tipc_name_seq seq;
2899 int scope;
2900
2901 if (!grp)
2902 return -EINVAL;
2903 tipc_group_self(grp, &seq, &scope);
2904 tipc_group_delete(net, grp);
2905 tsk->group = NULL;
2906 tipc_sk_withdraw(tsk, scope, &seq);
2907 return 0;
2908}
2909
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002910/**
Ying Xue247f0f32014-02-18 16:06:46 +08002911 * tipc_setsockopt - set socket option
Per Lidenb97bf3f2006-01-02 19:04:38 +01002912 * @sock: socket structure
2913 * @lvl: option level
2914 * @opt: option identifier
2915 * @ov: pointer to new option value
2916 * @ol: length of option value
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002917 *
2918 * For stream sockets only, accepts and ignores all IPPROTO_TCP options
Per Lidenb97bf3f2006-01-02 19:04:38 +01002919 * (to ease compatibility).
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002920 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002921 * Returns 0 on success, errno otherwise
2922 */
Ying Xue247f0f32014-02-18 16:06:46 +08002923static int tipc_setsockopt(struct socket *sock, int lvl, int opt,
2924 char __user *ov, unsigned int ol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002925{
Allan Stephens0c3141e2008-04-15 00:22:02 -07002926 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002927 struct tipc_sock *tsk = tipc_sk(sk);
Jon Maloy75da2162017-10-13 11:04:23 +02002928 struct tipc_group_req mreq;
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -05002929 u32 value = 0;
Dan Carpentera08ef472017-01-24 12:49:35 +03002930 int res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002931
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002932 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
2933 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002934 if (lvl != SOL_TIPC)
2935 return -ENOPROTOOPT;
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -05002936
2937 switch (opt) {
2938 case TIPC_IMPORTANCE:
2939 case TIPC_SRC_DROPPABLE:
2940 case TIPC_DEST_DROPPABLE:
2941 case TIPC_CONN_TIMEOUT:
2942 if (ol < sizeof(value))
2943 return -EINVAL;
Jon Maloy75da2162017-10-13 11:04:23 +02002944 if (get_user(value, (u32 __user *)ov))
2945 return -EFAULT;
2946 break;
2947 case TIPC_GROUP_JOIN:
2948 if (ol < sizeof(mreq))
2949 return -EINVAL;
2950 if (copy_from_user(&mreq, ov, sizeof(mreq)))
2951 return -EFAULT;
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -05002952 break;
2953 default:
2954 if (ov || ol)
2955 return -EINVAL;
2956 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002957
Allan Stephens0c3141e2008-04-15 00:22:02 -07002958 lock_sock(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002959
Per Lidenb97bf3f2006-01-02 19:04:38 +01002960 switch (opt) {
2961 case TIPC_IMPORTANCE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002962 res = tsk_set_importance(tsk, value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002963 break;
2964 case TIPC_SRC_DROPPABLE:
2965 if (sock->type != SOCK_STREAM)
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002966 tsk_set_unreliable(tsk, value);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002967 else
Per Lidenb97bf3f2006-01-02 19:04:38 +01002968 res = -ENOPROTOOPT;
2969 break;
2970 case TIPC_DEST_DROPPABLE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002971 tsk_set_unreturnable(tsk, value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002972 break;
2973 case TIPC_CONN_TIMEOUT:
Allan Stephensa0f40f02011-05-26 13:44:34 -04002974 tipc_sk(sk)->conn_timeout = value;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002975 break;
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -05002976 case TIPC_MCAST_BROADCAST:
2977 tsk->mc_method.rcast = false;
2978 tsk->mc_method.mandatory = true;
2979 break;
2980 case TIPC_MCAST_REPLICAST:
2981 tsk->mc_method.rcast = true;
2982 tsk->mc_method.mandatory = true;
2983 break;
Jon Maloy75da2162017-10-13 11:04:23 +02002984 case TIPC_GROUP_JOIN:
2985 res = tipc_sk_join(tsk, &mreq);
2986 break;
2987 case TIPC_GROUP_LEAVE:
2988 res = tipc_sk_leave(tsk);
2989 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002990 default:
2991 res = -EINVAL;
2992 }
2993
Allan Stephens0c3141e2008-04-15 00:22:02 -07002994 release_sock(sk);
2995
Per Lidenb97bf3f2006-01-02 19:04:38 +01002996 return res;
2997}
2998
2999/**
Ying Xue247f0f32014-02-18 16:06:46 +08003000 * tipc_getsockopt - get socket option
Per Lidenb97bf3f2006-01-02 19:04:38 +01003001 * @sock: socket structure
3002 * @lvl: option level
3003 * @opt: option identifier
3004 * @ov: receptacle for option value
3005 * @ol: receptacle for length of option value
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003006 *
3007 * For stream sockets only, returns 0 length result for all IPPROTO_TCP options
Per Lidenb97bf3f2006-01-02 19:04:38 +01003008 * (to ease compatibility).
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003009 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01003010 * Returns 0 on success, errno otherwise
3011 */
Ying Xue247f0f32014-02-18 16:06:46 +08003012static int tipc_getsockopt(struct socket *sock, int lvl, int opt,
3013 char __user *ov, int __user *ol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01003014{
Allan Stephens0c3141e2008-04-15 00:22:02 -07003015 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04003016 struct tipc_sock *tsk = tipc_sk(sk);
Jon Maloy75da2162017-10-13 11:04:23 +02003017 struct tipc_name_seq seq;
3018 int len, scope;
Per Lidenb97bf3f2006-01-02 19:04:38 +01003019 u32 value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003020 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01003021
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003022 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
3023 return put_user(0, ol);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003024 if (lvl != SOL_TIPC)
3025 return -ENOPROTOOPT;
Allan Stephens2db99832010-12-31 18:59:33 +00003026 res = get_user(len, ol);
3027 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003028 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01003029
Allan Stephens0c3141e2008-04-15 00:22:02 -07003030 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003031
3032 switch (opt) {
3033 case TIPC_IMPORTANCE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04003034 value = tsk_importance(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003035 break;
3036 case TIPC_SRC_DROPPABLE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04003037 value = tsk_unreliable(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003038 break;
3039 case TIPC_DEST_DROPPABLE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04003040 value = tsk_unreturnable(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003041 break;
3042 case TIPC_CONN_TIMEOUT:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04003043 value = tsk->conn_timeout;
Allan Stephens0c3141e2008-04-15 00:22:02 -07003044 /* no need to set "res", since already 0 at this point */
Per Lidenb97bf3f2006-01-02 19:04:38 +01003045 break;
Allan Stephens0e659672010-12-31 18:59:32 +00003046 case TIPC_NODE_RECVQ_DEPTH:
Ying Xue9da3d472012-11-27 06:15:27 -05003047 value = 0; /* was tipc_queue_size, now obsolete */
oscar.medina@motorola.com66506132009-06-30 03:25:39 +00003048 break;
Allan Stephens0e659672010-12-31 18:59:32 +00003049 case TIPC_SOCK_RECVQ_DEPTH:
oscar.medina@motorola.com66506132009-06-30 03:25:39 +00003050 value = skb_queue_len(&sk->sk_receive_queue);
3051 break;
Jon Maloy75da2162017-10-13 11:04:23 +02003052 case TIPC_GROUP_JOIN:
3053 seq.type = 0;
3054 if (tsk->group)
3055 tipc_group_self(tsk->group, &seq, &scope);
3056 value = seq.type;
3057 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01003058 default:
3059 res = -EINVAL;
3060 }
3061
Allan Stephens0c3141e2008-04-15 00:22:02 -07003062 release_sock(sk);
3063
Paul Gortmaker25860c32010-12-31 18:59:31 +00003064 if (res)
3065 return res; /* "get" failed */
Per Lidenb97bf3f2006-01-02 19:04:38 +01003066
Paul Gortmaker25860c32010-12-31 18:59:31 +00003067 if (len < sizeof(value))
3068 return -EINVAL;
3069
3070 if (copy_to_user(ov, &value, sizeof(value)))
3071 return -EFAULT;
3072
3073 return put_user(sizeof(value), ol);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003074}
3075
Ying Xuef2f98002015-01-09 15:27:05 +08003076static int tipc_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
Erik Hugne78acb1f2014-04-24 16:26:47 +02003077{
Jon Maloy3e5cf362018-04-25 19:29:36 +02003078 struct net *net = sock_net(sock->sk);
3079 struct tipc_sioc_nodeid_req nr = {0};
Erik Hugne78acb1f2014-04-24 16:26:47 +02003080 struct tipc_sioc_ln_req lnr;
3081 void __user *argp = (void __user *)arg;
3082
3083 switch (cmd) {
3084 case SIOCGETLINKNAME:
3085 if (copy_from_user(&lnr, argp, sizeof(lnr)))
3086 return -EFAULT;
Jon Maloy3e5cf362018-04-25 19:29:36 +02003087 if (!tipc_node_get_linkname(net,
Ying Xuef2f98002015-01-09 15:27:05 +08003088 lnr.bearer_id & 0xffff, lnr.peer,
Erik Hugne78acb1f2014-04-24 16:26:47 +02003089 lnr.linkname, TIPC_MAX_LINK_NAME)) {
3090 if (copy_to_user(argp, &lnr, sizeof(lnr)))
3091 return -EFAULT;
3092 return 0;
3093 }
3094 return -EADDRNOTAVAIL;
Jon Maloy3e5cf362018-04-25 19:29:36 +02003095 case SIOCGETNODEID:
3096 if (copy_from_user(&nr, argp, sizeof(nr)))
3097 return -EFAULT;
3098 if (!tipc_node_get_id(net, nr.peer, nr.node_id))
3099 return -EADDRNOTAVAIL;
3100 if (copy_to_user(argp, &nr, sizeof(nr)))
3101 return -EFAULT;
3102 return 0;
Erik Hugne78acb1f2014-04-24 16:26:47 +02003103 default:
3104 return -ENOIOCTLCMD;
3105 }
3106}
3107
Erik Hugne70b03752017-03-29 11:22:16 +02003108static int tipc_socketpair(struct socket *sock1, struct socket *sock2)
3109{
3110 struct tipc_sock *tsk2 = tipc_sk(sock2->sk);
3111 struct tipc_sock *tsk1 = tipc_sk(sock1->sk);
Erik Hugne66bc1e82017-03-29 11:22:17 +02003112 u32 onode = tipc_own_addr(sock_net(sock1->sk));
Erik Hugne70b03752017-03-29 11:22:16 +02003113
Erik Hugne66bc1e82017-03-29 11:22:17 +02003114 tsk1->peer.family = AF_TIPC;
3115 tsk1->peer.addrtype = TIPC_ADDR_ID;
3116 tsk1->peer.scope = TIPC_NODE_SCOPE;
3117 tsk1->peer.addr.id.ref = tsk2->portid;
3118 tsk1->peer.addr.id.node = onode;
3119 tsk2->peer.family = AF_TIPC;
3120 tsk2->peer.addrtype = TIPC_ADDR_ID;
3121 tsk2->peer.scope = TIPC_NODE_SCOPE;
3122 tsk2->peer.addr.id.ref = tsk1->portid;
3123 tsk2->peer.addr.id.node = onode;
3124
3125 tipc_sk_finish_conn(tsk1, tsk2->portid, onode);
3126 tipc_sk_finish_conn(tsk2, tsk1->portid, onode);
Erik Hugne70b03752017-03-29 11:22:16 +02003127 return 0;
3128}
3129
Ben Hutchingsae86b9e2012-07-10 10:55:35 +00003130/* Protocol switches for the various types of TIPC sockets */
3131
Florian Westphalbca65ea2008-02-07 18:18:01 -08003132static const struct proto_ops msg_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00003133 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01003134 .family = AF_TIPC,
Ying Xue247f0f32014-02-18 16:06:46 +08003135 .release = tipc_release,
3136 .bind = tipc_bind,
3137 .connect = tipc_connect,
Erik Hugne66bc1e82017-03-29 11:22:17 +02003138 .socketpair = tipc_socketpair,
Ying Xue245f3d32011-07-06 06:01:13 -04003139 .accept = sock_no_accept,
Ying Xue247f0f32014-02-18 16:06:46 +08003140 .getname = tipc_getname,
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07003141 .poll = tipc_poll,
Erik Hugne78acb1f2014-04-24 16:26:47 +02003142 .ioctl = tipc_ioctl,
Ying Xue245f3d32011-07-06 06:01:13 -04003143 .listen = sock_no_listen,
Ying Xue247f0f32014-02-18 16:06:46 +08003144 .shutdown = tipc_shutdown,
3145 .setsockopt = tipc_setsockopt,
3146 .getsockopt = tipc_getsockopt,
3147 .sendmsg = tipc_sendmsg,
3148 .recvmsg = tipc_recvmsg,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09003149 .mmap = sock_no_mmap,
3150 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01003151};
3152
Florian Westphalbca65ea2008-02-07 18:18:01 -08003153static const struct proto_ops packet_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 Hugne70b03752017-03-29 11:22:16 +02003159 .socketpair = tipc_socketpair,
Ying Xue247f0f32014-02-18 16:06:46 +08003160 .accept = tipc_accept,
3161 .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 Xue247f0f32014-02-18 16:06:46 +08003164 .listen = tipc_listen,
3165 .shutdown = tipc_shutdown,
3166 .setsockopt = tipc_setsockopt,
3167 .getsockopt = tipc_getsockopt,
3168 .sendmsg = tipc_send_packet,
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 stream_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,
Jon Paul Maloy365ad352017-01-03 10:55:11 -05003189 .sendmsg = tipc_sendstream,
Jon Paul Maloyec8a09f2017-05-02 18:16:54 +02003190 .recvmsg = tipc_recvstream,
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 net_proto_family tipc_family_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00003196 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01003197 .family = AF_TIPC,
Ying Xuec5fa7b32013-06-17 10:54:39 -04003198 .create = tipc_sk_create
Per Lidenb97bf3f2006-01-02 19:04:38 +01003199};
3200
3201static struct proto tipc_proto = {
3202 .name = "TIPC",
3203 .owner = THIS_MODULE,
Ying Xuecc79dd12013-06-17 10:54:37 -04003204 .obj_size = sizeof(struct tipc_sock),
3205 .sysctl_rmem = sysctl_tipc_rmem
Per Lidenb97bf3f2006-01-02 19:04:38 +01003206};
3207
3208/**
Per Liden4323add2006-01-18 00:38:21 +01003209 * tipc_socket_init - initialize TIPC socket interface
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003210 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01003211 * Returns 0 on success, errno otherwise
3212 */
Per Liden4323add2006-01-18 00:38:21 +01003213int tipc_socket_init(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +01003214{
3215 int res;
3216
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003217 res = proto_register(&tipc_proto, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003218 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04003219 pr_err("Failed to register TIPC protocol type\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01003220 goto out;
3221 }
3222
3223 res = sock_register(&tipc_family_ops);
3224 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04003225 pr_err("Failed to register TIPC socket type\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01003226 proto_unregister(&tipc_proto);
3227 goto out;
3228 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01003229 out:
3230 return res;
3231}
3232
3233/**
Per Liden4323add2006-01-18 00:38:21 +01003234 * tipc_socket_stop - stop TIPC socket interface
Per Lidenb97bf3f2006-01-02 19:04:38 +01003235 */
Per Liden4323add2006-01-18 00:38:21 +01003236void tipc_socket_stop(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +01003237{
Per Lidenb97bf3f2006-01-02 19:04:38 +01003238 sock_unregister(tipc_family_ops.family);
3239 proto_unregister(&tipc_proto);
3240}
Richard Alpe34b78a122014-11-20 10:29:10 +01003241
3242/* Caller should hold socket lock for the passed tipc socket. */
Richard Alped8182802014-11-24 11:10:29 +01003243static int __tipc_nl_add_sk_con(struct sk_buff *skb, struct tipc_sock *tsk)
Richard Alpe34b78a122014-11-20 10:29:10 +01003244{
3245 u32 peer_node;
3246 u32 peer_port;
3247 struct nlattr *nest;
3248
3249 peer_node = tsk_peer_node(tsk);
3250 peer_port = tsk_peer_port(tsk);
3251
3252 nest = nla_nest_start(skb, TIPC_NLA_SOCK_CON);
3253
3254 if (nla_put_u32(skb, TIPC_NLA_CON_NODE, peer_node))
3255 goto msg_full;
3256 if (nla_put_u32(skb, TIPC_NLA_CON_SOCK, peer_port))
3257 goto msg_full;
3258
3259 if (tsk->conn_type != 0) {
3260 if (nla_put_flag(skb, TIPC_NLA_CON_FLAG))
3261 goto msg_full;
3262 if (nla_put_u32(skb, TIPC_NLA_CON_TYPE, tsk->conn_type))
3263 goto msg_full;
3264 if (nla_put_u32(skb, TIPC_NLA_CON_INST, tsk->conn_instance))
3265 goto msg_full;
3266 }
3267 nla_nest_end(skb, nest);
3268
3269 return 0;
3270
3271msg_full:
3272 nla_nest_cancel(skb, nest);
3273
3274 return -EMSGSIZE;
3275}
3276
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003277static int __tipc_nl_add_sk_info(struct sk_buff *skb, struct tipc_sock
3278 *tsk)
3279{
3280 struct net *net = sock_net(skb->sk);
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003281 struct sock *sk = &tsk->sk;
3282
3283 if (nla_put_u32(skb, TIPC_NLA_SOCK_REF, tsk->portid) ||
Jon Maloy23fd3ea2018-03-22 20:42:49 +01003284 nla_put_u32(skb, TIPC_NLA_SOCK_ADDR, tipc_own_addr(net)))
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003285 return -EMSGSIZE;
3286
3287 if (tipc_sk_connected(sk)) {
3288 if (__tipc_nl_add_sk_con(skb, tsk))
3289 return -EMSGSIZE;
3290 } else if (!list_empty(&tsk->publications)) {
3291 if (nla_put_flag(skb, TIPC_NLA_SOCK_HAS_PUBL))
3292 return -EMSGSIZE;
3293 }
3294 return 0;
3295}
3296
Richard Alpe34b78a122014-11-20 10:29:10 +01003297/* Caller should hold socket lock for the passed tipc socket. */
Richard Alped8182802014-11-24 11:10:29 +01003298static int __tipc_nl_add_sk(struct sk_buff *skb, struct netlink_callback *cb,
3299 struct tipc_sock *tsk)
Richard Alpe34b78a122014-11-20 10:29:10 +01003300{
Richard Alpe34b78a122014-11-20 10:29:10 +01003301 struct nlattr *attrs;
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003302 void *hdr;
Richard Alpe34b78a122014-11-20 10:29:10 +01003303
3304 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
Richard Alpebfb3e5d2015-02-09 09:50:03 +01003305 &tipc_genl_family, NLM_F_MULTI, TIPC_NL_SOCK_GET);
Richard Alpe34b78a122014-11-20 10:29:10 +01003306 if (!hdr)
3307 goto msg_cancel;
3308
3309 attrs = nla_nest_start(skb, TIPC_NLA_SOCK);
3310 if (!attrs)
3311 goto genlmsg_cancel;
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003312
3313 if (__tipc_nl_add_sk_info(skb, tsk))
Richard Alpe34b78a122014-11-20 10:29:10 +01003314 goto attr_msg_cancel;
3315
Richard Alpe34b78a122014-11-20 10:29:10 +01003316 nla_nest_end(skb, attrs);
3317 genlmsg_end(skb, hdr);
3318
3319 return 0;
3320
3321attr_msg_cancel:
3322 nla_nest_cancel(skb, attrs);
3323genlmsg_cancel:
3324 genlmsg_cancel(skb, hdr);
3325msg_cancel:
3326 return -EMSGSIZE;
3327}
3328
GhantaKrishnamurthy MohanKrishnac30b70d2018-03-21 14:37:44 +01003329int tipc_nl_sk_walk(struct sk_buff *skb, struct netlink_callback *cb,
3330 int (*skb_handler)(struct sk_buff *skb,
3331 struct netlink_callback *cb,
3332 struct tipc_sock *tsk))
Richard Alpe34b78a122014-11-20 10:29:10 +01003333{
Cong Wang8f5c5fc2018-09-04 14:54:55 -07003334 struct rhashtable_iter *iter = (void *)cb->args[4];
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003335 struct tipc_sock *tsk;
3336 int err;
Richard Alpe34b78a122014-11-20 10:29:10 +01003337
Cong Wang9a07efa2018-08-24 12:28:06 -07003338 rhashtable_walk_start(iter);
3339 while ((tsk = rhashtable_walk_next(iter)) != NULL) {
3340 if (IS_ERR(tsk)) {
3341 err = PTR_ERR(tsk);
3342 if (err == -EAGAIN) {
3343 err = 0;
Richard Alped6e164e2015-01-16 12:30:40 +01003344 continue;
3345 }
Cong Wang9a07efa2018-08-24 12:28:06 -07003346 break;
Ying Xue07f6c4b2015-01-07 13:41:58 +08003347 }
Richard Alpe34b78a122014-11-20 10:29:10 +01003348
Cong Wang9a07efa2018-08-24 12:28:06 -07003349 sock_hold(&tsk->sk);
3350 rhashtable_walk_stop(iter);
3351 lock_sock(&tsk->sk);
3352 err = skb_handler(skb, cb, tsk);
3353 if (err) {
3354 release_sock(&tsk->sk);
3355 sock_put(&tsk->sk);
3356 goto out;
3357 }
3358 release_sock(&tsk->sk);
3359 rhashtable_walk_start(iter);
3360 sock_put(&tsk->sk);
3361 }
3362 rhashtable_walk_stop(iter);
3363out:
Richard Alpe34b78a122014-11-20 10:29:10 +01003364 return skb->len;
3365}
GhantaKrishnamurthy MohanKrishnac30b70d2018-03-21 14:37:44 +01003366EXPORT_SYMBOL(tipc_nl_sk_walk);
3367
Cong Wang9a07efa2018-08-24 12:28:06 -07003368int tipc_dump_start(struct netlink_callback *cb)
3369{
Cong Wang8f5c5fc2018-09-04 14:54:55 -07003370 return __tipc_dump_start(cb, sock_net(cb->skb->sk));
3371}
3372EXPORT_SYMBOL(tipc_dump_start);
3373
3374int __tipc_dump_start(struct netlink_callback *cb, struct net *net)
3375{
3376 /* tipc_nl_name_table_dump() uses cb->args[0...3]. */
3377 struct rhashtable_iter *iter = (void *)cb->args[4];
Cong Wang9a07efa2018-08-24 12:28:06 -07003378 struct tipc_net *tn = tipc_net(net);
3379
3380 if (!iter) {
3381 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
3382 if (!iter)
3383 return -ENOMEM;
3384
Cong Wang8f5c5fc2018-09-04 14:54:55 -07003385 cb->args[4] = (long)iter;
Cong Wang9a07efa2018-08-24 12:28:06 -07003386 }
3387
3388 rhashtable_walk_enter(&tn->sk_rht, iter);
3389 return 0;
3390}
Cong Wang9a07efa2018-08-24 12:28:06 -07003391
3392int tipc_dump_done(struct netlink_callback *cb)
3393{
Cong Wang8f5c5fc2018-09-04 14:54:55 -07003394 struct rhashtable_iter *hti = (void *)cb->args[4];
Cong Wang9a07efa2018-08-24 12:28:06 -07003395
3396 rhashtable_walk_exit(hti);
3397 kfree(hti);
3398 return 0;
3399}
3400EXPORT_SYMBOL(tipc_dump_done);
3401
Cong Wange41f0542018-04-06 18:54:52 -07003402int tipc_sk_fill_sock_diag(struct sk_buff *skb, struct netlink_callback *cb,
3403 struct tipc_sock *tsk, u32 sk_filter_state,
GhantaKrishnamurthy MohanKrishnac30b70d2018-03-21 14:37:44 +01003404 u64 (*tipc_diag_gen_cookie)(struct sock *sk))
3405{
3406 struct sock *sk = &tsk->sk;
3407 struct nlattr *attrs;
3408 struct nlattr *stat;
3409
3410 /*filter response w.r.t sk_state*/
3411 if (!(sk_filter_state & (1 << sk->sk_state)))
3412 return 0;
3413
3414 attrs = nla_nest_start(skb, TIPC_NLA_SOCK);
3415 if (!attrs)
3416 goto msg_cancel;
3417
3418 if (__tipc_nl_add_sk_info(skb, tsk))
3419 goto attr_msg_cancel;
3420
3421 if (nla_put_u32(skb, TIPC_NLA_SOCK_TYPE, (u32)sk->sk_type) ||
3422 nla_put_u32(skb, TIPC_NLA_SOCK_TIPC_STATE, (u32)sk->sk_state) ||
3423 nla_put_u32(skb, TIPC_NLA_SOCK_INO, sock_i_ino(sk)) ||
3424 nla_put_u32(skb, TIPC_NLA_SOCK_UID,
Cong Wange41f0542018-04-06 18:54:52 -07003425 from_kuid_munged(sk_user_ns(NETLINK_CB(cb->skb).sk),
GhantaKrishnamurthy MohanKrishna4b2e6872018-04-04 14:49:47 +02003426 sock_i_uid(sk))) ||
GhantaKrishnamurthy MohanKrishnac30b70d2018-03-21 14:37:44 +01003427 nla_put_u64_64bit(skb, TIPC_NLA_SOCK_COOKIE,
3428 tipc_diag_gen_cookie(sk),
3429 TIPC_NLA_SOCK_PAD))
3430 goto attr_msg_cancel;
3431
3432 stat = nla_nest_start(skb, TIPC_NLA_SOCK_STAT);
3433 if (!stat)
3434 goto attr_msg_cancel;
3435
3436 if (nla_put_u32(skb, TIPC_NLA_SOCK_STAT_RCVQ,
3437 skb_queue_len(&sk->sk_receive_queue)) ||
3438 nla_put_u32(skb, TIPC_NLA_SOCK_STAT_SENDQ,
GhantaKrishnamurthy MohanKrishna872619d2018-03-21 14:37:45 +01003439 skb_queue_len(&sk->sk_write_queue)) ||
3440 nla_put_u32(skb, TIPC_NLA_SOCK_STAT_DROP,
3441 atomic_read(&sk->sk_drops)))
GhantaKrishnamurthy MohanKrishnac30b70d2018-03-21 14:37:44 +01003442 goto stat_msg_cancel;
3443
3444 if (tsk->cong_link_cnt &&
3445 nla_put_flag(skb, TIPC_NLA_SOCK_STAT_LINK_CONG))
3446 goto stat_msg_cancel;
3447
3448 if (tsk_conn_cong(tsk) &&
3449 nla_put_flag(skb, TIPC_NLA_SOCK_STAT_CONN_CONG))
3450 goto stat_msg_cancel;
3451
3452 nla_nest_end(skb, stat);
GhantaKrishnamurthy MohanKrishnaa1be5a22018-06-29 13:26:18 +02003453
3454 if (tsk->group)
3455 if (tipc_group_fill_sock_diag(tsk->group, skb))
3456 goto stat_msg_cancel;
3457
GhantaKrishnamurthy MohanKrishnac30b70d2018-03-21 14:37:44 +01003458 nla_nest_end(skb, attrs);
3459
3460 return 0;
3461
3462stat_msg_cancel:
3463 nla_nest_cancel(skb, stat);
3464attr_msg_cancel:
3465 nla_nest_cancel(skb, attrs);
3466msg_cancel:
3467 return -EMSGSIZE;
3468}
3469EXPORT_SYMBOL(tipc_sk_fill_sock_diag);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003470
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003471int tipc_nl_sk_dump(struct sk_buff *skb, struct netlink_callback *cb)
3472{
GhantaKrishnamurthy MohanKrishnac30b70d2018-03-21 14:37:44 +01003473 return tipc_nl_sk_walk(skb, cb, __tipc_nl_add_sk);
GhantaKrishnamurthy MohanKrishnadfde3312018-03-21 14:37:43 +01003474}
3475
Richard Alpe1a1a1432014-11-20 10:29:11 +01003476/* Caller should hold socket lock for the passed tipc socket. */
Richard Alped8182802014-11-24 11:10:29 +01003477static int __tipc_nl_add_sk_publ(struct sk_buff *skb,
3478 struct netlink_callback *cb,
3479 struct publication *publ)
Richard Alpe1a1a1432014-11-20 10:29:11 +01003480{
3481 void *hdr;
3482 struct nlattr *attrs;
3483
3484 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
Richard Alpebfb3e5d2015-02-09 09:50:03 +01003485 &tipc_genl_family, NLM_F_MULTI, TIPC_NL_PUBL_GET);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003486 if (!hdr)
3487 goto msg_cancel;
3488
3489 attrs = nla_nest_start(skb, TIPC_NLA_PUBL);
3490 if (!attrs)
3491 goto genlmsg_cancel;
3492
3493 if (nla_put_u32(skb, TIPC_NLA_PUBL_KEY, publ->key))
3494 goto attr_msg_cancel;
3495 if (nla_put_u32(skb, TIPC_NLA_PUBL_TYPE, publ->type))
3496 goto attr_msg_cancel;
3497 if (nla_put_u32(skb, TIPC_NLA_PUBL_LOWER, publ->lower))
3498 goto attr_msg_cancel;
3499 if (nla_put_u32(skb, TIPC_NLA_PUBL_UPPER, publ->upper))
3500 goto attr_msg_cancel;
3501
3502 nla_nest_end(skb, attrs);
3503 genlmsg_end(skb, hdr);
3504
3505 return 0;
3506
3507attr_msg_cancel:
3508 nla_nest_cancel(skb, attrs);
3509genlmsg_cancel:
3510 genlmsg_cancel(skb, hdr);
3511msg_cancel:
3512 return -EMSGSIZE;
3513}
3514
3515/* Caller should hold socket lock for the passed tipc socket. */
Richard Alped8182802014-11-24 11:10:29 +01003516static int __tipc_nl_list_sk_publ(struct sk_buff *skb,
3517 struct netlink_callback *cb,
3518 struct tipc_sock *tsk, u32 *last_publ)
Richard Alpe1a1a1432014-11-20 10:29:11 +01003519{
3520 int err;
3521 struct publication *p;
3522
3523 if (*last_publ) {
Jon Maloye50e73e2018-03-15 16:48:55 +01003524 list_for_each_entry(p, &tsk->publications, binding_sock) {
Richard Alpe1a1a1432014-11-20 10:29:11 +01003525 if (p->key == *last_publ)
3526 break;
3527 }
3528 if (p->key != *last_publ) {
3529 /* We never set seq or call nl_dump_check_consistent()
3530 * this means that setting prev_seq here will cause the
3531 * consistence check to fail in the netlink callback
3532 * handler. Resulting in the last NLMSG_DONE message
3533 * having the NLM_F_DUMP_INTR flag set.
3534 */
3535 cb->prev_seq = 1;
3536 *last_publ = 0;
3537 return -EPIPE;
3538 }
3539 } else {
3540 p = list_first_entry(&tsk->publications, struct publication,
Jon Maloye50e73e2018-03-15 16:48:55 +01003541 binding_sock);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003542 }
3543
Jon Maloye50e73e2018-03-15 16:48:55 +01003544 list_for_each_entry_from(p, &tsk->publications, binding_sock) {
Richard Alpe1a1a1432014-11-20 10:29:11 +01003545 err = __tipc_nl_add_sk_publ(skb, cb, p);
3546 if (err) {
3547 *last_publ = p->key;
3548 return err;
3549 }
3550 }
3551 *last_publ = 0;
3552
3553 return 0;
3554}
3555
3556int tipc_nl_publ_dump(struct sk_buff *skb, struct netlink_callback *cb)
3557{
3558 int err;
Ying Xue07f6c4b2015-01-07 13:41:58 +08003559 u32 tsk_portid = cb->args[0];
Richard Alpe1a1a1432014-11-20 10:29:11 +01003560 u32 last_publ = cb->args[1];
3561 u32 done = cb->args[2];
Ying Xuee05b31f2015-01-09 15:27:08 +08003562 struct net *net = sock_net(skb->sk);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003563 struct tipc_sock *tsk;
3564
Ying Xue07f6c4b2015-01-07 13:41:58 +08003565 if (!tsk_portid) {
Richard Alpe1a1a1432014-11-20 10:29:11 +01003566 struct nlattr **attrs;
3567 struct nlattr *sock[TIPC_NLA_SOCK_MAX + 1];
3568
3569 err = tipc_nlmsg_parse(cb->nlh, &attrs);
3570 if (err)
3571 return err;
3572
Richard Alpe45e093a2016-05-16 11:14:54 +02003573 if (!attrs[TIPC_NLA_SOCK])
3574 return -EINVAL;
3575
Richard Alpe1a1a1432014-11-20 10:29:11 +01003576 err = nla_parse_nested(sock, TIPC_NLA_SOCK_MAX,
3577 attrs[TIPC_NLA_SOCK],
Johannes Bergfceb6432017-04-12 14:34:07 +02003578 tipc_nl_sock_policy, NULL);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003579 if (err)
3580 return err;
3581
3582 if (!sock[TIPC_NLA_SOCK_REF])
3583 return -EINVAL;
3584
Ying Xue07f6c4b2015-01-07 13:41:58 +08003585 tsk_portid = nla_get_u32(sock[TIPC_NLA_SOCK_REF]);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003586 }
3587
3588 if (done)
3589 return 0;
3590
Ying Xuee05b31f2015-01-09 15:27:08 +08003591 tsk = tipc_sk_lookup(net, tsk_portid);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003592 if (!tsk)
3593 return -EINVAL;
3594
3595 lock_sock(&tsk->sk);
3596 err = __tipc_nl_list_sk_publ(skb, cb, tsk, &last_publ);
3597 if (!err)
3598 done = 1;
3599 release_sock(&tsk->sk);
Ying Xue07f6c4b2015-01-07 13:41:58 +08003600 sock_put(&tsk->sk);
Richard Alpe1a1a1432014-11-20 10:29:11 +01003601
Ying Xue07f6c4b2015-01-07 13:41:58 +08003602 cb->args[0] = tsk_portid;
Richard Alpe1a1a1432014-11-20 10:29:11 +01003603 cb->args[1] = last_publ;
3604 cb->args[2] = done;
3605
3606 return skb->len;
3607}
Tuong Lienb4b97712018-12-19 09:17:56 +07003608
Tuong Lien01e661e2018-12-19 09:17:58 +07003609/**
3610 * tipc_sk_filtering - check if a socket should be traced
3611 * @sk: the socket to be examined
3612 * @sysctl_tipc_sk_filter[]: the socket tuple for filtering,
3613 * (portid, sock type, name type, name lower, name upper)
3614 *
3615 * Returns true if the socket meets the socket tuple data
3616 * (value 0 = 'any') or when there is no tuple set (all = 0),
3617 * otherwise false
3618 */
3619bool tipc_sk_filtering(struct sock *sk)
3620{
3621 struct tipc_sock *tsk;
3622 struct publication *p;
3623 u32 _port, _sktype, _type, _lower, _upper;
3624 u32 type = 0, lower = 0, upper = 0;
3625
3626 if (!sk)
3627 return true;
3628
3629 tsk = tipc_sk(sk);
3630
3631 _port = sysctl_tipc_sk_filter[0];
3632 _sktype = sysctl_tipc_sk_filter[1];
3633 _type = sysctl_tipc_sk_filter[2];
3634 _lower = sysctl_tipc_sk_filter[3];
3635 _upper = sysctl_tipc_sk_filter[4];
3636
3637 if (!_port && !_sktype && !_type && !_lower && !_upper)
3638 return true;
3639
3640 if (_port)
3641 return (_port == tsk->portid);
3642
3643 if (_sktype && _sktype != sk->sk_type)
3644 return false;
3645
3646 if (tsk->published) {
3647 p = list_first_entry_or_null(&tsk->publications,
3648 struct publication, binding_sock);
3649 if (p) {
3650 type = p->type;
3651 lower = p->lower;
3652 upper = p->upper;
3653 }
3654 }
3655
3656 if (!tipc_sk_type_connectionless(sk)) {
3657 type = tsk->conn_type;
3658 lower = tsk->conn_instance;
3659 upper = tsk->conn_instance;
3660 }
3661
3662 if ((_type && _type != type) || (_lower && _lower != lower) ||
3663 (_upper && _upper != upper))
3664 return false;
3665
3666 return true;
3667}
3668
Tuong Lienb4b97712018-12-19 09:17:56 +07003669u32 tipc_sock_get_portid(struct sock *sk)
3670{
3671 return (sk) ? (tipc_sk(sk))->portid : 0;
3672}
3673
3674/**
Tuong Lien01e661e2018-12-19 09:17:58 +07003675 * tipc_sk_overlimit1 - check if socket rx queue is about to be overloaded,
3676 * both the rcv and backlog queues are considered
3677 * @sk: tipc sk to be checked
3678 * @skb: tipc msg to be checked
3679 *
3680 * Returns true if the socket rx queue allocation is > 90%, otherwise false
3681 */
3682
3683bool tipc_sk_overlimit1(struct sock *sk, struct sk_buff *skb)
3684{
3685 atomic_t *dcnt = &tipc_sk(sk)->dupl_rcvcnt;
3686 unsigned int lim = rcvbuf_limit(sk, skb) + atomic_read(dcnt);
3687 unsigned int qsize = sk->sk_backlog.len + sk_rmem_alloc_get(sk);
3688
3689 return (qsize > lim * 90 / 100);
3690}
3691
3692/**
3693 * tipc_sk_overlimit2 - check if socket rx queue is about to be overloaded,
3694 * only the rcv queue is considered
3695 * @sk: tipc sk to be checked
3696 * @skb: tipc msg to be checked
3697 *
3698 * Returns true if the socket rx queue allocation is > 90%, otherwise false
3699 */
3700
3701bool tipc_sk_overlimit2(struct sock *sk, struct sk_buff *skb)
3702{
3703 unsigned int lim = rcvbuf_limit(sk, skb);
3704 unsigned int qsize = sk_rmem_alloc_get(sk);
3705
3706 return (qsize > lim * 90 / 100);
3707}
3708
3709/**
Tuong Lienb4b97712018-12-19 09:17:56 +07003710 * tipc_sk_dump - dump TIPC socket
3711 * @sk: tipc sk to be dumped
3712 * @dqueues: bitmask to decide if any socket queue to be dumped?
3713 * - TIPC_DUMP_NONE: don't dump socket queues
3714 * - TIPC_DUMP_SK_SNDQ: dump socket send queue
3715 * - TIPC_DUMP_SK_RCVQ: dump socket rcv queue
3716 * - TIPC_DUMP_SK_BKLGQ: dump socket backlog queue
3717 * - TIPC_DUMP_ALL: dump all the socket queues above
3718 * @buf: returned buffer of dump data in format
3719 */
3720int tipc_sk_dump(struct sock *sk, u16 dqueues, char *buf)
3721{
3722 int i = 0;
3723 size_t sz = (dqueues) ? SK_LMAX : SK_LMIN;
3724 struct tipc_sock *tsk;
3725 struct publication *p;
3726 bool tsk_connected;
3727
3728 if (!sk) {
3729 i += scnprintf(buf, sz, "sk data: (null)\n");
3730 return i;
3731 }
3732
3733 tsk = tipc_sk(sk);
3734 tsk_connected = !tipc_sk_type_connectionless(sk);
3735
3736 i += scnprintf(buf, sz, "sk data: %u", sk->sk_type);
3737 i += scnprintf(buf + i, sz - i, " %d", sk->sk_state);
3738 i += scnprintf(buf + i, sz - i, " %x", tsk_own_node(tsk));
3739 i += scnprintf(buf + i, sz - i, " %u", tsk->portid);
3740 i += scnprintf(buf + i, sz - i, " | %u", tsk_connected);
3741 if (tsk_connected) {
3742 i += scnprintf(buf + i, sz - i, " %x", tsk_peer_node(tsk));
3743 i += scnprintf(buf + i, sz - i, " %u", tsk_peer_port(tsk));
3744 i += scnprintf(buf + i, sz - i, " %u", tsk->conn_type);
3745 i += scnprintf(buf + i, sz - i, " %u", tsk->conn_instance);
3746 }
3747 i += scnprintf(buf + i, sz - i, " | %u", tsk->published);
3748 if (tsk->published) {
3749 p = list_first_entry_or_null(&tsk->publications,
3750 struct publication, binding_sock);
3751 i += scnprintf(buf + i, sz - i, " %u", (p) ? p->type : 0);
3752 i += scnprintf(buf + i, sz - i, " %u", (p) ? p->lower : 0);
3753 i += scnprintf(buf + i, sz - i, " %u", (p) ? p->upper : 0);
3754 }
3755 i += scnprintf(buf + i, sz - i, " | %u", tsk->snd_win);
3756 i += scnprintf(buf + i, sz - i, " %u", tsk->rcv_win);
3757 i += scnprintf(buf + i, sz - i, " %u", tsk->max_pkt);
3758 i += scnprintf(buf + i, sz - i, " %x", tsk->peer_caps);
3759 i += scnprintf(buf + i, sz - i, " %u", tsk->cong_link_cnt);
3760 i += scnprintf(buf + i, sz - i, " %u", tsk->snt_unacked);
3761 i += scnprintf(buf + i, sz - i, " %u", tsk->rcv_unacked);
3762 i += scnprintf(buf + i, sz - i, " %u", atomic_read(&tsk->dupl_rcvcnt));
3763 i += scnprintf(buf + i, sz - i, " %u", sk->sk_shutdown);
3764 i += scnprintf(buf + i, sz - i, " | %d", sk_wmem_alloc_get(sk));
3765 i += scnprintf(buf + i, sz - i, " %d", sk->sk_sndbuf);
3766 i += scnprintf(buf + i, sz - i, " | %d", sk_rmem_alloc_get(sk));
3767 i += scnprintf(buf + i, sz - i, " %d", sk->sk_rcvbuf);
3768 i += scnprintf(buf + i, sz - i, " | %d\n", sk->sk_backlog.len);
3769
3770 if (dqueues & TIPC_DUMP_SK_SNDQ) {
3771 i += scnprintf(buf + i, sz - i, "sk_write_queue: ");
3772 i += tipc_list_dump(&sk->sk_write_queue, false, buf + i);
3773 }
3774
3775 if (dqueues & TIPC_DUMP_SK_RCVQ) {
3776 i += scnprintf(buf + i, sz - i, "sk_receive_queue: ");
3777 i += tipc_list_dump(&sk->sk_receive_queue, false, buf + i);
3778 }
3779
3780 if (dqueues & TIPC_DUMP_SK_BKLGQ) {
3781 i += scnprintf(buf + i, sz - i, "sk_backlog:\n head ");
3782 i += tipc_skb_dump(sk->sk_backlog.head, false, buf + i);
3783 if (sk->sk_backlog.tail != sk->sk_backlog.head) {
3784 i += scnprintf(buf + i, sz - i, " tail ");
3785 i += tipc_skb_dump(sk->sk_backlog.tail, false,
3786 buf + i);
3787 }
3788 }
3789
3790 return i;
3791}