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