[TIPC]: Ignore message padding when receiving stream data
[deliverable/linux.git] / net / tipc / socket.c
1 /*
2 * net/tipc/socket.c: TIPC socket API
3 *
4 * Copyright (c) 2001-2007, Ericsson AB
5 * Copyright (c) 2004-2007, Wind River Systems
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are met:
10 *
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.
19 *
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
34 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37 #include <linux/module.h>
38 #include <linux/types.h>
39 #include <linux/net.h>
40 #include <linux/socket.h>
41 #include <linux/errno.h>
42 #include <linux/mm.h>
43 #include <linux/slab.h>
44 #include <linux/poll.h>
45 #include <linux/fcntl.h>
46 #include <linux/mutex.h>
47 #include <asm/string.h>
48 #include <asm/atomic.h>
49 #include <net/sock.h>
50
51 #include <linux/tipc.h>
52 #include <linux/tipc_config.h>
53 #include <net/tipc/tipc_msg.h>
54 #include <net/tipc/tipc_port.h>
55
56 #include "core.h"
57
58 #define SS_LISTENING -1 /* socket is listening */
59 #define SS_READY -2 /* socket is connectionless */
60
61 #define OVERLOAD_LIMIT_BASE 5000
62 #define CONN_TIMEOUT_DEFAULT 8000 /* default connect timeout = 8s */
63
64 struct tipc_sock {
65 struct sock sk;
66 struct tipc_port *p;
67 struct mutex lock;
68 };
69
70 #define tipc_sk(sk) ((struct tipc_sock*)sk)
71
72 static u32 dispatch(struct tipc_port *tport, struct sk_buff *buf);
73 static void wakeupdispatch(struct tipc_port *tport);
74
75 static const struct proto_ops packet_ops;
76 static const struct proto_ops stream_ops;
77 static const struct proto_ops msg_ops;
78
79 static struct proto tipc_proto;
80
81 static int sockets_enabled = 0;
82
83 static atomic_t tipc_queue_size = ATOMIC_INIT(0);
84
85
86 /*
87 * sock_lock(): Lock a port/socket pair. lock_sock() can
88 * not be used here, since the same lock must protect ports
89 * with non-socket interfaces.
90 * See net.c for description of locking policy.
91 */
92 static void sock_lock(struct tipc_sock* tsock)
93 {
94 spin_lock_bh(tsock->p->lock);
95 }
96
97 /*
98 * sock_unlock(): Unlock a port/socket pair
99 */
100 static void sock_unlock(struct tipc_sock* tsock)
101 {
102 spin_unlock_bh(tsock->p->lock);
103 }
104
105 /**
106 * advance_queue - discard first buffer in queue
107 * @tsock: TIPC socket
108 */
109
110 static void advance_queue(struct tipc_sock *tsock)
111 {
112 sock_lock(tsock);
113 buf_discard(skb_dequeue(&tsock->sk.sk_receive_queue));
114 sock_unlock(tsock);
115 atomic_dec(&tipc_queue_size);
116 }
117
118 /**
119 * tipc_create - create a TIPC socket
120 * @sock: pre-allocated socket structure
121 * @protocol: protocol indicator (must be 0)
122 *
123 * This routine creates and attaches a 'struct sock' to the 'struct socket',
124 * then create and attaches a TIPC port to the 'struct sock' part.
125 *
126 * Returns 0 on success, errno otherwise
127 */
128 static int tipc_create(struct net *net, struct socket *sock, int protocol)
129 {
130 struct tipc_sock *tsock;
131 struct tipc_port *port;
132 struct sock *sk;
133 u32 ref;
134
135 if (net != &init_net)
136 return -EAFNOSUPPORT;
137
138 if (unlikely(protocol != 0))
139 return -EPROTONOSUPPORT;
140
141 ref = tipc_createport_raw(NULL, &dispatch, &wakeupdispatch, TIPC_LOW_IMPORTANCE);
142 if (unlikely(!ref))
143 return -ENOMEM;
144
145 sock->state = SS_UNCONNECTED;
146
147 switch (sock->type) {
148 case SOCK_STREAM:
149 sock->ops = &stream_ops;
150 break;
151 case SOCK_SEQPACKET:
152 sock->ops = &packet_ops;
153 break;
154 case SOCK_DGRAM:
155 tipc_set_portunreliable(ref, 1);
156 /* fall through */
157 case SOCK_RDM:
158 tipc_set_portunreturnable(ref, 1);
159 sock->ops = &msg_ops;
160 sock->state = SS_READY;
161 break;
162 default:
163 tipc_deleteport(ref);
164 return -EPROTOTYPE;
165 }
166
167 sk = sk_alloc(net, AF_TIPC, GFP_KERNEL, &tipc_proto);
168 if (!sk) {
169 tipc_deleteport(ref);
170 return -ENOMEM;
171 }
172
173 sock_init_data(sock, sk);
174 sk->sk_rcvtimeo = msecs_to_jiffies(CONN_TIMEOUT_DEFAULT);
175
176 tsock = tipc_sk(sk);
177 port = tipc_get_port(ref);
178
179 tsock->p = port;
180 port->usr_handle = tsock;
181
182 mutex_init(&tsock->lock);
183
184 dbg("sock_create: %x\n",tsock);
185
186 atomic_inc(&tipc_user_count);
187
188 return 0;
189 }
190
191 /**
192 * release - destroy a TIPC socket
193 * @sock: socket to destroy
194 *
195 * This routine cleans up any messages that are still queued on the socket.
196 * For DGRAM and RDM socket types, all queued messages are rejected.
197 * For SEQPACKET and STREAM socket types, the first message is rejected
198 * and any others are discarded. (If the first message on a STREAM socket
199 * is partially-read, it is discarded and the next one is rejected instead.)
200 *
201 * NOTE: Rejected messages are not necessarily returned to the sender! They
202 * are returned or discarded according to the "destination droppable" setting
203 * specified for the message by the sender.
204 *
205 * Returns 0 on success, errno otherwise
206 */
207
208 static int release(struct socket *sock)
209 {
210 struct tipc_sock *tsock = tipc_sk(sock->sk);
211 struct sock *sk = sock->sk;
212 int res = TIPC_OK;
213 struct sk_buff *buf;
214
215 dbg("sock_delete: %x\n",tsock);
216 if (!tsock)
217 return 0;
218 mutex_lock(&tsock->lock);
219 if (!sock->sk) {
220 mutex_unlock(&tsock->lock);
221 return 0;
222 }
223
224 /* Reject unreceived messages, unless no longer connected */
225
226 while (sock->state != SS_DISCONNECTING) {
227 sock_lock(tsock);
228 buf = skb_dequeue(&sk->sk_receive_queue);
229 if (!buf)
230 tsock->p->usr_handle = NULL;
231 sock_unlock(tsock);
232 if (!buf)
233 break;
234 if (TIPC_SKB_CB(buf)->handle != msg_data(buf_msg(buf)))
235 buf_discard(buf);
236 else
237 tipc_reject_msg(buf, TIPC_ERR_NO_PORT);
238 atomic_dec(&tipc_queue_size);
239 }
240
241 /* Delete TIPC port */
242
243 res = tipc_deleteport(tsock->p->ref);
244 sock->sk = NULL;
245
246 /* Discard any remaining messages */
247
248 while ((buf = skb_dequeue(&sk->sk_receive_queue))) {
249 buf_discard(buf);
250 atomic_dec(&tipc_queue_size);
251 }
252
253 mutex_unlock(&tsock->lock);
254
255 sock_put(sk);
256
257 atomic_dec(&tipc_user_count);
258 return res;
259 }
260
261 /**
262 * bind - associate or disassocate TIPC name(s) with a socket
263 * @sock: socket structure
264 * @uaddr: socket address describing name(s) and desired operation
265 * @uaddr_len: size of socket address data structure
266 *
267 * Name and name sequence binding is indicated using a positive scope value;
268 * a negative scope value unbinds the specified name. Specifying no name
269 * (i.e. a socket address length of 0) unbinds all names from the socket.
270 *
271 * Returns 0 on success, errno otherwise
272 */
273
274 static int bind(struct socket *sock, struct sockaddr *uaddr, int uaddr_len)
275 {
276 struct tipc_sock *tsock = tipc_sk(sock->sk);
277 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
278 int res;
279
280 if (mutex_lock_interruptible(&tsock->lock))
281 return -ERESTARTSYS;
282
283 if (unlikely(!uaddr_len)) {
284 res = tipc_withdraw(tsock->p->ref, 0, NULL);
285 goto exit;
286 }
287
288 if (uaddr_len < sizeof(struct sockaddr_tipc)) {
289 res = -EINVAL;
290 goto exit;
291 }
292
293 if (addr->family != AF_TIPC) {
294 res = -EAFNOSUPPORT;
295 goto exit;
296 }
297 if (addr->addrtype == TIPC_ADDR_NAME)
298 addr->addr.nameseq.upper = addr->addr.nameseq.lower;
299 else if (addr->addrtype != TIPC_ADDR_NAMESEQ) {
300 res = -EAFNOSUPPORT;
301 goto exit;
302 }
303
304 if (addr->scope > 0)
305 res = tipc_publish(tsock->p->ref, addr->scope,
306 &addr->addr.nameseq);
307 else
308 res = tipc_withdraw(tsock->p->ref, -addr->scope,
309 &addr->addr.nameseq);
310 exit:
311 mutex_unlock(&tsock->lock);
312 return res;
313 }
314
315 /**
316 * get_name - get port ID of socket or peer socket
317 * @sock: socket structure
318 * @uaddr: area for returned socket address
319 * @uaddr_len: area for returned length of socket address
320 * @peer: 0 to obtain socket name, 1 to obtain peer socket name
321 *
322 * Returns 0 on success, errno otherwise
323 */
324
325 static int get_name(struct socket *sock, struct sockaddr *uaddr,
326 int *uaddr_len, int peer)
327 {
328 struct tipc_sock *tsock = tipc_sk(sock->sk);
329 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)uaddr;
330 u32 res;
331
332 if (mutex_lock_interruptible(&tsock->lock))
333 return -ERESTARTSYS;
334
335 *uaddr_len = sizeof(*addr);
336 addr->addrtype = TIPC_ADDR_ID;
337 addr->family = AF_TIPC;
338 addr->scope = 0;
339 if (peer)
340 res = tipc_peer(tsock->p->ref, &addr->addr.id);
341 else
342 res = tipc_ownidentity(tsock->p->ref, &addr->addr.id);
343 addr->addr.name.domain = 0;
344
345 mutex_unlock(&tsock->lock);
346 return res;
347 }
348
349 /**
350 * poll - read and possibly block on pollmask
351 * @file: file structure associated with the socket
352 * @sock: socket for which to calculate the poll bits
353 * @wait: ???
354 *
355 * Returns pollmask value
356 *
357 * COMMENTARY:
358 * It appears that the usual socket locking mechanisms are not useful here
359 * since the pollmask info is potentially out-of-date the moment this routine
360 * exits. TCP and other protocols seem to rely on higher level poll routines
361 * to handle any preventable race conditions, so TIPC will do the same ...
362 *
363 * TIPC sets the returned events as follows:
364 * a) POLLRDNORM and POLLIN are set if the socket's receive queue is non-empty
365 * or if a connection-oriented socket is does not have an active connection
366 * (i.e. a read operation will not block).
367 * b) POLLOUT is set except when a socket's connection has been terminated
368 * (i.e. a write operation will not block).
369 * c) POLLHUP is set when a socket's connection has been terminated.
370 *
371 * IMPORTANT: The fact that a read or write operation will not block does NOT
372 * imply that the operation will succeed!
373 */
374
375 static unsigned int poll(struct file *file, struct socket *sock,
376 poll_table *wait)
377 {
378 struct sock *sk = sock->sk;
379 u32 mask;
380
381 poll_wait(file, sk->sk_sleep, wait);
382
383 if (!skb_queue_empty(&sk->sk_receive_queue) ||
384 (sock->state == SS_UNCONNECTED) ||
385 (sock->state == SS_DISCONNECTING))
386 mask = (POLLRDNORM | POLLIN);
387 else
388 mask = 0;
389
390 if (sock->state == SS_DISCONNECTING)
391 mask |= POLLHUP;
392 else
393 mask |= POLLOUT;
394
395 return mask;
396 }
397
398 /**
399 * dest_name_check - verify user is permitted to send to specified port name
400 * @dest: destination address
401 * @m: descriptor for message to be sent
402 *
403 * Prevents restricted configuration commands from being issued by
404 * unauthorized users.
405 *
406 * Returns 0 if permission is granted, otherwise errno
407 */
408
409 static int dest_name_check(struct sockaddr_tipc *dest, struct msghdr *m)
410 {
411 struct tipc_cfg_msg_hdr hdr;
412
413 if (likely(dest->addr.name.name.type >= TIPC_RESERVED_TYPES))
414 return 0;
415 if (likely(dest->addr.name.name.type == TIPC_TOP_SRV))
416 return 0;
417
418 if (likely(dest->addr.name.name.type != TIPC_CFG_SRV))
419 return -EACCES;
420
421 if (copy_from_user(&hdr, m->msg_iov[0].iov_base, sizeof(hdr)))
422 return -EFAULT;
423 if ((ntohs(hdr.tcm_type) & 0xC000) && (!capable(CAP_NET_ADMIN)))
424 return -EACCES;
425
426 return 0;
427 }
428
429 /**
430 * send_msg - send message in connectionless manner
431 * @iocb: (unused)
432 * @sock: socket structure
433 * @m: message to send
434 * @total_len: length of message
435 *
436 * Message must have an destination specified explicitly.
437 * Used for SOCK_RDM and SOCK_DGRAM messages,
438 * and for 'SYN' messages on SOCK_SEQPACKET and SOCK_STREAM connections.
439 * (Note: 'SYN+' is prohibited on SOCK_STREAM.)
440 *
441 * Returns the number of bytes sent on success, or errno otherwise
442 */
443
444 static int send_msg(struct kiocb *iocb, struct socket *sock,
445 struct msghdr *m, size_t total_len)
446 {
447 struct tipc_sock *tsock = tipc_sk(sock->sk);
448 struct sockaddr_tipc *dest = (struct sockaddr_tipc *)m->msg_name;
449 struct sk_buff *buf;
450 int needs_conn;
451 int res = -EINVAL;
452
453 if (unlikely(!dest))
454 return -EDESTADDRREQ;
455 if (unlikely((m->msg_namelen < sizeof(*dest)) ||
456 (dest->family != AF_TIPC)))
457 return -EINVAL;
458
459 needs_conn = (sock->state != SS_READY);
460 if (unlikely(needs_conn)) {
461 if (sock->state == SS_LISTENING)
462 return -EPIPE;
463 if (sock->state != SS_UNCONNECTED)
464 return -EISCONN;
465 if ((tsock->p->published) ||
466 ((sock->type == SOCK_STREAM) && (total_len != 0)))
467 return -EOPNOTSUPP;
468 if (dest->addrtype == TIPC_ADDR_NAME) {
469 tsock->p->conn_type = dest->addr.name.name.type;
470 tsock->p->conn_instance = dest->addr.name.name.instance;
471 }
472 }
473
474 if (mutex_lock_interruptible(&tsock->lock))
475 return -ERESTARTSYS;
476
477 if (needs_conn) {
478
479 /* Abort any pending connection attempts (very unlikely) */
480
481 while ((buf = skb_dequeue(&sock->sk->sk_receive_queue))) {
482 tipc_reject_msg(buf, TIPC_ERR_NO_PORT);
483 atomic_dec(&tipc_queue_size);
484 }
485
486 sock->state = SS_CONNECTING;
487 }
488
489 do {
490 if (dest->addrtype == TIPC_ADDR_NAME) {
491 if ((res = dest_name_check(dest, m)))
492 goto exit;
493 res = tipc_send2name(tsock->p->ref,
494 &dest->addr.name.name,
495 dest->addr.name.domain,
496 m->msg_iovlen,
497 m->msg_iov);
498 }
499 else if (dest->addrtype == TIPC_ADDR_ID) {
500 res = tipc_send2port(tsock->p->ref,
501 &dest->addr.id,
502 m->msg_iovlen,
503 m->msg_iov);
504 }
505 else if (dest->addrtype == TIPC_ADDR_MCAST) {
506 if (needs_conn) {
507 res = -EOPNOTSUPP;
508 goto exit;
509 }
510 if ((res = dest_name_check(dest, m)))
511 goto exit;
512 res = tipc_multicast(tsock->p->ref,
513 &dest->addr.nameseq,
514 0,
515 m->msg_iovlen,
516 m->msg_iov);
517 }
518 if (likely(res != -ELINKCONG)) {
519 exit:
520 mutex_unlock(&tsock->lock);
521 return res;
522 }
523 if (m->msg_flags & MSG_DONTWAIT) {
524 res = -EWOULDBLOCK;
525 goto exit;
526 }
527 if (wait_event_interruptible(*sock->sk->sk_sleep,
528 !tsock->p->congested)) {
529 res = -ERESTARTSYS;
530 goto exit;
531 }
532 } while (1);
533 }
534
535 /**
536 * send_packet - send a connection-oriented message
537 * @iocb: (unused)
538 * @sock: socket structure
539 * @m: message to send
540 * @total_len: length of message
541 *
542 * Used for SOCK_SEQPACKET messages and SOCK_STREAM data.
543 *
544 * Returns the number of bytes sent on success, or errno otherwise
545 */
546
547 static int send_packet(struct kiocb *iocb, struct socket *sock,
548 struct msghdr *m, size_t total_len)
549 {
550 struct tipc_sock *tsock = tipc_sk(sock->sk);
551 struct sockaddr_tipc *dest = (struct sockaddr_tipc *)m->msg_name;
552 int res;
553
554 /* Handle implied connection establishment */
555
556 if (unlikely(dest))
557 return send_msg(iocb, sock, m, total_len);
558
559 if (mutex_lock_interruptible(&tsock->lock)) {
560 return -ERESTARTSYS;
561 }
562
563 do {
564 if (unlikely(sock->state != SS_CONNECTED)) {
565 if (sock->state == SS_DISCONNECTING)
566 res = -EPIPE;
567 else
568 res = -ENOTCONN;
569 goto exit;
570 }
571
572 res = tipc_send(tsock->p->ref, m->msg_iovlen, m->msg_iov);
573 if (likely(res != -ELINKCONG)) {
574 exit:
575 mutex_unlock(&tsock->lock);
576 return res;
577 }
578 if (m->msg_flags & MSG_DONTWAIT) {
579 res = -EWOULDBLOCK;
580 goto exit;
581 }
582 if (wait_event_interruptible(*sock->sk->sk_sleep,
583 !tsock->p->congested)) {
584 res = -ERESTARTSYS;
585 goto exit;
586 }
587 } while (1);
588 }
589
590 /**
591 * send_stream - send stream-oriented data
592 * @iocb: (unused)
593 * @sock: socket structure
594 * @m: data to send
595 * @total_len: total length of data to be sent
596 *
597 * Used for SOCK_STREAM data.
598 *
599 * Returns the number of bytes sent on success (or partial success),
600 * or errno if no data sent
601 */
602
603
604 static int send_stream(struct kiocb *iocb, struct socket *sock,
605 struct msghdr *m, size_t total_len)
606 {
607 struct tipc_port *tport;
608 struct msghdr my_msg;
609 struct iovec my_iov;
610 struct iovec *curr_iov;
611 int curr_iovlen;
612 char __user *curr_start;
613 u32 hdr_size;
614 int curr_left;
615 int bytes_to_send;
616 int bytes_sent;
617 int res;
618
619 /* Handle special cases where there is no connection */
620
621 if (unlikely(sock->state != SS_CONNECTED)) {
622 if (sock->state == SS_UNCONNECTED)
623 return send_packet(iocb, sock, m, total_len);
624 else if (sock->state == SS_DISCONNECTING)
625 return -EPIPE;
626 else
627 return -ENOTCONN;
628 }
629
630 if (unlikely(m->msg_name))
631 return -EISCONN;
632
633 /*
634 * Send each iovec entry using one or more messages
635 *
636 * Note: This algorithm is good for the most likely case
637 * (i.e. one large iovec entry), but could be improved to pass sets
638 * of small iovec entries into send_packet().
639 */
640
641 curr_iov = m->msg_iov;
642 curr_iovlen = m->msg_iovlen;
643 my_msg.msg_iov = &my_iov;
644 my_msg.msg_iovlen = 1;
645 my_msg.msg_flags = m->msg_flags;
646 my_msg.msg_name = NULL;
647 bytes_sent = 0;
648
649 tport = tipc_sk(sock->sk)->p;
650 hdr_size = msg_hdr_sz(&tport->phdr);
651
652 while (curr_iovlen--) {
653 curr_start = curr_iov->iov_base;
654 curr_left = curr_iov->iov_len;
655
656 while (curr_left) {
657 bytes_to_send = tport->max_pkt - hdr_size;
658 if (bytes_to_send > TIPC_MAX_USER_MSG_SIZE)
659 bytes_to_send = TIPC_MAX_USER_MSG_SIZE;
660 if (curr_left < bytes_to_send)
661 bytes_to_send = curr_left;
662 my_iov.iov_base = curr_start;
663 my_iov.iov_len = bytes_to_send;
664 if ((res = send_packet(iocb, sock, &my_msg, 0)) < 0) {
665 if (bytes_sent != 0)
666 res = bytes_sent;
667 return res;
668 }
669 curr_left -= bytes_to_send;
670 curr_start += bytes_to_send;
671 bytes_sent += bytes_to_send;
672 }
673
674 curr_iov++;
675 }
676
677 return bytes_sent;
678 }
679
680 /**
681 * auto_connect - complete connection setup to a remote port
682 * @sock: socket structure
683 * @tsock: TIPC-specific socket structure
684 * @msg: peer's response message
685 *
686 * Returns 0 on success, errno otherwise
687 */
688
689 static int auto_connect(struct socket *sock, struct tipc_sock *tsock,
690 struct tipc_msg *msg)
691 {
692 struct tipc_portid peer;
693
694 if (msg_errcode(msg)) {
695 sock->state = SS_DISCONNECTING;
696 return -ECONNREFUSED;
697 }
698
699 peer.ref = msg_origport(msg);
700 peer.node = msg_orignode(msg);
701 tipc_connect2port(tsock->p->ref, &peer);
702 tipc_set_portimportance(tsock->p->ref, msg_importance(msg));
703 sock->state = SS_CONNECTED;
704 return 0;
705 }
706
707 /**
708 * set_orig_addr - capture sender's address for received message
709 * @m: descriptor for message info
710 * @msg: received message header
711 *
712 * Note: Address is not captured if not requested by receiver.
713 */
714
715 static void set_orig_addr(struct msghdr *m, struct tipc_msg *msg)
716 {
717 struct sockaddr_tipc *addr = (struct sockaddr_tipc *)m->msg_name;
718
719 if (addr) {
720 addr->family = AF_TIPC;
721 addr->addrtype = TIPC_ADDR_ID;
722 addr->addr.id.ref = msg_origport(msg);
723 addr->addr.id.node = msg_orignode(msg);
724 addr->addr.name.domain = 0; /* could leave uninitialized */
725 addr->scope = 0; /* could leave uninitialized */
726 m->msg_namelen = sizeof(struct sockaddr_tipc);
727 }
728 }
729
730 /**
731 * anc_data_recv - optionally capture ancillary data for received message
732 * @m: descriptor for message info
733 * @msg: received message header
734 * @tport: TIPC port associated with message
735 *
736 * Note: Ancillary data is not captured if not requested by receiver.
737 *
738 * Returns 0 if successful, otherwise errno
739 */
740
741 static int anc_data_recv(struct msghdr *m, struct tipc_msg *msg,
742 struct tipc_port *tport)
743 {
744 u32 anc_data[3];
745 u32 err;
746 u32 dest_type;
747 int has_name;
748 int res;
749
750 if (likely(m->msg_controllen == 0))
751 return 0;
752
753 /* Optionally capture errored message object(s) */
754
755 err = msg ? msg_errcode(msg) : 0;
756 if (unlikely(err)) {
757 anc_data[0] = err;
758 anc_data[1] = msg_data_sz(msg);
759 if ((res = put_cmsg(m, SOL_TIPC, TIPC_ERRINFO, 8, anc_data)))
760 return res;
761 if (anc_data[1] &&
762 (res = put_cmsg(m, SOL_TIPC, TIPC_RETDATA, anc_data[1],
763 msg_data(msg))))
764 return res;
765 }
766
767 /* Optionally capture message destination object */
768
769 dest_type = msg ? msg_type(msg) : TIPC_DIRECT_MSG;
770 switch (dest_type) {
771 case TIPC_NAMED_MSG:
772 has_name = 1;
773 anc_data[0] = msg_nametype(msg);
774 anc_data[1] = msg_namelower(msg);
775 anc_data[2] = msg_namelower(msg);
776 break;
777 case TIPC_MCAST_MSG:
778 has_name = 1;
779 anc_data[0] = msg_nametype(msg);
780 anc_data[1] = msg_namelower(msg);
781 anc_data[2] = msg_nameupper(msg);
782 break;
783 case TIPC_CONN_MSG:
784 has_name = (tport->conn_type != 0);
785 anc_data[0] = tport->conn_type;
786 anc_data[1] = tport->conn_instance;
787 anc_data[2] = tport->conn_instance;
788 break;
789 default:
790 has_name = 0;
791 }
792 if (has_name &&
793 (res = put_cmsg(m, SOL_TIPC, TIPC_DESTNAME, 12, anc_data)))
794 return res;
795
796 return 0;
797 }
798
799 /**
800 * recv_msg - receive packet-oriented message
801 * @iocb: (unused)
802 * @m: descriptor for message info
803 * @buf_len: total size of user buffer area
804 * @flags: receive flags
805 *
806 * Used for SOCK_DGRAM, SOCK_RDM, and SOCK_SEQPACKET messages.
807 * If the complete message doesn't fit in user area, truncate it.
808 *
809 * Returns size of returned message data, errno otherwise
810 */
811
812 static int recv_msg(struct kiocb *iocb, struct socket *sock,
813 struct msghdr *m, size_t buf_len, int flags)
814 {
815 struct tipc_sock *tsock = tipc_sk(sock->sk);
816 struct sk_buff *buf;
817 struct tipc_msg *msg;
818 unsigned int q_len;
819 unsigned int sz;
820 u32 err;
821 int res;
822
823 /* Currently doesn't support receiving into multiple iovec entries */
824
825 if (m->msg_iovlen != 1)
826 return -EOPNOTSUPP;
827
828 /* Catch invalid receive attempts */
829
830 if (unlikely(!buf_len))
831 return -EINVAL;
832
833 if (sock->type == SOCK_SEQPACKET) {
834 if (unlikely(sock->state == SS_UNCONNECTED))
835 return -ENOTCONN;
836 if (unlikely((sock->state == SS_DISCONNECTING) &&
837 (skb_queue_len(&sock->sk->sk_receive_queue) == 0)))
838 return -ENOTCONN;
839 }
840
841 /* Look for a message in receive queue; wait if necessary */
842
843 if (unlikely(mutex_lock_interruptible(&tsock->lock)))
844 return -ERESTARTSYS;
845
846 restart:
847 if (unlikely((skb_queue_len(&sock->sk->sk_receive_queue) == 0) &&
848 (flags & MSG_DONTWAIT))) {
849 res = -EWOULDBLOCK;
850 goto exit;
851 }
852
853 if ((res = wait_event_interruptible(
854 *sock->sk->sk_sleep,
855 ((q_len = skb_queue_len(&sock->sk->sk_receive_queue)) ||
856 (sock->state == SS_DISCONNECTING))) )) {
857 goto exit;
858 }
859
860 /* Catch attempt to receive on an already terminated connection */
861 /* [THIS CHECK MAY OVERLAP WITH AN EARLIER CHECK] */
862
863 if (!q_len) {
864 res = -ENOTCONN;
865 goto exit;
866 }
867
868 /* Get access to first message in receive queue */
869
870 buf = skb_peek(&sock->sk->sk_receive_queue);
871 msg = buf_msg(buf);
872 sz = msg_data_sz(msg);
873 err = msg_errcode(msg);
874
875 /* Complete connection setup for an implied connect */
876
877 if (unlikely(sock->state == SS_CONNECTING)) {
878 if ((res = auto_connect(sock, tsock, msg)))
879 goto exit;
880 }
881
882 /* Discard an empty non-errored message & try again */
883
884 if ((!sz) && (!err)) {
885 advance_queue(tsock);
886 goto restart;
887 }
888
889 /* Capture sender's address (optional) */
890
891 set_orig_addr(m, msg);
892
893 /* Capture ancillary data (optional) */
894
895 if ((res = anc_data_recv(m, msg, tsock->p)))
896 goto exit;
897
898 /* Capture message data (if valid) & compute return value (always) */
899
900 if (!err) {
901 if (unlikely(buf_len < sz)) {
902 sz = buf_len;
903 m->msg_flags |= MSG_TRUNC;
904 }
905 if (unlikely(copy_to_user(m->msg_iov->iov_base, msg_data(msg),
906 sz))) {
907 res = -EFAULT;
908 goto exit;
909 }
910 res = sz;
911 } else {
912 if ((sock->state == SS_READY) ||
913 ((err == TIPC_CONN_SHUTDOWN) || m->msg_control))
914 res = 0;
915 else
916 res = -ECONNRESET;
917 }
918
919 /* Consume received message (optional) */
920
921 if (likely(!(flags & MSG_PEEK))) {
922 if ((sock->state != SS_READY) &&
923 (++tsock->p->conn_unacked >= TIPC_FLOW_CONTROL_WIN))
924 tipc_acknowledge(tsock->p->ref, tsock->p->conn_unacked);
925 advance_queue(tsock);
926 }
927 exit:
928 mutex_unlock(&tsock->lock);
929 return res;
930 }
931
932 /**
933 * recv_stream - receive stream-oriented data
934 * @iocb: (unused)
935 * @m: descriptor for message info
936 * @buf_len: total size of user buffer area
937 * @flags: receive flags
938 *
939 * Used for SOCK_STREAM messages only. If not enough data is available
940 * will optionally wait for more; never truncates data.
941 *
942 * Returns size of returned message data, errno otherwise
943 */
944
945 static int recv_stream(struct kiocb *iocb, struct socket *sock,
946 struct msghdr *m, size_t buf_len, int flags)
947 {
948 struct tipc_sock *tsock = tipc_sk(sock->sk);
949 struct sk_buff *buf;
950 struct tipc_msg *msg;
951 unsigned int q_len;
952 unsigned int sz;
953 int sz_to_copy;
954 int sz_copied = 0;
955 int needed;
956 char __user *crs = m->msg_iov->iov_base;
957 unsigned char *buf_crs;
958 u32 err;
959 int res;
960
961 /* Currently doesn't support receiving into multiple iovec entries */
962
963 if (m->msg_iovlen != 1)
964 return -EOPNOTSUPP;
965
966 /* Catch invalid receive attempts */
967
968 if (unlikely(!buf_len))
969 return -EINVAL;
970
971 if (unlikely(sock->state == SS_DISCONNECTING)) {
972 if (skb_queue_len(&sock->sk->sk_receive_queue) == 0)
973 return -ENOTCONN;
974 } else if (unlikely(sock->state != SS_CONNECTED))
975 return -ENOTCONN;
976
977 /* Look for a message in receive queue; wait if necessary */
978
979 if (unlikely(mutex_lock_interruptible(&tsock->lock)))
980 return -ERESTARTSYS;
981
982 restart:
983 if (unlikely((skb_queue_len(&sock->sk->sk_receive_queue) == 0) &&
984 (flags & MSG_DONTWAIT))) {
985 res = -EWOULDBLOCK;
986 goto exit;
987 }
988
989 if ((res = wait_event_interruptible(
990 *sock->sk->sk_sleep,
991 ((q_len = skb_queue_len(&sock->sk->sk_receive_queue)) ||
992 (sock->state == SS_DISCONNECTING))) )) {
993 goto exit;
994 }
995
996 /* Catch attempt to receive on an already terminated connection */
997 /* [THIS CHECK MAY OVERLAP WITH AN EARLIER CHECK] */
998
999 if (!q_len) {
1000 res = -ENOTCONN;
1001 goto exit;
1002 }
1003
1004 /* Get access to first message in receive queue */
1005
1006 buf = skb_peek(&sock->sk->sk_receive_queue);
1007 msg = buf_msg(buf);
1008 sz = msg_data_sz(msg);
1009 err = msg_errcode(msg);
1010
1011 /* Discard an empty non-errored message & try again */
1012
1013 if ((!sz) && (!err)) {
1014 advance_queue(tsock);
1015 goto restart;
1016 }
1017
1018 /* Optionally capture sender's address & ancillary data of first msg */
1019
1020 if (sz_copied == 0) {
1021 set_orig_addr(m, msg);
1022 if ((res = anc_data_recv(m, msg, tsock->p)))
1023 goto exit;
1024 }
1025
1026 /* Capture message data (if valid) & compute return value (always) */
1027
1028 if (!err) {
1029 buf_crs = (unsigned char *)(TIPC_SKB_CB(buf)->handle);
1030 sz = (unsigned char *)msg + msg_size(msg) - buf_crs;
1031
1032 needed = (buf_len - sz_copied);
1033 sz_to_copy = (sz <= needed) ? sz : needed;
1034 if (unlikely(copy_to_user(crs, buf_crs, sz_to_copy))) {
1035 res = -EFAULT;
1036 goto exit;
1037 }
1038 sz_copied += sz_to_copy;
1039
1040 if (sz_to_copy < sz) {
1041 if (!(flags & MSG_PEEK))
1042 TIPC_SKB_CB(buf)->handle = buf_crs + sz_to_copy;
1043 goto exit;
1044 }
1045
1046 crs += sz_to_copy;
1047 } else {
1048 if (sz_copied != 0)
1049 goto exit; /* can't add error msg to valid data */
1050
1051 if ((err == TIPC_CONN_SHUTDOWN) || m->msg_control)
1052 res = 0;
1053 else
1054 res = -ECONNRESET;
1055 }
1056
1057 /* Consume received message (optional) */
1058
1059 if (likely(!(flags & MSG_PEEK))) {
1060 if (unlikely(++tsock->p->conn_unacked >= TIPC_FLOW_CONTROL_WIN))
1061 tipc_acknowledge(tsock->p->ref, tsock->p->conn_unacked);
1062 advance_queue(tsock);
1063 }
1064
1065 /* Loop around if more data is required */
1066
1067 if ((sz_copied < buf_len) /* didn't get all requested data */
1068 && (!skb_queue_empty(&sock->sk->sk_receive_queue) ||
1069 (flags & MSG_WAITALL))
1070 /* ... and more is ready or required */
1071 && (!(flags & MSG_PEEK)) /* ... and aren't just peeking at data */
1072 && (!err) /* ... and haven't reached a FIN */
1073 )
1074 goto restart;
1075
1076 exit:
1077 mutex_unlock(&tsock->lock);
1078 return sz_copied ? sz_copied : res;
1079 }
1080
1081 /**
1082 * queue_overloaded - test if queue overload condition exists
1083 * @queue_size: current size of queue
1084 * @base: nominal maximum size of queue
1085 * @msg: message to be added to queue
1086 *
1087 * Returns 1 if queue is currently overloaded, 0 otherwise
1088 */
1089
1090 static int queue_overloaded(u32 queue_size, u32 base, struct tipc_msg *msg)
1091 {
1092 u32 threshold;
1093 u32 imp = msg_importance(msg);
1094
1095 if (imp == TIPC_LOW_IMPORTANCE)
1096 threshold = base;
1097 else if (imp == TIPC_MEDIUM_IMPORTANCE)
1098 threshold = base * 2;
1099 else if (imp == TIPC_HIGH_IMPORTANCE)
1100 threshold = base * 100;
1101 else
1102 return 0;
1103
1104 if (msg_connected(msg))
1105 threshold *= 4;
1106
1107 return (queue_size > threshold);
1108 }
1109
1110 /**
1111 * async_disconnect - wrapper function used to disconnect port
1112 * @portref: TIPC port reference (passed as pointer-sized value)
1113 */
1114
1115 static void async_disconnect(unsigned long portref)
1116 {
1117 tipc_disconnect((u32)portref);
1118 }
1119
1120 /**
1121 * dispatch - handle arriving message
1122 * @tport: TIPC port that received message
1123 * @buf: message
1124 *
1125 * Called with port locked. Must not take socket lock to avoid deadlock risk.
1126 *
1127 * Returns TIPC error status code (TIPC_OK if message is not to be rejected)
1128 */
1129
1130 static u32 dispatch(struct tipc_port *tport, struct sk_buff *buf)
1131 {
1132 struct tipc_msg *msg = buf_msg(buf);
1133 struct tipc_sock *tsock = (struct tipc_sock *)tport->usr_handle;
1134 struct socket *sock;
1135 u32 recv_q_len;
1136
1137 /* Reject message if socket is closing */
1138
1139 if (!tsock)
1140 return TIPC_ERR_NO_PORT;
1141
1142 /* Reject message if it is wrong sort of message for socket */
1143
1144 /*
1145 * WOULD IT BE BETTER TO JUST DISCARD THESE MESSAGES INSTEAD?
1146 * "NO PORT" ISN'T REALLY THE RIGHT ERROR CODE, AND THERE MAY
1147 * BE SECURITY IMPLICATIONS INHERENT IN REJECTING INVALID TRAFFIC
1148 */
1149 sock = tsock->sk.sk_socket;
1150 if (sock->state == SS_READY) {
1151 if (msg_connected(msg)) {
1152 msg_dbg(msg, "dispatch filter 1\n");
1153 return TIPC_ERR_NO_PORT;
1154 }
1155 } else {
1156 if (msg_mcast(msg)) {
1157 msg_dbg(msg, "dispatch filter 2\n");
1158 return TIPC_ERR_NO_PORT;
1159 }
1160 if (sock->state == SS_CONNECTED) {
1161 if (!msg_connected(msg)) {
1162 msg_dbg(msg, "dispatch filter 3\n");
1163 return TIPC_ERR_NO_PORT;
1164 }
1165 }
1166 else if (sock->state == SS_CONNECTING) {
1167 if (!msg_connected(msg) && (msg_errcode(msg) == 0)) {
1168 msg_dbg(msg, "dispatch filter 4\n");
1169 return TIPC_ERR_NO_PORT;
1170 }
1171 }
1172 else if (sock->state == SS_LISTENING) {
1173 if (msg_connected(msg) || msg_errcode(msg)) {
1174 msg_dbg(msg, "dispatch filter 5\n");
1175 return TIPC_ERR_NO_PORT;
1176 }
1177 }
1178 else if (sock->state == SS_DISCONNECTING) {
1179 msg_dbg(msg, "dispatch filter 6\n");
1180 return TIPC_ERR_NO_PORT;
1181 }
1182 else /* (sock->state == SS_UNCONNECTED) */ {
1183 if (msg_connected(msg) || msg_errcode(msg)) {
1184 msg_dbg(msg, "dispatch filter 7\n");
1185 return TIPC_ERR_NO_PORT;
1186 }
1187 }
1188 }
1189
1190 /* Reject message if there isn't room to queue it */
1191
1192 if (unlikely((u32)atomic_read(&tipc_queue_size) >
1193 OVERLOAD_LIMIT_BASE)) {
1194 if (queue_overloaded(atomic_read(&tipc_queue_size),
1195 OVERLOAD_LIMIT_BASE, msg))
1196 return TIPC_ERR_OVERLOAD;
1197 }
1198 recv_q_len = skb_queue_len(&tsock->sk.sk_receive_queue);
1199 if (unlikely(recv_q_len > (OVERLOAD_LIMIT_BASE / 2))) {
1200 if (queue_overloaded(recv_q_len,
1201 OVERLOAD_LIMIT_BASE / 2, msg))
1202 return TIPC_ERR_OVERLOAD;
1203 }
1204
1205 /* Initiate connection termination for an incoming 'FIN' */
1206
1207 if (unlikely(msg_errcode(msg) && (sock->state == SS_CONNECTED))) {
1208 sock->state = SS_DISCONNECTING;
1209 /* Note: Use signal since port lock is already taken! */
1210 tipc_k_signal((Handler)async_disconnect, tport->ref);
1211 }
1212
1213 /* Enqueue message (finally!) */
1214
1215 msg_dbg(msg,"<DISP<: ");
1216 TIPC_SKB_CB(buf)->handle = msg_data(msg);
1217 atomic_inc(&tipc_queue_size);
1218 skb_queue_tail(&sock->sk->sk_receive_queue, buf);
1219
1220 if (waitqueue_active(sock->sk->sk_sleep))
1221 wake_up_interruptible(sock->sk->sk_sleep);
1222 return TIPC_OK;
1223 }
1224
1225 /**
1226 * wakeupdispatch - wake up port after congestion
1227 * @tport: port to wakeup
1228 *
1229 * Called with port lock on.
1230 */
1231
1232 static void wakeupdispatch(struct tipc_port *tport)
1233 {
1234 struct tipc_sock *tsock = (struct tipc_sock *)tport->usr_handle;
1235
1236 if (waitqueue_active(tsock->sk.sk_sleep))
1237 wake_up_interruptible(tsock->sk.sk_sleep);
1238 }
1239
1240 /**
1241 * connect - establish a connection to another TIPC port
1242 * @sock: socket structure
1243 * @dest: socket address for destination port
1244 * @destlen: size of socket address data structure
1245 * @flags: (unused)
1246 *
1247 * Returns 0 on success, errno otherwise
1248 */
1249
1250 static int connect(struct socket *sock, struct sockaddr *dest, int destlen,
1251 int flags)
1252 {
1253 struct tipc_sock *tsock = tipc_sk(sock->sk);
1254 struct sockaddr_tipc *dst = (struct sockaddr_tipc *)dest;
1255 struct msghdr m = {NULL,};
1256 struct sk_buff *buf;
1257 struct tipc_msg *msg;
1258 int res;
1259
1260 /* For now, TIPC does not allow use of connect() with DGRAM or RDM types */
1261
1262 if (sock->state == SS_READY)
1263 return -EOPNOTSUPP;
1264
1265 /* Issue Posix-compliant error code if socket is in the wrong state */
1266
1267 if (sock->state == SS_LISTENING)
1268 return -EOPNOTSUPP;
1269 if (sock->state == SS_CONNECTING)
1270 return -EALREADY;
1271 if (sock->state != SS_UNCONNECTED)
1272 return -EISCONN;
1273
1274 /*
1275 * Reject connection attempt using multicast address
1276 *
1277 * Note: send_msg() validates the rest of the address fields,
1278 * so there's no need to do it here
1279 */
1280
1281 if (dst->addrtype == TIPC_ADDR_MCAST)
1282 return -EINVAL;
1283
1284 /* Send a 'SYN-' to destination */
1285
1286 m.msg_name = dest;
1287 m.msg_namelen = destlen;
1288 if ((res = send_msg(NULL, sock, &m, 0)) < 0) {
1289 sock->state = SS_DISCONNECTING;
1290 return res;
1291 }
1292
1293 if (mutex_lock_interruptible(&tsock->lock))
1294 return -ERESTARTSYS;
1295
1296 /* Wait for destination's 'ACK' response */
1297
1298 res = wait_event_interruptible_timeout(*sock->sk->sk_sleep,
1299 skb_queue_len(&sock->sk->sk_receive_queue),
1300 sock->sk->sk_rcvtimeo);
1301 buf = skb_peek(&sock->sk->sk_receive_queue);
1302 if (res > 0) {
1303 msg = buf_msg(buf);
1304 res = auto_connect(sock, tsock, msg);
1305 if (!res) {
1306 if (!msg_data_sz(msg))
1307 advance_queue(tsock);
1308 }
1309 } else {
1310 if (res == 0) {
1311 res = -ETIMEDOUT;
1312 } else
1313 { /* leave "res" unchanged */ }
1314 sock->state = SS_DISCONNECTING;
1315 }
1316
1317 mutex_unlock(&tsock->lock);
1318 return res;
1319 }
1320
1321 /**
1322 * listen - allow socket to listen for incoming connections
1323 * @sock: socket structure
1324 * @len: (unused)
1325 *
1326 * Returns 0 on success, errno otherwise
1327 */
1328
1329 static int listen(struct socket *sock, int len)
1330 {
1331 /* REQUIRES SOCKET LOCKING OF SOME SORT? */
1332
1333 if (sock->state == SS_READY)
1334 return -EOPNOTSUPP;
1335 if (sock->state != SS_UNCONNECTED)
1336 return -EINVAL;
1337 sock->state = SS_LISTENING;
1338 return 0;
1339 }
1340
1341 /**
1342 * accept - wait for connection request
1343 * @sock: listening socket
1344 * @newsock: new socket that is to be connected
1345 * @flags: file-related flags associated with socket
1346 *
1347 * Returns 0 on success, errno otherwise
1348 */
1349
1350 static int accept(struct socket *sock, struct socket *newsock, int flags)
1351 {
1352 struct tipc_sock *tsock = tipc_sk(sock->sk);
1353 struct sk_buff *buf;
1354 int res = -EFAULT;
1355
1356 if (sock->state == SS_READY)
1357 return -EOPNOTSUPP;
1358 if (sock->state != SS_LISTENING)
1359 return -EINVAL;
1360
1361 if (unlikely((skb_queue_len(&sock->sk->sk_receive_queue) == 0) &&
1362 (flags & O_NONBLOCK)))
1363 return -EWOULDBLOCK;
1364
1365 if (mutex_lock_interruptible(&tsock->lock))
1366 return -ERESTARTSYS;
1367
1368 if (wait_event_interruptible(*sock->sk->sk_sleep,
1369 skb_queue_len(&sock->sk->sk_receive_queue))) {
1370 res = -ERESTARTSYS;
1371 goto exit;
1372 }
1373 buf = skb_peek(&sock->sk->sk_receive_queue);
1374
1375 res = tipc_create(sock_net(sock->sk), newsock, 0);
1376 if (!res) {
1377 struct tipc_sock *new_tsock = tipc_sk(newsock->sk);
1378 struct tipc_portid id;
1379 struct tipc_msg *msg = buf_msg(buf);
1380 u32 new_ref = new_tsock->p->ref;
1381
1382 id.ref = msg_origport(msg);
1383 id.node = msg_orignode(msg);
1384 tipc_connect2port(new_ref, &id);
1385 newsock->state = SS_CONNECTED;
1386
1387 tipc_set_portimportance(new_ref, msg_importance(msg));
1388 if (msg_named(msg)) {
1389 new_tsock->p->conn_type = msg_nametype(msg);
1390 new_tsock->p->conn_instance = msg_nameinst(msg);
1391 }
1392
1393 /*
1394 * Respond to 'SYN-' by discarding it & returning 'ACK'-.
1395 * Respond to 'SYN+' by queuing it on new socket.
1396 */
1397
1398 msg_dbg(msg,"<ACC<: ");
1399 if (!msg_data_sz(msg)) {
1400 struct msghdr m = {NULL,};
1401
1402 send_packet(NULL, newsock, &m, 0);
1403 advance_queue(tsock);
1404 } else {
1405 sock_lock(tsock);
1406 skb_dequeue(&sock->sk->sk_receive_queue);
1407 sock_unlock(tsock);
1408 skb_queue_head(&newsock->sk->sk_receive_queue, buf);
1409 }
1410 }
1411 exit:
1412 mutex_unlock(&tsock->lock);
1413 return res;
1414 }
1415
1416 /**
1417 * shutdown - shutdown socket connection
1418 * @sock: socket structure
1419 * @how: direction to close (must be SHUT_RDWR)
1420 *
1421 * Terminates connection (if necessary), then purges socket's receive queue.
1422 *
1423 * Returns 0 on success, errno otherwise
1424 */
1425
1426 static int shutdown(struct socket *sock, int how)
1427 {
1428 struct tipc_sock* tsock = tipc_sk(sock->sk);
1429 struct sk_buff *buf;
1430 int res;
1431
1432 if (how != SHUT_RDWR)
1433 return -EINVAL;
1434
1435 if (mutex_lock_interruptible(&tsock->lock))
1436 return -ERESTARTSYS;
1437
1438 sock_lock(tsock);
1439
1440 switch (sock->state) {
1441 case SS_CONNECTED:
1442
1443 /* Send 'FIN+' or 'FIN-' message to peer */
1444
1445 sock_unlock(tsock);
1446 restart:
1447 if ((buf = skb_dequeue(&sock->sk->sk_receive_queue))) {
1448 atomic_dec(&tipc_queue_size);
1449 if (TIPC_SKB_CB(buf)->handle != msg_data(buf_msg(buf))) {
1450 buf_discard(buf);
1451 goto restart;
1452 }
1453 tipc_reject_msg(buf, TIPC_CONN_SHUTDOWN);
1454 }
1455 else {
1456 tipc_shutdown(tsock->p->ref);
1457 }
1458 sock_lock(tsock);
1459
1460 /* fall through */
1461
1462 case SS_DISCONNECTING:
1463
1464 /* Discard any unreceived messages */
1465
1466 while ((buf = skb_dequeue(&sock->sk->sk_receive_queue))) {
1467 atomic_dec(&tipc_queue_size);
1468 buf_discard(buf);
1469 }
1470 tsock->p->conn_unacked = 0;
1471
1472 /* fall through */
1473
1474 case SS_CONNECTING:
1475 sock->state = SS_DISCONNECTING;
1476 res = 0;
1477 break;
1478
1479 default:
1480 res = -ENOTCONN;
1481 }
1482
1483 sock_unlock(tsock);
1484
1485 mutex_unlock(&tsock->lock);
1486 return res;
1487 }
1488
1489 /**
1490 * setsockopt - set socket option
1491 * @sock: socket structure
1492 * @lvl: option level
1493 * @opt: option identifier
1494 * @ov: pointer to new option value
1495 * @ol: length of option value
1496 *
1497 * For stream sockets only, accepts and ignores all IPPROTO_TCP options
1498 * (to ease compatibility).
1499 *
1500 * Returns 0 on success, errno otherwise
1501 */
1502
1503 static int setsockopt(struct socket *sock,
1504 int lvl, int opt, char __user *ov, int ol)
1505 {
1506 struct tipc_sock *tsock = tipc_sk(sock->sk);
1507 u32 value;
1508 int res;
1509
1510 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
1511 return 0;
1512 if (lvl != SOL_TIPC)
1513 return -ENOPROTOOPT;
1514 if (ol < sizeof(value))
1515 return -EINVAL;
1516 if ((res = get_user(value, (u32 __user *)ov)))
1517 return res;
1518
1519 if (mutex_lock_interruptible(&tsock->lock))
1520 return -ERESTARTSYS;
1521
1522 switch (opt) {
1523 case TIPC_IMPORTANCE:
1524 res = tipc_set_portimportance(tsock->p->ref, value);
1525 break;
1526 case TIPC_SRC_DROPPABLE:
1527 if (sock->type != SOCK_STREAM)
1528 res = tipc_set_portunreliable(tsock->p->ref, value);
1529 else
1530 res = -ENOPROTOOPT;
1531 break;
1532 case TIPC_DEST_DROPPABLE:
1533 res = tipc_set_portunreturnable(tsock->p->ref, value);
1534 break;
1535 case TIPC_CONN_TIMEOUT:
1536 sock->sk->sk_rcvtimeo = msecs_to_jiffies(value);
1537 break;
1538 default:
1539 res = -EINVAL;
1540 }
1541
1542 mutex_unlock(&tsock->lock);
1543 return res;
1544 }
1545
1546 /**
1547 * getsockopt - get socket option
1548 * @sock: socket structure
1549 * @lvl: option level
1550 * @opt: option identifier
1551 * @ov: receptacle for option value
1552 * @ol: receptacle for length of option value
1553 *
1554 * For stream sockets only, returns 0 length result for all IPPROTO_TCP options
1555 * (to ease compatibility).
1556 *
1557 * Returns 0 on success, errno otherwise
1558 */
1559
1560 static int getsockopt(struct socket *sock,
1561 int lvl, int opt, char __user *ov, int __user *ol)
1562 {
1563 struct tipc_sock *tsock = tipc_sk(sock->sk);
1564 int len;
1565 u32 value;
1566 int res;
1567
1568 if ((lvl == IPPROTO_TCP) && (sock->type == SOCK_STREAM))
1569 return put_user(0, ol);
1570 if (lvl != SOL_TIPC)
1571 return -ENOPROTOOPT;
1572 if ((res = get_user(len, ol)))
1573 return res;
1574
1575 if (mutex_lock_interruptible(&tsock->lock))
1576 return -ERESTARTSYS;
1577
1578 switch (opt) {
1579 case TIPC_IMPORTANCE:
1580 res = tipc_portimportance(tsock->p->ref, &value);
1581 break;
1582 case TIPC_SRC_DROPPABLE:
1583 res = tipc_portunreliable(tsock->p->ref, &value);
1584 break;
1585 case TIPC_DEST_DROPPABLE:
1586 res = tipc_portunreturnable(tsock->p->ref, &value);
1587 break;
1588 case TIPC_CONN_TIMEOUT:
1589 value = jiffies_to_msecs(sock->sk->sk_rcvtimeo);
1590 break;
1591 default:
1592 res = -EINVAL;
1593 }
1594
1595 if (res) {
1596 /* "get" failed */
1597 }
1598 else if (len < sizeof(value)) {
1599 res = -EINVAL;
1600 }
1601 else if ((res = copy_to_user(ov, &value, sizeof(value)))) {
1602 /* couldn't return value */
1603 }
1604 else {
1605 res = put_user(sizeof(value), ol);
1606 }
1607
1608 mutex_unlock(&tsock->lock);
1609 return res;
1610 }
1611
1612 /**
1613 * Protocol switches for the various types of TIPC sockets
1614 */
1615
1616 static const struct proto_ops msg_ops = {
1617 .owner = THIS_MODULE,
1618 .family = AF_TIPC,
1619 .release = release,
1620 .bind = bind,
1621 .connect = connect,
1622 .socketpair = sock_no_socketpair,
1623 .accept = accept,
1624 .getname = get_name,
1625 .poll = poll,
1626 .ioctl = sock_no_ioctl,
1627 .listen = listen,
1628 .shutdown = shutdown,
1629 .setsockopt = setsockopt,
1630 .getsockopt = getsockopt,
1631 .sendmsg = send_msg,
1632 .recvmsg = recv_msg,
1633 .mmap = sock_no_mmap,
1634 .sendpage = sock_no_sendpage
1635 };
1636
1637 static const struct proto_ops packet_ops = {
1638 .owner = THIS_MODULE,
1639 .family = AF_TIPC,
1640 .release = release,
1641 .bind = bind,
1642 .connect = connect,
1643 .socketpair = sock_no_socketpair,
1644 .accept = accept,
1645 .getname = get_name,
1646 .poll = poll,
1647 .ioctl = sock_no_ioctl,
1648 .listen = listen,
1649 .shutdown = shutdown,
1650 .setsockopt = setsockopt,
1651 .getsockopt = getsockopt,
1652 .sendmsg = send_packet,
1653 .recvmsg = recv_msg,
1654 .mmap = sock_no_mmap,
1655 .sendpage = sock_no_sendpage
1656 };
1657
1658 static const struct proto_ops stream_ops = {
1659 .owner = THIS_MODULE,
1660 .family = AF_TIPC,
1661 .release = release,
1662 .bind = bind,
1663 .connect = connect,
1664 .socketpair = sock_no_socketpair,
1665 .accept = accept,
1666 .getname = get_name,
1667 .poll = poll,
1668 .ioctl = sock_no_ioctl,
1669 .listen = listen,
1670 .shutdown = shutdown,
1671 .setsockopt = setsockopt,
1672 .getsockopt = getsockopt,
1673 .sendmsg = send_stream,
1674 .recvmsg = recv_stream,
1675 .mmap = sock_no_mmap,
1676 .sendpage = sock_no_sendpage
1677 };
1678
1679 static const struct net_proto_family tipc_family_ops = {
1680 .owner = THIS_MODULE,
1681 .family = AF_TIPC,
1682 .create = tipc_create
1683 };
1684
1685 static struct proto tipc_proto = {
1686 .name = "TIPC",
1687 .owner = THIS_MODULE,
1688 .obj_size = sizeof(struct tipc_sock)
1689 };
1690
1691 /**
1692 * tipc_socket_init - initialize TIPC socket interface
1693 *
1694 * Returns 0 on success, errno otherwise
1695 */
1696 int tipc_socket_init(void)
1697 {
1698 int res;
1699
1700 res = proto_register(&tipc_proto, 1);
1701 if (res) {
1702 err("Failed to register TIPC protocol type\n");
1703 goto out;
1704 }
1705
1706 res = sock_register(&tipc_family_ops);
1707 if (res) {
1708 err("Failed to register TIPC socket type\n");
1709 proto_unregister(&tipc_proto);
1710 goto out;
1711 }
1712
1713 sockets_enabled = 1;
1714 out:
1715 return res;
1716 }
1717
1718 /**
1719 * tipc_socket_stop - stop TIPC socket interface
1720 */
1721 void tipc_socket_stop(void)
1722 {
1723 if (!sockets_enabled)
1724 return;
1725
1726 sockets_enabled = 0;
1727 sock_unregister(tipc_family_ops.family);
1728 proto_unregister(&tipc_proto);
1729 }
1730
This page took 0.07157 seconds and 6 git commands to generate.