import PULS_20180308
[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
7123aaa3 17#define UNIX_HASH_BITS 8
1da177e4 18
9305cfa4 19extern unsigned int unix_tot_inflight;
fa7ff56f 20extern spinlock_t unix_table_lock;
7123aaa3 21extern struct hlist_head unix_socket_table[2 * UNIX_HASH_SIZE];
1da177e4 22
1da177e4
LT
23struct unix_address {
24 atomic_t refcnt;
25 int len;
95c96174 26 unsigned int hash;
1da177e4
LT
27 struct sockaddr_un name[0];
28};
29
30struct unix_skb_parms {
7361c36c 31 struct pid *pid; /* Skb credentials */
6b0ee8c0
EB
32 kuid_t uid;
33 kgid_t gid;
1da177e4 34 struct scm_fp_list *fp; /* Passed files */
877ce7c1 35#ifdef CONFIG_SECURITY_NETWORK
dc49c1f9 36 u32 secid; /* Security ID */
877ce7c1 37#endif
1da177e4
LT
38};
39
43815482 40#define UNIXCB(skb) (*(struct unix_skb_parms *)&((skb)->cb))
dc49c1f9 41#define UNIXSID(skb) (&UNIXCB((skb)).secid)
1da177e4 42
1c92b4e5
DM
43#define unix_state_lock(s) spin_lock(&unix_sk(s)->lock)
44#define unix_state_unlock(s) spin_unlock(&unix_sk(s)->lock)
45#define unix_state_lock_nested(s) \
a09785a2
IM
46 spin_lock_nested(&unix_sk(s)->lock, \
47 SINGLE_DEPTH_NESTING)
1da177e4 48
1da177e4
LT
49/* The AF_UNIX socket */
50struct unix_sock {
51 /* WARNING: sk has to be the first member */
52 struct sock sk;
43815482 53 struct unix_address *addr;
40ffe67d 54 struct path path;
57b47a53 55 struct mutex readlock;
43815482 56 struct sock *peer;
1fd05ba5 57 struct list_head link;
43815482
ED
58 atomic_long_t inflight;
59 spinlock_t lock;
25888e30 60 unsigned char recursion_level;
60bc851a
ED
61 unsigned long gc_flags;
62#define UNIX_GC_CANDIDATE 0
63#define UNIX_GC_MAYBE_CYCLE 1
43815482 64 struct socket_wq peer_wq;
4b9e9796 65 wait_queue_t peer_wake;
1da177e4
LT
66};
67#define unix_sk(__sk) ((struct unix_sock *)__sk)
20380731 68
43815482
ED
69#define peer_wait peer_wq.wait
70
885ee74d
PE
71long unix_inq_len(struct sock *sk);
72long unix_outq_len(struct sock *sk);
73
20380731 74#ifdef CONFIG_SYSCTL
97577e38
PE
75extern int unix_sysctl_register(struct net *net);
76extern void unix_sysctl_unregister(struct net *net);
20380731 77#else
97577e38
PE
78static inline int unix_sysctl_register(struct net *net) { return 0; }
79static inline void unix_sysctl_unregister(struct net *net) {}
20380731 80#endif
1da177e4 81#endif