| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef __LINUX_NET_AFUNIX_H | 
|  | 2 | #define __LINUX_NET_AFUNIX_H | 
| Arnaldo Carvalho de Melo | 2038073 | 2005-08-16 02:18:02 -0300 | [diff] [blame] | 3 |  | 
| Arnaldo Carvalho de Melo | 2038073 | 2005-08-16 02:18:02 -0300 | [diff] [blame] | 4 | #include <linux/socket.h> | 
|  | 5 | #include <linux/un.h> | 
| Ingo Molnar | 57b47a5 | 2006-03-20 22:35:41 -0800 | [diff] [blame] | 6 | #include <linux/mutex.h> | 
| Arnaldo Carvalho de Melo | 2038073 | 2005-08-16 02:18:02 -0300 | [diff] [blame] | 7 | #include <net/sock.h> | 
|  | 8 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | extern void unix_inflight(struct file *fp); | 
|  | 10 | extern void unix_notinflight(struct file *fp); | 
|  | 11 | extern void unix_gc(void); | 
|  | 12 |  | 
|  | 13 | #define UNIX_HASH_SIZE	256 | 
|  | 14 |  | 
|  | 15 | extern struct hlist_head unix_socket_table[UNIX_HASH_SIZE + 1]; | 
| David S. Miller | fbe9cc4 | 2005-12-13 23:26:29 -0800 | [diff] [blame] | 16 | extern spinlock_t unix_table_lock; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 |  | 
|  | 18 | extern atomic_t unix_tot_inflight; | 
|  | 19 |  | 
|  | 20 | static inline struct sock *first_unix_socket(int *i) | 
|  | 21 | { | 
|  | 22 | for (*i = 0; *i <= UNIX_HASH_SIZE; (*i)++) { | 
|  | 23 | if (!hlist_empty(&unix_socket_table[*i])) | 
|  | 24 | return __sk_head(&unix_socket_table[*i]); | 
|  | 25 | } | 
|  | 26 | return NULL; | 
|  | 27 | } | 
|  | 28 |  | 
|  | 29 | static inline struct sock *next_unix_socket(int *i, struct sock *s) | 
|  | 30 | { | 
|  | 31 | struct sock *next = sk_next(s); | 
|  | 32 | /* More in this chain? */ | 
|  | 33 | if (next) | 
|  | 34 | return next; | 
|  | 35 | /* Look for next non-empty chain. */ | 
|  | 36 | for ((*i)++; *i <= UNIX_HASH_SIZE; (*i)++) { | 
|  | 37 | if (!hlist_empty(&unix_socket_table[*i])) | 
|  | 38 | return __sk_head(&unix_socket_table[*i]); | 
|  | 39 | } | 
|  | 40 | return 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 | atomic_t	refcnt; | 
|  | 48 | int		len; | 
|  | 49 | unsigned	hash; | 
|  | 50 | struct sockaddr_un name[0]; | 
|  | 51 | }; | 
|  | 52 |  | 
|  | 53 | struct unix_skb_parms { | 
|  | 54 | struct ucred		creds;		/* Skb credentials	*/ | 
|  | 55 | struct scm_fp_list	*fp;		/* Passed files		*/ | 
| Catherine Zhang | 877ce7c | 2006-06-29 12:27:47 -0700 | [diff] [blame] | 56 | #ifdef CONFIG_SECURITY_NETWORK | 
| Catherine Zhang | dc49c1f | 2006-08-02 14:12:06 -0700 | [diff] [blame] | 57 | u32			secid;		/* Security ID		*/ | 
| Catherine Zhang | 877ce7c | 2006-06-29 12:27:47 -0700 | [diff] [blame] | 58 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | }; | 
|  | 60 |  | 
|  | 61 | #define UNIXCB(skb) 	(*(struct unix_skb_parms*)&((skb)->cb)) | 
|  | 62 | #define UNIXCREDS(skb)	(&UNIXCB((skb)).creds) | 
| Catherine Zhang | dc49c1f | 2006-08-02 14:12:06 -0700 | [diff] [blame] | 63 | #define UNIXSID(skb)	(&UNIXCB((skb)).secid) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 |  | 
| Benjamin LaHaise | fd19f32 | 2006-01-03 14:10:46 -0800 | [diff] [blame] | 65 | #define unix_state_rlock(s)	spin_lock(&unix_sk(s)->lock) | 
|  | 66 | #define unix_state_runlock(s)	spin_unlock(&unix_sk(s)->lock) | 
|  | 67 | #define unix_state_wlock(s)	spin_lock(&unix_sk(s)->lock) | 
| Ingo Molnar | a09785a | 2006-07-03 00:25:12 -0700 | [diff] [blame] | 68 | #define unix_state_wlock_nested(s) \ | 
|  | 69 | spin_lock_nested(&unix_sk(s)->lock, \ | 
|  | 70 | SINGLE_DEPTH_NESTING) | 
| Benjamin LaHaise | fd19f32 | 2006-01-03 14:10:46 -0800 | [diff] [blame] | 71 | #define unix_state_wunlock(s)	spin_unlock(&unix_sk(s)->lock) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 |  | 
|  | 73 | #ifdef __KERNEL__ | 
|  | 74 | /* The AF_UNIX socket */ | 
|  | 75 | struct unix_sock { | 
|  | 76 | /* WARNING: sk has to be the first member */ | 
|  | 77 | struct sock		sk; | 
|  | 78 | struct unix_address     *addr; | 
|  | 79 | struct dentry		*dentry; | 
|  | 80 | struct vfsmount		*mnt; | 
| Ingo Molnar | 57b47a5 | 2006-03-20 22:35:41 -0800 | [diff] [blame] | 81 | struct mutex		readlock; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | struct sock		*peer; | 
|  | 83 | struct sock		*other; | 
|  | 84 | struct sock		*gc_tree; | 
|  | 85 | atomic_t                inflight; | 
| Benjamin LaHaise | fd19f32 | 2006-01-03 14:10:46 -0800 | [diff] [blame] | 86 | spinlock_t		lock; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | wait_queue_head_t       peer_wait; | 
|  | 88 | }; | 
|  | 89 | #define unix_sk(__sk) ((struct unix_sock *)__sk) | 
| Arnaldo Carvalho de Melo | 2038073 | 2005-08-16 02:18:02 -0300 | [diff] [blame] | 90 |  | 
|  | 91 | #ifdef CONFIG_SYSCTL | 
|  | 92 | extern int sysctl_unix_max_dgram_qlen; | 
|  | 93 | extern void unix_sysctl_register(void); | 
|  | 94 | extern void unix_sysctl_unregister(void); | 
|  | 95 | #else | 
|  | 96 | static inline void unix_sysctl_register(void) {} | 
|  | 97 | static inline void unix_sysctl_unregister(void) {} | 
|  | 98 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | #endif | 
|  | 100 | #endif |