2 * NET4: Implementation of BSD Unix domain sockets.
4 * Authors: Alan Cox, <alan.cox@linux.org>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
11 * Version: $Id: af_unix.c,v 1.133 2002/02/08 03:57:19 davem Exp $
14 * Linus Torvalds : Assorted bug cures.
15 * Niibe Yutaka : async I/O support.
16 * Carsten Paeth : PF_UNIX check, address fixes.
17 * Alan Cox : Limit size of allocated blocks.
18 * Alan Cox : Fixed the stupid socketpair bug.
19 * Alan Cox : BSD compatibility fine tuning.
20 * Alan Cox : Fixed a bug in connect when interrupted.
21 * Alan Cox : Sorted out a proper draft version of
22 * file descriptor passing hacked up from
24 * Marty Leisner : Fixes to fd passing
25 * Nick Nevin : recvmsg bugfix.
26 * Alan Cox : Started proper garbage collector
27 * Heiko EiBfeldt : Missing verify_area check
28 * Alan Cox : Started POSIXisms
29 * Andreas Schwab : Replace inode by dentry for proper
31 * Kirk Petersen : Made this a module
32 * Christoph Rohland : Elegant non-blocking accept/connect algorithm.
34 * Alexey Kuznetosv : Repaired (I hope) bugs introduces
35 * by above two patches.
36 * Andrea Arcangeli : If possible we block in connect(2)
37 * if the max backlog of the listen socket
38 * is been reached. This won't break
39 * old apps and it will avoid huge amount
40 * of socks hashed (this for unix_gc()
41 * performances reasons).
42 * Security fix that limits the max
43 * number of socks to 2*max_files and
44 * the number of skb queueable in the
46 * Artur Skawina : Hash function optimizations
47 * Alexey Kuznetsov : Full scale SMP. Lot of bugs are introduced 8)
48 * Malcolm Beattie : Set peercred for socketpair
49 * Michal Ostrowski : Module initialization cleanup.
50 * Arnaldo C. Melo : Remove MOD_{INC,DEC}_USE_COUNT,
51 * the core infrastructure is doing that
52 * for all net proto families now (2.5.69+)
55 * Known differences from reference BSD that was tested:
58 * ECONNREFUSED is not returned from one end of a connected() socket to the
59 * other the moment one end closes.
60 * fstat() doesn't return st_dev=0, and give the blksize as high water mark
61 * and a fake inode identifier (nor the BSD first socket fstat twice bug).
63 * accept() returns a path name even if the connecting socket has closed
64 * in the meantime (BSD loses the path and gives up).
65 * accept() returns 0 length path for an unbound connector. BSD returns 16
66 * and a null first byte in the path (but not for gethost/peername - BSD bug ??)
67 * socketpair(...SOCK_RAW..) doesn't panic the kernel.
68 * BSD af_unix apparently has connect forgetting to block properly.
69 * (need to check this with the POSIX spec in detail)
71 * Differences from 2.0.0-11-... (ANK)
72 * Bug fixes and improvements.
73 * - client shutdown killed server socket.
74 * - removed all useless cli/sti pairs.
76 * Semantic changes/extensions.
77 * - generic control message passing.
78 * - SCM_CREDENTIALS control message.
79 * - "Abstract" (not FS based) socket bindings.
80 * Abstract names are sequences of bytes (not zero terminated)
81 * started by 0, so that this name space does not intersect
85 #include <linux/module.h>
86 #include <linux/config.h>
87 #include <linux/kernel.h>
88 #include <linux/signal.h>
89 #include <linux/sched.h>
90 #include <linux/errno.h>
91 #include <linux/string.h>
92 #include <linux/stat.h>
93 #include <linux/dcache.h>
94 #include <linux/namei.h>
95 #include <linux/socket.h>
97 #include <linux/fcntl.h>
98 #include <linux/termios.h>
99 #include <linux/sockios.h>
100 #include <linux/net.h>
101 #include <linux/in.h>
102 #include <linux/fs.h>
103 #include <linux/slab.h>
104 #include <asm/uaccess.h>
105 #include <linux/skbuff.h>
106 #include <linux/netdevice.h>
107 #include <net/sock.h>
108 #include <net/tcp_states.h>
109 #include <net/af_unix.h>
110 #include <linux/proc_fs.h>
111 #include <linux/seq_file.h>
113 #include <linux/init.h>
114 #include <linux/poll.h>
115 #include <linux/smp_lock.h>
116 #include <linux/rtnetlink.h>
117 #include <linux/mount.h>
118 #include <net/checksum.h>
119 #include <linux/security.h>
121 int sysctl_unix_max_dgram_qlen
= 10;
123 struct hlist_head unix_socket_table
[UNIX_HASH_SIZE
+ 1];
124 DEFINE_RWLOCK(unix_table_lock
);
125 static atomic_t unix_nr_socks
= ATOMIC_INIT(0);
127 #define unix_sockets_unbound (&unix_socket_table[UNIX_HASH_SIZE])
129 #define UNIX_ABSTRACT(sk) (unix_sk(sk)->addr->hash != UNIX_HASH_SIZE)
132 * SMP locking strategy:
133 * hash table is protected with rwlock unix_table_lock
134 * each socket state is protected by separate rwlock.
137 static inline unsigned unix_hash_fold(unsigned hash
)
141 return hash
&(UNIX_HASH_SIZE
-1);
144 #define unix_peer(sk) (unix_sk(sk)->peer)
146 static inline int unix_our_peer(struct sock
*sk
, struct sock
*osk
)
148 return unix_peer(osk
) == sk
;
151 static inline int unix_may_send(struct sock
*sk
, struct sock
*osk
)
153 return (unix_peer(osk
) == NULL
|| unix_our_peer(sk
, osk
));
156 static struct sock
*unix_peer_get(struct sock
*s
)
164 unix_state_runlock(s
);
168 static inline void unix_release_addr(struct unix_address
*addr
)
170 if (atomic_dec_and_test(&addr
->refcnt
))
175 * Check unix socket name:
176 * - should be not zero length.
177 * - if started by not zero, should be NULL terminated (FS object)
178 * - if started by zero, it is abstract name.
181 static int unix_mkname(struct sockaddr_un
* sunaddr
, int len
, unsigned *hashp
)
183 if (len
<= sizeof(short) || len
> sizeof(*sunaddr
))
185 if (!sunaddr
|| sunaddr
->sun_family
!= AF_UNIX
)
187 if (sunaddr
->sun_path
[0]) {
189 * This may look like an off by one error but it is a bit more
190 * subtle. 108 is the longest valid AF_UNIX path for a binding.
191 * sun_path[108] doesnt as such exist. However in kernel space
192 * we are guaranteed that it is a valid memory location in our
193 * kernel address buffer.
195 ((char *)sunaddr
)[len
]=0;
196 len
= strlen(sunaddr
->sun_path
)+1+sizeof(short);
200 *hashp
= unix_hash_fold(csum_partial((char*)sunaddr
, len
, 0));
204 static void __unix_remove_socket(struct sock
*sk
)
206 sk_del_node_init(sk
);
209 static void __unix_insert_socket(struct hlist_head
*list
, struct sock
*sk
)
211 BUG_TRAP(sk_unhashed(sk
));
212 sk_add_node(sk
, list
);
215 static inline void unix_remove_socket(struct sock
*sk
)
217 write_lock(&unix_table_lock
);
218 __unix_remove_socket(sk
);
219 write_unlock(&unix_table_lock
);
222 static inline void unix_insert_socket(struct hlist_head
*list
, struct sock
*sk
)
224 write_lock(&unix_table_lock
);
225 __unix_insert_socket(list
, sk
);
226 write_unlock(&unix_table_lock
);
229 static struct sock
*__unix_find_socket_byname(struct sockaddr_un
*sunname
,
230 int len
, int type
, unsigned hash
)
233 struct hlist_node
*node
;
235 sk_for_each(s
, node
, &unix_socket_table
[hash
^ type
]) {
236 struct unix_sock
*u
= unix_sk(s
);
238 if (u
->addr
->len
== len
&&
239 !memcmp(u
->addr
->name
, sunname
, len
))
247 static inline struct sock
*unix_find_socket_byname(struct sockaddr_un
*sunname
,
253 read_lock(&unix_table_lock
);
254 s
= __unix_find_socket_byname(sunname
, len
, type
, hash
);
257 read_unlock(&unix_table_lock
);
261 static struct sock
*unix_find_socket_byinode(struct inode
*i
)
264 struct hlist_node
*node
;
266 read_lock(&unix_table_lock
);
268 &unix_socket_table
[i
->i_ino
& (UNIX_HASH_SIZE
- 1)]) {
269 struct dentry
*dentry
= unix_sk(s
)->dentry
;
271 if(dentry
&& dentry
->d_inode
== i
)
279 read_unlock(&unix_table_lock
);
283 static inline int unix_writable(struct sock
*sk
)
285 return (atomic_read(&sk
->sk_wmem_alloc
) << 2) <= sk
->sk_sndbuf
;
288 static void unix_write_space(struct sock
*sk
)
290 read_lock(&sk
->sk_callback_lock
);
291 if (unix_writable(sk
)) {
292 if (sk
->sk_sleep
&& waitqueue_active(sk
->sk_sleep
))
293 wake_up_interruptible(sk
->sk_sleep
);
294 sk_wake_async(sk
, 2, POLL_OUT
);
296 read_unlock(&sk
->sk_callback_lock
);
299 /* When dgram socket disconnects (or changes its peer), we clear its receive
300 * queue of packets arrived from previous peer. First, it allows to do
301 * flow control based only on wmem_alloc; second, sk connected to peer
302 * may receive messages only from that peer. */
303 static void unix_dgram_disconnected(struct sock
*sk
, struct sock
*other
)
305 if (!skb_queue_empty(&sk
->sk_receive_queue
)) {
306 skb_queue_purge(&sk
->sk_receive_queue
);
307 wake_up_interruptible_all(&unix_sk(sk
)->peer_wait
);
309 /* If one link of bidirectional dgram pipe is disconnected,
310 * we signal error. Messages are lost. Do not make this,
311 * when peer was not connected to us.
313 if (!sock_flag(other
, SOCK_DEAD
) && unix_peer(other
) == sk
) {
314 other
->sk_err
= ECONNRESET
;
315 other
->sk_error_report(other
);
320 static void unix_sock_destructor(struct sock
*sk
)
322 struct unix_sock
*u
= unix_sk(sk
);
324 skb_queue_purge(&sk
->sk_receive_queue
);
326 BUG_TRAP(!atomic_read(&sk
->sk_wmem_alloc
));
327 BUG_TRAP(sk_unhashed(sk
));
328 BUG_TRAP(!sk
->sk_socket
);
329 if (!sock_flag(sk
, SOCK_DEAD
)) {
330 printk("Attempt to release alive unix socket: %p\n", sk
);
335 unix_release_addr(u
->addr
);
337 atomic_dec(&unix_nr_socks
);
338 #ifdef UNIX_REFCNT_DEBUG
339 printk(KERN_DEBUG
"UNIX %p is destroyed, %d are still alive.\n", sk
, atomic_read(&unix_nr_socks
));
343 static int unix_release_sock (struct sock
*sk
, int embrion
)
345 struct unix_sock
*u
= unix_sk(sk
);
346 struct dentry
*dentry
;
347 struct vfsmount
*mnt
;
352 unix_remove_socket(sk
);
355 unix_state_wlock(sk
);
357 sk
->sk_shutdown
= SHUTDOWN_MASK
;
362 state
= sk
->sk_state
;
363 sk
->sk_state
= TCP_CLOSE
;
364 unix_state_wunlock(sk
);
366 wake_up_interruptible_all(&u
->peer_wait
);
368 skpair
=unix_peer(sk
);
371 if (sk
->sk_type
== SOCK_STREAM
|| sk
->sk_type
== SOCK_SEQPACKET
) {
372 unix_state_wlock(skpair
);
374 skpair
->sk_shutdown
= SHUTDOWN_MASK
;
375 if (!skb_queue_empty(&sk
->sk_receive_queue
) || embrion
)
376 skpair
->sk_err
= ECONNRESET
;
377 unix_state_wunlock(skpair
);
378 skpair
->sk_state_change(skpair
);
379 read_lock(&skpair
->sk_callback_lock
);
380 sk_wake_async(skpair
,1,POLL_HUP
);
381 read_unlock(&skpair
->sk_callback_lock
);
383 sock_put(skpair
); /* It may now die */
384 unix_peer(sk
) = NULL
;
387 /* Try to flush out this socket. Throw out buffers at least */
389 while ((skb
= skb_dequeue(&sk
->sk_receive_queue
)) != NULL
) {
390 if (state
==TCP_LISTEN
)
391 unix_release_sock(skb
->sk
, 1);
392 /* passed fds are erased in the kfree_skb hook */
403 /* ---- Socket is dead now and most probably destroyed ---- */
406 * Fixme: BSD difference: In BSD all sockets connected to use get
407 * ECONNRESET and we die on the spot. In Linux we behave
408 * like files and pipes do and wait for the last
411 * Can't we simply set sock->err?
413 * What the above comment does talk about? --ANK(980817)
416 if (atomic_read(&unix_tot_inflight
))
417 unix_gc(); /* Garbage collect fds */
422 static int unix_listen(struct socket
*sock
, int backlog
)
425 struct sock
*sk
= sock
->sk
;
426 struct unix_sock
*u
= unix_sk(sk
);
429 if (sock
->type
!=SOCK_STREAM
&& sock
->type
!=SOCK_SEQPACKET
)
430 goto out
; /* Only stream/seqpacket sockets accept */
433 goto out
; /* No listens on an unbound socket */
434 unix_state_wlock(sk
);
435 if (sk
->sk_state
!= TCP_CLOSE
&& sk
->sk_state
!= TCP_LISTEN
)
437 if (backlog
> sk
->sk_max_ack_backlog
)
438 wake_up_interruptible_all(&u
->peer_wait
);
439 sk
->sk_max_ack_backlog
= backlog
;
440 sk
->sk_state
= TCP_LISTEN
;
441 /* set credentials so connect can copy them */
442 sk
->sk_peercred
.pid
= current
->tgid
;
443 sk
->sk_peercred
.uid
= current
->euid
;
444 sk
->sk_peercred
.gid
= current
->egid
;
448 unix_state_wunlock(sk
);
453 static int unix_release(struct socket
*);
454 static int unix_bind(struct socket
*, struct sockaddr
*, int);
455 static int unix_stream_connect(struct socket
*, struct sockaddr
*,
456 int addr_len
, int flags
);
457 static int unix_socketpair(struct socket
*, struct socket
*);
458 static int unix_accept(struct socket
*, struct socket
*, int);
459 static int unix_getname(struct socket
*, struct sockaddr
*, int *, int);
460 static unsigned int unix_poll(struct file
*, struct socket
*, poll_table
*);
461 static int unix_ioctl(struct socket
*, unsigned int, unsigned long);
462 static int unix_shutdown(struct socket
*, int);
463 static int unix_stream_sendmsg(struct kiocb
*, struct socket
*,
464 struct msghdr
*, size_t);
465 static int unix_stream_recvmsg(struct kiocb
*, struct socket
*,
466 struct msghdr
*, size_t, int);
467 static int unix_dgram_sendmsg(struct kiocb
*, struct socket
*,
468 struct msghdr
*, size_t);
469 static int unix_dgram_recvmsg(struct kiocb
*, struct socket
*,
470 struct msghdr
*, size_t, int);
471 static int unix_dgram_connect(struct socket
*, struct sockaddr
*,
473 static int unix_seqpacket_sendmsg(struct kiocb
*, struct socket
*,
474 struct msghdr
*, size_t);
476 static struct proto_ops unix_stream_ops
= {
478 .owner
= THIS_MODULE
,
479 .release
= unix_release
,
481 .connect
= unix_stream_connect
,
482 .socketpair
= unix_socketpair
,
483 .accept
= unix_accept
,
484 .getname
= unix_getname
,
487 .listen
= unix_listen
,
488 .shutdown
= unix_shutdown
,
489 .setsockopt
= sock_no_setsockopt
,
490 .getsockopt
= sock_no_getsockopt
,
491 .sendmsg
= unix_stream_sendmsg
,
492 .recvmsg
= unix_stream_recvmsg
,
493 .mmap
= sock_no_mmap
,
494 .sendpage
= sock_no_sendpage
,
497 static struct proto_ops unix_dgram_ops
= {
499 .owner
= THIS_MODULE
,
500 .release
= unix_release
,
502 .connect
= unix_dgram_connect
,
503 .socketpair
= unix_socketpair
,
504 .accept
= sock_no_accept
,
505 .getname
= unix_getname
,
506 .poll
= datagram_poll
,
508 .listen
= sock_no_listen
,
509 .shutdown
= unix_shutdown
,
510 .setsockopt
= sock_no_setsockopt
,
511 .getsockopt
= sock_no_getsockopt
,
512 .sendmsg
= unix_dgram_sendmsg
,
513 .recvmsg
= unix_dgram_recvmsg
,
514 .mmap
= sock_no_mmap
,
515 .sendpage
= sock_no_sendpage
,
518 static struct proto_ops unix_seqpacket_ops
= {
520 .owner
= THIS_MODULE
,
521 .release
= unix_release
,
523 .connect
= unix_stream_connect
,
524 .socketpair
= unix_socketpair
,
525 .accept
= unix_accept
,
526 .getname
= unix_getname
,
527 .poll
= datagram_poll
,
529 .listen
= unix_listen
,
530 .shutdown
= unix_shutdown
,
531 .setsockopt
= sock_no_setsockopt
,
532 .getsockopt
= sock_no_getsockopt
,
533 .sendmsg
= unix_seqpacket_sendmsg
,
534 .recvmsg
= unix_dgram_recvmsg
,
535 .mmap
= sock_no_mmap
,
536 .sendpage
= sock_no_sendpage
,
539 static struct proto unix_proto
= {
541 .owner
= THIS_MODULE
,
542 .obj_size
= sizeof(struct unix_sock
),
545 static struct sock
* unix_create1(struct socket
*sock
)
547 struct sock
*sk
= NULL
;
550 if (atomic_read(&unix_nr_socks
) >= 2*files_stat
.max_files
)
553 sk
= sk_alloc(PF_UNIX
, GFP_KERNEL
, &unix_proto
, 1);
557 atomic_inc(&unix_nr_socks
);
559 sock_init_data(sock
,sk
);
561 sk
->sk_write_space
= unix_write_space
;
562 sk
->sk_max_ack_backlog
= sysctl_unix_max_dgram_qlen
;
563 sk
->sk_destruct
= unix_sock_destructor
;
567 rwlock_init(&u
->lock
);
568 atomic_set(&u
->inflight
, sock
? 0 : -1);
569 init_MUTEX(&u
->readsem
); /* single task reading lock */
570 init_waitqueue_head(&u
->peer_wait
);
571 unix_insert_socket(unix_sockets_unbound
, sk
);
576 static int unix_create(struct socket
*sock
, int protocol
)
578 if (protocol
&& protocol
!= PF_UNIX
)
579 return -EPROTONOSUPPORT
;
581 sock
->state
= SS_UNCONNECTED
;
583 switch (sock
->type
) {
585 sock
->ops
= &unix_stream_ops
;
588 * Believe it or not BSD has AF_UNIX, SOCK_RAW though
592 sock
->type
=SOCK_DGRAM
;
594 sock
->ops
= &unix_dgram_ops
;
597 sock
->ops
= &unix_seqpacket_ops
;
600 return -ESOCKTNOSUPPORT
;
603 return unix_create1(sock
) ? 0 : -ENOMEM
;
606 static int unix_release(struct socket
*sock
)
608 struct sock
*sk
= sock
->sk
;
615 return unix_release_sock (sk
, 0);
618 static int unix_autobind(struct socket
*sock
)
620 struct sock
*sk
= sock
->sk
;
621 struct unix_sock
*u
= unix_sk(sk
);
622 static u32 ordernum
= 1;
623 struct unix_address
* addr
;
633 addr
= kmalloc(sizeof(*addr
) + sizeof(short) + 16, GFP_KERNEL
);
637 memset(addr
, 0, sizeof(*addr
) + sizeof(short) + 16);
638 addr
->name
->sun_family
= AF_UNIX
;
639 atomic_set(&addr
->refcnt
, 1);
642 addr
->len
= sprintf(addr
->name
->sun_path
+1, "%05x", ordernum
) + 1 + sizeof(short);
643 addr
->hash
= unix_hash_fold(csum_partial((void*)addr
->name
, addr
->len
, 0));
645 write_lock(&unix_table_lock
);
646 ordernum
= (ordernum
+1)&0xFFFFF;
648 if (__unix_find_socket_byname(addr
->name
, addr
->len
, sock
->type
,
650 write_unlock(&unix_table_lock
);
651 /* Sanity yield. It is unusual case, but yet... */
652 if (!(ordernum
&0xFF))
656 addr
->hash
^= sk
->sk_type
;
658 __unix_remove_socket(sk
);
660 __unix_insert_socket(&unix_socket_table
[addr
->hash
], sk
);
661 write_unlock(&unix_table_lock
);
664 out
: up(&u
->readsem
);
668 static struct sock
*unix_find_other(struct sockaddr_un
*sunname
, int len
,
669 int type
, unsigned hash
, int *error
)
675 if (sunname
->sun_path
[0]) {
676 err
= path_lookup(sunname
->sun_path
, LOOKUP_FOLLOW
, &nd
);
679 err
= permission(nd
.dentry
->d_inode
,MAY_WRITE
, &nd
);
684 if (!S_ISSOCK(nd
.dentry
->d_inode
->i_mode
))
686 u
=unix_find_socket_byinode(nd
.dentry
->d_inode
);
690 if (u
->sk_type
== type
)
691 touch_atime(nd
.mnt
, nd
.dentry
);
696 if (u
->sk_type
!= type
) {
702 u
=unix_find_socket_byname(sunname
, len
, type
, hash
);
704 struct dentry
*dentry
;
705 dentry
= unix_sk(u
)->dentry
;
707 touch_atime(unix_sk(u
)->mnt
, dentry
);
721 static int unix_bind(struct socket
*sock
, struct sockaddr
*uaddr
, int addr_len
)
723 struct sock
*sk
= sock
->sk
;
724 struct unix_sock
*u
= unix_sk(sk
);
725 struct sockaddr_un
*sunaddr
=(struct sockaddr_un
*)uaddr
;
726 struct dentry
* dentry
= NULL
;
730 struct unix_address
*addr
;
731 struct hlist_head
*list
;
734 if (sunaddr
->sun_family
!= AF_UNIX
)
737 if (addr_len
==sizeof(short)) {
738 err
= unix_autobind(sock
);
742 err
= unix_mkname(sunaddr
, addr_len
, &hash
);
754 addr
= kmalloc(sizeof(*addr
)+addr_len
, GFP_KERNEL
);
758 memcpy(addr
->name
, sunaddr
, addr_len
);
759 addr
->len
= addr_len
;
760 addr
->hash
= hash
^ sk
->sk_type
;
761 atomic_set(&addr
->refcnt
, 1);
763 if (sunaddr
->sun_path
[0]) {
767 * Get the parent directory, calculate the hash for last
770 err
= path_lookup(sunaddr
->sun_path
, LOOKUP_PARENT
, &nd
);
772 goto out_mknod_parent
;
774 dentry
= lookup_create(&nd
, 0);
775 err
= PTR_ERR(dentry
);
777 goto out_mknod_unlock
;
780 * All right, let's create it.
783 (SOCK_INODE(sock
)->i_mode
& ~current
->fs
->umask
);
784 err
= vfs_mknod(nd
.dentry
->d_inode
, dentry
, mode
, 0);
787 up(&nd
.dentry
->d_inode
->i_sem
);
791 addr
->hash
= UNIX_HASH_SIZE
;
794 write_lock(&unix_table_lock
);
796 if (!sunaddr
->sun_path
[0]) {
798 if (__unix_find_socket_byname(sunaddr
, addr_len
,
799 sk
->sk_type
, hash
)) {
800 unix_release_addr(addr
);
804 list
= &unix_socket_table
[addr
->hash
];
806 list
= &unix_socket_table
[dentry
->d_inode
->i_ino
& (UNIX_HASH_SIZE
-1)];
807 u
->dentry
= nd
.dentry
;
812 __unix_remove_socket(sk
);
814 __unix_insert_socket(list
, sk
);
817 write_unlock(&unix_table_lock
);
826 up(&nd
.dentry
->d_inode
->i_sem
);
831 unix_release_addr(addr
);
835 static int unix_dgram_connect(struct socket
*sock
, struct sockaddr
*addr
,
838 struct sock
*sk
= sock
->sk
;
839 struct sockaddr_un
*sunaddr
=(struct sockaddr_un
*)addr
;
844 if (addr
->sa_family
!= AF_UNSPEC
) {
845 err
= unix_mkname(sunaddr
, alen
, &hash
);
850 if (test_bit(SOCK_PASSCRED
, &sock
->flags
) &&
851 !unix_sk(sk
)->addr
&& (err
= unix_autobind(sock
)) != 0)
854 other
=unix_find_other(sunaddr
, alen
, sock
->type
, hash
, &err
);
858 unix_state_wlock(sk
);
861 if (!unix_may_send(sk
, other
))
864 err
= security_unix_may_send(sk
->sk_socket
, other
->sk_socket
);
870 * 1003.1g breaking connected state with AF_UNSPEC
873 unix_state_wlock(sk
);
877 * If it was connected, reconnect.
880 struct sock
*old_peer
= unix_peer(sk
);
882 unix_state_wunlock(sk
);
884 if (other
!= old_peer
)
885 unix_dgram_disconnected(sk
, old_peer
);
889 unix_state_wunlock(sk
);
894 unix_state_wunlock(sk
);
900 static long unix_wait_for_peer(struct sock
*other
, long timeo
)
902 struct unix_sock
*u
= unix_sk(other
);
906 prepare_to_wait_exclusive(&u
->peer_wait
, &wait
, TASK_INTERRUPTIBLE
);
908 sched
= !sock_flag(other
, SOCK_DEAD
) &&
909 !(other
->sk_shutdown
& RCV_SHUTDOWN
) &&
910 (skb_queue_len(&other
->sk_receive_queue
) >
911 other
->sk_max_ack_backlog
);
913 unix_state_runlock(other
);
916 timeo
= schedule_timeout(timeo
);
918 finish_wait(&u
->peer_wait
, &wait
);
922 static int unix_stream_connect(struct socket
*sock
, struct sockaddr
*uaddr
,
923 int addr_len
, int flags
)
925 struct sockaddr_un
*sunaddr
=(struct sockaddr_un
*)uaddr
;
926 struct sock
*sk
= sock
->sk
;
927 struct unix_sock
*u
= unix_sk(sk
), *newu
, *otheru
;
928 struct sock
*newsk
= NULL
;
929 struct sock
*other
= NULL
;
930 struct sk_buff
*skb
= NULL
;
936 err
= unix_mkname(sunaddr
, addr_len
, &hash
);
941 if (test_bit(SOCK_PASSCRED
, &sock
->flags
)
942 && !u
->addr
&& (err
= unix_autobind(sock
)) != 0)
945 timeo
= sock_sndtimeo(sk
, flags
& O_NONBLOCK
);
947 /* First of all allocate resources.
948 If we will make it after state is locked,
949 we will have to recheck all again in any case.
954 /* create new sock for complete connection */
955 newsk
= unix_create1(NULL
);
959 /* Allocate skb for sending to listening sock */
960 skb
= sock_wmalloc(newsk
, 1, 0, GFP_KERNEL
);
965 /* Find listening sock. */
966 other
= unix_find_other(sunaddr
, addr_len
, sk
->sk_type
, hash
, &err
);
970 /* Latch state of peer */
971 unix_state_rlock(other
);
973 /* Apparently VFS overslept socket death. Retry. */
974 if (sock_flag(other
, SOCK_DEAD
)) {
975 unix_state_runlock(other
);
981 if (other
->sk_state
!= TCP_LISTEN
)
984 if (skb_queue_len(&other
->sk_receive_queue
) >
985 other
->sk_max_ack_backlog
) {
990 timeo
= unix_wait_for_peer(other
, timeo
);
992 err
= sock_intr_errno(timeo
);
993 if (signal_pending(current
))
1001 It is tricky place. We need to grab write lock and cannot
1002 drop lock on peer. It is dangerous because deadlock is
1003 possible. Connect to self case and simultaneous
1004 attempt to connect are eliminated by checking socket
1005 state. other is TCP_LISTEN, if sk is TCP_LISTEN we
1006 check this before attempt to grab lock.
1008 Well, and we have to recheck the state after socket locked.
1014 /* This is ok... continue with connect */
1016 case TCP_ESTABLISHED
:
1017 /* Socket is already connected */
1025 unix_state_wlock(sk
);
1027 if (sk
->sk_state
!= st
) {
1028 unix_state_wunlock(sk
);
1029 unix_state_runlock(other
);
1034 err
= security_unix_stream_connect(sock
, other
->sk_socket
, newsk
);
1036 unix_state_wunlock(sk
);
1040 /* The way is open! Fastly set all the necessary fields... */
1043 unix_peer(newsk
) = sk
;
1044 newsk
->sk_state
= TCP_ESTABLISHED
;
1045 newsk
->sk_type
= sk
->sk_type
;
1046 newsk
->sk_peercred
.pid
= current
->tgid
;
1047 newsk
->sk_peercred
.uid
= current
->euid
;
1048 newsk
->sk_peercred
.gid
= current
->egid
;
1049 newu
= unix_sk(newsk
);
1050 newsk
->sk_sleep
= &newu
->peer_wait
;
1051 otheru
= unix_sk(other
);
1053 /* copy address information from listening to new sock*/
1055 atomic_inc(&otheru
->addr
->refcnt
);
1056 newu
->addr
= otheru
->addr
;
1058 if (otheru
->dentry
) {
1059 newu
->dentry
= dget(otheru
->dentry
);
1060 newu
->mnt
= mntget(otheru
->mnt
);
1063 /* Set credentials */
1064 sk
->sk_peercred
= other
->sk_peercred
;
1067 unix_peer(sk
) = newsk
;
1068 sock
->state
= SS_CONNECTED
;
1069 sk
->sk_state
= TCP_ESTABLISHED
;
1071 unix_state_wunlock(sk
);
1073 /* take ten and and send info to listening sock */
1074 spin_lock(&other
->sk_receive_queue
.lock
);
1075 __skb_queue_tail(&other
->sk_receive_queue
, skb
);
1076 /* Undo artificially decreased inflight after embrion
1077 * is installed to listening socket. */
1078 atomic_inc(&newu
->inflight
);
1079 spin_unlock(&other
->sk_receive_queue
.lock
);
1080 unix_state_runlock(other
);
1081 other
->sk_data_ready(other
, 0);
1087 unix_state_runlock(other
);
1093 unix_release_sock(newsk
, 0);
1099 static int unix_socketpair(struct socket
*socka
, struct socket
*sockb
)
1101 struct sock
*ska
=socka
->sk
, *skb
= sockb
->sk
;
1103 /* Join our sockets back to back */
1108 ska
->sk_peercred
.pid
= skb
->sk_peercred
.pid
= current
->tgid
;
1109 ska
->sk_peercred
.uid
= skb
->sk_peercred
.uid
= current
->euid
;
1110 ska
->sk_peercred
.gid
= skb
->sk_peercred
.gid
= current
->egid
;
1112 if (ska
->sk_type
!= SOCK_DGRAM
) {
1113 ska
->sk_state
= TCP_ESTABLISHED
;
1114 skb
->sk_state
= TCP_ESTABLISHED
;
1115 socka
->state
= SS_CONNECTED
;
1116 sockb
->state
= SS_CONNECTED
;
1121 static int unix_accept(struct socket
*sock
, struct socket
*newsock
, int flags
)
1123 struct sock
*sk
= sock
->sk
;
1125 struct sk_buff
*skb
;
1129 if (sock
->type
!=SOCK_STREAM
&& sock
->type
!=SOCK_SEQPACKET
)
1133 if (sk
->sk_state
!= TCP_LISTEN
)
1136 /* If socket state is TCP_LISTEN it cannot change (for now...),
1137 * so that no locks are necessary.
1140 skb
= skb_recv_datagram(sk
, 0, flags
&O_NONBLOCK
, &err
);
1142 /* This means receive shutdown. */
1149 skb_free_datagram(sk
, skb
);
1150 wake_up_interruptible(&unix_sk(sk
)->peer_wait
);
1152 /* attach accepted sock to socket */
1153 unix_state_wlock(tsk
);
1154 newsock
->state
= SS_CONNECTED
;
1155 sock_graft(tsk
, newsock
);
1156 unix_state_wunlock(tsk
);
1164 static int unix_getname(struct socket
*sock
, struct sockaddr
*uaddr
, int *uaddr_len
, int peer
)
1166 struct sock
*sk
= sock
->sk
;
1167 struct unix_sock
*u
;
1168 struct sockaddr_un
*sunaddr
=(struct sockaddr_un
*)uaddr
;
1172 sk
= unix_peer_get(sk
);
1183 unix_state_rlock(sk
);
1185 sunaddr
->sun_family
= AF_UNIX
;
1186 sunaddr
->sun_path
[0] = 0;
1187 *uaddr_len
= sizeof(short);
1189 struct unix_address
*addr
= u
->addr
;
1191 *uaddr_len
= addr
->len
;
1192 memcpy(sunaddr
, addr
->name
, *uaddr_len
);
1194 unix_state_runlock(sk
);
1200 static void unix_detach_fds(struct scm_cookie
*scm
, struct sk_buff
*skb
)
1204 scm
->fp
= UNIXCB(skb
).fp
;
1205 skb
->destructor
= sock_wfree
;
1206 UNIXCB(skb
).fp
= NULL
;
1208 for (i
=scm
->fp
->count
-1; i
>=0; i
--)
1209 unix_notinflight(scm
->fp
->fp
[i
]);
1212 static void unix_destruct_fds(struct sk_buff
*skb
)
1214 struct scm_cookie scm
;
1215 memset(&scm
, 0, sizeof(scm
));
1216 unix_detach_fds(&scm
, skb
);
1218 /* Alas, it calls VFS */
1219 /* So fscking what? fput() had been SMP-safe since the last Summer */
1224 static void unix_attach_fds(struct scm_cookie
*scm
, struct sk_buff
*skb
)
1227 for (i
=scm
->fp
->count
-1; i
>=0; i
--)
1228 unix_inflight(scm
->fp
->fp
[i
]);
1229 UNIXCB(skb
).fp
= scm
->fp
;
1230 skb
->destructor
= unix_destruct_fds
;
1235 * Send AF_UNIX data.
1238 static int unix_dgram_sendmsg(struct kiocb
*kiocb
, struct socket
*sock
,
1239 struct msghdr
*msg
, size_t len
)
1241 struct sock_iocb
*siocb
= kiocb_to_siocb(kiocb
);
1242 struct sock
*sk
= sock
->sk
;
1243 struct unix_sock
*u
= unix_sk(sk
);
1244 struct sockaddr_un
*sunaddr
=msg
->msg_name
;
1245 struct sock
*other
= NULL
;
1246 int namelen
= 0; /* fake GCC */
1249 struct sk_buff
*skb
;
1251 struct scm_cookie tmp_scm
;
1253 if (NULL
== siocb
->scm
)
1254 siocb
->scm
= &tmp_scm
;
1255 err
= scm_send(sock
, msg
, siocb
->scm
);
1260 if (msg
->msg_flags
&MSG_OOB
)
1263 if (msg
->msg_namelen
) {
1264 err
= unix_mkname(sunaddr
, msg
->msg_namelen
, &hash
);
1271 other
= unix_peer_get(sk
);
1276 if (test_bit(SOCK_PASSCRED
, &sock
->flags
)
1277 && !u
->addr
&& (err
= unix_autobind(sock
)) != 0)
1281 if (len
> sk
->sk_sndbuf
- 32)
1284 skb
= sock_alloc_send_skb(sk
, len
, msg
->msg_flags
&MSG_DONTWAIT
, &err
);
1288 memcpy(UNIXCREDS(skb
), &siocb
->scm
->creds
, sizeof(struct ucred
));
1290 unix_attach_fds(siocb
->scm
, skb
);
1292 skb
->h
.raw
= skb
->data
;
1293 err
= memcpy_fromiovec(skb_put(skb
,len
), msg
->msg_iov
, len
);
1297 timeo
= sock_sndtimeo(sk
, msg
->msg_flags
& MSG_DONTWAIT
);
1302 if (sunaddr
== NULL
)
1305 other
= unix_find_other(sunaddr
, namelen
, sk
->sk_type
,
1311 unix_state_rlock(other
);
1313 if (!unix_may_send(sk
, other
))
1316 if (sock_flag(other
, SOCK_DEAD
)) {
1318 * Check with 1003.1g - what should
1321 unix_state_runlock(other
);
1325 unix_state_wlock(sk
);
1326 if (unix_peer(sk
) == other
) {
1328 unix_state_wunlock(sk
);
1330 unix_dgram_disconnected(sk
, other
);
1332 err
= -ECONNREFUSED
;
1334 unix_state_wunlock(sk
);
1344 if (other
->sk_shutdown
& RCV_SHUTDOWN
)
1347 if (sk
->sk_type
!= SOCK_SEQPACKET
) {
1348 err
= security_unix_may_send(sk
->sk_socket
, other
->sk_socket
);
1353 if (unix_peer(other
) != sk
&&
1354 (skb_queue_len(&other
->sk_receive_queue
) >
1355 other
->sk_max_ack_backlog
)) {
1361 timeo
= unix_wait_for_peer(other
, timeo
);
1363 err
= sock_intr_errno(timeo
);
1364 if (signal_pending(current
))
1370 skb_queue_tail(&other
->sk_receive_queue
, skb
);
1371 unix_state_runlock(other
);
1372 other
->sk_data_ready(other
, len
);
1374 scm_destroy(siocb
->scm
);
1378 unix_state_runlock(other
);
1384 scm_destroy(siocb
->scm
);
1389 static int unix_stream_sendmsg(struct kiocb
*kiocb
, struct socket
*sock
,
1390 struct msghdr
*msg
, size_t len
)
1392 struct sock_iocb
*siocb
= kiocb_to_siocb(kiocb
);
1393 struct sock
*sk
= sock
->sk
;
1394 struct sock
*other
= NULL
;
1395 struct sockaddr_un
*sunaddr
=msg
->msg_name
;
1397 struct sk_buff
*skb
;
1399 struct scm_cookie tmp_scm
;
1401 if (NULL
== siocb
->scm
)
1402 siocb
->scm
= &tmp_scm
;
1403 err
= scm_send(sock
, msg
, siocb
->scm
);
1408 if (msg
->msg_flags
&MSG_OOB
)
1411 if (msg
->msg_namelen
) {
1412 err
= sk
->sk_state
== TCP_ESTABLISHED
? -EISCONN
: -EOPNOTSUPP
;
1417 other
= unix_peer_get(sk
);
1422 if (sk
->sk_shutdown
& SEND_SHUTDOWN
)
1428 * Optimisation for the fact that under 0.01% of X messages typically
1434 /* Keep two messages in the pipe so it schedules better */
1435 if (size
> sk
->sk_sndbuf
/ 2 - 64)
1436 size
= sk
->sk_sndbuf
/ 2 - 64;
1438 if (size
> SKB_MAX_ALLOC
)
1439 size
= SKB_MAX_ALLOC
;
1445 skb
=sock_alloc_send_skb(sk
,size
,msg
->msg_flags
&MSG_DONTWAIT
, &err
);
1451 * If you pass two values to the sock_alloc_send_skb
1452 * it tries to grab the large buffer with GFP_NOFS
1453 * (which can fail easily), and if it fails grab the
1454 * fallback size buffer which is under a page and will
1457 size
= min_t(int, size
, skb_tailroom(skb
));
1459 memcpy(UNIXCREDS(skb
), &siocb
->scm
->creds
, sizeof(struct ucred
));
1461 unix_attach_fds(siocb
->scm
, skb
);
1463 if ((err
= memcpy_fromiovec(skb_put(skb
,size
), msg
->msg_iov
, size
)) != 0) {
1468 unix_state_rlock(other
);
1470 if (sock_flag(other
, SOCK_DEAD
) ||
1471 (other
->sk_shutdown
& RCV_SHUTDOWN
))
1474 skb_queue_tail(&other
->sk_receive_queue
, skb
);
1475 unix_state_runlock(other
);
1476 other
->sk_data_ready(other
, size
);
1481 scm_destroy(siocb
->scm
);
1487 unix_state_runlock(other
);
1490 if (sent
==0 && !(msg
->msg_flags
&MSG_NOSIGNAL
))
1491 send_sig(SIGPIPE
,current
,0);
1496 scm_destroy(siocb
->scm
);
1498 return sent
? : err
;
1501 static int unix_seqpacket_sendmsg(struct kiocb
*kiocb
, struct socket
*sock
,
1502 struct msghdr
*msg
, size_t len
)
1505 struct sock
*sk
= sock
->sk
;
1507 err
= sock_error(sk
);
1511 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1514 if (msg
->msg_namelen
)
1515 msg
->msg_namelen
= 0;
1517 return unix_dgram_sendmsg(kiocb
, sock
, msg
, len
);
1520 static void unix_copy_addr(struct msghdr
*msg
, struct sock
*sk
)
1522 struct unix_sock
*u
= unix_sk(sk
);
1524 msg
->msg_namelen
= 0;
1526 msg
->msg_namelen
= u
->addr
->len
;
1527 memcpy(msg
->msg_name
, u
->addr
->name
, u
->addr
->len
);
1531 static int unix_dgram_recvmsg(struct kiocb
*iocb
, struct socket
*sock
,
1532 struct msghdr
*msg
, size_t size
,
1535 struct sock_iocb
*siocb
= kiocb_to_siocb(iocb
);
1536 struct scm_cookie tmp_scm
;
1537 struct sock
*sk
= sock
->sk
;
1538 struct unix_sock
*u
= unix_sk(sk
);
1539 int noblock
= flags
& MSG_DONTWAIT
;
1540 struct sk_buff
*skb
;
1547 msg
->msg_namelen
= 0;
1551 skb
= skb_recv_datagram(sk
, flags
, noblock
, &err
);
1555 wake_up_interruptible(&u
->peer_wait
);
1558 unix_copy_addr(msg
, skb
->sk
);
1560 if (size
> skb
->len
)
1562 else if (size
< skb
->len
)
1563 msg
->msg_flags
|= MSG_TRUNC
;
1565 err
= skb_copy_datagram_iovec(skb
, 0, msg
->msg_iov
, size
);
1570 siocb
->scm
= &tmp_scm
;
1571 memset(&tmp_scm
, 0, sizeof(tmp_scm
));
1573 siocb
->scm
->creds
= *UNIXCREDS(skb
);
1575 if (!(flags
& MSG_PEEK
))
1578 unix_detach_fds(siocb
->scm
, skb
);
1582 /* It is questionable: on PEEK we could:
1583 - do not return fds - good, but too simple 8)
1584 - return fds, and do not return them on read (old strategy,
1586 - clone fds (I chose it for now, it is the most universal
1589 POSIX 1003.1g does not actually define this clearly
1590 at all. POSIX 1003.1g doesn't define a lot of things
1595 siocb
->scm
->fp
= scm_fp_dup(UNIXCB(skb
).fp
);
1599 scm_recv(sock
, msg
, siocb
->scm
, flags
);
1602 skb_free_datagram(sk
,skb
);
1610 * Sleep until data has arrive. But check for races..
1613 static long unix_stream_data_wait(struct sock
* sk
, long timeo
)
1617 unix_state_rlock(sk
);
1620 prepare_to_wait(sk
->sk_sleep
, &wait
, TASK_INTERRUPTIBLE
);
1622 if (!skb_queue_empty(&sk
->sk_receive_queue
) ||
1624 (sk
->sk_shutdown
& RCV_SHUTDOWN
) ||
1625 signal_pending(current
) ||
1629 set_bit(SOCK_ASYNC_WAITDATA
, &sk
->sk_socket
->flags
);
1630 unix_state_runlock(sk
);
1631 timeo
= schedule_timeout(timeo
);
1632 unix_state_rlock(sk
);
1633 clear_bit(SOCK_ASYNC_WAITDATA
, &sk
->sk_socket
->flags
);
1636 finish_wait(sk
->sk_sleep
, &wait
);
1637 unix_state_runlock(sk
);
1643 static int unix_stream_recvmsg(struct kiocb
*iocb
, struct socket
*sock
,
1644 struct msghdr
*msg
, size_t size
,
1647 struct sock_iocb
*siocb
= kiocb_to_siocb(iocb
);
1648 struct scm_cookie tmp_scm
;
1649 struct sock
*sk
= sock
->sk
;
1650 struct unix_sock
*u
= unix_sk(sk
);
1651 struct sockaddr_un
*sunaddr
=msg
->msg_name
;
1653 int check_creds
= 0;
1659 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1666 target
= sock_rcvlowat(sk
, flags
&MSG_WAITALL
, size
);
1667 timeo
= sock_rcvtimeo(sk
, flags
&MSG_DONTWAIT
);
1669 msg
->msg_namelen
= 0;
1671 /* Lock the socket to prevent queue disordering
1672 * while sleeps in memcpy_tomsg
1676 siocb
->scm
= &tmp_scm
;
1677 memset(&tmp_scm
, 0, sizeof(tmp_scm
));
1685 struct sk_buff
*skb
;
1687 skb
= skb_dequeue(&sk
->sk_receive_queue
);
1690 if (copied
>= target
)
1694 * POSIX 1003.1g mandates this order.
1697 if ((err
= sock_error(sk
)) != 0)
1699 if (sk
->sk_shutdown
& RCV_SHUTDOWN
)
1706 timeo
= unix_stream_data_wait(sk
, timeo
);
1708 if (signal_pending(current
)) {
1709 err
= sock_intr_errno(timeo
);
1717 /* Never glue messages from different writers */
1718 if (memcmp(UNIXCREDS(skb
), &siocb
->scm
->creds
, sizeof(siocb
->scm
->creds
)) != 0) {
1719 skb_queue_head(&sk
->sk_receive_queue
, skb
);
1723 /* Copy credentials */
1724 siocb
->scm
->creds
= *UNIXCREDS(skb
);
1728 /* Copy address just once */
1731 unix_copy_addr(msg
, skb
->sk
);
1735 chunk
= min_t(unsigned int, skb
->len
, size
);
1736 if (memcpy_toiovec(msg
->msg_iov
, skb
->data
, chunk
)) {
1737 skb_queue_head(&sk
->sk_receive_queue
, skb
);
1745 /* Mark read part of skb as used */
1746 if (!(flags
& MSG_PEEK
))
1748 skb_pull(skb
, chunk
);
1751 unix_detach_fds(siocb
->scm
, skb
);
1753 /* put the skb back if we didn't use it up.. */
1756 skb_queue_head(&sk
->sk_receive_queue
, skb
);
1767 /* It is questionable, see note in unix_dgram_recvmsg.
1770 siocb
->scm
->fp
= scm_fp_dup(UNIXCB(skb
).fp
);
1772 /* put message back and return */
1773 skb_queue_head(&sk
->sk_receive_queue
, skb
);
1779 scm_recv(sock
, msg
, siocb
->scm
, flags
);
1781 return copied
? : err
;
1784 static int unix_shutdown(struct socket
*sock
, int mode
)
1786 struct sock
*sk
= sock
->sk
;
1789 mode
= (mode
+1)&(RCV_SHUTDOWN
|SEND_SHUTDOWN
);
1792 unix_state_wlock(sk
);
1793 sk
->sk_shutdown
|= mode
;
1794 other
=unix_peer(sk
);
1797 unix_state_wunlock(sk
);
1798 sk
->sk_state_change(sk
);
1801 (sk
->sk_type
== SOCK_STREAM
|| sk
->sk_type
== SOCK_SEQPACKET
)) {
1805 if (mode
&RCV_SHUTDOWN
)
1806 peer_mode
|= SEND_SHUTDOWN
;
1807 if (mode
&SEND_SHUTDOWN
)
1808 peer_mode
|= RCV_SHUTDOWN
;
1809 unix_state_wlock(other
);
1810 other
->sk_shutdown
|= peer_mode
;
1811 unix_state_wunlock(other
);
1812 other
->sk_state_change(other
);
1813 read_lock(&other
->sk_callback_lock
);
1814 if (peer_mode
== SHUTDOWN_MASK
)
1815 sk_wake_async(other
,1,POLL_HUP
);
1816 else if (peer_mode
& RCV_SHUTDOWN
)
1817 sk_wake_async(other
,1,POLL_IN
);
1818 read_unlock(&other
->sk_callback_lock
);
1826 static int unix_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
1828 struct sock
*sk
= sock
->sk
;
1835 amount
= atomic_read(&sk
->sk_wmem_alloc
);
1836 err
= put_user(amount
, (int __user
*)arg
);
1840 struct sk_buff
*skb
;
1842 if (sk
->sk_state
== TCP_LISTEN
) {
1847 spin_lock(&sk
->sk_receive_queue
.lock
);
1848 if (sk
->sk_type
== SOCK_STREAM
||
1849 sk
->sk_type
== SOCK_SEQPACKET
) {
1850 skb_queue_walk(&sk
->sk_receive_queue
, skb
)
1853 skb
= skb_peek(&sk
->sk_receive_queue
);
1857 spin_unlock(&sk
->sk_receive_queue
.lock
);
1858 err
= put_user(amount
, (int __user
*)arg
);
1863 err
= dev_ioctl(cmd
, (void __user
*)arg
);
1869 static unsigned int unix_poll(struct file
* file
, struct socket
*sock
, poll_table
*wait
)
1871 struct sock
*sk
= sock
->sk
;
1874 poll_wait(file
, sk
->sk_sleep
, wait
);
1877 /* exceptional events? */
1880 if (sk
->sk_shutdown
== SHUTDOWN_MASK
)
1884 if (!skb_queue_empty(&sk
->sk_receive_queue
) ||
1885 (sk
->sk_shutdown
& RCV_SHUTDOWN
))
1886 mask
|= POLLIN
| POLLRDNORM
;
1888 /* Connection-based need to check for termination and startup */
1889 if ((sk
->sk_type
== SOCK_STREAM
|| sk
->sk_type
== SOCK_SEQPACKET
) && sk
->sk_state
== TCP_CLOSE
)
1893 * we set writable also when the other side has shut down the
1894 * connection. This prevents stuck sockets.
1896 if (unix_writable(sk
))
1897 mask
|= POLLOUT
| POLLWRNORM
| POLLWRBAND
;
1903 #ifdef CONFIG_PROC_FS
1904 static struct sock
*unix_seq_idx(int *iter
, loff_t pos
)
1909 for (s
= first_unix_socket(iter
); s
; s
= next_unix_socket(iter
, s
)) {
1918 static void *unix_seq_start(struct seq_file
*seq
, loff_t
*pos
)
1920 read_lock(&unix_table_lock
);
1921 return *pos
? unix_seq_idx(seq
->private, *pos
- 1) : ((void *) 1);
1924 static void *unix_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
1929 return first_unix_socket(seq
->private);
1930 return next_unix_socket(seq
->private, v
);
1933 static void unix_seq_stop(struct seq_file
*seq
, void *v
)
1935 read_unlock(&unix_table_lock
);
1938 static int unix_seq_show(struct seq_file
*seq
, void *v
)
1942 seq_puts(seq
, "Num RefCount Protocol Flags Type St "
1946 struct unix_sock
*u
= unix_sk(s
);
1947 unix_state_rlock(s
);
1949 seq_printf(seq
, "%p: %08X %08X %08X %04X %02X %5lu",
1951 atomic_read(&s
->sk_refcnt
),
1953 s
->sk_state
== TCP_LISTEN
? __SO_ACCEPTCON
: 0,
1956 (s
->sk_state
== TCP_ESTABLISHED
? SS_CONNECTED
: SS_UNCONNECTED
) :
1957 (s
->sk_state
== TCP_ESTABLISHED
? SS_CONNECTING
: SS_DISCONNECTING
),
1965 len
= u
->addr
->len
- sizeof(short);
1966 if (!UNIX_ABSTRACT(s
))
1972 for ( ; i
< len
; i
++)
1973 seq_putc(seq
, u
->addr
->name
->sun_path
[i
]);
1975 unix_state_runlock(s
);
1976 seq_putc(seq
, '\n');
1982 static struct seq_operations unix_seq_ops
= {
1983 .start
= unix_seq_start
,
1984 .next
= unix_seq_next
,
1985 .stop
= unix_seq_stop
,
1986 .show
= unix_seq_show
,
1990 static int unix_seq_open(struct inode
*inode
, struct file
*file
)
1992 struct seq_file
*seq
;
1994 int *iter
= kmalloc(sizeof(int), GFP_KERNEL
);
1999 rc
= seq_open(file
, &unix_seq_ops
);
2003 seq
= file
->private_data
;
2004 seq
->private = iter
;
2013 static struct file_operations unix_seq_fops
= {
2014 .owner
= THIS_MODULE
,
2015 .open
= unix_seq_open
,
2017 .llseek
= seq_lseek
,
2018 .release
= seq_release_private
,
2023 static struct net_proto_family unix_family_ops
= {
2025 .create
= unix_create
,
2026 .owner
= THIS_MODULE
,
2029 static int __init
af_unix_init(void)
2032 struct sk_buff
*dummy_skb
;
2034 if (sizeof(struct unix_skb_parms
) > sizeof(dummy_skb
->cb
)) {
2035 printk(KERN_CRIT
"%s: panic\n", __FUNCTION__
);
2039 rc
= proto_register(&unix_proto
, 1);
2041 printk(KERN_CRIT
"%s: Cannot create unix_sock SLAB cache!\n",
2046 sock_register(&unix_family_ops
);
2047 #ifdef CONFIG_PROC_FS
2048 proc_net_fops_create("unix", 0, &unix_seq_fops
);
2050 unix_sysctl_register();
2055 static void __exit
af_unix_exit(void)
2057 sock_unregister(PF_UNIX
);
2058 unix_sysctl_unregister();
2059 proc_net_remove("unix");
2060 proto_unregister(&unix_proto
);
2063 module_init(af_unix_init
);
2064 module_exit(af_unix_exit
);
2066 MODULE_LICENSE("GPL");
2067 MODULE_ALIAS_NETPROTO(PF_UNIX
);