]>
Commit | Line | Data |
---|---|---|
b97bf3fd | 1 | /* |
02c00c2a | 2 | * net/tipc/socket.c: TIPC socket API |
c4307285 | 3 | * |
75da2163 | 4 | * Copyright (c) 2001-2007, 2012-2017, Ericsson AB |
c5fa7b3c | 5 | * Copyright (c) 2004-2008, 2010-2013, Wind River Systems |
b97bf3fd PL |
6 | * All rights reserved. |
7 | * | |
9ea1fd3c | 8 | * Redistribution and use in source and binary forms, with or without |
b97bf3fd PL |
9 | * modification, are permitted provided that the following conditions are met: |
10 | * | |
9ea1fd3c PL |
11 | * 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. | |
b97bf3fd | 19 | * |
9ea1fd3c PL |
20 | * 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 | |
b97bf3fd PL |
34 | * POSSIBILITY OF SUCH DAMAGE. |
35 | */ | |
36 | ||
07f6c4bc | 37 | #include <linux/rhashtable.h> |
174cd4b1 IM |
38 | #include <linux/sched/signal.h> |
39 | ||
b97bf3fd | 40 | #include "core.h" |
e2dafe87 | 41 | #include "name_table.h" |
78acb1f9 | 42 | #include "node.h" |
e2dafe87 | 43 | #include "link.h" |
c637c103 | 44 | #include "name_distr.h" |
2e84c60b | 45 | #include "socket.h" |
a6bf70f7 | 46 | #include "bcast.h" |
49cc66ea | 47 | #include "netlink.h" |
75da2163 | 48 | #include "group.h" |
b4b9771b | 49 | #include "trace.h" |
2cf8aa19 | 50 | |
67879274 | 51 | #define CONN_TIMEOUT_DEFAULT 8000 /* default connect timeout = 8s */ |
0d5fcebf | 52 | #define CONN_PROBING_INTV msecs_to_jiffies(3600000) /* [ms] => 1 h */ |
07f6c4bc | 53 | #define TIPC_FWD_MSG 1 |
07f6c4bc YX |
54 | #define TIPC_MAX_PORT 0xffffffff |
55 | #define TIPC_MIN_PORT 1 | |
e9f8b101 | 56 | #define TIPC_ACK_RATE 4 /* ACK at 1/4 of of rcv window size */ |
301bae56 | 57 | |
0c288c86 PB |
58 | enum { |
59 | TIPC_LISTEN = TCP_LISTEN, | |
8ea642ee | 60 | TIPC_ESTABLISHED = TCP_ESTABLISHED, |
438adcaf | 61 | TIPC_OPEN = TCP_CLOSE, |
9fd4b070 | 62 | TIPC_DISCONNECTING = TCP_CLOSE_WAIT, |
99a20889 | 63 | TIPC_CONNECTING = TCP_SYN_SENT, |
0c288c86 PB |
64 | }; |
65 | ||
31c82a2d JM |
66 | struct sockaddr_pair { |
67 | struct sockaddr_tipc sock; | |
68 | struct sockaddr_tipc member; | |
69 | }; | |
70 | ||
301bae56 JPM |
71 | /** |
72 | * struct tipc_sock - TIPC socket structure | |
73 | * @sk: socket - interacts with 'port' and with user via the socket API | |
301bae56 JPM |
74 | * @conn_type: TIPC type used when connection was established |
75 | * @conn_instance: TIPC instance used when connection was established | |
76 | * @published: non-zero if port has one or more associated names | |
77 | * @max_pkt: maximum packet size "hint" used when building messages sent by port | |
07f6c4bc | 78 | * @portid: unique port identity in TIPC socket hash table |
301bae56 | 79 | * @phdr: preformatted message header used when sending messages |
365ad353 | 80 | * #cong_links: list of congested links |
301bae56 | 81 | * @publications: list of publications for port |
365ad353 | 82 | * @blocking_link: address of the congested link we are currently sleeping on |
301bae56 | 83 | * @pub_count: total # of publications port has made during its lifetime |
301bae56 JPM |
84 | * @conn_timeout: the time we can wait for an unresponded setup request |
85 | * @dupl_rcvcnt: number of bytes counted twice, in both backlog and rcv queue | |
365ad353 | 86 | * @cong_link_cnt: number of congested links |
75da2163 | 87 | * @snt_unacked: # messages sent by socket, and not yet acked by peer |
301bae56 | 88 | * @rcv_unacked: # messages read by user, but not yet acked back to peer |
aeda16b6 | 89 | * @peer: 'connected' peer for dgram/rdm |
07f6c4bc | 90 | * @node: hash table node |
01fd12bb | 91 | * @mc_method: cookie for use between socket and broadcast layer |
07f6c4bc | 92 | * @rcu: rcu struct for tipc_sock |
301bae56 JPM |
93 | */ |
94 | struct tipc_sock { | |
95 | struct sock sk; | |
301bae56 JPM |
96 | u32 conn_type; |
97 | u32 conn_instance; | |
98 | int published; | |
99 | u32 max_pkt; | |
07f6c4bc | 100 | u32 portid; |
301bae56 | 101 | struct tipc_msg phdr; |
365ad353 | 102 | struct list_head cong_links; |
301bae56 JPM |
103 | struct list_head publications; |
104 | u32 pub_count; | |
301bae56 | 105 | atomic_t dupl_rcvcnt; |
67879274 | 106 | u16 conn_timeout; |
8ea642ee | 107 | bool probe_unacked; |
365ad353 | 108 | u16 cong_link_cnt; |
10724cc7 JPM |
109 | u16 snt_unacked; |
110 | u16 snd_win; | |
60020e18 | 111 | u16 peer_caps; |
10724cc7 JPM |
112 | u16 rcv_unacked; |
113 | u16 rcv_win; | |
aeda16b6 | 114 | struct sockaddr_tipc peer; |
07f6c4bc | 115 | struct rhash_head node; |
01fd12bb | 116 | struct tipc_mc_method mc_method; |
07f6c4bc | 117 | struct rcu_head rcu; |
75da2163 | 118 | struct tipc_group *group; |
60c25306 | 119 | bool group_is_open; |
301bae56 | 120 | }; |
b97bf3fd | 121 | |
64ac5f59 | 122 | static int tipc_sk_backlog_rcv(struct sock *sk, struct sk_buff *skb); |
676d2369 | 123 | static void tipc_data_ready(struct sock *sk); |
f288bef4 | 124 | static void tipc_write_space(struct sock *sk); |
f4195d1e | 125 | static void tipc_sock_destruct(struct sock *sk); |
247f0f3c | 126 | static int tipc_release(struct socket *sock); |
cdfbabfb DH |
127 | static int tipc_accept(struct socket *sock, struct socket *new_sock, int flags, |
128 | bool kern); | |
31b102bb | 129 | static void tipc_sk_timeout(struct timer_list *t); |
301bae56 | 130 | static int tipc_sk_publish(struct tipc_sock *tsk, uint scope, |
0fc87aae | 131 | struct tipc_name_seq const *seq); |
301bae56 | 132 | static int tipc_sk_withdraw(struct tipc_sock *tsk, uint scope, |
0fc87aae | 133 | struct tipc_name_seq const *seq); |
75da2163 | 134 | static int tipc_sk_leave(struct tipc_sock *tsk); |
e05b31f4 | 135 | static struct tipc_sock *tipc_sk_lookup(struct net *net, u32 portid); |
07f6c4bc YX |
136 | static int tipc_sk_insert(struct tipc_sock *tsk); |
137 | static void tipc_sk_remove(struct tipc_sock *tsk); | |
365ad353 | 138 | static int __tipc_sendstream(struct socket *sock, struct msghdr *m, size_t dsz); |
39a0295f | 139 | static int __tipc_sendmsg(struct socket *sock, struct msghdr *m, size_t dsz); |
b97bf3fd | 140 | |
bca65eae FW |
141 | static const struct proto_ops packet_ops; |
142 | static const struct proto_ops stream_ops; | |
143 | static const struct proto_ops msg_ops; | |
b97bf3fd | 144 | static struct proto tipc_proto; |
6cca7289 HX |
145 | static const struct rhashtable_params tsk_rht_params; |
146 | ||
c5898636 JPM |
147 | static u32 tsk_own_node(struct tipc_sock *tsk) |
148 | { | |
149 | return msg_prevnode(&tsk->phdr); | |
150 | } | |
151 | ||
301bae56 | 152 | static u32 tsk_peer_node(struct tipc_sock *tsk) |
2e84c60b | 153 | { |
301bae56 | 154 | return msg_destnode(&tsk->phdr); |
2e84c60b JPM |
155 | } |
156 | ||
301bae56 | 157 | static u32 tsk_peer_port(struct tipc_sock *tsk) |
2e84c60b | 158 | { |
301bae56 | 159 | return msg_destport(&tsk->phdr); |
2e84c60b JPM |
160 | } |
161 | ||
301bae56 | 162 | static bool tsk_unreliable(struct tipc_sock *tsk) |
2e84c60b | 163 | { |
301bae56 | 164 | return msg_src_droppable(&tsk->phdr) != 0; |
2e84c60b JPM |
165 | } |
166 | ||
301bae56 | 167 | static void tsk_set_unreliable(struct tipc_sock *tsk, bool unreliable) |
2e84c60b | 168 | { |
301bae56 | 169 | msg_set_src_droppable(&tsk->phdr, unreliable ? 1 : 0); |
2e84c60b JPM |
170 | } |
171 | ||
301bae56 | 172 | static bool tsk_unreturnable(struct tipc_sock *tsk) |
2e84c60b | 173 | { |
301bae56 | 174 | return msg_dest_droppable(&tsk->phdr) != 0; |
2e84c60b JPM |
175 | } |
176 | ||
301bae56 | 177 | static void tsk_set_unreturnable(struct tipc_sock *tsk, bool unreturnable) |
2e84c60b | 178 | { |
301bae56 | 179 | msg_set_dest_droppable(&tsk->phdr, unreturnable ? 1 : 0); |
2e84c60b JPM |
180 | } |
181 | ||
301bae56 | 182 | static int tsk_importance(struct tipc_sock *tsk) |
2e84c60b | 183 | { |
301bae56 | 184 | return msg_importance(&tsk->phdr); |
2e84c60b JPM |
185 | } |
186 | ||
301bae56 | 187 | static int tsk_set_importance(struct tipc_sock *tsk, int imp) |
2e84c60b JPM |
188 | { |
189 | if (imp > TIPC_CRITICAL_IMPORTANCE) | |
190 | return -EINVAL; | |
301bae56 | 191 | msg_set_importance(&tsk->phdr, (u32)imp); |
2e84c60b JPM |
192 | return 0; |
193 | } | |
8826cde6 | 194 | |
301bae56 JPM |
195 | static struct tipc_sock *tipc_sk(const struct sock *sk) |
196 | { | |
197 | return container_of(sk, struct tipc_sock, sk); | |
198 | } | |
199 | ||
10724cc7 | 200 | static bool tsk_conn_cong(struct tipc_sock *tsk) |
301bae56 | 201 | { |
6998cc6e | 202 | return tsk->snt_unacked > tsk->snd_win; |
10724cc7 JPM |
203 | } |
204 | ||
b7d42635 JM |
205 | static u16 tsk_blocks(int len) |
206 | { | |
207 | return ((len / FLOWCTL_BLK_SZ) + 1); | |
208 | } | |
209 | ||
10724cc7 JPM |
210 | /* tsk_blocks(): translate a buffer size in bytes to number of |
211 | * advertisable blocks, taking into account the ratio truesize(len)/len | |
212 | * We can trust that this ratio is always < 4 for len >= FLOWCTL_BLK_SZ | |
213 | */ | |
214 | static u16 tsk_adv_blocks(int len) | |
215 | { | |
216 | return len / FLOWCTL_BLK_SZ / 4; | |
217 | } | |
218 | ||
219 | /* tsk_inc(): increment counter for sent or received data | |
220 | * - If block based flow control is not supported by peer we | |
221 | * fall back to message based ditto, incrementing the counter | |
222 | */ | |
223 | static u16 tsk_inc(struct tipc_sock *tsk, int msglen) | |
224 | { | |
225 | if (likely(tsk->peer_caps & TIPC_BLOCK_FLOWCTL)) | |
226 | return ((msglen / FLOWCTL_BLK_SZ) + 1); | |
227 | return 1; | |
301bae56 JPM |
228 | } |
229 | ||
0c3141e9 | 230 | /** |
2e84c60b | 231 | * tsk_advance_rx_queue - discard first buffer in socket receive queue |
0c3141e9 AS |
232 | * |
233 | * Caller must hold socket lock | |
b97bf3fd | 234 | */ |
2e84c60b | 235 | static void tsk_advance_rx_queue(struct sock *sk) |
b97bf3fd | 236 | { |
01e661eb | 237 | trace_tipc_sk_advance_rx(sk, NULL, TIPC_DUMP_SK_RCVQ, " "); |
5f6d9123 | 238 | kfree_skb(__skb_dequeue(&sk->sk_receive_queue)); |
b97bf3fd PL |
239 | } |
240 | ||
bcd3ffd4 JPM |
241 | /* tipc_sk_respond() : send response message back to sender |
242 | */ | |
243 | static void tipc_sk_respond(struct sock *sk, struct sk_buff *skb, int err) | |
244 | { | |
245 | u32 selector; | |
246 | u32 dnode; | |
247 | u32 onode = tipc_own_addr(sock_net(sk)); | |
248 | ||
249 | if (!tipc_msg_reverse(onode, &skb, err)) | |
250 | return; | |
251 | ||
01e661eb | 252 | trace_tipc_sk_rej_msg(sk, skb, TIPC_DUMP_NONE, "@sk_respond!"); |
bcd3ffd4 JPM |
253 | dnode = msg_destnode(buf_msg(skb)); |
254 | selector = msg_origport(buf_msg(skb)); | |
255 | tipc_node_xmit_skb(sock_net(sk), skb, dnode, selector); | |
256 | } | |
257 | ||
b97bf3fd | 258 | /** |
2e84c60b | 259 | * tsk_rej_rx_queue - reject all buffers in socket receive queue |
0c3141e9 AS |
260 | * |
261 | * Caller must hold socket lock | |
b97bf3fd | 262 | */ |
2e84c60b | 263 | static void tsk_rej_rx_queue(struct sock *sk) |
b97bf3fd | 264 | { |
a6ca1094 | 265 | struct sk_buff *skb; |
0c3141e9 | 266 | |
bcd3ffd4 JPM |
267 | while ((skb = __skb_dequeue(&sk->sk_receive_queue))) |
268 | tipc_sk_respond(sk, skb, TIPC_ERR_NO_PORT); | |
b97bf3fd PL |
269 | } |
270 | ||
d6fb7e9c PB |
271 | static bool tipc_sk_connected(struct sock *sk) |
272 | { | |
f40acbaf | 273 | return sk->sk_state == TIPC_ESTABLISHED; |
d6fb7e9c PB |
274 | } |
275 | ||
c752023a PB |
276 | /* tipc_sk_type_connectionless - check if the socket is datagram socket |
277 | * @sk: socket | |
278 | * | |
279 | * Returns true if connection less, false otherwise | |
280 | */ | |
281 | static bool tipc_sk_type_connectionless(struct sock *sk) | |
282 | { | |
283 | return sk->sk_type == SOCK_RDM || sk->sk_type == SOCK_DGRAM; | |
284 | } | |
285 | ||
2e84c60b | 286 | /* tsk_peer_msg - verify if message was sent by connected port's peer |
0fc87aae JPM |
287 | * |
288 | * Handles cases where the node's network address has changed from | |
289 | * the default of <0.0.0> to its configured setting. | |
290 | */ | |
2e84c60b | 291 | static bool tsk_peer_msg(struct tipc_sock *tsk, struct tipc_msg *msg) |
0fc87aae | 292 | { |
d6fb7e9c | 293 | struct sock *sk = &tsk->sk; |
23fd3eac | 294 | u32 self = tipc_own_addr(sock_net(sk)); |
301bae56 | 295 | u32 peer_port = tsk_peer_port(tsk); |
23fd3eac | 296 | u32 orig_node, peer_node; |
0fc87aae | 297 | |
d6fb7e9c | 298 | if (unlikely(!tipc_sk_connected(sk))) |
0fc87aae JPM |
299 | return false; |
300 | ||
301 | if (unlikely(msg_origport(msg) != peer_port)) | |
302 | return false; | |
303 | ||
304 | orig_node = msg_orignode(msg); | |
301bae56 | 305 | peer_node = tsk_peer_node(tsk); |
0fc87aae JPM |
306 | |
307 | if (likely(orig_node == peer_node)) | |
308 | return true; | |
309 | ||
23fd3eac | 310 | if (!orig_node && peer_node == self) |
0fc87aae JPM |
311 | return true; |
312 | ||
23fd3eac | 313 | if (!peer_node && orig_node == self) |
0fc87aae JPM |
314 | return true; |
315 | ||
316 | return false; | |
317 | } | |
318 | ||
0c288c86 PB |
319 | /* tipc_set_sk_state - set the sk_state of the socket |
320 | * @sk: socket | |
321 | * | |
322 | * Caller must hold socket lock | |
323 | * | |
324 | * Returns 0 on success, errno otherwise | |
325 | */ | |
326 | static int tipc_set_sk_state(struct sock *sk, int state) | |
327 | { | |
438adcaf | 328 | int oldsk_state = sk->sk_state; |
0c288c86 PB |
329 | int res = -EINVAL; |
330 | ||
331 | switch (state) { | |
438adcaf PB |
332 | case TIPC_OPEN: |
333 | res = 0; | |
334 | break; | |
0c288c86 | 335 | case TIPC_LISTEN: |
99a20889 | 336 | case TIPC_CONNECTING: |
438adcaf | 337 | if (oldsk_state == TIPC_OPEN) |
0c288c86 PB |
338 | res = 0; |
339 | break; | |
8ea642ee | 340 | case TIPC_ESTABLISHED: |
99a20889 | 341 | if (oldsk_state == TIPC_CONNECTING || |
438adcaf | 342 | oldsk_state == TIPC_OPEN) |
8ea642ee PB |
343 | res = 0; |
344 | break; | |
9fd4b070 | 345 | case TIPC_DISCONNECTING: |
99a20889 | 346 | if (oldsk_state == TIPC_CONNECTING || |
9fd4b070 PB |
347 | oldsk_state == TIPC_ESTABLISHED) |
348 | res = 0; | |
349 | break; | |
0c288c86 PB |
350 | } |
351 | ||
352 | if (!res) | |
353 | sk->sk_state = state; | |
354 | ||
355 | return res; | |
356 | } | |
357 | ||
8c44e1af JPM |
358 | static int tipc_sk_sock_err(struct socket *sock, long *timeout) |
359 | { | |
360 | struct sock *sk = sock->sk; | |
361 | int err = sock_error(sk); | |
362 | int typ = sock->type; | |
363 | ||
364 | if (err) | |
365 | return err; | |
366 | if (typ == SOCK_STREAM || typ == SOCK_SEQPACKET) { | |
367 | if (sk->sk_state == TIPC_DISCONNECTING) | |
368 | return -EPIPE; | |
369 | else if (!tipc_sk_connected(sk)) | |
370 | return -ENOTCONN; | |
371 | } | |
372 | if (!*timeout) | |
373 | return -EAGAIN; | |
374 | if (signal_pending(current)) | |
375 | return sock_intr_errno(*timeout); | |
376 | ||
377 | return 0; | |
378 | } | |
379 | ||
844cf763 JPM |
380 | #define tipc_wait_for_cond(sock_, timeo_, condition_) \ |
381 | ({ \ | |
bfd07f3d | 382 | DEFINE_WAIT_FUNC(wait_, woken_wake_function); \ |
844cf763 JPM |
383 | struct sock *sk_; \ |
384 | int rc_; \ | |
385 | \ | |
386 | while ((rc_ = !(condition_))) { \ | |
bfd07f3d TN |
387 | /* coupled with smp_wmb() in tipc_sk_proto_rcv() */ \ |
388 | smp_rmb(); \ | |
844cf763 JPM |
389 | sk_ = (sock_)->sk; \ |
390 | rc_ = tipc_sk_sock_err((sock_), timeo_); \ | |
391 | if (rc_) \ | |
392 | break; \ | |
223b7329 | 393 | add_wait_queue(sk_sleep(sk_), &wait_); \ |
844cf763 JPM |
394 | release_sock(sk_); \ |
395 | *(timeo_) = wait_woken(&wait_, TASK_INTERRUPTIBLE, *(timeo_)); \ | |
396 | sched_annotate_sleep(); \ | |
397 | lock_sock(sk_); \ | |
398 | remove_wait_queue(sk_sleep(sk_), &wait_); \ | |
399 | } \ | |
400 | rc_; \ | |
8c44e1af JPM |
401 | }) |
402 | ||
b97bf3fd | 403 | /** |
c5fa7b3c | 404 | * tipc_sk_create - create a TIPC socket |
0c3141e9 | 405 | * @net: network namespace (must be default network) |
b97bf3fd PL |
406 | * @sock: pre-allocated socket structure |
407 | * @protocol: protocol indicator (must be 0) | |
3f378b68 | 408 | * @kern: caused by kernel or by userspace? |
c4307285 | 409 | * |
0c3141e9 AS |
410 | * This routine creates additional data structures used by the TIPC socket, |
411 | * initializes them, and links them together. | |
b97bf3fd PL |
412 | * |
413 | * Returns 0 on success, errno otherwise | |
414 | */ | |
58ed9442 JPM |
415 | static int tipc_sk_create(struct net *net, struct socket *sock, |
416 | int protocol, int kern) | |
b97bf3fd | 417 | { |
0c3141e9 | 418 | const struct proto_ops *ops; |
b97bf3fd | 419 | struct sock *sk; |
58ed9442 | 420 | struct tipc_sock *tsk; |
5b8fa7ce | 421 | struct tipc_msg *msg; |
0c3141e9 AS |
422 | |
423 | /* Validate arguments */ | |
b97bf3fd PL |
424 | if (unlikely(protocol != 0)) |
425 | return -EPROTONOSUPPORT; | |
426 | ||
b97bf3fd PL |
427 | switch (sock->type) { |
428 | case SOCK_STREAM: | |
0c3141e9 | 429 | ops = &stream_ops; |
b97bf3fd PL |
430 | break; |
431 | case SOCK_SEQPACKET: | |
0c3141e9 | 432 | ops = &packet_ops; |
b97bf3fd PL |
433 | break; |
434 | case SOCK_DGRAM: | |
b97bf3fd | 435 | case SOCK_RDM: |
0c3141e9 | 436 | ops = &msg_ops; |
b97bf3fd | 437 | break; |
49978651 | 438 | default: |
49978651 | 439 | return -EPROTOTYPE; |
b97bf3fd PL |
440 | } |
441 | ||
0c3141e9 | 442 | /* Allocate socket's protocol area */ |
11aa9c28 | 443 | sk = sk_alloc(net, AF_TIPC, GFP_KERNEL, &tipc_proto, kern); |
0c3141e9 | 444 | if (sk == NULL) |
b97bf3fd | 445 | return -ENOMEM; |
b97bf3fd | 446 | |
58ed9442 | 447 | tsk = tipc_sk(sk); |
301bae56 | 448 | tsk->max_pkt = MAX_PKT_DEFAULT; |
301bae56 | 449 | INIT_LIST_HEAD(&tsk->publications); |
365ad353 | 450 | INIT_LIST_HEAD(&tsk->cong_links); |
301bae56 | 451 | msg = &tsk->phdr; |
b97bf3fd | 452 | |
0c3141e9 | 453 | /* Finish initializing socket data structures */ |
0c3141e9 | 454 | sock->ops = ops; |
0c3141e9 | 455 | sock_init_data(sock, sk); |
438adcaf | 456 | tipc_set_sk_state(sk, TIPC_OPEN); |
07f6c4bc | 457 | if (tipc_sk_insert(tsk)) { |
c19ca6cb | 458 | pr_warn("Socket create failed; port number exhausted\n"); |
07f6c4bc YX |
459 | return -EINVAL; |
460 | } | |
40f9f439 HX |
461 | |
462 | /* Ensure tsk is visible before we read own_addr. */ | |
463 | smp_mb(); | |
464 | ||
23fd3eac JM |
465 | tipc_msg_init(tipc_own_addr(net), msg, TIPC_LOW_IMPORTANCE, |
466 | TIPC_NAMED_MSG, NAMED_H_SIZE, 0); | |
40f9f439 | 467 | |
07f6c4bc | 468 | msg_set_origport(msg, tsk->portid); |
31b102bb | 469 | timer_setup(&sk->sk_timer, tipc_sk_timeout, 0); |
6f00089c | 470 | sk->sk_shutdown = 0; |
64ac5f59 | 471 | sk->sk_backlog_rcv = tipc_sk_backlog_rcv; |
cc79dd1b | 472 | sk->sk_rcvbuf = sysctl_tipc_rmem[1]; |
f288bef4 YX |
473 | sk->sk_data_ready = tipc_data_ready; |
474 | sk->sk_write_space = tipc_write_space; | |
f4195d1e | 475 | sk->sk_destruct = tipc_sock_destruct; |
4f4482dc | 476 | tsk->conn_timeout = CONN_TIMEOUT_DEFAULT; |
1b22bcad | 477 | tsk->group_is_open = true; |
4f4482dc | 478 | atomic_set(&tsk->dupl_rcvcnt, 0); |
7ef43eba | 479 | |
10724cc7 JPM |
480 | /* Start out with safe limits until we receive an advertised window */ |
481 | tsk->snd_win = tsk_adv_blocks(RCVBUF_MIN); | |
482 | tsk->rcv_win = tsk->snd_win; | |
483 | ||
c752023a | 484 | if (tipc_sk_type_connectionless(sk)) { |
301bae56 | 485 | tsk_set_unreturnable(tsk, true); |
0c3141e9 | 486 | if (sock->type == SOCK_DGRAM) |
301bae56 | 487 | tsk_set_unreliable(tsk, true); |
c55c8eda | 488 | __skb_queue_head_init(&tsk->mc_method.deferredq); |
0c3141e9 | 489 | } |
438adcaf | 490 | |
01e661eb | 491 | trace_tipc_sk_create(sk, NULL, TIPC_DUMP_NONE, " "); |
b97bf3fd PL |
492 | return 0; |
493 | } | |
494 | ||
07f6c4bc YX |
495 | static void tipc_sk_callback(struct rcu_head *head) |
496 | { | |
497 | struct tipc_sock *tsk = container_of(head, struct tipc_sock, rcu); | |
498 | ||
499 | sock_put(&tsk->sk); | |
500 | } | |
501 | ||
6f00089c PB |
502 | /* Caller should hold socket lock for the socket. */ |
503 | static void __tipc_shutdown(struct socket *sock, int error) | |
504 | { | |
505 | struct sock *sk = sock->sk; | |
506 | struct tipc_sock *tsk = tipc_sk(sk); | |
507 | struct net *net = sock_net(sk); | |
365ad353 | 508 | long timeout = CONN_TIMEOUT_DEFAULT; |
6f00089c PB |
509 | u32 dnode = tsk_peer_node(tsk); |
510 | struct sk_buff *skb; | |
511 | ||
365ad353 JPM |
512 | /* Avoid that hi-prio shutdown msgs bypass msgs in link wakeup queue */ |
513 | tipc_wait_for_cond(sock, &timeout, (!tsk->cong_link_cnt && | |
514 | !tsk_conn_cong(tsk))); | |
515 | ||
67879274 TN |
516 | /* Remove any pending SYN message */ |
517 | __skb_queue_purge(&sk->sk_write_queue); | |
518 | ||
6f00089c PB |
519 | /* Reject all unreceived messages, except on an active connection |
520 | * (which disconnects locally & sends a 'FIN+' to peer). | |
521 | */ | |
522 | while ((skb = __skb_dequeue(&sk->sk_receive_queue)) != NULL) { | |
523 | if (TIPC_SKB_CB(skb)->bytes_read) { | |
524 | kfree_skb(skb); | |
693c5649 | 525 | continue; |
6f00089c | 526 | } |
693c5649 JPM |
527 | if (!tipc_sk_type_connectionless(sk) && |
528 | sk->sk_state != TIPC_DISCONNECTING) { | |
529 | tipc_set_sk_state(sk, TIPC_DISCONNECTING); | |
530 | tipc_node_remove_conn(net, dnode, tsk->portid); | |
531 | } | |
532 | tipc_sk_respond(sk, skb, error); | |
6f00089c | 533 | } |
693c5649 JPM |
534 | |
535 | if (tipc_sk_type_connectionless(sk)) | |
536 | return; | |
537 | ||
6f00089c PB |
538 | if (sk->sk_state != TIPC_DISCONNECTING) { |
539 | skb = tipc_msg_create(TIPC_CRITICAL_IMPORTANCE, | |
540 | TIPC_CONN_MSG, SHORT_H_SIZE, 0, dnode, | |
541 | tsk_own_node(tsk), tsk_peer_port(tsk), | |
542 | tsk->portid, error); | |
543 | if (skb) | |
544 | tipc_node_xmit_skb(net, skb, dnode, tsk->portid); | |
693c5649 JPM |
545 | tipc_node_remove_conn(net, dnode, tsk->portid); |
546 | tipc_set_sk_state(sk, TIPC_DISCONNECTING); | |
6f00089c PB |
547 | } |
548 | } | |
549 | ||
b97bf3fd | 550 | /** |
247f0f3c | 551 | * tipc_release - destroy a TIPC socket |
b97bf3fd PL |
552 | * @sock: socket to destroy |
553 | * | |
554 | * This routine cleans up any messages that are still queued on the socket. | |
555 | * For DGRAM and RDM socket types, all queued messages are rejected. | |
556 | * For SEQPACKET and STREAM socket types, the first message is rejected | |
557 | * and any others are discarded. (If the first message on a STREAM socket | |
558 | * is partially-read, it is discarded and the next one is rejected instead.) | |
c4307285 | 559 | * |
b97bf3fd PL |
560 | * NOTE: Rejected messages are not necessarily returned to the sender! They |
561 | * are returned or discarded according to the "destination droppable" setting | |
562 | * specified for the message by the sender. | |
563 | * | |
564 | * Returns 0 on success, errno otherwise | |
565 | */ | |
247f0f3c | 566 | static int tipc_release(struct socket *sock) |
b97bf3fd | 567 | { |
b97bf3fd | 568 | struct sock *sk = sock->sk; |
58ed9442 | 569 | struct tipc_sock *tsk; |
b97bf3fd | 570 | |
0c3141e9 AS |
571 | /* |
572 | * Exit if socket isn't fully initialized (occurs when a failed accept() | |
573 | * releases a pre-allocated child socket that was never used) | |
574 | */ | |
0c3141e9 | 575 | if (sk == NULL) |
b97bf3fd | 576 | return 0; |
c4307285 | 577 | |
58ed9442 | 578 | tsk = tipc_sk(sk); |
0c3141e9 AS |
579 | lock_sock(sk); |
580 | ||
01e661eb | 581 | trace_tipc_sk_release(sk, NULL, TIPC_DUMP_ALL, " "); |
6f00089c PB |
582 | __tipc_shutdown(sock, TIPC_ERR_NO_PORT); |
583 | sk->sk_shutdown = SHUTDOWN_MASK; | |
75da2163 | 584 | tipc_sk_leave(tsk); |
301bae56 | 585 | tipc_sk_withdraw(tsk, 0, NULL); |
c55c8eda | 586 | __skb_queue_purge(&tsk->mc_method.deferredq); |
1ea23a21 | 587 | sk_stop_timer(sk, &sk->sk_timer); |
07f6c4bc | 588 | tipc_sk_remove(tsk); |
b97bf3fd | 589 | |
0a3b8b2b | 590 | sock_orphan(sk); |
0c3141e9 | 591 | /* Reject any messages that accumulated in backlog queue */ |
0c3141e9 | 592 | release_sock(sk); |
a80ae530 | 593 | tipc_dest_list_purge(&tsk->cong_links); |
365ad353 | 594 | tsk->cong_link_cnt = 0; |
07f6c4bc | 595 | call_rcu(&tsk->rcu, tipc_sk_callback); |
0c3141e9 | 596 | sock->sk = NULL; |
b97bf3fd | 597 | |
065d7e39 | 598 | return 0; |
b97bf3fd PL |
599 | } |
600 | ||
601 | /** | |
247f0f3c | 602 | * tipc_bind - associate or disassocate TIPC name(s) with a socket |
b97bf3fd PL |
603 | * @sock: socket structure |
604 | * @uaddr: socket address describing name(s) and desired operation | |
605 | * @uaddr_len: size of socket address data structure | |
c4307285 | 606 | * |
b97bf3fd PL |
607 | * Name and name sequence binding is indicated using a positive scope value; |
608 | * a negative scope value unbinds the specified name. Specifying no name | |
609 | * (i.e. a socket address length of 0) unbinds all names from the socket. | |
c4307285 | 610 | * |
b97bf3fd | 611 | * Returns 0 on success, errno otherwise |
0c3141e9 AS |
612 | * |
613 | * NOTE: This routine doesn't need to take the socket lock since it doesn't | |
614 | * access any non-constant socket information. | |
b97bf3fd | 615 | */ |
247f0f3c YX |
616 | static int tipc_bind(struct socket *sock, struct sockaddr *uaddr, |
617 | int uaddr_len) | |
b97bf3fd | 618 | { |
84602761 | 619 | struct sock *sk = sock->sk; |
b97bf3fd | 620 | struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr; |
58ed9442 | 621 | struct tipc_sock *tsk = tipc_sk(sk); |
84602761 | 622 | int res = -EINVAL; |
b97bf3fd | 623 | |
84602761 YX |
624 | lock_sock(sk); |
625 | if (unlikely(!uaddr_len)) { | |
301bae56 | 626 | res = tipc_sk_withdraw(tsk, 0, NULL); |
84602761 YX |
627 | goto exit; |
628 | } | |
75da2163 JM |
629 | if (tsk->group) { |
630 | res = -EACCES; | |
631 | goto exit; | |
632 | } | |
84602761 YX |
633 | if (uaddr_len < sizeof(struct sockaddr_tipc)) { |
634 | res = -EINVAL; | |
635 | goto exit; | |
636 | } | |
637 | if (addr->family != AF_TIPC) { | |
638 | res = -EAFNOSUPPORT; | |
639 | goto exit; | |
640 | } | |
b97bf3fd | 641 | |
b97bf3fd PL |
642 | if (addr->addrtype == TIPC_ADDR_NAME) |
643 | addr->addr.nameseq.upper = addr->addr.nameseq.lower; | |
84602761 YX |
644 | else if (addr->addrtype != TIPC_ADDR_NAMESEQ) { |
645 | res = -EAFNOSUPPORT; | |
646 | goto exit; | |
647 | } | |
c4307285 | 648 | |
13a2e898 | 649 | if ((addr->addr.nameseq.type < TIPC_RESERVED_TYPES) && |
7d0ab17b | 650 | (addr->addr.nameseq.type != TIPC_TOP_SRV) && |
84602761 YX |
651 | (addr->addr.nameseq.type != TIPC_CFG_SRV)) { |
652 | res = -EACCES; | |
653 | goto exit; | |
654 | } | |
c422f1bd | 655 | |
928df188 | 656 | res = (addr->scope >= 0) ? |
301bae56 JPM |
657 | tipc_sk_publish(tsk, addr->scope, &addr->addr.nameseq) : |
658 | tipc_sk_withdraw(tsk, -addr->scope, &addr->addr.nameseq); | |
84602761 YX |
659 | exit: |
660 | release_sock(sk); | |
661 | return res; | |
b97bf3fd PL |
662 | } |
663 | ||
c4307285 | 664 | /** |
247f0f3c | 665 | * tipc_getname - get port ID of socket or peer socket |
b97bf3fd PL |
666 | * @sock: socket structure |
667 | * @uaddr: area for returned socket address | |
668 | * @uaddr_len: area for returned length of socket address | |
2da59918 | 669 | * @peer: 0 = own ID, 1 = current peer ID, 2 = current/former peer ID |
c4307285 | 670 | * |
b97bf3fd | 671 | * Returns 0 on success, errno otherwise |
0c3141e9 | 672 | * |
2da59918 AS |
673 | * NOTE: This routine doesn't need to take the socket lock since it only |
674 | * accesses socket information that is unchanging (or which changes in | |
0e65967e | 675 | * a completely predictable manner). |
b97bf3fd | 676 | */ |
247f0f3c | 677 | static int tipc_getname(struct socket *sock, struct sockaddr *uaddr, |
9b2c45d4 | 678 | int peer) |
b97bf3fd | 679 | { |
b97bf3fd | 680 | struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr; |
9fd4b070 PB |
681 | struct sock *sk = sock->sk; |
682 | struct tipc_sock *tsk = tipc_sk(sk); | |
b97bf3fd | 683 | |
88f8a5e3 | 684 | memset(addr, 0, sizeof(*addr)); |
0c3141e9 | 685 | if (peer) { |
f40acbaf | 686 | if ((!tipc_sk_connected(sk)) && |
9fd4b070 | 687 | ((peer != 2) || (sk->sk_state != TIPC_DISCONNECTING))) |
2da59918 | 688 | return -ENOTCONN; |
301bae56 JPM |
689 | addr->addr.id.ref = tsk_peer_port(tsk); |
690 | addr->addr.id.node = tsk_peer_node(tsk); | |
0c3141e9 | 691 | } else { |
07f6c4bc | 692 | addr->addr.id.ref = tsk->portid; |
23fd3eac | 693 | addr->addr.id.node = tipc_own_addr(sock_net(sk)); |
0c3141e9 | 694 | } |
b97bf3fd | 695 | |
b97bf3fd PL |
696 | addr->addrtype = TIPC_ADDR_ID; |
697 | addr->family = AF_TIPC; | |
698 | addr->scope = 0; | |
b97bf3fd PL |
699 | addr->addr.name.domain = 0; |
700 | ||
9b2c45d4 | 701 | return sizeof(*addr); |
b97bf3fd PL |
702 | } |
703 | ||
704 | /** | |
a11e1d43 | 705 | * tipc_poll - read and possibly block on pollmask |
b97bf3fd PL |
706 | * @file: file structure associated with the socket |
707 | * @sock: socket for which to calculate the poll bits | |
a11e1d43 | 708 | * @wait: ??? |
b97bf3fd | 709 | * |
9b674e82 AS |
710 | * Returns pollmask value |
711 | * | |
712 | * COMMENTARY: | |
713 | * It appears that the usual socket locking mechanisms are not useful here | |
714 | * since the pollmask info is potentially out-of-date the moment this routine | |
715 | * exits. TCP and other protocols seem to rely on higher level poll routines | |
716 | * to handle any preventable race conditions, so TIPC will do the same ... | |
717 | * | |
f662c070 AS |
718 | * IMPORTANT: The fact that a read or write operation is indicated does NOT |
719 | * imply that the operation will succeed, merely that it should be performed | |
720 | * and will not block. | |
b97bf3fd | 721 | */ |
a11e1d43 LT |
722 | static __poll_t tipc_poll(struct file *file, struct socket *sock, |
723 | poll_table *wait) | |
b97bf3fd | 724 | { |
9b674e82 | 725 | struct sock *sk = sock->sk; |
58ed9442 | 726 | struct tipc_sock *tsk = tipc_sk(sk); |
ade994f4 | 727 | __poll_t revents = 0; |
9b674e82 | 728 | |
89ab066d | 729 | sock_poll_wait(file, sock, wait); |
01e661eb | 730 | trace_tipc_sk_poll(sk, NULL, TIPC_DUMP_ALL, " "); |
a11e1d43 | 731 | |
6f00089c | 732 | if (sk->sk_shutdown & RCV_SHUTDOWN) |
a9a08845 | 733 | revents |= EPOLLRDHUP | EPOLLIN | EPOLLRDNORM; |
6f00089c | 734 | if (sk->sk_shutdown == SHUTDOWN_MASK) |
a9a08845 | 735 | revents |= EPOLLHUP; |
6f00089c | 736 | |
f40acbaf PB |
737 | switch (sk->sk_state) { |
738 | case TIPC_ESTABLISHED: | |
517d7c79 | 739 | case TIPC_CONNECTING: |
365ad353 | 740 | if (!tsk->cong_link_cnt && !tsk_conn_cong(tsk)) |
a9a08845 | 741 | revents |= EPOLLOUT; |
f79e3365 | 742 | /* fall through */ |
f40acbaf | 743 | case TIPC_LISTEN: |
cb4dc41e | 744 | if (!skb_queue_empty(&sk->sk_receive_queue)) |
a9a08845 | 745 | revents |= EPOLLIN | EPOLLRDNORM; |
f40acbaf PB |
746 | break; |
747 | case TIPC_OPEN: | |
60c25306 | 748 | if (tsk->group_is_open && !tsk->cong_link_cnt) |
a9a08845 | 749 | revents |= EPOLLOUT; |
ae236fb2 JM |
750 | if (!tipc_sk_type_connectionless(sk)) |
751 | break; | |
cb4dc41e | 752 | if (skb_queue_empty(&sk->sk_receive_queue)) |
ae236fb2 | 753 | break; |
a9a08845 | 754 | revents |= EPOLLIN | EPOLLRDNORM; |
f40acbaf PB |
755 | break; |
756 | case TIPC_DISCONNECTING: | |
a9a08845 | 757 | revents = EPOLLIN | EPOLLRDNORM | EPOLLHUP; |
f40acbaf | 758 | break; |
f662c070 | 759 | } |
ae236fb2 | 760 | return revents; |
b97bf3fd PL |
761 | } |
762 | ||
0abd8ff2 JPM |
763 | /** |
764 | * tipc_sendmcast - send multicast message | |
765 | * @sock: socket structure | |
766 | * @seq: destination address | |
562640f3 | 767 | * @msg: message to send |
365ad353 JPM |
768 | * @dlen: length of data to send |
769 | * @timeout: timeout to wait for wakeup | |
0abd8ff2 JPM |
770 | * |
771 | * Called from function tipc_sendmsg(), which has done all sanity checks | |
772 | * Returns the number of bytes sent on success, or errno | |
773 | */ | |
774 | static int tipc_sendmcast(struct socket *sock, struct tipc_name_seq *seq, | |
365ad353 | 775 | struct msghdr *msg, size_t dlen, long timeout) |
0abd8ff2 JPM |
776 | { |
777 | struct sock *sk = sock->sk; | |
c5898636 | 778 | struct tipc_sock *tsk = tipc_sk(sk); |
365ad353 | 779 | struct tipc_msg *hdr = &tsk->phdr; |
f2f9800d | 780 | struct net *net = sock_net(sk); |
365ad353 | 781 | int mtu = tipc_bcast_get_mtu(net); |
01fd12bb | 782 | struct tipc_mc_method *method = &tsk->mc_method; |
365ad353 | 783 | struct sk_buff_head pkts; |
a853e4c6 | 784 | struct tipc_nlist dsts; |
0abd8ff2 JPM |
785 | int rc; |
786 | ||
75da2163 JM |
787 | if (tsk->group) |
788 | return -EACCES; | |
789 | ||
a853e4c6 | 790 | /* Block or return if any destination link is congested */ |
365ad353 JPM |
791 | rc = tipc_wait_for_cond(sock, &timeout, !tsk->cong_link_cnt); |
792 | if (unlikely(rc)) | |
793 | return rc; | |
f214fc40 | 794 | |
a853e4c6 JPM |
795 | /* Lookup destination nodes */ |
796 | tipc_nlist_init(&dsts, tipc_own_addr(net)); | |
797 | tipc_nametbl_lookup_dst_nodes(net, seq->type, seq->lower, | |
e9a03445 | 798 | seq->upper, &dsts); |
a853e4c6 JPM |
799 | if (!dsts.local && !dsts.remote) |
800 | return -EHOSTUNREACH; | |
801 | ||
802 | /* Build message header */ | |
365ad353 | 803 | msg_set_type(hdr, TIPC_MCAST_MSG); |
a853e4c6 | 804 | msg_set_hdr_sz(hdr, MCAST_H_SIZE); |
365ad353 JPM |
805 | msg_set_lookup_scope(hdr, TIPC_CLUSTER_SCOPE); |
806 | msg_set_destport(hdr, 0); | |
807 | msg_set_destnode(hdr, 0); | |
808 | msg_set_nametype(hdr, seq->type); | |
809 | msg_set_namelower(hdr, seq->lower); | |
810 | msg_set_nameupper(hdr, seq->upper); | |
365ad353 | 811 | |
a853e4c6 | 812 | /* Build message as chain of buffers */ |
365ad353 JPM |
813 | skb_queue_head_init(&pkts); |
814 | rc = tipc_msg_build(hdr, msg, 0, dlen, mtu, &pkts); | |
0abd8ff2 | 815 | |
a853e4c6 | 816 | /* Send message if build was successful */ |
01e661eb TL |
817 | if (unlikely(rc == dlen)) { |
818 | trace_tipc_sk_sendmcast(sk, skb_peek(&pkts), | |
819 | TIPC_DUMP_SK_SNDQ, " "); | |
01fd12bb | 820 | rc = tipc_mcast_xmit(net, &pkts, method, &dsts, |
a853e4c6 | 821 | &tsk->cong_link_cnt); |
01e661eb | 822 | } |
a853e4c6 JPM |
823 | |
824 | tipc_nlist_purge(&dsts); | |
365ad353 JPM |
825 | |
826 | return rc ? rc : dlen; | |
0abd8ff2 JPM |
827 | } |
828 | ||
27bd9ec0 JM |
829 | /** |
830 | * tipc_send_group_msg - send a message to a member in the group | |
831 | * @net: network namespace | |
832 | * @m: message to send | |
833 | * @mb: group member | |
834 | * @dnode: destination node | |
835 | * @dport: destination port | |
836 | * @dlen: total length of message data | |
837 | */ | |
838 | static int tipc_send_group_msg(struct net *net, struct tipc_sock *tsk, | |
839 | struct msghdr *m, struct tipc_member *mb, | |
840 | u32 dnode, u32 dport, int dlen) | |
841 | { | |
b87a5ea3 | 842 | u16 bc_snd_nxt = tipc_group_bc_snd_nxt(tsk->group); |
2f487712 | 843 | struct tipc_mc_method *method = &tsk->mc_method; |
27bd9ec0 JM |
844 | int blks = tsk_blocks(GROUP_H_SIZE + dlen); |
845 | struct tipc_msg *hdr = &tsk->phdr; | |
846 | struct sk_buff_head pkts; | |
847 | int mtu, rc; | |
848 | ||
849 | /* Complete message header */ | |
850 | msg_set_type(hdr, TIPC_GRP_UCAST_MSG); | |
851 | msg_set_hdr_sz(hdr, GROUP_H_SIZE); | |
852 | msg_set_destport(hdr, dport); | |
853 | msg_set_destnode(hdr, dnode); | |
b87a5ea3 | 854 | msg_set_grp_bc_seqno(hdr, bc_snd_nxt); |
27bd9ec0 JM |
855 | |
856 | /* Build message as chain of buffers */ | |
857 | skb_queue_head_init(&pkts); | |
858 | mtu = tipc_node_get_mtu(net, dnode, tsk->portid); | |
859 | rc = tipc_msg_build(hdr, m, 0, dlen, mtu, &pkts); | |
860 | if (unlikely(rc != dlen)) | |
861 | return rc; | |
862 | ||
863 | /* Send message */ | |
864 | rc = tipc_node_xmit(net, &pkts, dnode, tsk->portid); | |
865 | if (unlikely(rc == -ELINKCONG)) { | |
866 | tipc_dest_push(&tsk->cong_links, dnode, 0); | |
867 | tsk->cong_link_cnt++; | |
868 | } | |
869 | ||
2f487712 | 870 | /* Update send window */ |
27bd9ec0 JM |
871 | tipc_group_update_member(mb, blks); |
872 | ||
2f487712 JM |
873 | /* A broadcast sent within next EXPIRE period must follow same path */ |
874 | method->rcast = true; | |
875 | method->mandatory = true; | |
27bd9ec0 JM |
876 | return dlen; |
877 | } | |
878 | ||
879 | /** | |
880 | * tipc_send_group_unicast - send message to a member in the group | |
881 | * @sock: socket structure | |
882 | * @m: message to send | |
883 | * @dlen: total length of message data | |
884 | * @timeout: timeout to wait for wakeup | |
885 | * | |
886 | * Called from function tipc_sendmsg(), which has done all sanity checks | |
887 | * Returns the number of bytes sent on success, or errno | |
888 | */ | |
889 | static int tipc_send_group_unicast(struct socket *sock, struct msghdr *m, | |
890 | int dlen, long timeout) | |
891 | { | |
892 | struct sock *sk = sock->sk; | |
893 | DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name); | |
894 | int blks = tsk_blocks(GROUP_H_SIZE + dlen); | |
895 | struct tipc_sock *tsk = tipc_sk(sk); | |
27bd9ec0 JM |
896 | struct net *net = sock_net(sk); |
897 | struct tipc_member *mb = NULL; | |
898 | u32 node, port; | |
899 | int rc; | |
900 | ||
901 | node = dest->addr.id.node; | |
902 | port = dest->addr.id.ref; | |
903 | if (!port && !node) | |
904 | return -EHOSTUNREACH; | |
905 | ||
906 | /* Block or return if destination link or member is congested */ | |
907 | rc = tipc_wait_for_cond(sock, &timeout, | |
908 | !tipc_dest_find(&tsk->cong_links, node, 0) && | |
143ece65 CW |
909 | tsk->group && |
910 | !tipc_group_cong(tsk->group, node, port, blks, | |
911 | &mb)); | |
27bd9ec0 JM |
912 | if (unlikely(rc)) |
913 | return rc; | |
914 | ||
915 | if (unlikely(!mb)) | |
916 | return -EHOSTUNREACH; | |
917 | ||
918 | rc = tipc_send_group_msg(net, tsk, m, mb, node, port, dlen); | |
919 | ||
920 | return rc ? rc : dlen; | |
921 | } | |
922 | ||
ee106d7f JM |
923 | /** |
924 | * tipc_send_group_anycast - send message to any member with given identity | |
925 | * @sock: socket structure | |
926 | * @m: message to send | |
927 | * @dlen: total length of message data | |
928 | * @timeout: timeout to wait for wakeup | |
929 | * | |
930 | * Called from function tipc_sendmsg(), which has done all sanity checks | |
931 | * Returns the number of bytes sent on success, or errno | |
932 | */ | |
933 | static int tipc_send_group_anycast(struct socket *sock, struct msghdr *m, | |
934 | int dlen, long timeout) | |
935 | { | |
936 | DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name); | |
937 | struct sock *sk = sock->sk; | |
938 | struct tipc_sock *tsk = tipc_sk(sk); | |
939 | struct list_head *cong_links = &tsk->cong_links; | |
940 | int blks = tsk_blocks(GROUP_H_SIZE + dlen); | |
232d07b7 | 941 | struct tipc_msg *hdr = &tsk->phdr; |
ee106d7f JM |
942 | struct tipc_member *first = NULL; |
943 | struct tipc_member *mbr = NULL; | |
944 | struct net *net = sock_net(sk); | |
945 | u32 node, port, exclude; | |
ee106d7f | 946 | struct list_head dsts; |
232d07b7 | 947 | u32 type, inst, scope; |
ee106d7f JM |
948 | int lookups = 0; |
949 | int dstcnt, rc; | |
950 | bool cong; | |
951 | ||
952 | INIT_LIST_HEAD(&dsts); | |
953 | ||
232d07b7 | 954 | type = msg_nametype(hdr); |
ee106d7f | 955 | inst = dest->addr.name.name.instance; |
232d07b7 | 956 | scope = msg_lookup_scope(hdr); |
ee106d7f JM |
957 | |
958 | while (++lookups < 4) { | |
143ece65 CW |
959 | exclude = tipc_group_exclude(tsk->group); |
960 | ||
ee106d7f JM |
961 | first = NULL; |
962 | ||
963 | /* Look for a non-congested destination member, if any */ | |
964 | while (1) { | |
232d07b7 | 965 | if (!tipc_nametbl_lookup(net, type, inst, scope, &dsts, |
ee106d7f JM |
966 | &dstcnt, exclude, false)) |
967 | return -EHOSTUNREACH; | |
968 | tipc_dest_pop(&dsts, &node, &port); | |
143ece65 CW |
969 | cong = tipc_group_cong(tsk->group, node, port, blks, |
970 | &mbr); | |
ee106d7f JM |
971 | if (!cong) |
972 | break; | |
973 | if (mbr == first) | |
974 | break; | |
975 | if (!first) | |
976 | first = mbr; | |
977 | } | |
978 | ||
979 | /* Start over if destination was not in member list */ | |
980 | if (unlikely(!mbr)) | |
981 | continue; | |
982 | ||
983 | if (likely(!cong && !tipc_dest_find(cong_links, node, 0))) | |
984 | break; | |
985 | ||
986 | /* Block or return if destination link or member is congested */ | |
987 | rc = tipc_wait_for_cond(sock, &timeout, | |
988 | !tipc_dest_find(cong_links, node, 0) && | |
143ece65 CW |
989 | tsk->group && |
990 | !tipc_group_cong(tsk->group, node, port, | |
ee106d7f JM |
991 | blks, &mbr)); |
992 | if (unlikely(rc)) | |
993 | return rc; | |
994 | ||
995 | /* Send, unless destination disappeared while waiting */ | |
996 | if (likely(mbr)) | |
997 | break; | |
998 | } | |
999 | ||
1000 | if (unlikely(lookups >= 4)) | |
1001 | return -EHOSTUNREACH; | |
1002 | ||
1003 | rc = tipc_send_group_msg(net, tsk, m, mbr, node, port, dlen); | |
1004 | ||
1005 | return rc ? rc : dlen; | |
1006 | } | |
1007 | ||
75da2163 JM |
1008 | /** |
1009 | * tipc_send_group_bcast - send message to all members in communication group | |
1010 | * @sk: socket structure | |
1011 | * @m: message to send | |
1012 | * @dlen: total length of message data | |
1013 | * @timeout: timeout to wait for wakeup | |
1014 | * | |
1015 | * Called from function tipc_sendmsg(), which has done all sanity checks | |
1016 | * Returns the number of bytes sent on success, or errno | |
1017 | */ | |
1018 | static int tipc_send_group_bcast(struct socket *sock, struct msghdr *m, | |
1019 | int dlen, long timeout) | |
1020 | { | |
5b8dddb6 | 1021 | DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name); |
75da2163 JM |
1022 | struct sock *sk = sock->sk; |
1023 | struct net *net = sock_net(sk); | |
1024 | struct tipc_sock *tsk = tipc_sk(sk); | |
3c6306d4 | 1025 | struct tipc_nlist *dsts; |
75da2163 | 1026 | struct tipc_mc_method *method = &tsk->mc_method; |
2f487712 | 1027 | bool ack = method->mandatory && method->rcast; |
b7d42635 | 1028 | int blks = tsk_blocks(MCAST_H_SIZE + dlen); |
75da2163 JM |
1029 | struct tipc_msg *hdr = &tsk->phdr; |
1030 | int mtu = tipc_bcast_get_mtu(net); | |
1031 | struct sk_buff_head pkts; | |
1032 | int rc = -EHOSTUNREACH; | |
1033 | ||
b7d42635 | 1034 | /* Block or return if any destination link or member is congested */ |
143ece65 CW |
1035 | rc = tipc_wait_for_cond(sock, &timeout, |
1036 | !tsk->cong_link_cnt && tsk->group && | |
1037 | !tipc_group_bc_cong(tsk->group, blks)); | |
75da2163 JM |
1038 | if (unlikely(rc)) |
1039 | return rc; | |
1040 | ||
3c6306d4 CW |
1041 | dsts = tipc_group_dests(tsk->group); |
1042 | if (!dsts->local && !dsts->remote) | |
1043 | return -EHOSTUNREACH; | |
1044 | ||
75da2163 | 1045 | /* Complete message header */ |
5b8dddb6 JM |
1046 | if (dest) { |
1047 | msg_set_type(hdr, TIPC_GRP_MCAST_MSG); | |
1048 | msg_set_nameinst(hdr, dest->addr.name.name.instance); | |
1049 | } else { | |
1050 | msg_set_type(hdr, TIPC_GRP_BCAST_MSG); | |
1051 | msg_set_nameinst(hdr, 0); | |
1052 | } | |
b7d42635 | 1053 | msg_set_hdr_sz(hdr, GROUP_H_SIZE); |
75da2163 JM |
1054 | msg_set_destport(hdr, 0); |
1055 | msg_set_destnode(hdr, 0); | |
143ece65 | 1056 | msg_set_grp_bc_seqno(hdr, tipc_group_bc_snd_nxt(tsk->group)); |
75da2163 | 1057 | |
2f487712 JM |
1058 | /* Avoid getting stuck with repeated forced replicasts */ |
1059 | msg_set_grp_bc_ack_req(hdr, ack); | |
1060 | ||
75da2163 JM |
1061 | /* Build message as chain of buffers */ |
1062 | skb_queue_head_init(&pkts); | |
1063 | rc = tipc_msg_build(hdr, m, 0, dlen, mtu, &pkts); | |
1064 | if (unlikely(rc != dlen)) | |
1065 | return rc; | |
1066 | ||
1067 | /* Send message */ | |
2f487712 | 1068 | rc = tipc_mcast_xmit(net, &pkts, method, dsts, &tsk->cong_link_cnt); |
75da2163 JM |
1069 | if (unlikely(rc)) |
1070 | return rc; | |
1071 | ||
b7d42635 | 1072 | /* Update broadcast sequence number and send windows */ |
2f487712 JM |
1073 | tipc_group_update_bc_members(tsk->group, blks, ack); |
1074 | ||
1075 | /* Broadcast link is now free to choose method for next broadcast */ | |
1076 | method->mandatory = false; | |
1077 | method->expires = jiffies; | |
1078 | ||
75da2163 JM |
1079 | return dlen; |
1080 | } | |
1081 | ||
5b8dddb6 JM |
1082 | /** |
1083 | * tipc_send_group_mcast - send message to all members with given identity | |
1084 | * @sock: socket structure | |
1085 | * @m: message to send | |
1086 | * @dlen: total length of message data | |
1087 | * @timeout: timeout to wait for wakeup | |
1088 | * | |
1089 | * Called from function tipc_sendmsg(), which has done all sanity checks | |
1090 | * Returns the number of bytes sent on success, or errno | |
1091 | */ | |
1092 | static int tipc_send_group_mcast(struct socket *sock, struct msghdr *m, | |
1093 | int dlen, long timeout) | |
1094 | { | |
1095 | struct sock *sk = sock->sk; | |
1096 | DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name); | |
5b8dddb6 JM |
1097 | struct tipc_sock *tsk = tipc_sk(sk); |
1098 | struct tipc_group *grp = tsk->group; | |
232d07b7 | 1099 | struct tipc_msg *hdr = &tsk->phdr; |
5b8dddb6 | 1100 | struct net *net = sock_net(sk); |
232d07b7 | 1101 | u32 type, inst, scope, exclude; |
5b8dddb6 | 1102 | struct list_head dsts; |
232d07b7 | 1103 | u32 dstcnt; |
5b8dddb6 JM |
1104 | |
1105 | INIT_LIST_HEAD(&dsts); | |
1106 | ||
232d07b7 JM |
1107 | type = msg_nametype(hdr); |
1108 | inst = dest->addr.name.name.instance; | |
1109 | scope = msg_lookup_scope(hdr); | |
5b8dddb6 | 1110 | exclude = tipc_group_exclude(grp); |
232d07b7 JM |
1111 | |
1112 | if (!tipc_nametbl_lookup(net, type, inst, scope, &dsts, | |
1113 | &dstcnt, exclude, true)) | |
5b8dddb6 JM |
1114 | return -EHOSTUNREACH; |
1115 | ||
1116 | if (dstcnt == 1) { | |
1117 | tipc_dest_pop(&dsts, &dest->addr.id.node, &dest->addr.id.ref); | |
1118 | return tipc_send_group_unicast(sock, m, dlen, timeout); | |
1119 | } | |
1120 | ||
1121 | tipc_dest_list_purge(&dsts); | |
1122 | return tipc_send_group_bcast(sock, m, dlen, timeout); | |
1123 | } | |
1124 | ||
cb1b7280 JPM |
1125 | /** |
1126 | * tipc_sk_mcast_rcv - Deliver multicast messages to all destination sockets | |
1127 | * @arrvq: queue with arriving messages, to be cloned after destination lookup | |
1128 | * @inputq: queue with cloned messages, delivered to socket after dest lookup | |
1129 | * | |
1130 | * Multi-threaded: parallel calls with reference to same queues may occur | |
078bec82 | 1131 | */ |
cb1b7280 JPM |
1132 | void tipc_sk_mcast_rcv(struct net *net, struct sk_buff_head *arrvq, |
1133 | struct sk_buff_head *inputq) | |
078bec82 | 1134 | { |
75da2163 | 1135 | u32 self = tipc_own_addr(net); |
232d07b7 | 1136 | u32 type, lower, upper, scope; |
cb1b7280 | 1137 | struct sk_buff *skb, *_skb; |
b053fcc4 | 1138 | u32 portid, onode; |
232d07b7 | 1139 | struct sk_buff_head tmpq; |
75da2163 | 1140 | struct list_head dports; |
232d07b7 JM |
1141 | struct tipc_msg *hdr; |
1142 | int user, mtyp, hlen; | |
1143 | bool exact; | |
3c724acd | 1144 | |
cb1b7280 | 1145 | __skb_queue_head_init(&tmpq); |
4d8642d8 | 1146 | INIT_LIST_HEAD(&dports); |
078bec82 | 1147 | |
cb1b7280 JPM |
1148 | skb = tipc_skb_peek(arrvq, &inputq->lock); |
1149 | for (; skb; skb = tipc_skb_peek(arrvq, &inputq->lock)) { | |
232d07b7 JM |
1150 | hdr = buf_msg(skb); |
1151 | user = msg_user(hdr); | |
1152 | mtyp = msg_type(hdr); | |
1153 | hlen = skb_headroom(skb) + msg_hdr_sz(hdr); | |
232d07b7 JM |
1154 | onode = msg_orignode(hdr); |
1155 | type = msg_nametype(hdr); | |
1156 | ||
2f487712 JM |
1157 | if (mtyp == TIPC_GRP_UCAST_MSG || user == GROUP_PROTOCOL) { |
1158 | spin_lock_bh(&inputq->lock); | |
1159 | if (skb_peek(arrvq) == skb) { | |
1160 | __skb_dequeue(arrvq); | |
1161 | __skb_queue_tail(inputq, skb); | |
1162 | } | |
c545a945 | 1163 | kfree_skb(skb); |
2f487712 JM |
1164 | spin_unlock_bh(&inputq->lock); |
1165 | continue; | |
1166 | } | |
232d07b7 JM |
1167 | |
1168 | /* Group messages require exact scope match */ | |
1169 | if (msg_in_group(hdr)) { | |
1170 | lower = 0; | |
1171 | upper = ~0; | |
1172 | scope = msg_lookup_scope(hdr); | |
1173 | exact = true; | |
1174 | } else { | |
1175 | /* TIPC_NODE_SCOPE means "any scope" in this context */ | |
1176 | if (onode == self) | |
1177 | scope = TIPC_NODE_SCOPE; | |
1178 | else | |
1179 | scope = TIPC_CLUSTER_SCOPE; | |
1180 | exact = false; | |
1181 | lower = msg_namelower(hdr); | |
1182 | upper = msg_nameupper(hdr); | |
75da2163 | 1183 | } |
232d07b7 JM |
1184 | |
1185 | /* Create destination port list: */ | |
1186 | tipc_nametbl_mc_lookup(net, type, lower, upper, | |
1187 | scope, exact, &dports); | |
1188 | ||
1189 | /* Clone message per destination */ | |
a80ae530 | 1190 | while (tipc_dest_pop(&dports, NULL, &portid)) { |
232d07b7 | 1191 | _skb = __pskb_copy(skb, hlen, GFP_ATOMIC); |
cb1b7280 JPM |
1192 | if (_skb) { |
1193 | msg_set_destport(buf_msg(_skb), portid); | |
1194 | __skb_queue_tail(&tmpq, _skb); | |
1195 | continue; | |
1196 | } | |
1197 | pr_warn("Failed to clone mcast rcv buffer\n"); | |
078bec82 | 1198 | } |
cb1b7280 JPM |
1199 | /* Append to inputq if not already done by other thread */ |
1200 | spin_lock_bh(&inputq->lock); | |
1201 | if (skb_peek(arrvq) == skb) { | |
1202 | skb_queue_splice_tail_init(&tmpq, inputq); | |
1203 | kfree_skb(__skb_dequeue(arrvq)); | |
1204 | } | |
1205 | spin_unlock_bh(&inputq->lock); | |
1206 | __skb_queue_purge(&tmpq); | |
1207 | kfree_skb(skb); | |
078bec82 | 1208 | } |
cb1b7280 | 1209 | tipc_sk_rcv(net, inputq); |
078bec82 JPM |
1210 | } |
1211 | ||
ac0074ee | 1212 | /** |
64ac5f59 | 1213 | * tipc_sk_conn_proto_rcv - receive a connection mng protocol message |
ac0074ee | 1214 | * @tsk: receiving socket |
bcd3ffd4 | 1215 | * @skb: pointer to message buffer. |
ac0074ee | 1216 | */ |
64ac5f59 | 1217 | static void tipc_sk_conn_proto_rcv(struct tipc_sock *tsk, struct sk_buff *skb, |
e7eb0582 | 1218 | struct sk_buff_head *inputq, |
64ac5f59 | 1219 | struct sk_buff_head *xmitq) |
ac0074ee | 1220 | { |
bcd3ffd4 | 1221 | struct tipc_msg *hdr = buf_msg(skb); |
64ac5f59 JM |
1222 | u32 onode = tsk_own_node(tsk); |
1223 | struct sock *sk = &tsk->sk; | |
bcd3ffd4 | 1224 | int mtyp = msg_type(hdr); |
10724cc7 | 1225 | bool conn_cong; |
bcd3ffd4 | 1226 | |
ac0074ee | 1227 | /* Ignore if connection cannot be validated: */ |
01e661eb TL |
1228 | if (!tsk_peer_msg(tsk, hdr)) { |
1229 | trace_tipc_sk_drop_msg(sk, skb, TIPC_DUMP_NONE, "@proto_rcv!"); | |
ac0074ee | 1230 | goto exit; |
01e661eb | 1231 | } |
ac0074ee | 1232 | |
c1be7756 PB |
1233 | if (unlikely(msg_errcode(hdr))) { |
1234 | tipc_set_sk_state(sk, TIPC_DISCONNECTING); | |
1235 | tipc_node_remove_conn(sock_net(sk), tsk_peer_node(tsk), | |
1236 | tsk_peer_port(tsk)); | |
1237 | sk->sk_state_change(sk); | |
e7eb0582 PB |
1238 | |
1239 | /* State change is ignored if socket already awake, | |
1240 | * - convert msg to abort msg and add to inqueue | |
1241 | */ | |
1242 | msg_set_user(hdr, TIPC_CRITICAL_IMPORTANCE); | |
1243 | msg_set_type(hdr, TIPC_CONN_MSG); | |
1244 | msg_set_size(hdr, BASIC_H_SIZE); | |
1245 | msg_set_hdr_sz(hdr, BASIC_H_SIZE); | |
1246 | __skb_queue_tail(inputq, skb); | |
1247 | return; | |
c1be7756 PB |
1248 | } |
1249 | ||
8ea642ee | 1250 | tsk->probe_unacked = false; |
ac0074ee | 1251 | |
bcd3ffd4 JPM |
1252 | if (mtyp == CONN_PROBE) { |
1253 | msg_set_type(hdr, CONN_PROBE_REPLY); | |
f1d048f2 JPM |
1254 | if (tipc_msg_reverse(onode, &skb, TIPC_OK)) |
1255 | __skb_queue_tail(xmitq, skb); | |
bcd3ffd4 JPM |
1256 | return; |
1257 | } else if (mtyp == CONN_ACK) { | |
301bae56 | 1258 | conn_cong = tsk_conn_cong(tsk); |
10724cc7 JPM |
1259 | tsk->snt_unacked -= msg_conn_ack(hdr); |
1260 | if (tsk->peer_caps & TIPC_BLOCK_FLOWCTL) | |
1261 | tsk->snd_win = msg_adv_win(hdr); | |
60120526 | 1262 | if (conn_cong) |
bcd3ffd4 JPM |
1263 | sk->sk_write_space(sk); |
1264 | } else if (mtyp != CONN_PROBE_REPLY) { | |
1265 | pr_warn("Received unknown CONN_PROTO msg\n"); | |
ac0074ee | 1266 | } |
ac0074ee | 1267 | exit: |
bcd3ffd4 | 1268 | kfree_skb(skb); |
ac0074ee JPM |
1269 | } |
1270 | ||
b97bf3fd | 1271 | /** |
247f0f3c | 1272 | * tipc_sendmsg - send message in connectionless manner |
b97bf3fd PL |
1273 | * @sock: socket structure |
1274 | * @m: message to send | |
e2dafe87 | 1275 | * @dsz: amount of user data to be sent |
c4307285 | 1276 | * |
b97bf3fd | 1277 | * Message must have an destination specified explicitly. |
c4307285 | 1278 | * Used for SOCK_RDM and SOCK_DGRAM messages, |
b97bf3fd PL |
1279 | * and for 'SYN' messages on SOCK_SEQPACKET and SOCK_STREAM connections. |
1280 | * (Note: 'SYN+' is prohibited on SOCK_STREAM.) | |
c4307285 | 1281 | * |
b97bf3fd PL |
1282 | * Returns the number of bytes sent on success, or errno otherwise |
1283 | */ | |
1b784140 | 1284 | static int tipc_sendmsg(struct socket *sock, |
e2dafe87 | 1285 | struct msghdr *m, size_t dsz) |
39a0295f YX |
1286 | { |
1287 | struct sock *sk = sock->sk; | |
1288 | int ret; | |
1289 | ||
1290 | lock_sock(sk); | |
1291 | ret = __tipc_sendmsg(sock, m, dsz); | |
1292 | release_sock(sk); | |
1293 | ||
1294 | return ret; | |
1295 | } | |
1296 | ||
365ad353 | 1297 | static int __tipc_sendmsg(struct socket *sock, struct msghdr *m, size_t dlen) |
b97bf3fd | 1298 | { |
0c3141e9 | 1299 | struct sock *sk = sock->sk; |
f2f9800d | 1300 | struct net *net = sock_net(sk); |
365ad353 JPM |
1301 | struct tipc_sock *tsk = tipc_sk(sk); |
1302 | DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name); | |
1303 | long timeout = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT); | |
1304 | struct list_head *clinks = &tsk->cong_links; | |
1305 | bool syn = !tipc_sk_type_connectionless(sk); | |
75da2163 | 1306 | struct tipc_group *grp = tsk->group; |
365ad353 | 1307 | struct tipc_msg *hdr = &tsk->phdr; |
f2f8036e | 1308 | struct tipc_name_seq *seq; |
365ad353 | 1309 | struct sk_buff_head pkts; |
335b929b | 1310 | u32 dport, dnode = 0; |
928df188 | 1311 | u32 type, inst; |
365ad353 | 1312 | int mtu, rc; |
b97bf3fd | 1313 | |
365ad353 | 1314 | if (unlikely(dlen > TIPC_MAX_USER_MSG_SIZE)) |
c29c3f70 | 1315 | return -EMSGSIZE; |
365ad353 | 1316 | |
27bd9ec0 JM |
1317 | if (likely(dest)) { |
1318 | if (unlikely(m->msg_namelen < sizeof(*dest))) | |
1319 | return -EINVAL; | |
1320 | if (unlikely(dest->family != AF_TIPC)) | |
1321 | return -EINVAL; | |
1322 | } | |
1323 | ||
1324 | if (grp) { | |
1325 | if (!dest) | |
1326 | return tipc_send_group_bcast(sock, m, dlen, timeout); | |
ee106d7f JM |
1327 | if (dest->addrtype == TIPC_ADDR_NAME) |
1328 | return tipc_send_group_anycast(sock, m, dlen, timeout); | |
27bd9ec0 JM |
1329 | if (dest->addrtype == TIPC_ADDR_ID) |
1330 | return tipc_send_group_unicast(sock, m, dlen, timeout); | |
5b8dddb6 JM |
1331 | if (dest->addrtype == TIPC_ADDR_MCAST) |
1332 | return tipc_send_group_mcast(sock, m, dlen, timeout); | |
27bd9ec0 JM |
1333 | return -EINVAL; |
1334 | } | |
75da2163 | 1335 | |
f2f8036e | 1336 | if (unlikely(!dest)) { |
365ad353 | 1337 | dest = &tsk->peer; |
0e632089 | 1338 | if (!syn && dest->family != AF_TIPC) |
f2f8036e | 1339 | return -EDESTADDRREQ; |
f2f8036e | 1340 | } |
365ad353 | 1341 | |
365ad353 | 1342 | if (unlikely(syn)) { |
0c288c86 | 1343 | if (sk->sk_state == TIPC_LISTEN) |
39a0295f | 1344 | return -EPIPE; |
438adcaf | 1345 | if (sk->sk_state != TIPC_OPEN) |
39a0295f YX |
1346 | return -EISCONN; |
1347 | if (tsk->published) | |
1348 | return -EOPNOTSUPP; | |
3388007b | 1349 | if (dest->addrtype == TIPC_ADDR_NAME) { |
301bae56 JPM |
1350 | tsk->conn_type = dest->addr.name.name.type; |
1351 | tsk->conn_instance = dest->addr.name.name.instance; | |
3388007b | 1352 | } |
25b9221b | 1353 | msg_set_syn(hdr, 1); |
b97bf3fd | 1354 | } |
e2dafe87 | 1355 | |
365ad353 JPM |
1356 | seq = &dest->addr.nameseq; |
1357 | if (dest->addrtype == TIPC_ADDR_MCAST) | |
1358 | return tipc_sendmcast(sock, seq, m, dlen, timeout); | |
e2dafe87 | 1359 | |
365ad353 JPM |
1360 | if (dest->addrtype == TIPC_ADDR_NAME) { |
1361 | type = dest->addr.name.name.type; | |
1362 | inst = dest->addr.name.name.instance; | |
928df188 | 1363 | dnode = dest->addr.name.domain; |
365ad353 JPM |
1364 | msg_set_type(hdr, TIPC_NAMED_MSG); |
1365 | msg_set_hdr_sz(hdr, NAMED_H_SIZE); | |
1366 | msg_set_nametype(hdr, type); | |
1367 | msg_set_nameinst(hdr, inst); | |
928df188 | 1368 | msg_set_lookup_scope(hdr, tipc_node2scope(dnode)); |
4ac1c8d0 | 1369 | dport = tipc_nametbl_translate(net, type, inst, &dnode); |
365ad353 JPM |
1370 | msg_set_destnode(hdr, dnode); |
1371 | msg_set_destport(hdr, dport); | |
39a0295f YX |
1372 | if (unlikely(!dport && !dnode)) |
1373 | return -EHOSTUNREACH; | |
e2dafe87 JPM |
1374 | } else if (dest->addrtype == TIPC_ADDR_ID) { |
1375 | dnode = dest->addr.id.node; | |
365ad353 JPM |
1376 | msg_set_type(hdr, TIPC_DIRECT_MSG); |
1377 | msg_set_lookup_scope(hdr, 0); | |
1378 | msg_set_destnode(hdr, dnode); | |
1379 | msg_set_destport(hdr, dest->addr.id.ref); | |
1380 | msg_set_hdr_sz(hdr, BASIC_H_SIZE); | |
335b929b JM |
1381 | } else { |
1382 | return -EINVAL; | |
e2dafe87 JPM |
1383 | } |
1384 | ||
365ad353 | 1385 | /* Block or return if destination link is congested */ |
a80ae530 JM |
1386 | rc = tipc_wait_for_cond(sock, &timeout, |
1387 | !tipc_dest_find(clinks, dnode, 0)); | |
365ad353 JPM |
1388 | if (unlikely(rc)) |
1389 | return rc; | |
1390 | ||
1391 | skb_queue_head_init(&pkts); | |
f2f9800d | 1392 | mtu = tipc_node_get_mtu(net, dnode, tsk->portid); |
365ad353 JPM |
1393 | rc = tipc_msg_build(hdr, m, 0, dlen, mtu, &pkts); |
1394 | if (unlikely(rc != dlen)) | |
39a0295f | 1395 | return rc; |
67879274 TN |
1396 | if (unlikely(syn && !tipc_msg_skb_clone(&pkts, &sk->sk_write_queue))) |
1397 | return -ENOMEM; | |
e2dafe87 | 1398 | |
01e661eb | 1399 | trace_tipc_sk_sendmsg(sk, skb_peek(&pkts), TIPC_DUMP_SK_SNDQ, " "); |
365ad353 JPM |
1400 | rc = tipc_node_xmit(net, &pkts, dnode, tsk->portid); |
1401 | if (unlikely(rc == -ELINKCONG)) { | |
a80ae530 | 1402 | tipc_dest_push(clinks, dnode, 0); |
365ad353 JPM |
1403 | tsk->cong_link_cnt++; |
1404 | rc = 0; | |
1405 | } | |
e2dafe87 | 1406 | |
365ad353 JPM |
1407 | if (unlikely(syn && !rc)) |
1408 | tipc_set_sk_state(sk, TIPC_CONNECTING); | |
1409 | ||
1410 | return rc ? rc : dlen; | |
b97bf3fd PL |
1411 | } |
1412 | ||
c4307285 | 1413 | /** |
365ad353 | 1414 | * tipc_sendstream - send stream-oriented data |
b97bf3fd | 1415 | * @sock: socket structure |
4ccfe5e0 JPM |
1416 | * @m: data to send |
1417 | * @dsz: total length of data to be transmitted | |
c4307285 | 1418 | * |
4ccfe5e0 | 1419 | * Used for SOCK_STREAM data. |
c4307285 | 1420 | * |
4ccfe5e0 JPM |
1421 | * Returns the number of bytes sent on success (or partial success), |
1422 | * or errno if no data sent | |
b97bf3fd | 1423 | */ |
365ad353 | 1424 | static int tipc_sendstream(struct socket *sock, struct msghdr *m, size_t dsz) |
39a0295f YX |
1425 | { |
1426 | struct sock *sk = sock->sk; | |
1427 | int ret; | |
1428 | ||
1429 | lock_sock(sk); | |
365ad353 | 1430 | ret = __tipc_sendstream(sock, m, dsz); |
39a0295f YX |
1431 | release_sock(sk); |
1432 | ||
1433 | return ret; | |
1434 | } | |
1435 | ||
365ad353 | 1436 | static int __tipc_sendstream(struct socket *sock, struct msghdr *m, size_t dlen) |
b97bf3fd | 1437 | { |
0c3141e9 | 1438 | struct sock *sk = sock->sk; |
342dfc30 | 1439 | DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name); |
365ad353 JPM |
1440 | long timeout = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT); |
1441 | struct tipc_sock *tsk = tipc_sk(sk); | |
1442 | struct tipc_msg *hdr = &tsk->phdr; | |
1443 | struct net *net = sock_net(sk); | |
1444 | struct sk_buff_head pkts; | |
1445 | u32 dnode = tsk_peer_node(tsk); | |
1446 | int send, sent = 0; | |
1447 | int rc = 0; | |
1d835874 | 1448 | |
365ad353 | 1449 | skb_queue_head_init(&pkts); |
7cf87fa2 | 1450 | |
365ad353 JPM |
1451 | if (unlikely(dlen > INT_MAX)) |
1452 | return -EMSGSIZE; | |
4ccfe5e0 | 1453 | |
365ad353 JPM |
1454 | /* Handle implicit connection setup */ |
1455 | if (unlikely(dest)) { | |
1456 | rc = __tipc_sendmsg(sock, m, dlen); | |
92ef12b3 PB |
1457 | if (dlen && dlen == rc) { |
1458 | tsk->peer_caps = tipc_node_get_capabilities(net, dnode); | |
365ad353 | 1459 | tsk->snt_unacked = tsk_inc(tsk, dlen + msg_hdr_sz(hdr)); |
92ef12b3 | 1460 | } |
39a0295f | 1461 | return rc; |
365ad353 | 1462 | } |
f214fc40 | 1463 | |
c4307285 | 1464 | do { |
365ad353 JPM |
1465 | rc = tipc_wait_for_cond(sock, &timeout, |
1466 | (!tsk->cong_link_cnt && | |
8c44e1af JPM |
1467 | !tsk_conn_cong(tsk) && |
1468 | tipc_sk_connected(sk))); | |
365ad353 JPM |
1469 | if (unlikely(rc)) |
1470 | break; | |
1471 | ||
1472 | send = min_t(size_t, dlen - sent, TIPC_MAX_USER_MSG_SIZE); | |
1473 | rc = tipc_msg_build(hdr, m, sent, send, tsk->max_pkt, &pkts); | |
1474 | if (unlikely(rc != send)) | |
1475 | break; | |
1476 | ||
01e661eb TL |
1477 | trace_tipc_sk_sendstream(sk, skb_peek(&pkts), |
1478 | TIPC_DUMP_SK_SNDQ, " "); | |
365ad353 JPM |
1479 | rc = tipc_node_xmit(net, &pkts, dnode, tsk->portid); |
1480 | if (unlikely(rc == -ELINKCONG)) { | |
1481 | tsk->cong_link_cnt = 1; | |
1482 | rc = 0; | |
1483 | } | |
1484 | if (likely(!rc)) { | |
1485 | tsk->snt_unacked += tsk_inc(tsk, send + MIN_H_SIZE); | |
1486 | sent += send; | |
1487 | } | |
1488 | } while (sent < dlen && !rc); | |
39a0295f | 1489 | |
3364d61c | 1490 | return sent ? sent : rc; |
b97bf3fd PL |
1491 | } |
1492 | ||
c4307285 | 1493 | /** |
4ccfe5e0 | 1494 | * tipc_send_packet - send a connection-oriented message |
b97bf3fd | 1495 | * @sock: socket structure |
4ccfe5e0 JPM |
1496 | * @m: message to send |
1497 | * @dsz: length of data to be transmitted | |
c4307285 | 1498 | * |
4ccfe5e0 | 1499 | * Used for SOCK_SEQPACKET messages. |
c4307285 | 1500 | * |
4ccfe5e0 | 1501 | * Returns the number of bytes sent on success, or errno otherwise |
b97bf3fd | 1502 | */ |
1b784140 | 1503 | static int tipc_send_packet(struct socket *sock, struct msghdr *m, size_t dsz) |
b97bf3fd | 1504 | { |
4ccfe5e0 JPM |
1505 | if (dsz > TIPC_MAX_USER_MSG_SIZE) |
1506 | return -EMSGSIZE; | |
b97bf3fd | 1507 | |
365ad353 | 1508 | return tipc_sendstream(sock, m, dsz); |
b97bf3fd PL |
1509 | } |
1510 | ||
dadebc00 | 1511 | /* tipc_sk_finish_conn - complete the setup of a connection |
b97bf3fd | 1512 | */ |
301bae56 | 1513 | static void tipc_sk_finish_conn(struct tipc_sock *tsk, u32 peer_port, |
dadebc00 | 1514 | u32 peer_node) |
b97bf3fd | 1515 | { |
3721e9c7 YX |
1516 | struct sock *sk = &tsk->sk; |
1517 | struct net *net = sock_net(sk); | |
301bae56 | 1518 | struct tipc_msg *msg = &tsk->phdr; |
b97bf3fd | 1519 | |
25b9221b | 1520 | msg_set_syn(msg, 0); |
dadebc00 JPM |
1521 | msg_set_destnode(msg, peer_node); |
1522 | msg_set_destport(msg, peer_port); | |
1523 | msg_set_type(msg, TIPC_CONN_MSG); | |
1524 | msg_set_lookup_scope(msg, 0); | |
1525 | msg_set_hdr_sz(msg, SHORT_H_SIZE); | |
584d24b3 | 1526 | |
0d5fcebf | 1527 | sk_reset_timer(sk, &sk->sk_timer, jiffies + CONN_PROBING_INTV); |
8ea642ee | 1528 | tipc_set_sk_state(sk, TIPC_ESTABLISHED); |
f2f9800d YX |
1529 | tipc_node_add_conn(net, peer_node, tsk->portid, peer_port); |
1530 | tsk->max_pkt = tipc_node_get_mtu(net, peer_node, tsk->portid); | |
60020e18 | 1531 | tsk->peer_caps = tipc_node_get_capabilities(net, peer_node); |
67879274 | 1532 | __skb_queue_purge(&sk->sk_write_queue); |
10724cc7 JPM |
1533 | if (tsk->peer_caps & TIPC_BLOCK_FLOWCTL) |
1534 | return; | |
1535 | ||
1536 | /* Fall back to message based flow control */ | |
1537 | tsk->rcv_win = FLOWCTL_MSG_WIN; | |
1538 | tsk->snd_win = FLOWCTL_MSG_WIN; | |
b97bf3fd PL |
1539 | } |
1540 | ||
1541 | /** | |
31c82a2d | 1542 | * tipc_sk_set_orig_addr - capture sender's address for received message |
b97bf3fd | 1543 | * @m: descriptor for message info |
31c82a2d | 1544 | * @hdr: received message header |
c4307285 | 1545 | * |
b97bf3fd PL |
1546 | * Note: Address is not captured if not requested by receiver. |
1547 | */ | |
31c82a2d | 1548 | static void tipc_sk_set_orig_addr(struct msghdr *m, struct sk_buff *skb) |
b97bf3fd | 1549 | { |
31c82a2d JM |
1550 | DECLARE_SOCKADDR(struct sockaddr_pair *, srcaddr, m->msg_name); |
1551 | struct tipc_msg *hdr = buf_msg(skb); | |
1552 | ||
1553 | if (!srcaddr) | |
1554 | return; | |
1555 | ||
1556 | srcaddr->sock.family = AF_TIPC; | |
1557 | srcaddr->sock.addrtype = TIPC_ADDR_ID; | |
09c8b971 | 1558 | srcaddr->sock.scope = 0; |
31c82a2d JM |
1559 | srcaddr->sock.addr.id.ref = msg_origport(hdr); |
1560 | srcaddr->sock.addr.id.node = msg_orignode(hdr); | |
1561 | srcaddr->sock.addr.name.domain = 0; | |
31c82a2d JM |
1562 | m->msg_namelen = sizeof(struct sockaddr_tipc); |
1563 | ||
1564 | if (!msg_in_group(hdr)) | |
1565 | return; | |
1566 | ||
1567 | /* Group message users may also want to know sending member's id */ | |
1568 | srcaddr->member.family = AF_TIPC; | |
1569 | srcaddr->member.addrtype = TIPC_ADDR_NAME; | |
09c8b971 | 1570 | srcaddr->member.scope = 0; |
31c82a2d JM |
1571 | srcaddr->member.addr.name.name.type = msg_nametype(hdr); |
1572 | srcaddr->member.addr.name.name.instance = TIPC_SKB_CB(skb)->orig_member; | |
1573 | srcaddr->member.addr.name.domain = 0; | |
1574 | m->msg_namelen = sizeof(*srcaddr); | |
b97bf3fd PL |
1575 | } |
1576 | ||
1577 | /** | |
301bae56 | 1578 | * tipc_sk_anc_data_recv - optionally capture ancillary data for received message |
b97bf3fd | 1579 | * @m: descriptor for message info |
1c1274a5 | 1580 | * @skb: received message buffer |
301bae56 | 1581 | * @tsk: TIPC port associated with message |
c4307285 | 1582 | * |
b97bf3fd | 1583 | * Note: Ancillary data is not captured if not requested by receiver. |
c4307285 | 1584 | * |
b97bf3fd PL |
1585 | * Returns 0 if successful, otherwise errno |
1586 | */ | |
1c1274a5 | 1587 | static int tipc_sk_anc_data_recv(struct msghdr *m, struct sk_buff *skb, |
301bae56 | 1588 | struct tipc_sock *tsk) |
b97bf3fd | 1589 | { |
1c1274a5 | 1590 | struct tipc_msg *msg; |
b97bf3fd PL |
1591 | u32 anc_data[3]; |
1592 | u32 err; | |
1593 | u32 dest_type; | |
3546c750 | 1594 | int has_name; |
b97bf3fd PL |
1595 | int res; |
1596 | ||
1597 | if (likely(m->msg_controllen == 0)) | |
1598 | return 0; | |
1c1274a5 | 1599 | msg = buf_msg(skb); |
b97bf3fd PL |
1600 | |
1601 | /* Optionally capture errored message object(s) */ | |
b97bf3fd PL |
1602 | err = msg ? msg_errcode(msg) : 0; |
1603 | if (unlikely(err)) { | |
1604 | anc_data[0] = err; | |
1605 | anc_data[1] = msg_data_sz(msg); | |
2db9983a AS |
1606 | res = put_cmsg(m, SOL_TIPC, TIPC_ERRINFO, 8, anc_data); |
1607 | if (res) | |
b97bf3fd | 1608 | return res; |
2db9983a | 1609 | if (anc_data[1]) { |
1c1274a5 JM |
1610 | if (skb_linearize(skb)) |
1611 | return -ENOMEM; | |
1612 | msg = buf_msg(skb); | |
2db9983a AS |
1613 | res = put_cmsg(m, SOL_TIPC, TIPC_RETDATA, anc_data[1], |
1614 | msg_data(msg)); | |
1615 | if (res) | |
1616 | return res; | |
1617 | } | |
b97bf3fd PL |
1618 | } |
1619 | ||
1620 | /* Optionally capture message destination object */ | |
b97bf3fd PL |
1621 | dest_type = msg ? msg_type(msg) : TIPC_DIRECT_MSG; |
1622 | switch (dest_type) { | |
1623 | case TIPC_NAMED_MSG: | |
3546c750 | 1624 | has_name = 1; |
b97bf3fd PL |
1625 | anc_data[0] = msg_nametype(msg); |
1626 | anc_data[1] = msg_namelower(msg); | |
1627 | anc_data[2] = msg_namelower(msg); | |
1628 | break; | |
1629 | case TIPC_MCAST_MSG: | |
3546c750 | 1630 | has_name = 1; |
b97bf3fd PL |
1631 | anc_data[0] = msg_nametype(msg); |
1632 | anc_data[1] = msg_namelower(msg); | |
1633 | anc_data[2] = msg_nameupper(msg); | |
1634 | break; | |
1635 | case TIPC_CONN_MSG: | |
301bae56 JPM |
1636 | has_name = (tsk->conn_type != 0); |
1637 | anc_data[0] = tsk->conn_type; | |
1638 | anc_data[1] = tsk->conn_instance; | |
1639 | anc_data[2] = tsk->conn_instance; | |
b97bf3fd PL |
1640 | break; |
1641 | default: | |
3546c750 | 1642 | has_name = 0; |
b97bf3fd | 1643 | } |
2db9983a AS |
1644 | if (has_name) { |
1645 | res = put_cmsg(m, SOL_TIPC, TIPC_DESTNAME, 12, anc_data); | |
1646 | if (res) | |
1647 | return res; | |
1648 | } | |
b97bf3fd PL |
1649 | |
1650 | return 0; | |
1651 | } | |
1652 | ||
10724cc7 | 1653 | static void tipc_sk_send_ack(struct tipc_sock *tsk) |
739f5e4e | 1654 | { |
d6fb7e9c PB |
1655 | struct sock *sk = &tsk->sk; |
1656 | struct net *net = sock_net(sk); | |
a6ca1094 | 1657 | struct sk_buff *skb = NULL; |
739f5e4e | 1658 | struct tipc_msg *msg; |
301bae56 JPM |
1659 | u32 peer_port = tsk_peer_port(tsk); |
1660 | u32 dnode = tsk_peer_node(tsk); | |
739f5e4e | 1661 | |
d6fb7e9c | 1662 | if (!tipc_sk_connected(sk)) |
739f5e4e | 1663 | return; |
c5898636 JPM |
1664 | skb = tipc_msg_create(CONN_MANAGER, CONN_ACK, INT_H_SIZE, 0, |
1665 | dnode, tsk_own_node(tsk), peer_port, | |
1666 | tsk->portid, TIPC_OK); | |
a6ca1094 | 1667 | if (!skb) |
739f5e4e | 1668 | return; |
a6ca1094 | 1669 | msg = buf_msg(skb); |
10724cc7 JPM |
1670 | msg_set_conn_ack(msg, tsk->rcv_unacked); |
1671 | tsk->rcv_unacked = 0; | |
1672 | ||
1673 | /* Adjust to and advertize the correct window limit */ | |
1674 | if (tsk->peer_caps & TIPC_BLOCK_FLOWCTL) { | |
1675 | tsk->rcv_win = tsk_adv_blocks(tsk->sk.sk_rcvbuf); | |
1676 | msg_set_adv_win(msg, tsk->rcv_win); | |
1677 | } | |
af9b028e | 1678 | tipc_node_xmit_skb(net, skb, dnode, msg_link_selector(msg)); |
739f5e4e JPM |
1679 | } |
1680 | ||
85d3fc94 | 1681 | static int tipc_wait_for_rcvmsg(struct socket *sock, long *timeop) |
9bbb4ecc YX |
1682 | { |
1683 | struct sock *sk = sock->sk; | |
48766a58 | 1684 | DEFINE_WAIT_FUNC(wait, woken_wake_function); |
85d3fc94 | 1685 | long timeo = *timeop; |
4e0df495 PB |
1686 | int err = sock_error(sk); |
1687 | ||
1688 | if (err) | |
1689 | return err; | |
9bbb4ecc YX |
1690 | |
1691 | for (;;) { | |
fe8e4649 | 1692 | if (timeo && skb_queue_empty(&sk->sk_receive_queue)) { |
6f00089c | 1693 | if (sk->sk_shutdown & RCV_SHUTDOWN) { |
9bbb4ecc YX |
1694 | err = -ENOTCONN; |
1695 | break; | |
1696 | } | |
48766a58 | 1697 | add_wait_queue(sk_sleep(sk), &wait); |
9bbb4ecc | 1698 | release_sock(sk); |
48766a58 TN |
1699 | timeo = wait_woken(&wait, TASK_INTERRUPTIBLE, timeo); |
1700 | sched_annotate_sleep(); | |
9bbb4ecc | 1701 | lock_sock(sk); |
48766a58 | 1702 | remove_wait_queue(sk_sleep(sk), &wait); |
9bbb4ecc YX |
1703 | } |
1704 | err = 0; | |
1705 | if (!skb_queue_empty(&sk->sk_receive_queue)) | |
1706 | break; | |
9bbb4ecc YX |
1707 | err = -EAGAIN; |
1708 | if (!timeo) | |
1709 | break; | |
143fe22f EH |
1710 | err = sock_intr_errno(timeo); |
1711 | if (signal_pending(current)) | |
1712 | break; | |
4e0df495 PB |
1713 | |
1714 | err = sock_error(sk); | |
1715 | if (err) | |
1716 | break; | |
9bbb4ecc | 1717 | } |
85d3fc94 | 1718 | *timeop = timeo; |
9bbb4ecc YX |
1719 | return err; |
1720 | } | |
1721 | ||
c4307285 | 1722 | /** |
247f0f3c | 1723 | * tipc_recvmsg - receive packet-oriented message |
b97bf3fd | 1724 | * @m: descriptor for message info |
e9f8b101 | 1725 | * @buflen: length of user buffer area |
b97bf3fd | 1726 | * @flags: receive flags |
c4307285 | 1727 | * |
b97bf3fd PL |
1728 | * Used for SOCK_DGRAM, SOCK_RDM, and SOCK_SEQPACKET messages. |
1729 | * If the complete message doesn't fit in user area, truncate it. | |
1730 | * | |
1731 | * Returns size of returned message data, errno otherwise | |
1732 | */ | |
e9f8b101 JPM |
1733 | static int tipc_recvmsg(struct socket *sock, struct msghdr *m, |
1734 | size_t buflen, int flags) | |
b97bf3fd | 1735 | { |
0c3141e9 | 1736 | struct sock *sk = sock->sk; |
e9f8b101 | 1737 | bool connected = !tipc_sk_type_connectionless(sk); |
ae236fb2 | 1738 | struct tipc_sock *tsk = tipc_sk(sk); |
e9f8b101 | 1739 | int rc, err, hlen, dlen, copy; |
b7d42635 | 1740 | struct sk_buff_head xmitq; |
ae236fb2 JM |
1741 | struct tipc_msg *hdr; |
1742 | struct sk_buff *skb; | |
1743 | bool grp_evt; | |
e9f8b101 | 1744 | long timeout; |
b97bf3fd | 1745 | |
0c3141e9 | 1746 | /* Catch invalid receive requests */ |
e9f8b101 | 1747 | if (unlikely(!buflen)) |
b97bf3fd PL |
1748 | return -EINVAL; |
1749 | ||
0c3141e9 | 1750 | lock_sock(sk); |
e9f8b101 JPM |
1751 | if (unlikely(connected && sk->sk_state == TIPC_OPEN)) { |
1752 | rc = -ENOTCONN; | |
b97bf3fd PL |
1753 | goto exit; |
1754 | } | |
e9f8b101 | 1755 | timeout = sock_rcvtimeo(sk, flags & MSG_DONTWAIT); |
b97bf3fd | 1756 | |
b7d42635 | 1757 | /* Step rcv queue to first msg with data or error; wait if necessary */ |
e9f8b101 | 1758 | do { |
e9f8b101 JPM |
1759 | rc = tipc_wait_for_rcvmsg(sock, &timeout); |
1760 | if (unlikely(rc)) | |
1761 | goto exit; | |
1762 | skb = skb_peek(&sk->sk_receive_queue); | |
1763 | hdr = buf_msg(skb); | |
1764 | dlen = msg_data_sz(hdr); | |
1765 | hlen = msg_hdr_sz(hdr); | |
1766 | err = msg_errcode(hdr); | |
ae236fb2 | 1767 | grp_evt = msg_is_grp_evt(hdr); |
e9f8b101 JPM |
1768 | if (likely(dlen || err)) |
1769 | break; | |
2e84c60b | 1770 | tsk_advance_rx_queue(sk); |
e9f8b101 | 1771 | } while (1); |
b97bf3fd | 1772 | |
e9f8b101 | 1773 | /* Collect msg meta data, including error code and rejected data */ |
31c82a2d | 1774 | tipc_sk_set_orig_addr(m, skb); |
1c1274a5 | 1775 | rc = tipc_sk_anc_data_recv(m, skb, tsk); |
e9f8b101 | 1776 | if (unlikely(rc)) |
b97bf3fd | 1777 | goto exit; |
1c1274a5 | 1778 | hdr = buf_msg(skb); |
b97bf3fd | 1779 | |
e9f8b101 JPM |
1780 | /* Capture data if non-error msg, otherwise just set return value */ |
1781 | if (likely(!err)) { | |
1782 | copy = min_t(int, dlen, buflen); | |
1783 | if (unlikely(copy != dlen)) | |
b97bf3fd | 1784 | m->msg_flags |= MSG_TRUNC; |
e9f8b101 | 1785 | rc = skb_copy_datagram_msg(skb, hlen, m, copy); |
b97bf3fd | 1786 | } else { |
e9f8b101 JPM |
1787 | copy = 0; |
1788 | rc = 0; | |
1789 | if (err != TIPC_CONN_SHUTDOWN && connected && !m->msg_control) | |
1790 | rc = -ECONNRESET; | |
b97bf3fd | 1791 | } |
e9f8b101 JPM |
1792 | if (unlikely(rc)) |
1793 | goto exit; | |
b97bf3fd | 1794 | |
ae236fb2 JM |
1795 | /* Mark message as group event if applicable */ |
1796 | if (unlikely(grp_evt)) { | |
1797 | if (msg_grp_evt(hdr) == TIPC_WITHDRAWN) | |
1798 | m->msg_flags |= MSG_EOR; | |
1799 | m->msg_flags |= MSG_OOB; | |
1800 | copy = 0; | |
1801 | } | |
1802 | ||
e9f8b101 | 1803 | /* Caption of data or error code/rejected data was successful */ |
10724cc7 JPM |
1804 | if (unlikely(flags & MSG_PEEK)) |
1805 | goto exit; | |
1806 | ||
b7d42635 JM |
1807 | /* Send group flow control advertisement when applicable */ |
1808 | if (tsk->group && msg_in_group(hdr) && !grp_evt) { | |
1809 | skb_queue_head_init(&xmitq); | |
1810 | tipc_group_update_rcv_win(tsk->group, tsk_blocks(hlen + dlen), | |
1811 | msg_orignode(hdr), msg_origport(hdr), | |
1812 | &xmitq); | |
1813 | tipc_node_distr_xmit(sock_net(sk), &xmitq); | |
1814 | } | |
1815 | ||
10724cc7 | 1816 | tsk_advance_rx_queue(sk); |
ae236fb2 | 1817 | |
e9f8b101 JPM |
1818 | if (likely(!connected)) |
1819 | goto exit; | |
1820 | ||
b7d42635 | 1821 | /* Send connection flow control advertisement when applicable */ |
e9f8b101 JPM |
1822 | tsk->rcv_unacked += tsk_inc(tsk, hlen + dlen); |
1823 | if (tsk->rcv_unacked >= tsk->rcv_win / TIPC_ACK_RATE) | |
1824 | tipc_sk_send_ack(tsk); | |
b97bf3fd | 1825 | exit: |
0c3141e9 | 1826 | release_sock(sk); |
e9f8b101 | 1827 | return rc ? rc : copy; |
b97bf3fd PL |
1828 | } |
1829 | ||
c4307285 | 1830 | /** |
ec8a09fb | 1831 | * tipc_recvstream - receive stream-oriented data |
b97bf3fd | 1832 | * @m: descriptor for message info |
ec8a09fb | 1833 | * @buflen: total size of user buffer area |
b97bf3fd | 1834 | * @flags: receive flags |
c4307285 YH |
1835 | * |
1836 | * Used for SOCK_STREAM messages only. If not enough data is available | |
b97bf3fd PL |
1837 | * will optionally wait for more; never truncates data. |
1838 | * | |
1839 | * Returns size of returned message data, errno otherwise | |
1840 | */ | |
ec8a09fb JPM |
1841 | static int tipc_recvstream(struct socket *sock, struct msghdr *m, |
1842 | size_t buflen, int flags) | |
b97bf3fd | 1843 | { |
0c3141e9 | 1844 | struct sock *sk = sock->sk; |
58ed9442 | 1845 | struct tipc_sock *tsk = tipc_sk(sk); |
ec8a09fb JPM |
1846 | struct sk_buff *skb; |
1847 | struct tipc_msg *hdr; | |
1848 | struct tipc_skb_cb *skb_cb; | |
1849 | bool peek = flags & MSG_PEEK; | |
1850 | int offset, required, copy, copied = 0; | |
1851 | int hlen, dlen, err, rc; | |
1852 | long timeout; | |
b97bf3fd | 1853 | |
0c3141e9 | 1854 | /* Catch invalid receive attempts */ |
ec8a09fb | 1855 | if (unlikely(!buflen)) |
b97bf3fd PL |
1856 | return -EINVAL; |
1857 | ||
0c3141e9 | 1858 | lock_sock(sk); |
b97bf3fd | 1859 | |
438adcaf | 1860 | if (unlikely(sk->sk_state == TIPC_OPEN)) { |
ec8a09fb | 1861 | rc = -ENOTCONN; |
9bbb4ecc | 1862 | goto exit; |
b97bf3fd | 1863 | } |
ec8a09fb JPM |
1864 | required = sock_rcvlowat(sk, flags & MSG_WAITALL, buflen); |
1865 | timeout = sock_rcvtimeo(sk, flags & MSG_DONTWAIT); | |
b97bf3fd | 1866 | |
ec8a09fb JPM |
1867 | do { |
1868 | /* Look at first msg in receive queue; wait if necessary */ | |
1869 | rc = tipc_wait_for_rcvmsg(sock, &timeout); | |
1870 | if (unlikely(rc)) | |
1871 | break; | |
1872 | skb = skb_peek(&sk->sk_receive_queue); | |
1873 | skb_cb = TIPC_SKB_CB(skb); | |
1874 | hdr = buf_msg(skb); | |
1875 | dlen = msg_data_sz(hdr); | |
1876 | hlen = msg_hdr_sz(hdr); | |
1877 | err = msg_errcode(hdr); | |
0232fd0a | 1878 | |
ec8a09fb JPM |
1879 | /* Discard any empty non-errored (SYN-) message */ |
1880 | if (unlikely(!dlen && !err)) { | |
1881 | tsk_advance_rx_queue(sk); | |
1882 | continue; | |
1883 | } | |
0232fd0a | 1884 | |
ec8a09fb JPM |
1885 | /* Collect msg meta data, incl. error code and rejected data */ |
1886 | if (!copied) { | |
31c82a2d | 1887 | tipc_sk_set_orig_addr(m, skb); |
1c1274a5 | 1888 | rc = tipc_sk_anc_data_recv(m, skb, tsk); |
ec8a09fb JPM |
1889 | if (rc) |
1890 | break; | |
1c1274a5 | 1891 | hdr = buf_msg(skb); |
ec8a09fb | 1892 | } |
b97bf3fd | 1893 | |
ec8a09fb JPM |
1894 | /* Copy data if msg ok, otherwise return error/partial data */ |
1895 | if (likely(!err)) { | |
1896 | offset = skb_cb->bytes_read; | |
1897 | copy = min_t(int, dlen - offset, buflen - copied); | |
1898 | rc = skb_copy_datagram_msg(skb, hlen + offset, m, copy); | |
1899 | if (unlikely(rc)) | |
1900 | break; | |
1901 | copied += copy; | |
1902 | offset += copy; | |
1903 | if (unlikely(offset < dlen)) { | |
1904 | if (!peek) | |
1905 | skb_cb->bytes_read = offset; | |
1906 | break; | |
1907 | } | |
1908 | } else { | |
1909 | rc = 0; | |
1910 | if ((err != TIPC_CONN_SHUTDOWN) && !m->msg_control) | |
1911 | rc = -ECONNRESET; | |
1912 | if (copied || rc) | |
1913 | break; | |
b97bf3fd | 1914 | } |
b97bf3fd | 1915 | |
ec8a09fb JPM |
1916 | if (unlikely(peek)) |
1917 | break; | |
b97bf3fd | 1918 | |
ec8a09fb | 1919 | tsk_advance_rx_queue(sk); |
10724cc7 | 1920 | |
ec8a09fb JPM |
1921 | /* Send connection flow control advertisement when applicable */ |
1922 | tsk->rcv_unacked += tsk_inc(tsk, hlen + dlen); | |
1923 | if (unlikely(tsk->rcv_unacked >= tsk->rcv_win / TIPC_ACK_RATE)) | |
1924 | tipc_sk_send_ack(tsk); | |
b97bf3fd | 1925 | |
ec8a09fb JPM |
1926 | /* Exit if all requested data or FIN/error received */ |
1927 | if (copied == buflen || err) | |
1928 | break; | |
b97bf3fd | 1929 | |
ec8a09fb | 1930 | } while (!skb_queue_empty(&sk->sk_receive_queue) || copied < required); |
b97bf3fd | 1931 | exit: |
0c3141e9 | 1932 | release_sock(sk); |
ec8a09fb | 1933 | return copied ? copied : rc; |
b97bf3fd PL |
1934 | } |
1935 | ||
f288bef4 YX |
1936 | /** |
1937 | * tipc_write_space - wake up thread if port congestion is released | |
1938 | * @sk: socket | |
1939 | */ | |
1940 | static void tipc_write_space(struct sock *sk) | |
1941 | { | |
1942 | struct socket_wq *wq; | |
1943 | ||
1944 | rcu_read_lock(); | |
1945 | wq = rcu_dereference(sk->sk_wq); | |
1ce0bf50 | 1946 | if (skwq_has_sleeper(wq)) |
a9a08845 LT |
1947 | wake_up_interruptible_sync_poll(&wq->wait, EPOLLOUT | |
1948 | EPOLLWRNORM | EPOLLWRBAND); | |
f288bef4 YX |
1949 | rcu_read_unlock(); |
1950 | } | |
1951 | ||
1952 | /** | |
1953 | * tipc_data_ready - wake up threads to indicate messages have been received | |
1954 | * @sk: socket | |
1955 | * @len: the length of messages | |
1956 | */ | |
676d2369 | 1957 | static void tipc_data_ready(struct sock *sk) |
f288bef4 YX |
1958 | { |
1959 | struct socket_wq *wq; | |
1960 | ||
1961 | rcu_read_lock(); | |
1962 | wq = rcu_dereference(sk->sk_wq); | |
1ce0bf50 | 1963 | if (skwq_has_sleeper(wq)) |
a9a08845 LT |
1964 | wake_up_interruptible_sync_poll(&wq->wait, EPOLLIN | |
1965 | EPOLLRDNORM | EPOLLRDBAND); | |
f288bef4 YX |
1966 | rcu_read_unlock(); |
1967 | } | |
1968 | ||
f4195d1e YX |
1969 | static void tipc_sock_destruct(struct sock *sk) |
1970 | { | |
1971 | __skb_queue_purge(&sk->sk_receive_queue); | |
1972 | } | |
1973 | ||
64ac5f59 JM |
1974 | static void tipc_sk_proto_rcv(struct sock *sk, |
1975 | struct sk_buff_head *inputq, | |
1976 | struct sk_buff_head *xmitq) | |
1977 | { | |
1978 | struct sk_buff *skb = __skb_dequeue(inputq); | |
1979 | struct tipc_sock *tsk = tipc_sk(sk); | |
1980 | struct tipc_msg *hdr = buf_msg(skb); | |
75da2163 | 1981 | struct tipc_group *grp = tsk->group; |
b7d42635 | 1982 | bool wakeup = false; |
64ac5f59 JM |
1983 | |
1984 | switch (msg_user(hdr)) { | |
1985 | case CONN_MANAGER: | |
e7eb0582 | 1986 | tipc_sk_conn_proto_rcv(tsk, skb, inputq, xmitq); |
64ac5f59 JM |
1987 | return; |
1988 | case SOCK_WAKEUP: | |
a80ae530 | 1989 | tipc_dest_del(&tsk->cong_links, msg_orignode(hdr), 0); |
bfd07f3d TN |
1990 | /* coupled with smp_rmb() in tipc_wait_for_cond() */ |
1991 | smp_wmb(); | |
64ac5f59 | 1992 | tsk->cong_link_cnt--; |
b7d42635 | 1993 | wakeup = true; |
64ac5f59 | 1994 | break; |
75da2163 | 1995 | case GROUP_PROTOCOL: |
b7d42635 | 1996 | tipc_group_proto_rcv(grp, &wakeup, hdr, inputq, xmitq); |
75da2163 | 1997 | break; |
64ac5f59 | 1998 | case TOP_SRV: |
b7d42635 | 1999 | tipc_group_member_evt(tsk->group, &wakeup, &sk->sk_rcvbuf, |
7ad32bcb | 2000 | hdr, inputq, xmitq); |
64ac5f59 JM |
2001 | break; |
2002 | default: | |
2003 | break; | |
2004 | } | |
2005 | ||
b7d42635 JM |
2006 | if (wakeup) |
2007 | sk->sk_write_space(sk); | |
2008 | ||
64ac5f59 JM |
2009 | kfree_skb(skb); |
2010 | } | |
2011 | ||
7e6c131e | 2012 | /** |
39fdc9c7 | 2013 | * tipc_sk_filter_connect - check incoming message for a connection-based socket |
58ed9442 | 2014 | * @tsk: TIPC socket |
39fdc9c7 JM |
2015 | * @skb: pointer to message buffer. |
2016 | * Returns true if message should be added to receive queue, false otherwise | |
7e6c131e | 2017 | */ |
64ac5f59 | 2018 | static bool tipc_sk_filter_connect(struct tipc_sock *tsk, struct sk_buff *skb) |
7e6c131e | 2019 | { |
58ed9442 | 2020 | struct sock *sk = &tsk->sk; |
f2f9800d | 2021 | struct net *net = sock_net(sk); |
cda3696d | 2022 | struct tipc_msg *hdr = buf_msg(skb); |
39fdc9c7 JM |
2023 | bool con_msg = msg_connected(hdr); |
2024 | u32 pport = tsk_peer_port(tsk); | |
2025 | u32 pnode = tsk_peer_node(tsk); | |
2026 | u32 oport = msg_origport(hdr); | |
2027 | u32 onode = msg_orignode(hdr); | |
2028 | int err = msg_errcode(hdr); | |
67879274 | 2029 | unsigned long delay; |
7e6c131e | 2030 | |
cda3696d JPM |
2031 | if (unlikely(msg_mcast(hdr))) |
2032 | return false; | |
7e6c131e | 2033 | |
99a20889 PB |
2034 | switch (sk->sk_state) { |
2035 | case TIPC_CONNECTING: | |
39fdc9c7 JM |
2036 | /* Setup ACK */ |
2037 | if (likely(con_msg)) { | |
2038 | if (err) | |
2039 | break; | |
2040 | tipc_sk_finish_conn(tsk, oport, onode); | |
2041 | msg_set_importance(&tsk->phdr, msg_importance(hdr)); | |
2042 | /* ACK+ message with data is added to receive queue */ | |
2043 | if (msg_data_sz(hdr)) | |
2044 | return true; | |
2045 | /* Empty ACK-, - wake up sleeping connect() and drop */ | |
2046 | sk->sk_data_ready(sk); | |
2047 | msg_set_dest_droppable(hdr, 1); | |
2048 | return false; | |
584d24b3 | 2049 | } |
39fdc9c7 JM |
2050 | /* Ignore connectionless message if not from listening socket */ |
2051 | if (oport != pport || onode != pnode) | |
2052 | return false; | |
584d24b3 | 2053 | |
67879274 TN |
2054 | /* Rejected SYN */ |
2055 | if (err != TIPC_ERR_OVERLOAD) | |
2056 | break; | |
2057 | ||
2058 | /* Prepare for new setup attempt if we have a SYN clone */ | |
2059 | if (skb_queue_empty(&sk->sk_write_queue)) | |
2060 | break; | |
2061 | get_random_bytes(&delay, 2); | |
2062 | delay %= (tsk->conn_timeout / 4); | |
2063 | delay = msecs_to_jiffies(delay + 100); | |
2064 | sk_reset_timer(sk, &sk->sk_timer, jiffies + delay); | |
2065 | return false; | |
438adcaf | 2066 | case TIPC_OPEN: |
9fd4b070 | 2067 | case TIPC_DISCONNECTING: |
39fdc9c7 | 2068 | return false; |
438adcaf | 2069 | case TIPC_LISTEN: |
7e6c131e | 2070 | /* Accept only SYN message */ |
25b9221b JM |
2071 | if (!msg_is_syn(hdr) && |
2072 | tipc_node_get_capabilities(net, onode) & TIPC_SYN_BIT) | |
2073 | return false; | |
39fdc9c7 | 2074 | if (!con_msg && !err) |
cda3696d | 2075 | return true; |
39fdc9c7 | 2076 | return false; |
f40acbaf PB |
2077 | case TIPC_ESTABLISHED: |
2078 | /* Accept only connection-based messages sent by peer */ | |
39fdc9c7 JM |
2079 | if (likely(con_msg && !err && pport == oport && pnode == onode)) |
2080 | return true; | |
2081 | if (!tsk_peer_msg(tsk, hdr)) | |
f40acbaf | 2082 | return false; |
39fdc9c7 JM |
2083 | if (!err) |
2084 | return true; | |
2085 | tipc_set_sk_state(sk, TIPC_DISCONNECTING); | |
2086 | tipc_node_remove_conn(net, pnode, tsk->portid); | |
2087 | sk->sk_state_change(sk); | |
f40acbaf | 2088 | return true; |
7e6c131e | 2089 | default: |
438adcaf | 2090 | pr_err("Unknown sk_state %u\n", sk->sk_state); |
7e6c131e | 2091 | } |
39fdc9c7 JM |
2092 | /* Abort connection setup attempt */ |
2093 | tipc_set_sk_state(sk, TIPC_DISCONNECTING); | |
2094 | sk->sk_err = ECONNREFUSED; | |
2095 | sk->sk_state_change(sk); | |
2096 | return true; | |
7e6c131e YX |
2097 | } |
2098 | ||
aba79f33 YX |
2099 | /** |
2100 | * rcvbuf_limit - get proper overload limit of socket receive queue | |
2101 | * @sk: socket | |
10724cc7 | 2102 | * @skb: message |
aba79f33 | 2103 | * |
10724cc7 JPM |
2104 | * For connection oriented messages, irrespective of importance, |
2105 | * default queue limit is 2 MB. | |
aba79f33 | 2106 | * |
10724cc7 JPM |
2107 | * For connectionless messages, queue limits are based on message |
2108 | * importance as follows: | |
aba79f33 | 2109 | * |
10724cc7 JPM |
2110 | * TIPC_LOW_IMPORTANCE (2 MB) |
2111 | * TIPC_MEDIUM_IMPORTANCE (4 MB) | |
2112 | * TIPC_HIGH_IMPORTANCE (8 MB) | |
2113 | * TIPC_CRITICAL_IMPORTANCE (16 MB) | |
aba79f33 YX |
2114 | * |
2115 | * Returns overload limit according to corresponding message importance | |
2116 | */ | |
10724cc7 | 2117 | static unsigned int rcvbuf_limit(struct sock *sk, struct sk_buff *skb) |
aba79f33 | 2118 | { |
10724cc7 JPM |
2119 | struct tipc_sock *tsk = tipc_sk(sk); |
2120 | struct tipc_msg *hdr = buf_msg(skb); | |
2121 | ||
b7d42635 JM |
2122 | if (unlikely(msg_in_group(hdr))) |
2123 | return sk->sk_rcvbuf; | |
2124 | ||
10724cc7 JPM |
2125 | if (unlikely(!msg_connected(hdr))) |
2126 | return sk->sk_rcvbuf << msg_importance(hdr); | |
aba79f33 | 2127 | |
10724cc7 JPM |
2128 | if (likely(tsk->peer_caps & TIPC_BLOCK_FLOWCTL)) |
2129 | return sk->sk_rcvbuf; | |
0cee6bbe | 2130 | |
10724cc7 | 2131 | return FLOWCTL_MSG_LIM; |
aba79f33 YX |
2132 | } |
2133 | ||
c4307285 | 2134 | /** |
64ac5f59 | 2135 | * tipc_sk_filter_rcv - validate incoming message |
0c3141e9 | 2136 | * @sk: socket |
cda3696d | 2137 | * @skb: pointer to message. |
c4307285 | 2138 | * |
0c3141e9 AS |
2139 | * Enqueues message on receive queue if acceptable; optionally handles |
2140 | * disconnect indication for a connected socket. | |
2141 | * | |
1186adf7 | 2142 | * Called with socket lock already taken |
c4307285 | 2143 | * |
b97bf3fd | 2144 | */ |
64ac5f59 JM |
2145 | static void tipc_sk_filter_rcv(struct sock *sk, struct sk_buff *skb, |
2146 | struct sk_buff_head *xmitq) | |
b97bf3fd | 2147 | { |
64ac5f59 | 2148 | bool sk_conn = !tipc_sk_type_connectionless(sk); |
58ed9442 | 2149 | struct tipc_sock *tsk = tipc_sk(sk); |
75da2163 | 2150 | struct tipc_group *grp = tsk->group; |
cda3696d | 2151 | struct tipc_msg *hdr = buf_msg(skb); |
64ac5f59 JM |
2152 | struct net *net = sock_net(sk); |
2153 | struct sk_buff_head inputq; | |
77d5ad40 | 2154 | int mtyp = msg_type(hdr); |
64ac5f59 | 2155 | int limit, err = TIPC_OK; |
ec8a2e56 | 2156 | |
01e661eb | 2157 | trace_tipc_sk_filter_rcv(sk, skb, TIPC_DUMP_ALL, " "); |
64ac5f59 JM |
2158 | TIPC_SKB_CB(skb)->bytes_read = 0; |
2159 | __skb_queue_head_init(&inputq); | |
2160 | __skb_queue_tail(&inputq, skb); | |
50100a5e | 2161 | |
64ac5f59 JM |
2162 | if (unlikely(!msg_isdata(hdr))) |
2163 | tipc_sk_proto_rcv(sk, &inputq, xmitq); | |
0c3141e9 | 2164 | |
75da2163 JM |
2165 | if (unlikely(grp)) |
2166 | tipc_group_filter_msg(grp, &inputq, xmitq); | |
2167 | ||
77d5ad40 | 2168 | if (unlikely(!grp) && mtyp == TIPC_MCAST_MSG) |
08e046c8 | 2169 | tipc_mcast_filter_msg(net, &tsk->mc_method.deferredq, &inputq); |
c55c8eda | 2170 | |
64ac5f59 JM |
2171 | /* Validate and add to receive buffer if there is space */ |
2172 | while ((skb = __skb_dequeue(&inputq))) { | |
2173 | hdr = buf_msg(skb); | |
2174 | limit = rcvbuf_limit(sk, skb); | |
2175 | if ((sk_conn && !tipc_sk_filter_connect(tsk, skb)) || | |
75da2163 JM |
2176 | (!sk_conn && msg_connected(hdr)) || |
2177 | (!grp && msg_in_group(hdr))) | |
cda3696d | 2178 | err = TIPC_ERR_NO_PORT; |
872619d8 | 2179 | else if (sk_rmem_alloc_get(sk) + skb->truesize >= limit) { |
01e661eb TL |
2180 | trace_tipc_sk_dump(sk, skb, TIPC_DUMP_ALL, |
2181 | "err_overload2!"); | |
872619d8 | 2182 | atomic_inc(&sk->sk_drops); |
64ac5f59 | 2183 | err = TIPC_ERR_OVERLOAD; |
872619d8 | 2184 | } |
b97bf3fd | 2185 | |
64ac5f59 | 2186 | if (unlikely(err)) { |
01e661eb TL |
2187 | if (tipc_msg_reverse(tipc_own_addr(net), &skb, err)) { |
2188 | trace_tipc_sk_rej_msg(sk, skb, TIPC_DUMP_NONE, | |
2189 | "@filter_rcv!"); | |
2190 | __skb_queue_tail(xmitq, skb); | |
2191 | } | |
64ac5f59 JM |
2192 | err = TIPC_OK; |
2193 | continue; | |
2194 | } | |
2195 | __skb_queue_tail(&sk->sk_receive_queue, skb); | |
2196 | skb_set_owner_r(skb, sk); | |
01e661eb TL |
2197 | trace_tipc_sk_overlimit2(sk, skb, TIPC_DUMP_ALL, |
2198 | "rcvq >90% allocated!"); | |
64ac5f59 | 2199 | sk->sk_data_ready(sk); |
cda3696d | 2200 | } |
0c3141e9 | 2201 | } |
b97bf3fd | 2202 | |
0c3141e9 | 2203 | /** |
64ac5f59 | 2204 | * tipc_sk_backlog_rcv - handle incoming message from backlog queue |
0c3141e9 | 2205 | * @sk: socket |
a6ca1094 | 2206 | * @skb: message |
0c3141e9 | 2207 | * |
e3a77561 | 2208 | * Caller must hold socket lock |
0c3141e9 | 2209 | */ |
64ac5f59 | 2210 | static int tipc_sk_backlog_rcv(struct sock *sk, struct sk_buff *skb) |
0c3141e9 | 2211 | { |
64ac5f59 | 2212 | unsigned int before = sk_rmem_alloc_get(sk); |
f1d048f2 | 2213 | struct sk_buff_head xmitq; |
64ac5f59 | 2214 | unsigned int added; |
0c3141e9 | 2215 | |
f1d048f2 JPM |
2216 | __skb_queue_head_init(&xmitq); |
2217 | ||
64ac5f59 JM |
2218 | tipc_sk_filter_rcv(sk, skb, &xmitq); |
2219 | added = sk_rmem_alloc_get(sk) - before; | |
2220 | atomic_add(added, &tipc_sk(sk)->dupl_rcvcnt); | |
f1d048f2 | 2221 | |
64ac5f59 | 2222 | /* Send pending response/rejected messages, if any */ |
f70d37b7 | 2223 | tipc_node_distr_xmit(sock_net(sk), &xmitq); |
0c3141e9 AS |
2224 | return 0; |
2225 | } | |
2226 | ||
d570d864 | 2227 | /** |
c637c103 JPM |
2228 | * tipc_sk_enqueue - extract all buffers with destination 'dport' from |
2229 | * inputq and try adding them to socket or backlog queue | |
2230 | * @inputq: list of incoming buffers with potentially different destinations | |
2231 | * @sk: socket where the buffers should be enqueued | |
2232 | * @dport: port number for the socket | |
d570d864 JPM |
2233 | * |
2234 | * Caller must hold socket lock | |
d570d864 | 2235 | */ |
cda3696d | 2236 | static void tipc_sk_enqueue(struct sk_buff_head *inputq, struct sock *sk, |
f1d048f2 | 2237 | u32 dport, struct sk_buff_head *xmitq) |
d570d864 | 2238 | { |
f1d048f2 JPM |
2239 | unsigned long time_limit = jiffies + 2; |
2240 | struct sk_buff *skb; | |
d570d864 JPM |
2241 | unsigned int lim; |
2242 | atomic_t *dcnt; | |
f1d048f2 | 2243 | u32 onode; |
c637c103 JPM |
2244 | |
2245 | while (skb_queue_len(inputq)) { | |
51a00daf | 2246 | if (unlikely(time_after_eq(jiffies, time_limit))) |
cda3696d JPM |
2247 | return; |
2248 | ||
c637c103 JPM |
2249 | skb = tipc_skb_dequeue(inputq, dport); |
2250 | if (unlikely(!skb)) | |
cda3696d JPM |
2251 | return; |
2252 | ||
2253 | /* Add message directly to receive queue if possible */ | |
c637c103 | 2254 | if (!sock_owned_by_user(sk)) { |
64ac5f59 | 2255 | tipc_sk_filter_rcv(sk, skb, xmitq); |
cda3696d | 2256 | continue; |
c637c103 | 2257 | } |
cda3696d JPM |
2258 | |
2259 | /* Try backlog, compensating for double-counted bytes */ | |
c637c103 | 2260 | dcnt = &tipc_sk(sk)->dupl_rcvcnt; |
7c8bcfb1 | 2261 | if (!sk->sk_backlog.len) |
c637c103 JPM |
2262 | atomic_set(dcnt, 0); |
2263 | lim = rcvbuf_limit(sk, skb) + atomic_read(dcnt); | |
01e661eb TL |
2264 | if (likely(!sk_add_backlog(sk, skb, lim))) { |
2265 | trace_tipc_sk_overlimit1(sk, skb, TIPC_DUMP_ALL, | |
2266 | "bklg & rcvq >90% allocated!"); | |
c637c103 | 2267 | continue; |
01e661eb | 2268 | } |
cda3696d | 2269 | |
01e661eb | 2270 | trace_tipc_sk_dump(sk, skb, TIPC_DUMP_ALL, "err_overload!"); |
cda3696d | 2271 | /* Overload => reject message back to sender */ |
f1d048f2 | 2272 | onode = tipc_own_addr(sock_net(sk)); |
872619d8 | 2273 | atomic_inc(&sk->sk_drops); |
01e661eb TL |
2274 | if (tipc_msg_reverse(onode, &skb, TIPC_ERR_OVERLOAD)) { |
2275 | trace_tipc_sk_rej_msg(sk, skb, TIPC_DUMP_ALL, | |
2276 | "@sk_enqueue!"); | |
f1d048f2 | 2277 | __skb_queue_tail(xmitq, skb); |
01e661eb | 2278 | } |
cda3696d | 2279 | break; |
c637c103 | 2280 | } |
d570d864 JPM |
2281 | } |
2282 | ||
0c3141e9 | 2283 | /** |
c637c103 JPM |
2284 | * tipc_sk_rcv - handle a chain of incoming buffers |
2285 | * @inputq: buffer list containing the buffers | |
2286 | * Consumes all buffers in list until inputq is empty | |
2287 | * Note: may be called in multiple threads referring to the same queue | |
0c3141e9 | 2288 | */ |
cda3696d | 2289 | void tipc_sk_rcv(struct net *net, struct sk_buff_head *inputq) |
0c3141e9 | 2290 | { |
f1d048f2 | 2291 | struct sk_buff_head xmitq; |
c637c103 | 2292 | u32 dnode, dport = 0; |
9871b27f | 2293 | int err; |
9816f061 | 2294 | struct tipc_sock *tsk; |
9816f061 | 2295 | struct sock *sk; |
cda3696d | 2296 | struct sk_buff *skb; |
9816f061 | 2297 | |
f1d048f2 | 2298 | __skb_queue_head_init(&xmitq); |
c637c103 | 2299 | while (skb_queue_len(inputq)) { |
c637c103 JPM |
2300 | dport = tipc_skb_peek_port(inputq, dport); |
2301 | tsk = tipc_sk_lookup(net, dport); | |
cda3696d | 2302 | |
c637c103 JPM |
2303 | if (likely(tsk)) { |
2304 | sk = &tsk->sk; | |
2305 | if (likely(spin_trylock_bh(&sk->sk_lock.slock))) { | |
f1d048f2 | 2306 | tipc_sk_enqueue(inputq, sk, dport, &xmitq); |
c637c103 | 2307 | spin_unlock_bh(&sk->sk_lock.slock); |
c637c103 | 2308 | } |
f1d048f2 | 2309 | /* Send pending response/rejected messages, if any */ |
f70d37b7 | 2310 | tipc_node_distr_xmit(sock_net(sk), &xmitq); |
c637c103 | 2311 | sock_put(sk); |
c637c103 | 2312 | continue; |
c637c103 | 2313 | } |
cda3696d JPM |
2314 | /* No destination socket => dequeue skb if still there */ |
2315 | skb = tipc_skb_dequeue(inputq, dport); | |
2316 | if (!skb) | |
2317 | return; | |
2318 | ||
2319 | /* Try secondary lookup if unresolved named message */ | |
2320 | err = TIPC_ERR_NO_PORT; | |
2321 | if (tipc_msg_lookup_dest(net, skb, &err)) | |
2322 | goto xmit; | |
2323 | ||
2324 | /* Prepare for message rejection */ | |
2325 | if (!tipc_msg_reverse(tipc_own_addr(net), &skb, err)) | |
c637c103 | 2326 | continue; |
01e661eb TL |
2327 | |
2328 | trace_tipc_sk_rej_msg(NULL, skb, TIPC_DUMP_NONE, "@sk_rcv!"); | |
e3a77561 | 2329 | xmit: |
cda3696d | 2330 | dnode = msg_destnode(buf_msg(skb)); |
af9b028e | 2331 | tipc_node_xmit_skb(net, skb, dnode, dport); |
c637c103 | 2332 | } |
b97bf3fd PL |
2333 | } |
2334 | ||
78eb3a53 YX |
2335 | static int tipc_wait_for_connect(struct socket *sock, long *timeo_p) |
2336 | { | |
d9dc8b0f | 2337 | DEFINE_WAIT_FUNC(wait, woken_wake_function); |
78eb3a53 | 2338 | struct sock *sk = sock->sk; |
78eb3a53 YX |
2339 | int done; |
2340 | ||
2341 | do { | |
2342 | int err = sock_error(sk); | |
2343 | if (err) | |
2344 | return err; | |
2345 | if (!*timeo_p) | |
2346 | return -ETIMEDOUT; | |
2347 | if (signal_pending(current)) | |
2348 | return sock_intr_errno(*timeo_p); | |
2349 | ||
d9dc8b0f | 2350 | add_wait_queue(sk_sleep(sk), &wait); |
99a20889 | 2351 | done = sk_wait_event(sk, timeo_p, |
d9dc8b0f WC |
2352 | sk->sk_state != TIPC_CONNECTING, &wait); |
2353 | remove_wait_queue(sk_sleep(sk), &wait); | |
78eb3a53 YX |
2354 | } while (!done); |
2355 | return 0; | |
2356 | } | |
2357 | ||
ea239314 EH |
2358 | static bool tipc_sockaddr_is_sane(struct sockaddr_tipc *addr) |
2359 | { | |
2360 | if (addr->family != AF_TIPC) | |
2361 | return false; | |
2362 | if (addr->addrtype == TIPC_SERVICE_RANGE) | |
2363 | return (addr->addr.nameseq.lower <= addr->addr.nameseq.upper); | |
2364 | return (addr->addrtype == TIPC_SERVICE_ADDR || | |
2365 | addr->addrtype == TIPC_SOCKET_ADDR); | |
2366 | } | |
2367 | ||
b97bf3fd | 2368 | /** |
247f0f3c | 2369 | * tipc_connect - establish a connection to another TIPC port |
b97bf3fd PL |
2370 | * @sock: socket structure |
2371 | * @dest: socket address for destination port | |
2372 | * @destlen: size of socket address data structure | |
0c3141e9 | 2373 | * @flags: file-related flags associated with socket |
b97bf3fd PL |
2374 | * |
2375 | * Returns 0 on success, errno otherwise | |
2376 | */ | |
247f0f3c YX |
2377 | static int tipc_connect(struct socket *sock, struct sockaddr *dest, |
2378 | int destlen, int flags) | |
b97bf3fd | 2379 | { |
0c3141e9 | 2380 | struct sock *sk = sock->sk; |
f2f8036e | 2381 | struct tipc_sock *tsk = tipc_sk(sk); |
b89741a0 AS |
2382 | struct sockaddr_tipc *dst = (struct sockaddr_tipc *)dest; |
2383 | struct msghdr m = {NULL,}; | |
f2f8036e | 2384 | long timeout = (flags & O_NONBLOCK) ? 0 : tsk->conn_timeout; |
99a20889 | 2385 | int previous; |
f2f8036e | 2386 | int res = 0; |
b89741a0 | 2387 | |
23998835 JM |
2388 | if (destlen != sizeof(struct sockaddr_tipc)) |
2389 | return -EINVAL; | |
2390 | ||
0c3141e9 AS |
2391 | lock_sock(sk); |
2392 | ||
75da2163 JM |
2393 | if (tsk->group) { |
2394 | res = -EINVAL; | |
2395 | goto exit; | |
2396 | } | |
2397 | ||
23998835 JM |
2398 | if (dst->family == AF_UNSPEC) { |
2399 | memset(&tsk->peer, 0, sizeof(struct sockaddr_tipc)); | |
2400 | if (!tipc_sk_type_connectionless(sk)) | |
610600c8 | 2401 | res = -EINVAL; |
0c3141e9 AS |
2402 | goto exit; |
2403 | } | |
ea239314 | 2404 | if (!tipc_sockaddr_is_sane(dst)) { |
0c3141e9 | 2405 | res = -EINVAL; |
23998835 | 2406 | goto exit; |
ea239314 | 2407 | } |
23998835 JM |
2408 | /* DGRAM/RDM connect(), just save the destaddr */ |
2409 | if (tipc_sk_type_connectionless(sk)) { | |
2410 | memcpy(&tsk->peer, dest, destlen); | |
0c3141e9 | 2411 | goto exit; |
ea239314 EH |
2412 | } else if (dst->addrtype == TIPC_SERVICE_RANGE) { |
2413 | res = -EINVAL; | |
2414 | goto exit; | |
0c3141e9 AS |
2415 | } |
2416 | ||
99a20889 | 2417 | previous = sk->sk_state; |
438adcaf PB |
2418 | |
2419 | switch (sk->sk_state) { | |
2420 | case TIPC_OPEN: | |
584d24b3 YX |
2421 | /* Send a 'SYN-' to destination */ |
2422 | m.msg_name = dest; | |
2423 | m.msg_namelen = destlen; | |
2424 | ||
2425 | /* If connect is in non-blocking case, set MSG_DONTWAIT to | |
2426 | * indicate send_msg() is never blocked. | |
2427 | */ | |
2428 | if (!timeout) | |
2429 | m.msg_flags = MSG_DONTWAIT; | |
2430 | ||
39a0295f | 2431 | res = __tipc_sendmsg(sock, &m, 0); |
584d24b3 YX |
2432 | if ((res < 0) && (res != -EWOULDBLOCK)) |
2433 | goto exit; | |
2434 | ||
99a20889 | 2435 | /* Just entered TIPC_CONNECTING state; the only |
584d24b3 YX |
2436 | * difference is that return value in non-blocking |
2437 | * case is EINPROGRESS, rather than EALREADY. | |
2438 | */ | |
2439 | res = -EINPROGRESS; | |
f79e3365 | 2440 | /* fall through */ |
99a20889 PB |
2441 | case TIPC_CONNECTING: |
2442 | if (!timeout) { | |
2443 | if (previous == TIPC_CONNECTING) | |
2444 | res = -EALREADY; | |
78eb3a53 | 2445 | goto exit; |
99a20889 | 2446 | } |
78eb3a53 YX |
2447 | timeout = msecs_to_jiffies(timeout); |
2448 | /* Wait until an 'ACK' or 'RST' arrives, or a timeout occurs */ | |
2449 | res = tipc_wait_for_connect(sock, &timeout); | |
f40acbaf PB |
2450 | break; |
2451 | case TIPC_ESTABLISHED: | |
584d24b3 | 2452 | res = -EISCONN; |
f40acbaf PB |
2453 | break; |
2454 | default: | |
584d24b3 | 2455 | res = -EINVAL; |
f40acbaf | 2456 | } |
99a20889 | 2457 | |
0c3141e9 AS |
2458 | exit: |
2459 | release_sock(sk); | |
b89741a0 | 2460 | return res; |
b97bf3fd PL |
2461 | } |
2462 | ||
c4307285 | 2463 | /** |
247f0f3c | 2464 | * tipc_listen - allow socket to listen for incoming connections |
b97bf3fd PL |
2465 | * @sock: socket structure |
2466 | * @len: (unused) | |
c4307285 | 2467 | * |
b97bf3fd PL |
2468 | * Returns 0 on success, errno otherwise |
2469 | */ | |
247f0f3c | 2470 | static int tipc_listen(struct socket *sock, int len) |
b97bf3fd | 2471 | { |
0c3141e9 AS |
2472 | struct sock *sk = sock->sk; |
2473 | int res; | |
2474 | ||
2475 | lock_sock(sk); | |
0c288c86 | 2476 | res = tipc_set_sk_state(sk, TIPC_LISTEN); |
0c3141e9 | 2477 | release_sock(sk); |
0c288c86 | 2478 | |
0c3141e9 | 2479 | return res; |
b97bf3fd PL |
2480 | } |
2481 | ||
6398e23c YX |
2482 | static int tipc_wait_for_accept(struct socket *sock, long timeo) |
2483 | { | |
2484 | struct sock *sk = sock->sk; | |
2485 | DEFINE_WAIT(wait); | |
2486 | int err; | |
2487 | ||
2488 | /* True wake-one mechanism for incoming connections: only | |
2489 | * one process gets woken up, not the 'whole herd'. | |
2490 | * Since we do not 'race & poll' for established sockets | |
2491 | * anymore, the common case will execute the loop only once. | |
2492 | */ | |
2493 | for (;;) { | |
2494 | prepare_to_wait_exclusive(sk_sleep(sk), &wait, | |
2495 | TASK_INTERRUPTIBLE); | |
fe8e4649 | 2496 | if (timeo && skb_queue_empty(&sk->sk_receive_queue)) { |
6398e23c YX |
2497 | release_sock(sk); |
2498 | timeo = schedule_timeout(timeo); | |
2499 | lock_sock(sk); | |
2500 | } | |
2501 | err = 0; | |
2502 | if (!skb_queue_empty(&sk->sk_receive_queue)) | |
2503 | break; | |
6398e23c YX |
2504 | err = -EAGAIN; |
2505 | if (!timeo) | |
2506 | break; | |
143fe22f EH |
2507 | err = sock_intr_errno(timeo); |
2508 | if (signal_pending(current)) | |
2509 | break; | |
6398e23c YX |
2510 | } |
2511 | finish_wait(sk_sleep(sk), &wait); | |
2512 | return err; | |
2513 | } | |
2514 | ||
c4307285 | 2515 | /** |
247f0f3c | 2516 | * tipc_accept - wait for connection request |
b97bf3fd PL |
2517 | * @sock: listening socket |
2518 | * @newsock: new socket that is to be connected | |
2519 | * @flags: file-related flags associated with socket | |
c4307285 | 2520 | * |
b97bf3fd PL |
2521 | * Returns 0 on success, errno otherwise |
2522 | */ | |
cdfbabfb DH |
2523 | static int tipc_accept(struct socket *sock, struct socket *new_sock, int flags, |
2524 | bool kern) | |
b97bf3fd | 2525 | { |
0fef8f20 | 2526 | struct sock *new_sk, *sk = sock->sk; |
b97bf3fd | 2527 | struct sk_buff *buf; |
301bae56 | 2528 | struct tipc_sock *new_tsock; |
0fef8f20 | 2529 | struct tipc_msg *msg; |
6398e23c | 2530 | long timeo; |
0c3141e9 | 2531 | int res; |
b97bf3fd | 2532 | |
0c3141e9 | 2533 | lock_sock(sk); |
b97bf3fd | 2534 | |
0c288c86 | 2535 | if (sk->sk_state != TIPC_LISTEN) { |
0c3141e9 | 2536 | res = -EINVAL; |
b97bf3fd PL |
2537 | goto exit; |
2538 | } | |
6398e23c YX |
2539 | timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK); |
2540 | res = tipc_wait_for_accept(sock, timeo); | |
2541 | if (res) | |
2542 | goto exit; | |
0c3141e9 AS |
2543 | |
2544 | buf = skb_peek(&sk->sk_receive_queue); | |
2545 | ||
cdfbabfb | 2546 | res = tipc_sk_create(sock_net(sock->sk), new_sock, 0, kern); |
0fef8f20 PG |
2547 | if (res) |
2548 | goto exit; | |
fdd75ea8 | 2549 | security_sk_clone(sock->sk, new_sock->sk); |
b97bf3fd | 2550 | |
0fef8f20 | 2551 | new_sk = new_sock->sk; |
301bae56 | 2552 | new_tsock = tipc_sk(new_sk); |
0fef8f20 | 2553 | msg = buf_msg(buf); |
b97bf3fd | 2554 | |
0fef8f20 PG |
2555 | /* we lock on new_sk; but lockdep sees the lock on sk */ |
2556 | lock_sock_nested(new_sk, SINGLE_DEPTH_NESTING); | |
2557 | ||
2558 | /* | |
2559 | * Reject any stray messages received by new socket | |
2560 | * before the socket lock was taken (very, very unlikely) | |
2561 | */ | |
2e84c60b | 2562 | tsk_rej_rx_queue(new_sk); |
0fef8f20 PG |
2563 | |
2564 | /* Connect new socket to it's peer */ | |
301bae56 | 2565 | tipc_sk_finish_conn(new_tsock, msg_origport(msg), msg_orignode(msg)); |
0fef8f20 | 2566 | |
301bae56 | 2567 | tsk_set_importance(new_tsock, msg_importance(msg)); |
0fef8f20 | 2568 | if (msg_named(msg)) { |
301bae56 JPM |
2569 | new_tsock->conn_type = msg_nametype(msg); |
2570 | new_tsock->conn_instance = msg_nameinst(msg); | |
b97bf3fd | 2571 | } |
0fef8f20 PG |
2572 | |
2573 | /* | |
2574 | * Respond to 'SYN-' by discarding it & returning 'ACK'-. | |
2575 | * Respond to 'SYN+' by queuing it on new socket. | |
2576 | */ | |
2577 | if (!msg_data_sz(msg)) { | |
2578 | struct msghdr m = {NULL,}; | |
2579 | ||
2e84c60b | 2580 | tsk_advance_rx_queue(sk); |
365ad353 | 2581 | __tipc_sendstream(new_sock, &m, 0); |
0fef8f20 PG |
2582 | } else { |
2583 | __skb_dequeue(&sk->sk_receive_queue); | |
2584 | __skb_queue_head(&new_sk->sk_receive_queue, buf); | |
aba79f33 | 2585 | skb_set_owner_r(buf, new_sk); |
0fef8f20 PG |
2586 | } |
2587 | release_sock(new_sk); | |
b97bf3fd | 2588 | exit: |
0c3141e9 | 2589 | release_sock(sk); |
b97bf3fd PL |
2590 | return res; |
2591 | } | |
2592 | ||
2593 | /** | |
247f0f3c | 2594 | * tipc_shutdown - shutdown socket connection |
b97bf3fd | 2595 | * @sock: socket structure |
e247a8f5 | 2596 | * @how: direction to close (must be SHUT_RDWR) |
b97bf3fd PL |
2597 | * |
2598 | * Terminates connection (if necessary), then purges socket's receive queue. | |
c4307285 | 2599 | * |
b97bf3fd PL |
2600 | * Returns 0 on success, errno otherwise |
2601 | */ | |
247f0f3c | 2602 | static int tipc_shutdown(struct socket *sock, int how) |
b97bf3fd | 2603 | { |
0c3141e9 | 2604 | struct sock *sk = sock->sk; |
b97bf3fd PL |
2605 | int res; |
2606 | ||
e247a8f5 AS |
2607 | if (how != SHUT_RDWR) |
2608 | return -EINVAL; | |
b97bf3fd | 2609 | |
0c3141e9 | 2610 | lock_sock(sk); |
b97bf3fd | 2611 | |
01e661eb | 2612 | trace_tipc_sk_shutdown(sk, NULL, TIPC_DUMP_ALL, " "); |
6f00089c PB |
2613 | __tipc_shutdown(sock, TIPC_CONN_SHUTDOWN); |
2614 | sk->sk_shutdown = SEND_SHUTDOWN; | |
b97bf3fd | 2615 | |
6f00089c | 2616 | if (sk->sk_state == TIPC_DISCONNECTING) { |
75031151 | 2617 | /* Discard any unreceived messages */ |
57467e56 | 2618 | __skb_queue_purge(&sk->sk_receive_queue); |
75031151 YX |
2619 | |
2620 | /* Wake up anyone sleeping in poll */ | |
2621 | sk->sk_state_change(sk); | |
b97bf3fd | 2622 | res = 0; |
6f00089c | 2623 | } else { |
b97bf3fd PL |
2624 | res = -ENOTCONN; |
2625 | } | |
2626 | ||
0c3141e9 | 2627 | release_sock(sk); |
b97bf3fd PL |
2628 | return res; |
2629 | } | |
2630 | ||
afe8792f JM |
2631 | static void tipc_sk_check_probing_state(struct sock *sk, |
2632 | struct sk_buff_head *list) | |
2633 | { | |
2634 | struct tipc_sock *tsk = tipc_sk(sk); | |
2635 | u32 pnode = tsk_peer_node(tsk); | |
2636 | u32 pport = tsk_peer_port(tsk); | |
2637 | u32 self = tsk_own_node(tsk); | |
2638 | u32 oport = tsk->portid; | |
2639 | struct sk_buff *skb; | |
2640 | ||
2641 | if (tsk->probe_unacked) { | |
2642 | tipc_set_sk_state(sk, TIPC_DISCONNECTING); | |
2643 | sk->sk_err = ECONNABORTED; | |
2644 | tipc_node_remove_conn(sock_net(sk), pnode, pport); | |
2645 | sk->sk_state_change(sk); | |
2646 | return; | |
2647 | } | |
2648 | /* Prepare new probe */ | |
2649 | skb = tipc_msg_create(CONN_MANAGER, CONN_PROBE, INT_H_SIZE, 0, | |
2650 | pnode, self, pport, oport, TIPC_OK); | |
2651 | if (skb) | |
2652 | __skb_queue_tail(list, skb); | |
2653 | tsk->probe_unacked = true; | |
2654 | sk_reset_timer(sk, &sk->sk_timer, jiffies + CONN_PROBING_INTV); | |
2655 | } | |
2656 | ||
67879274 TN |
2657 | static void tipc_sk_retry_connect(struct sock *sk, struct sk_buff_head *list) |
2658 | { | |
2659 | struct tipc_sock *tsk = tipc_sk(sk); | |
2660 | ||
2661 | /* Try again later if dest link is congested */ | |
2662 | if (tsk->cong_link_cnt) { | |
2663 | sk_reset_timer(sk, &sk->sk_timer, msecs_to_jiffies(100)); | |
2664 | return; | |
2665 | } | |
2666 | /* Prepare SYN for retransmit */ | |
2667 | tipc_msg_skb_clone(&sk->sk_write_queue, list); | |
2668 | } | |
2669 | ||
31b102bb | 2670 | static void tipc_sk_timeout(struct timer_list *t) |
57289015 | 2671 | { |
31b102bb KC |
2672 | struct sock *sk = from_timer(sk, t, sk_timer); |
2673 | struct tipc_sock *tsk = tipc_sk(sk); | |
afe8792f JM |
2674 | u32 pnode = tsk_peer_node(tsk); |
2675 | struct sk_buff_head list; | |
67879274 | 2676 | int rc = 0; |
57289015 | 2677 | |
afe8792f | 2678 | skb_queue_head_init(&list); |
6c9808ce | 2679 | bh_lock_sock(sk); |
0d5fcebf JM |
2680 | |
2681 | /* Try again later if socket is busy */ | |
2682 | if (sock_owned_by_user(sk)) { | |
2683 | sk_reset_timer(sk, &sk->sk_timer, jiffies + HZ / 20); | |
afe8792f JM |
2684 | bh_unlock_sock(sk); |
2685 | return; | |
57289015 | 2686 | } |
57289015 | 2687 | |
afe8792f JM |
2688 | if (sk->sk_state == TIPC_ESTABLISHED) |
2689 | tipc_sk_check_probing_state(sk, &list); | |
67879274 TN |
2690 | else if (sk->sk_state == TIPC_CONNECTING) |
2691 | tipc_sk_retry_connect(sk, &list); | |
afe8792f | 2692 | |
57289015 | 2693 | bh_unlock_sock(sk); |
afe8792f JM |
2694 | |
2695 | if (!skb_queue_empty(&list)) | |
67879274 | 2696 | rc = tipc_node_xmit(sock_net(sk), &list, pnode, tsk->portid); |
afe8792f | 2697 | |
67879274 TN |
2698 | /* SYN messages may cause link congestion */ |
2699 | if (rc == -ELINKCONG) { | |
2700 | tipc_dest_push(&tsk->cong_links, pnode, 0); | |
2701 | tsk->cong_link_cnt = 1; | |
2702 | } | |
07f6c4bc | 2703 | sock_put(sk); |
57289015 JPM |
2704 | } |
2705 | ||
301bae56 | 2706 | static int tipc_sk_publish(struct tipc_sock *tsk, uint scope, |
0fc87aae JPM |
2707 | struct tipc_name_seq const *seq) |
2708 | { | |
d6fb7e9c PB |
2709 | struct sock *sk = &tsk->sk; |
2710 | struct net *net = sock_net(sk); | |
0fc87aae JPM |
2711 | struct publication *publ; |
2712 | u32 key; | |
2713 | ||
928df188 JM |
2714 | if (scope != TIPC_NODE_SCOPE) |
2715 | scope = TIPC_CLUSTER_SCOPE; | |
2716 | ||
d6fb7e9c | 2717 | if (tipc_sk_connected(sk)) |
0fc87aae | 2718 | return -EINVAL; |
07f6c4bc YX |
2719 | key = tsk->portid + tsk->pub_count + 1; |
2720 | if (key == tsk->portid) | |
0fc87aae JPM |
2721 | return -EADDRINUSE; |
2722 | ||
f2f9800d | 2723 | publ = tipc_nametbl_publish(net, seq->type, seq->lower, seq->upper, |
07f6c4bc | 2724 | scope, tsk->portid, key); |
0fc87aae JPM |
2725 | if (unlikely(!publ)) |
2726 | return -EINVAL; | |
2727 | ||
e50e73e1 | 2728 | list_add(&publ->binding_sock, &tsk->publications); |
301bae56 JPM |
2729 | tsk->pub_count++; |
2730 | tsk->published = 1; | |
0fc87aae JPM |
2731 | return 0; |
2732 | } | |
2733 | ||
301bae56 | 2734 | static int tipc_sk_withdraw(struct tipc_sock *tsk, uint scope, |
0fc87aae JPM |
2735 | struct tipc_name_seq const *seq) |
2736 | { | |
f2f9800d | 2737 | struct net *net = sock_net(&tsk->sk); |
0fc87aae JPM |
2738 | struct publication *publ; |
2739 | struct publication *safe; | |
2740 | int rc = -EINVAL; | |
2741 | ||
928df188 JM |
2742 | if (scope != TIPC_NODE_SCOPE) |
2743 | scope = TIPC_CLUSTER_SCOPE; | |
2744 | ||
e50e73e1 | 2745 | list_for_each_entry_safe(publ, safe, &tsk->publications, binding_sock) { |
0fc87aae JPM |
2746 | if (seq) { |
2747 | if (publ->scope != scope) | |
2748 | continue; | |
2749 | if (publ->type != seq->type) | |
2750 | continue; | |
2751 | if (publ->lower != seq->lower) | |
2752 | continue; | |
2753 | if (publ->upper != seq->upper) | |
2754 | break; | |
f2f9800d | 2755 | tipc_nametbl_withdraw(net, publ->type, publ->lower, |
37922ea4 | 2756 | publ->upper, publ->key); |
0fc87aae JPM |
2757 | rc = 0; |
2758 | break; | |
2759 | } | |
f2f9800d | 2760 | tipc_nametbl_withdraw(net, publ->type, publ->lower, |
37922ea4 | 2761 | publ->upper, publ->key); |
0fc87aae JPM |
2762 | rc = 0; |
2763 | } | |
301bae56 JPM |
2764 | if (list_empty(&tsk->publications)) |
2765 | tsk->published = 0; | |
0fc87aae JPM |
2766 | return rc; |
2767 | } | |
2768 | ||
5a9ee0be JPM |
2769 | /* tipc_sk_reinit: set non-zero address in all existing sockets |
2770 | * when we go from standalone to network mode. | |
2771 | */ | |
e05b31f4 | 2772 | void tipc_sk_reinit(struct net *net) |
5a9ee0be | 2773 | { |
e05b31f4 | 2774 | struct tipc_net *tn = net_generic(net, tipc_net_id); |
40f9f439 | 2775 | struct rhashtable_iter iter; |
07f6c4bc | 2776 | struct tipc_sock *tsk; |
5a9ee0be | 2777 | struct tipc_msg *msg; |
5a9ee0be | 2778 | |
40f9f439 HX |
2779 | rhashtable_walk_enter(&tn->sk_rht, &iter); |
2780 | ||
2781 | do { | |
97a6ec4a | 2782 | rhashtable_walk_start(&iter); |
40f9f439 HX |
2783 | |
2784 | while ((tsk = rhashtable_walk_next(&iter)) && !IS_ERR(tsk)) { | |
15ef70e2 CW |
2785 | sock_hold(&tsk->sk); |
2786 | rhashtable_walk_stop(&iter); | |
2787 | lock_sock(&tsk->sk); | |
07f6c4bc | 2788 | msg = &tsk->phdr; |
23fd3eac JM |
2789 | msg_set_prevnode(msg, tipc_own_addr(net)); |
2790 | msg_set_orignode(msg, tipc_own_addr(net)); | |
15ef70e2 CW |
2791 | release_sock(&tsk->sk); |
2792 | rhashtable_walk_start(&iter); | |
2793 | sock_put(&tsk->sk); | |
07f6c4bc | 2794 | } |
97a6ec4a | 2795 | |
40f9f439 HX |
2796 | rhashtable_walk_stop(&iter); |
2797 | } while (tsk == ERR_PTR(-EAGAIN)); | |
bd583fe3 CW |
2798 | |
2799 | rhashtable_walk_exit(&iter); | |
5a9ee0be JPM |
2800 | } |
2801 | ||
e05b31f4 | 2802 | static struct tipc_sock *tipc_sk_lookup(struct net *net, u32 portid) |
808d90f9 | 2803 | { |
e05b31f4 | 2804 | struct tipc_net *tn = net_generic(net, tipc_net_id); |
07f6c4bc | 2805 | struct tipc_sock *tsk; |
808d90f9 | 2806 | |
07f6c4bc | 2807 | rcu_read_lock(); |
6cca7289 | 2808 | tsk = rhashtable_lookup_fast(&tn->sk_rht, &portid, tsk_rht_params); |
07f6c4bc YX |
2809 | if (tsk) |
2810 | sock_hold(&tsk->sk); | |
2811 | rcu_read_unlock(); | |
808d90f9 | 2812 | |
07f6c4bc | 2813 | return tsk; |
808d90f9 JPM |
2814 | } |
2815 | ||
07f6c4bc | 2816 | static int tipc_sk_insert(struct tipc_sock *tsk) |
808d90f9 | 2817 | { |
e05b31f4 YX |
2818 | struct sock *sk = &tsk->sk; |
2819 | struct net *net = sock_net(sk); | |
2820 | struct tipc_net *tn = net_generic(net, tipc_net_id); | |
07f6c4bc YX |
2821 | u32 remaining = (TIPC_MAX_PORT - TIPC_MIN_PORT) + 1; |
2822 | u32 portid = prandom_u32() % remaining + TIPC_MIN_PORT; | |
808d90f9 | 2823 | |
07f6c4bc YX |
2824 | while (remaining--) { |
2825 | portid++; | |
2826 | if ((portid < TIPC_MIN_PORT) || (portid > TIPC_MAX_PORT)) | |
2827 | portid = TIPC_MIN_PORT; | |
2828 | tsk->portid = portid; | |
2829 | sock_hold(&tsk->sk); | |
6cca7289 HX |
2830 | if (!rhashtable_lookup_insert_fast(&tn->sk_rht, &tsk->node, |
2831 | tsk_rht_params)) | |
07f6c4bc YX |
2832 | return 0; |
2833 | sock_put(&tsk->sk); | |
808d90f9 JPM |
2834 | } |
2835 | ||
07f6c4bc | 2836 | return -1; |
808d90f9 JPM |
2837 | } |
2838 | ||
07f6c4bc | 2839 | static void tipc_sk_remove(struct tipc_sock *tsk) |
808d90f9 | 2840 | { |
07f6c4bc | 2841 | struct sock *sk = &tsk->sk; |
e05b31f4 | 2842 | struct tipc_net *tn = net_generic(sock_net(sk), tipc_net_id); |
808d90f9 | 2843 | |
6cca7289 | 2844 | if (!rhashtable_remove_fast(&tn->sk_rht, &tsk->node, tsk_rht_params)) { |
41c6d650 | 2845 | WARN_ON(refcount_read(&sk->sk_refcnt) == 1); |
07f6c4bc | 2846 | __sock_put(sk); |
808d90f9 | 2847 | } |
808d90f9 JPM |
2848 | } |
2849 | ||
6cca7289 HX |
2850 | static const struct rhashtable_params tsk_rht_params = { |
2851 | .nelem_hint = 192, | |
2852 | .head_offset = offsetof(struct tipc_sock, node), | |
2853 | .key_offset = offsetof(struct tipc_sock, portid), | |
2854 | .key_len = sizeof(u32), /* portid */ | |
6cca7289 HX |
2855 | .max_size = 1048576, |
2856 | .min_size = 256, | |
b5e2c150 | 2857 | .automatic_shrinking = true, |
6cca7289 HX |
2858 | }; |
2859 | ||
e05b31f4 | 2860 | int tipc_sk_rht_init(struct net *net) |
808d90f9 | 2861 | { |
e05b31f4 | 2862 | struct tipc_net *tn = net_generic(net, tipc_net_id); |
6cca7289 HX |
2863 | |
2864 | return rhashtable_init(&tn->sk_rht, &tsk_rht_params); | |
808d90f9 JPM |
2865 | } |
2866 | ||
e05b31f4 | 2867 | void tipc_sk_rht_destroy(struct net *net) |
808d90f9 | 2868 | { |
e05b31f4 YX |
2869 | struct tipc_net *tn = net_generic(net, tipc_net_id); |
2870 | ||
07f6c4bc YX |
2871 | /* Wait for socket readers to complete */ |
2872 | synchronize_net(); | |
808d90f9 | 2873 | |
e05b31f4 | 2874 | rhashtable_destroy(&tn->sk_rht); |
808d90f9 JPM |
2875 | } |
2876 | ||
75da2163 JM |
2877 | static int tipc_sk_join(struct tipc_sock *tsk, struct tipc_group_req *mreq) |
2878 | { | |
2879 | struct net *net = sock_net(&tsk->sk); | |
75da2163 JM |
2880 | struct tipc_group *grp = tsk->group; |
2881 | struct tipc_msg *hdr = &tsk->phdr; | |
2882 | struct tipc_name_seq seq; | |
2883 | int rc; | |
2884 | ||
2885 | if (mreq->type < TIPC_RESERVED_TYPES) | |
2886 | return -EACCES; | |
232d07b7 JM |
2887 | if (mreq->scope > TIPC_NODE_SCOPE) |
2888 | return -EINVAL; | |
75da2163 JM |
2889 | if (grp) |
2890 | return -EACCES; | |
60c25306 | 2891 | grp = tipc_group_create(net, tsk->portid, mreq, &tsk->group_is_open); |
75da2163 JM |
2892 | if (!grp) |
2893 | return -ENOMEM; | |
2894 | tsk->group = grp; | |
2895 | msg_set_lookup_scope(hdr, mreq->scope); | |
2896 | msg_set_nametype(hdr, mreq->type); | |
2897 | msg_set_dest_droppable(hdr, true); | |
2898 | seq.type = mreq->type; | |
2899 | seq.lower = mreq->instance; | |
2900 | seq.upper = seq.lower; | |
232d07b7 | 2901 | tipc_nametbl_build_group(net, grp, mreq->type, mreq->scope); |
75da2163 | 2902 | rc = tipc_sk_publish(tsk, mreq->scope, &seq); |
e233df01 | 2903 | if (rc) { |
75da2163 | 2904 | tipc_group_delete(net, grp); |
e233df01 | 2905 | tsk->group = NULL; |
febafc84 | 2906 | return rc; |
e233df01 | 2907 | } |
d12d2e12 | 2908 | /* Eliminate any risk that a broadcast overtakes sent JOINs */ |
399574d4 JM |
2909 | tsk->mc_method.rcast = true; |
2910 | tsk->mc_method.mandatory = true; | |
d12d2e12 | 2911 | tipc_group_join(net, grp, &tsk->sk.sk_rcvbuf); |
75da2163 JM |
2912 | return rc; |
2913 | } | |
2914 | ||
2915 | static int tipc_sk_leave(struct tipc_sock *tsk) | |
2916 | { | |
2917 | struct net *net = sock_net(&tsk->sk); | |
2918 | struct tipc_group *grp = tsk->group; | |
2919 | struct tipc_name_seq seq; | |
2920 | int scope; | |
2921 | ||
2922 | if (!grp) | |
2923 | return -EINVAL; | |
2924 | tipc_group_self(grp, &seq, &scope); | |
2925 | tipc_group_delete(net, grp); | |
2926 | tsk->group = NULL; | |
2927 | tipc_sk_withdraw(tsk, scope, &seq); | |
2928 | return 0; | |
2929 | } | |
2930 | ||
b97bf3fd | 2931 | /** |
247f0f3c | 2932 | * tipc_setsockopt - set socket option |
b97bf3fd PL |
2933 | * @sock: socket structure |
2934 | * @lvl: option level | |
2935 | * @opt: option identifier | |
2936 | * @ov: pointer to new option value | |
2937 | * @ol: length of option value | |
c4307285 YH |
2938 | * |
2939 | * For stream sockets only, accepts and ignores all IPPROTO_TCP options | |
b97bf3fd | 2940 | * (to ease compatibility). |
c4307285 | 2941 | * |
b97bf3fd PL |
2942 | * Returns 0 on success, errno otherwise |
2943 | */ | |
247f0f3c YX |
2944 | static int tipc_setsockopt(struct socket *sock, int lvl, int opt, |
2945 | char __user *ov, unsigned int ol) | |
b97bf3fd | 2946 | { |
0c3141e9 | 2947 | struct sock *sk = sock->sk; |
58ed9442 | 2948 | struct tipc_sock *tsk = tipc_sk(sk); |
75da2163 | 2949 | struct tipc_group_req mreq; |
01fd12bb | 2950 | u32 value = 0; |
a08ef476 | 2951 | int res = 0; |
b97bf3fd | 2952 | |
c4307285 YH |
2953 | if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM)) |
2954 | return 0; | |
b97bf3fd PL |
2955 | if (lvl != SOL_TIPC) |
2956 | return -ENOPROTOOPT; | |
01fd12bb JPM |
2957 | |
2958 | switch (opt) { | |
2959 | case TIPC_IMPORTANCE: | |
2960 | case TIPC_SRC_DROPPABLE: | |
2961 | case TIPC_DEST_DROPPABLE: | |
2962 | case TIPC_CONN_TIMEOUT: | |
2963 | if (ol < sizeof(value)) | |
2964 | return -EINVAL; | |
75da2163 JM |
2965 | if (get_user(value, (u32 __user *)ov)) |
2966 | return -EFAULT; | |
2967 | break; | |
2968 | case TIPC_GROUP_JOIN: | |
2969 | if (ol < sizeof(mreq)) | |
2970 | return -EINVAL; | |
2971 | if (copy_from_user(&mreq, ov, sizeof(mreq))) | |
2972 | return -EFAULT; | |
01fd12bb JPM |
2973 | break; |
2974 | default: | |
2975 | if (ov || ol) | |
2976 | return -EINVAL; | |
2977 | } | |
b97bf3fd | 2978 | |
0c3141e9 | 2979 | lock_sock(sk); |
c4307285 | 2980 | |
b97bf3fd PL |
2981 | switch (opt) { |
2982 | case TIPC_IMPORTANCE: | |
301bae56 | 2983 | res = tsk_set_importance(tsk, value); |
b97bf3fd PL |
2984 | break; |
2985 | case TIPC_SRC_DROPPABLE: | |
2986 | if (sock->type != SOCK_STREAM) | |
301bae56 | 2987 | tsk_set_unreliable(tsk, value); |
c4307285 | 2988 | else |
b97bf3fd PL |
2989 | res = -ENOPROTOOPT; |
2990 | break; | |
2991 | case TIPC_DEST_DROPPABLE: | |
301bae56 | 2992 | tsk_set_unreturnable(tsk, value); |
b97bf3fd PL |
2993 | break; |
2994 | case TIPC_CONN_TIMEOUT: | |
a0f40f02 | 2995 | tipc_sk(sk)->conn_timeout = value; |
b97bf3fd | 2996 | break; |
01fd12bb JPM |
2997 | case TIPC_MCAST_BROADCAST: |
2998 | tsk->mc_method.rcast = false; | |
2999 | tsk->mc_method.mandatory = true; | |
3000 | break; | |
3001 | case TIPC_MCAST_REPLICAST: | |
3002 | tsk->mc_method.rcast = true; | |
3003 | tsk->mc_method.mandatory = true; | |
3004 | break; | |
75da2163 JM |
3005 | case TIPC_GROUP_JOIN: |
3006 | res = tipc_sk_join(tsk, &mreq); | |
3007 | break; | |
3008 | case TIPC_GROUP_LEAVE: | |
3009 | res = tipc_sk_leave(tsk); | |
3010 | break; | |
b97bf3fd PL |
3011 | default: |
3012 | res = -EINVAL; | |
3013 | } | |
3014 | ||
0c3141e9 AS |
3015 | release_sock(sk); |
3016 | ||
b97bf3fd PL |
3017 | return res; |
3018 | } | |
3019 | ||
3020 | /** | |
247f0f3c | 3021 | * tipc_getsockopt - get socket option |
b97bf3fd PL |
3022 | * @sock: socket structure |
3023 | * @lvl: option level | |
3024 | * @opt: option identifier | |
3025 | * @ov: receptacle for option value | |
3026 | * @ol: receptacle for length of option value | |
c4307285 YH |
3027 | * |
3028 | * For stream sockets only, returns 0 length result for all IPPROTO_TCP options | |
b97bf3fd | 3029 | * (to ease compatibility). |
c4307285 | 3030 | * |
b97bf3fd PL |
3031 | * Returns 0 on success, errno otherwise |
3032 | */ | |
247f0f3c YX |
3033 | static int tipc_getsockopt(struct socket *sock, int lvl, int opt, |
3034 | char __user *ov, int __user *ol) | |
b97bf3fd | 3035 | { |
0c3141e9 | 3036 | struct sock *sk = sock->sk; |
58ed9442 | 3037 | struct tipc_sock *tsk = tipc_sk(sk); |
75da2163 JM |
3038 | struct tipc_name_seq seq; |
3039 | int len, scope; | |
b97bf3fd | 3040 | u32 value; |
c4307285 | 3041 | int res; |
b97bf3fd | 3042 | |
c4307285 YH |
3043 | if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM)) |
3044 | return put_user(0, ol); | |
b97bf3fd PL |
3045 | if (lvl != SOL_TIPC) |
3046 | return -ENOPROTOOPT; | |
2db9983a AS |
3047 | res = get_user(len, ol); |
3048 | if (res) | |
c4307285 | 3049 | return res; |
b97bf3fd | 3050 | |
0c3141e9 | 3051 | lock_sock(sk); |
b97bf3fd PL |
3052 | |
3053 | switch (opt) { | |
3054 | case TIPC_IMPORTANCE: | |
301bae56 | 3055 | value = tsk_importance(tsk); |
b97bf3fd PL |
3056 | break; |
3057 | case TIPC_SRC_DROPPABLE: | |
301bae56 | 3058 | value = tsk_unreliable(tsk); |
b97bf3fd PL |
3059 | break; |
3060 | case TIPC_DEST_DROPPABLE: | |
301bae56 | 3061 | value = tsk_unreturnable(tsk); |
b97bf3fd PL |
3062 | break; |
3063 | case TIPC_CONN_TIMEOUT: | |
301bae56 | 3064 | value = tsk->conn_timeout; |
0c3141e9 | 3065 | /* no need to set "res", since already 0 at this point */ |
b97bf3fd | 3066 | break; |
0e65967e | 3067 | case TIPC_NODE_RECVQ_DEPTH: |
9da3d475 | 3068 | value = 0; /* was tipc_queue_size, now obsolete */ |
6650613d | 3069 | break; |
0e65967e | 3070 | case TIPC_SOCK_RECVQ_DEPTH: |
6650613d | 3071 | value = skb_queue_len(&sk->sk_receive_queue); |
3072 | break; | |
42e5425a TN |
3073 | case TIPC_SOCK_RECVQ_USED: |
3074 | value = sk_rmem_alloc_get(sk); | |
3075 | break; | |
75da2163 JM |
3076 | case TIPC_GROUP_JOIN: |
3077 | seq.type = 0; | |
3078 | if (tsk->group) | |
3079 | tipc_group_self(tsk->group, &seq, &scope); | |
3080 | value = seq.type; | |
3081 | break; | |
b97bf3fd PL |
3082 | default: |
3083 | res = -EINVAL; | |
3084 | } | |
3085 | ||
0c3141e9 AS |
3086 | release_sock(sk); |
3087 | ||
25860c3b PG |
3088 | if (res) |
3089 | return res; /* "get" failed */ | |
b97bf3fd | 3090 | |
25860c3b PG |
3091 | if (len < sizeof(value)) |
3092 | return -EINVAL; | |
3093 | ||
3094 | if (copy_to_user(ov, &value, sizeof(value))) | |
3095 | return -EFAULT; | |
3096 | ||
3097 | return put_user(sizeof(value), ol); | |
b97bf3fd PL |
3098 | } |
3099 | ||
f2f9800d | 3100 | static int tipc_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg) |
78acb1f9 | 3101 | { |
3e5cf362 JM |
3102 | struct net *net = sock_net(sock->sk); |
3103 | struct tipc_sioc_nodeid_req nr = {0}; | |
78acb1f9 EH |
3104 | struct tipc_sioc_ln_req lnr; |
3105 | void __user *argp = (void __user *)arg; | |
3106 | ||
3107 | switch (cmd) { | |
3108 | case SIOCGETLINKNAME: | |
3109 | if (copy_from_user(&lnr, argp, sizeof(lnr))) | |
3110 | return -EFAULT; | |
3e5cf362 | 3111 | if (!tipc_node_get_linkname(net, |
f2f9800d | 3112 | lnr.bearer_id & 0xffff, lnr.peer, |
78acb1f9 EH |
3113 | lnr.linkname, TIPC_MAX_LINK_NAME)) { |
3114 | if (copy_to_user(argp, &lnr, sizeof(lnr))) | |
3115 | return -EFAULT; | |
3116 | return 0; | |
3117 | } | |
3118 | return -EADDRNOTAVAIL; | |
3e5cf362 JM |
3119 | case SIOCGETNODEID: |
3120 | if (copy_from_user(&nr, argp, sizeof(nr))) | |
3121 | return -EFAULT; | |
3122 | if (!tipc_node_get_id(net, nr.peer, nr.node_id)) | |
3123 | return -EADDRNOTAVAIL; | |
3124 | if (copy_to_user(argp, &nr, sizeof(nr))) | |
3125 | return -EFAULT; | |
3126 | return 0; | |
78acb1f9 EH |
3127 | default: |
3128 | return -ENOIOCTLCMD; | |
3129 | } | |
3130 | } | |
3131 | ||
70b03759 EH |
3132 | static int tipc_socketpair(struct socket *sock1, struct socket *sock2) |
3133 | { | |
3134 | struct tipc_sock *tsk2 = tipc_sk(sock2->sk); | |
3135 | struct tipc_sock *tsk1 = tipc_sk(sock1->sk); | |
66bc1e8d EH |
3136 | u32 onode = tipc_own_addr(sock_net(sock1->sk)); |
3137 | ||
3138 | tsk1->peer.family = AF_TIPC; | |
3139 | tsk1->peer.addrtype = TIPC_ADDR_ID; | |
3140 | tsk1->peer.scope = TIPC_NODE_SCOPE; | |
3141 | tsk1->peer.addr.id.ref = tsk2->portid; | |
3142 | tsk1->peer.addr.id.node = onode; | |
3143 | tsk2->peer.family = AF_TIPC; | |
3144 | tsk2->peer.addrtype = TIPC_ADDR_ID; | |
3145 | tsk2->peer.scope = TIPC_NODE_SCOPE; | |
3146 | tsk2->peer.addr.id.ref = tsk1->portid; | |
3147 | tsk2->peer.addr.id.node = onode; | |
3148 | ||
3149 | tipc_sk_finish_conn(tsk1, tsk2->portid, onode); | |
3150 | tipc_sk_finish_conn(tsk2, tsk1->portid, onode); | |
70b03759 EH |
3151 | return 0; |
3152 | } | |
3153 | ||
ae86b9e3 BH |
3154 | /* Protocol switches for the various types of TIPC sockets */ |
3155 | ||
bca65eae | 3156 | static const struct proto_ops msg_ops = { |
0e65967e | 3157 | .owner = THIS_MODULE, |
b97bf3fd | 3158 | .family = AF_TIPC, |
247f0f3c YX |
3159 | .release = tipc_release, |
3160 | .bind = tipc_bind, | |
3161 | .connect = tipc_connect, | |
66bc1e8d | 3162 | .socketpair = tipc_socketpair, |
245f3d34 | 3163 | .accept = sock_no_accept, |
247f0f3c | 3164 | .getname = tipc_getname, |
a11e1d43 | 3165 | .poll = tipc_poll, |
78acb1f9 | 3166 | .ioctl = tipc_ioctl, |
245f3d34 | 3167 | .listen = sock_no_listen, |
247f0f3c YX |
3168 | .shutdown = tipc_shutdown, |
3169 | .setsockopt = tipc_setsockopt, | |
3170 | .getsockopt = tipc_getsockopt, | |
3171 | .sendmsg = tipc_sendmsg, | |
3172 | .recvmsg = tipc_recvmsg, | |
8238745a YH |
3173 | .mmap = sock_no_mmap, |
3174 | .sendpage = sock_no_sendpage | |
b97bf3fd PL |
3175 | }; |
3176 | ||
bca65eae | 3177 | static const struct proto_ops packet_ops = { |
0e65967e | 3178 | .owner = THIS_MODULE, |
b97bf3fd | 3179 | .family = AF_TIPC, |
247f0f3c YX |
3180 | .release = tipc_release, |
3181 | .bind = tipc_bind, | |
3182 | .connect = tipc_connect, | |
70b03759 | 3183 | .socketpair = tipc_socketpair, |
247f0f3c YX |
3184 | .accept = tipc_accept, |
3185 | .getname = tipc_getname, | |
a11e1d43 | 3186 | .poll = tipc_poll, |
78acb1f9 | 3187 | .ioctl = tipc_ioctl, |
247f0f3c YX |
3188 | .listen = tipc_listen, |
3189 | .shutdown = tipc_shutdown, | |
3190 | .setsockopt = tipc_setsockopt, | |
3191 | .getsockopt = tipc_getsockopt, | |
3192 | .sendmsg = tipc_send_packet, | |
3193 | .recvmsg = tipc_recvmsg, | |
8238745a YH |
3194 | .mmap = sock_no_mmap, |
3195 | .sendpage = sock_no_sendpage | |
b97bf3fd PL |
3196 | }; |
3197 | ||
bca65eae | 3198 | static const struct proto_ops stream_ops = { |
0e65967e | 3199 | .owner = THIS_MODULE, |
b97bf3fd | 3200 | .family = AF_TIPC, |
247f0f3c YX |
3201 | .release = tipc_release, |
3202 | .bind = tipc_bind, | |
3203 | .connect = tipc_connect, | |
70b03759 | 3204 | .socketpair = tipc_socketpair, |
247f0f3c YX |
3205 | .accept = tipc_accept, |
3206 | .getname = tipc_getname, | |
a11e1d43 | 3207 | .poll = tipc_poll, |
78acb1f9 | 3208 | .ioctl = tipc_ioctl, |
247f0f3c YX |
3209 | .listen = tipc_listen, |
3210 | .shutdown = tipc_shutdown, | |
3211 | .setsockopt = tipc_setsockopt, | |
3212 | .getsockopt = tipc_getsockopt, | |
365ad353 | 3213 | .sendmsg = tipc_sendstream, |
ec8a09fb | 3214 | .recvmsg = tipc_recvstream, |
8238745a YH |
3215 | .mmap = sock_no_mmap, |
3216 | .sendpage = sock_no_sendpage | |
b97bf3fd PL |
3217 | }; |
3218 | ||
bca65eae | 3219 | static const struct net_proto_family tipc_family_ops = { |
0e65967e | 3220 | .owner = THIS_MODULE, |
b97bf3fd | 3221 | .family = AF_TIPC, |
c5fa7b3c | 3222 | .create = tipc_sk_create |
b97bf3fd PL |
3223 | }; |
3224 | ||
3225 | static struct proto tipc_proto = { | |
3226 | .name = "TIPC", | |
3227 | .owner = THIS_MODULE, | |
cc79dd1b YX |
3228 | .obj_size = sizeof(struct tipc_sock), |
3229 | .sysctl_rmem = sysctl_tipc_rmem | |
b97bf3fd PL |
3230 | }; |
3231 | ||
3232 | /** | |
4323add6 | 3233 | * tipc_socket_init - initialize TIPC socket interface |
c4307285 | 3234 | * |
b97bf3fd PL |
3235 | * Returns 0 on success, errno otherwise |
3236 | */ | |
4323add6 | 3237 | int tipc_socket_init(void) |
b97bf3fd PL |
3238 | { |
3239 | int res; | |
3240 | ||
c4307285 | 3241 | res = proto_register(&tipc_proto, 1); |
b97bf3fd | 3242 | if (res) { |
2cf8aa19 | 3243 | pr_err("Failed to register TIPC protocol type\n"); |
b97bf3fd PL |
3244 | goto out; |
3245 | } | |
3246 | ||
3247 | res = sock_register(&tipc_family_ops); | |
3248 | if (res) { | |
2cf8aa19 | 3249 | pr_err("Failed to register TIPC socket type\n"); |
b97bf3fd PL |
3250 | proto_unregister(&tipc_proto); |
3251 | goto out; | |
3252 | } | |
b97bf3fd PL |
3253 | out: |
3254 | return res; | |
3255 | } | |
3256 | ||
3257 | /** | |
4323add6 | 3258 | * tipc_socket_stop - stop TIPC socket interface |
b97bf3fd | 3259 | */ |
4323add6 | 3260 | void tipc_socket_stop(void) |
b97bf3fd | 3261 | { |
b97bf3fd PL |
3262 | sock_unregister(tipc_family_ops.family); |
3263 | proto_unregister(&tipc_proto); | |
3264 | } | |
34b78a12 RA |
3265 | |
3266 | /* Caller should hold socket lock for the passed tipc socket. */ | |
d8182804 | 3267 | static int __tipc_nl_add_sk_con(struct sk_buff *skb, struct tipc_sock *tsk) |
34b78a12 RA |
3268 | { |
3269 | u32 peer_node; | |
3270 | u32 peer_port; | |
3271 | struct nlattr *nest; | |
3272 | ||
3273 | peer_node = tsk_peer_node(tsk); | |
3274 | peer_port = tsk_peer_port(tsk); | |
3275 | ||
ae0be8de | 3276 | nest = nla_nest_start_noflag(skb, TIPC_NLA_SOCK_CON); |
517ccc2a KL |
3277 | if (!nest) |
3278 | return -EMSGSIZE; | |
34b78a12 RA |
3279 | |
3280 | if (nla_put_u32(skb, TIPC_NLA_CON_NODE, peer_node)) | |
3281 | goto msg_full; | |
3282 | if (nla_put_u32(skb, TIPC_NLA_CON_SOCK, peer_port)) | |
3283 | goto msg_full; | |
3284 | ||
3285 | if (tsk->conn_type != 0) { | |
3286 | if (nla_put_flag(skb, TIPC_NLA_CON_FLAG)) | |
3287 | goto msg_full; | |
3288 | if (nla_put_u32(skb, TIPC_NLA_CON_TYPE, tsk->conn_type)) | |
3289 | goto msg_full; | |
3290 | if (nla_put_u32(skb, TIPC_NLA_CON_INST, tsk->conn_instance)) | |
3291 | goto msg_full; | |
3292 | } | |
3293 | nla_nest_end(skb, nest); | |
3294 | ||
3295 | return 0; | |
3296 | ||
3297 | msg_full: | |
3298 | nla_nest_cancel(skb, nest); | |
3299 | ||
3300 | return -EMSGSIZE; | |
3301 | } | |
3302 | ||
dfde331e GM |
3303 | static int __tipc_nl_add_sk_info(struct sk_buff *skb, struct tipc_sock |
3304 | *tsk) | |
3305 | { | |
3306 | struct net *net = sock_net(skb->sk); | |
dfde331e GM |
3307 | struct sock *sk = &tsk->sk; |
3308 | ||
3309 | if (nla_put_u32(skb, TIPC_NLA_SOCK_REF, tsk->portid) || | |
23fd3eac | 3310 | nla_put_u32(skb, TIPC_NLA_SOCK_ADDR, tipc_own_addr(net))) |
dfde331e GM |
3311 | return -EMSGSIZE; |
3312 | ||
3313 | if (tipc_sk_connected(sk)) { | |
3314 | if (__tipc_nl_add_sk_con(skb, tsk)) | |
3315 | return -EMSGSIZE; | |
3316 | } else if (!list_empty(&tsk->publications)) { | |
3317 | if (nla_put_flag(skb, TIPC_NLA_SOCK_HAS_PUBL)) | |
3318 | return -EMSGSIZE; | |
3319 | } | |
3320 | return 0; | |
3321 | } | |
3322 | ||
34b78a12 | 3323 | /* Caller should hold socket lock for the passed tipc socket. */ |
d8182804 RA |
3324 | static int __tipc_nl_add_sk(struct sk_buff *skb, struct netlink_callback *cb, |
3325 | struct tipc_sock *tsk) | |
34b78a12 | 3326 | { |
34b78a12 | 3327 | struct nlattr *attrs; |
dfde331e | 3328 | void *hdr; |
34b78a12 RA |
3329 | |
3330 | hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq, | |
bfb3e5dd | 3331 | &tipc_genl_family, NLM_F_MULTI, TIPC_NL_SOCK_GET); |
34b78a12 RA |
3332 | if (!hdr) |
3333 | goto msg_cancel; | |
3334 | ||
ae0be8de | 3335 | attrs = nla_nest_start_noflag(skb, TIPC_NLA_SOCK); |
34b78a12 RA |
3336 | if (!attrs) |
3337 | goto genlmsg_cancel; | |
dfde331e GM |
3338 | |
3339 | if (__tipc_nl_add_sk_info(skb, tsk)) | |
34b78a12 RA |
3340 | goto attr_msg_cancel; |
3341 | ||
34b78a12 RA |
3342 | nla_nest_end(skb, attrs); |
3343 | genlmsg_end(skb, hdr); | |
3344 | ||
3345 | return 0; | |
3346 | ||
3347 | attr_msg_cancel: | |
3348 | nla_nest_cancel(skb, attrs); | |
3349 | genlmsg_cancel: | |
3350 | genlmsg_cancel(skb, hdr); | |
3351 | msg_cancel: | |
3352 | return -EMSGSIZE; | |
3353 | } | |
3354 | ||
c30b70de GM |
3355 | int tipc_nl_sk_walk(struct sk_buff *skb, struct netlink_callback *cb, |
3356 | int (*skb_handler)(struct sk_buff *skb, | |
3357 | struct netlink_callback *cb, | |
3358 | struct tipc_sock *tsk)) | |
34b78a12 | 3359 | { |
8f5c5fcf | 3360 | struct rhashtable_iter *iter = (void *)cb->args[4]; |
dfde331e GM |
3361 | struct tipc_sock *tsk; |
3362 | int err; | |
34b78a12 | 3363 | |
9a07efa9 CW |
3364 | rhashtable_walk_start(iter); |
3365 | while ((tsk = rhashtable_walk_next(iter)) != NULL) { | |
3366 | if (IS_ERR(tsk)) { | |
3367 | err = PTR_ERR(tsk); | |
3368 | if (err == -EAGAIN) { | |
3369 | err = 0; | |
d6e164e3 RA |
3370 | continue; |
3371 | } | |
9a07efa9 CW |
3372 | break; |
3373 | } | |
d6e164e3 | 3374 | |
9a07efa9 CW |
3375 | sock_hold(&tsk->sk); |
3376 | rhashtable_walk_stop(iter); | |
3377 | lock_sock(&tsk->sk); | |
3378 | err = skb_handler(skb, cb, tsk); | |
3379 | if (err) { | |
3380 | release_sock(&tsk->sk); | |
3381 | sock_put(&tsk->sk); | |
3382 | goto out; | |
07f6c4bc | 3383 | } |
9a07efa9 CW |
3384 | release_sock(&tsk->sk); |
3385 | rhashtable_walk_start(iter); | |
3386 | sock_put(&tsk->sk); | |
34b78a12 | 3387 | } |
9a07efa9 | 3388 | rhashtable_walk_stop(iter); |
d6e164e3 | 3389 | out: |
34b78a12 RA |
3390 | return skb->len; |
3391 | } | |
c30b70de GM |
3392 | EXPORT_SYMBOL(tipc_nl_sk_walk); |
3393 | ||
9a07efa9 CW |
3394 | int tipc_dump_start(struct netlink_callback *cb) |
3395 | { | |
8f5c5fcf CW |
3396 | return __tipc_dump_start(cb, sock_net(cb->skb->sk)); |
3397 | } | |
3398 | EXPORT_SYMBOL(tipc_dump_start); | |
3399 | ||
3400 | int __tipc_dump_start(struct netlink_callback *cb, struct net *net) | |
3401 | { | |
3402 | /* tipc_nl_name_table_dump() uses cb->args[0...3]. */ | |
3403 | struct rhashtable_iter *iter = (void *)cb->args[4]; | |
9a07efa9 CW |
3404 | struct tipc_net *tn = tipc_net(net); |
3405 | ||
3406 | if (!iter) { | |
3407 | iter = kmalloc(sizeof(*iter), GFP_KERNEL); | |
3408 | if (!iter) | |
3409 | return -ENOMEM; | |
3410 | ||
8f5c5fcf | 3411 | cb->args[4] = (long)iter; |
9a07efa9 CW |
3412 | } |
3413 | ||
3414 | rhashtable_walk_enter(&tn->sk_rht, iter); | |
3415 | return 0; | |
3416 | } | |
9a07efa9 CW |
3417 | |
3418 | int tipc_dump_done(struct netlink_callback *cb) | |
3419 | { | |
8f5c5fcf | 3420 | struct rhashtable_iter *hti = (void *)cb->args[4]; |
9a07efa9 CW |
3421 | |
3422 | rhashtable_walk_exit(hti); | |
3423 | kfree(hti); | |
3424 | return 0; | |
3425 | } | |
3426 | EXPORT_SYMBOL(tipc_dump_done); | |
3427 | ||
e41f0548 CW |
3428 | int tipc_sk_fill_sock_diag(struct sk_buff *skb, struct netlink_callback *cb, |
3429 | struct tipc_sock *tsk, u32 sk_filter_state, | |
c30b70de GM |
3430 | u64 (*tipc_diag_gen_cookie)(struct sock *sk)) |
3431 | { | |
3432 | struct sock *sk = &tsk->sk; | |
3433 | struct nlattr *attrs; | |
3434 | struct nlattr *stat; | |
3435 | ||
3436 | /*filter response w.r.t sk_state*/ | |
3437 | if (!(sk_filter_state & (1 << sk->sk_state))) | |
3438 | return 0; | |
3439 | ||
ae0be8de | 3440 | attrs = nla_nest_start_noflag(skb, TIPC_NLA_SOCK); |
c30b70de GM |
3441 | if (!attrs) |
3442 | goto msg_cancel; | |
3443 | ||
3444 | if (__tipc_nl_add_sk_info(skb, tsk)) | |
3445 | goto attr_msg_cancel; | |
3446 | ||
3447 | if (nla_put_u32(skb, TIPC_NLA_SOCK_TYPE, (u32)sk->sk_type) || | |
3448 | nla_put_u32(skb, TIPC_NLA_SOCK_TIPC_STATE, (u32)sk->sk_state) || | |
3449 | nla_put_u32(skb, TIPC_NLA_SOCK_INO, sock_i_ino(sk)) || | |
3450 | nla_put_u32(skb, TIPC_NLA_SOCK_UID, | |
e41f0548 | 3451 | from_kuid_munged(sk_user_ns(NETLINK_CB(cb->skb).sk), |
4b2e6877 | 3452 | sock_i_uid(sk))) || |
c30b70de GM |
3453 | nla_put_u64_64bit(skb, TIPC_NLA_SOCK_COOKIE, |
3454 | tipc_diag_gen_cookie(sk), | |
3455 | TIPC_NLA_SOCK_PAD)) | |
3456 | goto attr_msg_cancel; | |
3457 | ||
ae0be8de | 3458 | stat = nla_nest_start_noflag(skb, TIPC_NLA_SOCK_STAT); |
c30b70de GM |
3459 | if (!stat) |
3460 | goto attr_msg_cancel; | |
3461 | ||
3462 | if (nla_put_u32(skb, TIPC_NLA_SOCK_STAT_RCVQ, | |
3463 | skb_queue_len(&sk->sk_receive_queue)) || | |
3464 | nla_put_u32(skb, TIPC_NLA_SOCK_STAT_SENDQ, | |
872619d8 GM |
3465 | skb_queue_len(&sk->sk_write_queue)) || |
3466 | nla_put_u32(skb, TIPC_NLA_SOCK_STAT_DROP, | |
3467 | atomic_read(&sk->sk_drops))) | |
c30b70de GM |
3468 | goto stat_msg_cancel; |
3469 | ||
3470 | if (tsk->cong_link_cnt && | |
3471 | nla_put_flag(skb, TIPC_NLA_SOCK_STAT_LINK_CONG)) | |
3472 | goto stat_msg_cancel; | |
3473 | ||
3474 | if (tsk_conn_cong(tsk) && | |
3475 | nla_put_flag(skb, TIPC_NLA_SOCK_STAT_CONN_CONG)) | |
3476 | goto stat_msg_cancel; | |
3477 | ||
3478 | nla_nest_end(skb, stat); | |
a1be5a20 GM |
3479 | |
3480 | if (tsk->group) | |
3481 | if (tipc_group_fill_sock_diag(tsk->group, skb)) | |
3482 | goto stat_msg_cancel; | |
3483 | ||
c30b70de GM |
3484 | nla_nest_end(skb, attrs); |
3485 | ||
3486 | return 0; | |
3487 | ||
3488 | stat_msg_cancel: | |
3489 | nla_nest_cancel(skb, stat); | |
3490 | attr_msg_cancel: | |
3491 | nla_nest_cancel(skb, attrs); | |
3492 | msg_cancel: | |
3493 | return -EMSGSIZE; | |
3494 | } | |
3495 | EXPORT_SYMBOL(tipc_sk_fill_sock_diag); | |
1a1a143d | 3496 | |
dfde331e GM |
3497 | int tipc_nl_sk_dump(struct sk_buff *skb, struct netlink_callback *cb) |
3498 | { | |
c30b70de | 3499 | return tipc_nl_sk_walk(skb, cb, __tipc_nl_add_sk); |
dfde331e GM |
3500 | } |
3501 | ||
1a1a143d | 3502 | /* Caller should hold socket lock for the passed tipc socket. */ |
d8182804 RA |
3503 | static int __tipc_nl_add_sk_publ(struct sk_buff *skb, |
3504 | struct netlink_callback *cb, | |
3505 | struct publication *publ) | |
1a1a143d RA |
3506 | { |
3507 | void *hdr; | |
3508 | struct nlattr *attrs; | |
3509 | ||
3510 | hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq, | |
bfb3e5dd | 3511 | &tipc_genl_family, NLM_F_MULTI, TIPC_NL_PUBL_GET); |
1a1a143d RA |
3512 | if (!hdr) |
3513 | goto msg_cancel; | |
3514 | ||
ae0be8de | 3515 | attrs = nla_nest_start_noflag(skb, TIPC_NLA_PUBL); |
1a1a143d RA |
3516 | if (!attrs) |
3517 | goto genlmsg_cancel; | |
3518 | ||
3519 | if (nla_put_u32(skb, TIPC_NLA_PUBL_KEY, publ->key)) | |
3520 | goto attr_msg_cancel; | |
3521 | if (nla_put_u32(skb, TIPC_NLA_PUBL_TYPE, publ->type)) | |
3522 | goto attr_msg_cancel; | |
3523 | if (nla_put_u32(skb, TIPC_NLA_PUBL_LOWER, publ->lower)) | |
3524 | goto attr_msg_cancel; | |
3525 | if (nla_put_u32(skb, TIPC_NLA_PUBL_UPPER, publ->upper)) | |
3526 | goto attr_msg_cancel; | |
3527 | ||
3528 | nla_nest_end(skb, attrs); | |
3529 | genlmsg_end(skb, hdr); | |
3530 | ||
3531 | return 0; | |
3532 | ||
3533 | attr_msg_cancel: | |
3534 | nla_nest_cancel(skb, attrs); | |
3535 | genlmsg_cancel: | |
3536 | genlmsg_cancel(skb, hdr); | |
3537 | msg_cancel: | |
3538 | return -EMSGSIZE; | |
3539 | } | |
3540 | ||
3541 | /* Caller should hold socket lock for the passed tipc socket. */ | |
d8182804 RA |
3542 | static int __tipc_nl_list_sk_publ(struct sk_buff *skb, |
3543 | struct netlink_callback *cb, | |
3544 | struct tipc_sock *tsk, u32 *last_publ) | |
1a1a143d RA |
3545 | { |
3546 | int err; | |
3547 | struct publication *p; | |
3548 | ||
3549 | if (*last_publ) { | |
e50e73e1 | 3550 | list_for_each_entry(p, &tsk->publications, binding_sock) { |
1a1a143d RA |
3551 | if (p->key == *last_publ) |
3552 | break; | |
3553 | } | |
3554 | if (p->key != *last_publ) { | |
3555 | /* We never set seq or call nl_dump_check_consistent() | |
3556 | * this means that setting prev_seq here will cause the | |
3557 | * consistence check to fail in the netlink callback | |
3558 | * handler. Resulting in the last NLMSG_DONE message | |
3559 | * having the NLM_F_DUMP_INTR flag set. | |
3560 | */ | |
3561 | cb->prev_seq = 1; | |
3562 | *last_publ = 0; | |
3563 | return -EPIPE; | |
3564 | } | |
3565 | } else { | |
3566 | p = list_first_entry(&tsk->publications, struct publication, | |
e50e73e1 | 3567 | binding_sock); |
1a1a143d RA |
3568 | } |
3569 | ||
e50e73e1 | 3570 | list_for_each_entry_from(p, &tsk->publications, binding_sock) { |
1a1a143d RA |
3571 | err = __tipc_nl_add_sk_publ(skb, cb, p); |
3572 | if (err) { | |
3573 | *last_publ = p->key; | |
3574 | return err; | |
3575 | } | |
3576 | } | |
3577 | *last_publ = 0; | |
3578 | ||
3579 | return 0; | |
3580 | } | |
3581 | ||
3582 | int tipc_nl_publ_dump(struct sk_buff *skb, struct netlink_callback *cb) | |
3583 | { | |
3584 | int err; | |
07f6c4bc | 3585 | u32 tsk_portid = cb->args[0]; |
1a1a143d RA |
3586 | u32 last_publ = cb->args[1]; |
3587 | u32 done = cb->args[2]; | |
e05b31f4 | 3588 | struct net *net = sock_net(skb->sk); |
1a1a143d RA |
3589 | struct tipc_sock *tsk; |
3590 | ||
07f6c4bc | 3591 | if (!tsk_portid) { |
1a1a143d RA |
3592 | struct nlattr **attrs; |
3593 | struct nlattr *sock[TIPC_NLA_SOCK_MAX + 1]; | |
3594 | ||
3595 | err = tipc_nlmsg_parse(cb->nlh, &attrs); | |
3596 | if (err) | |
3597 | return err; | |
3598 | ||
45e093ae RA |
3599 | if (!attrs[TIPC_NLA_SOCK]) |
3600 | return -EINVAL; | |
3601 | ||
1a1a143d RA |
3602 | err = nla_parse_nested(sock, TIPC_NLA_SOCK_MAX, |
3603 | attrs[TIPC_NLA_SOCK], | |
fceb6435 | 3604 | tipc_nl_sock_policy, NULL); |
1a1a143d RA |
3605 | if (err) |
3606 | return err; | |
3607 | ||
3608 | if (!sock[TIPC_NLA_SOCK_REF]) | |
3609 | return -EINVAL; | |
3610 | ||
07f6c4bc | 3611 | tsk_portid = nla_get_u32(sock[TIPC_NLA_SOCK_REF]); |
1a1a143d RA |
3612 | } |
3613 | ||
3614 | if (done) | |
3615 | return 0; | |
3616 | ||
e05b31f4 | 3617 | tsk = tipc_sk_lookup(net, tsk_portid); |
1a1a143d RA |
3618 | if (!tsk) |
3619 | return -EINVAL; | |
3620 | ||
3621 | lock_sock(&tsk->sk); | |
3622 | err = __tipc_nl_list_sk_publ(skb, cb, tsk, &last_publ); | |
3623 | if (!err) | |
3624 | done = 1; | |
3625 | release_sock(&tsk->sk); | |
07f6c4bc | 3626 | sock_put(&tsk->sk); |
1a1a143d | 3627 | |
07f6c4bc | 3628 | cb->args[0] = tsk_portid; |
1a1a143d RA |
3629 | cb->args[1] = last_publ; |
3630 | cb->args[2] = done; | |
3631 | ||
3632 | return skb->len; | |
3633 | } | |
b4b9771b | 3634 | |
01e661eb TL |
3635 | /** |
3636 | * tipc_sk_filtering - check if a socket should be traced | |
3637 | * @sk: the socket to be examined | |
3638 | * @sysctl_tipc_sk_filter[]: the socket tuple for filtering, | |
3639 | * (portid, sock type, name type, name lower, name upper) | |
3640 | * | |
3641 | * Returns true if the socket meets the socket tuple data | |
3642 | * (value 0 = 'any') or when there is no tuple set (all = 0), | |
3643 | * otherwise false | |
3644 | */ | |
3645 | bool tipc_sk_filtering(struct sock *sk) | |
3646 | { | |
3647 | struct tipc_sock *tsk; | |
3648 | struct publication *p; | |
3649 | u32 _port, _sktype, _type, _lower, _upper; | |
3650 | u32 type = 0, lower = 0, upper = 0; | |
3651 | ||
3652 | if (!sk) | |
3653 | return true; | |
3654 | ||
3655 | tsk = tipc_sk(sk); | |
3656 | ||
3657 | _port = sysctl_tipc_sk_filter[0]; | |
3658 | _sktype = sysctl_tipc_sk_filter[1]; | |
3659 | _type = sysctl_tipc_sk_filter[2]; | |
3660 | _lower = sysctl_tipc_sk_filter[3]; | |
3661 | _upper = sysctl_tipc_sk_filter[4]; | |
3662 | ||
3663 | if (!_port && !_sktype && !_type && !_lower && !_upper) | |
3664 | return true; | |
3665 | ||
3666 | if (_port) | |
3667 | return (_port == tsk->portid); | |
3668 | ||
3669 | if (_sktype && _sktype != sk->sk_type) | |
3670 | return false; | |
3671 | ||
3672 | if (tsk->published) { | |
3673 | p = list_first_entry_or_null(&tsk->publications, | |
3674 | struct publication, binding_sock); | |
3675 | if (p) { | |
3676 | type = p->type; | |
3677 | lower = p->lower; | |
3678 | upper = p->upper; | |
3679 | } | |
3680 | } | |
3681 | ||
3682 | if (!tipc_sk_type_connectionless(sk)) { | |
3683 | type = tsk->conn_type; | |
3684 | lower = tsk->conn_instance; | |
3685 | upper = tsk->conn_instance; | |
3686 | } | |
3687 | ||
3688 | if ((_type && _type != type) || (_lower && _lower != lower) || | |
3689 | (_upper && _upper != upper)) | |
3690 | return false; | |
3691 | ||
3692 | return true; | |
3693 | } | |
3694 | ||
b4b9771b TL |
3695 | u32 tipc_sock_get_portid(struct sock *sk) |
3696 | { | |
3697 | return (sk) ? (tipc_sk(sk))->portid : 0; | |
3698 | } | |
3699 | ||
01e661eb TL |
3700 | /** |
3701 | * tipc_sk_overlimit1 - check if socket rx queue is about to be overloaded, | |
3702 | * both the rcv and backlog queues are considered | |
3703 | * @sk: tipc sk to be checked | |
3704 | * @skb: tipc msg to be checked | |
3705 | * | |
3706 | * Returns true if the socket rx queue allocation is > 90%, otherwise false | |
3707 | */ | |
3708 | ||
3709 | bool tipc_sk_overlimit1(struct sock *sk, struct sk_buff *skb) | |
3710 | { | |
3711 | atomic_t *dcnt = &tipc_sk(sk)->dupl_rcvcnt; | |
3712 | unsigned int lim = rcvbuf_limit(sk, skb) + atomic_read(dcnt); | |
3713 | unsigned int qsize = sk->sk_backlog.len + sk_rmem_alloc_get(sk); | |
3714 | ||
3715 | return (qsize > lim * 90 / 100); | |
3716 | } | |
3717 | ||
3718 | /** | |
3719 | * tipc_sk_overlimit2 - check if socket rx queue is about to be overloaded, | |
3720 | * only the rcv queue is considered | |
3721 | * @sk: tipc sk to be checked | |
3722 | * @skb: tipc msg to be checked | |
3723 | * | |
3724 | * Returns true if the socket rx queue allocation is > 90%, otherwise false | |
3725 | */ | |
3726 | ||
3727 | bool tipc_sk_overlimit2(struct sock *sk, struct sk_buff *skb) | |
3728 | { | |
3729 | unsigned int lim = rcvbuf_limit(sk, skb); | |
3730 | unsigned int qsize = sk_rmem_alloc_get(sk); | |
3731 | ||
3732 | return (qsize > lim * 90 / 100); | |
3733 | } | |
3734 | ||
b4b9771b TL |
3735 | /** |
3736 | * tipc_sk_dump - dump TIPC socket | |
3737 | * @sk: tipc sk to be dumped | |
3738 | * @dqueues: bitmask to decide if any socket queue to be dumped? | |
3739 | * - TIPC_DUMP_NONE: don't dump socket queues | |
3740 | * - TIPC_DUMP_SK_SNDQ: dump socket send queue | |
3741 | * - TIPC_DUMP_SK_RCVQ: dump socket rcv queue | |
3742 | * - TIPC_DUMP_SK_BKLGQ: dump socket backlog queue | |
3743 | * - TIPC_DUMP_ALL: dump all the socket queues above | |
3744 | * @buf: returned buffer of dump data in format | |
3745 | */ | |
3746 | int tipc_sk_dump(struct sock *sk, u16 dqueues, char *buf) | |
3747 | { | |
3748 | int i = 0; | |
3749 | size_t sz = (dqueues) ? SK_LMAX : SK_LMIN; | |
3750 | struct tipc_sock *tsk; | |
3751 | struct publication *p; | |
3752 | bool tsk_connected; | |
3753 | ||
3754 | if (!sk) { | |
3755 | i += scnprintf(buf, sz, "sk data: (null)\n"); | |
3756 | return i; | |
3757 | } | |
3758 | ||
3759 | tsk = tipc_sk(sk); | |
3760 | tsk_connected = !tipc_sk_type_connectionless(sk); | |
3761 | ||
3762 | i += scnprintf(buf, sz, "sk data: %u", sk->sk_type); | |
3763 | i += scnprintf(buf + i, sz - i, " %d", sk->sk_state); | |
3764 | i += scnprintf(buf + i, sz - i, " %x", tsk_own_node(tsk)); | |
3765 | i += scnprintf(buf + i, sz - i, " %u", tsk->portid); | |
3766 | i += scnprintf(buf + i, sz - i, " | %u", tsk_connected); | |
3767 | if (tsk_connected) { | |
3768 | i += scnprintf(buf + i, sz - i, " %x", tsk_peer_node(tsk)); | |
3769 | i += scnprintf(buf + i, sz - i, " %u", tsk_peer_port(tsk)); | |
3770 | i += scnprintf(buf + i, sz - i, " %u", tsk->conn_type); | |
3771 | i += scnprintf(buf + i, sz - i, " %u", tsk->conn_instance); | |
3772 | } | |
3773 | i += scnprintf(buf + i, sz - i, " | %u", tsk->published); | |
3774 | if (tsk->published) { | |
3775 | p = list_first_entry_or_null(&tsk->publications, | |
3776 | struct publication, binding_sock); | |
3777 | i += scnprintf(buf + i, sz - i, " %u", (p) ? p->type : 0); | |
3778 | i += scnprintf(buf + i, sz - i, " %u", (p) ? p->lower : 0); | |
3779 | i += scnprintf(buf + i, sz - i, " %u", (p) ? p->upper : 0); | |
3780 | } | |
3781 | i += scnprintf(buf + i, sz - i, " | %u", tsk->snd_win); | |
3782 | i += scnprintf(buf + i, sz - i, " %u", tsk->rcv_win); | |
3783 | i += scnprintf(buf + i, sz - i, " %u", tsk->max_pkt); | |
3784 | i += scnprintf(buf + i, sz - i, " %x", tsk->peer_caps); | |
3785 | i += scnprintf(buf + i, sz - i, " %u", tsk->cong_link_cnt); | |
3786 | i += scnprintf(buf + i, sz - i, " %u", tsk->snt_unacked); | |
3787 | i += scnprintf(buf + i, sz - i, " %u", tsk->rcv_unacked); | |
3788 | i += scnprintf(buf + i, sz - i, " %u", atomic_read(&tsk->dupl_rcvcnt)); | |
3789 | i += scnprintf(buf + i, sz - i, " %u", sk->sk_shutdown); | |
3790 | i += scnprintf(buf + i, sz - i, " | %d", sk_wmem_alloc_get(sk)); | |
3791 | i += scnprintf(buf + i, sz - i, " %d", sk->sk_sndbuf); | |
3792 | i += scnprintf(buf + i, sz - i, " | %d", sk_rmem_alloc_get(sk)); | |
3793 | i += scnprintf(buf + i, sz - i, " %d", sk->sk_rcvbuf); | |
3794 | i += scnprintf(buf + i, sz - i, " | %d\n", sk->sk_backlog.len); | |
3795 | ||
3796 | if (dqueues & TIPC_DUMP_SK_SNDQ) { | |
3797 | i += scnprintf(buf + i, sz - i, "sk_write_queue: "); | |
3798 | i += tipc_list_dump(&sk->sk_write_queue, false, buf + i); | |
3799 | } | |
3800 | ||
3801 | if (dqueues & TIPC_DUMP_SK_RCVQ) { | |
3802 | i += scnprintf(buf + i, sz - i, "sk_receive_queue: "); | |
3803 | i += tipc_list_dump(&sk->sk_receive_queue, false, buf + i); | |
3804 | } | |
3805 | ||
3806 | if (dqueues & TIPC_DUMP_SK_BKLGQ) { | |
3807 | i += scnprintf(buf + i, sz - i, "sk_backlog:\n head "); | |
3808 | i += tipc_skb_dump(sk->sk_backlog.head, false, buf + i); | |
3809 | if (sk->sk_backlog.tail != sk->sk_backlog.head) { | |
3810 | i += scnprintf(buf + i, sz - i, " tail "); | |
3811 | i += tipc_skb_dump(sk->sk_backlog.tail, false, | |
3812 | buf + i); | |
3813 | } | |
3814 | } | |
3815 | ||
3816 | return i; | |
3817 | } |