xref: /linux/include/net/af_unix.h (revision d39d0ed196aa1685bb24771e92f78633c66ac9cb)
1 #ifndef __LINUX_NET_AFUNIX_H
2 #define __LINUX_NET_AFUNIX_H
3 
4 #include <linux/socket.h>
5 #include <linux/un.h>
6 #include <linux/mutex.h>
7 #include <net/sock.h>
8 
9 extern void unix_inflight(struct file *fp);
10 extern void unix_notinflight(struct file *fp);
11 extern void unix_gc(void);
12 extern void wait_for_unix_gc(void);
13 
14 #define UNIX_HASH_SIZE	256
15 
16 extern unsigned int unix_tot_inflight;
17 
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 pid		*pid;		/* Skb credentials	*/
27 	const struct cred	*cred;
28 	struct scm_fp_list	*fp;		/* Passed files		*/
29 #ifdef CONFIG_SECURITY_NETWORK
30 	u32			secid;		/* Security ID		*/
31 #endif
32 };
33 
34 #define UNIXCB(skb) 	(*(struct unix_skb_parms *)&((skb)->cb))
35 #define UNIXSID(skb)	(&UNIXCB((skb)).secid)
36 
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) \
40 				spin_lock_nested(&unix_sk(s)->lock, \
41 				SINGLE_DEPTH_NESTING)
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;
51 	struct mutex		readlock;
52 	struct sock		*peer;
53 	struct sock		*other;
54 	struct list_head	link;
55 	atomic_long_t		inflight;
56 	spinlock_t		lock;
57 	unsigned int		gc_candidate : 1;
58 	unsigned int		gc_maybe_cycle : 1;
59 	struct socket_wq	peer_wq;
60 };
61 #define unix_sk(__sk) ((struct unix_sock *)__sk)
62 
63 #define peer_wait peer_wq.wait
64 
65 #ifdef CONFIG_SYSCTL
66 extern int unix_sysctl_register(struct net *net);
67 extern void unix_sysctl_unregister(struct net *net);
68 #else
69 static inline int unix_sysctl_register(struct net *net) { return 0; }
70 static inline void unix_sysctl_unregister(struct net *net) {}
71 #endif
72 #endif
73 #endif
74