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); |
dann frazier | 5f23b73 | 2008-11-26 15:32:27 -0800 | [diff] [blame] | 12 | extern void wait_for_unix_gc(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | |
| 14 | #define UNIX_HASH_SIZE 256 |
| 15 | |
Pavel Emelyanov | 9305cfa | 2007-11-10 22:06:01 -0800 | [diff] [blame] | 16 | extern unsigned int unix_tot_inflight; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | struct unix_address { |
| 19 | atomic_t refcnt; |
| 20 | int len; |
| 21 | unsigned hash; |
| 22 | struct sockaddr_un name[0]; |
| 23 | }; |
| 24 | |
| 25 | struct unix_skb_parms { |
| 26 | struct ucred creds; /* Skb credentials */ |
| 27 | struct scm_fp_list *fp; /* Passed files */ |
Catherine Zhang | 877ce7c | 2006-06-29 12:27:47 -0700 | [diff] [blame] | 28 | #ifdef CONFIG_SECURITY_NETWORK |
Catherine Zhang | dc49c1f | 2006-08-02 14:12:06 -0700 | [diff] [blame] | 29 | u32 secid; /* Security ID */ |
Catherine Zhang | 877ce7c | 2006-06-29 12:27:47 -0700 | [diff] [blame] | 30 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | }; |
| 32 | |
| 33 | #define UNIXCB(skb) (*(struct unix_skb_parms*)&((skb)->cb)) |
| 34 | #define UNIXCREDS(skb) (&UNIXCB((skb)).creds) |
Catherine Zhang | dc49c1f | 2006-08-02 14:12:06 -0700 | [diff] [blame] | 35 | #define UNIXSID(skb) (&UNIXCB((skb)).secid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
David S. Miller | 1c92b4e | 2007-05-31 13:24:26 -0700 | [diff] [blame] | 37 | #define unix_state_lock(s) spin_lock(&unix_sk(s)->lock) |
| 38 | #define unix_state_unlock(s) spin_unlock(&unix_sk(s)->lock) |
| 39 | #define unix_state_lock_nested(s) \ |
Ingo Molnar | a09785a | 2006-07-03 00:25:12 -0700 | [diff] [blame] | 40 | spin_lock_nested(&unix_sk(s)->lock, \ |
| 41 | SINGLE_DEPTH_NESTING) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
| 43 | #ifdef __KERNEL__ |
| 44 | /* The AF_UNIX socket */ |
| 45 | struct unix_sock { |
| 46 | /* WARNING: sk has to be the first member */ |
| 47 | struct sock sk; |
| 48 | struct unix_address *addr; |
| 49 | struct dentry *dentry; |
| 50 | struct vfsmount *mnt; |
Ingo Molnar | 57b47a5 | 2006-03-20 22:35:41 -0800 | [diff] [blame] | 51 | struct mutex readlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | struct sock *peer; |
| 53 | struct sock *other; |
Miklos Szeredi | 1fd05ba | 2007-07-11 14:22:39 -0700 | [diff] [blame] | 54 | struct list_head link; |
Al Viro | 516e0cc | 2008-07-26 00:39:17 -0400 | [diff] [blame] | 55 | atomic_long_t inflight; |
Benjamin LaHaise | fd19f32 | 2006-01-03 14:10:46 -0800 | [diff] [blame] | 56 | spinlock_t lock; |
Miklos Szeredi | 1fd05ba | 2007-07-11 14:22:39 -0700 | [diff] [blame] | 57 | unsigned int gc_candidate : 1; |
Miklos Szeredi | 6209344 | 2008-11-09 15:23:57 +0100 | [diff] [blame] | 58 | unsigned int gc_maybe_cycle : 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | wait_queue_head_t peer_wait; |
| 60 | }; |
| 61 | #define unix_sk(__sk) ((struct unix_sock *)__sk) |
Arnaldo Carvalho de Melo | 2038073 | 2005-08-16 02:18:02 -0300 | [diff] [blame] | 62 | |
| 63 | #ifdef CONFIG_SYSCTL |
Pavel Emelyanov | 97577e3 | 2007-12-01 23:40:40 +1100 | [diff] [blame] | 64 | extern int unix_sysctl_register(struct net *net); |
| 65 | extern void unix_sysctl_unregister(struct net *net); |
Arnaldo Carvalho de Melo | 2038073 | 2005-08-16 02:18:02 -0300 | [diff] [blame] | 66 | #else |
Pavel Emelyanov | 97577e3 | 2007-12-01 23:40:40 +1100 | [diff] [blame] | 67 | static inline int unix_sysctl_register(struct net *net) { return 0; } |
| 68 | static inline void unix_sysctl_unregister(struct net *net) {} |
Arnaldo Carvalho de Melo | 2038073 | 2005-08-16 02:18:02 -0300 | [diff] [blame] | 69 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | #endif |
| 71 | #endif |