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);
7 #define UNIX_HASH_SIZE 256
9 extern struct hlist_head unix_socket_table[UNIX_HASH_SIZE + 1];
10 extern rwlock_t unix_table_lock;
12 extern atomic_t unix_tot_inflight;
14 static inline struct sock *first_unix_socket(int *i)
16 for (*i = 0; *i <= UNIX_HASH_SIZE; (*i)++) {
17 if (!hlist_empty(&unix_socket_table[*i]))
18 return __sk_head(&unix_socket_table[*i]);
23 static inline struct sock *next_unix_socket(int *i, struct sock *s)
25 struct sock *next = sk_next(s);
26 /* More in this chain? */
29 /* Look for next non-empty chain. */
30 for ((*i)++; *i <= UNIX_HASH_SIZE; (*i)++) {
31 if (!hlist_empty(&unix_socket_table[*i]))
32 return __sk_head(&unix_socket_table[*i]);
37 #define forall_unix_sockets(i, s) \
38 for (s = first_unix_socket(&(i)); s; s = next_unix_socket(&(i),(s)))
44 struct sockaddr_un name[0];
47 struct unix_skb_parms {
48 struct ucred creds; /* Skb credentials */
49 struct scm_fp_list *fp; /* Passed files */
52 #define UNIXCB(skb) (*(struct unix_skb_parms*)&((skb)->cb))
53 #define UNIXCREDS(skb) (&UNIXCB((skb)).creds)
55 #define unix_state_rlock(s) read_lock(&unix_sk(s)->lock)
56 #define unix_state_runlock(s) read_unlock(&unix_sk(s)->lock)
57 #define unix_state_wlock(s) write_lock(&unix_sk(s)->lock)
58 #define unix_state_wunlock(s) write_unlock(&unix_sk(s)->lock)
61 /* The AF_UNIX socket */
63 /* WARNING: sk has to be the first member */
65 struct unix_address *addr;
66 struct dentry *dentry;
68 struct semaphore readsem;
74 wait_queue_head_t peer_wait;
76 #define unix_sk(__sk) ((struct unix_sock *)__sk)