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/kernel.h>
87 #include <linux/signal.h>
88 #include <linux/sched.h>
89 #include <linux/errno.h>
90 #include <linux/string.h>
91 #include <linux/stat.h>
92 #include <linux/dcache.h>
93 #include <linux/namei.h>
94 #include <linux/socket.h>
96 #include <linux/fcntl.h>
97 #include <linux/termios.h>
98 #include <linux/sockios.h>
99 #include <linux/net.h>
100 #include <linux/in.h>
101 #include <linux/fs.h>
102 #include <linux/slab.h>
103 #include <asm/uaccess.h>
104 #include <linux/skbuff.h>
105 #include <linux/netdevice.h>
106 #include <net/sock.h>
107 #include <net/tcp_states.h>
108 #include <net/af_unix.h>
109 #include <linux/proc_fs.h>
110 #include <linux/seq_file.h>
112 #include <linux/init.h>
113 #include <linux/poll.h>
114 #include <linux/smp_lock.h>
115 #include <linux/rtnetlink.h>
116 #include <linux/mount.h>
117 #include <net/checksum.h>
118 #include <linux/security.h>
120 int sysctl_unix_max_dgram_qlen = 10;
122 struct hlist_head unix_socket_table[UNIX_HASH_SIZE + 1];
123 DEFINE_SPINLOCK(unix_table_lock);
124 static atomic_t unix_nr_socks = ATOMIC_INIT(0);
126 #define unix_sockets_unbound (&unix_socket_table[UNIX_HASH_SIZE])
128 #define UNIX_ABSTRACT(sk) (unix_sk(sk)->addr->hash != UNIX_HASH_SIZE)
130 #ifdef CONFIG_SECURITY_NETWORK
131 static void unix_get_peersec_dgram(struct sk_buff *skb)
135 err = security_socket_getpeersec_dgram(skb, UNIXSECDATA(skb),
138 *(UNIXSECDATA(skb)) = NULL;
141 static inline void unix_set_secdata(struct scm_cookie *scm, struct sk_buff *skb)
143 scm->secdata = *UNIXSECDATA(skb);
144 scm->seclen = *UNIXSECLEN(skb);
147 static void unix_get_peersec_dgram(struct sk_buff *skb)
150 static inline void unix_set_secdata(struct scm_cookie *scm, struct sk_buff *skb)
152 #endif /* CONFIG_SECURITY_NETWORK */
155 * SMP locking strategy:
156 * hash table is protected with spinlock unix_table_lock
157 * each socket state is protected by separate rwlock.
160 static inline unsigned unix_hash_fold(unsigned hash)
164 return hash&(UNIX_HASH_SIZE-1);
167 #define unix_peer(sk) (unix_sk(sk)->peer)
169 static inline int unix_our_peer(struct sock *sk, struct sock *osk)
171 return unix_peer(osk) == sk;
174 static inline int unix_may_send(struct sock *sk, struct sock *osk)
176 return (unix_peer(osk) == NULL || unix_our_peer(sk, osk));
179 static struct sock *unix_peer_get(struct sock *s)
187 unix_state_runlock(s);
191 static inline void unix_release_addr(struct unix_address *addr)
193 if (atomic_dec_and_test(&addr->refcnt))
198 * Check unix socket name:
199 * - should be not zero length.
200 * - if started by not zero, should be NULL terminated (FS object)
201 * - if started by zero, it is abstract name.
204 static int unix_mkname(struct sockaddr_un * sunaddr, int len, unsigned *hashp)
206 if (len <= sizeof(short) || len > sizeof(*sunaddr))
208 if (!sunaddr || sunaddr->sun_family != AF_UNIX)
210 if (sunaddr->sun_path[0]) {
212 * This may look like an off by one error but it is a bit more
213 * subtle. 108 is the longest valid AF_UNIX path for a binding.
214 * sun_path[108] doesnt as such exist. However in kernel space
215 * we are guaranteed that it is a valid memory location in our
216 * kernel address buffer.
218 ((char *)sunaddr)[len]=0;
219 len = strlen(sunaddr->sun_path)+1+sizeof(short);
223 *hashp = unix_hash_fold(csum_partial((char*)sunaddr, len, 0));
227 static void __unix_remove_socket(struct sock *sk)
229 sk_del_node_init(sk);
232 static void __unix_insert_socket(struct hlist_head *list, struct sock *sk)
234 BUG_TRAP(sk_unhashed(sk));
235 sk_add_node(sk, list);
238 static inline void unix_remove_socket(struct sock *sk)
240 spin_lock(&unix_table_lock);
241 __unix_remove_socket(sk);
242 spin_unlock(&unix_table_lock);
245 static inline void unix_insert_socket(struct hlist_head *list, struct sock *sk)
247 spin_lock(&unix_table_lock);
248 __unix_insert_socket(list, sk);
249 spin_unlock(&unix_table_lock);
252 static struct sock *__unix_find_socket_byname(struct sockaddr_un *sunname,
253 int len, int type, unsigned hash)
256 struct hlist_node *node;
258 sk_for_each(s, node, &unix_socket_table[hash ^ type]) {
259 struct unix_sock *u = unix_sk(s);
261 if (u->addr->len == len &&
262 !memcmp(u->addr->name, sunname, len))
270 static inline struct sock *unix_find_socket_byname(struct sockaddr_un *sunname,
276 spin_lock(&unix_table_lock);
277 s = __unix_find_socket_byname(sunname, len, type, hash);
280 spin_unlock(&unix_table_lock);
284 static struct sock *unix_find_socket_byinode(struct inode *i)
287 struct hlist_node *node;
289 spin_lock(&unix_table_lock);
291 &unix_socket_table[i->i_ino & (UNIX_HASH_SIZE - 1)]) {
292 struct dentry *dentry = unix_sk(s)->dentry;
294 if(dentry && dentry->d_inode == i)
302 spin_unlock(&unix_table_lock);
306 static inline int unix_writable(struct sock *sk)
308 return (atomic_read(&sk->sk_wmem_alloc) << 2) <= sk->sk_sndbuf;
311 static void unix_write_space(struct sock *sk)
313 read_lock(&sk->sk_callback_lock);
314 if (unix_writable(sk)) {
315 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
316 wake_up_interruptible(sk->sk_sleep);
317 sk_wake_async(sk, 2, POLL_OUT);
319 read_unlock(&sk->sk_callback_lock);
322 /* When dgram socket disconnects (or changes its peer), we clear its receive
323 * queue of packets arrived from previous peer. First, it allows to do
324 * flow control based only on wmem_alloc; second, sk connected to peer
325 * may receive messages only from that peer. */
326 static void unix_dgram_disconnected(struct sock *sk, struct sock *other)
328 if (!skb_queue_empty(&sk->sk_receive_queue)) {
329 skb_queue_purge(&sk->sk_receive_queue);
330 wake_up_interruptible_all(&unix_sk(sk)->peer_wait);
332 /* If one link of bidirectional dgram pipe is disconnected,
333 * we signal error. Messages are lost. Do not make this,
334 * when peer was not connected to us.
336 if (!sock_flag(other, SOCK_DEAD) && unix_peer(other) == sk) {
337 other->sk_err = ECONNRESET;
338 other->sk_error_report(other);
343 static void unix_sock_destructor(struct sock *sk)
345 struct unix_sock *u = unix_sk(sk);
347 skb_queue_purge(&sk->sk_receive_queue);
349 BUG_TRAP(!atomic_read(&sk->sk_wmem_alloc));
350 BUG_TRAP(sk_unhashed(sk));
351 BUG_TRAP(!sk->sk_socket);
352 if (!sock_flag(sk, SOCK_DEAD)) {
353 printk("Attempt to release alive unix socket: %p\n", sk);
358 unix_release_addr(u->addr);
360 atomic_dec(&unix_nr_socks);
361 #ifdef UNIX_REFCNT_DEBUG
362 printk(KERN_DEBUG "UNIX %p is destroyed, %d are still alive.\n", sk, atomic_read(&unix_nr_socks));
366 static int unix_release_sock (struct sock *sk, int embrion)
368 struct unix_sock *u = unix_sk(sk);
369 struct dentry *dentry;
370 struct vfsmount *mnt;
375 unix_remove_socket(sk);
378 unix_state_wlock(sk);
380 sk->sk_shutdown = SHUTDOWN_MASK;
385 state = sk->sk_state;
386 sk->sk_state = TCP_CLOSE;
387 unix_state_wunlock(sk);
389 wake_up_interruptible_all(&u->peer_wait);
391 skpair=unix_peer(sk);
394 if (sk->sk_type == SOCK_STREAM || sk->sk_type == SOCK_SEQPACKET) {
395 unix_state_wlock(skpair);
397 skpair->sk_shutdown = SHUTDOWN_MASK;
398 if (!skb_queue_empty(&sk->sk_receive_queue) || embrion)
399 skpair->sk_err = ECONNRESET;
400 unix_state_wunlock(skpair);
401 skpair->sk_state_change(skpair);
402 read_lock(&skpair->sk_callback_lock);
403 sk_wake_async(skpair,1,POLL_HUP);
404 read_unlock(&skpair->sk_callback_lock);
406 sock_put(skpair); /* It may now die */
407 unix_peer(sk) = NULL;
410 /* Try to flush out this socket. Throw out buffers at least */
412 while ((skb = skb_dequeue(&sk->sk_receive_queue)) != NULL) {
413 if (state==TCP_LISTEN)
414 unix_release_sock(skb->sk, 1);
415 /* passed fds are erased in the kfree_skb hook */
426 /* ---- Socket is dead now and most probably destroyed ---- */
429 * Fixme: BSD difference: In BSD all sockets connected to use get
430 * ECONNRESET and we die on the spot. In Linux we behave
431 * like files and pipes do and wait for the last
434 * Can't we simply set sock->err?
436 * What the above comment does talk about? --ANK(980817)
439 if (atomic_read(&unix_tot_inflight))
440 unix_gc(); /* Garbage collect fds */
445 static int unix_listen(struct socket *sock, int backlog)
448 struct sock *sk = sock->sk;
449 struct unix_sock *u = unix_sk(sk);
452 if (sock->type!=SOCK_STREAM && sock->type!=SOCK_SEQPACKET)
453 goto out; /* Only stream/seqpacket sockets accept */
456 goto out; /* No listens on an unbound socket */
457 unix_state_wlock(sk);
458 if (sk->sk_state != TCP_CLOSE && sk->sk_state != TCP_LISTEN)
460 if (backlog > sk->sk_max_ack_backlog)
461 wake_up_interruptible_all(&u->peer_wait);
462 sk->sk_max_ack_backlog = backlog;
463 sk->sk_state = TCP_LISTEN;
464 /* set credentials so connect can copy them */
465 sk->sk_peercred.pid = current->tgid;
466 sk->sk_peercred.uid = current->euid;
467 sk->sk_peercred.gid = current->egid;
471 unix_state_wunlock(sk);
476 static int unix_release(struct socket *);
477 static int unix_bind(struct socket *, struct sockaddr *, int);
478 static int unix_stream_connect(struct socket *, struct sockaddr *,
479 int addr_len, int flags);
480 static int unix_socketpair(struct socket *, struct socket *);
481 static int unix_accept(struct socket *, struct socket *, int);
482 static int unix_getname(struct socket *, struct sockaddr *, int *, int);
483 static unsigned int unix_poll(struct file *, struct socket *, poll_table *);
484 static int unix_ioctl(struct socket *, unsigned int, unsigned long);
485 static int unix_shutdown(struct socket *, int);
486 static int unix_stream_sendmsg(struct kiocb *, struct socket *,
487 struct msghdr *, size_t);
488 static int unix_stream_recvmsg(struct kiocb *, struct socket *,
489 struct msghdr *, size_t, int);
490 static int unix_dgram_sendmsg(struct kiocb *, struct socket *,
491 struct msghdr *, size_t);
492 static int unix_dgram_recvmsg(struct kiocb *, struct socket *,
493 struct msghdr *, size_t, int);
494 static int unix_dgram_connect(struct socket *, struct sockaddr *,
496 static int unix_seqpacket_sendmsg(struct kiocb *, struct socket *,
497 struct msghdr *, size_t);
499 static const struct proto_ops unix_stream_ops = {
501 .owner = THIS_MODULE,
502 .release = unix_release,
504 .connect = unix_stream_connect,
505 .socketpair = unix_socketpair,
506 .accept = unix_accept,
507 .getname = unix_getname,
510 .listen = unix_listen,
511 .shutdown = unix_shutdown,
512 .setsockopt = sock_no_setsockopt,
513 .getsockopt = sock_no_getsockopt,
514 .sendmsg = unix_stream_sendmsg,
515 .recvmsg = unix_stream_recvmsg,
516 .mmap = sock_no_mmap,
517 .sendpage = sock_no_sendpage,
520 static const struct proto_ops unix_dgram_ops = {
522 .owner = THIS_MODULE,
523 .release = unix_release,
525 .connect = unix_dgram_connect,
526 .socketpair = unix_socketpair,
527 .accept = sock_no_accept,
528 .getname = unix_getname,
529 .poll = datagram_poll,
531 .listen = sock_no_listen,
532 .shutdown = unix_shutdown,
533 .setsockopt = sock_no_setsockopt,
534 .getsockopt = sock_no_getsockopt,
535 .sendmsg = unix_dgram_sendmsg,
536 .recvmsg = unix_dgram_recvmsg,
537 .mmap = sock_no_mmap,
538 .sendpage = sock_no_sendpage,
541 static const struct proto_ops unix_seqpacket_ops = {
543 .owner = THIS_MODULE,
544 .release = unix_release,
546 .connect = unix_stream_connect,
547 .socketpair = unix_socketpair,
548 .accept = unix_accept,
549 .getname = unix_getname,
550 .poll = datagram_poll,
552 .listen = unix_listen,
553 .shutdown = unix_shutdown,
554 .setsockopt = sock_no_setsockopt,
555 .getsockopt = sock_no_getsockopt,
556 .sendmsg = unix_seqpacket_sendmsg,
557 .recvmsg = unix_dgram_recvmsg,
558 .mmap = sock_no_mmap,
559 .sendpage = sock_no_sendpage,
562 static struct proto unix_proto = {
564 .owner = THIS_MODULE,
565 .obj_size = sizeof(struct unix_sock),
568 static struct sock * unix_create1(struct socket *sock)
570 struct sock *sk = NULL;
573 if (atomic_read(&unix_nr_socks) >= 2*get_max_files())
576 sk = sk_alloc(PF_UNIX, GFP_KERNEL, &unix_proto, 1);
580 atomic_inc(&unix_nr_socks);
582 sock_init_data(sock,sk);
584 sk->sk_write_space = unix_write_space;
585 sk->sk_max_ack_backlog = sysctl_unix_max_dgram_qlen;
586 sk->sk_destruct = unix_sock_destructor;
590 spin_lock_init(&u->lock);
591 atomic_set(&u->inflight, sock ? 0 : -1);
592 mutex_init(&u->readlock); /* single task reading lock */
593 init_waitqueue_head(&u->peer_wait);
594 unix_insert_socket(unix_sockets_unbound, sk);
599 static int unix_create(struct socket *sock, int protocol)
601 if (protocol && protocol != PF_UNIX)
602 return -EPROTONOSUPPORT;
604 sock->state = SS_UNCONNECTED;
606 switch (sock->type) {
608 sock->ops = &unix_stream_ops;
611 * Believe it or not BSD has AF_UNIX, SOCK_RAW though
615 sock->type=SOCK_DGRAM;
617 sock->ops = &unix_dgram_ops;
620 sock->ops = &unix_seqpacket_ops;
623 return -ESOCKTNOSUPPORT;
626 return unix_create1(sock) ? 0 : -ENOMEM;
629 static int unix_release(struct socket *sock)
631 struct sock *sk = sock->sk;
638 return unix_release_sock (sk, 0);
641 static int unix_autobind(struct socket *sock)
643 struct sock *sk = sock->sk;
644 struct unix_sock *u = unix_sk(sk);
645 static u32 ordernum = 1;
646 struct unix_address * addr;
649 mutex_lock(&u->readlock);
656 addr = kmalloc(sizeof(*addr) + sizeof(short) + 16, GFP_KERNEL);
660 memset(addr, 0, sizeof(*addr) + sizeof(short) + 16);
661 addr->name->sun_family = AF_UNIX;
662 atomic_set(&addr->refcnt, 1);
665 addr->len = sprintf(addr->name->sun_path+1, "%05x", ordernum) + 1 + sizeof(short);
666 addr->hash = unix_hash_fold(csum_partial((void*)addr->name, addr->len, 0));
668 spin_lock(&unix_table_lock);
669 ordernum = (ordernum+1)&0xFFFFF;
671 if (__unix_find_socket_byname(addr->name, addr->len, sock->type,
673 spin_unlock(&unix_table_lock);
674 /* Sanity yield. It is unusual case, but yet... */
675 if (!(ordernum&0xFF))
679 addr->hash ^= sk->sk_type;
681 __unix_remove_socket(sk);
683 __unix_insert_socket(&unix_socket_table[addr->hash], sk);
684 spin_unlock(&unix_table_lock);
687 out: mutex_unlock(&u->readlock);
691 static struct sock *unix_find_other(struct sockaddr_un *sunname, int len,
692 int type, unsigned hash, int *error)
698 if (sunname->sun_path[0]) {
699 err = path_lookup(sunname->sun_path, LOOKUP_FOLLOW, &nd);
702 err = vfs_permission(&nd, MAY_WRITE);
707 if (!S_ISSOCK(nd.dentry->d_inode->i_mode))
709 u=unix_find_socket_byinode(nd.dentry->d_inode);
713 if (u->sk_type == type)
714 touch_atime(nd.mnt, nd.dentry);
719 if (u->sk_type != type) {
725 u=unix_find_socket_byname(sunname, len, type, hash);
727 struct dentry *dentry;
728 dentry = unix_sk(u)->dentry;
730 touch_atime(unix_sk(u)->mnt, dentry);
744 static int unix_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
746 struct sock *sk = sock->sk;
747 struct unix_sock *u = unix_sk(sk);
748 struct sockaddr_un *sunaddr=(struct sockaddr_un *)uaddr;
749 struct dentry * dentry = NULL;
753 struct unix_address *addr;
754 struct hlist_head *list;
757 if (sunaddr->sun_family != AF_UNIX)
760 if (addr_len==sizeof(short)) {
761 err = unix_autobind(sock);
765 err = unix_mkname(sunaddr, addr_len, &hash);
770 mutex_lock(&u->readlock);
777 addr = kmalloc(sizeof(*addr)+addr_len, GFP_KERNEL);
781 memcpy(addr->name, sunaddr, addr_len);
782 addr->len = addr_len;
783 addr->hash = hash ^ sk->sk_type;
784 atomic_set(&addr->refcnt, 1);
786 if (sunaddr->sun_path[0]) {
790 * Get the parent directory, calculate the hash for last
793 err = path_lookup(sunaddr->sun_path, LOOKUP_PARENT, &nd);
795 goto out_mknod_parent;
797 dentry = lookup_create(&nd, 0);
798 err = PTR_ERR(dentry);
800 goto out_mknod_unlock;
803 * All right, let's create it.
806 (SOCK_INODE(sock)->i_mode & ~current->fs->umask);
807 err = vfs_mknod(nd.dentry->d_inode, dentry, mode, 0);
810 mutex_unlock(&nd.dentry->d_inode->i_mutex);
814 addr->hash = UNIX_HASH_SIZE;
817 spin_lock(&unix_table_lock);
819 if (!sunaddr->sun_path[0]) {
821 if (__unix_find_socket_byname(sunaddr, addr_len,
822 sk->sk_type, hash)) {
823 unix_release_addr(addr);
827 list = &unix_socket_table[addr->hash];
829 list = &unix_socket_table[dentry->d_inode->i_ino & (UNIX_HASH_SIZE-1)];
830 u->dentry = nd.dentry;
835 __unix_remove_socket(sk);
837 __unix_insert_socket(list, sk);
840 spin_unlock(&unix_table_lock);
842 mutex_unlock(&u->readlock);
849 mutex_unlock(&nd.dentry->d_inode->i_mutex);
854 unix_release_addr(addr);
858 static int unix_dgram_connect(struct socket *sock, struct sockaddr *addr,
861 struct sock *sk = sock->sk;
862 struct sockaddr_un *sunaddr=(struct sockaddr_un*)addr;
867 if (addr->sa_family != AF_UNSPEC) {
868 err = unix_mkname(sunaddr, alen, &hash);
873 if (test_bit(SOCK_PASSCRED, &sock->flags) &&
874 !unix_sk(sk)->addr && (err = unix_autobind(sock)) != 0)
877 other=unix_find_other(sunaddr, alen, sock->type, hash, &err);
881 unix_state_wlock(sk);
884 if (!unix_may_send(sk, other))
887 err = security_unix_may_send(sk->sk_socket, other->sk_socket);
893 * 1003.1g breaking connected state with AF_UNSPEC
896 unix_state_wlock(sk);
900 * If it was connected, reconnect.
903 struct sock *old_peer = unix_peer(sk);
905 unix_state_wunlock(sk);
907 if (other != old_peer)
908 unix_dgram_disconnected(sk, old_peer);
912 unix_state_wunlock(sk);
917 unix_state_wunlock(sk);
923 static long unix_wait_for_peer(struct sock *other, long timeo)
925 struct unix_sock *u = unix_sk(other);
929 prepare_to_wait_exclusive(&u->peer_wait, &wait, TASK_INTERRUPTIBLE);
931 sched = !sock_flag(other, SOCK_DEAD) &&
932 !(other->sk_shutdown & RCV_SHUTDOWN) &&
933 (skb_queue_len(&other->sk_receive_queue) >
934 other->sk_max_ack_backlog);
936 unix_state_runlock(other);
939 timeo = schedule_timeout(timeo);
941 finish_wait(&u->peer_wait, &wait);
945 static int unix_stream_connect(struct socket *sock, struct sockaddr *uaddr,
946 int addr_len, int flags)
948 struct sockaddr_un *sunaddr=(struct sockaddr_un *)uaddr;
949 struct sock *sk = sock->sk;
950 struct unix_sock *u = unix_sk(sk), *newu, *otheru;
951 struct sock *newsk = NULL;
952 struct sock *other = NULL;
953 struct sk_buff *skb = NULL;
959 err = unix_mkname(sunaddr, addr_len, &hash);
964 if (test_bit(SOCK_PASSCRED, &sock->flags)
965 && !u->addr && (err = unix_autobind(sock)) != 0)
968 timeo = sock_sndtimeo(sk, flags & O_NONBLOCK);
970 /* First of all allocate resources.
971 If we will make it after state is locked,
972 we will have to recheck all again in any case.
977 /* create new sock for complete connection */
978 newsk = unix_create1(NULL);
982 /* Allocate skb for sending to listening sock */
983 skb = sock_wmalloc(newsk, 1, 0, GFP_KERNEL);
988 /* Find listening sock. */
989 other = unix_find_other(sunaddr, addr_len, sk->sk_type, hash, &err);
993 /* Latch state of peer */
994 unix_state_rlock(other);
996 /* Apparently VFS overslept socket death. Retry. */
997 if (sock_flag(other, SOCK_DEAD)) {
998 unix_state_runlock(other);
1003 err = -ECONNREFUSED;
1004 if (other->sk_state != TCP_LISTEN)
1007 if (skb_queue_len(&other->sk_receive_queue) >
1008 other->sk_max_ack_backlog) {
1013 timeo = unix_wait_for_peer(other, timeo);
1015 err = sock_intr_errno(timeo);
1016 if (signal_pending(current))
1024 It is tricky place. We need to grab write lock and cannot
1025 drop lock on peer. It is dangerous because deadlock is
1026 possible. Connect to self case and simultaneous
1027 attempt to connect are eliminated by checking socket
1028 state. other is TCP_LISTEN, if sk is TCP_LISTEN we
1029 check this before attempt to grab lock.
1031 Well, and we have to recheck the state after socket locked.
1037 /* This is ok... continue with connect */
1039 case TCP_ESTABLISHED:
1040 /* Socket is already connected */
1048 unix_state_wlock(sk);
1050 if (sk->sk_state != st) {
1051 unix_state_wunlock(sk);
1052 unix_state_runlock(other);
1057 err = security_unix_stream_connect(sock, other->sk_socket, newsk);
1059 unix_state_wunlock(sk);
1063 /* The way is open! Fastly set all the necessary fields... */
1066 unix_peer(newsk) = sk;
1067 newsk->sk_state = TCP_ESTABLISHED;
1068 newsk->sk_type = sk->sk_type;
1069 newsk->sk_peercred.pid = current->tgid;
1070 newsk->sk_peercred.uid = current->euid;
1071 newsk->sk_peercred.gid = current->egid;
1072 newu = unix_sk(newsk);
1073 newsk->sk_sleep = &newu->peer_wait;
1074 otheru = unix_sk(other);
1076 /* copy address information from listening to new sock*/
1078 atomic_inc(&otheru->addr->refcnt);
1079 newu->addr = otheru->addr;
1081 if (otheru->dentry) {
1082 newu->dentry = dget(otheru->dentry);
1083 newu->mnt = mntget(otheru->mnt);
1086 /* Set credentials */
1087 sk->sk_peercred = other->sk_peercred;
1089 sock->state = SS_CONNECTED;
1090 sk->sk_state = TCP_ESTABLISHED;
1093 smp_mb__after_atomic_inc(); /* sock_hold() does an atomic_inc() */
1094 unix_peer(sk) = newsk;
1096 unix_state_wunlock(sk);
1098 /* take ten and and send info to listening sock */
1099 spin_lock(&other->sk_receive_queue.lock);
1100 __skb_queue_tail(&other->sk_receive_queue, skb);
1101 /* Undo artificially decreased inflight after embrion
1102 * is installed to listening socket. */
1103 atomic_inc(&newu->inflight);
1104 spin_unlock(&other->sk_receive_queue.lock);
1105 unix_state_runlock(other);
1106 other->sk_data_ready(other, 0);
1112 unix_state_runlock(other);
1118 unix_release_sock(newsk, 0);
1124 static int unix_socketpair(struct socket *socka, struct socket *sockb)
1126 struct sock *ska=socka->sk, *skb = sockb->sk;
1128 /* Join our sockets back to back */
1133 ska->sk_peercred.pid = skb->sk_peercred.pid = current->tgid;
1134 ska->sk_peercred.uid = skb->sk_peercred.uid = current->euid;
1135 ska->sk_peercred.gid = skb->sk_peercred.gid = current->egid;
1137 if (ska->sk_type != SOCK_DGRAM) {
1138 ska->sk_state = TCP_ESTABLISHED;
1139 skb->sk_state = TCP_ESTABLISHED;
1140 socka->state = SS_CONNECTED;
1141 sockb->state = SS_CONNECTED;
1146 static int unix_accept(struct socket *sock, struct socket *newsock, int flags)
1148 struct sock *sk = sock->sk;
1150 struct sk_buff *skb;
1154 if (sock->type!=SOCK_STREAM && sock->type!=SOCK_SEQPACKET)
1158 if (sk->sk_state != TCP_LISTEN)
1161 /* If socket state is TCP_LISTEN it cannot change (for now...),
1162 * so that no locks are necessary.
1165 skb = skb_recv_datagram(sk, 0, flags&O_NONBLOCK, &err);
1167 /* This means receive shutdown. */
1174 skb_free_datagram(sk, skb);
1175 wake_up_interruptible(&unix_sk(sk)->peer_wait);
1177 /* attach accepted sock to socket */
1178 unix_state_wlock(tsk);
1179 newsock->state = SS_CONNECTED;
1180 sock_graft(tsk, newsock);
1181 unix_state_wunlock(tsk);
1189 static int unix_getname(struct socket *sock, struct sockaddr *uaddr, int *uaddr_len, int peer)
1191 struct sock *sk = sock->sk;
1192 struct unix_sock *u;
1193 struct sockaddr_un *sunaddr=(struct sockaddr_un *)uaddr;
1197 sk = unix_peer_get(sk);
1208 unix_state_rlock(sk);
1210 sunaddr->sun_family = AF_UNIX;
1211 sunaddr->sun_path[0] = 0;
1212 *uaddr_len = sizeof(short);
1214 struct unix_address *addr = u->addr;
1216 *uaddr_len = addr->len;
1217 memcpy(sunaddr, addr->name, *uaddr_len);
1219 unix_state_runlock(sk);
1225 static void unix_detach_fds(struct scm_cookie *scm, struct sk_buff *skb)
1229 scm->fp = UNIXCB(skb).fp;
1230 skb->destructor = sock_wfree;
1231 UNIXCB(skb).fp = NULL;
1233 for (i=scm->fp->count-1; i>=0; i--)
1234 unix_notinflight(scm->fp->fp[i]);
1237 static void unix_destruct_fds(struct sk_buff *skb)
1239 struct scm_cookie scm;
1240 memset(&scm, 0, sizeof(scm));
1241 unix_detach_fds(&scm, skb);
1243 /* Alas, it calls VFS */
1244 /* So fscking what? fput() had been SMP-safe since the last Summer */
1249 static void unix_attach_fds(struct scm_cookie *scm, struct sk_buff *skb)
1252 for (i=scm->fp->count-1; i>=0; i--)
1253 unix_inflight(scm->fp->fp[i]);
1254 UNIXCB(skb).fp = scm->fp;
1255 skb->destructor = unix_destruct_fds;
1260 * Send AF_UNIX data.
1263 static int unix_dgram_sendmsg(struct kiocb *kiocb, struct socket *sock,
1264 struct msghdr *msg, size_t len)
1266 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1267 struct sock *sk = sock->sk;
1268 struct unix_sock *u = unix_sk(sk);
1269 struct sockaddr_un *sunaddr=msg->msg_name;
1270 struct sock *other = NULL;
1271 int namelen = 0; /* fake GCC */
1274 struct sk_buff *skb;
1276 struct scm_cookie tmp_scm;
1278 if (NULL == siocb->scm)
1279 siocb->scm = &tmp_scm;
1280 err = scm_send(sock, msg, siocb->scm);
1285 if (msg->msg_flags&MSG_OOB)
1288 if (msg->msg_namelen) {
1289 err = unix_mkname(sunaddr, msg->msg_namelen, &hash);
1296 other = unix_peer_get(sk);
1301 if (test_bit(SOCK_PASSCRED, &sock->flags)
1302 && !u->addr && (err = unix_autobind(sock)) != 0)
1306 if (len > sk->sk_sndbuf - 32)
1309 skb = sock_alloc_send_skb(sk, len, msg->msg_flags&MSG_DONTWAIT, &err);
1313 memcpy(UNIXCREDS(skb), &siocb->scm->creds, sizeof(struct ucred));
1315 unix_attach_fds(siocb->scm, skb);
1317 unix_get_peersec_dgram(skb);
1319 skb->h.raw = skb->data;
1320 err = memcpy_fromiovec(skb_put(skb,len), msg->msg_iov, len);
1324 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1329 if (sunaddr == NULL)
1332 other = unix_find_other(sunaddr, namelen, sk->sk_type,
1338 unix_state_rlock(other);
1340 if (!unix_may_send(sk, other))
1343 if (sock_flag(other, SOCK_DEAD)) {
1345 * Check with 1003.1g - what should
1348 unix_state_runlock(other);
1352 unix_state_wlock(sk);
1353 if (unix_peer(sk) == other) {
1355 unix_state_wunlock(sk);
1357 unix_dgram_disconnected(sk, other);
1359 err = -ECONNREFUSED;
1361 unix_state_wunlock(sk);
1371 if (other->sk_shutdown & RCV_SHUTDOWN)
1374 if (sk->sk_type != SOCK_SEQPACKET) {
1375 err = security_unix_may_send(sk->sk_socket, other->sk_socket);
1380 if (unix_peer(other) != sk &&
1381 (skb_queue_len(&other->sk_receive_queue) >
1382 other->sk_max_ack_backlog)) {
1388 timeo = unix_wait_for_peer(other, timeo);
1390 err = sock_intr_errno(timeo);
1391 if (signal_pending(current))
1397 skb_queue_tail(&other->sk_receive_queue, skb);
1398 unix_state_runlock(other);
1399 other->sk_data_ready(other, len);
1401 scm_destroy(siocb->scm);
1405 unix_state_runlock(other);
1411 scm_destroy(siocb->scm);
1416 static int unix_stream_sendmsg(struct kiocb *kiocb, struct socket *sock,
1417 struct msghdr *msg, size_t len)
1419 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1420 struct sock *sk = sock->sk;
1421 struct sock *other = NULL;
1422 struct sockaddr_un *sunaddr=msg->msg_name;
1424 struct sk_buff *skb;
1426 struct scm_cookie tmp_scm;
1428 if (NULL == siocb->scm)
1429 siocb->scm = &tmp_scm;
1430 err = scm_send(sock, msg, siocb->scm);
1435 if (msg->msg_flags&MSG_OOB)
1438 if (msg->msg_namelen) {
1439 err = sk->sk_state == TCP_ESTABLISHED ? -EISCONN : -EOPNOTSUPP;
1444 other = unix_peer(sk);
1449 if (sk->sk_shutdown & SEND_SHUTDOWN)
1455 * Optimisation for the fact that under 0.01% of X
1456 * messages typically need breaking up.
1461 /* Keep two messages in the pipe so it schedules better */
1462 if (size > ((sk->sk_sndbuf >> 1) - 64))
1463 size = (sk->sk_sndbuf >> 1) - 64;
1465 if (size > SKB_MAX_ALLOC)
1466 size = SKB_MAX_ALLOC;
1472 skb=sock_alloc_send_skb(sk,size,msg->msg_flags&MSG_DONTWAIT, &err);
1478 * If you pass two values to the sock_alloc_send_skb
1479 * it tries to grab the large buffer with GFP_NOFS
1480 * (which can fail easily), and if it fails grab the
1481 * fallback size buffer which is under a page and will
1484 size = min_t(int, size, skb_tailroom(skb));
1486 memcpy(UNIXCREDS(skb), &siocb->scm->creds, sizeof(struct ucred));
1488 unix_attach_fds(siocb->scm, skb);
1490 if ((err = memcpy_fromiovec(skb_put(skb,size), msg->msg_iov, size)) != 0) {
1495 unix_state_rlock(other);
1497 if (sock_flag(other, SOCK_DEAD) ||
1498 (other->sk_shutdown & RCV_SHUTDOWN))
1501 skb_queue_tail(&other->sk_receive_queue, skb);
1502 unix_state_runlock(other);
1503 other->sk_data_ready(other, size);
1507 scm_destroy(siocb->scm);
1513 unix_state_runlock(other);
1516 if (sent==0 && !(msg->msg_flags&MSG_NOSIGNAL))
1517 send_sig(SIGPIPE,current,0);
1520 scm_destroy(siocb->scm);
1522 return sent ? : err;
1525 static int unix_seqpacket_sendmsg(struct kiocb *kiocb, struct socket *sock,
1526 struct msghdr *msg, size_t len)
1529 struct sock *sk = sock->sk;
1531 err = sock_error(sk);
1535 if (sk->sk_state != TCP_ESTABLISHED)
1538 if (msg->msg_namelen)
1539 msg->msg_namelen = 0;
1541 return unix_dgram_sendmsg(kiocb, sock, msg, len);
1544 static void unix_copy_addr(struct msghdr *msg, struct sock *sk)
1546 struct unix_sock *u = unix_sk(sk);
1548 msg->msg_namelen = 0;
1550 msg->msg_namelen = u->addr->len;
1551 memcpy(msg->msg_name, u->addr->name, u->addr->len);
1555 static int unix_dgram_recvmsg(struct kiocb *iocb, struct socket *sock,
1556 struct msghdr *msg, size_t size,
1559 struct sock_iocb *siocb = kiocb_to_siocb(iocb);
1560 struct scm_cookie tmp_scm;
1561 struct sock *sk = sock->sk;
1562 struct unix_sock *u = unix_sk(sk);
1563 int noblock = flags & MSG_DONTWAIT;
1564 struct sk_buff *skb;
1571 msg->msg_namelen = 0;
1573 mutex_lock(&u->readlock);
1575 skb = skb_recv_datagram(sk, flags, noblock, &err);
1579 wake_up_interruptible(&u->peer_wait);
1582 unix_copy_addr(msg, skb->sk);
1584 if (size > skb->len)
1586 else if (size < skb->len)
1587 msg->msg_flags |= MSG_TRUNC;
1589 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, size);
1594 siocb->scm = &tmp_scm;
1595 memset(&tmp_scm, 0, sizeof(tmp_scm));
1597 siocb->scm->creds = *UNIXCREDS(skb);
1598 unix_set_secdata(siocb->scm, skb);
1600 if (!(flags & MSG_PEEK))
1603 unix_detach_fds(siocb->scm, skb);
1607 /* It is questionable: on PEEK we could:
1608 - do not return fds - good, but too simple 8)
1609 - return fds, and do not return them on read (old strategy,
1611 - clone fds (I chose it for now, it is the most universal
1614 POSIX 1003.1g does not actually define this clearly
1615 at all. POSIX 1003.1g doesn't define a lot of things
1620 siocb->scm->fp = scm_fp_dup(UNIXCB(skb).fp);
1624 scm_recv(sock, msg, siocb->scm, flags);
1627 skb_free_datagram(sk,skb);
1629 mutex_unlock(&u->readlock);
1635 * Sleep until data has arrive. But check for races..
1638 static long unix_stream_data_wait(struct sock * sk, long timeo)
1642 unix_state_rlock(sk);
1645 prepare_to_wait(sk->sk_sleep, &wait, TASK_INTERRUPTIBLE);
1647 if (!skb_queue_empty(&sk->sk_receive_queue) ||
1649 (sk->sk_shutdown & RCV_SHUTDOWN) ||
1650 signal_pending(current) ||
1654 set_bit(SOCK_ASYNC_WAITDATA, &sk->sk_socket->flags);
1655 unix_state_runlock(sk);
1656 timeo = schedule_timeout(timeo);
1657 unix_state_rlock(sk);
1658 clear_bit(SOCK_ASYNC_WAITDATA, &sk->sk_socket->flags);
1661 finish_wait(sk->sk_sleep, &wait);
1662 unix_state_runlock(sk);
1668 static int unix_stream_recvmsg(struct kiocb *iocb, struct socket *sock,
1669 struct msghdr *msg, size_t size,
1672 struct sock_iocb *siocb = kiocb_to_siocb(iocb);
1673 struct scm_cookie tmp_scm;
1674 struct sock *sk = sock->sk;
1675 struct unix_sock *u = unix_sk(sk);
1676 struct sockaddr_un *sunaddr=msg->msg_name;
1678 int check_creds = 0;
1684 if (sk->sk_state != TCP_ESTABLISHED)
1691 target = sock_rcvlowat(sk, flags&MSG_WAITALL, size);
1692 timeo = sock_rcvtimeo(sk, flags&MSG_DONTWAIT);
1694 msg->msg_namelen = 0;
1696 /* Lock the socket to prevent queue disordering
1697 * while sleeps in memcpy_tomsg
1701 siocb->scm = &tmp_scm;
1702 memset(&tmp_scm, 0, sizeof(tmp_scm));
1705 mutex_lock(&u->readlock);
1710 struct sk_buff *skb;
1712 skb = skb_dequeue(&sk->sk_receive_queue);
1715 if (copied >= target)
1719 * POSIX 1003.1g mandates this order.
1722 if ((err = sock_error(sk)) != 0)
1724 if (sk->sk_shutdown & RCV_SHUTDOWN)
1729 mutex_unlock(&u->readlock);
1731 timeo = unix_stream_data_wait(sk, timeo);
1733 if (signal_pending(current)) {
1734 err = sock_intr_errno(timeo);
1737 mutex_lock(&u->readlock);
1742 /* Never glue messages from different writers */
1743 if (memcmp(UNIXCREDS(skb), &siocb->scm->creds, sizeof(siocb->scm->creds)) != 0) {
1744 skb_queue_head(&sk->sk_receive_queue, skb);
1748 /* Copy credentials */
1749 siocb->scm->creds = *UNIXCREDS(skb);
1753 /* Copy address just once */
1756 unix_copy_addr(msg, skb->sk);
1760 chunk = min_t(unsigned int, skb->len, size);
1761 if (memcpy_toiovec(msg->msg_iov, skb->data, chunk)) {
1762 skb_queue_head(&sk->sk_receive_queue, skb);
1770 /* Mark read part of skb as used */
1771 if (!(flags & MSG_PEEK))
1773 skb_pull(skb, chunk);
1776 unix_detach_fds(siocb->scm, skb);
1778 /* put the skb back if we didn't use it up.. */
1781 skb_queue_head(&sk->sk_receive_queue, skb);
1792 /* It is questionable, see note in unix_dgram_recvmsg.
1795 siocb->scm->fp = scm_fp_dup(UNIXCB(skb).fp);
1797 /* put message back and return */
1798 skb_queue_head(&sk->sk_receive_queue, skb);
1803 mutex_unlock(&u->readlock);
1804 scm_recv(sock, msg, siocb->scm, flags);
1806 return copied ? : err;
1809 static int unix_shutdown(struct socket *sock, int mode)
1811 struct sock *sk = sock->sk;
1814 mode = (mode+1)&(RCV_SHUTDOWN|SEND_SHUTDOWN);
1817 unix_state_wlock(sk);
1818 sk->sk_shutdown |= mode;
1819 other=unix_peer(sk);
1822 unix_state_wunlock(sk);
1823 sk->sk_state_change(sk);
1826 (sk->sk_type == SOCK_STREAM || sk->sk_type == SOCK_SEQPACKET)) {
1830 if (mode&RCV_SHUTDOWN)
1831 peer_mode |= SEND_SHUTDOWN;
1832 if (mode&SEND_SHUTDOWN)
1833 peer_mode |= RCV_SHUTDOWN;
1834 unix_state_wlock(other);
1835 other->sk_shutdown |= peer_mode;
1836 unix_state_wunlock(other);
1837 other->sk_state_change(other);
1838 read_lock(&other->sk_callback_lock);
1839 if (peer_mode == SHUTDOWN_MASK)
1840 sk_wake_async(other,1,POLL_HUP);
1841 else if (peer_mode & RCV_SHUTDOWN)
1842 sk_wake_async(other,1,POLL_IN);
1843 read_unlock(&other->sk_callback_lock);
1851 static int unix_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
1853 struct sock *sk = sock->sk;
1860 amount = atomic_read(&sk->sk_wmem_alloc);
1861 err = put_user(amount, (int __user *)arg);
1865 struct sk_buff *skb;
1867 if (sk->sk_state == TCP_LISTEN) {
1872 spin_lock(&sk->sk_receive_queue.lock);
1873 if (sk->sk_type == SOCK_STREAM ||
1874 sk->sk_type == SOCK_SEQPACKET) {
1875 skb_queue_walk(&sk->sk_receive_queue, skb)
1878 skb = skb_peek(&sk->sk_receive_queue);
1882 spin_unlock(&sk->sk_receive_queue.lock);
1883 err = put_user(amount, (int __user *)arg);
1894 static unsigned int unix_poll(struct file * file, struct socket *sock, poll_table *wait)
1896 struct sock *sk = sock->sk;
1899 poll_wait(file, sk->sk_sleep, wait);
1902 /* exceptional events? */
1905 if (sk->sk_shutdown == SHUTDOWN_MASK)
1907 if (sk->sk_shutdown & RCV_SHUTDOWN)
1911 if (!skb_queue_empty(&sk->sk_receive_queue) ||
1912 (sk->sk_shutdown & RCV_SHUTDOWN))
1913 mask |= POLLIN | POLLRDNORM;
1915 /* Connection-based need to check for termination and startup */
1916 if ((sk->sk_type == SOCK_STREAM || sk->sk_type == SOCK_SEQPACKET) && sk->sk_state == TCP_CLOSE)
1920 * we set writable also when the other side has shut down the
1921 * connection. This prevents stuck sockets.
1923 if (unix_writable(sk))
1924 mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
1930 #ifdef CONFIG_PROC_FS
1931 static struct sock *unix_seq_idx(int *iter, loff_t pos)
1936 for (s = first_unix_socket(iter); s; s = next_unix_socket(iter, s)) {
1945 static void *unix_seq_start(struct seq_file *seq, loff_t *pos)
1947 spin_lock(&unix_table_lock);
1948 return *pos ? unix_seq_idx(seq->private, *pos - 1) : ((void *) 1);
1951 static void *unix_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1956 return first_unix_socket(seq->private);
1957 return next_unix_socket(seq->private, v);
1960 static void unix_seq_stop(struct seq_file *seq, void *v)
1962 spin_unlock(&unix_table_lock);
1965 static int unix_seq_show(struct seq_file *seq, void *v)
1969 seq_puts(seq, "Num RefCount Protocol Flags Type St "
1973 struct unix_sock *u = unix_sk(s);
1974 unix_state_rlock(s);
1976 seq_printf(seq, "%p: %08X %08X %08X %04X %02X %5lu",
1978 atomic_read(&s->sk_refcnt),
1980 s->sk_state == TCP_LISTEN ? __SO_ACCEPTCON : 0,
1983 (s->sk_state == TCP_ESTABLISHED ? SS_CONNECTED : SS_UNCONNECTED) :
1984 (s->sk_state == TCP_ESTABLISHED ? SS_CONNECTING : SS_DISCONNECTING),
1992 len = u->addr->len - sizeof(short);
1993 if (!UNIX_ABSTRACT(s))
1999 for ( ; i < len; i++)
2000 seq_putc(seq, u->addr->name->sun_path[i]);
2002 unix_state_runlock(s);
2003 seq_putc(seq, '\n');
2009 static struct seq_operations unix_seq_ops = {
2010 .start = unix_seq_start,
2011 .next = unix_seq_next,
2012 .stop = unix_seq_stop,
2013 .show = unix_seq_show,
2017 static int unix_seq_open(struct inode *inode, struct file *file)
2019 struct seq_file *seq;
2021 int *iter = kmalloc(sizeof(int), GFP_KERNEL);
2026 rc = seq_open(file, &unix_seq_ops);
2030 seq = file->private_data;
2031 seq->private = iter;
2040 static struct file_operations unix_seq_fops = {
2041 .owner = THIS_MODULE,
2042 .open = unix_seq_open,
2044 .llseek = seq_lseek,
2045 .release = seq_release_private,
2050 static struct net_proto_family unix_family_ops = {
2052 .create = unix_create,
2053 .owner = THIS_MODULE,
2056 static int __init af_unix_init(void)
2059 struct sk_buff *dummy_skb;
2061 if (sizeof(struct unix_skb_parms) > sizeof(dummy_skb->cb)) {
2062 printk(KERN_CRIT "%s: panic\n", __FUNCTION__);
2066 rc = proto_register(&unix_proto, 1);
2068 printk(KERN_CRIT "%s: Cannot create unix_sock SLAB cache!\n",
2073 sock_register(&unix_family_ops);
2074 #ifdef CONFIG_PROC_FS
2075 proc_net_fops_create("unix", 0, &unix_seq_fops);
2077 unix_sysctl_register();
2082 static void __exit af_unix_exit(void)
2084 sock_unregister(PF_UNIX);
2085 unix_sysctl_unregister();
2086 proc_net_remove("unix");
2087 proto_unregister(&unix_proto);
2090 module_init(af_unix_init);
2091 module_exit(af_unix_exit);
2093 MODULE_LICENSE("GPL");
2094 MODULE_ALIAS_NETPROTO(PF_UNIX);