1 #ifndef __LINUX_NET_AFUNIX_H
2 #define __LINUX_NET_AFUNIX_H
4 #include <linux/config.h>
5 #include <linux/socket.h>
7 #include <linux/mutex.h>
10 extern void unix_inflight(struct file
*fp
);
11 extern void unix_notinflight(struct file
*fp
);
12 extern void unix_gc(void);
14 #define UNIX_HASH_SIZE 256
16 extern struct hlist_head unix_socket_table
[UNIX_HASH_SIZE
+ 1];
17 extern spinlock_t unix_table_lock
;
19 extern atomic_t unix_tot_inflight
;
21 static inline struct sock
*first_unix_socket(int *i
)
23 for (*i
= 0; *i
<= UNIX_HASH_SIZE
; (*i
)++) {
24 if (!hlist_empty(&unix_socket_table
[*i
]))
25 return __sk_head(&unix_socket_table
[*i
]);
30 static inline struct sock
*next_unix_socket(int *i
, struct sock
*s
)
32 struct sock
*next
= sk_next(s
);
33 /* More in this chain? */
36 /* Look for next non-empty chain. */
37 for ((*i
)++; *i
<= UNIX_HASH_SIZE
; (*i
)++) {
38 if (!hlist_empty(&unix_socket_table
[*i
]))
39 return __sk_head(&unix_socket_table
[*i
]);
44 #define forall_unix_sockets(i, s) \
45 for (s = first_unix_socket(&(i)); s; s = next_unix_socket(&(i),(s)))
51 struct sockaddr_un name
[0];
54 struct unix_skb_parms
{
55 struct ucred creds
; /* Skb credentials */
56 struct scm_fp_list
*fp
; /* Passed files */
59 #define UNIXCB(skb) (*(struct unix_skb_parms*)&((skb)->cb))
60 #define UNIXCREDS(skb) (&UNIXCB((skb)).creds)
62 #define unix_state_rlock(s) spin_lock(&unix_sk(s)->lock)
63 #define unix_state_runlock(s) spin_unlock(&unix_sk(s)->lock)
64 #define unix_state_wlock(s) spin_lock(&unix_sk(s)->lock)
65 #define unix_state_wunlock(s) spin_unlock(&unix_sk(s)->lock)
68 /* The AF_UNIX socket */
70 /* WARNING: sk has to be the first member */
72 struct unix_address
*addr
;
73 struct dentry
*dentry
;
75 struct mutex readlock
;
81 wait_queue_head_t peer_wait
;
83 #define unix_sk(__sk) ((struct unix_sock *)__sk)
86 extern int sysctl_unix_max_dgram_qlen
;
87 extern void unix_sysctl_register(void);
88 extern void unix_sysctl_unregister(void);
90 static inline void unix_sysctl_register(void) {}
91 static inline void unix_sysctl_unregister(void) {}