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