blob: 4fdb3831897775547f77c069a8018c0d2a253c8c [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;
27 struct netlink_callback cb;
Andrey Vagin0f29c762013-03-21 20:33:47 +040028 struct mutex *cb_mutex;
29 struct mutex cb_def_mutex;
30 void (*netlink_rcv)(struct sk_buff *skb);
Johannes Berg023e2cf2014-12-23 21:00:06 +010031 int (*netlink_bind)(struct net *net, int group);
32 void (*netlink_unbind)(struct net *net, int group);
Andrey Vagin0f29c762013-03-21 20:33:47 +040033 struct module *module;
Thomas Grafe3416942014-08-02 11:47:45 +020034
35 struct rhash_head node;
Thomas Graf21e49022015-01-02 23:00:22 +010036 struct rcu_head rcu;
Herbert Xu707693c2016-11-28 19:22:12 +080037 struct work_struct work;
Andrey Vagin0f29c762013-03-21 20:33:47 +040038};
39
40static inline struct netlink_sock *nlk_sk(struct sock *sk)
41{
42 return container_of(sk, struct netlink_sock, sk);
43}
44
Andrey Vagin0f29c762013-03-21 20:33:47 +040045struct netlink_table {
Thomas Grafe3416942014-08-02 11:47:45 +020046 struct rhashtable hash;
Andrey Vagin0f29c762013-03-21 20:33:47 +040047 struct hlist_head mc_list;
48 struct listeners __rcu *listeners;
49 unsigned int flags;
50 unsigned int groups;
51 struct mutex *cb_mutex;
52 struct module *module;
Johannes Berg023e2cf2014-12-23 21:00:06 +010053 int (*bind)(struct net *net, int group);
54 void (*unbind)(struct net *net, int group);
Gao fengda12c902013-06-06 14:49:11 +080055 bool (*compare)(struct net *net, struct sock *sock);
Andrey Vagin0f29c762013-03-21 20:33:47 +040056 int registered;
57};
58
59extern struct netlink_table *nl_table;
60extern rwlock_t nl_table_lock;
Andrey Vagin0f29c762013-03-21 20:33:47 +040061
62#endif