]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/net/af_unix.h
Merge remote-tracking branches 'asoc/topic/sgtl5000', 'asoc/topic/simple', 'asoc...
[mirror_ubuntu-bionic-kernel.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
415e3d3e
HFS
9void unix_inflight(struct user_struct *user, struct file *fp);
10void unix_notinflight(struct user_struct *user, struct file *fp);
b60a8280
JP
11void unix_gc(void);
12void wait_for_unix_gc(void);
13struct sock *unix_get_socket(struct file *filp);
14struct 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
e370a723 38 u32 consumed;
1da177e4
LT
39};
40
43815482 41#define UNIXCB(skb) (*(struct unix_skb_parms *)&((skb)->cb))
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;
6e1ce3c3 55 struct mutex iolock, bindlock;
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;
7d267278 65 wait_queue_t peer_wake;
1da177e4 66};
4613012d 67
c72eda06 68static inline struct unix_sock *unix_sk(const struct sock *sk)
4613012d
AC
69{
70 return (struct unix_sock *)sk;
71}
20380731 72
43815482
ED
73#define peer_wait peer_wq.wait
74
885ee74d
PE
75long unix_inq_len(struct sock *sk);
76long unix_outq_len(struct sock *sk);
77
20380731 78#ifdef CONFIG_SYSCTL
b60a8280
JP
79int unix_sysctl_register(struct net *net);
80void unix_sysctl_unregister(struct net *net);
20380731 81#else
97577e38
PE
82static inline int unix_sysctl_register(struct net *net) { return 0; }
83static inline void unix_sysctl_unregister(struct net *net) {}
20380731 84#endif
1da177e4 85#endif