]>
Commit | Line | Data |
---|---|---|
b97bf3fd | 1 | /* |
02c00c2a | 2 | * net/tipc/socket.c: TIPC socket API |
c4307285 | 3 | * |
8826cde6 | 4 | * Copyright (c) 2001-2007, 2012-2014, 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 | ||
b97bf3fd | 37 | #include "core.h" |
d265fef6 | 38 | #include "port.h" |
e2dafe87 | 39 | #include "name_table.h" |
78acb1f9 | 40 | #include "node.h" |
e2dafe87 | 41 | #include "link.h" |
2cf8aa19 | 42 | #include <linux/export.h> |
8db1bae3 | 43 | #include "link.h" |
2cf8aa19 | 44 | |
b97bf3fd PL |
45 | #define SS_LISTENING -1 /* socket is listening */ |
46 | #define SS_READY -2 /* socket is connectionless */ | |
47 | ||
3654ea02 | 48 | #define CONN_TIMEOUT_DEFAULT 8000 /* default connect timeout = 8s */ |
ac0074ee | 49 | #define TIPC_FWD_MSG 1 |
b97bf3fd | 50 | |
4f4482dc | 51 | static int tipc_backlog_rcv(struct sock *sk, struct sk_buff *skb); |
676d2369 | 52 | static void tipc_data_ready(struct sock *sk); |
f288bef4 | 53 | static void tipc_write_space(struct sock *sk); |
247f0f3c YX |
54 | static int tipc_release(struct socket *sock); |
55 | static int tipc_accept(struct socket *sock, struct socket *new_sock, int flags); | |
b97bf3fd | 56 | |
bca65eae FW |
57 | static const struct proto_ops packet_ops; |
58 | static const struct proto_ops stream_ops; | |
59 | static const struct proto_ops msg_ops; | |
b97bf3fd PL |
60 | |
61 | static struct proto tipc_proto; | |
c5fa7b3c | 62 | static struct proto tipc_proto_kern; |
b97bf3fd | 63 | |
c4307285 | 64 | /* |
0c3141e9 AS |
65 | * Revised TIPC socket locking policy: |
66 | * | |
67 | * Most socket operations take the standard socket lock when they start | |
68 | * and hold it until they finish (or until they need to sleep). Acquiring | |
69 | * this lock grants the owner exclusive access to the fields of the socket | |
70 | * data structures, with the exception of the backlog queue. A few socket | |
71 | * operations can be done without taking the socket lock because they only | |
72 | * read socket information that never changes during the life of the socket. | |
73 | * | |
74 | * Socket operations may acquire the lock for the associated TIPC port if they | |
75 | * need to perform an operation on the port. If any routine needs to acquire | |
76 | * both the socket lock and the port lock it must take the socket lock first | |
77 | * to avoid the risk of deadlock. | |
78 | * | |
79 | * The dispatcher handling incoming messages cannot grab the socket lock in | |
80 | * the standard fashion, since invoked it runs at the BH level and cannot block. | |
81 | * Instead, it checks to see if the socket lock is currently owned by someone, | |
82 | * and either handles the message itself or adds it to the socket's backlog | |
83 | * queue; in the latter case the queued message is processed once the process | |
84 | * owning the socket lock releases it. | |
85 | * | |
86 | * NOTE: Releasing the socket lock while an operation is sleeping overcomes | |
87 | * the problem of a blocked socket operation preventing any other operations | |
88 | * from occurring. However, applications must be careful if they have | |
89 | * multiple threads trying to send (or receive) on the same socket, as these | |
90 | * operations might interfere with each other. For example, doing a connect | |
91 | * and a receive at the same time might allow the receive to consume the | |
92 | * ACK message meant for the connect. While additional work could be done | |
93 | * to try and overcome this, it doesn't seem to be worthwhile at the present. | |
94 | * | |
95 | * NOTE: Releasing the socket lock while an operation is sleeping also ensures | |
96 | * that another operation that must be performed in a non-blocking manner is | |
97 | * not delayed for very long because the lock has already been taken. | |
98 | * | |
99 | * NOTE: This code assumes that certain fields of a port/socket pair are | |
100 | * constant over its lifetime; such fields can be examined without taking | |
101 | * the socket lock and/or port lock, and do not need to be re-read even | |
102 | * after resuming processing after waiting. These fields include: | |
103 | * - socket type | |
104 | * - pointer to socket sk structure (aka tipc_sock structure) | |
105 | * - pointer to port structure | |
106 | * - port reference | |
107 | */ | |
108 | ||
8826cde6 JPM |
109 | #include "socket.h" |
110 | ||
0c3141e9 AS |
111 | /** |
112 | * advance_rx_queue - discard first buffer in socket receive queue | |
113 | * | |
114 | * Caller must hold socket lock | |
b97bf3fd | 115 | */ |
0c3141e9 | 116 | static void advance_rx_queue(struct sock *sk) |
b97bf3fd | 117 | { |
5f6d9123 | 118 | kfree_skb(__skb_dequeue(&sk->sk_receive_queue)); |
b97bf3fd PL |
119 | } |
120 | ||
b97bf3fd | 121 | /** |
0c3141e9 AS |
122 | * reject_rx_queue - reject all buffers in socket receive queue |
123 | * | |
124 | * Caller must hold socket lock | |
b97bf3fd | 125 | */ |
0c3141e9 | 126 | static void reject_rx_queue(struct sock *sk) |
b97bf3fd | 127 | { |
0c3141e9 | 128 | struct sk_buff *buf; |
8db1bae3 | 129 | u32 dnode; |
0c3141e9 | 130 | |
8db1bae3 JPM |
131 | while ((buf = __skb_dequeue(&sk->sk_receive_queue))) { |
132 | if (tipc_msg_reverse(buf, &dnode, TIPC_ERR_NO_PORT)) | |
133 | tipc_link_xmit2(buf, dnode, 0); | |
134 | } | |
b97bf3fd PL |
135 | } |
136 | ||
137 | /** | |
c5fa7b3c | 138 | * tipc_sk_create - create a TIPC socket |
0c3141e9 | 139 | * @net: network namespace (must be default network) |
b97bf3fd PL |
140 | * @sock: pre-allocated socket structure |
141 | * @protocol: protocol indicator (must be 0) | |
3f378b68 | 142 | * @kern: caused by kernel or by userspace? |
c4307285 | 143 | * |
0c3141e9 AS |
144 | * This routine creates additional data structures used by the TIPC socket, |
145 | * initializes them, and links them together. | |
b97bf3fd PL |
146 | * |
147 | * Returns 0 on success, errno otherwise | |
148 | */ | |
58ed9442 JPM |
149 | static int tipc_sk_create(struct net *net, struct socket *sock, |
150 | int protocol, int kern) | |
b97bf3fd | 151 | { |
0c3141e9 AS |
152 | const struct proto_ops *ops; |
153 | socket_state state; | |
b97bf3fd | 154 | struct sock *sk; |
58ed9442 JPM |
155 | struct tipc_sock *tsk; |
156 | struct tipc_port *port; | |
157 | u32 ref; | |
0c3141e9 AS |
158 | |
159 | /* Validate arguments */ | |
b97bf3fd PL |
160 | if (unlikely(protocol != 0)) |
161 | return -EPROTONOSUPPORT; | |
162 | ||
b97bf3fd PL |
163 | switch (sock->type) { |
164 | case SOCK_STREAM: | |
0c3141e9 AS |
165 | ops = &stream_ops; |
166 | state = SS_UNCONNECTED; | |
b97bf3fd PL |
167 | break; |
168 | case SOCK_SEQPACKET: | |
0c3141e9 AS |
169 | ops = &packet_ops; |
170 | state = SS_UNCONNECTED; | |
b97bf3fd PL |
171 | break; |
172 | case SOCK_DGRAM: | |
b97bf3fd | 173 | case SOCK_RDM: |
0c3141e9 AS |
174 | ops = &msg_ops; |
175 | state = SS_READY; | |
b97bf3fd | 176 | break; |
49978651 | 177 | default: |
49978651 | 178 | return -EPROTOTYPE; |
b97bf3fd PL |
179 | } |
180 | ||
0c3141e9 | 181 | /* Allocate socket's protocol area */ |
c5fa7b3c YX |
182 | if (!kern) |
183 | sk = sk_alloc(net, AF_TIPC, GFP_KERNEL, &tipc_proto); | |
184 | else | |
185 | sk = sk_alloc(net, AF_TIPC, GFP_KERNEL, &tipc_proto_kern); | |
186 | ||
0c3141e9 | 187 | if (sk == NULL) |
b97bf3fd | 188 | return -ENOMEM; |
b97bf3fd | 189 | |
58ed9442 JPM |
190 | tsk = tipc_sk(sk); |
191 | port = &tsk->port; | |
192 | ||
193 | ref = tipc_port_init(port, TIPC_LOW_IMPORTANCE); | |
194 | if (!ref) { | |
195 | pr_warn("Socket registration failed, ref. table exhausted\n"); | |
0c3141e9 AS |
196 | sk_free(sk); |
197 | return -ENOMEM; | |
198 | } | |
b97bf3fd | 199 | |
0c3141e9 | 200 | /* Finish initializing socket data structures */ |
0c3141e9 AS |
201 | sock->ops = ops; |
202 | sock->state = state; | |
b97bf3fd | 203 | |
0c3141e9 | 204 | sock_init_data(sock, sk); |
4f4482dc | 205 | sk->sk_backlog_rcv = tipc_backlog_rcv; |
cc79dd1b | 206 | sk->sk_rcvbuf = sysctl_tipc_rmem[1]; |
f288bef4 YX |
207 | sk->sk_data_ready = tipc_data_ready; |
208 | sk->sk_write_space = tipc_write_space; | |
4f4482dc | 209 | tsk->conn_timeout = CONN_TIMEOUT_DEFAULT; |
60120526 | 210 | tsk->sent_unacked = 0; |
4f4482dc | 211 | atomic_set(&tsk->dupl_rcvcnt, 0); |
58ed9442 | 212 | tipc_port_unlock(port); |
7ef43eba | 213 | |
0c3141e9 | 214 | if (sock->state == SS_READY) { |
58ed9442 | 215 | tipc_port_set_unreturnable(port, true); |
0c3141e9 | 216 | if (sock->type == SOCK_DGRAM) |
58ed9442 | 217 | tipc_port_set_unreliable(port, true); |
0c3141e9 | 218 | } |
b97bf3fd PL |
219 | return 0; |
220 | } | |
221 | ||
c5fa7b3c YX |
222 | /** |
223 | * tipc_sock_create_local - create TIPC socket from inside TIPC module | |
224 | * @type: socket type - SOCK_RDM or SOCK_SEQPACKET | |
225 | * | |
226 | * We cannot use sock_creat_kern here because it bumps module user count. | |
227 | * Since socket owner and creator is the same module we must make sure | |
228 | * that module count remains zero for module local sockets, otherwise | |
229 | * we cannot do rmmod. | |
230 | * | |
231 | * Returns 0 on success, errno otherwise | |
232 | */ | |
233 | int tipc_sock_create_local(int type, struct socket **res) | |
234 | { | |
235 | int rc; | |
c5fa7b3c YX |
236 | |
237 | rc = sock_create_lite(AF_TIPC, type, 0, res); | |
238 | if (rc < 0) { | |
239 | pr_err("Failed to create kernel socket\n"); | |
240 | return rc; | |
241 | } | |
242 | tipc_sk_create(&init_net, *res, 0, 1); | |
243 | ||
c5fa7b3c YX |
244 | return 0; |
245 | } | |
246 | ||
247 | /** | |
248 | * tipc_sock_release_local - release socket created by tipc_sock_create_local | |
249 | * @sock: the socket to be released. | |
250 | * | |
251 | * Module reference count is not incremented when such sockets are created, | |
252 | * so we must keep it from being decremented when they are released. | |
253 | */ | |
254 | void tipc_sock_release_local(struct socket *sock) | |
255 | { | |
247f0f3c | 256 | tipc_release(sock); |
c5fa7b3c YX |
257 | sock->ops = NULL; |
258 | sock_release(sock); | |
259 | } | |
260 | ||
261 | /** | |
262 | * tipc_sock_accept_local - accept a connection on a socket created | |
263 | * with tipc_sock_create_local. Use this function to avoid that | |
264 | * module reference count is inadvertently incremented. | |
265 | * | |
266 | * @sock: the accepting socket | |
267 | * @newsock: reference to the new socket to be created | |
268 | * @flags: socket flags | |
269 | */ | |
270 | ||
271 | int tipc_sock_accept_local(struct socket *sock, struct socket **newsock, | |
ae8509c4 | 272 | int flags) |
c5fa7b3c YX |
273 | { |
274 | struct sock *sk = sock->sk; | |
275 | int ret; | |
276 | ||
277 | ret = sock_create_lite(sk->sk_family, sk->sk_type, | |
278 | sk->sk_protocol, newsock); | |
279 | if (ret < 0) | |
280 | return ret; | |
281 | ||
247f0f3c | 282 | ret = tipc_accept(sock, *newsock, flags); |
c5fa7b3c YX |
283 | if (ret < 0) { |
284 | sock_release(*newsock); | |
285 | return ret; | |
286 | } | |
287 | (*newsock)->ops = sock->ops; | |
288 | return ret; | |
289 | } | |
290 | ||
b97bf3fd | 291 | /** |
247f0f3c | 292 | * tipc_release - destroy a TIPC socket |
b97bf3fd PL |
293 | * @sock: socket to destroy |
294 | * | |
295 | * This routine cleans up any messages that are still queued on the socket. | |
296 | * For DGRAM and RDM socket types, all queued messages are rejected. | |
297 | * For SEQPACKET and STREAM socket types, the first message is rejected | |
298 | * and any others are discarded. (If the first message on a STREAM socket | |
299 | * is partially-read, it is discarded and the next one is rejected instead.) | |
c4307285 | 300 | * |
b97bf3fd PL |
301 | * NOTE: Rejected messages are not necessarily returned to the sender! They |
302 | * are returned or discarded according to the "destination droppable" setting | |
303 | * specified for the message by the sender. | |
304 | * | |
305 | * Returns 0 on success, errno otherwise | |
306 | */ | |
247f0f3c | 307 | static int tipc_release(struct socket *sock) |
b97bf3fd | 308 | { |
b97bf3fd | 309 | struct sock *sk = sock->sk; |
58ed9442 JPM |
310 | struct tipc_sock *tsk; |
311 | struct tipc_port *port; | |
b97bf3fd | 312 | struct sk_buff *buf; |
8db1bae3 | 313 | u32 dnode; |
b97bf3fd | 314 | |
0c3141e9 AS |
315 | /* |
316 | * Exit if socket isn't fully initialized (occurs when a failed accept() | |
317 | * releases a pre-allocated child socket that was never used) | |
318 | */ | |
0c3141e9 | 319 | if (sk == NULL) |
b97bf3fd | 320 | return 0; |
c4307285 | 321 | |
58ed9442 JPM |
322 | tsk = tipc_sk(sk); |
323 | port = &tsk->port; | |
0c3141e9 AS |
324 | lock_sock(sk); |
325 | ||
326 | /* | |
327 | * Reject all unreceived messages, except on an active connection | |
328 | * (which disconnects locally & sends a 'FIN+' to peer) | |
329 | */ | |
b97bf3fd | 330 | while (sock->state != SS_DISCONNECTING) { |
0c3141e9 AS |
331 | buf = __skb_dequeue(&sk->sk_receive_queue); |
332 | if (buf == NULL) | |
b97bf3fd | 333 | break; |
40682432 | 334 | if (TIPC_SKB_CB(buf)->handle != NULL) |
5f6d9123 | 335 | kfree_skb(buf); |
0c3141e9 AS |
336 | else { |
337 | if ((sock->state == SS_CONNECTING) || | |
338 | (sock->state == SS_CONNECTED)) { | |
339 | sock->state = SS_DISCONNECTING; | |
58ed9442 | 340 | tipc_port_disconnect(port->ref); |
0c3141e9 | 341 | } |
8db1bae3 JPM |
342 | if (tipc_msg_reverse(buf, &dnode, TIPC_ERR_NO_PORT)) |
343 | tipc_link_xmit2(buf, dnode, 0); | |
0c3141e9 | 344 | } |
b97bf3fd PL |
345 | } |
346 | ||
58ed9442 JPM |
347 | /* Destroy TIPC port; also disconnects an active connection and |
348 | * sends a 'FIN-' to peer. | |
0c3141e9 | 349 | */ |
58ed9442 | 350 | tipc_port_destroy(port); |
b97bf3fd | 351 | |
0c3141e9 | 352 | /* Discard any remaining (connection-based) messages in receive queue */ |
57467e56 | 353 | __skb_queue_purge(&sk->sk_receive_queue); |
b97bf3fd | 354 | |
0c3141e9 | 355 | /* Reject any messages that accumulated in backlog queue */ |
0c3141e9 AS |
356 | sock->state = SS_DISCONNECTING; |
357 | release_sock(sk); | |
b97bf3fd PL |
358 | |
359 | sock_put(sk); | |
0c3141e9 | 360 | sock->sk = NULL; |
b97bf3fd | 361 | |
065d7e39 | 362 | return 0; |
b97bf3fd PL |
363 | } |
364 | ||
365 | /** | |
247f0f3c | 366 | * tipc_bind - associate or disassocate TIPC name(s) with a socket |
b97bf3fd PL |
367 | * @sock: socket structure |
368 | * @uaddr: socket address describing name(s) and desired operation | |
369 | * @uaddr_len: size of socket address data structure | |
c4307285 | 370 | * |
b97bf3fd PL |
371 | * Name and name sequence binding is indicated using a positive scope value; |
372 | * a negative scope value unbinds the specified name. Specifying no name | |
373 | * (i.e. a socket address length of 0) unbinds all names from the socket. | |
c4307285 | 374 | * |
b97bf3fd | 375 | * Returns 0 on success, errno otherwise |
0c3141e9 AS |
376 | * |
377 | * NOTE: This routine doesn't need to take the socket lock since it doesn't | |
378 | * access any non-constant socket information. | |
b97bf3fd | 379 | */ |
247f0f3c YX |
380 | static int tipc_bind(struct socket *sock, struct sockaddr *uaddr, |
381 | int uaddr_len) | |
b97bf3fd | 382 | { |
84602761 | 383 | struct sock *sk = sock->sk; |
b97bf3fd | 384 | struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr; |
58ed9442 | 385 | struct tipc_sock *tsk = tipc_sk(sk); |
84602761 | 386 | int res = -EINVAL; |
b97bf3fd | 387 | |
84602761 YX |
388 | lock_sock(sk); |
389 | if (unlikely(!uaddr_len)) { | |
58ed9442 | 390 | res = tipc_withdraw(&tsk->port, 0, NULL); |
84602761 YX |
391 | goto exit; |
392 | } | |
c4307285 | 393 | |
84602761 YX |
394 | if (uaddr_len < sizeof(struct sockaddr_tipc)) { |
395 | res = -EINVAL; | |
396 | goto exit; | |
397 | } | |
398 | if (addr->family != AF_TIPC) { | |
399 | res = -EAFNOSUPPORT; | |
400 | goto exit; | |
401 | } | |
b97bf3fd | 402 | |
b97bf3fd PL |
403 | if (addr->addrtype == TIPC_ADDR_NAME) |
404 | addr->addr.nameseq.upper = addr->addr.nameseq.lower; | |
84602761 YX |
405 | else if (addr->addrtype != TIPC_ADDR_NAMESEQ) { |
406 | res = -EAFNOSUPPORT; | |
407 | goto exit; | |
408 | } | |
c4307285 | 409 | |
13a2e898 | 410 | if ((addr->addr.nameseq.type < TIPC_RESERVED_TYPES) && |
7d0ab17b | 411 | (addr->addr.nameseq.type != TIPC_TOP_SRV) && |
84602761 YX |
412 | (addr->addr.nameseq.type != TIPC_CFG_SRV)) { |
413 | res = -EACCES; | |
414 | goto exit; | |
415 | } | |
c422f1bd | 416 | |
84602761 | 417 | res = (addr->scope > 0) ? |
58ed9442 JPM |
418 | tipc_publish(&tsk->port, addr->scope, &addr->addr.nameseq) : |
419 | tipc_withdraw(&tsk->port, -addr->scope, &addr->addr.nameseq); | |
84602761 YX |
420 | exit: |
421 | release_sock(sk); | |
422 | return res; | |
b97bf3fd PL |
423 | } |
424 | ||
c4307285 | 425 | /** |
247f0f3c | 426 | * tipc_getname - get port ID of socket or peer socket |
b97bf3fd PL |
427 | * @sock: socket structure |
428 | * @uaddr: area for returned socket address | |
429 | * @uaddr_len: area for returned length of socket address | |
2da59918 | 430 | * @peer: 0 = own ID, 1 = current peer ID, 2 = current/former peer ID |
c4307285 | 431 | * |
b97bf3fd | 432 | * Returns 0 on success, errno otherwise |
0c3141e9 | 433 | * |
2da59918 AS |
434 | * NOTE: This routine doesn't need to take the socket lock since it only |
435 | * accesses socket information that is unchanging (or which changes in | |
0e65967e | 436 | * a completely predictable manner). |
b97bf3fd | 437 | */ |
247f0f3c YX |
438 | static int tipc_getname(struct socket *sock, struct sockaddr *uaddr, |
439 | int *uaddr_len, int peer) | |
b97bf3fd | 440 | { |
b97bf3fd | 441 | struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr; |
58ed9442 | 442 | struct tipc_sock *tsk = tipc_sk(sock->sk); |
b97bf3fd | 443 | |
88f8a5e3 | 444 | memset(addr, 0, sizeof(*addr)); |
0c3141e9 | 445 | if (peer) { |
2da59918 AS |
446 | if ((sock->state != SS_CONNECTED) && |
447 | ((peer != 2) || (sock->state != SS_DISCONNECTING))) | |
448 | return -ENOTCONN; | |
58ed9442 JPM |
449 | addr->addr.id.ref = tipc_port_peerport(&tsk->port); |
450 | addr->addr.id.node = tipc_port_peernode(&tsk->port); | |
0c3141e9 | 451 | } else { |
58ed9442 | 452 | addr->addr.id.ref = tsk->port.ref; |
b924dcf0 | 453 | addr->addr.id.node = tipc_own_addr; |
0c3141e9 | 454 | } |
b97bf3fd PL |
455 | |
456 | *uaddr_len = sizeof(*addr); | |
457 | addr->addrtype = TIPC_ADDR_ID; | |
458 | addr->family = AF_TIPC; | |
459 | addr->scope = 0; | |
b97bf3fd PL |
460 | addr->addr.name.domain = 0; |
461 | ||
0c3141e9 | 462 | return 0; |
b97bf3fd PL |
463 | } |
464 | ||
465 | /** | |
247f0f3c | 466 | * tipc_poll - read and possibly block on pollmask |
b97bf3fd PL |
467 | * @file: file structure associated with the socket |
468 | * @sock: socket for which to calculate the poll bits | |
469 | * @wait: ??? | |
470 | * | |
9b674e82 AS |
471 | * Returns pollmask value |
472 | * | |
473 | * COMMENTARY: | |
474 | * It appears that the usual socket locking mechanisms are not useful here | |
475 | * since the pollmask info is potentially out-of-date the moment this routine | |
476 | * exits. TCP and other protocols seem to rely on higher level poll routines | |
477 | * to handle any preventable race conditions, so TIPC will do the same ... | |
478 | * | |
479 | * TIPC sets the returned events as follows: | |
f662c070 AS |
480 | * |
481 | * socket state flags set | |
482 | * ------------ --------- | |
483 | * unconnected no read flags | |
c4fc298a | 484 | * POLLOUT if port is not congested |
f662c070 AS |
485 | * |
486 | * connecting POLLIN/POLLRDNORM if ACK/NACK in rx queue | |
487 | * no write flags | |
488 | * | |
489 | * connected POLLIN/POLLRDNORM if data in rx queue | |
490 | * POLLOUT if port is not congested | |
491 | * | |
492 | * disconnecting POLLIN/POLLRDNORM/POLLHUP | |
493 | * no write flags | |
494 | * | |
495 | * listening POLLIN if SYN in rx queue | |
496 | * no write flags | |
497 | * | |
498 | * ready POLLIN/POLLRDNORM if data in rx queue | |
499 | * [connectionless] POLLOUT (since port cannot be congested) | |
500 | * | |
501 | * IMPORTANT: The fact that a read or write operation is indicated does NOT | |
502 | * imply that the operation will succeed, merely that it should be performed | |
503 | * and will not block. | |
b97bf3fd | 504 | */ |
247f0f3c YX |
505 | static unsigned int tipc_poll(struct file *file, struct socket *sock, |
506 | poll_table *wait) | |
b97bf3fd | 507 | { |
9b674e82 | 508 | struct sock *sk = sock->sk; |
58ed9442 | 509 | struct tipc_sock *tsk = tipc_sk(sk); |
f662c070 | 510 | u32 mask = 0; |
9b674e82 | 511 | |
f288bef4 | 512 | sock_poll_wait(file, sk_sleep(sk), wait); |
9b674e82 | 513 | |
f662c070 | 514 | switch ((int)sock->state) { |
c4fc298a | 515 | case SS_UNCONNECTED: |
60120526 | 516 | if (!tsk->link_cong) |
c4fc298a EH |
517 | mask |= POLLOUT; |
518 | break; | |
f662c070 AS |
519 | case SS_READY: |
520 | case SS_CONNECTED: | |
60120526 | 521 | if (!tsk->link_cong && !tipc_sk_conn_cong(tsk)) |
f662c070 AS |
522 | mask |= POLLOUT; |
523 | /* fall thru' */ | |
524 | case SS_CONNECTING: | |
525 | case SS_LISTENING: | |
526 | if (!skb_queue_empty(&sk->sk_receive_queue)) | |
527 | mask |= (POLLIN | POLLRDNORM); | |
528 | break; | |
529 | case SS_DISCONNECTING: | |
530 | mask = (POLLIN | POLLRDNORM | POLLHUP); | |
531 | break; | |
532 | } | |
9b674e82 AS |
533 | |
534 | return mask; | |
b97bf3fd PL |
535 | } |
536 | ||
078bec82 JPM |
537 | /* tipc_sk_mcast_rcv - Deliver multicast message to all destination sockets |
538 | */ | |
539 | void tipc_sk_mcast_rcv(struct sk_buff *buf) | |
540 | { | |
541 | struct tipc_msg *msg = buf_msg(buf); | |
542 | struct tipc_port_list dports = {0, NULL, }; | |
543 | struct tipc_port_list *item; | |
544 | struct sk_buff *b; | |
545 | uint i, last, dst = 0; | |
546 | u32 scope = TIPC_CLUSTER_SCOPE; | |
547 | ||
548 | if (in_own_node(msg_orignode(msg))) | |
549 | scope = TIPC_NODE_SCOPE; | |
550 | ||
551 | /* Create destination port list: */ | |
552 | tipc_nametbl_mc_translate(msg_nametype(msg), | |
553 | msg_namelower(msg), | |
554 | msg_nameupper(msg), | |
555 | scope, | |
556 | &dports); | |
557 | last = dports.count; | |
558 | if (!last) { | |
559 | kfree_skb(buf); | |
560 | return; | |
561 | } | |
562 | ||
563 | for (item = &dports; item; item = item->next) { | |
564 | for (i = 0; i < PLSIZE && ++dst <= last; i++) { | |
565 | b = (dst != last) ? skb_clone(buf, GFP_ATOMIC) : buf; | |
566 | if (!b) { | |
567 | pr_warn("Failed do clone mcast rcv buffer\n"); | |
568 | continue; | |
569 | } | |
570 | msg_set_destport(msg, item->ports[i]); | |
571 | tipc_sk_rcv(b); | |
572 | } | |
573 | } | |
574 | tipc_port_list_free(&dports); | |
575 | } | |
576 | ||
ac0074ee JPM |
577 | /** |
578 | * tipc_sk_proto_rcv - receive a connection mng protocol message | |
579 | * @tsk: receiving socket | |
580 | * @dnode: node to send response message to, if any | |
581 | * @buf: buffer containing protocol message | |
582 | * Returns 0 (TIPC_OK) if message was consumed, 1 (TIPC_FWD_MSG) if | |
583 | * (CONN_PROBE_REPLY) message should be forwarded. | |
584 | */ | |
585 | int tipc_sk_proto_rcv(struct tipc_sock *tsk, u32 *dnode, struct sk_buff *buf) | |
586 | { | |
587 | struct tipc_msg *msg = buf_msg(buf); | |
588 | struct tipc_port *port = &tsk->port; | |
60120526 | 589 | int conn_cong; |
ac0074ee JPM |
590 | |
591 | /* Ignore if connection cannot be validated: */ | |
592 | if (!port->connected || !tipc_port_peer_msg(port, msg)) | |
593 | goto exit; | |
594 | ||
595 | port->probing_state = TIPC_CONN_OK; | |
596 | ||
597 | if (msg_type(msg) == CONN_ACK) { | |
60120526 JPM |
598 | conn_cong = tipc_sk_conn_cong(tsk); |
599 | tsk->sent_unacked -= msg_msgcnt(msg); | |
600 | if (conn_cong) | |
601 | tipc_sock_wakeup(tsk); | |
ac0074ee JPM |
602 | } else if (msg_type(msg) == CONN_PROBE) { |
603 | if (!tipc_msg_reverse(buf, dnode, TIPC_OK)) | |
604 | return TIPC_OK; | |
605 | msg_set_type(msg, CONN_PROBE_REPLY); | |
606 | return TIPC_FWD_MSG; | |
607 | } | |
608 | /* Do nothing if msg_type() == CONN_PROBE_REPLY */ | |
609 | exit: | |
610 | kfree_skb(buf); | |
611 | return TIPC_OK; | |
612 | } | |
613 | ||
c4307285 | 614 | /** |
b97bf3fd PL |
615 | * dest_name_check - verify user is permitted to send to specified port name |
616 | * @dest: destination address | |
617 | * @m: descriptor for message to be sent | |
c4307285 | 618 | * |
b97bf3fd PL |
619 | * Prevents restricted configuration commands from being issued by |
620 | * unauthorized users. | |
c4307285 | 621 | * |
b97bf3fd PL |
622 | * Returns 0 if permission is granted, otherwise errno |
623 | */ | |
05790c64 | 624 | static int dest_name_check(struct sockaddr_tipc *dest, struct msghdr *m) |
b97bf3fd PL |
625 | { |
626 | struct tipc_cfg_msg_hdr hdr; | |
627 | ||
e2dafe87 JPM |
628 | if (unlikely(dest->addrtype == TIPC_ADDR_ID)) |
629 | return 0; | |
c4307285 YH |
630 | if (likely(dest->addr.name.name.type >= TIPC_RESERVED_TYPES)) |
631 | return 0; | |
632 | if (likely(dest->addr.name.name.type == TIPC_TOP_SRV)) | |
633 | return 0; | |
c4307285 YH |
634 | if (likely(dest->addr.name.name.type != TIPC_CFG_SRV)) |
635 | return -EACCES; | |
b97bf3fd | 636 | |
3f8dd944 AS |
637 | if (!m->msg_iovlen || (m->msg_iov[0].iov_len < sizeof(hdr))) |
638 | return -EMSGSIZE; | |
c4307285 | 639 | if (copy_from_user(&hdr, m->msg_iov[0].iov_base, sizeof(hdr))) |
b97bf3fd | 640 | return -EFAULT; |
70cb2347 | 641 | if ((ntohs(hdr.tcm_type) & 0xC000) && (!capable(CAP_NET_ADMIN))) |
b97bf3fd | 642 | return -EACCES; |
c4307285 | 643 | |
b97bf3fd PL |
644 | return 0; |
645 | } | |
646 | ||
3f40504f YX |
647 | static int tipc_wait_for_sndmsg(struct socket *sock, long *timeo_p) |
648 | { | |
649 | struct sock *sk = sock->sk; | |
58ed9442 | 650 | struct tipc_sock *tsk = tipc_sk(sk); |
3f40504f YX |
651 | DEFINE_WAIT(wait); |
652 | int done; | |
653 | ||
654 | do { | |
655 | int err = sock_error(sk); | |
656 | if (err) | |
657 | return err; | |
658 | if (sock->state == SS_DISCONNECTING) | |
659 | return -EPIPE; | |
660 | if (!*timeo_p) | |
661 | return -EAGAIN; | |
662 | if (signal_pending(current)) | |
663 | return sock_intr_errno(*timeo_p); | |
664 | ||
665 | prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE); | |
60120526 | 666 | done = sk_wait_event(sk, timeo_p, !tsk->link_cong); |
3f40504f YX |
667 | finish_wait(sk_sleep(sk), &wait); |
668 | } while (!done); | |
669 | return 0; | |
670 | } | |
671 | ||
e2dafe87 JPM |
672 | /** |
673 | * tipc_sendmcast - send multicast message | |
674 | * @sock: socket structure | |
675 | * @seq: destination address | |
676 | * @iov: message data to send | |
677 | * @dsz: total length of message data | |
678 | * @timeo: timeout to wait for wakeup | |
679 | * | |
680 | * Called from function tipc_sendmsg(), which has done all sanity checks | |
681 | * Returns the number of bytes sent on success, or errno | |
682 | */ | |
683 | static int tipc_sendmcast(struct socket *sock, struct tipc_name_seq *seq, | |
684 | struct iovec *iov, size_t dsz, long timeo) | |
685 | { | |
686 | struct sock *sk = sock->sk; | |
687 | struct tipc_sock *tsk = tipc_sk(sk); | |
688 | int rc; | |
689 | ||
690 | do { | |
691 | if (sock->state != SS_READY) { | |
692 | rc = -EOPNOTSUPP; | |
693 | break; | |
694 | } | |
695 | rc = tipc_port_mcast_xmit(&tsk->port, seq, iov, dsz); | |
696 | if (likely(rc >= 0)) { | |
697 | if (sock->state != SS_READY) | |
698 | sock->state = SS_CONNECTING; | |
699 | break; | |
700 | } | |
701 | if (rc != -ELINKCONG) | |
702 | break; | |
703 | rc = tipc_wait_for_sndmsg(sock, &timeo); | |
704 | } while (!rc); | |
705 | ||
706 | return rc; | |
707 | } | |
58ed9442 | 708 | |
b97bf3fd | 709 | /** |
247f0f3c | 710 | * tipc_sendmsg - send message in connectionless manner |
0c3141e9 | 711 | * @iocb: if NULL, indicates that socket lock is already held |
b97bf3fd PL |
712 | * @sock: socket structure |
713 | * @m: message to send | |
e2dafe87 | 714 | * @dsz: amount of user data to be sent |
c4307285 | 715 | * |
b97bf3fd | 716 | * Message must have an destination specified explicitly. |
c4307285 | 717 | * Used for SOCK_RDM and SOCK_DGRAM messages, |
b97bf3fd PL |
718 | * and for 'SYN' messages on SOCK_SEQPACKET and SOCK_STREAM connections. |
719 | * (Note: 'SYN+' is prohibited on SOCK_STREAM.) | |
c4307285 | 720 | * |
b97bf3fd PL |
721 | * Returns the number of bytes sent on success, or errno otherwise |
722 | */ | |
247f0f3c | 723 | static int tipc_sendmsg(struct kiocb *iocb, struct socket *sock, |
e2dafe87 | 724 | struct msghdr *m, size_t dsz) |
b97bf3fd | 725 | { |
e2dafe87 | 726 | DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name); |
0c3141e9 | 727 | struct sock *sk = sock->sk; |
58ed9442 | 728 | struct tipc_sock *tsk = tipc_sk(sk); |
5c311421 | 729 | struct tipc_port *port = &tsk->port; |
e2dafe87 JPM |
730 | struct tipc_msg *mhdr = &port->phdr; |
731 | struct iovec *iov = m->msg_iov; | |
732 | u32 dnode, dport; | |
733 | struct sk_buff *buf; | |
734 | struct tipc_name_seq *seq = &dest->addr.nameseq; | |
735 | u32 mtu; | |
3f40504f | 736 | long timeo; |
e2dafe87 | 737 | int rc = -EINVAL; |
b97bf3fd PL |
738 | |
739 | if (unlikely(!dest)) | |
740 | return -EDESTADDRREQ; | |
e2dafe87 | 741 | |
51f9cc1f AS |
742 | if (unlikely((m->msg_namelen < sizeof(*dest)) || |
743 | (dest->family != AF_TIPC))) | |
b97bf3fd | 744 | return -EINVAL; |
e2dafe87 JPM |
745 | |
746 | if (dsz > TIPC_MAX_USER_MSG_SIZE) | |
c29c3f70 | 747 | return -EMSGSIZE; |
b97bf3fd | 748 | |
0c3141e9 AS |
749 | if (iocb) |
750 | lock_sock(sk); | |
751 | ||
e2dafe87 | 752 | if (unlikely(sock->state != SS_READY)) { |
0c3141e9 | 753 | if (sock->state == SS_LISTENING) { |
e2dafe87 | 754 | rc = -EPIPE; |
0c3141e9 AS |
755 | goto exit; |
756 | } | |
757 | if (sock->state != SS_UNCONNECTED) { | |
e2dafe87 | 758 | rc = -EISCONN; |
0c3141e9 AS |
759 | goto exit; |
760 | } | |
58ed9442 | 761 | if (tsk->port.published) { |
e2dafe87 | 762 | rc = -EOPNOTSUPP; |
0c3141e9 AS |
763 | goto exit; |
764 | } | |
3388007b | 765 | if (dest->addrtype == TIPC_ADDR_NAME) { |
58ed9442 JPM |
766 | tsk->port.conn_type = dest->addr.name.name.type; |
767 | tsk->port.conn_instance = dest->addr.name.name.instance; | |
3388007b | 768 | } |
b97bf3fd | 769 | } |
e2dafe87 JPM |
770 | rc = dest_name_check(dest, m); |
771 | if (rc) | |
772 | goto exit; | |
b97bf3fd | 773 | |
3f40504f | 774 | timeo = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT); |
e2dafe87 JPM |
775 | |
776 | if (dest->addrtype == TIPC_ADDR_MCAST) { | |
777 | rc = tipc_sendmcast(sock, seq, iov, dsz, timeo); | |
778 | goto exit; | |
779 | } else if (dest->addrtype == TIPC_ADDR_NAME) { | |
780 | u32 type = dest->addr.name.name.type; | |
781 | u32 inst = dest->addr.name.name.instance; | |
782 | u32 domain = dest->addr.name.domain; | |
783 | ||
784 | dnode = domain; | |
785 | msg_set_type(mhdr, TIPC_NAMED_MSG); | |
786 | msg_set_hdr_sz(mhdr, NAMED_H_SIZE); | |
787 | msg_set_nametype(mhdr, type); | |
788 | msg_set_nameinst(mhdr, inst); | |
789 | msg_set_lookup_scope(mhdr, tipc_addr_scope(domain)); | |
790 | dport = tipc_nametbl_translate(type, inst, &dnode); | |
791 | msg_set_destnode(mhdr, dnode); | |
792 | msg_set_destport(mhdr, dport); | |
793 | if (unlikely(!dport && !dnode)) { | |
794 | rc = -EHOSTUNREACH; | |
795 | goto exit; | |
c4307285 | 796 | } |
e2dafe87 JPM |
797 | } else if (dest->addrtype == TIPC_ADDR_ID) { |
798 | dnode = dest->addr.id.node; | |
799 | msg_set_type(mhdr, TIPC_DIRECT_MSG); | |
800 | msg_set_lookup_scope(mhdr, 0); | |
801 | msg_set_destnode(mhdr, dnode); | |
802 | msg_set_destport(mhdr, dest->addr.id.ref); | |
803 | msg_set_hdr_sz(mhdr, BASIC_H_SIZE); | |
804 | } | |
805 | ||
806 | new_mtu: | |
807 | mtu = tipc_node_get_mtu(dnode, tsk->port.ref); | |
808 | rc = tipc_msg_build2(mhdr, iov, 0, dsz, mtu, &buf); | |
809 | if (rc < 0) | |
810 | goto exit; | |
811 | ||
812 | do { | |
813 | rc = tipc_link_xmit2(buf, dnode, tsk->port.ref); | |
814 | if (likely(rc >= 0)) { | |
815 | if (sock->state != SS_READY) | |
0c3141e9 | 816 | sock->state = SS_CONNECTING; |
e2dafe87 | 817 | rc = dsz; |
0c3141e9 | 818 | break; |
c4307285 | 819 | } |
e2dafe87 JPM |
820 | if (rc == -EMSGSIZE) |
821 | goto new_mtu; | |
822 | ||
823 | if (rc != -ELINKCONG) | |
0c3141e9 | 824 | break; |
e2dafe87 JPM |
825 | |
826 | rc = tipc_wait_for_sndmsg(sock, &timeo); | |
70452dcb EH |
827 | if (rc) |
828 | kfree_skb_list(buf); | |
e2dafe87 | 829 | } while (!rc); |
0c3141e9 AS |
830 | exit: |
831 | if (iocb) | |
832 | release_sock(sk); | |
e2dafe87 JPM |
833 | |
834 | return rc; | |
b97bf3fd PL |
835 | } |
836 | ||
391a6dd1 YX |
837 | static int tipc_wait_for_sndpkt(struct socket *sock, long *timeo_p) |
838 | { | |
839 | struct sock *sk = sock->sk; | |
58ed9442 | 840 | struct tipc_sock *tsk = tipc_sk(sk); |
391a6dd1 YX |
841 | DEFINE_WAIT(wait); |
842 | int done; | |
843 | ||
844 | do { | |
845 | int err = sock_error(sk); | |
846 | if (err) | |
847 | return err; | |
848 | if (sock->state == SS_DISCONNECTING) | |
849 | return -EPIPE; | |
850 | else if (sock->state != SS_CONNECTED) | |
851 | return -ENOTCONN; | |
852 | if (!*timeo_p) | |
853 | return -EAGAIN; | |
854 | if (signal_pending(current)) | |
855 | return sock_intr_errno(*timeo_p); | |
856 | ||
857 | prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE); | |
858 | done = sk_wait_event(sk, timeo_p, | |
60120526 JPM |
859 | (!tsk->link_cong && |
860 | !tipc_sk_conn_cong(tsk)) || | |
861 | !tsk->port.connected); | |
391a6dd1 YX |
862 | finish_wait(sk_sleep(sk), &wait); |
863 | } while (!done); | |
864 | return 0; | |
865 | } | |
866 | ||
c4307285 | 867 | /** |
4ccfe5e0 JPM |
868 | * tipc_send_stream - send stream-oriented data |
869 | * @iocb: (unused) | |
b97bf3fd | 870 | * @sock: socket structure |
4ccfe5e0 JPM |
871 | * @m: data to send |
872 | * @dsz: total length of data to be transmitted | |
c4307285 | 873 | * |
4ccfe5e0 | 874 | * Used for SOCK_STREAM data. |
c4307285 | 875 | * |
4ccfe5e0 JPM |
876 | * Returns the number of bytes sent on success (or partial success), |
877 | * or errno if no data sent | |
b97bf3fd | 878 | */ |
4ccfe5e0 JPM |
879 | static int tipc_send_stream(struct kiocb *iocb, struct socket *sock, |
880 | struct msghdr *m, size_t dsz) | |
b97bf3fd | 881 | { |
0c3141e9 | 882 | struct sock *sk = sock->sk; |
58ed9442 | 883 | struct tipc_sock *tsk = tipc_sk(sk); |
4ccfe5e0 JPM |
884 | struct tipc_port *port = &tsk->port; |
885 | struct tipc_msg *mhdr = &port->phdr; | |
886 | struct sk_buff *buf; | |
342dfc30 | 887 | DECLARE_SOCKADDR(struct sockaddr_tipc *, dest, m->msg_name); |
4ccfe5e0 JPM |
888 | u32 ref = port->ref; |
889 | int rc = -EINVAL; | |
391a6dd1 | 890 | long timeo; |
4ccfe5e0 JPM |
891 | u32 dnode; |
892 | uint mtu, send, sent = 0; | |
b97bf3fd PL |
893 | |
894 | /* Handle implied connection establishment */ | |
4ccfe5e0 JPM |
895 | if (unlikely(dest)) { |
896 | rc = tipc_sendmsg(iocb, sock, m, dsz); | |
897 | if (dsz && (dsz == rc)) | |
60120526 | 898 | tsk->sent_unacked = 1; |
4ccfe5e0 JPM |
899 | return rc; |
900 | } | |
901 | if (dsz > (uint)INT_MAX) | |
c29c3f70 AS |
902 | return -EMSGSIZE; |
903 | ||
0c3141e9 AS |
904 | if (iocb) |
905 | lock_sock(sk); | |
b97bf3fd | 906 | |
391a6dd1 YX |
907 | if (unlikely(sock->state != SS_CONNECTED)) { |
908 | if (sock->state == SS_DISCONNECTING) | |
4ccfe5e0 | 909 | rc = -EPIPE; |
391a6dd1 | 910 | else |
4ccfe5e0 | 911 | rc = -ENOTCONN; |
391a6dd1 YX |
912 | goto exit; |
913 | } | |
1d835874 | 914 | |
391a6dd1 | 915 | timeo = sock_sndtimeo(sk, m->msg_flags & MSG_DONTWAIT); |
4ccfe5e0 | 916 | dnode = tipc_port_peernode(port); |
4ccfe5e0 JPM |
917 | |
918 | next: | |
919 | mtu = port->max_pkt; | |
920 | send = min_t(uint, dsz - sent, TIPC_MAX_USER_MSG_SIZE); | |
921 | rc = tipc_msg_build2(mhdr, m->msg_iov, sent, send, mtu, &buf); | |
922 | if (unlikely(rc < 0)) | |
923 | goto exit; | |
c4307285 | 924 | do { |
60120526 | 925 | if (likely(!tipc_sk_conn_cong(tsk))) { |
4ccfe5e0 JPM |
926 | rc = tipc_link_xmit2(buf, dnode, ref); |
927 | if (likely(!rc)) { | |
60120526 | 928 | tsk->sent_unacked++; |
4ccfe5e0 JPM |
929 | sent += send; |
930 | if (sent == dsz) | |
931 | break; | |
932 | goto next; | |
933 | } | |
934 | if (rc == -EMSGSIZE) { | |
935 | port->max_pkt = tipc_node_get_mtu(dnode, ref); | |
936 | goto next; | |
937 | } | |
938 | if (rc != -ELINKCONG) | |
939 | break; | |
940 | } | |
941 | rc = tipc_wait_for_sndpkt(sock, &timeo); | |
70452dcb EH |
942 | if (rc) |
943 | kfree_skb_list(buf); | |
4ccfe5e0 | 944 | } while (!rc); |
391a6dd1 | 945 | exit: |
0c3141e9 AS |
946 | if (iocb) |
947 | release_sock(sk); | |
4ccfe5e0 | 948 | return sent ? sent : rc; |
b97bf3fd PL |
949 | } |
950 | ||
c4307285 | 951 | /** |
4ccfe5e0 JPM |
952 | * tipc_send_packet - send a connection-oriented message |
953 | * @iocb: if NULL, indicates that socket lock is already held | |
b97bf3fd | 954 | * @sock: socket structure |
4ccfe5e0 JPM |
955 | * @m: message to send |
956 | * @dsz: length of data to be transmitted | |
c4307285 | 957 | * |
4ccfe5e0 | 958 | * Used for SOCK_SEQPACKET messages. |
c4307285 | 959 | * |
4ccfe5e0 | 960 | * Returns the number of bytes sent on success, or errno otherwise |
b97bf3fd | 961 | */ |
4ccfe5e0 JPM |
962 | static int tipc_send_packet(struct kiocb *iocb, struct socket *sock, |
963 | struct msghdr *m, size_t dsz) | |
b97bf3fd | 964 | { |
4ccfe5e0 JPM |
965 | if (dsz > TIPC_MAX_USER_MSG_SIZE) |
966 | return -EMSGSIZE; | |
b97bf3fd | 967 | |
4ccfe5e0 | 968 | return tipc_send_stream(iocb, sock, m, dsz); |
b97bf3fd PL |
969 | } |
970 | ||
971 | /** | |
972 | * auto_connect - complete connection setup to a remote port | |
58ed9442 | 973 | * @tsk: tipc socket structure |
b97bf3fd | 974 | * @msg: peer's response message |
c4307285 | 975 | * |
b97bf3fd PL |
976 | * Returns 0 on success, errno otherwise |
977 | */ | |
58ed9442 | 978 | static int auto_connect(struct tipc_sock *tsk, struct tipc_msg *msg) |
b97bf3fd | 979 | { |
58ed9442 JPM |
980 | struct tipc_port *port = &tsk->port; |
981 | struct socket *sock = tsk->sk.sk_socket; | |
f9fef18c JPM |
982 | struct tipc_portid peer; |
983 | ||
984 | peer.ref = msg_origport(msg); | |
985 | peer.node = msg_orignode(msg); | |
b97bf3fd | 986 | |
58ed9442 | 987 | __tipc_port_connect(port->ref, port, &peer); |
584d24b3 YX |
988 | |
989 | if (msg_importance(msg) > TIPC_CRITICAL_IMPORTANCE) | |
990 | return -EINVAL; | |
58ed9442 | 991 | msg_set_importance(&port->phdr, (u32)msg_importance(msg)); |
b97bf3fd PL |
992 | sock->state = SS_CONNECTED; |
993 | return 0; | |
994 | } | |
995 | ||
996 | /** | |
997 | * set_orig_addr - capture sender's address for received message | |
998 | * @m: descriptor for message info | |
999 | * @msg: received message header | |
c4307285 | 1000 | * |
b97bf3fd PL |
1001 | * Note: Address is not captured if not requested by receiver. |
1002 | */ | |
05790c64 | 1003 | static void set_orig_addr(struct msghdr *m, struct tipc_msg *msg) |
b97bf3fd | 1004 | { |
342dfc30 | 1005 | DECLARE_SOCKADDR(struct sockaddr_tipc *, addr, m->msg_name); |
b97bf3fd | 1006 | |
c4307285 | 1007 | if (addr) { |
b97bf3fd PL |
1008 | addr->family = AF_TIPC; |
1009 | addr->addrtype = TIPC_ADDR_ID; | |
60085c3d | 1010 | memset(&addr->addr, 0, sizeof(addr->addr)); |
b97bf3fd PL |
1011 | addr->addr.id.ref = msg_origport(msg); |
1012 | addr->addr.id.node = msg_orignode(msg); | |
0e65967e AS |
1013 | addr->addr.name.domain = 0; /* could leave uninitialized */ |
1014 | addr->scope = 0; /* could leave uninitialized */ | |
b97bf3fd PL |
1015 | m->msg_namelen = sizeof(struct sockaddr_tipc); |
1016 | } | |
1017 | } | |
1018 | ||
1019 | /** | |
c4307285 | 1020 | * anc_data_recv - optionally capture ancillary data for received message |
b97bf3fd PL |
1021 | * @m: descriptor for message info |
1022 | * @msg: received message header | |
1023 | * @tport: TIPC port associated with message | |
c4307285 | 1024 | * |
b97bf3fd | 1025 | * Note: Ancillary data is not captured if not requested by receiver. |
c4307285 | 1026 | * |
b97bf3fd PL |
1027 | * Returns 0 if successful, otherwise errno |
1028 | */ | |
05790c64 | 1029 | static int anc_data_recv(struct msghdr *m, struct tipc_msg *msg, |
ae8509c4 | 1030 | struct tipc_port *tport) |
b97bf3fd PL |
1031 | { |
1032 | u32 anc_data[3]; | |
1033 | u32 err; | |
1034 | u32 dest_type; | |
3546c750 | 1035 | int has_name; |
b97bf3fd PL |
1036 | int res; |
1037 | ||
1038 | if (likely(m->msg_controllen == 0)) | |
1039 | return 0; | |
1040 | ||
1041 | /* Optionally capture errored message object(s) */ | |
b97bf3fd PL |
1042 | err = msg ? msg_errcode(msg) : 0; |
1043 | if (unlikely(err)) { | |
1044 | anc_data[0] = err; | |
1045 | anc_data[1] = msg_data_sz(msg); | |
2db9983a AS |
1046 | res = put_cmsg(m, SOL_TIPC, TIPC_ERRINFO, 8, anc_data); |
1047 | if (res) | |
b97bf3fd | 1048 | return res; |
2db9983a AS |
1049 | if (anc_data[1]) { |
1050 | res = put_cmsg(m, SOL_TIPC, TIPC_RETDATA, anc_data[1], | |
1051 | msg_data(msg)); | |
1052 | if (res) | |
1053 | return res; | |
1054 | } | |
b97bf3fd PL |
1055 | } |
1056 | ||
1057 | /* Optionally capture message destination object */ | |
b97bf3fd PL |
1058 | dest_type = msg ? msg_type(msg) : TIPC_DIRECT_MSG; |
1059 | switch (dest_type) { | |
1060 | case TIPC_NAMED_MSG: | |
3546c750 | 1061 | has_name = 1; |
b97bf3fd PL |
1062 | anc_data[0] = msg_nametype(msg); |
1063 | anc_data[1] = msg_namelower(msg); | |
1064 | anc_data[2] = msg_namelower(msg); | |
1065 | break; | |
1066 | case TIPC_MCAST_MSG: | |
3546c750 | 1067 | has_name = 1; |
b97bf3fd PL |
1068 | anc_data[0] = msg_nametype(msg); |
1069 | anc_data[1] = msg_namelower(msg); | |
1070 | anc_data[2] = msg_nameupper(msg); | |
1071 | break; | |
1072 | case TIPC_CONN_MSG: | |
3546c750 | 1073 | has_name = (tport->conn_type != 0); |
b97bf3fd PL |
1074 | anc_data[0] = tport->conn_type; |
1075 | anc_data[1] = tport->conn_instance; | |
1076 | anc_data[2] = tport->conn_instance; | |
1077 | break; | |
1078 | default: | |
3546c750 | 1079 | has_name = 0; |
b97bf3fd | 1080 | } |
2db9983a AS |
1081 | if (has_name) { |
1082 | res = put_cmsg(m, SOL_TIPC, TIPC_DESTNAME, 12, anc_data); | |
1083 | if (res) | |
1084 | return res; | |
1085 | } | |
b97bf3fd PL |
1086 | |
1087 | return 0; | |
1088 | } | |
1089 | ||
85d3fc94 | 1090 | static int tipc_wait_for_rcvmsg(struct socket *sock, long *timeop) |
9bbb4ecc YX |
1091 | { |
1092 | struct sock *sk = sock->sk; | |
1093 | DEFINE_WAIT(wait); | |
85d3fc94 | 1094 | long timeo = *timeop; |
9bbb4ecc YX |
1095 | int err; |
1096 | ||
1097 | for (;;) { | |
1098 | prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE); | |
fe8e4649 | 1099 | if (timeo && skb_queue_empty(&sk->sk_receive_queue)) { |
9bbb4ecc YX |
1100 | if (sock->state == SS_DISCONNECTING) { |
1101 | err = -ENOTCONN; | |
1102 | break; | |
1103 | } | |
1104 | release_sock(sk); | |
1105 | timeo = schedule_timeout(timeo); | |
1106 | lock_sock(sk); | |
1107 | } | |
1108 | err = 0; | |
1109 | if (!skb_queue_empty(&sk->sk_receive_queue)) | |
1110 | break; | |
1111 | err = sock_intr_errno(timeo); | |
1112 | if (signal_pending(current)) | |
1113 | break; | |
1114 | err = -EAGAIN; | |
1115 | if (!timeo) | |
1116 | break; | |
1117 | } | |
1118 | finish_wait(sk_sleep(sk), &wait); | |
85d3fc94 | 1119 | *timeop = timeo; |
9bbb4ecc YX |
1120 | return err; |
1121 | } | |
1122 | ||
c4307285 | 1123 | /** |
247f0f3c | 1124 | * tipc_recvmsg - receive packet-oriented message |
b97bf3fd PL |
1125 | * @iocb: (unused) |
1126 | * @m: descriptor for message info | |
1127 | * @buf_len: total size of user buffer area | |
1128 | * @flags: receive flags | |
c4307285 | 1129 | * |
b97bf3fd PL |
1130 | * Used for SOCK_DGRAM, SOCK_RDM, and SOCK_SEQPACKET messages. |
1131 | * If the complete message doesn't fit in user area, truncate it. | |
1132 | * | |
1133 | * Returns size of returned message data, errno otherwise | |
1134 | */ | |
247f0f3c YX |
1135 | static int tipc_recvmsg(struct kiocb *iocb, struct socket *sock, |
1136 | struct msghdr *m, size_t buf_len, int flags) | |
b97bf3fd | 1137 | { |
0c3141e9 | 1138 | struct sock *sk = sock->sk; |
58ed9442 JPM |
1139 | struct tipc_sock *tsk = tipc_sk(sk); |
1140 | struct tipc_port *port = &tsk->port; | |
b97bf3fd PL |
1141 | struct sk_buff *buf; |
1142 | struct tipc_msg *msg; | |
9bbb4ecc | 1143 | long timeo; |
b97bf3fd PL |
1144 | unsigned int sz; |
1145 | u32 err; | |
1146 | int res; | |
1147 | ||
0c3141e9 | 1148 | /* Catch invalid receive requests */ |
b97bf3fd PL |
1149 | if (unlikely(!buf_len)) |
1150 | return -EINVAL; | |
1151 | ||
0c3141e9 | 1152 | lock_sock(sk); |
b97bf3fd | 1153 | |
0c3141e9 AS |
1154 | if (unlikely(sock->state == SS_UNCONNECTED)) { |
1155 | res = -ENOTCONN; | |
b97bf3fd PL |
1156 | goto exit; |
1157 | } | |
1158 | ||
9bbb4ecc | 1159 | timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT); |
0c3141e9 | 1160 | restart: |
b97bf3fd | 1161 | |
0c3141e9 | 1162 | /* Look for a message in receive queue; wait if necessary */ |
85d3fc94 | 1163 | res = tipc_wait_for_rcvmsg(sock, &timeo); |
9bbb4ecc YX |
1164 | if (res) |
1165 | goto exit; | |
b97bf3fd | 1166 | |
0c3141e9 | 1167 | /* Look at first message in receive queue */ |
0c3141e9 | 1168 | buf = skb_peek(&sk->sk_receive_queue); |
b97bf3fd PL |
1169 | msg = buf_msg(buf); |
1170 | sz = msg_data_sz(msg); | |
1171 | err = msg_errcode(msg); | |
1172 | ||
b97bf3fd | 1173 | /* Discard an empty non-errored message & try again */ |
b97bf3fd | 1174 | if ((!sz) && (!err)) { |
0c3141e9 | 1175 | advance_rx_queue(sk); |
b97bf3fd PL |
1176 | goto restart; |
1177 | } | |
1178 | ||
1179 | /* Capture sender's address (optional) */ | |
b97bf3fd PL |
1180 | set_orig_addr(m, msg); |
1181 | ||
1182 | /* Capture ancillary data (optional) */ | |
58ed9442 | 1183 | res = anc_data_recv(m, msg, port); |
0c3141e9 | 1184 | if (res) |
b97bf3fd PL |
1185 | goto exit; |
1186 | ||
1187 | /* Capture message data (if valid) & compute return value (always) */ | |
b97bf3fd PL |
1188 | if (!err) { |
1189 | if (unlikely(buf_len < sz)) { | |
1190 | sz = buf_len; | |
1191 | m->msg_flags |= MSG_TRUNC; | |
1192 | } | |
0232fd0a AS |
1193 | res = skb_copy_datagram_iovec(buf, msg_hdr_sz(msg), |
1194 | m->msg_iov, sz); | |
1195 | if (res) | |
b97bf3fd | 1196 | goto exit; |
b97bf3fd PL |
1197 | res = sz; |
1198 | } else { | |
1199 | if ((sock->state == SS_READY) || | |
1200 | ((err == TIPC_CONN_SHUTDOWN) || m->msg_control)) | |
1201 | res = 0; | |
1202 | else | |
1203 | res = -ECONNRESET; | |
1204 | } | |
1205 | ||
1206 | /* Consume received message (optional) */ | |
b97bf3fd | 1207 | if (likely(!(flags & MSG_PEEK))) { |
99009806 | 1208 | if ((sock->state != SS_READY) && |
60120526 JPM |
1209 | (++tsk->rcv_unacked >= TIPC_CONNACK_INTV)) { |
1210 | tipc_acknowledge(port->ref, tsk->rcv_unacked); | |
1211 | tsk->rcv_unacked = 0; | |
1212 | } | |
0c3141e9 | 1213 | advance_rx_queue(sk); |
c4307285 | 1214 | } |
b97bf3fd | 1215 | exit: |
0c3141e9 | 1216 | release_sock(sk); |
b97bf3fd PL |
1217 | return res; |
1218 | } | |
1219 | ||
c4307285 | 1220 | /** |
247f0f3c | 1221 | * tipc_recv_stream - receive stream-oriented data |
b97bf3fd PL |
1222 | * @iocb: (unused) |
1223 | * @m: descriptor for message info | |
1224 | * @buf_len: total size of user buffer area | |
1225 | * @flags: receive flags | |
c4307285 YH |
1226 | * |
1227 | * Used for SOCK_STREAM messages only. If not enough data is available | |
b97bf3fd PL |
1228 | * will optionally wait for more; never truncates data. |
1229 | * | |
1230 | * Returns size of returned message data, errno otherwise | |
1231 | */ | |
247f0f3c YX |
1232 | static int tipc_recv_stream(struct kiocb *iocb, struct socket *sock, |
1233 | struct msghdr *m, size_t buf_len, int flags) | |
b97bf3fd | 1234 | { |
0c3141e9 | 1235 | struct sock *sk = sock->sk; |
58ed9442 JPM |
1236 | struct tipc_sock *tsk = tipc_sk(sk); |
1237 | struct tipc_port *port = &tsk->port; | |
b97bf3fd PL |
1238 | struct sk_buff *buf; |
1239 | struct tipc_msg *msg; | |
9bbb4ecc | 1240 | long timeo; |
b97bf3fd | 1241 | unsigned int sz; |
3720d40b | 1242 | int sz_to_copy, target, needed; |
b97bf3fd | 1243 | int sz_copied = 0; |
b97bf3fd | 1244 | u32 err; |
0c3141e9 | 1245 | int res = 0; |
b97bf3fd | 1246 | |
0c3141e9 | 1247 | /* Catch invalid receive attempts */ |
b97bf3fd PL |
1248 | if (unlikely(!buf_len)) |
1249 | return -EINVAL; | |
1250 | ||
0c3141e9 | 1251 | lock_sock(sk); |
b97bf3fd | 1252 | |
9bbb4ecc | 1253 | if (unlikely(sock->state == SS_UNCONNECTED)) { |
0c3141e9 | 1254 | res = -ENOTCONN; |
b97bf3fd PL |
1255 | goto exit; |
1256 | } | |
1257 | ||
3720d40b | 1258 | target = sock_rcvlowat(sk, flags & MSG_WAITALL, buf_len); |
9bbb4ecc | 1259 | timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT); |
b97bf3fd | 1260 | |
617d3c7a | 1261 | restart: |
0c3141e9 | 1262 | /* Look for a message in receive queue; wait if necessary */ |
85d3fc94 | 1263 | res = tipc_wait_for_rcvmsg(sock, &timeo); |
9bbb4ecc YX |
1264 | if (res) |
1265 | goto exit; | |
b97bf3fd | 1266 | |
0c3141e9 | 1267 | /* Look at first message in receive queue */ |
0c3141e9 | 1268 | buf = skb_peek(&sk->sk_receive_queue); |
b97bf3fd PL |
1269 | msg = buf_msg(buf); |
1270 | sz = msg_data_sz(msg); | |
1271 | err = msg_errcode(msg); | |
1272 | ||
1273 | /* Discard an empty non-errored message & try again */ | |
b97bf3fd | 1274 | if ((!sz) && (!err)) { |
0c3141e9 | 1275 | advance_rx_queue(sk); |
b97bf3fd PL |
1276 | goto restart; |
1277 | } | |
1278 | ||
1279 | /* Optionally capture sender's address & ancillary data of first msg */ | |
b97bf3fd PL |
1280 | if (sz_copied == 0) { |
1281 | set_orig_addr(m, msg); | |
58ed9442 | 1282 | res = anc_data_recv(m, msg, port); |
0c3141e9 | 1283 | if (res) |
b97bf3fd PL |
1284 | goto exit; |
1285 | } | |
1286 | ||
1287 | /* Capture message data (if valid) & compute return value (always) */ | |
b97bf3fd | 1288 | if (!err) { |
0232fd0a | 1289 | u32 offset = (u32)(unsigned long)(TIPC_SKB_CB(buf)->handle); |
b97bf3fd | 1290 | |
0232fd0a | 1291 | sz -= offset; |
b97bf3fd PL |
1292 | needed = (buf_len - sz_copied); |
1293 | sz_to_copy = (sz <= needed) ? sz : needed; | |
0232fd0a AS |
1294 | |
1295 | res = skb_copy_datagram_iovec(buf, msg_hdr_sz(msg) + offset, | |
1296 | m->msg_iov, sz_to_copy); | |
1297 | if (res) | |
b97bf3fd | 1298 | goto exit; |
0232fd0a | 1299 | |
b97bf3fd PL |
1300 | sz_copied += sz_to_copy; |
1301 | ||
1302 | if (sz_to_copy < sz) { | |
1303 | if (!(flags & MSG_PEEK)) | |
0232fd0a AS |
1304 | TIPC_SKB_CB(buf)->handle = |
1305 | (void *)(unsigned long)(offset + sz_to_copy); | |
b97bf3fd PL |
1306 | goto exit; |
1307 | } | |
b97bf3fd PL |
1308 | } else { |
1309 | if (sz_copied != 0) | |
1310 | goto exit; /* can't add error msg to valid data */ | |
1311 | ||
1312 | if ((err == TIPC_CONN_SHUTDOWN) || m->msg_control) | |
1313 | res = 0; | |
1314 | else | |
1315 | res = -ECONNRESET; | |
1316 | } | |
1317 | ||
1318 | /* Consume received message (optional) */ | |
b97bf3fd | 1319 | if (likely(!(flags & MSG_PEEK))) { |
60120526 JPM |
1320 | if (unlikely(++tsk->rcv_unacked >= TIPC_CONNACK_INTV)) { |
1321 | tipc_acknowledge(port->ref, tsk->rcv_unacked); | |
1322 | tsk->rcv_unacked = 0; | |
1323 | } | |
0c3141e9 | 1324 | advance_rx_queue(sk); |
c4307285 | 1325 | } |
b97bf3fd PL |
1326 | |
1327 | /* Loop around if more data is required */ | |
f64f9e71 JP |
1328 | if ((sz_copied < buf_len) && /* didn't get all requested data */ |
1329 | (!skb_queue_empty(&sk->sk_receive_queue) || | |
3720d40b | 1330 | (sz_copied < target)) && /* and more is ready or required */ |
f64f9e71 JP |
1331 | (!(flags & MSG_PEEK)) && /* and aren't just peeking at data */ |
1332 | (!err)) /* and haven't reached a FIN */ | |
b97bf3fd PL |
1333 | goto restart; |
1334 | ||
1335 | exit: | |
0c3141e9 | 1336 | release_sock(sk); |
a3b0a5a9 | 1337 | return sz_copied ? sz_copied : res; |
b97bf3fd PL |
1338 | } |
1339 | ||
f288bef4 YX |
1340 | /** |
1341 | * tipc_write_space - wake up thread if port congestion is released | |
1342 | * @sk: socket | |
1343 | */ | |
1344 | static void tipc_write_space(struct sock *sk) | |
1345 | { | |
1346 | struct socket_wq *wq; | |
1347 | ||
1348 | rcu_read_lock(); | |
1349 | wq = rcu_dereference(sk->sk_wq); | |
1350 | if (wq_has_sleeper(wq)) | |
1351 | wake_up_interruptible_sync_poll(&wq->wait, POLLOUT | | |
1352 | POLLWRNORM | POLLWRBAND); | |
1353 | rcu_read_unlock(); | |
1354 | } | |
1355 | ||
1356 | /** | |
1357 | * tipc_data_ready - wake up threads to indicate messages have been received | |
1358 | * @sk: socket | |
1359 | * @len: the length of messages | |
1360 | */ | |
676d2369 | 1361 | static void tipc_data_ready(struct sock *sk) |
f288bef4 YX |
1362 | { |
1363 | struct socket_wq *wq; | |
1364 | ||
1365 | rcu_read_lock(); | |
1366 | wq = rcu_dereference(sk->sk_wq); | |
1367 | if (wq_has_sleeper(wq)) | |
1368 | wake_up_interruptible_sync_poll(&wq->wait, POLLIN | | |
1369 | POLLRDNORM | POLLRDBAND); | |
1370 | rcu_read_unlock(); | |
1371 | } | |
1372 | ||
7e6c131e YX |
1373 | /** |
1374 | * filter_connect - Handle all incoming messages for a connection-based socket | |
58ed9442 | 1375 | * @tsk: TIPC socket |
7e6c131e YX |
1376 | * @msg: message |
1377 | * | |
e4de5fab | 1378 | * Returns 0 (TIPC_OK) if everyting ok, -TIPC_ERR_NO_PORT otherwise |
7e6c131e | 1379 | */ |
e4de5fab | 1380 | static int filter_connect(struct tipc_sock *tsk, struct sk_buff **buf) |
7e6c131e | 1381 | { |
58ed9442 JPM |
1382 | struct sock *sk = &tsk->sk; |
1383 | struct tipc_port *port = &tsk->port; | |
8826cde6 | 1384 | struct socket *sock = sk->sk_socket; |
7e6c131e | 1385 | struct tipc_msg *msg = buf_msg(*buf); |
8826cde6 | 1386 | |
e4de5fab | 1387 | int retval = -TIPC_ERR_NO_PORT; |
584d24b3 | 1388 | int res; |
7e6c131e YX |
1389 | |
1390 | if (msg_mcast(msg)) | |
1391 | return retval; | |
1392 | ||
1393 | switch ((int)sock->state) { | |
1394 | case SS_CONNECTED: | |
1395 | /* Accept only connection-based messages sent by peer */ | |
8826cde6 | 1396 | if (msg_connected(msg) && tipc_port_peer_msg(port, msg)) { |
7e6c131e YX |
1397 | if (unlikely(msg_errcode(msg))) { |
1398 | sock->state = SS_DISCONNECTING; | |
8826cde6 | 1399 | __tipc_port_disconnect(port); |
7e6c131e YX |
1400 | } |
1401 | retval = TIPC_OK; | |
1402 | } | |
1403 | break; | |
1404 | case SS_CONNECTING: | |
1405 | /* Accept only ACK or NACK message */ | |
584d24b3 YX |
1406 | if (unlikely(msg_errcode(msg))) { |
1407 | sock->state = SS_DISCONNECTING; | |
2c8d8518 | 1408 | sk->sk_err = ECONNREFUSED; |
584d24b3 YX |
1409 | retval = TIPC_OK; |
1410 | break; | |
1411 | } | |
1412 | ||
1413 | if (unlikely(!msg_connected(msg))) | |
1414 | break; | |
1415 | ||
58ed9442 | 1416 | res = auto_connect(tsk, msg); |
584d24b3 YX |
1417 | if (res) { |
1418 | sock->state = SS_DISCONNECTING; | |
2c8d8518 | 1419 | sk->sk_err = -res; |
7e6c131e | 1420 | retval = TIPC_OK; |
584d24b3 YX |
1421 | break; |
1422 | } | |
1423 | ||
1424 | /* If an incoming message is an 'ACK-', it should be | |
1425 | * discarded here because it doesn't contain useful | |
1426 | * data. In addition, we should try to wake up | |
1427 | * connect() routine if sleeping. | |
1428 | */ | |
1429 | if (msg_data_sz(msg) == 0) { | |
1430 | kfree_skb(*buf); | |
1431 | *buf = NULL; | |
1432 | if (waitqueue_active(sk_sleep(sk))) | |
1433 | wake_up_interruptible(sk_sleep(sk)); | |
1434 | } | |
1435 | retval = TIPC_OK; | |
7e6c131e YX |
1436 | break; |
1437 | case SS_LISTENING: | |
1438 | case SS_UNCONNECTED: | |
1439 | /* Accept only SYN message */ | |
1440 | if (!msg_connected(msg) && !(msg_errcode(msg))) | |
1441 | retval = TIPC_OK; | |
1442 | break; | |
1443 | case SS_DISCONNECTING: | |
1444 | break; | |
1445 | default: | |
1446 | pr_err("Unknown socket state %u\n", sock->state); | |
1447 | } | |
1448 | return retval; | |
1449 | } | |
1450 | ||
aba79f33 YX |
1451 | /** |
1452 | * rcvbuf_limit - get proper overload limit of socket receive queue | |
1453 | * @sk: socket | |
1454 | * @buf: message | |
1455 | * | |
1456 | * For all connection oriented messages, irrespective of importance, | |
1457 | * the default overload value (i.e. 67MB) is set as limit. | |
1458 | * | |
1459 | * For all connectionless messages, by default new queue limits are | |
1460 | * as belows: | |
1461 | * | |
cc79dd1b YX |
1462 | * TIPC_LOW_IMPORTANCE (4 MB) |
1463 | * TIPC_MEDIUM_IMPORTANCE (8 MB) | |
1464 | * TIPC_HIGH_IMPORTANCE (16 MB) | |
1465 | * TIPC_CRITICAL_IMPORTANCE (32 MB) | |
aba79f33 YX |
1466 | * |
1467 | * Returns overload limit according to corresponding message importance | |
1468 | */ | |
1469 | static unsigned int rcvbuf_limit(struct sock *sk, struct sk_buff *buf) | |
1470 | { | |
1471 | struct tipc_msg *msg = buf_msg(buf); | |
aba79f33 YX |
1472 | |
1473 | if (msg_connected(msg)) | |
0cee6bbe | 1474 | return sysctl_tipc_rmem[2]; |
1475 | ||
1476 | return sk->sk_rcvbuf >> TIPC_CRITICAL_IMPORTANCE << | |
1477 | msg_importance(msg); | |
aba79f33 YX |
1478 | } |
1479 | ||
c4307285 | 1480 | /** |
0c3141e9 AS |
1481 | * filter_rcv - validate incoming message |
1482 | * @sk: socket | |
b97bf3fd | 1483 | * @buf: message |
c4307285 | 1484 | * |
0c3141e9 AS |
1485 | * Enqueues message on receive queue if acceptable; optionally handles |
1486 | * disconnect indication for a connected socket. | |
1487 | * | |
1488 | * Called with socket lock already taken; port lock may also be taken. | |
c4307285 | 1489 | * |
e4de5fab | 1490 | * Returns 0 (TIPC_OK) if message was consumed, -TIPC error code if message |
ac0074ee | 1491 | * to be rejected, 1 (TIPC_FWD_MSG) if (CONN_MANAGER) message to be forwarded |
b97bf3fd | 1492 | */ |
e4de5fab | 1493 | static int filter_rcv(struct sock *sk, struct sk_buff *buf) |
b97bf3fd | 1494 | { |
0c3141e9 | 1495 | struct socket *sock = sk->sk_socket; |
58ed9442 | 1496 | struct tipc_sock *tsk = tipc_sk(sk); |
b97bf3fd | 1497 | struct tipc_msg *msg = buf_msg(buf); |
aba79f33 | 1498 | unsigned int limit = rcvbuf_limit(sk, buf); |
ac0074ee | 1499 | u32 onode; |
e4de5fab | 1500 | int rc = TIPC_OK; |
b97bf3fd | 1501 | |
ac0074ee JPM |
1502 | if (unlikely(msg_user(msg) == CONN_MANAGER)) |
1503 | return tipc_sk_proto_rcv(tsk, &onode, buf); | |
ec8a2e56 | 1504 | |
b97bf3fd | 1505 | /* Reject message if it is wrong sort of message for socket */ |
aad58547 | 1506 | if (msg_type(msg) > TIPC_DIRECT_MSG) |
e4de5fab | 1507 | return -TIPC_ERR_NO_PORT; |
0c3141e9 | 1508 | |
b97bf3fd | 1509 | if (sock->state == SS_READY) { |
b29f1428 | 1510 | if (msg_connected(msg)) |
e4de5fab | 1511 | return -TIPC_ERR_NO_PORT; |
b97bf3fd | 1512 | } else { |
e4de5fab JPM |
1513 | rc = filter_connect(tsk, &buf); |
1514 | if (rc != TIPC_OK || buf == NULL) | |
1515 | return rc; | |
b97bf3fd PL |
1516 | } |
1517 | ||
1518 | /* Reject message if there isn't room to queue it */ | |
aba79f33 | 1519 | if (sk_rmem_alloc_get(sk) + buf->truesize >= limit) |
e4de5fab | 1520 | return -TIPC_ERR_OVERLOAD; |
b97bf3fd | 1521 | |
aba79f33 | 1522 | /* Enqueue message */ |
40682432 | 1523 | TIPC_SKB_CB(buf)->handle = NULL; |
0c3141e9 | 1524 | __skb_queue_tail(&sk->sk_receive_queue, buf); |
aba79f33 | 1525 | skb_set_owner_r(buf, sk); |
0c3141e9 | 1526 | |
676d2369 | 1527 | sk->sk_data_ready(sk); |
0c3141e9 AS |
1528 | return TIPC_OK; |
1529 | } | |
b97bf3fd | 1530 | |
0c3141e9 | 1531 | /** |
4f4482dc | 1532 | * tipc_backlog_rcv - handle incoming message from backlog queue |
0c3141e9 AS |
1533 | * @sk: socket |
1534 | * @buf: message | |
1535 | * | |
1536 | * Caller must hold socket lock, but not port lock. | |
1537 | * | |
1538 | * Returns 0 | |
1539 | */ | |
4f4482dc | 1540 | static int tipc_backlog_rcv(struct sock *sk, struct sk_buff *buf) |
0c3141e9 | 1541 | { |
e4de5fab | 1542 | int rc; |
8db1bae3 | 1543 | u32 onode; |
4f4482dc | 1544 | struct tipc_sock *tsk = tipc_sk(sk); |
02c00c2a | 1545 | uint truesize = buf->truesize; |
0c3141e9 | 1546 | |
e4de5fab | 1547 | rc = filter_rcv(sk, buf); |
4f4482dc | 1548 | |
ac0074ee JPM |
1549 | if (likely(!rc)) { |
1550 | if (atomic_read(&tsk->dupl_rcvcnt) < TIPC_CONN_OVERLOAD_LIMIT) | |
1551 | atomic_add(truesize, &tsk->dupl_rcvcnt); | |
1552 | return 0; | |
1553 | } | |
1554 | ||
1555 | if ((rc < 0) && !tipc_msg_reverse(buf, &onode, -rc)) | |
1556 | return 0; | |
1557 | ||
1558 | tipc_link_xmit2(buf, onode, 0); | |
4f4482dc | 1559 | |
0c3141e9 AS |
1560 | return 0; |
1561 | } | |
1562 | ||
1563 | /** | |
24be34b5 | 1564 | * tipc_sk_rcv - handle incoming message |
9816f061 JPM |
1565 | * @buf: buffer containing arriving message |
1566 | * Consumes buffer | |
1567 | * Returns 0 if success, or errno: -EHOSTUNREACH | |
0c3141e9 | 1568 | */ |
9816f061 | 1569 | int tipc_sk_rcv(struct sk_buff *buf) |
0c3141e9 | 1570 | { |
9816f061 JPM |
1571 | struct tipc_sock *tsk; |
1572 | struct tipc_port *port; | |
1573 | struct sock *sk; | |
1574 | u32 dport = msg_destport(buf_msg(buf)); | |
e4de5fab | 1575 | int rc = TIPC_OK; |
4f4482dc | 1576 | uint limit; |
8db1bae3 | 1577 | u32 dnode; |
9816f061 | 1578 | |
5a379074 | 1579 | /* Validate destination and message */ |
9816f061 JPM |
1580 | port = tipc_port_lock(dport); |
1581 | if (unlikely(!port)) { | |
5a379074 | 1582 | rc = tipc_msg_eval(buf, &dnode); |
9816f061 JPM |
1583 | goto exit; |
1584 | } | |
1585 | ||
1586 | tsk = tipc_port_to_sock(port); | |
1587 | sk = &tsk->sk; | |
1588 | ||
1589 | /* Queue message */ | |
0c3141e9 | 1590 | bh_lock_sock(sk); |
9816f061 | 1591 | |
0c3141e9 | 1592 | if (!sock_owned_by_user(sk)) { |
e4de5fab | 1593 | rc = filter_rcv(sk, buf); |
0c3141e9 | 1594 | } else { |
4f4482dc JPM |
1595 | if (sk->sk_backlog.len == 0) |
1596 | atomic_set(&tsk->dupl_rcvcnt, 0); | |
1597 | limit = rcvbuf_limit(sk, buf) + atomic_read(&tsk->dupl_rcvcnt); | |
1598 | if (sk_add_backlog(sk, buf, limit)) | |
e4de5fab | 1599 | rc = -TIPC_ERR_OVERLOAD; |
0c3141e9 AS |
1600 | } |
1601 | bh_unlock_sock(sk); | |
9816f061 | 1602 | tipc_port_unlock(port); |
0c3141e9 | 1603 | |
e4de5fab | 1604 | if (likely(!rc)) |
9816f061 JPM |
1605 | return 0; |
1606 | exit: | |
5a379074 | 1607 | if ((rc < 0) && !tipc_msg_reverse(buf, &dnode, -rc)) |
8db1bae3 | 1608 | return -EHOSTUNREACH; |
5a379074 | 1609 | |
8db1bae3 | 1610 | tipc_link_xmit2(buf, dnode, 0); |
5a379074 | 1611 | return (rc < 0) ? -EHOSTUNREACH : 0; |
b97bf3fd PL |
1612 | } |
1613 | ||
78eb3a53 YX |
1614 | static int tipc_wait_for_connect(struct socket *sock, long *timeo_p) |
1615 | { | |
1616 | struct sock *sk = sock->sk; | |
1617 | DEFINE_WAIT(wait); | |
1618 | int done; | |
1619 | ||
1620 | do { | |
1621 | int err = sock_error(sk); | |
1622 | if (err) | |
1623 | return err; | |
1624 | if (!*timeo_p) | |
1625 | return -ETIMEDOUT; | |
1626 | if (signal_pending(current)) | |
1627 | return sock_intr_errno(*timeo_p); | |
1628 | ||
1629 | prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE); | |
1630 | done = sk_wait_event(sk, timeo_p, sock->state != SS_CONNECTING); | |
1631 | finish_wait(sk_sleep(sk), &wait); | |
1632 | } while (!done); | |
1633 | return 0; | |
1634 | } | |
1635 | ||
b97bf3fd | 1636 | /** |
247f0f3c | 1637 | * tipc_connect - establish a connection to another TIPC port |
b97bf3fd PL |
1638 | * @sock: socket structure |
1639 | * @dest: socket address for destination port | |
1640 | * @destlen: size of socket address data structure | |
0c3141e9 | 1641 | * @flags: file-related flags associated with socket |
b97bf3fd PL |
1642 | * |
1643 | * Returns 0 on success, errno otherwise | |
1644 | */ | |
247f0f3c YX |
1645 | static int tipc_connect(struct socket *sock, struct sockaddr *dest, |
1646 | int destlen, int flags) | |
b97bf3fd | 1647 | { |
0c3141e9 | 1648 | struct sock *sk = sock->sk; |
b89741a0 AS |
1649 | struct sockaddr_tipc *dst = (struct sockaddr_tipc *)dest; |
1650 | struct msghdr m = {NULL,}; | |
78eb3a53 YX |
1651 | long timeout = (flags & O_NONBLOCK) ? 0 : tipc_sk(sk)->conn_timeout; |
1652 | socket_state previous; | |
b89741a0 AS |
1653 | int res; |
1654 | ||
0c3141e9 AS |
1655 | lock_sock(sk); |
1656 | ||
b89741a0 | 1657 | /* For now, TIPC does not allow use of connect() with DGRAM/RDM types */ |
0c3141e9 AS |
1658 | if (sock->state == SS_READY) { |
1659 | res = -EOPNOTSUPP; | |
1660 | goto exit; | |
1661 | } | |
b89741a0 | 1662 | |
b89741a0 AS |
1663 | /* |
1664 | * Reject connection attempt using multicast address | |
1665 | * | |
1666 | * Note: send_msg() validates the rest of the address fields, | |
1667 | * so there's no need to do it here | |
1668 | */ | |
0c3141e9 AS |
1669 | if (dst->addrtype == TIPC_ADDR_MCAST) { |
1670 | res = -EINVAL; | |
1671 | goto exit; | |
1672 | } | |
1673 | ||
78eb3a53 | 1674 | previous = sock->state; |
584d24b3 YX |
1675 | switch (sock->state) { |
1676 | case SS_UNCONNECTED: | |
1677 | /* Send a 'SYN-' to destination */ | |
1678 | m.msg_name = dest; | |
1679 | m.msg_namelen = destlen; | |
1680 | ||
1681 | /* If connect is in non-blocking case, set MSG_DONTWAIT to | |
1682 | * indicate send_msg() is never blocked. | |
1683 | */ | |
1684 | if (!timeout) | |
1685 | m.msg_flags = MSG_DONTWAIT; | |
1686 | ||
247f0f3c | 1687 | res = tipc_sendmsg(NULL, sock, &m, 0); |
584d24b3 YX |
1688 | if ((res < 0) && (res != -EWOULDBLOCK)) |
1689 | goto exit; | |
1690 | ||
1691 | /* Just entered SS_CONNECTING state; the only | |
1692 | * difference is that return value in non-blocking | |
1693 | * case is EINPROGRESS, rather than EALREADY. | |
1694 | */ | |
1695 | res = -EINPROGRESS; | |
584d24b3 | 1696 | case SS_CONNECTING: |
78eb3a53 YX |
1697 | if (previous == SS_CONNECTING) |
1698 | res = -EALREADY; | |
1699 | if (!timeout) | |
1700 | goto exit; | |
1701 | timeout = msecs_to_jiffies(timeout); | |
1702 | /* Wait until an 'ACK' or 'RST' arrives, or a timeout occurs */ | |
1703 | res = tipc_wait_for_connect(sock, &timeout); | |
584d24b3 YX |
1704 | break; |
1705 | case SS_CONNECTED: | |
1706 | res = -EISCONN; | |
1707 | break; | |
1708 | default: | |
1709 | res = -EINVAL; | |
78eb3a53 | 1710 | break; |
b89741a0 | 1711 | } |
0c3141e9 AS |
1712 | exit: |
1713 | release_sock(sk); | |
b89741a0 | 1714 | return res; |
b97bf3fd PL |
1715 | } |
1716 | ||
c4307285 | 1717 | /** |
247f0f3c | 1718 | * tipc_listen - allow socket to listen for incoming connections |
b97bf3fd PL |
1719 | * @sock: socket structure |
1720 | * @len: (unused) | |
c4307285 | 1721 | * |
b97bf3fd PL |
1722 | * Returns 0 on success, errno otherwise |
1723 | */ | |
247f0f3c | 1724 | static int tipc_listen(struct socket *sock, int len) |
b97bf3fd | 1725 | { |
0c3141e9 AS |
1726 | struct sock *sk = sock->sk; |
1727 | int res; | |
1728 | ||
1729 | lock_sock(sk); | |
b97bf3fd | 1730 | |
245f3d34 | 1731 | if (sock->state != SS_UNCONNECTED) |
0c3141e9 AS |
1732 | res = -EINVAL; |
1733 | else { | |
1734 | sock->state = SS_LISTENING; | |
1735 | res = 0; | |
1736 | } | |
1737 | ||
1738 | release_sock(sk); | |
1739 | return res; | |
b97bf3fd PL |
1740 | } |
1741 | ||
6398e23c YX |
1742 | static int tipc_wait_for_accept(struct socket *sock, long timeo) |
1743 | { | |
1744 | struct sock *sk = sock->sk; | |
1745 | DEFINE_WAIT(wait); | |
1746 | int err; | |
1747 | ||
1748 | /* True wake-one mechanism for incoming connections: only | |
1749 | * one process gets woken up, not the 'whole herd'. | |
1750 | * Since we do not 'race & poll' for established sockets | |
1751 | * anymore, the common case will execute the loop only once. | |
1752 | */ | |
1753 | for (;;) { | |
1754 | prepare_to_wait_exclusive(sk_sleep(sk), &wait, | |
1755 | TASK_INTERRUPTIBLE); | |
fe8e4649 | 1756 | if (timeo && skb_queue_empty(&sk->sk_receive_queue)) { |
6398e23c YX |
1757 | release_sock(sk); |
1758 | timeo = schedule_timeout(timeo); | |
1759 | lock_sock(sk); | |
1760 | } | |
1761 | err = 0; | |
1762 | if (!skb_queue_empty(&sk->sk_receive_queue)) | |
1763 | break; | |
1764 | err = -EINVAL; | |
1765 | if (sock->state != SS_LISTENING) | |
1766 | break; | |
1767 | err = sock_intr_errno(timeo); | |
1768 | if (signal_pending(current)) | |
1769 | break; | |
1770 | err = -EAGAIN; | |
1771 | if (!timeo) | |
1772 | break; | |
1773 | } | |
1774 | finish_wait(sk_sleep(sk), &wait); | |
1775 | return err; | |
1776 | } | |
1777 | ||
c4307285 | 1778 | /** |
247f0f3c | 1779 | * tipc_accept - wait for connection request |
b97bf3fd PL |
1780 | * @sock: listening socket |
1781 | * @newsock: new socket that is to be connected | |
1782 | * @flags: file-related flags associated with socket | |
c4307285 | 1783 | * |
b97bf3fd PL |
1784 | * Returns 0 on success, errno otherwise |
1785 | */ | |
247f0f3c | 1786 | static int tipc_accept(struct socket *sock, struct socket *new_sock, int flags) |
b97bf3fd | 1787 | { |
0fef8f20 | 1788 | struct sock *new_sk, *sk = sock->sk; |
b97bf3fd | 1789 | struct sk_buff *buf; |
8826cde6 | 1790 | struct tipc_port *new_port; |
0fef8f20 | 1791 | struct tipc_msg *msg; |
f9fef18c | 1792 | struct tipc_portid peer; |
0fef8f20 | 1793 | u32 new_ref; |
6398e23c | 1794 | long timeo; |
0c3141e9 | 1795 | int res; |
b97bf3fd | 1796 | |
0c3141e9 | 1797 | lock_sock(sk); |
b97bf3fd | 1798 | |
0c3141e9 AS |
1799 | if (sock->state != SS_LISTENING) { |
1800 | res = -EINVAL; | |
b97bf3fd PL |
1801 | goto exit; |
1802 | } | |
6398e23c YX |
1803 | timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK); |
1804 | res = tipc_wait_for_accept(sock, timeo); | |
1805 | if (res) | |
1806 | goto exit; | |
0c3141e9 AS |
1807 | |
1808 | buf = skb_peek(&sk->sk_receive_queue); | |
1809 | ||
c5fa7b3c | 1810 | res = tipc_sk_create(sock_net(sock->sk), new_sock, 0, 1); |
0fef8f20 PG |
1811 | if (res) |
1812 | goto exit; | |
b97bf3fd | 1813 | |
0fef8f20 | 1814 | new_sk = new_sock->sk; |
58ed9442 | 1815 | new_port = &tipc_sk(new_sk)->port; |
8826cde6 | 1816 | new_ref = new_port->ref; |
0fef8f20 | 1817 | msg = buf_msg(buf); |
b97bf3fd | 1818 | |
0fef8f20 PG |
1819 | /* we lock on new_sk; but lockdep sees the lock on sk */ |
1820 | lock_sock_nested(new_sk, SINGLE_DEPTH_NESTING); | |
1821 | ||
1822 | /* | |
1823 | * Reject any stray messages received by new socket | |
1824 | * before the socket lock was taken (very, very unlikely) | |
1825 | */ | |
1826 | reject_rx_queue(new_sk); | |
1827 | ||
1828 | /* Connect new socket to it's peer */ | |
f9fef18c JPM |
1829 | peer.ref = msg_origport(msg); |
1830 | peer.node = msg_orignode(msg); | |
1831 | tipc_port_connect(new_ref, &peer); | |
0fef8f20 PG |
1832 | new_sock->state = SS_CONNECTED; |
1833 | ||
3b4f302d | 1834 | tipc_port_set_importance(new_port, msg_importance(msg)); |
0fef8f20 | 1835 | if (msg_named(msg)) { |
8826cde6 JPM |
1836 | new_port->conn_type = msg_nametype(msg); |
1837 | new_port->conn_instance = msg_nameinst(msg); | |
b97bf3fd | 1838 | } |
0fef8f20 PG |
1839 | |
1840 | /* | |
1841 | * Respond to 'SYN-' by discarding it & returning 'ACK'-. | |
1842 | * Respond to 'SYN+' by queuing it on new socket. | |
1843 | */ | |
1844 | if (!msg_data_sz(msg)) { | |
1845 | struct msghdr m = {NULL,}; | |
1846 | ||
1847 | advance_rx_queue(sk); | |
247f0f3c | 1848 | tipc_send_packet(NULL, new_sock, &m, 0); |
0fef8f20 PG |
1849 | } else { |
1850 | __skb_dequeue(&sk->sk_receive_queue); | |
1851 | __skb_queue_head(&new_sk->sk_receive_queue, buf); | |
aba79f33 | 1852 | skb_set_owner_r(buf, new_sk); |
0fef8f20 PG |
1853 | } |
1854 | release_sock(new_sk); | |
b97bf3fd | 1855 | exit: |
0c3141e9 | 1856 | release_sock(sk); |
b97bf3fd PL |
1857 | return res; |
1858 | } | |
1859 | ||
1860 | /** | |
247f0f3c | 1861 | * tipc_shutdown - shutdown socket connection |
b97bf3fd | 1862 | * @sock: socket structure |
e247a8f5 | 1863 | * @how: direction to close (must be SHUT_RDWR) |
b97bf3fd PL |
1864 | * |
1865 | * Terminates connection (if necessary), then purges socket's receive queue. | |
c4307285 | 1866 | * |
b97bf3fd PL |
1867 | * Returns 0 on success, errno otherwise |
1868 | */ | |
247f0f3c | 1869 | static int tipc_shutdown(struct socket *sock, int how) |
b97bf3fd | 1870 | { |
0c3141e9 | 1871 | struct sock *sk = sock->sk; |
58ed9442 JPM |
1872 | struct tipc_sock *tsk = tipc_sk(sk); |
1873 | struct tipc_port *port = &tsk->port; | |
b97bf3fd | 1874 | struct sk_buff *buf; |
8db1bae3 | 1875 | u32 peer; |
b97bf3fd PL |
1876 | int res; |
1877 | ||
e247a8f5 AS |
1878 | if (how != SHUT_RDWR) |
1879 | return -EINVAL; | |
b97bf3fd | 1880 | |
0c3141e9 | 1881 | lock_sock(sk); |
b97bf3fd PL |
1882 | |
1883 | switch (sock->state) { | |
0c3141e9 | 1884 | case SS_CONNECTING: |
b97bf3fd PL |
1885 | case SS_CONNECTED: |
1886 | ||
b97bf3fd | 1887 | restart: |
617d3c7a | 1888 | /* Disconnect and send a 'FIN+' or 'FIN-' message to peer */ |
0c3141e9 AS |
1889 | buf = __skb_dequeue(&sk->sk_receive_queue); |
1890 | if (buf) { | |
40682432 | 1891 | if (TIPC_SKB_CB(buf)->handle != NULL) { |
5f6d9123 | 1892 | kfree_skb(buf); |
b97bf3fd PL |
1893 | goto restart; |
1894 | } | |
58ed9442 | 1895 | tipc_port_disconnect(port->ref); |
8db1bae3 JPM |
1896 | if (tipc_msg_reverse(buf, &peer, TIPC_CONN_SHUTDOWN)) |
1897 | tipc_link_xmit2(buf, peer, 0); | |
0c3141e9 | 1898 | } else { |
58ed9442 | 1899 | tipc_port_shutdown(port->ref); |
b97bf3fd | 1900 | } |
0c3141e9 AS |
1901 | |
1902 | sock->state = SS_DISCONNECTING; | |
b97bf3fd PL |
1903 | |
1904 | /* fall through */ | |
1905 | ||
1906 | case SS_DISCONNECTING: | |
1907 | ||
75031151 | 1908 | /* Discard any unreceived messages */ |
57467e56 | 1909 | __skb_queue_purge(&sk->sk_receive_queue); |
75031151 YX |
1910 | |
1911 | /* Wake up anyone sleeping in poll */ | |
1912 | sk->sk_state_change(sk); | |
b97bf3fd PL |
1913 | res = 0; |
1914 | break; | |
1915 | ||
1916 | default: | |
1917 | res = -ENOTCONN; | |
1918 | } | |
1919 | ||
0c3141e9 | 1920 | release_sock(sk); |
b97bf3fd PL |
1921 | return res; |
1922 | } | |
1923 | ||
1924 | /** | |
247f0f3c | 1925 | * tipc_setsockopt - set socket option |
b97bf3fd PL |
1926 | * @sock: socket structure |
1927 | * @lvl: option level | |
1928 | * @opt: option identifier | |
1929 | * @ov: pointer to new option value | |
1930 | * @ol: length of option value | |
c4307285 YH |
1931 | * |
1932 | * For stream sockets only, accepts and ignores all IPPROTO_TCP options | |
b97bf3fd | 1933 | * (to ease compatibility). |
c4307285 | 1934 | * |
b97bf3fd PL |
1935 | * Returns 0 on success, errno otherwise |
1936 | */ | |
247f0f3c YX |
1937 | static int tipc_setsockopt(struct socket *sock, int lvl, int opt, |
1938 | char __user *ov, unsigned int ol) | |
b97bf3fd | 1939 | { |
0c3141e9 | 1940 | struct sock *sk = sock->sk; |
58ed9442 JPM |
1941 | struct tipc_sock *tsk = tipc_sk(sk); |
1942 | struct tipc_port *port = &tsk->port; | |
b97bf3fd PL |
1943 | u32 value; |
1944 | int res; | |
1945 | ||
c4307285 YH |
1946 | if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM)) |
1947 | return 0; | |
b97bf3fd PL |
1948 | if (lvl != SOL_TIPC) |
1949 | return -ENOPROTOOPT; | |
1950 | if (ol < sizeof(value)) | |
1951 | return -EINVAL; | |
2db9983a AS |
1952 | res = get_user(value, (u32 __user *)ov); |
1953 | if (res) | |
b97bf3fd PL |
1954 | return res; |
1955 | ||
0c3141e9 | 1956 | lock_sock(sk); |
c4307285 | 1957 | |
b97bf3fd PL |
1958 | switch (opt) { |
1959 | case TIPC_IMPORTANCE: | |
58ed9442 | 1960 | tipc_port_set_importance(port, value); |
b97bf3fd PL |
1961 | break; |
1962 | case TIPC_SRC_DROPPABLE: | |
1963 | if (sock->type != SOCK_STREAM) | |
58ed9442 | 1964 | tipc_port_set_unreliable(port, value); |
c4307285 | 1965 | else |
b97bf3fd PL |
1966 | res = -ENOPROTOOPT; |
1967 | break; | |
1968 | case TIPC_DEST_DROPPABLE: | |
58ed9442 | 1969 | tipc_port_set_unreturnable(port, value); |
b97bf3fd PL |
1970 | break; |
1971 | case TIPC_CONN_TIMEOUT: | |
a0f40f02 | 1972 | tipc_sk(sk)->conn_timeout = value; |
0c3141e9 | 1973 | /* no need to set "res", since already 0 at this point */ |
b97bf3fd PL |
1974 | break; |
1975 | default: | |
1976 | res = -EINVAL; | |
1977 | } | |
1978 | ||
0c3141e9 AS |
1979 | release_sock(sk); |
1980 | ||
b97bf3fd PL |
1981 | return res; |
1982 | } | |
1983 | ||
1984 | /** | |
247f0f3c | 1985 | * tipc_getsockopt - get socket option |
b97bf3fd PL |
1986 | * @sock: socket structure |
1987 | * @lvl: option level | |
1988 | * @opt: option identifier | |
1989 | * @ov: receptacle for option value | |
1990 | * @ol: receptacle for length of option value | |
c4307285 YH |
1991 | * |
1992 | * For stream sockets only, returns 0 length result for all IPPROTO_TCP options | |
b97bf3fd | 1993 | * (to ease compatibility). |
c4307285 | 1994 | * |
b97bf3fd PL |
1995 | * Returns 0 on success, errno otherwise |
1996 | */ | |
247f0f3c YX |
1997 | static int tipc_getsockopt(struct socket *sock, int lvl, int opt, |
1998 | char __user *ov, int __user *ol) | |
b97bf3fd | 1999 | { |
0c3141e9 | 2000 | struct sock *sk = sock->sk; |
58ed9442 JPM |
2001 | struct tipc_sock *tsk = tipc_sk(sk); |
2002 | struct tipc_port *port = &tsk->port; | |
c4307285 | 2003 | int len; |
b97bf3fd | 2004 | u32 value; |
c4307285 | 2005 | int res; |
b97bf3fd | 2006 | |
c4307285 YH |
2007 | if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM)) |
2008 | return put_user(0, ol); | |
b97bf3fd PL |
2009 | if (lvl != SOL_TIPC) |
2010 | return -ENOPROTOOPT; | |
2db9983a AS |
2011 | res = get_user(len, ol); |
2012 | if (res) | |
c4307285 | 2013 | return res; |
b97bf3fd | 2014 | |
0c3141e9 | 2015 | lock_sock(sk); |
b97bf3fd PL |
2016 | |
2017 | switch (opt) { | |
2018 | case TIPC_IMPORTANCE: | |
58ed9442 | 2019 | value = tipc_port_importance(port); |
b97bf3fd PL |
2020 | break; |
2021 | case TIPC_SRC_DROPPABLE: | |
58ed9442 | 2022 | value = tipc_port_unreliable(port); |
b97bf3fd PL |
2023 | break; |
2024 | case TIPC_DEST_DROPPABLE: | |
58ed9442 | 2025 | value = tipc_port_unreturnable(port); |
b97bf3fd PL |
2026 | break; |
2027 | case TIPC_CONN_TIMEOUT: | |
a0f40f02 | 2028 | value = tipc_sk(sk)->conn_timeout; |
0c3141e9 | 2029 | /* no need to set "res", since already 0 at this point */ |
b97bf3fd | 2030 | break; |
0e65967e | 2031 | case TIPC_NODE_RECVQ_DEPTH: |
9da3d475 | 2032 | value = 0; /* was tipc_queue_size, now obsolete */ |
6650613d | 2033 | break; |
0e65967e | 2034 | case TIPC_SOCK_RECVQ_DEPTH: |
6650613d | 2035 | value = skb_queue_len(&sk->sk_receive_queue); |
2036 | break; | |
b97bf3fd PL |
2037 | default: |
2038 | res = -EINVAL; | |
2039 | } | |
2040 | ||
0c3141e9 AS |
2041 | release_sock(sk); |
2042 | ||
25860c3b PG |
2043 | if (res) |
2044 | return res; /* "get" failed */ | |
b97bf3fd | 2045 | |
25860c3b PG |
2046 | if (len < sizeof(value)) |
2047 | return -EINVAL; | |
2048 | ||
2049 | if (copy_to_user(ov, &value, sizeof(value))) | |
2050 | return -EFAULT; | |
2051 | ||
2052 | return put_user(sizeof(value), ol); | |
b97bf3fd PL |
2053 | } |
2054 | ||
78acb1f9 EH |
2055 | int tipc_ioctl(struct socket *sk, unsigned int cmd, unsigned long arg) |
2056 | { | |
2057 | struct tipc_sioc_ln_req lnr; | |
2058 | void __user *argp = (void __user *)arg; | |
2059 | ||
2060 | switch (cmd) { | |
2061 | case SIOCGETLINKNAME: | |
2062 | if (copy_from_user(&lnr, argp, sizeof(lnr))) | |
2063 | return -EFAULT; | |
2064 | if (!tipc_node_get_linkname(lnr.bearer_id, lnr.peer, | |
2065 | lnr.linkname, TIPC_MAX_LINK_NAME)) { | |
2066 | if (copy_to_user(argp, &lnr, sizeof(lnr))) | |
2067 | return -EFAULT; | |
2068 | return 0; | |
2069 | } | |
2070 | return -EADDRNOTAVAIL; | |
78acb1f9 EH |
2071 | default: |
2072 | return -ENOIOCTLCMD; | |
2073 | } | |
2074 | } | |
2075 | ||
ae86b9e3 BH |
2076 | /* Protocol switches for the various types of TIPC sockets */ |
2077 | ||
bca65eae | 2078 | static const struct proto_ops msg_ops = { |
0e65967e | 2079 | .owner = THIS_MODULE, |
b97bf3fd | 2080 | .family = AF_TIPC, |
247f0f3c YX |
2081 | .release = tipc_release, |
2082 | .bind = tipc_bind, | |
2083 | .connect = tipc_connect, | |
5eee6a6d | 2084 | .socketpair = sock_no_socketpair, |
245f3d34 | 2085 | .accept = sock_no_accept, |
247f0f3c YX |
2086 | .getname = tipc_getname, |
2087 | .poll = tipc_poll, | |
78acb1f9 | 2088 | .ioctl = tipc_ioctl, |
245f3d34 | 2089 | .listen = sock_no_listen, |
247f0f3c YX |
2090 | .shutdown = tipc_shutdown, |
2091 | .setsockopt = tipc_setsockopt, | |
2092 | .getsockopt = tipc_getsockopt, | |
2093 | .sendmsg = tipc_sendmsg, | |
2094 | .recvmsg = tipc_recvmsg, | |
8238745a YH |
2095 | .mmap = sock_no_mmap, |
2096 | .sendpage = sock_no_sendpage | |
b97bf3fd PL |
2097 | }; |
2098 | ||
bca65eae | 2099 | static const struct proto_ops packet_ops = { |
0e65967e | 2100 | .owner = THIS_MODULE, |
b97bf3fd | 2101 | .family = AF_TIPC, |
247f0f3c YX |
2102 | .release = tipc_release, |
2103 | .bind = tipc_bind, | |
2104 | .connect = tipc_connect, | |
5eee6a6d | 2105 | .socketpair = sock_no_socketpair, |
247f0f3c YX |
2106 | .accept = tipc_accept, |
2107 | .getname = tipc_getname, | |
2108 | .poll = tipc_poll, | |
78acb1f9 | 2109 | .ioctl = tipc_ioctl, |
247f0f3c YX |
2110 | .listen = tipc_listen, |
2111 | .shutdown = tipc_shutdown, | |
2112 | .setsockopt = tipc_setsockopt, | |
2113 | .getsockopt = tipc_getsockopt, | |
2114 | .sendmsg = tipc_send_packet, | |
2115 | .recvmsg = tipc_recvmsg, | |
8238745a YH |
2116 | .mmap = sock_no_mmap, |
2117 | .sendpage = sock_no_sendpage | |
b97bf3fd PL |
2118 | }; |
2119 | ||
bca65eae | 2120 | static const struct proto_ops stream_ops = { |
0e65967e | 2121 | .owner = THIS_MODULE, |
b97bf3fd | 2122 | .family = AF_TIPC, |
247f0f3c YX |
2123 | .release = tipc_release, |
2124 | .bind = tipc_bind, | |
2125 | .connect = tipc_connect, | |
5eee6a6d | 2126 | .socketpair = sock_no_socketpair, |
247f0f3c YX |
2127 | .accept = tipc_accept, |
2128 | .getname = tipc_getname, | |
2129 | .poll = tipc_poll, | |
78acb1f9 | 2130 | .ioctl = tipc_ioctl, |
247f0f3c YX |
2131 | .listen = tipc_listen, |
2132 | .shutdown = tipc_shutdown, | |
2133 | .setsockopt = tipc_setsockopt, | |
2134 | .getsockopt = tipc_getsockopt, | |
2135 | .sendmsg = tipc_send_stream, | |
2136 | .recvmsg = tipc_recv_stream, | |
8238745a YH |
2137 | .mmap = sock_no_mmap, |
2138 | .sendpage = sock_no_sendpage | |
b97bf3fd PL |
2139 | }; |
2140 | ||
bca65eae | 2141 | static const struct net_proto_family tipc_family_ops = { |
0e65967e | 2142 | .owner = THIS_MODULE, |
b97bf3fd | 2143 | .family = AF_TIPC, |
c5fa7b3c | 2144 | .create = tipc_sk_create |
b97bf3fd PL |
2145 | }; |
2146 | ||
2147 | static struct proto tipc_proto = { | |
2148 | .name = "TIPC", | |
2149 | .owner = THIS_MODULE, | |
cc79dd1b YX |
2150 | .obj_size = sizeof(struct tipc_sock), |
2151 | .sysctl_rmem = sysctl_tipc_rmem | |
b97bf3fd PL |
2152 | }; |
2153 | ||
c5fa7b3c YX |
2154 | static struct proto tipc_proto_kern = { |
2155 | .name = "TIPC", | |
2156 | .obj_size = sizeof(struct tipc_sock), | |
2157 | .sysctl_rmem = sysctl_tipc_rmem | |
2158 | }; | |
2159 | ||
b97bf3fd | 2160 | /** |
4323add6 | 2161 | * tipc_socket_init - initialize TIPC socket interface |
c4307285 | 2162 | * |
b97bf3fd PL |
2163 | * Returns 0 on success, errno otherwise |
2164 | */ | |
4323add6 | 2165 | int tipc_socket_init(void) |
b97bf3fd PL |
2166 | { |
2167 | int res; | |
2168 | ||
c4307285 | 2169 | res = proto_register(&tipc_proto, 1); |
b97bf3fd | 2170 | if (res) { |
2cf8aa19 | 2171 | pr_err("Failed to register TIPC protocol type\n"); |
b97bf3fd PL |
2172 | goto out; |
2173 | } | |
2174 | ||
2175 | res = sock_register(&tipc_family_ops); | |
2176 | if (res) { | |
2cf8aa19 | 2177 | pr_err("Failed to register TIPC socket type\n"); |
b97bf3fd PL |
2178 | proto_unregister(&tipc_proto); |
2179 | goto out; | |
2180 | } | |
b97bf3fd PL |
2181 | out: |
2182 | return res; | |
2183 | } | |
2184 | ||
2185 | /** | |
4323add6 | 2186 | * tipc_socket_stop - stop TIPC socket interface |
b97bf3fd | 2187 | */ |
4323add6 | 2188 | void tipc_socket_stop(void) |
b97bf3fd | 2189 | { |
b97bf3fd PL |
2190 | sock_unregister(tipc_family_ops.family); |
2191 | proto_unregister(&tipc_proto); | |
2192 | } |