blob: 41f013888f07a572a825ee7355291a00e400e272 [file] [log] [blame]
Per Lidenb97bf3f2006-01-02 19:04:38 +01001/*
Jon Paul Maloy02c00c22014-06-09 11:08:18 -05002 * net/tipc/socket.c: TIPC socket API
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003 *
Jon Paul Maloy51b9a312016-11-19 14:47:07 -05004 * Copyright (c) 2001-2007, 2012-2016, 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>
Per Lidenb97bf3f2006-01-02 19:04:38 +010038#include "core.h"
Jon Paul Maloye2dafe82014-06-25 20:41:37 -050039#include "name_table.h"
Erik Hugne78acb1f2014-04-24 16:26:47 +020040#include "node.h"
Jon Paul Maloye2dafe82014-06-25 20:41:37 -050041#include "link.h"
Jon Paul Maloyc637c102015-02-05 08:36:41 -050042#include "name_distr.h"
Jon Paul Maloy2e84c602014-08-22 18:09:18 -040043#include "socket.h"
Jon Paul Maloya6bf70f2015-05-14 10:46:13 -040044#include "bcast.h"
Richard Alpe49cc66e2016-03-04 17:04:42 +010045#include "netlink.h"
Erik Hugne2cf8aa12012-06-29 00:16:37 -040046
Ying Xue07f6c4b2015-01-07 13:41:58 +080047#define SS_LISTENING -1 /* socket is listening */
48#define SS_READY -2 /* socket is connectionless */
Per Lidenb97bf3f2006-01-02 19:04:38 +010049
Ying Xue07f6c4b2015-01-07 13:41:58 +080050#define CONN_TIMEOUT_DEFAULT 8000 /* default connect timeout = 8s */
Ying Xue2f55c432015-01-09 15:27:00 +080051#define CONN_PROBING_INTERVAL msecs_to_jiffies(3600000) /* [ms] => 1 h */
Ying Xue07f6c4b2015-01-07 13:41:58 +080052#define TIPC_FWD_MSG 1
53#define TIPC_CONN_OK 0
54#define TIPC_CONN_PROBING 1
55#define TIPC_MAX_PORT 0xffffffff
56#define TIPC_MIN_PORT 1
Jon Paul Maloy301bae52014-08-22 18:09:20 -040057
58/**
59 * struct tipc_sock - TIPC socket structure
60 * @sk: socket - interacts with 'port' and with user via the socket API
61 * @connected: non-zero if port is currently connected to a peer port
62 * @conn_type: TIPC type used when connection was established
63 * @conn_instance: TIPC instance used when connection was established
64 * @published: non-zero if port has one or more associated names
65 * @max_pkt: maximum packet size "hint" used when building messages sent by port
Ying Xue07f6c4b2015-01-07 13:41:58 +080066 * @portid: unique port identity in TIPC socket hash table
Jon Paul Maloy301bae52014-08-22 18:09:20 -040067 * @phdr: preformatted message header used when sending messages
68 * @port_list: adjacent ports in TIPC's global list of ports
69 * @publications: list of publications for port
70 * @pub_count: total # of publications port has made during its lifetime
71 * @probing_state:
Ying Xue2f55c432015-01-09 15:27:00 +080072 * @probing_intv:
Jon Paul Maloy301bae52014-08-22 18:09:20 -040073 * @conn_timeout: the time we can wait for an unresponded setup request
74 * @dupl_rcvcnt: number of bytes counted twice, in both backlog and rcv queue
75 * @link_cong: non-zero if owner must sleep because of link congestion
76 * @sent_unacked: # messages sent by socket, and not yet acked by peer
77 * @rcv_unacked: # messages read by user, but not yet acked back to peer
Erik Hugnef2f80362015-03-19 09:02:19 +010078 * @remote: 'connected' peer for dgram/rdm
Ying Xue07f6c4b2015-01-07 13:41:58 +080079 * @node: hash table node
80 * @rcu: rcu struct for tipc_sock
Jon Paul Maloy301bae52014-08-22 18:09:20 -040081 */
82struct tipc_sock {
83 struct sock sk;
84 int connected;
85 u32 conn_type;
86 u32 conn_instance;
87 int published;
88 u32 max_pkt;
Ying Xue07f6c4b2015-01-07 13:41:58 +080089 u32 portid;
Jon Paul Maloy301bae52014-08-22 18:09:20 -040090 struct tipc_msg phdr;
91 struct list_head sock_list;
92 struct list_head publications;
93 u32 pub_count;
94 u32 probing_state;
Ying Xue2f55c432015-01-09 15:27:00 +080095 unsigned long probing_intv;
Jon Paul Maloy301bae52014-08-22 18:09:20 -040096 uint conn_timeout;
97 atomic_t dupl_rcvcnt;
98 bool link_cong;
Jon Paul Maloy10724cc2016-05-02 11:58:47 -040099 u16 snt_unacked;
100 u16 snd_win;
Jon Paul Maloy60020e12016-05-02 11:58:46 -0400101 u16 peer_caps;
Jon Paul Maloy10724cc2016-05-02 11:58:47 -0400102 u16 rcv_unacked;
103 u16 rcv_win;
Erik Hugnef2f80362015-03-19 09:02:19 +0100104 struct sockaddr_tipc remote;
Ying Xue07f6c4b2015-01-07 13:41:58 +0800105 struct rhash_head node;
106 struct rcu_head rcu;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400107};
Per Lidenb97bf3f2006-01-02 19:04:38 +0100108
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -0400109static int tipc_backlog_rcv(struct sock *sk, struct sk_buff *skb);
David S. Miller676d2362014-04-11 16:15:36 -0400110static void tipc_data_ready(struct sock *sk);
Ying Xuef288bef2012-08-21 11:16:57 +0800111static void tipc_write_space(struct sock *sk);
Ying Xuef4195d12015-11-22 15:46:05 +0800112static void tipc_sock_destruct(struct sock *sk);
Ying Xue247f0f32014-02-18 16:06:46 +0800113static int tipc_release(struct socket *sock);
114static int tipc_accept(struct socket *sock, struct socket *new_sock, int flags);
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400115static int tipc_wait_for_sndmsg(struct socket *sock, long *timeo_p);
Ying Xuef2f2a962015-01-09 15:27:02 +0800116static void tipc_sk_timeout(unsigned long data);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400117static int tipc_sk_publish(struct tipc_sock *tsk, uint scope,
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400118 struct tipc_name_seq const *seq);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400119static int tipc_sk_withdraw(struct tipc_sock *tsk, uint scope,
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400120 struct tipc_name_seq const *seq);
Ying Xuee05b31f2015-01-09 15:27:08 +0800121static struct tipc_sock *tipc_sk_lookup(struct net *net, u32 portid);
Ying Xue07f6c4b2015-01-07 13:41:58 +0800122static int tipc_sk_insert(struct tipc_sock *tsk);
123static void tipc_sk_remove(struct tipc_sock *tsk);
Ying Xue39a02952015-03-02 15:37:47 +0800124static int __tipc_send_stream(struct socket *sock, struct msghdr *m,
125 size_t dsz);
126static int __tipc_sendmsg(struct socket *sock, struct msghdr *m, size_t dsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100127
Florian Westphalbca65ea2008-02-07 18:18:01 -0800128static const struct proto_ops packet_ops;
129static const struct proto_ops stream_ops;
130static const struct proto_ops msg_ops;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100131static struct proto tipc_proto;
Herbert Xu6cca72892015-03-20 21:57:05 +1100132static const struct rhashtable_params tsk_rht_params;
133
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500134static u32 tsk_own_node(struct tipc_sock *tsk)
135{
136 return msg_prevnode(&tsk->phdr);
137}
138
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400139static u32 tsk_peer_node(struct tipc_sock *tsk)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400140{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400141 return msg_destnode(&tsk->phdr);
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400142}
143
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400144static u32 tsk_peer_port(struct tipc_sock *tsk)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400145{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400146 return msg_destport(&tsk->phdr);
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400147}
148
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400149static bool tsk_unreliable(struct tipc_sock *tsk)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400150{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400151 return msg_src_droppable(&tsk->phdr) != 0;
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400152}
153
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400154static void tsk_set_unreliable(struct tipc_sock *tsk, bool unreliable)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400155{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400156 msg_set_src_droppable(&tsk->phdr, unreliable ? 1 : 0);
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400157}
158
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400159static bool tsk_unreturnable(struct tipc_sock *tsk)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400160{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400161 return msg_dest_droppable(&tsk->phdr) != 0;
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400162}
163
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400164static void tsk_set_unreturnable(struct tipc_sock *tsk, bool unreturnable)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400165{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400166 msg_set_dest_droppable(&tsk->phdr, unreturnable ? 1 : 0);
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400167}
168
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400169static int tsk_importance(struct tipc_sock *tsk)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400170{
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400171 return msg_importance(&tsk->phdr);
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400172}
173
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400174static int tsk_set_importance(struct tipc_sock *tsk, int imp)
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400175{
176 if (imp > TIPC_CRITICAL_IMPORTANCE)
177 return -EINVAL;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400178 msg_set_importance(&tsk->phdr, (u32)imp);
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400179 return 0;
180}
Jon Paul Maloy8826cde2014-03-12 11:31:09 -0400181
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400182static struct tipc_sock *tipc_sk(const struct sock *sk)
183{
184 return container_of(sk, struct tipc_sock, sk);
185}
186
Jon Paul Maloy10724cc2016-05-02 11:58:47 -0400187static bool tsk_conn_cong(struct tipc_sock *tsk)
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400188{
Jon Paul Maloy6998cc62016-11-24 18:47:07 -0500189 return tsk->snt_unacked > tsk->snd_win;
Jon Paul Maloy10724cc2016-05-02 11:58:47 -0400190}
191
192/* tsk_blocks(): translate a buffer size in bytes to number of
193 * advertisable blocks, taking into account the ratio truesize(len)/len
194 * We can trust that this ratio is always < 4 for len >= FLOWCTL_BLK_SZ
195 */
196static u16 tsk_adv_blocks(int len)
197{
198 return len / FLOWCTL_BLK_SZ / 4;
199}
200
201/* tsk_inc(): increment counter for sent or received data
202 * - If block based flow control is not supported by peer we
203 * fall back to message based ditto, incrementing the counter
204 */
205static u16 tsk_inc(struct tipc_sock *tsk, int msglen)
206{
207 if (likely(tsk->peer_caps & TIPC_BLOCK_FLOWCTL))
208 return ((msglen / FLOWCTL_BLK_SZ) + 1);
209 return 1;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400210}
211
Per Lidenb97bf3f2006-01-02 19:04:38 +0100212/**
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400213 * tsk_advance_rx_queue - discard first buffer in socket receive queue
Allan Stephens0c3141e2008-04-15 00:22:02 -0700214 *
215 * Caller must hold socket lock
Per Lidenb97bf3f2006-01-02 19:04:38 +0100216 */
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400217static void tsk_advance_rx_queue(struct sock *sk)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100218{
Allan Stephens5f6d9122011-11-04 13:24:29 -0400219 kfree_skb(__skb_dequeue(&sk->sk_receive_queue));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100220}
221
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -0400222/* tipc_sk_respond() : send response message back to sender
223 */
224static void tipc_sk_respond(struct sock *sk, struct sk_buff *skb, int err)
225{
226 u32 selector;
227 u32 dnode;
228 u32 onode = tipc_own_addr(sock_net(sk));
229
230 if (!tipc_msg_reverse(onode, &skb, err))
231 return;
232
233 dnode = msg_destnode(buf_msg(skb));
234 selector = msg_origport(buf_msg(skb));
235 tipc_node_xmit_skb(sock_net(sk), skb, dnode, selector);
236}
237
Per Lidenb97bf3f2006-01-02 19:04:38 +0100238/**
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400239 * tsk_rej_rx_queue - reject all buffers in socket receive queue
Allan Stephens0c3141e2008-04-15 00:22:02 -0700240 *
241 * Caller must hold socket lock
242 */
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400243static void tsk_rej_rx_queue(struct sock *sk)
Allan Stephens0c3141e2008-04-15 00:22:02 -0700244{
Ying Xuea6ca1092014-11-26 11:41:55 +0800245 struct sk_buff *skb;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700246
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -0400247 while ((skb = __skb_dequeue(&sk->sk_receive_queue)))
248 tipc_sk_respond(sk, skb, TIPC_ERR_NO_PORT);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700249}
250
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400251/* tsk_peer_msg - verify if message was sent by connected port's peer
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400252 *
253 * Handles cases where the node's network address has changed from
254 * the default of <0.0.0> to its configured setting.
255 */
Jon Paul Maloy2e84c602014-08-22 18:09:18 -0400256static bool tsk_peer_msg(struct tipc_sock *tsk, struct tipc_msg *msg)
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400257{
Ying Xue34747532015-01-09 15:27:10 +0800258 struct tipc_net *tn = net_generic(sock_net(&tsk->sk), tipc_net_id);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400259 u32 peer_port = tsk_peer_port(tsk);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400260 u32 orig_node;
261 u32 peer_node;
262
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400263 if (unlikely(!tsk->connected))
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400264 return false;
265
266 if (unlikely(msg_origport(msg) != peer_port))
267 return false;
268
269 orig_node = msg_orignode(msg);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400270 peer_node = tsk_peer_node(tsk);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400271
272 if (likely(orig_node == peer_node))
273 return true;
274
Ying Xue34747532015-01-09 15:27:10 +0800275 if (!orig_node && (peer_node == tn->own_addr))
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400276 return true;
277
Ying Xue34747532015-01-09 15:27:10 +0800278 if (!peer_node && (orig_node == tn->own_addr))
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -0400279 return true;
280
281 return false;
282}
283
Allan Stephens0c3141e2008-04-15 00:22:02 -0700284/**
Ying Xuec5fa7b32013-06-17 10:54:39 -0400285 * tipc_sk_create - create a TIPC socket
Allan Stephens0c3141e2008-04-15 00:22:02 -0700286 * @net: network namespace (must be default network)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100287 * @sock: pre-allocated socket structure
288 * @protocol: protocol indicator (must be 0)
Eric Paris3f378b62009-11-05 22:18:14 -0800289 * @kern: caused by kernel or by userspace?
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900290 *
Allan Stephens0c3141e2008-04-15 00:22:02 -0700291 * This routine creates additional data structures used by the TIPC socket,
292 * initializes them, and links them together.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100293 *
294 * Returns 0 on success, errno otherwise
295 */
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400296static int tipc_sk_create(struct net *net, struct socket *sock,
297 int protocol, int kern)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100298{
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500299 struct tipc_net *tn;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700300 const struct proto_ops *ops;
301 socket_state state;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100302 struct sock *sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400303 struct tipc_sock *tsk;
Jon Paul Maloy5b8fa7c2014-08-22 18:09:13 -0400304 struct tipc_msg *msg;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700305
306 /* Validate arguments */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100307 if (unlikely(protocol != 0))
308 return -EPROTONOSUPPORT;
309
Per Lidenb97bf3f2006-01-02 19:04:38 +0100310 switch (sock->type) {
311 case SOCK_STREAM:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700312 ops = &stream_ops;
313 state = SS_UNCONNECTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100314 break;
315 case SOCK_SEQPACKET:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700316 ops = &packet_ops;
317 state = SS_UNCONNECTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100318 break;
319 case SOCK_DGRAM:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100320 case SOCK_RDM:
Allan Stephens0c3141e2008-04-15 00:22:02 -0700321 ops = &msg_ops;
322 state = SS_READY;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100323 break;
Allan Stephens49978652006-06-25 23:47:18 -0700324 default:
Allan Stephens49978652006-06-25 23:47:18 -0700325 return -EPROTOTYPE;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100326 }
327
Allan Stephens0c3141e2008-04-15 00:22:02 -0700328 /* Allocate socket's protocol area */
Eric W. Biederman11aa9c22015-05-08 21:09:13 -0500329 sk = sk_alloc(net, AF_TIPC, GFP_KERNEL, &tipc_proto, kern);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700330 if (sk == NULL)
331 return -ENOMEM;
332
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400333 tsk = tipc_sk(sk);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400334 tsk->max_pkt = MAX_PKT_DEFAULT;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400335 INIT_LIST_HEAD(&tsk->publications);
336 msg = &tsk->phdr;
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500337 tn = net_generic(sock_net(sk), tipc_net_id);
338 tipc_msg_init(tn->own_addr, msg, TIPC_LOW_IMPORTANCE, TIPC_NAMED_MSG,
Jon Paul Maloy5b8fa7c2014-08-22 18:09:13 -0400339 NAMED_H_SIZE, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100340
Allan Stephens0c3141e2008-04-15 00:22:02 -0700341 /* Finish initializing socket data structures */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700342 sock->ops = ops;
343 sock->state = state;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100344 sock_init_data(sock, sk);
Ying Xue07f6c4b2015-01-07 13:41:58 +0800345 if (tipc_sk_insert(tsk)) {
Masanari Iidac19ca6c2016-02-08 20:53:12 +0900346 pr_warn("Socket create failed; port number exhausted\n");
Ying Xue07f6c4b2015-01-07 13:41:58 +0800347 return -EINVAL;
348 }
349 msg_set_origport(msg, tsk->portid);
Ying Xue3721e9c2015-01-13 17:07:48 +0800350 setup_timer(&sk->sk_timer, tipc_sk_timeout, (unsigned long)tsk);
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -0400351 sk->sk_backlog_rcv = tipc_backlog_rcv;
Ying Xuecc79dd12013-06-17 10:54:37 -0400352 sk->sk_rcvbuf = sysctl_tipc_rmem[1];
Ying Xuef288bef2012-08-21 11:16:57 +0800353 sk->sk_data_ready = tipc_data_ready;
354 sk->sk_write_space = tipc_write_space;
Ying Xuef4195d12015-11-22 15:46:05 +0800355 sk->sk_destruct = tipc_sock_destruct;
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -0400356 tsk->conn_timeout = CONN_TIMEOUT_DEFAULT;
357 atomic_set(&tsk->dupl_rcvcnt, 0);
Allan Stephens7ef43eb2008-05-12 15:42:28 -0700358
Jon Paul Maloy10724cc2016-05-02 11:58:47 -0400359 /* Start out with safe limits until we receive an advertised window */
360 tsk->snd_win = tsk_adv_blocks(RCVBUF_MIN);
361 tsk->rcv_win = tsk->snd_win;
362
Allan Stephens0c3141e2008-04-15 00:22:02 -0700363 if (sock->state == SS_READY) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400364 tsk_set_unreturnable(tsk, true);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700365 if (sock->type == SOCK_DGRAM)
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400366 tsk_set_unreliable(tsk, true);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700367 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100368 return 0;
369}
370
Ying Xue07f6c4b2015-01-07 13:41:58 +0800371static void tipc_sk_callback(struct rcu_head *head)
372{
373 struct tipc_sock *tsk = container_of(head, struct tipc_sock, rcu);
374
375 sock_put(&tsk->sk);
376}
377
Ying Xuec5fa7b32013-06-17 10:54:39 -0400378/**
Ying Xue247f0f32014-02-18 16:06:46 +0800379 * tipc_release - destroy a TIPC socket
Per Lidenb97bf3f2006-01-02 19:04:38 +0100380 * @sock: socket to destroy
381 *
382 * This routine cleans up any messages that are still queued on the socket.
383 * For DGRAM and RDM socket types, all queued messages are rejected.
384 * For SEQPACKET and STREAM socket types, the first message is rejected
385 * and any others are discarded. (If the first message on a STREAM socket
386 * is partially-read, it is discarded and the next one is rejected instead.)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900387 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100388 * NOTE: Rejected messages are not necessarily returned to the sender! They
389 * are returned or discarded according to the "destination droppable" setting
390 * specified for the message by the sender.
391 *
392 * Returns 0 on success, errno otherwise
393 */
Ying Xue247f0f32014-02-18 16:06:46 +0800394static int tipc_release(struct socket *sock)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100395{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100396 struct sock *sk = sock->sk;
Sasha Levin357c4772015-01-13 12:46:41 -0500397 struct net *net;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400398 struct tipc_sock *tsk;
Ying Xuea6ca1092014-11-26 11:41:55 +0800399 struct sk_buff *skb;
Ying Xue1ea23a22015-05-28 13:19:22 +0800400 u32 dnode;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100401
Allan Stephens0c3141e2008-04-15 00:22:02 -0700402 /*
403 * Exit if socket isn't fully initialized (occurs when a failed accept()
404 * releases a pre-allocated child socket that was never used)
405 */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700406 if (sk == NULL)
407 return 0;
408
Sasha Levin357c4772015-01-13 12:46:41 -0500409 net = sock_net(sk);
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400410 tsk = tipc_sk(sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700411 lock_sock(sk);
412
413 /*
414 * Reject all unreceived messages, except on an active connection
415 * (which disconnects locally & sends a 'FIN+' to peer)
416 */
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400417 dnode = tsk_peer_node(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100418 while (sock->state != SS_DISCONNECTING) {
Ying Xuea6ca1092014-11-26 11:41:55 +0800419 skb = __skb_dequeue(&sk->sk_receive_queue);
420 if (skb == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100421 break;
Ying Xuea6ca1092014-11-26 11:41:55 +0800422 if (TIPC_SKB_CB(skb)->handle != NULL)
423 kfree_skb(skb);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700424 else {
425 if ((sock->state == SS_CONNECTING) ||
426 (sock->state == SS_CONNECTED)) {
427 sock->state = SS_DISCONNECTING;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400428 tsk->connected = 0;
Ying Xuef2f98002015-01-09 15:27:05 +0800429 tipc_node_remove_conn(net, dnode, tsk->portid);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700430 }
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -0400431 tipc_sk_respond(sk, skb, TIPC_ERR_NO_PORT);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700432 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100433 }
434
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400435 tipc_sk_withdraw(tsk, 0, NULL);
Ying Xue1ea23a22015-05-28 13:19:22 +0800436 sk_stop_timer(sk, &sk->sk_timer);
Ying Xue07f6c4b2015-01-07 13:41:58 +0800437 tipc_sk_remove(tsk);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400438 if (tsk->connected) {
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500439 skb = tipc_msg_create(TIPC_CRITICAL_IMPORTANCE,
Ying Xue34747532015-01-09 15:27:10 +0800440 TIPC_CONN_MSG, SHORT_H_SIZE, 0, dnode,
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500441 tsk_own_node(tsk), tsk_peer_port(tsk),
Ying Xue07f6c4b2015-01-07 13:41:58 +0800442 tsk->portid, TIPC_ERR_NO_PORT);
Ying Xuea6ca1092014-11-26 11:41:55 +0800443 if (skb)
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -0400444 tipc_node_xmit_skb(net, skb, dnode, tsk->portid);
Ying Xuef2f98002015-01-09 15:27:05 +0800445 tipc_node_remove_conn(net, dnode, tsk->portid);
Jon Paul Maloy5b8fa7c2014-08-22 18:09:13 -0400446 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100447
Allan Stephens0c3141e2008-04-15 00:22:02 -0700448 /* Reject any messages that accumulated in backlog queue */
Allan Stephens0c3141e2008-04-15 00:22:02 -0700449 sock->state = SS_DISCONNECTING;
450 release_sock(sk);
Ying Xue07f6c4b2015-01-07 13:41:58 +0800451
452 call_rcu(&tsk->rcu, tipc_sk_callback);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700453 sock->sk = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100454
Geert Uytterhoeven065d7e32014-04-06 15:56:14 +0200455 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100456}
457
458/**
Ying Xue247f0f32014-02-18 16:06:46 +0800459 * tipc_bind - associate or disassocate TIPC name(s) with a socket
Per Lidenb97bf3f2006-01-02 19:04:38 +0100460 * @sock: socket structure
461 * @uaddr: socket address describing name(s) and desired operation
462 * @uaddr_len: size of socket address data structure
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900463 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100464 * Name and name sequence binding is indicated using a positive scope value;
465 * a negative scope value unbinds the specified name. Specifying no name
466 * (i.e. a socket address length of 0) unbinds all names from the socket.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900467 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100468 * Returns 0 on success, errno otherwise
Allan Stephens0c3141e2008-04-15 00:22:02 -0700469 *
470 * NOTE: This routine doesn't need to take the socket lock since it doesn't
471 * access any non-constant socket information.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100472 */
Ying Xue247f0f32014-02-18 16:06:46 +0800473static int tipc_bind(struct socket *sock, struct sockaddr *uaddr,
474 int uaddr_len)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100475{
Ying Xue84602762013-12-27 10:18:28 +0800476 struct sock *sk = sock->sk;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100477 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400478 struct tipc_sock *tsk = tipc_sk(sk);
Ying Xue84602762013-12-27 10:18:28 +0800479 int res = -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100480
Ying Xue84602762013-12-27 10:18:28 +0800481 lock_sock(sk);
482 if (unlikely(!uaddr_len)) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400483 res = tipc_sk_withdraw(tsk, 0, NULL);
Ying Xue84602762013-12-27 10:18:28 +0800484 goto exit;
485 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900486
Ying Xue84602762013-12-27 10:18:28 +0800487 if (uaddr_len < sizeof(struct sockaddr_tipc)) {
488 res = -EINVAL;
489 goto exit;
490 }
491 if (addr->family != AF_TIPC) {
492 res = -EAFNOSUPPORT;
493 goto exit;
494 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100495
Per Lidenb97bf3f2006-01-02 19:04:38 +0100496 if (addr->addrtype == TIPC_ADDR_NAME)
497 addr->addr.nameseq.upper = addr->addr.nameseq.lower;
Ying Xue84602762013-12-27 10:18:28 +0800498 else if (addr->addrtype != TIPC_ADDR_NAMESEQ) {
499 res = -EAFNOSUPPORT;
500 goto exit;
501 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900502
Ying Xue13a2e892013-06-17 10:54:40 -0400503 if ((addr->addr.nameseq.type < TIPC_RESERVED_TYPES) &&
Ying Xue7d0ab172013-06-17 10:54:41 -0400504 (addr->addr.nameseq.type != TIPC_TOP_SRV) &&
Ying Xue84602762013-12-27 10:18:28 +0800505 (addr->addr.nameseq.type != TIPC_CFG_SRV)) {
506 res = -EACCES;
507 goto exit;
508 }
Allan Stephensc422f1b2011-11-02 15:49:40 -0400509
Ying Xue84602762013-12-27 10:18:28 +0800510 res = (addr->scope > 0) ?
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400511 tipc_sk_publish(tsk, addr->scope, &addr->addr.nameseq) :
512 tipc_sk_withdraw(tsk, -addr->scope, &addr->addr.nameseq);
Ying Xue84602762013-12-27 10:18:28 +0800513exit:
514 release_sock(sk);
515 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100516}
517
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900518/**
Ying Xue247f0f32014-02-18 16:06:46 +0800519 * tipc_getname - get port ID of socket or peer socket
Per Lidenb97bf3f2006-01-02 19:04:38 +0100520 * @sock: socket structure
521 * @uaddr: area for returned socket address
522 * @uaddr_len: area for returned length of socket address
Allan Stephens2da59912008-07-14 22:43:32 -0700523 * @peer: 0 = own ID, 1 = current peer ID, 2 = current/former peer ID
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900524 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100525 * Returns 0 on success, errno otherwise
Allan Stephens0c3141e2008-04-15 00:22:02 -0700526 *
Allan Stephens2da59912008-07-14 22:43:32 -0700527 * NOTE: This routine doesn't need to take the socket lock since it only
528 * accesses socket information that is unchanging (or which changes in
Allan Stephens0e659672010-12-31 18:59:32 +0000529 * a completely predictable manner).
Per Lidenb97bf3f2006-01-02 19:04:38 +0100530 */
Ying Xue247f0f32014-02-18 16:06:46 +0800531static int tipc_getname(struct socket *sock, struct sockaddr *uaddr,
532 int *uaddr_len, int peer)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100533{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100534 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400535 struct tipc_sock *tsk = tipc_sk(sock->sk);
Ying Xue34747532015-01-09 15:27:10 +0800536 struct tipc_net *tn = net_generic(sock_net(sock->sk), tipc_net_id);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100537
Kulikov Vasiliy88f8a5e2010-10-31 07:10:32 +0000538 memset(addr, 0, sizeof(*addr));
Allan Stephens0c3141e2008-04-15 00:22:02 -0700539 if (peer) {
Allan Stephens2da59912008-07-14 22:43:32 -0700540 if ((sock->state != SS_CONNECTED) &&
541 ((peer != 2) || (sock->state != SS_DISCONNECTING)))
542 return -ENOTCONN;
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400543 addr->addr.id.ref = tsk_peer_port(tsk);
544 addr->addr.id.node = tsk_peer_node(tsk);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700545 } else {
Ying Xue07f6c4b2015-01-07 13:41:58 +0800546 addr->addr.id.ref = tsk->portid;
Ying Xue34747532015-01-09 15:27:10 +0800547 addr->addr.id.node = tn->own_addr;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700548 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100549
550 *uaddr_len = sizeof(*addr);
551 addr->addrtype = TIPC_ADDR_ID;
552 addr->family = AF_TIPC;
553 addr->scope = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100554 addr->addr.name.domain = 0;
555
Allan Stephens0c3141e2008-04-15 00:22:02 -0700556 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100557}
558
559/**
Ying Xue247f0f32014-02-18 16:06:46 +0800560 * tipc_poll - read and possibly block on pollmask
Per Lidenb97bf3f2006-01-02 19:04:38 +0100561 * @file: file structure associated with the socket
562 * @sock: socket for which to calculate the poll bits
563 * @wait: ???
564 *
Allan Stephens9b674e82008-03-26 16:48:21 -0700565 * Returns pollmask value
566 *
567 * COMMENTARY:
568 * It appears that the usual socket locking mechanisms are not useful here
569 * since the pollmask info is potentially out-of-date the moment this routine
570 * exits. TCP and other protocols seem to rely on higher level poll routines
571 * to handle any preventable race conditions, so TIPC will do the same ...
572 *
573 * TIPC sets the returned events as follows:
Allan Stephens9b674e82008-03-26 16:48:21 -0700574 *
Allan Stephensf662c072010-08-17 11:00:06 +0000575 * socket state flags set
576 * ------------ ---------
577 * unconnected no read flags
Erik Hugnec4fc2982012-10-16 16:47:06 +0200578 * POLLOUT if port is not congested
Allan Stephensf662c072010-08-17 11:00:06 +0000579 *
580 * connecting POLLIN/POLLRDNORM if ACK/NACK in rx queue
581 * no write flags
582 *
583 * connected POLLIN/POLLRDNORM if data in rx queue
584 * POLLOUT if port is not congested
585 *
586 * disconnecting POLLIN/POLLRDNORM/POLLHUP
587 * no write flags
588 *
589 * listening POLLIN if SYN in rx queue
590 * no write flags
591 *
592 * ready POLLIN/POLLRDNORM if data in rx queue
593 * [connectionless] POLLOUT (since port cannot be congested)
594 *
595 * IMPORTANT: The fact that a read or write operation is indicated does NOT
596 * imply that the operation will succeed, merely that it should be performed
597 * and will not block.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100598 */
Ying Xue247f0f32014-02-18 16:06:46 +0800599static unsigned int tipc_poll(struct file *file, struct socket *sock,
600 poll_table *wait)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100601{
Allan Stephens9b674e82008-03-26 16:48:21 -0700602 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400603 struct tipc_sock *tsk = tipc_sk(sk);
Allan Stephensf662c072010-08-17 11:00:06 +0000604 u32 mask = 0;
Allan Stephens9b674e82008-03-26 16:48:21 -0700605
Ying Xuef288bef2012-08-21 11:16:57 +0800606 sock_poll_wait(file, sk_sleep(sk), wait);
Allan Stephens9b674e82008-03-26 16:48:21 -0700607
Allan Stephensf662c072010-08-17 11:00:06 +0000608 switch ((int)sock->state) {
Erik Hugnec4fc2982012-10-16 16:47:06 +0200609 case SS_UNCONNECTED:
Jon Paul Maloy60120522014-06-25 20:41:42 -0500610 if (!tsk->link_cong)
Erik Hugnec4fc2982012-10-16 16:47:06 +0200611 mask |= POLLOUT;
612 break;
Allan Stephensf662c072010-08-17 11:00:06 +0000613 case SS_READY:
614 case SS_CONNECTED:
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400615 if (!tsk->link_cong && !tsk_conn_cong(tsk))
Allan Stephensf662c072010-08-17 11:00:06 +0000616 mask |= POLLOUT;
617 /* fall thru' */
618 case SS_CONNECTING:
619 case SS_LISTENING:
620 if (!skb_queue_empty(&sk->sk_receive_queue))
621 mask |= (POLLIN | POLLRDNORM);
622 break;
623 case SS_DISCONNECTING:
624 mask = (POLLIN | POLLRDNORM | POLLHUP);
625 break;
626 }
Allan Stephens9b674e82008-03-26 16:48:21 -0700627
628 return mask;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100629}
630
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400631/**
632 * tipc_sendmcast - send multicast message
633 * @sock: socket structure
634 * @seq: destination address
Al Viro562640f2014-11-15 01:13:43 -0500635 * @msg: message to send
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400636 * @dsz: total length of message data
637 * @timeo: timeout to wait for wakeup
638 *
639 * Called from function tipc_sendmsg(), which has done all sanity checks
640 * Returns the number of bytes sent on success, or errno
641 */
642static int tipc_sendmcast(struct socket *sock, struct tipc_name_seq *seq,
Al Viro562640f2014-11-15 01:13:43 -0500643 struct msghdr *msg, size_t dsz, long timeo)
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400644{
645 struct sock *sk = sock->sk;
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500646 struct tipc_sock *tsk = tipc_sk(sk);
Ying Xuef2f98002015-01-09 15:27:05 +0800647 struct net *net = sock_net(sk);
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500648 struct tipc_msg *mhdr = &tsk->phdr;
Parthasarathy Bhuvaraganf214fc42016-03-01 11:07:09 +0100649 struct sk_buff_head pktchain;
Al Virof25dcc72014-11-28 15:52:29 -0500650 struct iov_iter save = msg->msg_iter;
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400651 uint mtu;
652 int rc;
653
654 msg_set_type(mhdr, TIPC_MCAST_MSG);
655 msg_set_lookup_scope(mhdr, TIPC_CLUSTER_SCOPE);
656 msg_set_destport(mhdr, 0);
657 msg_set_destnode(mhdr, 0);
658 msg_set_nametype(mhdr, seq->type);
659 msg_set_namelower(mhdr, seq->lower);
660 msg_set_nameupper(mhdr, seq->upper);
661 msg_set_hdr_sz(mhdr, MCAST_H_SIZE);
662
Parthasarathy Bhuvaraganf214fc42016-03-01 11:07:09 +0100663 skb_queue_head_init(&pktchain);
664
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400665new_mtu:
Jon Paul Maloy959e1782015-10-22 08:51:43 -0400666 mtu = tipc_bcast_get_mtu(net);
Parthasarathy Bhuvaraganf214fc42016-03-01 11:07:09 +0100667 rc = tipc_msg_build(mhdr, msg, 0, dsz, mtu, &pktchain);
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400668 if (unlikely(rc < 0))
669 return rc;
670
671 do {
Parthasarathy Bhuvaraganf214fc42016-03-01 11:07:09 +0100672 rc = tipc_bcast_xmit(net, &pktchain);
Jon Paul Maloy22d85c72015-07-16 16:54:23 -0400673 if (likely(!rc))
674 return dsz;
675
676 if (rc == -ELINKCONG) {
677 tsk->link_cong = 1;
678 rc = tipc_wait_for_sndmsg(sock, &timeo);
679 if (!rc)
680 continue;
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400681 }
Parthasarathy Bhuvaraganf214fc42016-03-01 11:07:09 +0100682 __skb_queue_purge(&pktchain);
Al Virof25dcc72014-11-28 15:52:29 -0500683 if (rc == -EMSGSIZE) {
684 msg->msg_iter = save;
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400685 goto new_mtu;
Al Virof25dcc72014-11-28 15:52:29 -0500686 }
Jon Paul Maloy22d85c72015-07-16 16:54:23 -0400687 break;
688 } while (1);
Jon Paul Maloy0abd8ff2014-07-16 20:41:01 -0400689 return rc;
690}
691
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500692/**
693 * tipc_sk_mcast_rcv - Deliver multicast messages to all destination sockets
694 * @arrvq: queue with arriving messages, to be cloned after destination lookup
695 * @inputq: queue with cloned messages, delivered to socket after dest lookup
696 *
697 * Multi-threaded: parallel calls with reference to same queues may occur
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400698 */
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500699void tipc_sk_mcast_rcv(struct net *net, struct sk_buff_head *arrvq,
700 struct sk_buff_head *inputq)
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400701{
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500702 struct tipc_msg *msg;
Jon Paul Maloy3c724ac2015-02-05 08:36:43 -0500703 struct tipc_plist dports;
Jon Paul Maloy3c724ac2015-02-05 08:36:43 -0500704 u32 portid;
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400705 u32 scope = TIPC_CLUSTER_SCOPE;
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500706 struct sk_buff_head tmpq;
707 uint hsz;
708 struct sk_buff *skb, *_skb;
Jon Paul Maloy3c724ac2015-02-05 08:36:43 -0500709
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500710 __skb_queue_head_init(&tmpq);
Jon Paul Maloy3c724ac2015-02-05 08:36:43 -0500711 tipc_plist_init(&dports);
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400712
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500713 skb = tipc_skb_peek(arrvq, &inputq->lock);
714 for (; skb; skb = tipc_skb_peek(arrvq, &inputq->lock)) {
715 msg = buf_msg(skb);
716 hsz = skb_headroom(skb) + msg_hdr_sz(msg);
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400717
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500718 if (in_own_node(net, msg_orignode(msg)))
719 scope = TIPC_NODE_SCOPE;
720
721 /* Create destination port list and message clones: */
722 tipc_nametbl_mc_translate(net,
723 msg_nametype(msg), msg_namelower(msg),
724 msg_nameupper(msg), scope, &dports);
725 portid = tipc_plist_pop(&dports);
726 for (; portid; portid = tipc_plist_pop(&dports)) {
727 _skb = __pskb_copy(skb, hsz, GFP_ATOMIC);
728 if (_skb) {
729 msg_set_destport(buf_msg(_skb), portid);
730 __skb_queue_tail(&tmpq, _skb);
731 continue;
732 }
733 pr_warn("Failed to clone mcast rcv buffer\n");
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400734 }
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500735 /* Append to inputq if not already done by other thread */
736 spin_lock_bh(&inputq->lock);
737 if (skb_peek(arrvq) == skb) {
738 skb_queue_splice_tail_init(&tmpq, inputq);
739 kfree_skb(__skb_dequeue(arrvq));
740 }
741 spin_unlock_bh(&inputq->lock);
742 __skb_queue_purge(&tmpq);
743 kfree_skb(skb);
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400744 }
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500745 tipc_sk_rcv(net, inputq);
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400746}
747
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900748/**
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500749 * tipc_sk_proto_rcv - receive a connection mng protocol message
750 * @tsk: receiving socket
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -0400751 * @skb: pointer to message buffer.
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500752 */
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -0400753static void tipc_sk_proto_rcv(struct tipc_sock *tsk, struct sk_buff *skb,
754 struct sk_buff_head *xmitq)
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500755{
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -0400756 struct sock *sk = &tsk->sk;
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -0400757 u32 onode = tsk_own_node(tsk);
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -0400758 struct tipc_msg *hdr = buf_msg(skb);
759 int mtyp = msg_type(hdr);
Jon Paul Maloy10724cc2016-05-02 11:58:47 -0400760 bool conn_cong;
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -0400761
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500762 /* Ignore if connection cannot be validated: */
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -0400763 if (!tsk_peer_msg(tsk, hdr))
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500764 goto exit;
765
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400766 tsk->probing_state = TIPC_CONN_OK;
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500767
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -0400768 if (mtyp == CONN_PROBE) {
769 msg_set_type(hdr, CONN_PROBE_REPLY);
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -0400770 if (tipc_msg_reverse(onode, &skb, TIPC_OK))
771 __skb_queue_tail(xmitq, skb);
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -0400772 return;
773 } else if (mtyp == CONN_ACK) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400774 conn_cong = tsk_conn_cong(tsk);
Jon Paul Maloy10724cc2016-05-02 11:58:47 -0400775 tsk->snt_unacked -= msg_conn_ack(hdr);
776 if (tsk->peer_caps & TIPC_BLOCK_FLOWCTL)
777 tsk->snd_win = msg_adv_win(hdr);
Jon Paul Maloy60120522014-06-25 20:41:42 -0500778 if (conn_cong)
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -0400779 sk->sk_write_space(sk);
780 } else if (mtyp != CONN_PROBE_REPLY) {
781 pr_warn("Received unknown CONN_PROTO msg\n");
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500782 }
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500783exit:
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -0400784 kfree_skb(skb);
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500785}
786
Ying Xue3f405042014-01-17 09:50:05 +0800787static int tipc_wait_for_sndmsg(struct socket *sock, long *timeo_p)
788{
789 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400790 struct tipc_sock *tsk = tipc_sk(sk);
Ying Xue3f405042014-01-17 09:50:05 +0800791 DEFINE_WAIT(wait);
792 int done;
793
794 do {
795 int err = sock_error(sk);
796 if (err)
797 return err;
798 if (sock->state == SS_DISCONNECTING)
799 return -EPIPE;
800 if (!*timeo_p)
801 return -EAGAIN;
802 if (signal_pending(current))
803 return sock_intr_errno(*timeo_p);
804
805 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Jon Paul Maloy60120522014-06-25 20:41:42 -0500806 done = sk_wait_event(sk, timeo_p, !tsk->link_cong);
Ying Xue3f405042014-01-17 09:50:05 +0800807 finish_wait(sk_sleep(sk), &wait);
808 } while (!done);
809 return 0;
810}
811
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500812/**
Ying Xue247f0f32014-02-18 16:06:46 +0800813 * tipc_sendmsg - send message in connectionless manner
Per Lidenb97bf3f2006-01-02 19:04:38 +0100814 * @sock: socket structure
815 * @m: message to send
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500816 * @dsz: amount of user data to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900817 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100818 * Message must have an destination specified explicitly.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900819 * Used for SOCK_RDM and SOCK_DGRAM messages,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100820 * and for 'SYN' messages on SOCK_SEQPACKET and SOCK_STREAM connections.
821 * (Note: 'SYN+' is prohibited on SOCK_STREAM.)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900822 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100823 * Returns the number of bytes sent on success, or errno otherwise
824 */
Ying Xue1b784142015-03-02 15:37:48 +0800825static int tipc_sendmsg(struct socket *sock,
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500826 struct msghdr *m, size_t dsz)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100827{
Ying Xue39a02952015-03-02 15:37:47 +0800828 struct sock *sk = sock->sk;
829 int ret;
830
831 lock_sock(sk);
832 ret = __tipc_sendmsg(sock, m, dsz);
833 release_sock(sk);
834
835 return ret;
836}
837
838static int __tipc_sendmsg(struct socket *sock, struct msghdr *m, size_t dsz)
839{
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500840 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
Allan Stephens0c3141e2008-04-15 00:22:02 -0700841 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400842 struct tipc_sock *tsk = tipc_sk(sk);
Ying Xuef2f98002015-01-09 15:27:05 +0800843 struct net *net = sock_net(sk);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400844 struct tipc_msg *mhdr = &tsk->phdr;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500845 u32 dnode, dport;
Parthasarathy Bhuvaraganf214fc42016-03-01 11:07:09 +0100846 struct sk_buff_head pktchain;
Ying Xuea6ca1092014-11-26 11:41:55 +0800847 struct sk_buff *skb;
Erik Hugnef2f80362015-03-19 09:02:19 +0100848 struct tipc_name_seq *seq;
Al Virof25dcc72014-11-28 15:52:29 -0500849 struct iov_iter save;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500850 u32 mtu;
Ying Xue3f405042014-01-17 09:50:05 +0800851 long timeo;
Erik Hugne88b17b62014-12-03 14:44:44 +0100852 int rc;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100853
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500854 if (dsz > TIPC_MAX_USER_MSG_SIZE)
Allan Stephensc29c3f72010-04-20 17:58:24 -0400855 return -EMSGSIZE;
Erik Hugnef2f80362015-03-19 09:02:19 +0100856 if (unlikely(!dest)) {
857 if (tsk->connected && sock->state == SS_READY)
858 dest = &tsk->remote;
859 else
860 return -EDESTADDRREQ;
861 } else if (unlikely(m->msg_namelen < sizeof(*dest)) ||
862 dest->family != AF_TIPC) {
863 return -EINVAL;
864 }
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500865 if (unlikely(sock->state != SS_READY)) {
Ying Xue39a02952015-03-02 15:37:47 +0800866 if (sock->state == SS_LISTENING)
867 return -EPIPE;
868 if (sock->state != SS_UNCONNECTED)
869 return -EISCONN;
870 if (tsk->published)
871 return -EOPNOTSUPP;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700872 if (dest->addrtype == TIPC_ADDR_NAME) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400873 tsk->conn_type = dest->addr.name.name.type;
874 tsk->conn_instance = dest->addr.name.name.instance;
Allan Stephens0c3141e2008-04-15 00:22:02 -0700875 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100876 }
Erik Hugnef2f80362015-03-19 09:02:19 +0100877 seq = &dest->addr.nameseq;
Ying Xue3f405042014-01-17 09:50:05 +0800878 timeo = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500879
880 if (dest->addrtype == TIPC_ADDR_MCAST) {
Ying Xue39a02952015-03-02 15:37:47 +0800881 return tipc_sendmcast(sock, seq, m, dsz, timeo);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500882 } else if (dest->addrtype == TIPC_ADDR_NAME) {
883 u32 type = dest->addr.name.name.type;
884 u32 inst = dest->addr.name.name.instance;
885 u32 domain = dest->addr.name.domain;
886
887 dnode = domain;
888 msg_set_type(mhdr, TIPC_NAMED_MSG);
889 msg_set_hdr_sz(mhdr, NAMED_H_SIZE);
890 msg_set_nametype(mhdr, type);
891 msg_set_nameinst(mhdr, inst);
892 msg_set_lookup_scope(mhdr, tipc_addr_scope(domain));
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800893 dport = tipc_nametbl_translate(net, type, inst, &dnode);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500894 msg_set_destnode(mhdr, dnode);
895 msg_set_destport(mhdr, dport);
Ying Xue39a02952015-03-02 15:37:47 +0800896 if (unlikely(!dport && !dnode))
897 return -EHOSTUNREACH;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500898 } else if (dest->addrtype == TIPC_ADDR_ID) {
899 dnode = dest->addr.id.node;
900 msg_set_type(mhdr, TIPC_DIRECT_MSG);
901 msg_set_lookup_scope(mhdr, 0);
902 msg_set_destnode(mhdr, dnode);
903 msg_set_destport(mhdr, dest->addr.id.ref);
904 msg_set_hdr_sz(mhdr, BASIC_H_SIZE);
905 }
906
Parthasarathy Bhuvaraganf214fc42016-03-01 11:07:09 +0100907 skb_queue_head_init(&pktchain);
Al Virof25dcc72014-11-28 15:52:29 -0500908 save = m->msg_iter;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500909new_mtu:
Ying Xuef2f98002015-01-09 15:27:05 +0800910 mtu = tipc_node_get_mtu(net, dnode, tsk->portid);
Parthasarathy Bhuvaraganf214fc42016-03-01 11:07:09 +0100911 rc = tipc_msg_build(mhdr, m, 0, dsz, mtu, &pktchain);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500912 if (rc < 0)
Ying Xue39a02952015-03-02 15:37:47 +0800913 return rc;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500914
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900915 do {
Parthasarathy Bhuvaraganf214fc42016-03-01 11:07:09 +0100916 skb = skb_peek(&pktchain);
Ying Xuea6ca1092014-11-26 11:41:55 +0800917 TIPC_SKB_CB(skb)->wakeup_pending = tsk->link_cong;
Parthasarathy Bhuvaraganf214fc42016-03-01 11:07:09 +0100918 rc = tipc_node_xmit(net, &pktchain, dnode, tsk->portid);
Jon Paul Maloy22d85c72015-07-16 16:54:23 -0400919 if (likely(!rc)) {
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500920 if (sock->state != SS_READY)
Allan Stephens0c3141e2008-04-15 00:22:02 -0700921 sock->state = SS_CONNECTING;
Jon Paul Maloy22d85c72015-07-16 16:54:23 -0400922 return dsz;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900923 }
Jon Paul Maloy22d85c72015-07-16 16:54:23 -0400924 if (rc == -ELINKCONG) {
925 tsk->link_cong = 1;
926 rc = tipc_wait_for_sndmsg(sock, &timeo);
927 if (!rc)
928 continue;
929 }
Parthasarathy Bhuvaraganf214fc42016-03-01 11:07:09 +0100930 __skb_queue_purge(&pktchain);
Al Virof25dcc72014-11-28 15:52:29 -0500931 if (rc == -EMSGSIZE) {
932 m->msg_iter = save;
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500933 goto new_mtu;
Al Virof25dcc72014-11-28 15:52:29 -0500934 }
Jon Paul Maloy22d85c72015-07-16 16:54:23 -0400935 break;
936 } while (1);
Jon Paul Maloye2dafe82014-06-25 20:41:37 -0500937
938 return rc;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100939}
940
Ying Xue391a6dd2014-01-17 09:50:06 +0800941static int tipc_wait_for_sndpkt(struct socket *sock, long *timeo_p)
942{
943 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400944 struct tipc_sock *tsk = tipc_sk(sk);
Ying Xue391a6dd2014-01-17 09:50:06 +0800945 DEFINE_WAIT(wait);
946 int done;
947
948 do {
949 int err = sock_error(sk);
950 if (err)
951 return err;
952 if (sock->state == SS_DISCONNECTING)
953 return -EPIPE;
954 else if (sock->state != SS_CONNECTED)
955 return -ENOTCONN;
956 if (!*timeo_p)
957 return -EAGAIN;
958 if (signal_pending(current))
959 return sock_intr_errno(*timeo_p);
960
961 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
962 done = sk_wait_event(sk, timeo_p,
Jon Paul Maloy60120522014-06-25 20:41:42 -0500963 (!tsk->link_cong &&
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400964 !tsk_conn_cong(tsk)) ||
965 !tsk->connected);
Ying Xue391a6dd2014-01-17 09:50:06 +0800966 finish_wait(sk_sleep(sk), &wait);
967 } while (!done);
968 return 0;
969}
970
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900971/**
Ying Xue247f0f32014-02-18 16:06:46 +0800972 * tipc_send_stream - send stream-oriented data
Per Lidenb97bf3f2006-01-02 19:04:38 +0100973 * @sock: socket structure
974 * @m: data to send
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -0500975 * @dsz: total length of data to be transmitted
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900976 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100977 * Used for SOCK_STREAM data.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900978 *
979 * Returns the number of bytes sent on success (or partial success),
Allan Stephens1303e8f2006-06-25 23:46:50 -0700980 * or errno if no data sent
Per Lidenb97bf3f2006-01-02 19:04:38 +0100981 */
Ying Xue1b784142015-03-02 15:37:48 +0800982static int tipc_send_stream(struct socket *sock, struct msghdr *m, size_t dsz)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100983{
Allan Stephens0c3141e2008-04-15 00:22:02 -0700984 struct sock *sk = sock->sk;
Ying Xue39a02952015-03-02 15:37:47 +0800985 int ret;
986
987 lock_sock(sk);
988 ret = __tipc_send_stream(sock, m, dsz);
989 release_sock(sk);
990
991 return ret;
992}
993
994static int __tipc_send_stream(struct socket *sock, struct msghdr *m, size_t dsz)
995{
996 struct sock *sk = sock->sk;
Ying Xuef2f98002015-01-09 15:27:05 +0800997 struct net *net = sock_net(sk);
Jon Paul Maloy58ed9442014-03-12 11:31:12 -0400998 struct tipc_sock *tsk = tipc_sk(sk);
Jon Paul Maloy301bae52014-08-22 18:09:20 -0400999 struct tipc_msg *mhdr = &tsk->phdr;
Parthasarathy Bhuvaraganf214fc42016-03-01 11:07:09 +01001000 struct sk_buff_head pktchain;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001001 DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name);
Ying Xue07f6c4b2015-01-07 13:41:58 +08001002 u32 portid = tsk->portid;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001003 int rc = -EINVAL;
1004 long timeo;
1005 u32 dnode;
1006 uint mtu, send, sent = 0;
Al Virof25dcc72014-11-28 15:52:29 -05001007 struct iov_iter save;
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001008 int hlen = MIN_H_SIZE;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001009
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001010 /* Handle implied connection establishment */
1011 if (unlikely(dest)) {
Ying Xue39a02952015-03-02 15:37:47 +08001012 rc = __tipc_sendmsg(sock, m, dsz);
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001013 hlen = msg_hdr_sz(mhdr);
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001014 if (dsz && (dsz == rc))
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001015 tsk->snt_unacked = tsk_inc(tsk, dsz + hlen);
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001016 return rc;
1017 }
1018 if (dsz > (uint)INT_MAX)
1019 return -EMSGSIZE;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001020
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001021 if (unlikely(sock->state != SS_CONNECTED)) {
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001022 if (sock->state == SS_DISCONNECTING)
Ying Xue39a02952015-03-02 15:37:47 +08001023 return -EPIPE;
wangweidongb0555972013-12-27 10:09:39 +08001024 else
Ying Xue39a02952015-03-02 15:37:47 +08001025 return -ENOTCONN;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001026 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001027
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001028 timeo = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT);
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001029 dnode = tsk_peer_node(tsk);
Parthasarathy Bhuvaraganf214fc42016-03-01 11:07:09 +01001030 skb_queue_head_init(&pktchain);
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001031
1032next:
Al Virof25dcc72014-11-28 15:52:29 -05001033 save = m->msg_iter;
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001034 mtu = tsk->max_pkt;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001035 send = min_t(uint, dsz - sent, TIPC_MAX_USER_MSG_SIZE);
Parthasarathy Bhuvaraganf214fc42016-03-01 11:07:09 +01001036 rc = tipc_msg_build(mhdr, m, sent, send, mtu, &pktchain);
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001037 if (unlikely(rc < 0))
Ying Xue39a02952015-03-02 15:37:47 +08001038 return rc;
Parthasarathy Bhuvaraganf214fc42016-03-01 11:07:09 +01001039
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001040 do {
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001041 if (likely(!tsk_conn_cong(tsk))) {
Parthasarathy Bhuvaraganf214fc42016-03-01 11:07:09 +01001042 rc = tipc_node_xmit(net, &pktchain, dnode, portid);
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001043 if (likely(!rc)) {
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001044 tsk->snt_unacked += tsk_inc(tsk, send + hlen);
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001045 sent += send;
1046 if (sent == dsz)
Jon Paul Maloy22d85c72015-07-16 16:54:23 -04001047 return dsz;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001048 goto next;
Allan Stephens1303e8f2006-06-25 23:46:50 -07001049 }
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001050 if (rc == -EMSGSIZE) {
Parthasarathy Bhuvaraganf214fc42016-03-01 11:07:09 +01001051 __skb_queue_purge(&pktchain);
Ying Xuef2f98002015-01-09 15:27:05 +08001052 tsk->max_pkt = tipc_node_get_mtu(net, dnode,
1053 portid);
Al Virof25dcc72014-11-28 15:52:29 -05001054 m->msg_iter = save;
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001055 goto next;
1056 }
1057 if (rc != -ELINKCONG)
1058 break;
Jon Paul Maloy22d85c72015-07-16 16:54:23 -04001059
Jon Paul Maloy50100a52014-08-22 18:09:07 -04001060 tsk->link_cong = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001061 }
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001062 rc = tipc_wait_for_sndpkt(sock, &timeo);
1063 } while (!rc);
Ying Xue39a02952015-03-02 15:37:47 +08001064
Parthasarathy Bhuvaraganf214fc42016-03-01 11:07:09 +01001065 __skb_queue_purge(&pktchain);
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001066 return sent ? sent : rc;
1067}
1068
1069/**
1070 * tipc_send_packet - send a connection-oriented message
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001071 * @sock: socket structure
1072 * @m: message to send
1073 * @dsz: length of data to be transmitted
1074 *
1075 * Used for SOCK_SEQPACKET messages.
1076 *
1077 * Returns the number of bytes sent on success, or errno otherwise
1078 */
Ying Xue1b784142015-03-02 15:37:48 +08001079static int tipc_send_packet(struct socket *sock, struct msghdr *m, size_t dsz)
Jon Paul Maloy4ccfe5e2014-06-25 20:41:38 -05001080{
1081 if (dsz > TIPC_MAX_USER_MSG_SIZE)
1082 return -EMSGSIZE;
1083
Ying Xue1b784142015-03-02 15:37:48 +08001084 return tipc_send_stream(sock, m, dsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001085}
1086
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001087/* tipc_sk_finish_conn - complete the setup of a connection
Per Lidenb97bf3f2006-01-02 19:04:38 +01001088 */
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001089static void tipc_sk_finish_conn(struct tipc_sock *tsk, u32 peer_port,
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001090 u32 peer_node)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001091{
Ying Xue3721e9c2015-01-13 17:07:48 +08001092 struct sock *sk = &tsk->sk;
1093 struct net *net = sock_net(sk);
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001094 struct tipc_msg *msg = &tsk->phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001095
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001096 msg_set_destnode(msg, peer_node);
1097 msg_set_destport(msg, peer_port);
1098 msg_set_type(msg, TIPC_CONN_MSG);
1099 msg_set_lookup_scope(msg, 0);
1100 msg_set_hdr_sz(msg, SHORT_H_SIZE);
Jon Paul Maloyf9fef182014-03-12 11:31:08 -04001101
Ying Xue2f55c432015-01-09 15:27:00 +08001102 tsk->probing_intv = CONN_PROBING_INTERVAL;
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001103 tsk->probing_state = TIPC_CONN_OK;
1104 tsk->connected = 1;
Ying Xue3721e9c2015-01-13 17:07:48 +08001105 sk_reset_timer(sk, &sk->sk_timer, jiffies + tsk->probing_intv);
Ying Xuef2f98002015-01-09 15:27:05 +08001106 tipc_node_add_conn(net, peer_node, tsk->portid, peer_port);
1107 tsk->max_pkt = tipc_node_get_mtu(net, peer_node, tsk->portid);
Jon Paul Maloy60020e12016-05-02 11:58:46 -04001108 tsk->peer_caps = tipc_node_get_capabilities(net, peer_node);
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001109 if (tsk->peer_caps & TIPC_BLOCK_FLOWCTL)
1110 return;
1111
1112 /* Fall back to message based flow control */
1113 tsk->rcv_win = FLOWCTL_MSG_WIN;
1114 tsk->snd_win = FLOWCTL_MSG_WIN;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001115}
1116
1117/**
1118 * set_orig_addr - capture sender's address for received message
1119 * @m: descriptor for message info
1120 * @msg: received message header
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001121 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001122 * Note: Address is not captured if not requested by receiver.
1123 */
Sam Ravnborg05790c62006-03-20 22:37:04 -08001124static void set_orig_addr(struct msghdr *m, struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001125{
Steffen Hurrle342dfc32014-01-17 22:53:15 +01001126 DECLARE_SOCKADDR(struct sockaddr_tipc *, addr, m->msg_name);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001127
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001128 if (addr) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001129 addr->family = AF_TIPC;
1130 addr->addrtype = TIPC_ADDR_ID;
Mathias Krause60085c32013-04-07 01:52:00 +00001131 memset(&addr->addr, 0, sizeof(addr->addr));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001132 addr->addr.id.ref = msg_origport(msg);
1133 addr->addr.id.node = msg_orignode(msg);
Allan Stephens0e659672010-12-31 18:59:32 +00001134 addr->addr.name.domain = 0; /* could leave uninitialized */
1135 addr->scope = 0; /* could leave uninitialized */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001136 m->msg_namelen = sizeof(struct sockaddr_tipc);
1137 }
1138}
1139
1140/**
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001141 * tipc_sk_anc_data_recv - optionally capture ancillary data for received message
Per Lidenb97bf3f2006-01-02 19:04:38 +01001142 * @m: descriptor for message info
1143 * @msg: received message header
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001144 * @tsk: TIPC port associated with message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001145 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001146 * Note: Ancillary data is not captured if not requested by receiver.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001147 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001148 * Returns 0 if successful, otherwise errno
1149 */
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001150static int tipc_sk_anc_data_recv(struct msghdr *m, struct tipc_msg *msg,
1151 struct tipc_sock *tsk)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001152{
1153 u32 anc_data[3];
1154 u32 err;
1155 u32 dest_type;
Allan Stephens3546c752006-06-25 23:45:24 -07001156 int has_name;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001157 int res;
1158
1159 if (likely(m->msg_controllen == 0))
1160 return 0;
1161
1162 /* Optionally capture errored message object(s) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001163 err = msg ? msg_errcode(msg) : 0;
1164 if (unlikely(err)) {
1165 anc_data[0] = err;
1166 anc_data[1] = msg_data_sz(msg);
Allan Stephens2db99832010-12-31 18:59:33 +00001167 res = put_cmsg(m, SOL_TIPC, TIPC_ERRINFO, 8, anc_data);
1168 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001169 return res;
Allan Stephens2db99832010-12-31 18:59:33 +00001170 if (anc_data[1]) {
1171 res = put_cmsg(m, SOL_TIPC, TIPC_RETDATA, anc_data[1],
1172 msg_data(msg));
1173 if (res)
1174 return res;
1175 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001176 }
1177
1178 /* Optionally capture message destination object */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001179 dest_type = msg ? msg_type(msg) : TIPC_DIRECT_MSG;
1180 switch (dest_type) {
1181 case TIPC_NAMED_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -07001182 has_name = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001183 anc_data[0] = msg_nametype(msg);
1184 anc_data[1] = msg_namelower(msg);
1185 anc_data[2] = msg_namelower(msg);
1186 break;
1187 case TIPC_MCAST_MSG:
Allan Stephens3546c752006-06-25 23:45:24 -07001188 has_name = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001189 anc_data[0] = msg_nametype(msg);
1190 anc_data[1] = msg_namelower(msg);
1191 anc_data[2] = msg_nameupper(msg);
1192 break;
1193 case TIPC_CONN_MSG:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001194 has_name = (tsk->conn_type != 0);
1195 anc_data[0] = tsk->conn_type;
1196 anc_data[1] = tsk->conn_instance;
1197 anc_data[2] = tsk->conn_instance;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001198 break;
1199 default:
Allan Stephens3546c752006-06-25 23:45:24 -07001200 has_name = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001201 }
Allan Stephens2db99832010-12-31 18:59:33 +00001202 if (has_name) {
1203 res = put_cmsg(m, SOL_TIPC, TIPC_DESTNAME, 12, anc_data);
1204 if (res)
1205 return res;
1206 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001207
1208 return 0;
1209}
1210
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001211static void tipc_sk_send_ack(struct tipc_sock *tsk)
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001212{
Ying Xuef2f98002015-01-09 15:27:05 +08001213 struct net *net = sock_net(&tsk->sk);
Ying Xuea6ca1092014-11-26 11:41:55 +08001214 struct sk_buff *skb = NULL;
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001215 struct tipc_msg *msg;
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001216 u32 peer_port = tsk_peer_port(tsk);
1217 u32 dnode = tsk_peer_node(tsk);
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001218
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001219 if (!tsk->connected)
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001220 return;
Jon Paul Maloyc5898632015-02-05 08:36:36 -05001221 skb = tipc_msg_create(CONN_MANAGER, CONN_ACK, INT_H_SIZE, 0,
1222 dnode, tsk_own_node(tsk), peer_port,
1223 tsk->portid, TIPC_OK);
Ying Xuea6ca1092014-11-26 11:41:55 +08001224 if (!skb)
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001225 return;
Ying Xuea6ca1092014-11-26 11:41:55 +08001226 msg = buf_msg(skb);
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001227 msg_set_conn_ack(msg, tsk->rcv_unacked);
1228 tsk->rcv_unacked = 0;
1229
1230 /* Adjust to and advertize the correct window limit */
1231 if (tsk->peer_caps & TIPC_BLOCK_FLOWCTL) {
1232 tsk->rcv_win = tsk_adv_blocks(tsk->sk.sk_rcvbuf);
1233 msg_set_adv_win(msg, tsk->rcv_win);
1234 }
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -04001235 tipc_node_xmit_skb(net, skb, dnode, msg_link_selector(msg));
Jon Paul Maloy739f5e42014-08-22 18:09:12 -04001236}
1237
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001238static int tipc_wait_for_rcvmsg(struct socket *sock, long *timeop)
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001239{
1240 struct sock *sk = sock->sk;
1241 DEFINE_WAIT(wait);
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001242 long timeo = *timeop;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001243 int err;
1244
1245 for (;;) {
1246 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Ying Xuefe8e4642014-03-06 14:40:18 +01001247 if (timeo && skb_queue_empty(&sk->sk_receive_queue)) {
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001248 if (sock->state == SS_DISCONNECTING) {
1249 err = -ENOTCONN;
1250 break;
1251 }
1252 release_sock(sk);
1253 timeo = schedule_timeout(timeo);
1254 lock_sock(sk);
1255 }
1256 err = 0;
1257 if (!skb_queue_empty(&sk->sk_receive_queue))
1258 break;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001259 err = -EAGAIN;
1260 if (!timeo)
1261 break;
Erik Hugne143fe222015-03-09 10:43:42 +01001262 err = sock_intr_errno(timeo);
1263 if (signal_pending(current))
1264 break;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001265 }
1266 finish_wait(sk_sleep(sk), &wait);
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001267 *timeop = timeo;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001268 return err;
1269}
1270
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001271/**
Ying Xue247f0f32014-02-18 16:06:46 +08001272 * tipc_recvmsg - receive packet-oriented message
Per Lidenb97bf3f2006-01-02 19:04:38 +01001273 * @m: descriptor for message info
1274 * @buf_len: total size of user buffer area
1275 * @flags: receive flags
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001276 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001277 * Used for SOCK_DGRAM, SOCK_RDM, and SOCK_SEQPACKET messages.
1278 * If the complete message doesn't fit in user area, truncate it.
1279 *
1280 * Returns size of returned message data, errno otherwise
1281 */
Ying Xue1b784142015-03-02 15:37:48 +08001282static int tipc_recvmsg(struct socket *sock, struct msghdr *m, size_t buf_len,
1283 int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001284{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001285 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001286 struct tipc_sock *tsk = tipc_sk(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001287 struct sk_buff *buf;
1288 struct tipc_msg *msg;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001289 long timeo;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001290 unsigned int sz;
1291 u32 err;
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001292 int res, hlen;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001293
Allan Stephens0c3141e2008-04-15 00:22:02 -07001294 /* Catch invalid receive requests */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001295 if (unlikely(!buf_len))
1296 return -EINVAL;
1297
Allan Stephens0c3141e2008-04-15 00:22:02 -07001298 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001299
Allan Stephens0c3141e2008-04-15 00:22:02 -07001300 if (unlikely(sock->state == SS_UNCONNECTED)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001301 res = -ENOTCONN;
1302 goto exit;
1303 }
1304
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001305 timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001306restart:
Per Lidenb97bf3f2006-01-02 19:04:38 +01001307
Allan Stephens0c3141e2008-04-15 00:22:02 -07001308 /* Look for a message in receive queue; wait if necessary */
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001309 res = tipc_wait_for_rcvmsg(sock, &timeo);
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001310 if (res)
1311 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001312
1313 /* Look at first message in receive queue */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001314 buf = skb_peek(&sk->sk_receive_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001315 msg = buf_msg(buf);
1316 sz = msg_data_sz(msg);
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001317 hlen = msg_hdr_sz(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001318 err = msg_errcode(msg);
1319
Per Lidenb97bf3f2006-01-02 19:04:38 +01001320 /* Discard an empty non-errored message & try again */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001321 if ((!sz) && (!err)) {
Jon Paul Maloy2e84c602014-08-22 18:09:18 -04001322 tsk_advance_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001323 goto restart;
1324 }
1325
1326 /* Capture sender's address (optional) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001327 set_orig_addr(m, msg);
1328
1329 /* Capture ancillary data (optional) */
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001330 res = tipc_sk_anc_data_recv(m, msg, tsk);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001331 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001332 goto exit;
1333
1334 /* Capture message data (if valid) & compute return value (always) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001335 if (!err) {
1336 if (unlikely(buf_len < sz)) {
1337 sz = buf_len;
1338 m->msg_flags |= MSG_TRUNC;
1339 }
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001340 res = skb_copy_datagram_msg(buf, hlen, m, sz);
Allan Stephens0232fd02011-02-21 09:45:40 -05001341 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001342 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001343 res = sz;
1344 } else {
1345 if ((sock->state == SS_READY) ||
1346 ((err == TIPC_CONN_SHUTDOWN) || m->msg_control))
1347 res = 0;
1348 else
1349 res = -ECONNRESET;
1350 }
1351
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001352 if (unlikely(flags & MSG_PEEK))
1353 goto exit;
1354
1355 if (likely(sock->state != SS_READY)) {
1356 tsk->rcv_unacked += tsk_inc(tsk, hlen + sz);
1357 if (unlikely(tsk->rcv_unacked >= (tsk->rcv_win / 4)))
1358 tipc_sk_send_ack(tsk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001359 }
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001360 tsk_advance_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001361exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001362 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001363 return res;
1364}
1365
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001366/**
Ying Xue247f0f32014-02-18 16:06:46 +08001367 * tipc_recv_stream - receive stream-oriented data
Per Lidenb97bf3f2006-01-02 19:04:38 +01001368 * @m: descriptor for message info
1369 * @buf_len: total size of user buffer area
1370 * @flags: receive flags
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001371 *
1372 * Used for SOCK_STREAM messages only. If not enough data is available
Per Lidenb97bf3f2006-01-02 19:04:38 +01001373 * will optionally wait for more; never truncates data.
1374 *
1375 * Returns size of returned message data, errno otherwise
1376 */
Ying Xue1b784142015-03-02 15:37:48 +08001377static int tipc_recv_stream(struct socket *sock, struct msghdr *m,
1378 size_t buf_len, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001379{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001380 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001381 struct tipc_sock *tsk = tipc_sk(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001382 struct sk_buff *buf;
1383 struct tipc_msg *msg;
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001384 long timeo;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001385 unsigned int sz;
Florian Westphal3720d402010-08-17 11:00:04 +00001386 int sz_to_copy, target, needed;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001387 int sz_copied = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001388 u32 err;
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001389 int res = 0, hlen;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001390
1391 /* Catch invalid receive attempts */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001392 if (unlikely(!buf_len))
1393 return -EINVAL;
1394
Allan Stephens0c3141e2008-04-15 00:22:02 -07001395 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001396
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001397 if (unlikely(sock->state == SS_UNCONNECTED)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001398 res = -ENOTCONN;
1399 goto exit;
1400 }
1401
Florian Westphal3720d402010-08-17 11:00:04 +00001402 target = sock_rcvlowat(sk, flags & MSG_WAITALL, buf_len);
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001403 timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
Paul Gortmaker617d3c72012-04-30 15:29:02 -04001404
Allan Stephens0c3141e2008-04-15 00:22:02 -07001405restart:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001406 /* Look for a message in receive queue; wait if necessary */
Arnaldo Carvalho de Melo85d3fc92014-05-23 15:55:12 -04001407 res = tipc_wait_for_rcvmsg(sock, &timeo);
Ying Xue9bbb4ec2014-01-17 09:50:07 +08001408 if (res)
1409 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001410
1411 /* Look at first message in receive queue */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001412 buf = skb_peek(&sk->sk_receive_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001413 msg = buf_msg(buf);
1414 sz = msg_data_sz(msg);
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001415 hlen = msg_hdr_sz(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001416 err = msg_errcode(msg);
1417
1418 /* Discard an empty non-errored message & try again */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001419 if ((!sz) && (!err)) {
Jon Paul Maloy2e84c602014-08-22 18:09:18 -04001420 tsk_advance_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001421 goto restart;
1422 }
1423
1424 /* Optionally capture sender's address & ancillary data of first msg */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001425 if (sz_copied == 0) {
1426 set_orig_addr(m, msg);
Jon Paul Maloy301bae52014-08-22 18:09:20 -04001427 res = tipc_sk_anc_data_recv(m, msg, tsk);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001428 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001429 goto exit;
1430 }
1431
1432 /* Capture message data (if valid) & compute return value (always) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001433 if (!err) {
Allan Stephens0232fd02011-02-21 09:45:40 -05001434 u32 offset = (u32)(unsigned long)(TIPC_SKB_CB(buf)->handle);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001435
Allan Stephens0232fd02011-02-21 09:45:40 -05001436 sz -= offset;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001437 needed = (buf_len - sz_copied);
1438 sz_to_copy = (sz <= needed) ? sz : needed;
Allan Stephens0232fd02011-02-21 09:45:40 -05001439
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001440 res = skb_copy_datagram_msg(buf, hlen + offset, m, sz_to_copy);
Allan Stephens0232fd02011-02-21 09:45:40 -05001441 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001442 goto exit;
Allan Stephens0232fd02011-02-21 09:45:40 -05001443
Per Lidenb97bf3f2006-01-02 19:04:38 +01001444 sz_copied += sz_to_copy;
1445
1446 if (sz_to_copy < sz) {
1447 if (!(flags & MSG_PEEK))
Allan Stephens0232fd02011-02-21 09:45:40 -05001448 TIPC_SKB_CB(buf)->handle =
1449 (void *)(unsigned long)(offset + sz_to_copy);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001450 goto exit;
1451 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001452 } else {
1453 if (sz_copied != 0)
1454 goto exit; /* can't add error msg to valid data */
1455
1456 if ((err == TIPC_CONN_SHUTDOWN) || m->msg_control)
1457 res = 0;
1458 else
1459 res = -ECONNRESET;
1460 }
1461
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001462 if (unlikely(flags & MSG_PEEK))
1463 goto exit;
1464
1465 tsk->rcv_unacked += tsk_inc(tsk, hlen + sz);
1466 if (unlikely(tsk->rcv_unacked >= (tsk->rcv_win / 4)))
1467 tipc_sk_send_ack(tsk);
1468 tsk_advance_rx_queue(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001469
1470 /* Loop around if more data is required */
Joe Perchesf64f9e72009-11-29 16:55:45 -08001471 if ((sz_copied < buf_len) && /* didn't get all requested data */
1472 (!skb_queue_empty(&sk->sk_receive_queue) ||
Florian Westphal3720d402010-08-17 11:00:04 +00001473 (sz_copied < target)) && /* and more is ready or required */
Joe Perchesf64f9e72009-11-29 16:55:45 -08001474 (!err)) /* and haven't reached a FIN */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001475 goto restart;
1476
1477exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07001478 release_sock(sk);
Allan Stephensa3b0a5a2006-06-25 23:48:22 -07001479 return sz_copied ? sz_copied : res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001480}
1481
1482/**
Ying Xuef288bef2012-08-21 11:16:57 +08001483 * tipc_write_space - wake up thread if port congestion is released
1484 * @sk: socket
1485 */
1486static void tipc_write_space(struct sock *sk)
1487{
1488 struct socket_wq *wq;
1489
1490 rcu_read_lock();
1491 wq = rcu_dereference(sk->sk_wq);
Herbert Xu1ce0bf52015-11-26 13:55:39 +08001492 if (skwq_has_sleeper(wq))
Ying Xuef288bef2012-08-21 11:16:57 +08001493 wake_up_interruptible_sync_poll(&wq->wait, POLLOUT |
1494 POLLWRNORM | POLLWRBAND);
1495 rcu_read_unlock();
1496}
1497
1498/**
1499 * tipc_data_ready - wake up threads to indicate messages have been received
1500 * @sk: socket
1501 * @len: the length of messages
1502 */
David S. Miller676d2362014-04-11 16:15:36 -04001503static void tipc_data_ready(struct sock *sk)
Ying Xuef288bef2012-08-21 11:16:57 +08001504{
1505 struct socket_wq *wq;
1506
1507 rcu_read_lock();
1508 wq = rcu_dereference(sk->sk_wq);
Herbert Xu1ce0bf52015-11-26 13:55:39 +08001509 if (skwq_has_sleeper(wq))
Ying Xuef288bef2012-08-21 11:16:57 +08001510 wake_up_interruptible_sync_poll(&wq->wait, POLLIN |
1511 POLLRDNORM | POLLRDBAND);
1512 rcu_read_unlock();
1513}
1514
Ying Xuef4195d12015-11-22 15:46:05 +08001515static void tipc_sock_destruct(struct sock *sk)
1516{
1517 __skb_queue_purge(&sk->sk_receive_queue);
1518}
1519
Ying Xuef288bef2012-08-21 11:16:57 +08001520/**
Ying Xue7e6c1312012-11-29 18:39:14 -05001521 * filter_connect - Handle all incoming messages for a connection-based socket
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001522 * @tsk: TIPC socket
Jon Paul Maloy1186adf2015-02-05 08:36:37 -05001523 * @skb: pointer to message buffer. Set to NULL if buffer is consumed
Ying Xue7e6c1312012-11-29 18:39:14 -05001524 *
Jon Paul Maloycda36962015-07-22 10:11:20 -04001525 * Returns true if everything ok, false otherwise
Ying Xue7e6c1312012-11-29 18:39:14 -05001526 */
Jon Paul Maloycda36962015-07-22 10:11:20 -04001527static bool filter_connect(struct tipc_sock *tsk, struct sk_buff *skb)
Ying Xue7e6c1312012-11-29 18:39:14 -05001528{
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001529 struct sock *sk = &tsk->sk;
Ying Xuef2f98002015-01-09 15:27:05 +08001530 struct net *net = sock_net(sk);
Jon Paul Maloy8826cde2014-03-12 11:31:09 -04001531 struct socket *sock = sk->sk_socket;
Jon Paul Maloycda36962015-07-22 10:11:20 -04001532 struct tipc_msg *hdr = buf_msg(skb);
Ying Xue7e6c1312012-11-29 18:39:14 -05001533
Jon Paul Maloycda36962015-07-22 10:11:20 -04001534 if (unlikely(msg_mcast(hdr)))
1535 return false;
Ying Xue7e6c1312012-11-29 18:39:14 -05001536
1537 switch ((int)sock->state) {
1538 case SS_CONNECTED:
Jon Paul Maloycda36962015-07-22 10:11:20 -04001539
Ying Xue7e6c1312012-11-29 18:39:14 -05001540 /* Accept only connection-based messages sent by peer */
Jon Paul Maloycda36962015-07-22 10:11:20 -04001541 if (unlikely(!tsk_peer_msg(tsk, hdr)))
1542 return false;
1543
1544 if (unlikely(msg_errcode(hdr))) {
1545 sock->state = SS_DISCONNECTING;
1546 tsk->connected = 0;
1547 /* Let timer expire on it's own */
1548 tipc_node_remove_conn(net, tsk_peer_node(tsk),
1549 tsk->portid);
Ying Xue7e6c1312012-11-29 18:39:14 -05001550 }
Jon Paul Maloycda36962015-07-22 10:11:20 -04001551 return true;
1552
Ying Xue7e6c1312012-11-29 18:39:14 -05001553 case SS_CONNECTING:
Jon Paul Maloycda36962015-07-22 10:11:20 -04001554
Ying Xue7e6c1312012-11-29 18:39:14 -05001555 /* Accept only ACK or NACK message */
Jon Paul Maloycda36962015-07-22 10:11:20 -04001556 if (unlikely(!msg_connected(hdr)))
1557 return false;
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001558
Jon Paul Maloycda36962015-07-22 10:11:20 -04001559 if (unlikely(msg_errcode(hdr))) {
Ying Xue584d24b2012-11-29 18:51:19 -05001560 sock->state = SS_DISCONNECTING;
Erik Hugne2c8d8512013-08-28 09:29:58 +02001561 sk->sk_err = ECONNREFUSED;
Jon Paul Maloycda36962015-07-22 10:11:20 -04001562 return true;
Ying Xue584d24b2012-11-29 18:51:19 -05001563 }
1564
Jon Paul Maloycda36962015-07-22 10:11:20 -04001565 if (unlikely(!msg_isdata(hdr))) {
Ying Xue584d24b2012-11-29 18:51:19 -05001566 sock->state = SS_DISCONNECTING;
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001567 sk->sk_err = EINVAL;
Jon Paul Maloycda36962015-07-22 10:11:20 -04001568 return true;
Ying Xue584d24b2012-11-29 18:51:19 -05001569 }
1570
Jon Paul Maloycda36962015-07-22 10:11:20 -04001571 tipc_sk_finish_conn(tsk, msg_origport(hdr), msg_orignode(hdr));
1572 msg_set_importance(&tsk->phdr, msg_importance(hdr));
Jon Paul Maloydadebc02014-08-22 18:09:11 -04001573 sock->state = SS_CONNECTED;
1574
Jon Paul Maloycda36962015-07-22 10:11:20 -04001575 /* If 'ACK+' message, add to socket receive queue */
1576 if (msg_data_sz(hdr))
1577 return true;
1578
1579 /* If empty 'ACK-' message, wake up sleeping connect() */
1580 if (waitqueue_active(sk_sleep(sk)))
1581 wake_up_interruptible(sk_sleep(sk));
1582
1583 /* 'ACK-' message is neither accepted nor rejected: */
1584 msg_set_dest_droppable(hdr, 1);
1585 return false;
1586
Ying Xue7e6c1312012-11-29 18:39:14 -05001587 case SS_LISTENING:
1588 case SS_UNCONNECTED:
Jon Paul Maloycda36962015-07-22 10:11:20 -04001589
Ying Xue7e6c1312012-11-29 18:39:14 -05001590 /* Accept only SYN message */
Jon Paul Maloycda36962015-07-22 10:11:20 -04001591 if (!msg_connected(hdr) && !(msg_errcode(hdr)))
1592 return true;
Ying Xue7e6c1312012-11-29 18:39:14 -05001593 break;
1594 case SS_DISCONNECTING:
1595 break;
1596 default:
1597 pr_err("Unknown socket state %u\n", sock->state);
1598 }
Jon Paul Maloycda36962015-07-22 10:11:20 -04001599 return false;
Ying Xue7e6c1312012-11-29 18:39:14 -05001600}
1601
1602/**
Ying Xueaba79f32013-01-20 23:30:09 +01001603 * rcvbuf_limit - get proper overload limit of socket receive queue
1604 * @sk: socket
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001605 * @skb: message
Ying Xueaba79f32013-01-20 23:30:09 +01001606 *
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001607 * For connection oriented messages, irrespective of importance,
1608 * default queue limit is 2 MB.
Ying Xueaba79f32013-01-20 23:30:09 +01001609 *
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001610 * For connectionless messages, queue limits are based on message
1611 * importance as follows:
Ying Xueaba79f32013-01-20 23:30:09 +01001612 *
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001613 * TIPC_LOW_IMPORTANCE (2 MB)
1614 * TIPC_MEDIUM_IMPORTANCE (4 MB)
1615 * TIPC_HIGH_IMPORTANCE (8 MB)
1616 * TIPC_CRITICAL_IMPORTANCE (16 MB)
Ying Xueaba79f32013-01-20 23:30:09 +01001617 *
1618 * Returns overload limit according to corresponding message importance
1619 */
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001620static unsigned int rcvbuf_limit(struct sock *sk, struct sk_buff *skb)
Ying Xueaba79f32013-01-20 23:30:09 +01001621{
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001622 struct tipc_sock *tsk = tipc_sk(sk);
1623 struct tipc_msg *hdr = buf_msg(skb);
Ying Xueaba79f32013-01-20 23:30:09 +01001624
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001625 if (unlikely(!msg_connected(hdr)))
1626 return sk->sk_rcvbuf << msg_importance(hdr);
wangweidong0cee6bb2013-12-12 09:36:39 +08001627
Jon Paul Maloy10724cc2016-05-02 11:58:47 -04001628 if (likely(tsk->peer_caps & TIPC_BLOCK_FLOWCTL))
1629 return sk->sk_rcvbuf;
1630
1631 return FLOWCTL_MSG_LIM;
Ying Xueaba79f32013-01-20 23:30:09 +01001632}
1633
1634/**
Allan Stephens0c3141e2008-04-15 00:22:02 -07001635 * filter_rcv - validate incoming message
1636 * @sk: socket
Jon Paul Maloycda36962015-07-22 10:11:20 -04001637 * @skb: pointer to message.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001638 *
Allan Stephens0c3141e2008-04-15 00:22:02 -07001639 * Enqueues message on receive queue if acceptable; optionally handles
1640 * disconnect indication for a connected socket.
1641 *
Jon Paul Maloy1186adf2015-02-05 08:36:37 -05001642 * Called with socket lock already taken
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001643 *
Jon Paul Maloycda36962015-07-22 10:11:20 -04001644 * Returns true if message was added to socket receive queue, otherwise false
Per Lidenb97bf3f2006-01-02 19:04:38 +01001645 */
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04001646static bool filter_rcv(struct sock *sk, struct sk_buff *skb,
1647 struct sk_buff_head *xmitq)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001648{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001649 struct socket *sock = sk->sk_socket;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04001650 struct tipc_sock *tsk = tipc_sk(sk);
Jon Paul Maloycda36962015-07-22 10:11:20 -04001651 struct tipc_msg *hdr = buf_msg(skb);
1652 unsigned int limit = rcvbuf_limit(sk, skb);
1653 int err = TIPC_OK;
1654 int usr = msg_user(hdr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001655
Jon Paul Maloycda36962015-07-22 10:11:20 -04001656 if (unlikely(msg_user(hdr) == CONN_MANAGER)) {
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04001657 tipc_sk_proto_rcv(tsk, skb, xmitq);
Jon Paul Maloycda36962015-07-22 10:11:20 -04001658 return false;
Jon Paul Maloy1186adf2015-02-05 08:36:37 -05001659 }
Jon Paul Maloyec8a2e52014-06-25 20:41:40 -05001660
Jon Paul Maloycda36962015-07-22 10:11:20 -04001661 if (unlikely(usr == SOCK_WAKEUP)) {
1662 kfree_skb(skb);
Jon Paul Maloy50100a52014-08-22 18:09:07 -04001663 tsk->link_cong = 0;
1664 sk->sk_write_space(sk);
Jon Paul Maloycda36962015-07-22 10:11:20 -04001665 return false;
Jon Paul Maloy50100a52014-08-22 18:09:07 -04001666 }
1667
Jon Paul Maloycda36962015-07-22 10:11:20 -04001668 /* Drop if illegal message type */
1669 if (unlikely(msg_type(hdr) > TIPC_DIRECT_MSG)) {
1670 kfree_skb(skb);
1671 return false;
1672 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001673
Jon Paul Maloycda36962015-07-22 10:11:20 -04001674 /* Reject if wrong message type for current socket state */
1675 if (unlikely(sock->state == SS_READY)) {
1676 if (msg_connected(hdr)) {
1677 err = TIPC_ERR_NO_PORT;
1678 goto reject;
1679 }
1680 } else if (unlikely(!filter_connect(tsk, skb))) {
1681 err = TIPC_ERR_NO_PORT;
1682 goto reject;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001683 }
1684
1685 /* Reject message if there isn't room to queue it */
Jon Paul Maloycda36962015-07-22 10:11:20 -04001686 if (unlikely(sk_rmem_alloc_get(sk) + skb->truesize >= limit)) {
1687 err = TIPC_ERR_OVERLOAD;
1688 goto reject;
1689 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001690
Ying Xueaba79f32013-01-20 23:30:09 +01001691 /* Enqueue message */
Jon Paul Maloycda36962015-07-22 10:11:20 -04001692 TIPC_SKB_CB(skb)->handle = NULL;
1693 __skb_queue_tail(&sk->sk_receive_queue, skb);
1694 skb_set_owner_r(skb, sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001695
David S. Miller676d2362014-04-11 16:15:36 -04001696 sk->sk_data_ready(sk);
Jon Paul Maloycda36962015-07-22 10:11:20 -04001697 return true;
1698
1699reject:
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04001700 if (tipc_msg_reverse(tsk_own_node(tsk), &skb, err))
1701 __skb_queue_tail(xmitq, skb);
Jon Paul Maloycda36962015-07-22 10:11:20 -04001702 return false;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001703}
1704
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001705/**
Jon Paul Maloy4f4482d2014-05-14 05:39:09 -04001706 * tipc_backlog_rcv - handle incoming message from backlog queue
Allan Stephens0c3141e2008-04-15 00:22:02 -07001707 * @sk: socket
Ying Xuea6ca1092014-11-26 11:41:55 +08001708 * @skb: message
Allan Stephens0c3141e2008-04-15 00:22:02 -07001709 *
Jon Paul Maloye3a77562015-02-05 08:36:39 -05001710 * Caller must hold socket lock
Allan Stephens0c3141e2008-04-15 00:22:02 -07001711 *
1712 * Returns 0
1713 */
Ying Xuea6ca1092014-11-26 11:41:55 +08001714static int tipc_backlog_rcv(struct sock *sk, struct sk_buff *skb)
Allan Stephens0c3141e2008-04-15 00:22:02 -07001715{
Jon Paul Maloycda36962015-07-22 10:11:20 -04001716 unsigned int truesize = skb->truesize;
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04001717 struct sk_buff_head xmitq;
1718 u32 dnode, selector;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001719
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04001720 __skb_queue_head_init(&xmitq);
1721
1722 if (likely(filter_rcv(sk, skb, &xmitq))) {
Jon Paul Maloycda36962015-07-22 10:11:20 -04001723 atomic_add(truesize, &tipc_sk(sk)->dupl_rcvcnt);
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04001724 return 0;
1725 }
1726
1727 if (skb_queue_empty(&xmitq))
1728 return 0;
1729
1730 /* Send response/rejected message */
1731 skb = __skb_dequeue(&xmitq);
1732 dnode = msg_destnode(buf_msg(skb));
1733 selector = msg_origport(buf_msg(skb));
1734 tipc_node_xmit_skb(sock_net(sk), skb, dnode, selector);
Allan Stephens0c3141e2008-04-15 00:22:02 -07001735 return 0;
1736}
1737
1738/**
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001739 * tipc_sk_enqueue - extract all buffers with destination 'dport' from
1740 * inputq and try adding them to socket or backlog queue
1741 * @inputq: list of incoming buffers with potentially different destinations
1742 * @sk: socket where the buffers should be enqueued
1743 * @dport: port number for the socket
Jon Paul Maloyd570d862015-02-05 08:36:38 -05001744 *
1745 * Caller must hold socket lock
Jon Paul Maloyd570d862015-02-05 08:36:38 -05001746 */
Jon Paul Maloycda36962015-07-22 10:11:20 -04001747static void tipc_sk_enqueue(struct sk_buff_head *inputq, struct sock *sk,
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04001748 u32 dport, struct sk_buff_head *xmitq)
Jon Paul Maloyd570d862015-02-05 08:36:38 -05001749{
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04001750 unsigned long time_limit = jiffies + 2;
1751 struct sk_buff *skb;
Jon Paul Maloyd570d862015-02-05 08:36:38 -05001752 unsigned int lim;
1753 atomic_t *dcnt;
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04001754 u32 onode;
Jon Paul Maloyd570d862015-02-05 08:36:38 -05001755
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001756 while (skb_queue_len(inputq)) {
Jon Paul Maloy51a00da2015-02-08 11:10:50 -05001757 if (unlikely(time_after_eq(jiffies, time_limit)))
Jon Paul Maloycda36962015-07-22 10:11:20 -04001758 return;
1759
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001760 skb = tipc_skb_dequeue(inputq, dport);
1761 if (unlikely(!skb))
Jon Paul Maloycda36962015-07-22 10:11:20 -04001762 return;
1763
1764 /* Add message directly to receive queue if possible */
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001765 if (!sock_owned_by_user(sk)) {
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04001766 filter_rcv(sk, skb, xmitq);
Jon Paul Maloycda36962015-07-22 10:11:20 -04001767 continue;
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001768 }
Jon Paul Maloycda36962015-07-22 10:11:20 -04001769
1770 /* Try backlog, compensating for double-counted bytes */
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001771 dcnt = &tipc_sk(sk)->dupl_rcvcnt;
Jon Paul Maloy7c8bcfb2016-05-02 11:58:45 -04001772 if (!sk->sk_backlog.len)
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001773 atomic_set(dcnt, 0);
1774 lim = rcvbuf_limit(sk, skb) + atomic_read(dcnt);
1775 if (likely(!sk_add_backlog(sk, skb, lim)))
1776 continue;
Jon Paul Maloycda36962015-07-22 10:11:20 -04001777
1778 /* Overload => reject message back to sender */
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04001779 onode = tipc_own_addr(sock_net(sk));
1780 if (tipc_msg_reverse(onode, &skb, TIPC_ERR_OVERLOAD))
1781 __skb_queue_tail(xmitq, skb);
Jon Paul Maloycda36962015-07-22 10:11:20 -04001782 break;
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001783 }
Jon Paul Maloyd570d862015-02-05 08:36:38 -05001784}
1785
1786/**
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001787 * tipc_sk_rcv - handle a chain of incoming buffers
1788 * @inputq: buffer list containing the buffers
1789 * Consumes all buffers in list until inputq is empty
1790 * Note: may be called in multiple threads referring to the same queue
Allan Stephens0c3141e2008-04-15 00:22:02 -07001791 */
Jon Paul Maloycda36962015-07-22 10:11:20 -04001792void tipc_sk_rcv(struct net *net, struct sk_buff_head *inputq)
Allan Stephens0c3141e2008-04-15 00:22:02 -07001793{
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04001794 struct sk_buff_head xmitq;
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001795 u32 dnode, dport = 0;
Erik Hugne9871b272015-04-23 09:37:39 -04001796 int err;
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001797 struct tipc_sock *tsk;
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001798 struct sock *sk;
Jon Paul Maloycda36962015-07-22 10:11:20 -04001799 struct sk_buff *skb;
Jon Paul Maloy9816f062014-05-14 05:39:15 -04001800
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04001801 __skb_queue_head_init(&xmitq);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001802 while (skb_queue_len(inputq)) {
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001803 dport = tipc_skb_peek_port(inputq, dport);
1804 tsk = tipc_sk_lookup(net, dport);
Jon Paul Maloycda36962015-07-22 10:11:20 -04001805
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001806 if (likely(tsk)) {
1807 sk = &tsk->sk;
1808 if (likely(spin_trylock_bh(&sk->sk_lock.slock))) {
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04001809 tipc_sk_enqueue(inputq, sk, dport, &xmitq);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001810 spin_unlock_bh(&sk->sk_lock.slock);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001811 }
Jon Paul Maloyf1d048f2016-06-17 06:35:57 -04001812 /* Send pending response/rejected messages, if any */
1813 while ((skb = __skb_dequeue(&xmitq))) {
1814 dnode = msg_destnode(buf_msg(skb));
1815 tipc_node_xmit_skb(net, skb, dnode, dport);
1816 }
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001817 sock_put(sk);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001818 continue;
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001819 }
Jon Paul Maloycda36962015-07-22 10:11:20 -04001820
1821 /* No destination socket => dequeue skb if still there */
1822 skb = tipc_skb_dequeue(inputq, dport);
1823 if (!skb)
1824 return;
1825
1826 /* Try secondary lookup if unresolved named message */
1827 err = TIPC_ERR_NO_PORT;
1828 if (tipc_msg_lookup_dest(net, skb, &err))
1829 goto xmit;
1830
1831 /* Prepare for message rejection */
1832 if (!tipc_msg_reverse(tipc_own_addr(net), &skb, err))
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001833 continue;
Jon Paul Maloye3a77562015-02-05 08:36:39 -05001834xmit:
Jon Paul Maloycda36962015-07-22 10:11:20 -04001835 dnode = msg_destnode(buf_msg(skb));
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -04001836 tipc_node_xmit_skb(net, skb, dnode, dport);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001837 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001838}
1839
Ying Xue78eb3a52014-01-17 09:50:03 +08001840static int tipc_wait_for_connect(struct socket *sock, long *timeo_p)
1841{
1842 struct sock *sk = sock->sk;
1843 DEFINE_WAIT(wait);
1844 int done;
1845
1846 do {
1847 int err = sock_error(sk);
1848 if (err)
1849 return err;
1850 if (!*timeo_p)
1851 return -ETIMEDOUT;
1852 if (signal_pending(current))
1853 return sock_intr_errno(*timeo_p);
1854
1855 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
1856 done = sk_wait_event(sk, timeo_p, sock->state != SS_CONNECTING);
1857 finish_wait(sk_sleep(sk), &wait);
1858 } while (!done);
1859 return 0;
1860}
1861
Per Lidenb97bf3f2006-01-02 19:04:38 +01001862/**
Ying Xue247f0f32014-02-18 16:06:46 +08001863 * tipc_connect - establish a connection to another TIPC port
Per Lidenb97bf3f2006-01-02 19:04:38 +01001864 * @sock: socket structure
1865 * @dest: socket address for destination port
1866 * @destlen: size of socket address data structure
Allan Stephens0c3141e2008-04-15 00:22:02 -07001867 * @flags: file-related flags associated with socket
Per Lidenb97bf3f2006-01-02 19:04:38 +01001868 *
1869 * Returns 0 on success, errno otherwise
1870 */
Ying Xue247f0f32014-02-18 16:06:46 +08001871static int tipc_connect(struct socket *sock, struct sockaddr *dest,
1872 int destlen, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001873{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001874 struct sock *sk = sock->sk;
Erik Hugnef2f80362015-03-19 09:02:19 +01001875 struct tipc_sock *tsk = tipc_sk(sk);
Allan Stephensb89741a2008-04-15 00:20:37 -07001876 struct sockaddr_tipc *dst = (struct sockaddr_tipc *)dest;
1877 struct msghdr m = {NULL,};
Erik Hugnef2f80362015-03-19 09:02:19 +01001878 long timeout = (flags & O_NONBLOCK) ? 0 : tsk->conn_timeout;
Ying Xue78eb3a52014-01-17 09:50:03 +08001879 socket_state previous;
Erik Hugnef2f80362015-03-19 09:02:19 +01001880 int res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001881
Allan Stephens0c3141e2008-04-15 00:22:02 -07001882 lock_sock(sk);
1883
Erik Hugnef2f80362015-03-19 09:02:19 +01001884 /* DGRAM/RDM connect(), just save the destaddr */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001885 if (sock->state == SS_READY) {
Erik Hugnef2f80362015-03-19 09:02:19 +01001886 if (dst->family == AF_UNSPEC) {
1887 memset(&tsk->remote, 0, sizeof(struct sockaddr_tipc));
1888 tsk->connected = 0;
Sasha Levin610600c2015-03-23 15:30:00 -04001889 } else if (destlen != sizeof(struct sockaddr_tipc)) {
1890 res = -EINVAL;
Erik Hugnef2f80362015-03-19 09:02:19 +01001891 } else {
1892 memcpy(&tsk->remote, dest, destlen);
1893 tsk->connected = 1;
1894 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001895 goto exit;
1896 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001897
Allan Stephensb89741a2008-04-15 00:20:37 -07001898 /*
1899 * Reject connection attempt using multicast address
1900 *
1901 * Note: send_msg() validates the rest of the address fields,
1902 * so there's no need to do it here
1903 */
Allan Stephens0c3141e2008-04-15 00:22:02 -07001904 if (dst->addrtype == TIPC_ADDR_MCAST) {
1905 res = -EINVAL;
1906 goto exit;
1907 }
1908
Ying Xue78eb3a52014-01-17 09:50:03 +08001909 previous = sock->state;
Ying Xue584d24b2012-11-29 18:51:19 -05001910 switch (sock->state) {
1911 case SS_UNCONNECTED:
1912 /* Send a 'SYN-' to destination */
1913 m.msg_name = dest;
1914 m.msg_namelen = destlen;
1915
1916 /* If connect is in non-blocking case, set MSG_DONTWAIT to
1917 * indicate send_msg() is never blocked.
1918 */
1919 if (!timeout)
1920 m.msg_flags = MSG_DONTWAIT;
1921
Ying Xue39a02952015-03-02 15:37:47 +08001922 res = __tipc_sendmsg(sock, &m, 0);
Ying Xue584d24b2012-11-29 18:51:19 -05001923 if ((res < 0) && (res != -EWOULDBLOCK))
1924 goto exit;
1925
1926 /* Just entered SS_CONNECTING state; the only
1927 * difference is that return value in non-blocking
1928 * case is EINPROGRESS, rather than EALREADY.
1929 */
1930 res = -EINPROGRESS;
Ying Xue584d24b2012-11-29 18:51:19 -05001931 case SS_CONNECTING:
Ying Xue78eb3a52014-01-17 09:50:03 +08001932 if (previous == SS_CONNECTING)
1933 res = -EALREADY;
1934 if (!timeout)
1935 goto exit;
1936 timeout = msecs_to_jiffies(timeout);
1937 /* Wait until an 'ACK' or 'RST' arrives, or a timeout occurs */
1938 res = tipc_wait_for_connect(sock, &timeout);
Ying Xue584d24b2012-11-29 18:51:19 -05001939 break;
1940 case SS_CONNECTED:
1941 res = -EISCONN;
1942 break;
1943 default:
1944 res = -EINVAL;
Ying Xue78eb3a52014-01-17 09:50:03 +08001945 break;
Allan Stephensb89741a2008-04-15 00:20:37 -07001946 }
Allan Stephens0c3141e2008-04-15 00:22:02 -07001947exit:
1948 release_sock(sk);
Allan Stephensb89741a2008-04-15 00:20:37 -07001949 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001950}
1951
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001952/**
Ying Xue247f0f32014-02-18 16:06:46 +08001953 * tipc_listen - allow socket to listen for incoming connections
Per Lidenb97bf3f2006-01-02 19:04:38 +01001954 * @sock: socket structure
1955 * @len: (unused)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001956 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01001957 * Returns 0 on success, errno otherwise
1958 */
Ying Xue247f0f32014-02-18 16:06:46 +08001959static int tipc_listen(struct socket *sock, int len)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001960{
Allan Stephens0c3141e2008-04-15 00:22:02 -07001961 struct sock *sk = sock->sk;
1962 int res;
1963
1964 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001965
Ying Xue245f3d32011-07-06 06:01:13 -04001966 if (sock->state != SS_UNCONNECTED)
Allan Stephens0c3141e2008-04-15 00:22:02 -07001967 res = -EINVAL;
1968 else {
1969 sock->state = SS_LISTENING;
1970 res = 0;
1971 }
1972
1973 release_sock(sk);
1974 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001975}
1976
Ying Xue6398e232014-01-17 09:50:04 +08001977static int tipc_wait_for_accept(struct socket *sock, long timeo)
1978{
1979 struct sock *sk = sock->sk;
1980 DEFINE_WAIT(wait);
1981 int err;
1982
1983 /* True wake-one mechanism for incoming connections: only
1984 * one process gets woken up, not the 'whole herd'.
1985 * Since we do not 'race & poll' for established sockets
1986 * anymore, the common case will execute the loop only once.
1987 */
1988 for (;;) {
1989 prepare_to_wait_exclusive(sk_sleep(sk), &wait,
1990 TASK_INTERRUPTIBLE);
Ying Xuefe8e4642014-03-06 14:40:18 +01001991 if (timeo && skb_queue_empty(&sk->sk_receive_queue)) {
Ying Xue6398e232014-01-17 09:50:04 +08001992 release_sock(sk);
1993 timeo = schedule_timeout(timeo);
1994 lock_sock(sk);
1995 }
1996 err = 0;
1997 if (!skb_queue_empty(&sk->sk_receive_queue))
1998 break;
1999 err = -EINVAL;
2000 if (sock->state != SS_LISTENING)
2001 break;
Ying Xue6398e232014-01-17 09:50:04 +08002002 err = -EAGAIN;
2003 if (!timeo)
2004 break;
Erik Hugne143fe222015-03-09 10:43:42 +01002005 err = sock_intr_errno(timeo);
2006 if (signal_pending(current))
2007 break;
Ying Xue6398e232014-01-17 09:50:04 +08002008 }
2009 finish_wait(sk_sleep(sk), &wait);
2010 return err;
2011}
2012
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002013/**
Ying Xue247f0f32014-02-18 16:06:46 +08002014 * tipc_accept - wait for connection request
Per Lidenb97bf3f2006-01-02 19:04:38 +01002015 * @sock: listening socket
2016 * @newsock: new socket that is to be connected
2017 * @flags: file-related flags associated with socket
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002018 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002019 * Returns 0 on success, errno otherwise
2020 */
Ying Xue247f0f32014-02-18 16:06:46 +08002021static int tipc_accept(struct socket *sock, struct socket *new_sock, int flags)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002022{
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002023 struct sock *new_sk, *sk = sock->sk;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002024 struct sk_buff *buf;
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002025 struct tipc_sock *new_tsock;
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002026 struct tipc_msg *msg;
Ying Xue6398e232014-01-17 09:50:04 +08002027 long timeo;
Allan Stephens0c3141e2008-04-15 00:22:02 -07002028 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002029
Allan Stephens0c3141e2008-04-15 00:22:02 -07002030 lock_sock(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002031
Allan Stephens0c3141e2008-04-15 00:22:02 -07002032 if (sock->state != SS_LISTENING) {
2033 res = -EINVAL;
2034 goto exit;
2035 }
Ying Xue6398e232014-01-17 09:50:04 +08002036 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
2037 res = tipc_wait_for_accept(sock, timeo);
2038 if (res)
2039 goto exit;
Allan Stephens0c3141e2008-04-15 00:22:02 -07002040
2041 buf = skb_peek(&sk->sk_receive_queue);
2042
Ying Xuec5fa7b32013-06-17 10:54:39 -04002043 res = tipc_sk_create(sock_net(sock->sk), new_sock, 0, 1);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002044 if (res)
2045 goto exit;
Stephen Smalleyfdd75ea2015-07-07 09:43:45 -04002046 security_sk_clone(sock->sk, new_sock->sk);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002047
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002048 new_sk = new_sock->sk;
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002049 new_tsock = tipc_sk(new_sk);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002050 msg = buf_msg(buf);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002051
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002052 /* we lock on new_sk; but lockdep sees the lock on sk */
2053 lock_sock_nested(new_sk, SINGLE_DEPTH_NESTING);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002054
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002055 /*
2056 * Reject any stray messages received by new socket
2057 * before the socket lock was taken (very, very unlikely)
2058 */
Jon Paul Maloy2e84c602014-08-22 18:09:18 -04002059 tsk_rej_rx_queue(new_sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002060
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002061 /* Connect new socket to it's peer */
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002062 tipc_sk_finish_conn(new_tsock, msg_origport(msg), msg_orignode(msg));
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002063 new_sock->state = SS_CONNECTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002064
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002065 tsk_set_importance(new_tsock, msg_importance(msg));
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002066 if (msg_named(msg)) {
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002067 new_tsock->conn_type = msg_nametype(msg);
2068 new_tsock->conn_instance = msg_nameinst(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002069 }
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002070
2071 /*
2072 * Respond to 'SYN-' by discarding it & returning 'ACK'-.
2073 * Respond to 'SYN+' by queuing it on new socket.
2074 */
2075 if (!msg_data_sz(msg)) {
2076 struct msghdr m = {NULL,};
2077
Jon Paul Maloy2e84c602014-08-22 18:09:18 -04002078 tsk_advance_rx_queue(sk);
Ying Xue39a02952015-03-02 15:37:47 +08002079 __tipc_send_stream(new_sock, &m, 0);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002080 } else {
2081 __skb_dequeue(&sk->sk_receive_queue);
2082 __skb_queue_head(&new_sk->sk_receive_queue, buf);
Ying Xueaba79f32013-01-20 23:30:09 +01002083 skb_set_owner_r(buf, new_sk);
Paul Gortmaker0fef8f22012-12-04 11:01:55 -05002084 }
2085 release_sock(new_sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002086exit:
Allan Stephens0c3141e2008-04-15 00:22:02 -07002087 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002088 return res;
2089}
2090
2091/**
Ying Xue247f0f32014-02-18 16:06:46 +08002092 * tipc_shutdown - shutdown socket connection
Per Lidenb97bf3f2006-01-02 19:04:38 +01002093 * @sock: socket structure
Allan Stephense247a8f2008-03-06 15:05:38 -08002094 * @how: direction to close (must be SHUT_RDWR)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002095 *
2096 * Terminates connection (if necessary), then purges socket's receive queue.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002097 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002098 * Returns 0 on success, errno otherwise
2099 */
Ying Xue247f0f32014-02-18 16:06:46 +08002100static int tipc_shutdown(struct socket *sock, int how)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002101{
Allan Stephens0c3141e2008-04-15 00:22:02 -07002102 struct sock *sk = sock->sk;
Ying Xuef2f98002015-01-09 15:27:05 +08002103 struct net *net = sock_net(sk);
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002104 struct tipc_sock *tsk = tipc_sk(sk);
Ying Xuea6ca1092014-11-26 11:41:55 +08002105 struct sk_buff *skb;
Jon Paul Maloycda36962015-07-22 10:11:20 -04002106 u32 dnode = tsk_peer_node(tsk);
2107 u32 dport = tsk_peer_port(tsk);
2108 u32 onode = tipc_own_addr(net);
2109 u32 oport = tsk->portid;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002110 int res;
2111
Allan Stephense247a8f2008-03-06 15:05:38 -08002112 if (how != SHUT_RDWR)
2113 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002114
Allan Stephens0c3141e2008-04-15 00:22:02 -07002115 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002116
2117 switch (sock->state) {
Allan Stephens0c3141e2008-04-15 00:22:02 -07002118 case SS_CONNECTING:
Per Lidenb97bf3f2006-01-02 19:04:38 +01002119 case SS_CONNECTED:
2120
Per Lidenb97bf3f2006-01-02 19:04:38 +01002121restart:
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04002122 dnode = tsk_peer_node(tsk);
2123
Paul Gortmaker617d3c72012-04-30 15:29:02 -04002124 /* Disconnect and send a 'FIN+' or 'FIN-' message to peer */
Ying Xuea6ca1092014-11-26 11:41:55 +08002125 skb = __skb_dequeue(&sk->sk_receive_queue);
2126 if (skb) {
2127 if (TIPC_SKB_CB(skb)->handle != NULL) {
2128 kfree_skb(skb);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002129 goto restart;
2130 }
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -04002131 tipc_sk_respond(sk, skb, TIPC_CONN_SHUTDOWN);
Allan Stephens0c3141e2008-04-15 00:22:02 -07002132 } else {
Jon Paul Maloyc5898632015-02-05 08:36:36 -05002133 skb = tipc_msg_create(TIPC_CRITICAL_IMPORTANCE,
Jon Paul Maloy80e44c22014-08-22 18:09:10 -04002134 TIPC_CONN_MSG, SHORT_H_SIZE,
Jon Paul Maloycda36962015-07-22 10:11:20 -04002135 0, dnode, onode, dport, oport,
2136 TIPC_CONN_SHUTDOWN);
Vegard Nossumd2fbdf72016-07-23 08:15:04 +02002137 if (skb)
2138 tipc_node_xmit_skb(net, skb, dnode, tsk->portid);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002139 }
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002140 tsk->connected = 0;
Allan Stephens0c3141e2008-04-15 00:22:02 -07002141 sock->state = SS_DISCONNECTING;
Ying Xuef2f98002015-01-09 15:27:05 +08002142 tipc_node_remove_conn(net, dnode, tsk->portid);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002143 /* fall through */
2144
2145 case SS_DISCONNECTING:
2146
Ying Xue75031152012-10-29 09:38:15 -04002147 /* Discard any unreceived messages */
Ying Xue57467e52013-01-20 23:30:08 +01002148 __skb_queue_purge(&sk->sk_receive_queue);
Ying Xue75031152012-10-29 09:38:15 -04002149
2150 /* Wake up anyone sleeping in poll */
2151 sk->sk_state_change(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002152 res = 0;
2153 break;
2154
2155 default:
2156 res = -ENOTCONN;
2157 }
2158
Allan Stephens0c3141e2008-04-15 00:22:02 -07002159 release_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002160 return res;
2161}
2162
Ying Xuef2f2a962015-01-09 15:27:02 +08002163static void tipc_sk_timeout(unsigned long data)
Jon Paul Maloy57289012014-08-22 18:09:09 -04002164{
Ying Xuef2f2a962015-01-09 15:27:02 +08002165 struct tipc_sock *tsk = (struct tipc_sock *)data;
2166 struct sock *sk = &tsk->sk;
Ying Xuea6ca1092014-11-26 11:41:55 +08002167 struct sk_buff *skb = NULL;
Jon Paul Maloy57289012014-08-22 18:09:09 -04002168 u32 peer_port, peer_node;
Jon Paul Maloyc5898632015-02-05 08:36:36 -05002169 u32 own_node = tsk_own_node(tsk);
Jon Paul Maloy57289012014-08-22 18:09:09 -04002170
Jon Paul Maloy57289012014-08-22 18:09:09 -04002171 bh_lock_sock(sk);
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002172 if (!tsk->connected) {
Jon Paul Maloy6c9808c2014-08-22 18:09:16 -04002173 bh_unlock_sock(sk);
2174 goto exit;
2175 }
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002176 peer_port = tsk_peer_port(tsk);
2177 peer_node = tsk_peer_node(tsk);
Jon Paul Maloy57289012014-08-22 18:09:09 -04002178
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002179 if (tsk->probing_state == TIPC_CONN_PROBING) {
Erik Hugneb3be5e32015-06-09 17:27:12 +02002180 if (!sock_owned_by_user(sk)) {
2181 sk->sk_socket->state = SS_DISCONNECTING;
2182 tsk->connected = 0;
2183 tipc_node_remove_conn(sock_net(sk), tsk_peer_node(tsk),
2184 tsk_peer_port(tsk));
2185 sk->sk_state_change(sk);
2186 } else {
2187 /* Try again later */
2188 sk_reset_timer(sk, &sk->sk_timer, (HZ / 20));
2189 }
2190
Jon Paul Maloy57289012014-08-22 18:09:09 -04002191 } else {
Jon Paul Maloyc5898632015-02-05 08:36:36 -05002192 skb = tipc_msg_create(CONN_MANAGER, CONN_PROBE,
2193 INT_H_SIZE, 0, peer_node, own_node,
Ying Xuef2f2a962015-01-09 15:27:02 +08002194 peer_port, tsk->portid, TIPC_OK);
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002195 tsk->probing_state = TIPC_CONN_PROBING;
Ying Xue3721e9c2015-01-13 17:07:48 +08002196 sk_reset_timer(sk, &sk->sk_timer, jiffies + tsk->probing_intv);
Jon Paul Maloy57289012014-08-22 18:09:09 -04002197 }
2198 bh_unlock_sock(sk);
Ying Xuea6ca1092014-11-26 11:41:55 +08002199 if (skb)
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -04002200 tipc_node_xmit_skb(sock_net(sk), skb, peer_node, tsk->portid);
Jon Paul Maloy6c9808c2014-08-22 18:09:16 -04002201exit:
Ying Xue07f6c4b2015-01-07 13:41:58 +08002202 sock_put(sk);
Jon Paul Maloy57289012014-08-22 18:09:09 -04002203}
2204
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002205static int tipc_sk_publish(struct tipc_sock *tsk, uint scope,
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002206 struct tipc_name_seq const *seq)
2207{
Ying Xuef2f98002015-01-09 15:27:05 +08002208 struct net *net = sock_net(&tsk->sk);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002209 struct publication *publ;
2210 u32 key;
2211
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002212 if (tsk->connected)
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002213 return -EINVAL;
Ying Xue07f6c4b2015-01-07 13:41:58 +08002214 key = tsk->portid + tsk->pub_count + 1;
2215 if (key == tsk->portid)
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002216 return -EADDRINUSE;
2217
Ying Xuef2f98002015-01-09 15:27:05 +08002218 publ = tipc_nametbl_publish(net, seq->type, seq->lower, seq->upper,
Ying Xue07f6c4b2015-01-07 13:41:58 +08002219 scope, tsk->portid, key);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002220 if (unlikely(!publ))
2221 return -EINVAL;
2222
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002223 list_add(&publ->pport_list, &tsk->publications);
2224 tsk->pub_count++;
2225 tsk->published = 1;
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002226 return 0;
2227}
2228
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002229static int tipc_sk_withdraw(struct tipc_sock *tsk, uint scope,
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002230 struct tipc_name_seq const *seq)
2231{
Ying Xuef2f98002015-01-09 15:27:05 +08002232 struct net *net = sock_net(&tsk->sk);
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002233 struct publication *publ;
2234 struct publication *safe;
2235 int rc = -EINVAL;
2236
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002237 list_for_each_entry_safe(publ, safe, &tsk->publications, pport_list) {
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002238 if (seq) {
2239 if (publ->scope != scope)
2240 continue;
2241 if (publ->type != seq->type)
2242 continue;
2243 if (publ->lower != seq->lower)
2244 continue;
2245 if (publ->upper != seq->upper)
2246 break;
Ying Xuef2f98002015-01-09 15:27:05 +08002247 tipc_nametbl_withdraw(net, publ->type, publ->lower,
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002248 publ->ref, publ->key);
2249 rc = 0;
2250 break;
2251 }
Ying Xuef2f98002015-01-09 15:27:05 +08002252 tipc_nametbl_withdraw(net, publ->type, publ->lower,
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002253 publ->ref, publ->key);
2254 rc = 0;
2255 }
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002256 if (list_empty(&tsk->publications))
2257 tsk->published = 0;
Jon Paul Maloy0fc87aa2014-08-22 18:09:17 -04002258 return rc;
2259}
2260
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002261/* tipc_sk_reinit: set non-zero address in all existing sockets
2262 * when we go from standalone to network mode.
2263 */
Ying Xuee05b31f2015-01-09 15:27:08 +08002264void tipc_sk_reinit(struct net *net)
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002265{
Ying Xuee05b31f2015-01-09 15:27:08 +08002266 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002267 const struct bucket_table *tbl;
2268 struct rhash_head *pos;
2269 struct tipc_sock *tsk;
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002270 struct tipc_msg *msg;
Ying Xue07f6c4b2015-01-07 13:41:58 +08002271 int i;
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002272
Ying Xue07f6c4b2015-01-07 13:41:58 +08002273 rcu_read_lock();
Ying Xuee05b31f2015-01-09 15:27:08 +08002274 tbl = rht_dereference_rcu((&tn->sk_rht)->tbl, &tn->sk_rht);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002275 for (i = 0; i < tbl->size; i++) {
2276 rht_for_each_entry_rcu(tsk, pos, tbl, i, node) {
2277 spin_lock_bh(&tsk->sk.sk_lock.slock);
2278 msg = &tsk->phdr;
Ying Xue34747532015-01-09 15:27:10 +08002279 msg_set_prevnode(msg, tn->own_addr);
2280 msg_set_orignode(msg, tn->own_addr);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002281 spin_unlock_bh(&tsk->sk.sk_lock.slock);
2282 }
2283 }
2284 rcu_read_unlock();
2285}
2286
Ying Xuee05b31f2015-01-09 15:27:08 +08002287static struct tipc_sock *tipc_sk_lookup(struct net *net, u32 portid)
Ying Xue07f6c4b2015-01-07 13:41:58 +08002288{
Ying Xuee05b31f2015-01-09 15:27:08 +08002289 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002290 struct tipc_sock *tsk;
2291
2292 rcu_read_lock();
Herbert Xu6cca72892015-03-20 21:57:05 +11002293 tsk = rhashtable_lookup_fast(&tn->sk_rht, &portid, tsk_rht_params);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002294 if (tsk)
2295 sock_hold(&tsk->sk);
2296 rcu_read_unlock();
2297
2298 return tsk;
2299}
2300
2301static int tipc_sk_insert(struct tipc_sock *tsk)
2302{
Ying Xuee05b31f2015-01-09 15:27:08 +08002303 struct sock *sk = &tsk->sk;
2304 struct net *net = sock_net(sk);
2305 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002306 u32 remaining = (TIPC_MAX_PORT - TIPC_MIN_PORT) + 1;
2307 u32 portid = prandom_u32() % remaining + TIPC_MIN_PORT;
2308
2309 while (remaining--) {
2310 portid++;
2311 if ((portid < TIPC_MIN_PORT) || (portid > TIPC_MAX_PORT))
2312 portid = TIPC_MIN_PORT;
2313 tsk->portid = portid;
2314 sock_hold(&tsk->sk);
Herbert Xu6cca72892015-03-20 21:57:05 +11002315 if (!rhashtable_lookup_insert_fast(&tn->sk_rht, &tsk->node,
2316 tsk_rht_params))
Ying Xue07f6c4b2015-01-07 13:41:58 +08002317 return 0;
2318 sock_put(&tsk->sk);
2319 }
2320
2321 return -1;
2322}
2323
2324static void tipc_sk_remove(struct tipc_sock *tsk)
2325{
2326 struct sock *sk = &tsk->sk;
Ying Xuee05b31f2015-01-09 15:27:08 +08002327 struct tipc_net *tn = net_generic(sock_net(sk), tipc_net_id);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002328
Herbert Xu6cca72892015-03-20 21:57:05 +11002329 if (!rhashtable_remove_fast(&tn->sk_rht, &tsk->node, tsk_rht_params)) {
Ying Xue07f6c4b2015-01-07 13:41:58 +08002330 WARN_ON(atomic_read(&sk->sk_refcnt) == 1);
2331 __sock_put(sk);
Jon Paul Maloy5a9ee0be2014-08-22 18:09:14 -04002332 }
2333}
2334
Herbert Xu6cca72892015-03-20 21:57:05 +11002335static const struct rhashtable_params tsk_rht_params = {
2336 .nelem_hint = 192,
2337 .head_offset = offsetof(struct tipc_sock, node),
2338 .key_offset = offsetof(struct tipc_sock, portid),
2339 .key_len = sizeof(u32), /* portid */
Herbert Xu6cca72892015-03-20 21:57:05 +11002340 .max_size = 1048576,
2341 .min_size = 256,
Thomas Grafb5e2c152015-03-24 20:42:19 +00002342 .automatic_shrinking = true,
Herbert Xu6cca72892015-03-20 21:57:05 +11002343};
2344
Ying Xuee05b31f2015-01-09 15:27:08 +08002345int tipc_sk_rht_init(struct net *net)
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002346{
Ying Xuee05b31f2015-01-09 15:27:08 +08002347 struct tipc_net *tn = net_generic(net, tipc_net_id);
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002348
Herbert Xu6cca72892015-03-20 21:57:05 +11002349 return rhashtable_init(&tn->sk_rht, &tsk_rht_params);
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002350}
2351
Ying Xuee05b31f2015-01-09 15:27:08 +08002352void tipc_sk_rht_destroy(struct net *net)
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002353{
Ying Xuee05b31f2015-01-09 15:27:08 +08002354 struct tipc_net *tn = net_generic(net, tipc_net_id);
2355
Ying Xue07f6c4b2015-01-07 13:41:58 +08002356 /* Wait for socket readers to complete */
2357 synchronize_net();
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002358
Ying Xuee05b31f2015-01-09 15:27:08 +08002359 rhashtable_destroy(&tn->sk_rht);
Jon Paul Maloy808d90f2014-08-22 18:09:19 -04002360}
2361
2362/**
Ying Xue247f0f32014-02-18 16:06:46 +08002363 * tipc_setsockopt - set socket option
Per Lidenb97bf3f2006-01-02 19:04:38 +01002364 * @sock: socket structure
2365 * @lvl: option level
2366 * @opt: option identifier
2367 * @ov: pointer to new option value
2368 * @ol: length of option value
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002369 *
2370 * For stream sockets only, accepts and ignores all IPPROTO_TCP options
Per Lidenb97bf3f2006-01-02 19:04:38 +01002371 * (to ease compatibility).
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002372 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002373 * Returns 0 on success, errno otherwise
2374 */
Ying Xue247f0f32014-02-18 16:06:46 +08002375static int tipc_setsockopt(struct socket *sock, int lvl, int opt,
2376 char __user *ov, unsigned int ol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002377{
Allan Stephens0c3141e2008-04-15 00:22:02 -07002378 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002379 struct tipc_sock *tsk = tipc_sk(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002380 u32 value;
2381 int res;
2382
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002383 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
2384 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002385 if (lvl != SOL_TIPC)
2386 return -ENOPROTOOPT;
2387 if (ol < sizeof(value))
2388 return -EINVAL;
Allan Stephens2db99832010-12-31 18:59:33 +00002389 res = get_user(value, (u32 __user *)ov);
2390 if (res)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002391 return res;
2392
Allan Stephens0c3141e2008-04-15 00:22:02 -07002393 lock_sock(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002394
Per Lidenb97bf3f2006-01-02 19:04:38 +01002395 switch (opt) {
2396 case TIPC_IMPORTANCE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002397 res = tsk_set_importance(tsk, value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002398 break;
2399 case TIPC_SRC_DROPPABLE:
2400 if (sock->type != SOCK_STREAM)
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002401 tsk_set_unreliable(tsk, value);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002402 else
Per Lidenb97bf3f2006-01-02 19:04:38 +01002403 res = -ENOPROTOOPT;
2404 break;
2405 case TIPC_DEST_DROPPABLE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002406 tsk_set_unreturnable(tsk, value);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002407 break;
2408 case TIPC_CONN_TIMEOUT:
Allan Stephensa0f40f02011-05-26 13:44:34 -04002409 tipc_sk(sk)->conn_timeout = value;
Allan Stephens0c3141e2008-04-15 00:22:02 -07002410 /* no need to set "res", since already 0 at this point */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002411 break;
2412 default:
2413 res = -EINVAL;
2414 }
2415
Allan Stephens0c3141e2008-04-15 00:22:02 -07002416 release_sock(sk);
2417
Per Lidenb97bf3f2006-01-02 19:04:38 +01002418 return res;
2419}
2420
2421/**
Ying Xue247f0f32014-02-18 16:06:46 +08002422 * tipc_getsockopt - get socket option
Per Lidenb97bf3f2006-01-02 19:04:38 +01002423 * @sock: socket structure
2424 * @lvl: option level
2425 * @opt: option identifier
2426 * @ov: receptacle for option value
2427 * @ol: receptacle for length of option value
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002428 *
2429 * For stream sockets only, returns 0 length result for all IPPROTO_TCP options
Per Lidenb97bf3f2006-01-02 19:04:38 +01002430 * (to ease compatibility).
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002431 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002432 * Returns 0 on success, errno otherwise
2433 */
Ying Xue247f0f32014-02-18 16:06:46 +08002434static int tipc_getsockopt(struct socket *sock, int lvl, int opt,
2435 char __user *ov, int __user *ol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002436{
Allan Stephens0c3141e2008-04-15 00:22:02 -07002437 struct sock *sk = sock->sk;
Jon Paul Maloy58ed9442014-03-12 11:31:12 -04002438 struct tipc_sock *tsk = tipc_sk(sk);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002439 int len;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002440 u32 value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002441 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002442
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002443 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
2444 return put_user(0, ol);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002445 if (lvl != SOL_TIPC)
2446 return -ENOPROTOOPT;
Allan Stephens2db99832010-12-31 18:59:33 +00002447 res = get_user(len, ol);
2448 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002449 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002450
Allan Stephens0c3141e2008-04-15 00:22:02 -07002451 lock_sock(sk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002452
2453 switch (opt) {
2454 case TIPC_IMPORTANCE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002455 value = tsk_importance(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002456 break;
2457 case TIPC_SRC_DROPPABLE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002458 value = tsk_unreliable(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002459 break;
2460 case TIPC_DEST_DROPPABLE:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002461 value = tsk_unreturnable(tsk);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002462 break;
2463 case TIPC_CONN_TIMEOUT:
Jon Paul Maloy301bae52014-08-22 18:09:20 -04002464 value = tsk->conn_timeout;
Allan Stephens0c3141e2008-04-15 00:22:02 -07002465 /* no need to set "res", since already 0 at this point */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002466 break;
Allan Stephens0e659672010-12-31 18:59:32 +00002467 case TIPC_NODE_RECVQ_DEPTH:
Ying Xue9da3d472012-11-27 06:15:27 -05002468 value = 0; /* was tipc_queue_size, now obsolete */
oscar.medina@motorola.com66506132009-06-30 03:25:39 +00002469 break;
Allan Stephens0e659672010-12-31 18:59:32 +00002470 case TIPC_SOCK_RECVQ_DEPTH:
oscar.medina@motorola.com66506132009-06-30 03:25:39 +00002471 value = skb_queue_len(&sk->sk_receive_queue);
2472 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002473 default:
2474 res = -EINVAL;
2475 }
2476
Allan Stephens0c3141e2008-04-15 00:22:02 -07002477 release_sock(sk);
2478
Paul Gortmaker25860c32010-12-31 18:59:31 +00002479 if (res)
2480 return res; /* "get" failed */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002481
Paul Gortmaker25860c32010-12-31 18:59:31 +00002482 if (len < sizeof(value))
2483 return -EINVAL;
2484
2485 if (copy_to_user(ov, &value, sizeof(value)))
2486 return -EFAULT;
2487
2488 return put_user(sizeof(value), ol);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002489}
2490
Ying Xuef2f98002015-01-09 15:27:05 +08002491static int tipc_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
Erik Hugne78acb1f2014-04-24 16:26:47 +02002492{
Ying Xuef2f98002015-01-09 15:27:05 +08002493 struct sock *sk = sock->sk;
Erik Hugne78acb1f2014-04-24 16:26:47 +02002494 struct tipc_sioc_ln_req lnr;
2495 void __user *argp = (void __user *)arg;
2496
2497 switch (cmd) {
2498 case SIOCGETLINKNAME:
2499 if (copy_from_user(&lnr, argp, sizeof(lnr)))
2500 return -EFAULT;
Ying Xuef2f98002015-01-09 15:27:05 +08002501 if (!tipc_node_get_linkname(sock_net(sk),
2502 lnr.bearer_id & 0xffff, lnr.peer,
Erik Hugne78acb1f2014-04-24 16:26:47 +02002503 lnr.linkname, TIPC_MAX_LINK_NAME)) {
2504 if (copy_to_user(argp, &lnr, sizeof(lnr)))
2505 return -EFAULT;
2506 return 0;
2507 }
2508 return -EADDRNOTAVAIL;
Erik Hugne78acb1f2014-04-24 16:26:47 +02002509 default:
2510 return -ENOIOCTLCMD;
2511 }
2512}
2513
Ben Hutchingsae86b9e2012-07-10 10:55:35 +00002514/* Protocol switches for the various types of TIPC sockets */
2515
Florian Westphalbca65ea2008-02-07 18:18:01 -08002516static const struct proto_ops msg_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00002517 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002518 .family = AF_TIPC,
Ying Xue247f0f32014-02-18 16:06:46 +08002519 .release = tipc_release,
2520 .bind = tipc_bind,
2521 .connect = tipc_connect,
Allan Stephens5eee6a62007-06-10 17:24:55 -07002522 .socketpair = sock_no_socketpair,
Ying Xue245f3d32011-07-06 06:01:13 -04002523 .accept = sock_no_accept,
Ying Xue247f0f32014-02-18 16:06:46 +08002524 .getname = tipc_getname,
2525 .poll = tipc_poll,
Erik Hugne78acb1f2014-04-24 16:26:47 +02002526 .ioctl = tipc_ioctl,
Ying Xue245f3d32011-07-06 06:01:13 -04002527 .listen = sock_no_listen,
Ying Xue247f0f32014-02-18 16:06:46 +08002528 .shutdown = tipc_shutdown,
2529 .setsockopt = tipc_setsockopt,
2530 .getsockopt = tipc_getsockopt,
2531 .sendmsg = tipc_sendmsg,
2532 .recvmsg = tipc_recvmsg,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09002533 .mmap = sock_no_mmap,
2534 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01002535};
2536
Florian Westphalbca65ea2008-02-07 18:18:01 -08002537static const struct proto_ops packet_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00002538 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002539 .family = AF_TIPC,
Ying Xue247f0f32014-02-18 16:06:46 +08002540 .release = tipc_release,
2541 .bind = tipc_bind,
2542 .connect = tipc_connect,
Allan Stephens5eee6a62007-06-10 17:24:55 -07002543 .socketpair = sock_no_socketpair,
Ying Xue247f0f32014-02-18 16:06:46 +08002544 .accept = tipc_accept,
2545 .getname = tipc_getname,
2546 .poll = tipc_poll,
Erik Hugne78acb1f2014-04-24 16:26:47 +02002547 .ioctl = tipc_ioctl,
Ying Xue247f0f32014-02-18 16:06:46 +08002548 .listen = tipc_listen,
2549 .shutdown = tipc_shutdown,
2550 .setsockopt = tipc_setsockopt,
2551 .getsockopt = tipc_getsockopt,
2552 .sendmsg = tipc_send_packet,
2553 .recvmsg = tipc_recvmsg,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09002554 .mmap = sock_no_mmap,
2555 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01002556};
2557
Florian Westphalbca65ea2008-02-07 18:18:01 -08002558static const struct proto_ops stream_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00002559 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002560 .family = AF_TIPC,
Ying Xue247f0f32014-02-18 16:06:46 +08002561 .release = tipc_release,
2562 .bind = tipc_bind,
2563 .connect = tipc_connect,
Allan Stephens5eee6a62007-06-10 17:24:55 -07002564 .socketpair = sock_no_socketpair,
Ying Xue247f0f32014-02-18 16:06:46 +08002565 .accept = tipc_accept,
2566 .getname = tipc_getname,
2567 .poll = tipc_poll,
Erik Hugne78acb1f2014-04-24 16:26:47 +02002568 .ioctl = tipc_ioctl,
Ying Xue247f0f32014-02-18 16:06:46 +08002569 .listen = tipc_listen,
2570 .shutdown = tipc_shutdown,
2571 .setsockopt = tipc_setsockopt,
2572 .getsockopt = tipc_getsockopt,
2573 .sendmsg = tipc_send_stream,
2574 .recvmsg = tipc_recv_stream,
YOSHIFUJI Hideaki82387452007-07-19 10:44:56 +09002575 .mmap = sock_no_mmap,
2576 .sendpage = sock_no_sendpage
Per Lidenb97bf3f2006-01-02 19:04:38 +01002577};
2578
Florian Westphalbca65ea2008-02-07 18:18:01 -08002579static const struct net_proto_family tipc_family_ops = {
Allan Stephens0e659672010-12-31 18:59:32 +00002580 .owner = THIS_MODULE,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002581 .family = AF_TIPC,
Ying Xuec5fa7b32013-06-17 10:54:39 -04002582 .create = tipc_sk_create
Per Lidenb97bf3f2006-01-02 19:04:38 +01002583};
2584
2585static struct proto tipc_proto = {
2586 .name = "TIPC",
2587 .owner = THIS_MODULE,
Ying Xuecc79dd12013-06-17 10:54:37 -04002588 .obj_size = sizeof(struct tipc_sock),
2589 .sysctl_rmem = sysctl_tipc_rmem
Per Lidenb97bf3f2006-01-02 19:04:38 +01002590};
2591
2592/**
Per Liden4323add2006-01-18 00:38:21 +01002593 * tipc_socket_init - initialize TIPC socket interface
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002594 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002595 * Returns 0 on success, errno otherwise
2596 */
Per Liden4323add2006-01-18 00:38:21 +01002597int tipc_socket_init(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002598{
2599 int res;
2600
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002601 res = proto_register(&tipc_proto, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002602 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002603 pr_err("Failed to register TIPC protocol type\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002604 goto out;
2605 }
2606
2607 res = sock_register(&tipc_family_ops);
2608 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04002609 pr_err("Failed to register TIPC socket type\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002610 proto_unregister(&tipc_proto);
2611 goto out;
2612 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002613 out:
2614 return res;
2615}
2616
2617/**
Per Liden4323add2006-01-18 00:38:21 +01002618 * tipc_socket_stop - stop TIPC socket interface
Per Lidenb97bf3f2006-01-02 19:04:38 +01002619 */
Per Liden4323add2006-01-18 00:38:21 +01002620void tipc_socket_stop(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002621{
Per Lidenb97bf3f2006-01-02 19:04:38 +01002622 sock_unregister(tipc_family_ops.family);
2623 proto_unregister(&tipc_proto);
2624}
Richard Alpe34b78a122014-11-20 10:29:10 +01002625
2626/* Caller should hold socket lock for the passed tipc socket. */
Richard Alped8182802014-11-24 11:10:29 +01002627static int __tipc_nl_add_sk_con(struct sk_buff *skb, struct tipc_sock *tsk)
Richard Alpe34b78a122014-11-20 10:29:10 +01002628{
2629 u32 peer_node;
2630 u32 peer_port;
2631 struct nlattr *nest;
2632
2633 peer_node = tsk_peer_node(tsk);
2634 peer_port = tsk_peer_port(tsk);
2635
2636 nest = nla_nest_start(skb, TIPC_NLA_SOCK_CON);
2637
2638 if (nla_put_u32(skb, TIPC_NLA_CON_NODE, peer_node))
2639 goto msg_full;
2640 if (nla_put_u32(skb, TIPC_NLA_CON_SOCK, peer_port))
2641 goto msg_full;
2642
2643 if (tsk->conn_type != 0) {
2644 if (nla_put_flag(skb, TIPC_NLA_CON_FLAG))
2645 goto msg_full;
2646 if (nla_put_u32(skb, TIPC_NLA_CON_TYPE, tsk->conn_type))
2647 goto msg_full;
2648 if (nla_put_u32(skb, TIPC_NLA_CON_INST, tsk->conn_instance))
2649 goto msg_full;
2650 }
2651 nla_nest_end(skb, nest);
2652
2653 return 0;
2654
2655msg_full:
2656 nla_nest_cancel(skb, nest);
2657
2658 return -EMSGSIZE;
2659}
2660
2661/* Caller should hold socket lock for the passed tipc socket. */
Richard Alped8182802014-11-24 11:10:29 +01002662static int __tipc_nl_add_sk(struct sk_buff *skb, struct netlink_callback *cb,
2663 struct tipc_sock *tsk)
Richard Alpe34b78a122014-11-20 10:29:10 +01002664{
2665 int err;
2666 void *hdr;
2667 struct nlattr *attrs;
Ying Xue34747532015-01-09 15:27:10 +08002668 struct net *net = sock_net(skb->sk);
2669 struct tipc_net *tn = net_generic(net, tipc_net_id);
Richard Alpe34b78a122014-11-20 10:29:10 +01002670
2671 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
Richard Alpebfb3e5d2015-02-09 09:50:03 +01002672 &tipc_genl_family, NLM_F_MULTI, TIPC_NL_SOCK_GET);
Richard Alpe34b78a122014-11-20 10:29:10 +01002673 if (!hdr)
2674 goto msg_cancel;
2675
2676 attrs = nla_nest_start(skb, TIPC_NLA_SOCK);
2677 if (!attrs)
2678 goto genlmsg_cancel;
Ying Xue07f6c4b2015-01-07 13:41:58 +08002679 if (nla_put_u32(skb, TIPC_NLA_SOCK_REF, tsk->portid))
Richard Alpe34b78a122014-11-20 10:29:10 +01002680 goto attr_msg_cancel;
Ying Xue34747532015-01-09 15:27:10 +08002681 if (nla_put_u32(skb, TIPC_NLA_SOCK_ADDR, tn->own_addr))
Richard Alpe34b78a122014-11-20 10:29:10 +01002682 goto attr_msg_cancel;
2683
2684 if (tsk->connected) {
2685 err = __tipc_nl_add_sk_con(skb, tsk);
2686 if (err)
2687 goto attr_msg_cancel;
2688 } else if (!list_empty(&tsk->publications)) {
2689 if (nla_put_flag(skb, TIPC_NLA_SOCK_HAS_PUBL))
2690 goto attr_msg_cancel;
2691 }
2692 nla_nest_end(skb, attrs);
2693 genlmsg_end(skb, hdr);
2694
2695 return 0;
2696
2697attr_msg_cancel:
2698 nla_nest_cancel(skb, attrs);
2699genlmsg_cancel:
2700 genlmsg_cancel(skb, hdr);
2701msg_cancel:
2702 return -EMSGSIZE;
2703}
2704
2705int tipc_nl_sk_dump(struct sk_buff *skb, struct netlink_callback *cb)
2706{
2707 int err;
2708 struct tipc_sock *tsk;
Ying Xue07f6c4b2015-01-07 13:41:58 +08002709 const struct bucket_table *tbl;
2710 struct rhash_head *pos;
Ying Xuee05b31f2015-01-09 15:27:08 +08002711 struct net *net = sock_net(skb->sk);
2712 struct tipc_net *tn = net_generic(net, tipc_net_id);
Richard Alped6e164e2015-01-16 12:30:40 +01002713 u32 tbl_id = cb->args[0];
2714 u32 prev_portid = cb->args[1];
Richard Alpe34b78a122014-11-20 10:29:10 +01002715
Ying Xue07f6c4b2015-01-07 13:41:58 +08002716 rcu_read_lock();
Ying Xuee05b31f2015-01-09 15:27:08 +08002717 tbl = rht_dereference_rcu((&tn->sk_rht)->tbl, &tn->sk_rht);
Richard Alped6e164e2015-01-16 12:30:40 +01002718 for (; tbl_id < tbl->size; tbl_id++) {
2719 rht_for_each_entry_rcu(tsk, pos, tbl, tbl_id, node) {
Ying Xue07f6c4b2015-01-07 13:41:58 +08002720 spin_lock_bh(&tsk->sk.sk_lock.slock);
Richard Alped6e164e2015-01-16 12:30:40 +01002721 if (prev_portid && prev_portid != tsk->portid) {
2722 spin_unlock_bh(&tsk->sk.sk_lock.slock);
2723 continue;
2724 }
Richard Alpe34b78a122014-11-20 10:29:10 +01002725
Richard Alped6e164e2015-01-16 12:30:40 +01002726 err = __tipc_nl_add_sk(skb, cb, tsk);
2727 if (err) {
2728 prev_portid = tsk->portid;
2729 spin_unlock_bh(&tsk->sk.sk_lock.slock);
2730 goto out;
2731 }
2732 prev_portid = 0;
2733 spin_unlock_bh(&tsk->sk.sk_lock.slock);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002734 }
Richard Alpe34b78a122014-11-20 10:29:10 +01002735 }
Richard Alped6e164e2015-01-16 12:30:40 +01002736out:
Ying Xue07f6c4b2015-01-07 13:41:58 +08002737 rcu_read_unlock();
Richard Alped6e164e2015-01-16 12:30:40 +01002738 cb->args[0] = tbl_id;
2739 cb->args[1] = prev_portid;
Richard Alpe34b78a122014-11-20 10:29:10 +01002740
2741 return skb->len;
2742}
Richard Alpe1a1a1432014-11-20 10:29:11 +01002743
2744/* Caller should hold socket lock for the passed tipc socket. */
Richard Alped8182802014-11-24 11:10:29 +01002745static int __tipc_nl_add_sk_publ(struct sk_buff *skb,
2746 struct netlink_callback *cb,
2747 struct publication *publ)
Richard Alpe1a1a1432014-11-20 10:29:11 +01002748{
2749 void *hdr;
2750 struct nlattr *attrs;
2751
2752 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
Richard Alpebfb3e5d2015-02-09 09:50:03 +01002753 &tipc_genl_family, NLM_F_MULTI, TIPC_NL_PUBL_GET);
Richard Alpe1a1a1432014-11-20 10:29:11 +01002754 if (!hdr)
2755 goto msg_cancel;
2756
2757 attrs = nla_nest_start(skb, TIPC_NLA_PUBL);
2758 if (!attrs)
2759 goto genlmsg_cancel;
2760
2761 if (nla_put_u32(skb, TIPC_NLA_PUBL_KEY, publ->key))
2762 goto attr_msg_cancel;
2763 if (nla_put_u32(skb, TIPC_NLA_PUBL_TYPE, publ->type))
2764 goto attr_msg_cancel;
2765 if (nla_put_u32(skb, TIPC_NLA_PUBL_LOWER, publ->lower))
2766 goto attr_msg_cancel;
2767 if (nla_put_u32(skb, TIPC_NLA_PUBL_UPPER, publ->upper))
2768 goto attr_msg_cancel;
2769
2770 nla_nest_end(skb, attrs);
2771 genlmsg_end(skb, hdr);
2772
2773 return 0;
2774
2775attr_msg_cancel:
2776 nla_nest_cancel(skb, attrs);
2777genlmsg_cancel:
2778 genlmsg_cancel(skb, hdr);
2779msg_cancel:
2780 return -EMSGSIZE;
2781}
2782
2783/* Caller should hold socket lock for the passed tipc socket. */
Richard Alped8182802014-11-24 11:10:29 +01002784static int __tipc_nl_list_sk_publ(struct sk_buff *skb,
2785 struct netlink_callback *cb,
2786 struct tipc_sock *tsk, u32 *last_publ)
Richard Alpe1a1a1432014-11-20 10:29:11 +01002787{
2788 int err;
2789 struct publication *p;
2790
2791 if (*last_publ) {
2792 list_for_each_entry(p, &tsk->publications, pport_list) {
2793 if (p->key == *last_publ)
2794 break;
2795 }
2796 if (p->key != *last_publ) {
2797 /* We never set seq or call nl_dump_check_consistent()
2798 * this means that setting prev_seq here will cause the
2799 * consistence check to fail in the netlink callback
2800 * handler. Resulting in the last NLMSG_DONE message
2801 * having the NLM_F_DUMP_INTR flag set.
2802 */
2803 cb->prev_seq = 1;
2804 *last_publ = 0;
2805 return -EPIPE;
2806 }
2807 } else {
2808 p = list_first_entry(&tsk->publications, struct publication,
2809 pport_list);
2810 }
2811
2812 list_for_each_entry_from(p, &tsk->publications, pport_list) {
2813 err = __tipc_nl_add_sk_publ(skb, cb, p);
2814 if (err) {
2815 *last_publ = p->key;
2816 return err;
2817 }
2818 }
2819 *last_publ = 0;
2820
2821 return 0;
2822}
2823
2824int tipc_nl_publ_dump(struct sk_buff *skb, struct netlink_callback *cb)
2825{
2826 int err;
Ying Xue07f6c4b2015-01-07 13:41:58 +08002827 u32 tsk_portid = cb->args[0];
Richard Alpe1a1a1432014-11-20 10:29:11 +01002828 u32 last_publ = cb->args[1];
2829 u32 done = cb->args[2];
Ying Xuee05b31f2015-01-09 15:27:08 +08002830 struct net *net = sock_net(skb->sk);
Richard Alpe1a1a1432014-11-20 10:29:11 +01002831 struct tipc_sock *tsk;
2832
Ying Xue07f6c4b2015-01-07 13:41:58 +08002833 if (!tsk_portid) {
Richard Alpe1a1a1432014-11-20 10:29:11 +01002834 struct nlattr **attrs;
2835 struct nlattr *sock[TIPC_NLA_SOCK_MAX + 1];
2836
2837 err = tipc_nlmsg_parse(cb->nlh, &attrs);
2838 if (err)
2839 return err;
2840
Richard Alpe45e093a2016-05-16 11:14:54 +02002841 if (!attrs[TIPC_NLA_SOCK])
2842 return -EINVAL;
2843
Richard Alpe1a1a1432014-11-20 10:29:11 +01002844 err = nla_parse_nested(sock, TIPC_NLA_SOCK_MAX,
2845 attrs[TIPC_NLA_SOCK],
2846 tipc_nl_sock_policy);
2847 if (err)
2848 return err;
2849
2850 if (!sock[TIPC_NLA_SOCK_REF])
2851 return -EINVAL;
2852
Ying Xue07f6c4b2015-01-07 13:41:58 +08002853 tsk_portid = nla_get_u32(sock[TIPC_NLA_SOCK_REF]);
Richard Alpe1a1a1432014-11-20 10:29:11 +01002854 }
2855
2856 if (done)
2857 return 0;
2858
Ying Xuee05b31f2015-01-09 15:27:08 +08002859 tsk = tipc_sk_lookup(net, tsk_portid);
Richard Alpe1a1a1432014-11-20 10:29:11 +01002860 if (!tsk)
2861 return -EINVAL;
2862
2863 lock_sock(&tsk->sk);
2864 err = __tipc_nl_list_sk_publ(skb, cb, tsk, &last_publ);
2865 if (!err)
2866 done = 1;
2867 release_sock(&tsk->sk);
Ying Xue07f6c4b2015-01-07 13:41:58 +08002868 sock_put(&tsk->sk);
Richard Alpe1a1a1432014-11-20 10:29:11 +01002869
Ying Xue07f6c4b2015-01-07 13:41:58 +08002870 cb->args[0] = tsk_portid;
Richard Alpe1a1a1432014-11-20 10:29:11 +01002871 cb->args[1] = last_publ;
2872 cb->args[2] = done;
2873
2874 return skb->len;
2875}