blob: 79f2e1ccfcfb8518c84b22e0a54783286d4e2fe5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __LINUX_NET_AFUNIX_H
2#define __LINUX_NET_AFUNIX_H
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03003
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03004#include <linux/socket.h>
5#include <linux/un.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -08006#include <linux/mutex.h>
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03007#include <net/sock.h>
8
Hannes Frederic Sowa415e3d32016-02-03 02:11:03 +01009void unix_inflight(struct user_struct *user, struct file *fp);
10void unix_notinflight(struct user_struct *user, struct file *fp);
Jens Axboef19406b2019-02-08 09:01:44 -070011void unix_destruct_scm(struct sk_buff *skb);
Joe Perchesb60a8282013-07-31 17:31:33 -070012void unix_gc(void);
13void wait_for_unix_gc(void);
14struct sock *unix_get_socket(struct file *filp);
15struct sock *unix_peer_get(struct sock *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17#define UNIX_HASH_SIZE 256
Eric Dumazet7123aaa2012-06-08 05:03:21 +000018#define UNIX_HASH_BITS 8
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Pavel Emelyanov9305cfa2007-11-10 22:06:01 -080020extern unsigned int unix_tot_inflight;
Pavel Emelyanovfa7ff562011-12-15 02:44:03 +000021extern spinlock_t unix_table_lock;
Eric Dumazet7123aaa2012-06-08 05:03:21 +000022extern struct hlist_head unix_socket_table[2 * UNIX_HASH_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Linus Torvalds1da177e2005-04-16 15:20:36 -070024struct unix_address {
25 atomic_t refcnt;
26 int len;
Eric Dumazet95c96172012-04-15 05:58:06 +000027 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 struct sockaddr_un name[0];
29};
30
31struct unix_skb_parms {
Eric W. Biederman7361c362010-06-13 03:34:33 +000032 struct pid *pid; /* Skb credentials */
Eric W. Biederman6b0ee8c02013-04-03 17:28:16 +000033 kuid_t uid;
34 kgid_t gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 struct scm_fp_list *fp; /* Passed files */
Catherine Zhang877ce7c2006-06-29 12:27:47 -070036#ifdef CONFIG_SECURITY_NETWORK
Catherine Zhangdc49c1f2006-08-02 14:12:06 -070037 u32 secid; /* Security ID */
Catherine Zhang877ce7c2006-06-29 12:27:47 -070038#endif
Eric Dumazete370a722013-08-08 14:37:32 -070039 u32 consumed;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040};
41
Eric Dumazet43815482010-04-29 11:01:49 +000042#define UNIXCB(skb) (*(struct unix_skb_parms *)&((skb)->cb))
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
David S. Miller1c92b4e2007-05-31 13:24:26 -070044#define unix_state_lock(s) spin_lock(&unix_sk(s)->lock)
45#define unix_state_unlock(s) spin_unlock(&unix_sk(s)->lock)
46#define unix_state_lock_nested(s) \
Ingo Molnara09785a2006-07-03 00:25:12 -070047 spin_lock_nested(&unix_sk(s)->lock, \
48 SINGLE_DEPTH_NESTING)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/* The AF_UNIX socket */
51struct unix_sock {
52 /* WARNING: sk has to be the first member */
53 struct sock sk;
Eric Dumazet43815482010-04-29 11:01:49 +000054 struct unix_address *addr;
Al Viro40ffe672012-03-14 21:54:32 -040055 struct path path;
Linus Torvalds6e1ce3c2016-09-01 14:43:53 -070056 struct mutex iolock, bindlock;
Eric Dumazet43815482010-04-29 11:01:49 +000057 struct sock *peer;
Miklos Szeredi1fd05ba2007-07-11 14:22:39 -070058 struct list_head link;
Eric Dumazet43815482010-04-29 11:01:49 +000059 atomic_long_t inflight;
60 spinlock_t lock;
Eric Dumazet25888e32010-11-25 04:11:39 +000061 unsigned char recursion_level;
Eric Dumazet60bc8512013-05-01 05:24:03 +000062 unsigned long gc_flags;
63#define UNIX_GC_CANDIDATE 0
64#define UNIX_GC_MAYBE_CYCLE 1
Eric Dumazet43815482010-04-29 11:01:49 +000065 struct socket_wq peer_wq;
Rainer Weikusat7d267272015-11-20 22:07:23 +000066 wait_queue_t peer_wake;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067};
Aaron Conole46130122015-09-26 18:50:42 -040068
Paul Moorec72eda02015-10-06 15:03:53 -040069static inline struct unix_sock *unix_sk(const struct sock *sk)
Aaron Conole46130122015-09-26 18:50:42 -040070{
71 return (struct unix_sock *)sk;
72}
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030073
Eric Dumazet43815482010-04-29 11:01:49 +000074#define peer_wait peer_wq.wait
75
Pavel Emelyanov885ee742011-12-30 00:54:11 +000076long unix_inq_len(struct sock *sk);
77long unix_outq_len(struct sock *sk);
78
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030079#ifdef CONFIG_SYSCTL
Joe Perchesb60a8282013-07-31 17:31:33 -070080int unix_sysctl_register(struct net *net);
81void unix_sysctl_unregister(struct net *net);
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030082#else
Pavel Emelyanov97577e32007-12-01 23:40:40 +110083static inline int unix_sysctl_register(struct net *net) { return 0; }
84static inline void unix_sysctl_unregister(struct net *net) {}
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030085#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070086#endif