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