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