RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / include / net / af_unix.h
blob3601e811f65c54ae149941006284fa2179b8a27e
1 #ifndef __LINUX_NET_AFUNIX_H
2 #define __LINUX_NET_AFUNIX_H
4 #include <linux/socket.h>
5 #include <linux/un.h>
6 #include <linux/mutex.h>
7 #include <net/sock.h>
9 extern void unix_inflight(struct file *fp);
10 extern void unix_notinflight(struct file *fp);
11 extern void unix_gc(void);
12 extern void wait_for_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]);
27 return NULL;
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? */
34 if (next)
35 return next;
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]);
41 return NULL;
44 #define forall_unix_sockets(i, s) \
45 for (s = first_unix_socket(&(i)); s; s = next_unix_socket(&(i),(s)))
47 struct unix_address {
48 atomic_t refcnt;
49 int len;
50 unsigned hash;
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 */
57 #ifdef CONFIG_SECURITY_NETWORK
58 u32 secid; /* Security ID */
59 #endif
62 #define UNIXCB(skb) (*(struct unix_skb_parms*)&((skb)->cb))
63 #define UNIXCREDS(skb) (&UNIXCB((skb)).creds)
64 #define UNIXSID(skb) (&UNIXCB((skb)).secid)
66 #define unix_state_lock(s) spin_lock(&unix_sk(s)->lock)
67 #define unix_state_unlock(s) spin_unlock(&unix_sk(s)->lock)
68 #define unix_state_lock_nested(s) \
69 spin_lock_nested(&unix_sk(s)->lock, \
70 SINGLE_DEPTH_NESTING)
72 #ifdef __KERNEL__
73 /* The AF_UNIX socket */
74 struct unix_sock {
75 /* WARNING: sk has to be the first member */
76 struct sock sk;
77 struct unix_address *addr;
78 struct dentry *dentry;
79 struct vfsmount *mnt;
80 struct mutex readlock;
81 struct sock *peer;
82 struct sock *other;
83 struct list_head link;
84 atomic_t inflight;
85 spinlock_t lock;
86 unsigned int gc_candidate : 1;
87 unsigned int gc_maybe_cycle : 1;
88 wait_queue_head_t peer_wait;
90 #define unix_sk(__sk) ((struct unix_sock *)__sk)
92 #ifdef CONFIG_SYSCTL
93 extern int sysctl_unix_max_dgram_qlen;
94 extern void unix_sysctl_register(void);
95 extern void unix_sysctl_unregister(void);
96 #else
97 static inline void unix_sysctl_register(void) {}
98 static inline void unix_sysctl_unregister(void) {}
99 #endif
100 #endif
101 #endif