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