blob: bae961cfa3ad1a6fcc1e660a5d688b4faebb758c [file] [log] [blame]
Andrey Vagin0f29c762013-03-21 20:33:47 +04001#ifndef _AF_NETLINK_H
2#define _AF_NETLINK_H
3
Thomas Grafe3416942014-08-02 11:47:45 +02004#include <linux/rhashtable.h>
Johannes Bergee1c24422015-01-16 11:37:14 +01005#include <linux/atomic.h>
Herbert Xu707693c2016-11-28 19:22:12 +08006#include <linux/workqueue.h>
Andrey Vagin0f29c762013-03-21 20:33:47 +04007#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
12struct 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 Dumazet9063e212014-03-07 12:02:33 -080023 size_t max_recvmsg_len;
Andrey Vagin0f29c762013-03-21 20:33:47 +040024 wait_queue_head_t wait;
Herbert Xuda314c92015-09-22 11:38:56 +080025 bool bound;
Pravin B Shelar16b304f2013-08-15 15:31:06 -070026 bool cb_running;
Jason A. Donenfeld99aa74c2017-11-09 13:04:44 +090027 int dump_done_errno;
Pravin B Shelar16b304f2013-08-15 15:31:06 -070028 struct netlink_callback cb;
Andrey Vagin0f29c762013-03-21 20:33:47 +040029 struct mutex *cb_mutex;
30 struct mutex cb_def_mutex;
31 void (*netlink_rcv)(struct sk_buff *skb);
Johannes Berg023e2cf2014-12-23 21:00:06 +010032 int (*netlink_bind)(struct net *net, int group);
33 void (*netlink_unbind)(struct net *net, int group);
Andrey Vagin0f29c762013-03-21 20:33:47 +040034 struct module *module;
Thomas Grafe3416942014-08-02 11:47:45 +020035
36 struct rhash_head node;
Thomas Graf21e49022015-01-02 23:00:22 +010037 struct rcu_head rcu;
Herbert Xu707693c2016-11-28 19:22:12 +080038 struct work_struct work;
Andrey Vagin0f29c762013-03-21 20:33:47 +040039};
40
41static inline struct netlink_sock *nlk_sk(struct sock *sk)
42{
43 return container_of(sk, struct netlink_sock, sk);
44}
45
Andrey Vagin0f29c762013-03-21 20:33:47 +040046struct netlink_table {
Thomas Grafe3416942014-08-02 11:47:45 +020047 struct rhashtable hash;
Andrey Vagin0f29c762013-03-21 20:33:47 +040048 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 Berg023e2cf2014-12-23 21:00:06 +010054 int (*bind)(struct net *net, int group);
55 void (*unbind)(struct net *net, int group);
Gao fengda12c902013-06-06 14:49:11 +080056 bool (*compare)(struct net *net, struct sock *sock);
Andrey Vagin0f29c762013-03-21 20:33:47 +040057 int registered;
58};
59
60extern struct netlink_table *nl_table;
61extern rwlock_t nl_table_lock;
Andrey Vagin0f29c762013-03-21 20:33:47 +040062
63#endif