af_unix.h 2.2 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
L
Linus Torvalds 已提交
2 3
#ifndef __LINUX_NET_AFUNIX_H
#define __LINUX_NET_AFUNIX_H
4 5 6

#include <linux/socket.h>
#include <linux/un.h>
I
Ingo Molnar 已提交
7
#include <linux/mutex.h>
8
#include <linux/refcount.h>
9 10
#include <net/sock.h>

11 12
void unix_inflight(struct user_struct *user, struct file *fp);
void unix_notinflight(struct user_struct *user, struct file *fp);
13
void unix_destruct_scm(struct sk_buff *skb);
14 15 16 17
void unix_gc(void);
void wait_for_unix_gc(void);
struct sock *unix_get_socket(struct file *filp);
struct sock *unix_peer_get(struct sock *);
L
Linus Torvalds 已提交
18 19

#define UNIX_HASH_SIZE	256
E
Eric Dumazet 已提交
20
#define UNIX_HASH_BITS	8
L
Linus Torvalds 已提交
21

22
extern unsigned int unix_tot_inflight;
23
extern spinlock_t unix_table_lock;
E
Eric Dumazet 已提交
24
extern struct hlist_head unix_socket_table[2 * UNIX_HASH_SIZE];
L
Linus Torvalds 已提交
25 26

struct unix_address {
27
	refcount_t	refcnt;
L
Linus Torvalds 已提交
28
	int		len;
29
	unsigned int	hash;
L
Linus Torvalds 已提交
30 31 32 33
	struct sockaddr_un name[0];
};

struct unix_skb_parms {
34
	struct pid		*pid;		/* Skb credentials	*/
35 36
	kuid_t			uid;
	kgid_t			gid;
L
Linus Torvalds 已提交
37
	struct scm_fp_list	*fp;		/* Passed files		*/
C
Catherine Zhang 已提交
38
#ifdef CONFIG_SECURITY_NETWORK
39
	u32			secid;		/* Security ID		*/
C
Catherine Zhang 已提交
40
#endif
41
	u32			consumed;
42
} __randomize_layout;
L
Linus Torvalds 已提交
43

44
#define UNIXCB(skb) 	(*(struct unix_skb_parms *)&((skb)->cb))
L
Linus Torvalds 已提交
45

46 47 48
#define unix_state_lock(s)	spin_lock(&unix_sk(s)->lock)
#define unix_state_unlock(s)	spin_unlock(&unix_sk(s)->lock)
#define unix_state_lock_nested(s) \
49 50
				spin_lock_nested(&unix_sk(s)->lock, \
				SINGLE_DEPTH_NESTING)
L
Linus Torvalds 已提交
51 52 53 54 55

/* The AF_UNIX socket */
struct unix_sock {
	/* WARNING: sk has to be the first member */
	struct sock		sk;
56
	struct unix_address     *addr;
A
Al Viro 已提交
57
	struct path		path;
58
	struct mutex		iolock, bindlock;
59
	struct sock		*peer;
60
	struct list_head	link;
61 62
	atomic_long_t		inflight;
	spinlock_t		lock;
63 64 65
	unsigned long		gc_flags;
#define UNIX_GC_CANDIDATE	0
#define UNIX_GC_MAYBE_CYCLE	1
66
	struct socket_wq	peer_wq;
67
	wait_queue_entry_t		peer_wake;
L
Linus Torvalds 已提交
68
};
69

70
static inline struct unix_sock *unix_sk(const struct sock *sk)
71 72 73
{
	return (struct unix_sock *)sk;
}
74

75 76
#define peer_wait peer_wq.wait

77 78 79
long unix_inq_len(struct sock *sk);
long unix_outq_len(struct sock *sk);

80
#ifdef CONFIG_SYSCTL
81 82
int unix_sysctl_register(struct net *net);
void unix_sysctl_unregister(struct net *net);
83
#else
84 85
static inline int unix_sysctl_register(struct net *net) { return 0; }
static inline void unix_sysctl_unregister(struct net *net) {}
86
#endif
L
Linus Torvalds 已提交
87
#endif