Andrey Vagin | 0f29c76 | 2013-03-21 20:33:47 +0400 | [diff] [blame] | 1 | #ifndef _AF_NETLINK_H |
| 2 | #define _AF_NETLINK_H |
| 3 | |
Thomas Graf | e341694 | 2014-08-02 11:47:45 +0200 | [diff] [blame] | 4 | #include <linux/rhashtable.h> |
Johannes Berg | ee1c2442 | 2015-01-16 11:37:14 +0100 | [diff] [blame] | 5 | #include <linux/atomic.h> |
Herbert Xu | 707693c | 2016-11-28 19:22:12 +0800 | [diff] [blame] | 6 | #include <linux/workqueue.h> |
Andrey Vagin | 0f29c76 | 2013-03-21 20:33:47 +0400 | [diff] [blame] | 7 | #include <net/sock.h> |
| 8 | |
| 9 | #define NLGRPSZ(x) (ALIGN(x, sizeof(unsigned long) * 8) / 8) |
| 10 | #define NLGRPLONGS(x) (NLGRPSZ(x)/sizeof(unsigned long)) |
| 11 | |
| 12 | struct netlink_sock { |
| 13 | /* struct sock has to be the first member of netlink_sock */ |
| 14 | struct sock sk; |
| 15 | u32 portid; |
| 16 | u32 dst_portid; |
| 17 | u32 dst_group; |
| 18 | u32 flags; |
| 19 | u32 subscriptions; |
| 20 | u32 ngroups; |
| 21 | unsigned long *groups; |
| 22 | unsigned long state; |
Eric Dumazet | 9063e21 | 2014-03-07 12:02:33 -0800 | [diff] [blame] | 23 | size_t max_recvmsg_len; |
Andrey Vagin | 0f29c76 | 2013-03-21 20:33:47 +0400 | [diff] [blame] | 24 | wait_queue_head_t wait; |
Herbert Xu | da314c9 | 2015-09-22 11:38:56 +0800 | [diff] [blame] | 25 | bool bound; |
Pravin B Shelar | 16b304f | 2013-08-15 15:31:06 -0700 | [diff] [blame] | 26 | bool cb_running; |
Jason A. Donenfeld | 99aa74c | 2017-11-09 13:04:44 +0900 | [diff] [blame] | 27 | int dump_done_errno; |
Pravin B Shelar | 16b304f | 2013-08-15 15:31:06 -0700 | [diff] [blame] | 28 | struct netlink_callback cb; |
Andrey Vagin | 0f29c76 | 2013-03-21 20:33:47 +0400 | [diff] [blame] | 29 | struct mutex *cb_mutex; |
| 30 | struct mutex cb_def_mutex; |
| 31 | void (*netlink_rcv)(struct sk_buff *skb); |
Johannes Berg | 023e2cf | 2014-12-23 21:00:06 +0100 | [diff] [blame] | 32 | int (*netlink_bind)(struct net *net, int group); |
| 33 | void (*netlink_unbind)(struct net *net, int group); |
Andrey Vagin | 0f29c76 | 2013-03-21 20:33:47 +0400 | [diff] [blame] | 34 | struct module *module; |
Thomas Graf | e341694 | 2014-08-02 11:47:45 +0200 | [diff] [blame] | 35 | |
| 36 | struct rhash_head node; |
Thomas Graf | 21e4902 | 2015-01-02 23:00:22 +0100 | [diff] [blame] | 37 | struct rcu_head rcu; |
Herbert Xu | 707693c | 2016-11-28 19:22:12 +0800 | [diff] [blame] | 38 | struct work_struct work; |
Andrey Vagin | 0f29c76 | 2013-03-21 20:33:47 +0400 | [diff] [blame] | 39 | }; |
| 40 | |
| 41 | static inline struct netlink_sock *nlk_sk(struct sock *sk) |
| 42 | { |
| 43 | return container_of(sk, struct netlink_sock, sk); |
| 44 | } |
| 45 | |
Andrey Vagin | 0f29c76 | 2013-03-21 20:33:47 +0400 | [diff] [blame] | 46 | struct netlink_table { |
Thomas Graf | e341694 | 2014-08-02 11:47:45 +0200 | [diff] [blame] | 47 | struct rhashtable hash; |
Andrey Vagin | 0f29c76 | 2013-03-21 20:33:47 +0400 | [diff] [blame] | 48 | struct hlist_head mc_list; |
| 49 | struct listeners __rcu *listeners; |
| 50 | unsigned int flags; |
| 51 | unsigned int groups; |
| 52 | struct mutex *cb_mutex; |
| 53 | struct module *module; |
Johannes Berg | 023e2cf | 2014-12-23 21:00:06 +0100 | [diff] [blame] | 54 | int (*bind)(struct net *net, int group); |
| 55 | void (*unbind)(struct net *net, int group); |
Gao feng | da12c90 | 2013-06-06 14:49:11 +0800 | [diff] [blame] | 56 | bool (*compare)(struct net *net, struct sock *sock); |
Andrey Vagin | 0f29c76 | 2013-03-21 20:33:47 +0400 | [diff] [blame] | 57 | int registered; |
| 58 | }; |
| 59 | |
| 60 | extern struct netlink_table *nl_table; |
| 61 | extern rwlock_t nl_table_lock; |
Andrey Vagin | 0f29c76 | 2013-03-21 20:33:47 +0400 | [diff] [blame] | 62 | |
| 63 | #endif |