Bluetooth: Move mgmt related flags from hdev->flags to hdev->dev_flags
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / include / net / af_unix.h
CommitLineData
1da177e4
LT
1#ifndef __LINUX_NET_AFUNIX_H
2#define __LINUX_NET_AFUNIX_H
20380731 3
20380731
ACM
4#include <linux/socket.h>
5#include <linux/un.h>
57b47a53 6#include <linux/mutex.h>
20380731
ACM
7#include <net/sock.h>
8
1da177e4
LT
9extern void unix_inflight(struct file *fp);
10extern void unix_notinflight(struct file *fp);
11extern void unix_gc(void);
5f23b734 12extern void wait_for_unix_gc(void);
25888e30 13extern struct sock *unix_get_socket(struct file *filp);
fa7ff56f 14extern struct sock *unix_peer_get(struct sock *);
1da177e4
LT
15
16#define UNIX_HASH_SIZE 256
17
9305cfa4 18extern unsigned int unix_tot_inflight;
fa7ff56f
PE
19extern spinlock_t unix_table_lock;
20extern struct hlist_head unix_socket_table[UNIX_HASH_SIZE + 1];
1da177e4 21
1da177e4
LT
22struct unix_address {
23 atomic_t refcnt;
24 int len;
25 unsigned hash;
26 struct sockaddr_un name[0];
27};
28
29struct unix_skb_parms {
7361c36c
EB
30 struct pid *pid; /* Skb credentials */
31 const struct cred *cred;
1da177e4 32 struct scm_fp_list *fp; /* Passed files */
877ce7c1 33#ifdef CONFIG_SECURITY_NETWORK
dc49c1f9 34 u32 secid; /* Security ID */
877ce7c1 35#endif
1da177e4
LT
36};
37
43815482 38#define UNIXCB(skb) (*(struct unix_skb_parms *)&((skb)->cb))
dc49c1f9 39#define UNIXSID(skb) (&UNIXCB((skb)).secid)
1da177e4 40
1c92b4e5
DM
41#define unix_state_lock(s) spin_lock(&unix_sk(s)->lock)
42#define unix_state_unlock(s) spin_unlock(&unix_sk(s)->lock)
43#define unix_state_lock_nested(s) \
a09785a2
IM
44 spin_lock_nested(&unix_sk(s)->lock, \
45 SINGLE_DEPTH_NESTING)
1da177e4 46
1da177e4
LT
47/* The AF_UNIX socket */
48struct unix_sock {
49 /* WARNING: sk has to be the first member */
50 struct sock sk;
43815482
ED
51 struct unix_address *addr;
52 struct dentry *dentry;
53 struct vfsmount *mnt;
57b47a53 54 struct mutex readlock;
43815482
ED
55 struct sock *peer;
56 struct sock *other;
1fd05ba5 57 struct list_head link;
43815482
ED
58 atomic_long_t inflight;
59 spinlock_t lock;
1fd05ba5 60 unsigned int gc_candidate : 1;
6209344f 61 unsigned int gc_maybe_cycle : 1;
25888e30 62 unsigned char recursion_level;
43815482 63 struct socket_wq peer_wq;
1da177e4
LT
64};
65#define unix_sk(__sk) ((struct unix_sock *)__sk)
20380731 66
43815482
ED
67#define peer_wait peer_wq.wait
68
885ee74d
PE
69long unix_inq_len(struct sock *sk);
70long unix_outq_len(struct sock *sk);
71
20380731 72#ifdef CONFIG_SYSCTL
97577e38
PE
73extern int unix_sysctl_register(struct net *net);
74extern void unix_sysctl_unregister(struct net *net);
20380731 75#else
97577e38
PE
76static inline int unix_sysctl_register(struct net *net) { return 0; }
77static inline void unix_sysctl_unregister(struct net *net) {}
20380731 78#endif
1da177e4 79#endif