linux 2.6.16.38 w/ vs2.0.3-rc1
[linux-2.6.git] / include / net / af_unix.h
1 #ifndef __LINUX_NET_AFUNIX_H
2 #define __LINUX_NET_AFUNIX_H
3
4 #include <linux/config.h>
5 #include <linux/socket.h>
6 #include <linux/un.h>
7 #include <net/sock.h>
8
9 extern void unix_inflight(struct file *fp);
10 extern void unix_notinflight(struct file *fp);
11 extern void unix_gc(void);
12
13 #define UNIX_HASH_SIZE  256
14
15 extern struct hlist_head unix_socket_table[UNIX_HASH_SIZE + 1];
16 extern spinlock_t unix_table_lock;
17
18 extern atomic_t unix_tot_inflight;
19
20 static inline struct sock *next_unix_socket_table(int *i)
21 {
22         for ((*i)++; *i <= UNIX_HASH_SIZE; (*i)++) {
23                 if (!hlist_empty(&unix_socket_table[*i]))
24                         return __sk_head(&unix_socket_table[*i]);
25         }
26         return NULL;
27 }
28
29 static inline struct sock *next_unix_socket(int *i, struct sock *s)
30 {
31         do {
32                 if (s)
33                         s = sk_next(s);
34                 if (!s)
35                         s = next_unix_socket_table(i);
36         } while (s && !vx_check(s->sk_xid, VX_IDENT|VX_WATCH));
37         return s;
38 }
39
40 static inline struct sock *first_unix_socket(int *i)
41 {
42         *i = 0;
43         return next_unix_socket(i, NULL);
44 }
45
46 #define forall_unix_sockets(i, s) \
47         for (s = first_unix_socket(&(i)); s; s = next_unix_socket(&(i),(s)))
48
49 struct unix_address {
50         atomic_t        refcnt;
51         int             len;
52         unsigned        hash;
53         struct sockaddr_un name[0];
54 };
55
56 struct unix_skb_parms {
57         struct ucred            creds;          /* Skb credentials      */
58         struct scm_fp_list      *fp;            /* Passed files         */
59 };
60
61 #define UNIXCB(skb)     (*(struct unix_skb_parms*)&((skb)->cb))
62 #define UNIXCREDS(skb)  (&UNIXCB((skb)).creds)
63
64 #define unix_state_rlock(s)     spin_lock(&unix_sk(s)->lock)
65 #define unix_state_runlock(s)   spin_unlock(&unix_sk(s)->lock)
66 #define unix_state_wlock(s)     spin_lock(&unix_sk(s)->lock)
67 #define unix_state_wunlock(s)   spin_unlock(&unix_sk(s)->lock)
68
69 #ifdef __KERNEL__
70 /* The AF_UNIX socket */
71 struct unix_sock {
72         /* WARNING: sk has to be the first member */
73         struct sock             sk;
74         struct unix_address     *addr;
75         struct dentry           *dentry;
76         struct vfsmount         *mnt;
77         struct semaphore        readsem;
78         struct sock             *peer;
79         struct sock             *other;
80         struct sock             *gc_tree;
81         atomic_t                inflight;
82         spinlock_t              lock;
83         wait_queue_head_t       peer_wait;
84 };
85 #define unix_sk(__sk) ((struct unix_sock *)__sk)
86
87 #ifdef CONFIG_SYSCTL
88 extern int sysctl_unix_max_dgram_qlen;
89 extern void unix_sysctl_register(void);
90 extern void unix_sysctl_unregister(void);
91 #else
92 static inline void unix_sysctl_register(void) {}
93 static inline void unix_sysctl_unregister(void) {}
94 #endif
95 #endif
96 #endif