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