Sven Eckelmann | 7db7d9f | 2017-11-19 15:05:11 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Sven Eckelmann | 7a79d71 | 2018-12-31 23:59:59 +0100 | [diff] [blame] | 2 | /* Copyright (C) 2016-2019 B.A.T.M.A.N. contributors: |
Matthias Schiffer | 09748a2 | 2016-05-09 18:41:08 +0200 | [diff] [blame] | 3 | * |
| 4 | * Matthias Schiffer |
Matthias Schiffer | 09748a2 | 2016-05-09 18:41:08 +0200 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include "netlink.h" |
| 8 | #include "main.h" |
| 9 | |
Sven Eckelmann | f32ed4b | 2016-07-03 13:31:38 +0200 | [diff] [blame] | 10 | #include <linux/atomic.h> |
Sven Eckelmann | c4a7a8d | 2018-11-23 12:00:28 +0100 | [diff] [blame] | 11 | #include <linux/bitops.h> |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 12 | #include <linux/bug.h> |
Sven Eckelmann | 8dad6f0d | 2016-07-03 13:31:46 +0200 | [diff] [blame] | 13 | #include <linux/byteorder/generic.h> |
Sven Eckelmann | 9bcb94c | 2016-10-29 10:13:47 +0200 | [diff] [blame] | 14 | #include <linux/cache.h> |
Sven Eckelmann | c4a7a8d | 2018-11-23 12:00:28 +0100 | [diff] [blame] | 15 | #include <linux/err.h> |
Matthias Schiffer | 5da0aef | 2016-05-09 18:41:09 +0200 | [diff] [blame] | 16 | #include <linux/errno.h> |
Sven Eckelmann | 9bcb94c | 2016-10-29 10:13:47 +0200 | [diff] [blame] | 17 | #include <linux/export.h> |
Matthias Schiffer | 09748a2 | 2016-05-09 18:41:08 +0200 | [diff] [blame] | 18 | #include <linux/genetlink.h> |
Sven Eckelmann | b92b94a | 2017-11-19 17:12:02 +0100 | [diff] [blame] | 19 | #include <linux/gfp.h> |
Matthias Schiffer | 5da0aef | 2016-05-09 18:41:09 +0200 | [diff] [blame] | 20 | #include <linux/if_ether.h> |
Sven Eckelmann | 49e7e37 | 2018-11-23 12:41:08 +0100 | [diff] [blame] | 21 | #include <linux/if_vlan.h> |
Matthias Schiffer | 09748a2 | 2016-05-09 18:41:08 +0200 | [diff] [blame] | 22 | #include <linux/init.h> |
Sven Eckelmann | 9bcb94c | 2016-10-29 10:13:47 +0200 | [diff] [blame] | 23 | #include <linux/kernel.h> |
Sven Eckelmann | e192875 | 2019-05-24 16:28:50 +0200 | [diff] [blame^] | 24 | #include <linux/limits.h> |
Sven Eckelmann | fb69be6 | 2018-10-30 22:01:24 +0100 | [diff] [blame] | 25 | #include <linux/list.h> |
Matthias Schiffer | 5da0aef | 2016-05-09 18:41:09 +0200 | [diff] [blame] | 26 | #include <linux/netdevice.h> |
| 27 | #include <linux/netlink.h> |
Matthias Schiffer | 09748a2 | 2016-05-09 18:41:08 +0200 | [diff] [blame] | 28 | #include <linux/printk.h> |
Sven Eckelmann | fb69be6 | 2018-10-30 22:01:24 +0100 | [diff] [blame] | 29 | #include <linux/rtnetlink.h> |
Matthias Schiffer | b60620c | 2016-07-03 13:31:36 +0200 | [diff] [blame] | 30 | #include <linux/skbuff.h> |
Matthias Schiffer | 5da0aef | 2016-05-09 18:41:09 +0200 | [diff] [blame] | 31 | #include <linux/stddef.h> |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 32 | #include <linux/types.h> |
Matthias Schiffer | 09748a2 | 2016-05-09 18:41:08 +0200 | [diff] [blame] | 33 | #include <net/genetlink.h> |
Matthias Schiffer | 5da0aef | 2016-05-09 18:41:09 +0200 | [diff] [blame] | 34 | #include <net/netlink.h> |
Matthias Schiffer | b60620c | 2016-07-03 13:31:36 +0200 | [diff] [blame] | 35 | #include <net/sock.h> |
Sven Eckelmann | fec149f | 2017-12-21 10:17:41 +0100 | [diff] [blame] | 36 | #include <uapi/linux/batadv_packet.h> |
Matthias Schiffer | 09748a2 | 2016-05-09 18:41:08 +0200 | [diff] [blame] | 37 | #include <uapi/linux/batman_adv.h> |
| 38 | |
Matthias Schiffer | 07a3061 | 2016-07-03 13:31:35 +0200 | [diff] [blame] | 39 | #include "bat_algo.h" |
Andrew Lunn | 04f3f5b | 2016-07-03 13:31:45 +0200 | [diff] [blame] | 40 | #include "bridge_loop_avoidance.h" |
Linus Lüssing | 41aeefc | 2018-03-13 11:41:12 +0100 | [diff] [blame] | 41 | #include "distributed-arp-table.h" |
Sven Eckelmann | d7129da | 2016-07-03 13:31:42 +0200 | [diff] [blame] | 42 | #include "gateway_client.h" |
Sven Eckelmann | e2d0d35 | 2018-11-23 13:15:00 +0100 | [diff] [blame] | 43 | #include "gateway_common.h" |
Matthias Schiffer | 5da0aef | 2016-05-09 18:41:09 +0200 | [diff] [blame] | 44 | #include "hard-interface.h" |
Sven Eckelmann | b85bd09 | 2018-11-23 13:22:33 +0100 | [diff] [blame] | 45 | #include "log.h" |
Linus Lüssing | 53dd9a6 | 2018-03-13 11:41:13 +0100 | [diff] [blame] | 46 | #include "multicast.h" |
Sven Eckelmann | 6c57cde | 2018-11-23 13:26:14 +0100 | [diff] [blame] | 47 | #include "network-coding.h" |
Matthias Schiffer | 85cf8c8 | 2016-07-03 13:31:39 +0200 | [diff] [blame] | 48 | #include "originator.h" |
Matthias Schiffer | 5da0aef | 2016-05-09 18:41:09 +0200 | [diff] [blame] | 49 | #include "soft-interface.h" |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 50 | #include "tp_meter.h" |
Matthias Schiffer | d34f055 | 2016-07-03 13:31:37 +0200 | [diff] [blame] | 51 | #include "translation-table.h" |
Matthias Schiffer | 5da0aef | 2016-05-09 18:41:09 +0200 | [diff] [blame] | 52 | |
Sven Eckelmann | c4a7a8d | 2018-11-23 12:00:28 +0100 | [diff] [blame] | 53 | struct net; |
| 54 | |
Johannes Berg | 489111e | 2016-10-24 14:40:03 +0200 | [diff] [blame] | 55 | struct genl_family batadv_netlink_family; |
Matthias Schiffer | 09748a2 | 2016-05-09 18:41:08 +0200 | [diff] [blame] | 56 | |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 57 | /* multicast groups */ |
| 58 | enum batadv_netlink_multicast_groups { |
Sven Eckelmann | 6004051 | 2018-11-23 12:14:56 +0100 | [diff] [blame] | 59 | BATADV_NL_MCGRP_CONFIG, |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 60 | BATADV_NL_MCGRP_TPMETER, |
| 61 | }; |
| 62 | |
Sven Eckelmann | c4a7a8d | 2018-11-23 12:00:28 +0100 | [diff] [blame] | 63 | /** |
| 64 | * enum batadv_genl_ops_flags - flags for genl_ops's internal_flags |
| 65 | */ |
| 66 | enum batadv_genl_ops_flags { |
| 67 | /** |
| 68 | * @BATADV_FLAG_NEED_MESH: request requires valid soft interface in |
| 69 | * attribute BATADV_ATTR_MESH_IFINDEX and expects a pointer to it to be |
| 70 | * saved in info->user_ptr[0] |
| 71 | */ |
| 72 | BATADV_FLAG_NEED_MESH = BIT(0), |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 73 | |
| 74 | /** |
| 75 | * @BATADV_FLAG_NEED_HARDIF: request requires valid hard interface in |
| 76 | * attribute BATADV_ATTR_HARD_IFINDEX and expects a pointer to it to be |
| 77 | * saved in info->user_ptr[1] |
| 78 | */ |
| 79 | BATADV_FLAG_NEED_HARDIF = BIT(1), |
Sven Eckelmann | 49e7e37 | 2018-11-23 12:41:08 +0100 | [diff] [blame] | 80 | |
| 81 | /** |
| 82 | * @BATADV_FLAG_NEED_VLAN: request requires valid vlan in |
| 83 | * attribute BATADV_ATTR_VLANID and expects a pointer to it to be |
| 84 | * saved in info->user_ptr[1] |
| 85 | */ |
| 86 | BATADV_FLAG_NEED_VLAN = BIT(2), |
Sven Eckelmann | c4a7a8d | 2018-11-23 12:00:28 +0100 | [diff] [blame] | 87 | }; |
| 88 | |
stephen hemminger | deeb91f | 2016-08-31 15:17:00 -0700 | [diff] [blame] | 89 | static const struct genl_multicast_group batadv_netlink_mcgrps[] = { |
Sven Eckelmann | 6004051 | 2018-11-23 12:14:56 +0100 | [diff] [blame] | 90 | [BATADV_NL_MCGRP_CONFIG] = { .name = BATADV_NL_MCAST_GROUP_CONFIG }, |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 91 | [BATADV_NL_MCGRP_TPMETER] = { .name = BATADV_NL_MCAST_GROUP_TPMETER }, |
| 92 | }; |
| 93 | |
stephen hemminger | deeb91f | 2016-08-31 15:17:00 -0700 | [diff] [blame] | 94 | static const struct nla_policy batadv_netlink_policy[NUM_BATADV_ATTR] = { |
Linus Lüssing | 41aeefc | 2018-03-13 11:41:12 +0100 | [diff] [blame] | 95 | [BATADV_ATTR_VERSION] = { .type = NLA_STRING }, |
| 96 | [BATADV_ATTR_ALGO_NAME] = { .type = NLA_STRING }, |
| 97 | [BATADV_ATTR_MESH_IFINDEX] = { .type = NLA_U32 }, |
| 98 | [BATADV_ATTR_MESH_IFNAME] = { .type = NLA_STRING }, |
| 99 | [BATADV_ATTR_MESH_ADDRESS] = { .len = ETH_ALEN }, |
| 100 | [BATADV_ATTR_HARD_IFINDEX] = { .type = NLA_U32 }, |
| 101 | [BATADV_ATTR_HARD_IFNAME] = { .type = NLA_STRING }, |
| 102 | [BATADV_ATTR_HARD_ADDRESS] = { .len = ETH_ALEN }, |
| 103 | [BATADV_ATTR_ORIG_ADDRESS] = { .len = ETH_ALEN }, |
| 104 | [BATADV_ATTR_TPMETER_RESULT] = { .type = NLA_U8 }, |
| 105 | [BATADV_ATTR_TPMETER_TEST_TIME] = { .type = NLA_U32 }, |
| 106 | [BATADV_ATTR_TPMETER_BYTES] = { .type = NLA_U64 }, |
| 107 | [BATADV_ATTR_TPMETER_COOKIE] = { .type = NLA_U32 }, |
| 108 | [BATADV_ATTR_ACTIVE] = { .type = NLA_FLAG }, |
| 109 | [BATADV_ATTR_TT_ADDRESS] = { .len = ETH_ALEN }, |
| 110 | [BATADV_ATTR_TT_TTVN] = { .type = NLA_U8 }, |
| 111 | [BATADV_ATTR_TT_LAST_TTVN] = { .type = NLA_U8 }, |
| 112 | [BATADV_ATTR_TT_CRC32] = { .type = NLA_U32 }, |
| 113 | [BATADV_ATTR_TT_VID] = { .type = NLA_U16 }, |
| 114 | [BATADV_ATTR_TT_FLAGS] = { .type = NLA_U32 }, |
| 115 | [BATADV_ATTR_FLAG_BEST] = { .type = NLA_FLAG }, |
| 116 | [BATADV_ATTR_LAST_SEEN_MSECS] = { .type = NLA_U32 }, |
| 117 | [BATADV_ATTR_NEIGH_ADDRESS] = { .len = ETH_ALEN }, |
| 118 | [BATADV_ATTR_TQ] = { .type = NLA_U8 }, |
| 119 | [BATADV_ATTR_THROUGHPUT] = { .type = NLA_U32 }, |
| 120 | [BATADV_ATTR_BANDWIDTH_UP] = { .type = NLA_U32 }, |
| 121 | [BATADV_ATTR_BANDWIDTH_DOWN] = { .type = NLA_U32 }, |
| 122 | [BATADV_ATTR_ROUTER] = { .len = ETH_ALEN }, |
| 123 | [BATADV_ATTR_BLA_OWN] = { .type = NLA_FLAG }, |
| 124 | [BATADV_ATTR_BLA_ADDRESS] = { .len = ETH_ALEN }, |
| 125 | [BATADV_ATTR_BLA_VID] = { .type = NLA_U16 }, |
| 126 | [BATADV_ATTR_BLA_BACKBONE] = { .len = ETH_ALEN }, |
| 127 | [BATADV_ATTR_BLA_CRC] = { .type = NLA_U16 }, |
| 128 | [BATADV_ATTR_DAT_CACHE_IP4ADDRESS] = { .type = NLA_U32 }, |
| 129 | [BATADV_ATTR_DAT_CACHE_HWADDRESS] = { .len = ETH_ALEN }, |
| 130 | [BATADV_ATTR_DAT_CACHE_VID] = { .type = NLA_U16 }, |
Linus Lüssing | 53dd9a6 | 2018-03-13 11:41:13 +0100 | [diff] [blame] | 131 | [BATADV_ATTR_MCAST_FLAGS] = { .type = NLA_U32 }, |
| 132 | [BATADV_ATTR_MCAST_FLAGS_PRIV] = { .type = NLA_U32 }, |
Sven Eckelmann | 49e7e37 | 2018-11-23 12:41:08 +0100 | [diff] [blame] | 133 | [BATADV_ATTR_VLANID] = { .type = NLA_U16 }, |
Sven Eckelmann | 9ab4cee | 2018-11-23 12:46:14 +0100 | [diff] [blame] | 134 | [BATADV_ATTR_AGGREGATED_OGMS_ENABLED] = { .type = NLA_U8 }, |
Sven Eckelmann | e43d16b | 2018-11-23 12:51:55 +0100 | [diff] [blame] | 135 | [BATADV_ATTR_AP_ISOLATION_ENABLED] = { .type = NLA_U8 }, |
| 136 | [BATADV_ATTR_ISOLATION_MARK] = { .type = NLA_U32 }, |
| 137 | [BATADV_ATTR_ISOLATION_MASK] = { .type = NLA_U32 }, |
Sven Eckelmann | d7e5250 | 2018-11-23 12:55:44 +0100 | [diff] [blame] | 138 | [BATADV_ATTR_BONDING_ENABLED] = { .type = NLA_U8 }, |
Sven Eckelmann | 43ff610 | 2018-11-23 13:03:39 +0100 | [diff] [blame] | 139 | [BATADV_ATTR_BRIDGE_LOOP_AVOIDANCE_ENABLED] = { .type = NLA_U8 }, |
Sven Eckelmann | a1c8de8 | 2018-11-23 13:06:42 +0100 | [diff] [blame] | 140 | [BATADV_ATTR_DISTRIBUTED_ARP_TABLE_ENABLED] = { .type = NLA_U8 }, |
Sven Eckelmann | 3e15b06 | 2018-11-23 13:09:49 +0100 | [diff] [blame] | 141 | [BATADV_ATTR_FRAGMENTATION_ENABLED] = { .type = NLA_U8 }, |
Sven Eckelmann | e2d0d35 | 2018-11-23 13:15:00 +0100 | [diff] [blame] | 142 | [BATADV_ATTR_GW_BANDWIDTH_DOWN] = { .type = NLA_U32 }, |
| 143 | [BATADV_ATTR_GW_BANDWIDTH_UP] = { .type = NLA_U32 }, |
| 144 | [BATADV_ATTR_GW_MODE] = { .type = NLA_U8 }, |
| 145 | [BATADV_ATTR_GW_SEL_CLASS] = { .type = NLA_U32 }, |
Sven Eckelmann | bfc7f1b | 2018-11-23 13:19:38 +0100 | [diff] [blame] | 146 | [BATADV_ATTR_HOP_PENALTY] = { .type = NLA_U8 }, |
Sven Eckelmann | b85bd09 | 2018-11-23 13:22:33 +0100 | [diff] [blame] | 147 | [BATADV_ATTR_LOG_LEVEL] = { .type = NLA_U32 }, |
Sven Eckelmann | f75b56b | 2018-11-23 13:25:05 +0100 | [diff] [blame] | 148 | [BATADV_ATTR_MULTICAST_FORCEFLOOD_ENABLED] = { .type = NLA_U8 }, |
Linus Lüssing | 32e7274 | 2019-03-23 05:47:41 +0100 | [diff] [blame] | 149 | [BATADV_ATTR_MULTICAST_FANOUT] = { .type = NLA_U32 }, |
Sven Eckelmann | 6c57cde | 2018-11-23 13:26:14 +0100 | [diff] [blame] | 150 | [BATADV_ATTR_NETWORK_CODING_ENABLED] = { .type = NLA_U8 }, |
Sven Eckelmann | 7b751b3 | 2018-11-23 13:28:02 +0100 | [diff] [blame] | 151 | [BATADV_ATTR_ORIG_INTERVAL] = { .type = NLA_U32 }, |
Sven Eckelmann | a108008 | 2018-11-23 13:30:04 +0100 | [diff] [blame] | 152 | [BATADV_ATTR_ELP_INTERVAL] = { .type = NLA_U32 }, |
Sven Eckelmann | 9a18224 | 2018-11-23 13:31:23 +0100 | [diff] [blame] | 153 | [BATADV_ATTR_THROUGHPUT_OVERRIDE] = { .type = NLA_U32 }, |
Matthias Schiffer | 5da0aef | 2016-05-09 18:41:09 +0200 | [diff] [blame] | 154 | }; |
| 155 | |
| 156 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 157 | * batadv_netlink_get_ifindex() - Extract an interface index from a message |
Matthias Schiffer | b60620c | 2016-07-03 13:31:36 +0200 | [diff] [blame] | 158 | * @nlh: Message header |
| 159 | * @attrtype: Attribute which holds an interface index |
| 160 | * |
| 161 | * Return: interface index, or 0. |
| 162 | */ |
Matthias Schiffer | d34f055 | 2016-07-03 13:31:37 +0200 | [diff] [blame] | 163 | int |
Matthias Schiffer | b60620c | 2016-07-03 13:31:36 +0200 | [diff] [blame] | 164 | batadv_netlink_get_ifindex(const struct nlmsghdr *nlh, int attrtype) |
| 165 | { |
| 166 | struct nlattr *attr = nlmsg_find_attr(nlh, GENL_HDRLEN, attrtype); |
| 167 | |
| 168 | return attr ? nla_get_u32(attr) : 0; |
| 169 | } |
| 170 | |
| 171 | /** |
Sven Eckelmann | e43d16b | 2018-11-23 12:51:55 +0100 | [diff] [blame] | 172 | * batadv_netlink_mesh_fill_ap_isolation() - Add ap_isolation softif attribute |
| 173 | * @msg: Netlink message to dump into |
| 174 | * @bat_priv: the bat priv with all the soft interface information |
| 175 | * |
| 176 | * Return: 0 on success or negative error number in case of failure |
| 177 | */ |
| 178 | static int batadv_netlink_mesh_fill_ap_isolation(struct sk_buff *msg, |
| 179 | struct batadv_priv *bat_priv) |
| 180 | { |
| 181 | struct batadv_softif_vlan *vlan; |
| 182 | u8 ap_isolation; |
| 183 | |
| 184 | vlan = batadv_softif_vlan_get(bat_priv, BATADV_NO_FLAGS); |
| 185 | if (!vlan) |
| 186 | return 0; |
| 187 | |
| 188 | ap_isolation = atomic_read(&vlan->ap_isolation); |
| 189 | batadv_softif_vlan_put(vlan); |
| 190 | |
| 191 | return nla_put_u8(msg, BATADV_ATTR_AP_ISOLATION_ENABLED, |
| 192 | !!ap_isolation); |
| 193 | } |
| 194 | |
| 195 | /** |
| 196 | * batadv_option_set_ap_isolation() - Set ap_isolation from genl msg |
| 197 | * @attr: parsed BATADV_ATTR_AP_ISOLATION_ENABLED attribute |
| 198 | * @bat_priv: the bat priv with all the soft interface information |
| 199 | * |
| 200 | * Return: 0 on success or negative error number in case of failure |
| 201 | */ |
| 202 | static int batadv_netlink_set_mesh_ap_isolation(struct nlattr *attr, |
| 203 | struct batadv_priv *bat_priv) |
| 204 | { |
| 205 | struct batadv_softif_vlan *vlan; |
| 206 | |
| 207 | vlan = batadv_softif_vlan_get(bat_priv, BATADV_NO_FLAGS); |
| 208 | if (!vlan) |
| 209 | return -ENOENT; |
| 210 | |
| 211 | atomic_set(&vlan->ap_isolation, !!nla_get_u8(attr)); |
| 212 | batadv_softif_vlan_put(vlan); |
| 213 | |
| 214 | return 0; |
| 215 | } |
| 216 | |
| 217 | /** |
Sven Eckelmann | 6004051 | 2018-11-23 12:14:56 +0100 | [diff] [blame] | 218 | * batadv_netlink_mesh_fill() - Fill message with mesh attributes |
| 219 | * @msg: Netlink message to dump into |
| 220 | * @bat_priv: the bat priv with all the soft interface information |
| 221 | * @cmd: type of message to generate |
| 222 | * @portid: Port making netlink request |
| 223 | * @seq: sequence number for message |
| 224 | * @flags: Additional flags for message |
Matthias Schiffer | 5da0aef | 2016-05-09 18:41:09 +0200 | [diff] [blame] | 225 | * |
Sven Eckelmann | 6004051 | 2018-11-23 12:14:56 +0100 | [diff] [blame] | 226 | * Return: 0 on success or negative error number in case of failure |
Matthias Schiffer | 5da0aef | 2016-05-09 18:41:09 +0200 | [diff] [blame] | 227 | */ |
Sven Eckelmann | 6004051 | 2018-11-23 12:14:56 +0100 | [diff] [blame] | 228 | static int batadv_netlink_mesh_fill(struct sk_buff *msg, |
| 229 | struct batadv_priv *bat_priv, |
| 230 | enum batadv_nl_commands cmd, |
| 231 | u32 portid, u32 seq, int flags) |
Matthias Schiffer | 5da0aef | 2016-05-09 18:41:09 +0200 | [diff] [blame] | 232 | { |
Sven Eckelmann | 6004051 | 2018-11-23 12:14:56 +0100 | [diff] [blame] | 233 | struct net_device *soft_iface = bat_priv->soft_iface; |
Matthias Schiffer | 5da0aef | 2016-05-09 18:41:09 +0200 | [diff] [blame] | 234 | struct batadv_hard_iface *primary_if = NULL; |
| 235 | struct net_device *hard_iface; |
Sven Eckelmann | 6004051 | 2018-11-23 12:14:56 +0100 | [diff] [blame] | 236 | void *hdr; |
| 237 | |
| 238 | hdr = genlmsg_put(msg, portid, seq, &batadv_netlink_family, flags, cmd); |
| 239 | if (!hdr) |
| 240 | return -ENOBUFS; |
Matthias Schiffer | 5da0aef | 2016-05-09 18:41:09 +0200 | [diff] [blame] | 241 | |
| 242 | if (nla_put_string(msg, BATADV_ATTR_VERSION, BATADV_SOURCE_VERSION) || |
| 243 | nla_put_string(msg, BATADV_ATTR_ALGO_NAME, |
Antonio Quartulli | 29824a5 | 2016-05-25 23:27:31 +0800 | [diff] [blame] | 244 | bat_priv->algo_ops->name) || |
Matthias Schiffer | 5da0aef | 2016-05-09 18:41:09 +0200 | [diff] [blame] | 245 | nla_put_u32(msg, BATADV_ATTR_MESH_IFINDEX, soft_iface->ifindex) || |
| 246 | nla_put_string(msg, BATADV_ATTR_MESH_IFNAME, soft_iface->name) || |
| 247 | nla_put(msg, BATADV_ATTR_MESH_ADDRESS, ETH_ALEN, |
Sven Eckelmann | f32ed4b | 2016-07-03 13:31:38 +0200 | [diff] [blame] | 248 | soft_iface->dev_addr) || |
| 249 | nla_put_u8(msg, BATADV_ATTR_TT_TTVN, |
| 250 | (u8)atomic_read(&bat_priv->tt.vn))) |
Sven Eckelmann | 6004051 | 2018-11-23 12:14:56 +0100 | [diff] [blame] | 251 | goto nla_put_failure; |
Matthias Schiffer | 5da0aef | 2016-05-09 18:41:09 +0200 | [diff] [blame] | 252 | |
Sven Eckelmann | 8dad6f0d | 2016-07-03 13:31:46 +0200 | [diff] [blame] | 253 | #ifdef CONFIG_BATMAN_ADV_BLA |
| 254 | if (nla_put_u16(msg, BATADV_ATTR_BLA_CRC, |
| 255 | ntohs(bat_priv->bla.claim_dest.group))) |
Sven Eckelmann | 6004051 | 2018-11-23 12:14:56 +0100 | [diff] [blame] | 256 | goto nla_put_failure; |
Sven Eckelmann | 8dad6f0d | 2016-07-03 13:31:46 +0200 | [diff] [blame] | 257 | #endif |
| 258 | |
Linus Lüssing | 53dd9a6 | 2018-03-13 11:41:13 +0100 | [diff] [blame] | 259 | if (batadv_mcast_mesh_info_put(msg, bat_priv)) |
Sven Eckelmann | 6004051 | 2018-11-23 12:14:56 +0100 | [diff] [blame] | 260 | goto nla_put_failure; |
Linus Lüssing | 53dd9a6 | 2018-03-13 11:41:13 +0100 | [diff] [blame] | 261 | |
Matthias Schiffer | 5da0aef | 2016-05-09 18:41:09 +0200 | [diff] [blame] | 262 | primary_if = batadv_primary_if_get_selected(bat_priv); |
| 263 | if (primary_if && primary_if->if_status == BATADV_IF_ACTIVE) { |
| 264 | hard_iface = primary_if->net_dev; |
| 265 | |
| 266 | if (nla_put_u32(msg, BATADV_ATTR_HARD_IFINDEX, |
| 267 | hard_iface->ifindex) || |
| 268 | nla_put_string(msg, BATADV_ATTR_HARD_IFNAME, |
| 269 | hard_iface->name) || |
| 270 | nla_put(msg, BATADV_ATTR_HARD_ADDRESS, ETH_ALEN, |
| 271 | hard_iface->dev_addr)) |
Sven Eckelmann | 6004051 | 2018-11-23 12:14:56 +0100 | [diff] [blame] | 272 | goto nla_put_failure; |
Matthias Schiffer | 5da0aef | 2016-05-09 18:41:09 +0200 | [diff] [blame] | 273 | } |
| 274 | |
Sven Eckelmann | 9ab4cee | 2018-11-23 12:46:14 +0100 | [diff] [blame] | 275 | if (nla_put_u8(msg, BATADV_ATTR_AGGREGATED_OGMS_ENABLED, |
| 276 | !!atomic_read(&bat_priv->aggregated_ogms))) |
| 277 | goto nla_put_failure; |
| 278 | |
Sven Eckelmann | e43d16b | 2018-11-23 12:51:55 +0100 | [diff] [blame] | 279 | if (batadv_netlink_mesh_fill_ap_isolation(msg, bat_priv)) |
| 280 | goto nla_put_failure; |
| 281 | |
| 282 | if (nla_put_u32(msg, BATADV_ATTR_ISOLATION_MARK, |
| 283 | bat_priv->isolation_mark)) |
| 284 | goto nla_put_failure; |
| 285 | |
| 286 | if (nla_put_u32(msg, BATADV_ATTR_ISOLATION_MASK, |
| 287 | bat_priv->isolation_mark_mask)) |
| 288 | goto nla_put_failure; |
| 289 | |
Sven Eckelmann | d7e5250 | 2018-11-23 12:55:44 +0100 | [diff] [blame] | 290 | if (nla_put_u8(msg, BATADV_ATTR_BONDING_ENABLED, |
| 291 | !!atomic_read(&bat_priv->bonding))) |
| 292 | goto nla_put_failure; |
| 293 | |
Sven Eckelmann | 43ff610 | 2018-11-23 13:03:39 +0100 | [diff] [blame] | 294 | #ifdef CONFIG_BATMAN_ADV_BLA |
| 295 | if (nla_put_u8(msg, BATADV_ATTR_BRIDGE_LOOP_AVOIDANCE_ENABLED, |
| 296 | !!atomic_read(&bat_priv->bridge_loop_avoidance))) |
| 297 | goto nla_put_failure; |
| 298 | #endif /* CONFIG_BATMAN_ADV_BLA */ |
| 299 | |
Sven Eckelmann | a1c8de8 | 2018-11-23 13:06:42 +0100 | [diff] [blame] | 300 | #ifdef CONFIG_BATMAN_ADV_DAT |
| 301 | if (nla_put_u8(msg, BATADV_ATTR_DISTRIBUTED_ARP_TABLE_ENABLED, |
| 302 | !!atomic_read(&bat_priv->distributed_arp_table))) |
| 303 | goto nla_put_failure; |
| 304 | #endif /* CONFIG_BATMAN_ADV_DAT */ |
| 305 | |
Sven Eckelmann | 3e15b06 | 2018-11-23 13:09:49 +0100 | [diff] [blame] | 306 | if (nla_put_u8(msg, BATADV_ATTR_FRAGMENTATION_ENABLED, |
| 307 | !!atomic_read(&bat_priv->fragmentation))) |
| 308 | goto nla_put_failure; |
| 309 | |
Sven Eckelmann | e2d0d35 | 2018-11-23 13:15:00 +0100 | [diff] [blame] | 310 | if (nla_put_u32(msg, BATADV_ATTR_GW_BANDWIDTH_DOWN, |
| 311 | atomic_read(&bat_priv->gw.bandwidth_down))) |
| 312 | goto nla_put_failure; |
| 313 | |
| 314 | if (nla_put_u32(msg, BATADV_ATTR_GW_BANDWIDTH_UP, |
| 315 | atomic_read(&bat_priv->gw.bandwidth_up))) |
| 316 | goto nla_put_failure; |
| 317 | |
| 318 | if (nla_put_u8(msg, BATADV_ATTR_GW_MODE, |
| 319 | atomic_read(&bat_priv->gw.mode))) |
| 320 | goto nla_put_failure; |
| 321 | |
| 322 | if (bat_priv->algo_ops->gw.get_best_gw_node && |
| 323 | bat_priv->algo_ops->gw.is_eligible) { |
| 324 | /* GW selection class is not available if the routing algorithm |
| 325 | * in use does not implement the GW API |
| 326 | */ |
| 327 | if (nla_put_u32(msg, BATADV_ATTR_GW_SEL_CLASS, |
| 328 | atomic_read(&bat_priv->gw.sel_class))) |
| 329 | goto nla_put_failure; |
| 330 | } |
| 331 | |
Sven Eckelmann | bfc7f1b | 2018-11-23 13:19:38 +0100 | [diff] [blame] | 332 | if (nla_put_u8(msg, BATADV_ATTR_HOP_PENALTY, |
| 333 | atomic_read(&bat_priv->hop_penalty))) |
| 334 | goto nla_put_failure; |
| 335 | |
Sven Eckelmann | b85bd09 | 2018-11-23 13:22:33 +0100 | [diff] [blame] | 336 | #ifdef CONFIG_BATMAN_ADV_DEBUG |
| 337 | if (nla_put_u32(msg, BATADV_ATTR_LOG_LEVEL, |
| 338 | atomic_read(&bat_priv->log_level))) |
| 339 | goto nla_put_failure; |
| 340 | #endif /* CONFIG_BATMAN_ADV_DEBUG */ |
| 341 | |
Sven Eckelmann | f75b56b | 2018-11-23 13:25:05 +0100 | [diff] [blame] | 342 | #ifdef CONFIG_BATMAN_ADV_MCAST |
| 343 | if (nla_put_u8(msg, BATADV_ATTR_MULTICAST_FORCEFLOOD_ENABLED, |
| 344 | !atomic_read(&bat_priv->multicast_mode))) |
| 345 | goto nla_put_failure; |
Linus Lüssing | 32e7274 | 2019-03-23 05:47:41 +0100 | [diff] [blame] | 346 | |
| 347 | if (nla_put_u32(msg, BATADV_ATTR_MULTICAST_FANOUT, |
| 348 | atomic_read(&bat_priv->multicast_fanout))) |
| 349 | goto nla_put_failure; |
Sven Eckelmann | f75b56b | 2018-11-23 13:25:05 +0100 | [diff] [blame] | 350 | #endif /* CONFIG_BATMAN_ADV_MCAST */ |
| 351 | |
Sven Eckelmann | 6c57cde | 2018-11-23 13:26:14 +0100 | [diff] [blame] | 352 | #ifdef CONFIG_BATMAN_ADV_NC |
| 353 | if (nla_put_u8(msg, BATADV_ATTR_NETWORK_CODING_ENABLED, |
| 354 | !!atomic_read(&bat_priv->network_coding))) |
| 355 | goto nla_put_failure; |
| 356 | #endif /* CONFIG_BATMAN_ADV_NC */ |
| 357 | |
Sven Eckelmann | 7b751b3 | 2018-11-23 13:28:02 +0100 | [diff] [blame] | 358 | if (nla_put_u32(msg, BATADV_ATTR_ORIG_INTERVAL, |
| 359 | atomic_read(&bat_priv->orig_interval))) |
| 360 | goto nla_put_failure; |
| 361 | |
Matthias Schiffer | 5da0aef | 2016-05-09 18:41:09 +0200 | [diff] [blame] | 362 | if (primary_if) |
| 363 | batadv_hardif_put(primary_if); |
| 364 | |
Sven Eckelmann | 6004051 | 2018-11-23 12:14:56 +0100 | [diff] [blame] | 365 | genlmsg_end(msg, hdr); |
| 366 | return 0; |
| 367 | |
| 368 | nla_put_failure: |
| 369 | if (primary_if) |
| 370 | batadv_hardif_put(primary_if); |
| 371 | |
| 372 | genlmsg_cancel(msg, hdr); |
| 373 | return -EMSGSIZE; |
| 374 | } |
| 375 | |
| 376 | /** |
| 377 | * batadv_netlink_notify_mesh() - send softif attributes to listener |
| 378 | * @bat_priv: the bat priv with all the soft interface information |
| 379 | * |
| 380 | * Return: 0 on success, < 0 on error |
| 381 | */ |
Sven Eckelmann | 7e6f461 | 2018-11-23 16:07:12 +0100 | [diff] [blame] | 382 | int batadv_netlink_notify_mesh(struct batadv_priv *bat_priv) |
Sven Eckelmann | 6004051 | 2018-11-23 12:14:56 +0100 | [diff] [blame] | 383 | { |
| 384 | struct sk_buff *msg; |
| 385 | int ret; |
| 386 | |
| 387 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); |
| 388 | if (!msg) |
| 389 | return -ENOMEM; |
| 390 | |
| 391 | ret = batadv_netlink_mesh_fill(msg, bat_priv, BATADV_CMD_SET_MESH, |
| 392 | 0, 0, 0); |
| 393 | if (ret < 0) { |
| 394 | nlmsg_free(msg); |
| 395 | return ret; |
| 396 | } |
| 397 | |
| 398 | genlmsg_multicast_netns(&batadv_netlink_family, |
| 399 | dev_net(bat_priv->soft_iface), msg, 0, |
| 400 | BATADV_NL_MCGRP_CONFIG, GFP_KERNEL); |
| 401 | |
| 402 | return 0; |
| 403 | } |
| 404 | |
| 405 | /** |
| 406 | * batadv_netlink_get_mesh() - Get softif attributes |
| 407 | * @skb: Netlink message with request data |
| 408 | * @info: receiver information |
| 409 | * |
| 410 | * Return: 0 on success or negative error number in case of failure |
| 411 | */ |
| 412 | static int batadv_netlink_get_mesh(struct sk_buff *skb, struct genl_info *info) |
| 413 | { |
| 414 | struct batadv_priv *bat_priv = info->user_ptr[0]; |
| 415 | struct sk_buff *msg; |
| 416 | int ret; |
| 417 | |
| 418 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); |
| 419 | if (!msg) |
| 420 | return -ENOMEM; |
| 421 | |
| 422 | ret = batadv_netlink_mesh_fill(msg, bat_priv, BATADV_CMD_GET_MESH, |
| 423 | info->snd_portid, info->snd_seq, 0); |
| 424 | if (ret < 0) { |
| 425 | nlmsg_free(msg); |
| 426 | return ret; |
| 427 | } |
| 428 | |
| 429 | ret = genlmsg_reply(msg, info); |
| 430 | |
Matthias Schiffer | 5da0aef | 2016-05-09 18:41:09 +0200 | [diff] [blame] | 431 | return ret; |
| 432 | } |
| 433 | |
| 434 | /** |
Sven Eckelmann | 6004051 | 2018-11-23 12:14:56 +0100 | [diff] [blame] | 435 | * batadv_netlink_set_mesh() - Set softif attributes |
| 436 | * @skb: Netlink message with request data |
Matthias Schiffer | 5da0aef | 2016-05-09 18:41:09 +0200 | [diff] [blame] | 437 | * @info: receiver information |
| 438 | * |
Sven Eckelmann | 6004051 | 2018-11-23 12:14:56 +0100 | [diff] [blame] | 439 | * Return: 0 on success or negative error number in case of failure |
Matthias Schiffer | 5da0aef | 2016-05-09 18:41:09 +0200 | [diff] [blame] | 440 | */ |
Sven Eckelmann | 6004051 | 2018-11-23 12:14:56 +0100 | [diff] [blame] | 441 | static int batadv_netlink_set_mesh(struct sk_buff *skb, struct genl_info *info) |
Matthias Schiffer | 5da0aef | 2016-05-09 18:41:09 +0200 | [diff] [blame] | 442 | { |
Sven Eckelmann | 6004051 | 2018-11-23 12:14:56 +0100 | [diff] [blame] | 443 | struct batadv_priv *bat_priv = info->user_ptr[0]; |
Sven Eckelmann | 9ab4cee | 2018-11-23 12:46:14 +0100 | [diff] [blame] | 444 | struct nlattr *attr; |
| 445 | |
| 446 | if (info->attrs[BATADV_ATTR_AGGREGATED_OGMS_ENABLED]) { |
| 447 | attr = info->attrs[BATADV_ATTR_AGGREGATED_OGMS_ENABLED]; |
| 448 | |
| 449 | atomic_set(&bat_priv->aggregated_ogms, !!nla_get_u8(attr)); |
| 450 | } |
Matthias Schiffer | 5da0aef | 2016-05-09 18:41:09 +0200 | [diff] [blame] | 451 | |
Sven Eckelmann | e43d16b | 2018-11-23 12:51:55 +0100 | [diff] [blame] | 452 | if (info->attrs[BATADV_ATTR_AP_ISOLATION_ENABLED]) { |
| 453 | attr = info->attrs[BATADV_ATTR_AP_ISOLATION_ENABLED]; |
| 454 | |
| 455 | batadv_netlink_set_mesh_ap_isolation(attr, bat_priv); |
| 456 | } |
| 457 | |
| 458 | if (info->attrs[BATADV_ATTR_ISOLATION_MARK]) { |
| 459 | attr = info->attrs[BATADV_ATTR_ISOLATION_MARK]; |
| 460 | |
| 461 | bat_priv->isolation_mark = nla_get_u32(attr); |
| 462 | } |
| 463 | |
| 464 | if (info->attrs[BATADV_ATTR_ISOLATION_MASK]) { |
| 465 | attr = info->attrs[BATADV_ATTR_ISOLATION_MASK]; |
| 466 | |
| 467 | bat_priv->isolation_mark_mask = nla_get_u32(attr); |
| 468 | } |
| 469 | |
Sven Eckelmann | d7e5250 | 2018-11-23 12:55:44 +0100 | [diff] [blame] | 470 | if (info->attrs[BATADV_ATTR_BONDING_ENABLED]) { |
| 471 | attr = info->attrs[BATADV_ATTR_BONDING_ENABLED]; |
| 472 | |
| 473 | atomic_set(&bat_priv->bonding, !!nla_get_u8(attr)); |
| 474 | } |
| 475 | |
Sven Eckelmann | 43ff610 | 2018-11-23 13:03:39 +0100 | [diff] [blame] | 476 | #ifdef CONFIG_BATMAN_ADV_BLA |
| 477 | if (info->attrs[BATADV_ATTR_BRIDGE_LOOP_AVOIDANCE_ENABLED]) { |
| 478 | attr = info->attrs[BATADV_ATTR_BRIDGE_LOOP_AVOIDANCE_ENABLED]; |
| 479 | |
| 480 | atomic_set(&bat_priv->bridge_loop_avoidance, |
| 481 | !!nla_get_u8(attr)); |
| 482 | batadv_bla_status_update(bat_priv->soft_iface); |
| 483 | } |
| 484 | #endif /* CONFIG_BATMAN_ADV_BLA */ |
| 485 | |
Sven Eckelmann | a1c8de8 | 2018-11-23 13:06:42 +0100 | [diff] [blame] | 486 | #ifdef CONFIG_BATMAN_ADV_DAT |
| 487 | if (info->attrs[BATADV_ATTR_DISTRIBUTED_ARP_TABLE_ENABLED]) { |
| 488 | attr = info->attrs[BATADV_ATTR_DISTRIBUTED_ARP_TABLE_ENABLED]; |
| 489 | |
| 490 | atomic_set(&bat_priv->distributed_arp_table, |
| 491 | !!nla_get_u8(attr)); |
| 492 | batadv_dat_status_update(bat_priv->soft_iface); |
| 493 | } |
| 494 | #endif /* CONFIG_BATMAN_ADV_DAT */ |
| 495 | |
Sven Eckelmann | 3e15b06 | 2018-11-23 13:09:49 +0100 | [diff] [blame] | 496 | if (info->attrs[BATADV_ATTR_FRAGMENTATION_ENABLED]) { |
| 497 | attr = info->attrs[BATADV_ATTR_FRAGMENTATION_ENABLED]; |
| 498 | |
| 499 | atomic_set(&bat_priv->fragmentation, !!nla_get_u8(attr)); |
| 500 | batadv_update_min_mtu(bat_priv->soft_iface); |
| 501 | } |
| 502 | |
Sven Eckelmann | e2d0d35 | 2018-11-23 13:15:00 +0100 | [diff] [blame] | 503 | if (info->attrs[BATADV_ATTR_GW_BANDWIDTH_DOWN]) { |
| 504 | attr = info->attrs[BATADV_ATTR_GW_BANDWIDTH_DOWN]; |
| 505 | |
| 506 | atomic_set(&bat_priv->gw.bandwidth_down, nla_get_u32(attr)); |
| 507 | batadv_gw_tvlv_container_update(bat_priv); |
| 508 | } |
| 509 | |
| 510 | if (info->attrs[BATADV_ATTR_GW_BANDWIDTH_UP]) { |
| 511 | attr = info->attrs[BATADV_ATTR_GW_BANDWIDTH_UP]; |
| 512 | |
| 513 | atomic_set(&bat_priv->gw.bandwidth_up, nla_get_u32(attr)); |
| 514 | batadv_gw_tvlv_container_update(bat_priv); |
| 515 | } |
| 516 | |
| 517 | if (info->attrs[BATADV_ATTR_GW_MODE]) { |
| 518 | u8 gw_mode; |
| 519 | |
| 520 | attr = info->attrs[BATADV_ATTR_GW_MODE]; |
| 521 | gw_mode = nla_get_u8(attr); |
| 522 | |
| 523 | if (gw_mode <= BATADV_GW_MODE_SERVER) { |
| 524 | /* Invoking batadv_gw_reselect() is not enough to really |
| 525 | * de-select the current GW. It will only instruct the |
| 526 | * gateway client code to perform a re-election the next |
| 527 | * time that this is needed. |
| 528 | * |
| 529 | * When gw client mode is being switched off the current |
| 530 | * GW must be de-selected explicitly otherwise no GW_ADD |
| 531 | * uevent is thrown on client mode re-activation. This |
| 532 | * is operation is performed in |
| 533 | * batadv_gw_check_client_stop(). |
| 534 | */ |
| 535 | batadv_gw_reselect(bat_priv); |
| 536 | |
| 537 | /* always call batadv_gw_check_client_stop() before |
| 538 | * changing the gateway state |
| 539 | */ |
| 540 | batadv_gw_check_client_stop(bat_priv); |
| 541 | atomic_set(&bat_priv->gw.mode, gw_mode); |
| 542 | batadv_gw_tvlv_container_update(bat_priv); |
| 543 | } |
| 544 | } |
| 545 | |
| 546 | if (info->attrs[BATADV_ATTR_GW_SEL_CLASS] && |
| 547 | bat_priv->algo_ops->gw.get_best_gw_node && |
| 548 | bat_priv->algo_ops->gw.is_eligible) { |
| 549 | /* setting the GW selection class is allowed only if the routing |
| 550 | * algorithm in use implements the GW API |
| 551 | */ |
| 552 | |
| 553 | u32 sel_class_max = 0xffffffffu; |
| 554 | u32 sel_class; |
| 555 | |
| 556 | attr = info->attrs[BATADV_ATTR_GW_SEL_CLASS]; |
| 557 | sel_class = nla_get_u32(attr); |
| 558 | |
| 559 | if (!bat_priv->algo_ops->gw.store_sel_class) |
| 560 | sel_class_max = BATADV_TQ_MAX_VALUE; |
| 561 | |
| 562 | if (sel_class >= 1 && sel_class <= sel_class_max) { |
| 563 | atomic_set(&bat_priv->gw.sel_class, sel_class); |
| 564 | batadv_gw_reselect(bat_priv); |
| 565 | } |
| 566 | } |
| 567 | |
Sven Eckelmann | bfc7f1b | 2018-11-23 13:19:38 +0100 | [diff] [blame] | 568 | if (info->attrs[BATADV_ATTR_HOP_PENALTY]) { |
| 569 | attr = info->attrs[BATADV_ATTR_HOP_PENALTY]; |
| 570 | |
| 571 | atomic_set(&bat_priv->hop_penalty, nla_get_u8(attr)); |
| 572 | } |
| 573 | |
Sven Eckelmann | b85bd09 | 2018-11-23 13:22:33 +0100 | [diff] [blame] | 574 | #ifdef CONFIG_BATMAN_ADV_DEBUG |
| 575 | if (info->attrs[BATADV_ATTR_LOG_LEVEL]) { |
| 576 | attr = info->attrs[BATADV_ATTR_LOG_LEVEL]; |
| 577 | |
| 578 | atomic_set(&bat_priv->log_level, |
| 579 | nla_get_u32(attr) & BATADV_DBG_ALL); |
| 580 | } |
| 581 | #endif /* CONFIG_BATMAN_ADV_DEBUG */ |
| 582 | |
Sven Eckelmann | f75b56b | 2018-11-23 13:25:05 +0100 | [diff] [blame] | 583 | #ifdef CONFIG_BATMAN_ADV_MCAST |
| 584 | if (info->attrs[BATADV_ATTR_MULTICAST_FORCEFLOOD_ENABLED]) { |
| 585 | attr = info->attrs[BATADV_ATTR_MULTICAST_FORCEFLOOD_ENABLED]; |
| 586 | |
| 587 | atomic_set(&bat_priv->multicast_mode, !nla_get_u8(attr)); |
| 588 | } |
Linus Lüssing | 32e7274 | 2019-03-23 05:47:41 +0100 | [diff] [blame] | 589 | |
| 590 | if (info->attrs[BATADV_ATTR_MULTICAST_FANOUT]) { |
| 591 | attr = info->attrs[BATADV_ATTR_MULTICAST_FANOUT]; |
| 592 | |
| 593 | atomic_set(&bat_priv->multicast_fanout, nla_get_u32(attr)); |
| 594 | } |
Sven Eckelmann | f75b56b | 2018-11-23 13:25:05 +0100 | [diff] [blame] | 595 | #endif /* CONFIG_BATMAN_ADV_MCAST */ |
| 596 | |
Sven Eckelmann | 6c57cde | 2018-11-23 13:26:14 +0100 | [diff] [blame] | 597 | #ifdef CONFIG_BATMAN_ADV_NC |
| 598 | if (info->attrs[BATADV_ATTR_NETWORK_CODING_ENABLED]) { |
| 599 | attr = info->attrs[BATADV_ATTR_NETWORK_CODING_ENABLED]; |
| 600 | |
| 601 | atomic_set(&bat_priv->network_coding, !!nla_get_u8(attr)); |
| 602 | batadv_nc_status_update(bat_priv->soft_iface); |
| 603 | } |
| 604 | #endif /* CONFIG_BATMAN_ADV_NC */ |
| 605 | |
Sven Eckelmann | 7b751b3 | 2018-11-23 13:28:02 +0100 | [diff] [blame] | 606 | if (info->attrs[BATADV_ATTR_ORIG_INTERVAL]) { |
| 607 | u32 orig_interval; |
| 608 | |
| 609 | attr = info->attrs[BATADV_ATTR_ORIG_INTERVAL]; |
| 610 | orig_interval = nla_get_u32(attr); |
| 611 | |
| 612 | orig_interval = min_t(u32, orig_interval, INT_MAX); |
| 613 | orig_interval = max_t(u32, orig_interval, 2 * BATADV_JITTER); |
| 614 | |
| 615 | atomic_set(&bat_priv->orig_interval, orig_interval); |
| 616 | } |
| 617 | |
Sven Eckelmann | 6004051 | 2018-11-23 12:14:56 +0100 | [diff] [blame] | 618 | batadv_netlink_notify_mesh(bat_priv); |
Matthias Schiffer | 5da0aef | 2016-05-09 18:41:09 +0200 | [diff] [blame] | 619 | |
Sven Eckelmann | 6004051 | 2018-11-23 12:14:56 +0100 | [diff] [blame] | 620 | return 0; |
Matthias Schiffer | 5da0aef | 2016-05-09 18:41:09 +0200 | [diff] [blame] | 621 | } |
| 622 | |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 623 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 624 | * batadv_netlink_tp_meter_put() - Fill information of started tp_meter session |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 625 | * @msg: netlink message to be sent back |
| 626 | * @cookie: tp meter session cookie |
| 627 | * |
| 628 | * Return: 0 on success, < 0 on error |
| 629 | */ |
| 630 | static int |
| 631 | batadv_netlink_tp_meter_put(struct sk_buff *msg, u32 cookie) |
| 632 | { |
| 633 | if (nla_put_u32(msg, BATADV_ATTR_TPMETER_COOKIE, cookie)) |
| 634 | return -ENOBUFS; |
| 635 | |
| 636 | return 0; |
| 637 | } |
| 638 | |
| 639 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 640 | * batadv_netlink_tpmeter_notify() - send tp_meter result via netlink to client |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 641 | * @bat_priv: the bat priv with all the soft interface information |
| 642 | * @dst: destination of tp_meter session |
| 643 | * @result: reason for tp meter session stop |
| 644 | * @test_time: total time ot the tp_meter session |
| 645 | * @total_bytes: bytes acked to the receiver |
| 646 | * @cookie: cookie of tp_meter session |
| 647 | * |
| 648 | * Return: 0 on success, < 0 on error |
| 649 | */ |
| 650 | int batadv_netlink_tpmeter_notify(struct batadv_priv *bat_priv, const u8 *dst, |
| 651 | u8 result, u32 test_time, u64 total_bytes, |
| 652 | u32 cookie) |
| 653 | { |
| 654 | struct sk_buff *msg; |
| 655 | void *hdr; |
| 656 | int ret; |
| 657 | |
| 658 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); |
| 659 | if (!msg) |
| 660 | return -ENOMEM; |
| 661 | |
| 662 | hdr = genlmsg_put(msg, 0, 0, &batadv_netlink_family, 0, |
| 663 | BATADV_CMD_TP_METER); |
| 664 | if (!hdr) { |
| 665 | ret = -ENOBUFS; |
| 666 | goto err_genlmsg; |
| 667 | } |
| 668 | |
| 669 | if (nla_put_u32(msg, BATADV_ATTR_TPMETER_COOKIE, cookie)) |
| 670 | goto nla_put_failure; |
| 671 | |
| 672 | if (nla_put_u32(msg, BATADV_ATTR_TPMETER_TEST_TIME, test_time)) |
| 673 | goto nla_put_failure; |
| 674 | |
| 675 | if (nla_put_u64_64bit(msg, BATADV_ATTR_TPMETER_BYTES, total_bytes, |
| 676 | BATADV_ATTR_PAD)) |
| 677 | goto nla_put_failure; |
| 678 | |
| 679 | if (nla_put_u8(msg, BATADV_ATTR_TPMETER_RESULT, result)) |
| 680 | goto nla_put_failure; |
| 681 | |
| 682 | if (nla_put(msg, BATADV_ATTR_ORIG_ADDRESS, ETH_ALEN, dst)) |
| 683 | goto nla_put_failure; |
| 684 | |
| 685 | genlmsg_end(msg, hdr); |
| 686 | |
| 687 | genlmsg_multicast_netns(&batadv_netlink_family, |
| 688 | dev_net(bat_priv->soft_iface), msg, 0, |
| 689 | BATADV_NL_MCGRP_TPMETER, GFP_KERNEL); |
| 690 | |
| 691 | return 0; |
| 692 | |
| 693 | nla_put_failure: |
| 694 | genlmsg_cancel(msg, hdr); |
| 695 | ret = -EMSGSIZE; |
| 696 | |
| 697 | err_genlmsg: |
| 698 | nlmsg_free(msg); |
| 699 | return ret; |
| 700 | } |
| 701 | |
| 702 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 703 | * batadv_netlink_tp_meter_start() - Start a new tp_meter session |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 704 | * @skb: received netlink message |
| 705 | * @info: receiver information |
| 706 | * |
| 707 | * Return: 0 on success, < 0 on error |
| 708 | */ |
| 709 | static int |
| 710 | batadv_netlink_tp_meter_start(struct sk_buff *skb, struct genl_info *info) |
| 711 | { |
Sven Eckelmann | c4a7a8d | 2018-11-23 12:00:28 +0100 | [diff] [blame] | 712 | struct batadv_priv *bat_priv = info->user_ptr[0]; |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 713 | struct sk_buff *msg = NULL; |
| 714 | u32 test_length; |
| 715 | void *msg_head; |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 716 | u32 cookie; |
| 717 | u8 *dst; |
| 718 | int ret; |
| 719 | |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 720 | if (!info->attrs[BATADV_ATTR_ORIG_ADDRESS]) |
| 721 | return -EINVAL; |
| 722 | |
| 723 | if (!info->attrs[BATADV_ATTR_TPMETER_TEST_TIME]) |
| 724 | return -EINVAL; |
| 725 | |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 726 | dst = nla_data(info->attrs[BATADV_ATTR_ORIG_ADDRESS]); |
| 727 | |
| 728 | test_length = nla_get_u32(info->attrs[BATADV_ATTR_TPMETER_TEST_TIME]); |
| 729 | |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 730 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); |
| 731 | if (!msg) { |
| 732 | ret = -ENOMEM; |
| 733 | goto out; |
| 734 | } |
| 735 | |
| 736 | msg_head = genlmsg_put(msg, info->snd_portid, info->snd_seq, |
| 737 | &batadv_netlink_family, 0, |
| 738 | BATADV_CMD_TP_METER); |
| 739 | if (!msg_head) { |
| 740 | ret = -ENOBUFS; |
| 741 | goto out; |
| 742 | } |
| 743 | |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 744 | batadv_tp_start(bat_priv, dst, test_length, &cookie); |
| 745 | |
| 746 | ret = batadv_netlink_tp_meter_put(msg, cookie); |
| 747 | |
| 748 | out: |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 749 | if (ret) { |
| 750 | if (msg) |
| 751 | nlmsg_free(msg); |
| 752 | return ret; |
| 753 | } |
| 754 | |
| 755 | genlmsg_end(msg, msg_head); |
| 756 | return genlmsg_reply(msg, info); |
| 757 | } |
| 758 | |
| 759 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 760 | * batadv_netlink_tp_meter_start() - Cancel a running tp_meter session |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 761 | * @skb: received netlink message |
| 762 | * @info: receiver information |
| 763 | * |
| 764 | * Return: 0 on success, < 0 on error |
| 765 | */ |
| 766 | static int |
| 767 | batadv_netlink_tp_meter_cancel(struct sk_buff *skb, struct genl_info *info) |
| 768 | { |
Sven Eckelmann | c4a7a8d | 2018-11-23 12:00:28 +0100 | [diff] [blame] | 769 | struct batadv_priv *bat_priv = info->user_ptr[0]; |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 770 | u8 *dst; |
| 771 | int ret = 0; |
| 772 | |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 773 | if (!info->attrs[BATADV_ATTR_ORIG_ADDRESS]) |
| 774 | return -EINVAL; |
| 775 | |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 776 | dst = nla_data(info->attrs[BATADV_ATTR_ORIG_ADDRESS]); |
| 777 | |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 778 | batadv_tp_stop(bat_priv, dst, BATADV_TP_REASON_CANCEL); |
| 779 | |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 780 | return ret; |
| 781 | } |
| 782 | |
Matthias Schiffer | b60620c | 2016-07-03 13:31:36 +0200 | [diff] [blame] | 783 | /** |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 784 | * batadv_netlink_hardif_fill() - Fill message with hardif attributes |
Matthias Schiffer | b60620c | 2016-07-03 13:31:36 +0200 | [diff] [blame] | 785 | * @msg: Netlink message to dump into |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 786 | * @bat_priv: the bat priv with all the soft interface information |
| 787 | * @hard_iface: hard interface which was modified |
| 788 | * @cmd: type of message to generate |
Matthias Schiffer | b60620c | 2016-07-03 13:31:36 +0200 | [diff] [blame] | 789 | * @portid: Port making netlink request |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 790 | * @seq: sequence number for message |
| 791 | * @flags: Additional flags for message |
Sven Eckelmann | fb69be6 | 2018-10-30 22:01:24 +0100 | [diff] [blame] | 792 | * @cb: Control block containing additional options |
Matthias Schiffer | b60620c | 2016-07-03 13:31:36 +0200 | [diff] [blame] | 793 | * |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 794 | * Return: 0 on success or negative error number in case of failure |
Matthias Schiffer | b60620c | 2016-07-03 13:31:36 +0200 | [diff] [blame] | 795 | */ |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 796 | static int batadv_netlink_hardif_fill(struct sk_buff *msg, |
| 797 | struct batadv_priv *bat_priv, |
| 798 | struct batadv_hard_iface *hard_iface, |
| 799 | enum batadv_nl_commands cmd, |
| 800 | u32 portid, u32 seq, int flags, |
| 801 | struct netlink_callback *cb) |
Matthias Schiffer | b60620c | 2016-07-03 13:31:36 +0200 | [diff] [blame] | 802 | { |
| 803 | struct net_device *net_dev = hard_iface->net_dev; |
| 804 | void *hdr; |
| 805 | |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 806 | hdr = genlmsg_put(msg, portid, seq, &batadv_netlink_family, flags, cmd); |
Matthias Schiffer | b60620c | 2016-07-03 13:31:36 +0200 | [diff] [blame] | 807 | if (!hdr) |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 808 | return -ENOBUFS; |
Matthias Schiffer | b60620c | 2016-07-03 13:31:36 +0200 | [diff] [blame] | 809 | |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 810 | if (cb) |
| 811 | genl_dump_check_consistent(cb, hdr); |
| 812 | |
| 813 | if (nla_put_u32(msg, BATADV_ATTR_MESH_IFINDEX, |
| 814 | bat_priv->soft_iface->ifindex)) |
| 815 | goto nla_put_failure; |
Sven Eckelmann | fb69be6 | 2018-10-30 22:01:24 +0100 | [diff] [blame] | 816 | |
Matthias Schiffer | b60620c | 2016-07-03 13:31:36 +0200 | [diff] [blame] | 817 | if (nla_put_u32(msg, BATADV_ATTR_HARD_IFINDEX, |
| 818 | net_dev->ifindex) || |
| 819 | nla_put_string(msg, BATADV_ATTR_HARD_IFNAME, |
| 820 | net_dev->name) || |
| 821 | nla_put(msg, BATADV_ATTR_HARD_ADDRESS, ETH_ALEN, |
| 822 | net_dev->dev_addr)) |
| 823 | goto nla_put_failure; |
| 824 | |
| 825 | if (hard_iface->if_status == BATADV_IF_ACTIVE) { |
| 826 | if (nla_put_flag(msg, BATADV_ATTR_ACTIVE)) |
| 827 | goto nla_put_failure; |
| 828 | } |
| 829 | |
Sven Eckelmann | a108008 | 2018-11-23 13:30:04 +0100 | [diff] [blame] | 830 | #ifdef CONFIG_BATMAN_ADV_BATMAN_V |
| 831 | if (nla_put_u32(msg, BATADV_ATTR_ELP_INTERVAL, |
| 832 | atomic_read(&hard_iface->bat_v.elp_interval))) |
| 833 | goto nla_put_failure; |
Sven Eckelmann | 9a18224 | 2018-11-23 13:31:23 +0100 | [diff] [blame] | 834 | |
| 835 | if (nla_put_u32(msg, BATADV_ATTR_THROUGHPUT_OVERRIDE, |
| 836 | atomic_read(&hard_iface->bat_v.throughput_override))) |
| 837 | goto nla_put_failure; |
Sven Eckelmann | a108008 | 2018-11-23 13:30:04 +0100 | [diff] [blame] | 838 | #endif /* CONFIG_BATMAN_ADV_BATMAN_V */ |
| 839 | |
Matthias Schiffer | b60620c | 2016-07-03 13:31:36 +0200 | [diff] [blame] | 840 | genlmsg_end(msg, hdr); |
| 841 | return 0; |
| 842 | |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 843 | nla_put_failure: |
Matthias Schiffer | b60620c | 2016-07-03 13:31:36 +0200 | [diff] [blame] | 844 | genlmsg_cancel(msg, hdr); |
| 845 | return -EMSGSIZE; |
| 846 | } |
| 847 | |
| 848 | /** |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 849 | * batadv_netlink_notify_hardif() - send hardif attributes to listener |
| 850 | * @bat_priv: the bat priv with all the soft interface information |
| 851 | * @hard_iface: hard interface which was modified |
| 852 | * |
| 853 | * Return: 0 on success, < 0 on error |
| 854 | */ |
Sven Eckelmann | 7e6f461 | 2018-11-23 16:07:12 +0100 | [diff] [blame] | 855 | int batadv_netlink_notify_hardif(struct batadv_priv *bat_priv, |
| 856 | struct batadv_hard_iface *hard_iface) |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 857 | { |
| 858 | struct sk_buff *msg; |
| 859 | int ret; |
| 860 | |
| 861 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); |
| 862 | if (!msg) |
| 863 | return -ENOMEM; |
| 864 | |
| 865 | ret = batadv_netlink_hardif_fill(msg, bat_priv, hard_iface, |
| 866 | BATADV_CMD_SET_HARDIF, 0, 0, 0, NULL); |
| 867 | if (ret < 0) { |
| 868 | nlmsg_free(msg); |
| 869 | return ret; |
| 870 | } |
| 871 | |
| 872 | genlmsg_multicast_netns(&batadv_netlink_family, |
| 873 | dev_net(bat_priv->soft_iface), msg, 0, |
| 874 | BATADV_NL_MCGRP_CONFIG, GFP_KERNEL); |
| 875 | |
| 876 | return 0; |
| 877 | } |
| 878 | |
| 879 | /** |
| 880 | * batadv_netlink_get_hardif() - Get hardif attributes |
| 881 | * @skb: Netlink message with request data |
| 882 | * @info: receiver information |
| 883 | * |
| 884 | * Return: 0 on success or negative error number in case of failure |
| 885 | */ |
| 886 | static int batadv_netlink_get_hardif(struct sk_buff *skb, |
| 887 | struct genl_info *info) |
| 888 | { |
| 889 | struct batadv_hard_iface *hard_iface = info->user_ptr[1]; |
| 890 | struct batadv_priv *bat_priv = info->user_ptr[0]; |
| 891 | struct sk_buff *msg; |
| 892 | int ret; |
| 893 | |
| 894 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); |
| 895 | if (!msg) |
| 896 | return -ENOMEM; |
| 897 | |
| 898 | ret = batadv_netlink_hardif_fill(msg, bat_priv, hard_iface, |
| 899 | BATADV_CMD_GET_HARDIF, |
| 900 | info->snd_portid, info->snd_seq, 0, |
| 901 | NULL); |
| 902 | if (ret < 0) { |
| 903 | nlmsg_free(msg); |
| 904 | return ret; |
| 905 | } |
| 906 | |
| 907 | ret = genlmsg_reply(msg, info); |
| 908 | |
| 909 | return ret; |
| 910 | } |
| 911 | |
| 912 | /** |
| 913 | * batadv_netlink_set_hardif() - Set hardif attributes |
| 914 | * @skb: Netlink message with request data |
| 915 | * @info: receiver information |
| 916 | * |
| 917 | * Return: 0 on success or negative error number in case of failure |
| 918 | */ |
| 919 | static int batadv_netlink_set_hardif(struct sk_buff *skb, |
| 920 | struct genl_info *info) |
| 921 | { |
| 922 | struct batadv_hard_iface *hard_iface = info->user_ptr[1]; |
| 923 | struct batadv_priv *bat_priv = info->user_ptr[0]; |
| 924 | |
Sven Eckelmann | a108008 | 2018-11-23 13:30:04 +0100 | [diff] [blame] | 925 | #ifdef CONFIG_BATMAN_ADV_BATMAN_V |
| 926 | struct nlattr *attr; |
| 927 | |
| 928 | if (info->attrs[BATADV_ATTR_ELP_INTERVAL]) { |
| 929 | attr = info->attrs[BATADV_ATTR_ELP_INTERVAL]; |
| 930 | |
| 931 | atomic_set(&hard_iface->bat_v.elp_interval, nla_get_u32(attr)); |
| 932 | } |
Sven Eckelmann | 9a18224 | 2018-11-23 13:31:23 +0100 | [diff] [blame] | 933 | |
| 934 | if (info->attrs[BATADV_ATTR_THROUGHPUT_OVERRIDE]) { |
| 935 | attr = info->attrs[BATADV_ATTR_THROUGHPUT_OVERRIDE]; |
| 936 | |
| 937 | atomic_set(&hard_iface->bat_v.throughput_override, |
| 938 | nla_get_u32(attr)); |
| 939 | } |
Sven Eckelmann | a108008 | 2018-11-23 13:30:04 +0100 | [diff] [blame] | 940 | #endif /* CONFIG_BATMAN_ADV_BATMAN_V */ |
| 941 | |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 942 | batadv_netlink_notify_hardif(bat_priv, hard_iface); |
| 943 | |
| 944 | return 0; |
| 945 | } |
| 946 | |
| 947 | /** |
| 948 | * batadv_netlink_dump_hardif() - Dump all hard interface into a messages |
Matthias Schiffer | b60620c | 2016-07-03 13:31:36 +0200 | [diff] [blame] | 949 | * @msg: Netlink message to dump into |
| 950 | * @cb: Parameters from query |
| 951 | * |
| 952 | * Return: error code, or length of reply message on success |
| 953 | */ |
| 954 | static int |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 955 | batadv_netlink_dump_hardif(struct sk_buff *msg, struct netlink_callback *cb) |
Matthias Schiffer | b60620c | 2016-07-03 13:31:36 +0200 | [diff] [blame] | 956 | { |
| 957 | struct net *net = sock_net(cb->skb->sk); |
| 958 | struct net_device *soft_iface; |
| 959 | struct batadv_hard_iface *hard_iface; |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 960 | struct batadv_priv *bat_priv; |
Matthias Schiffer | b60620c | 2016-07-03 13:31:36 +0200 | [diff] [blame] | 961 | int ifindex; |
| 962 | int portid = NETLINK_CB(cb->skb).portid; |
Matthias Schiffer | b60620c | 2016-07-03 13:31:36 +0200 | [diff] [blame] | 963 | int skip = cb->args[0]; |
| 964 | int i = 0; |
| 965 | |
| 966 | ifindex = batadv_netlink_get_ifindex(cb->nlh, |
| 967 | BATADV_ATTR_MESH_IFINDEX); |
| 968 | if (!ifindex) |
| 969 | return -EINVAL; |
| 970 | |
| 971 | soft_iface = dev_get_by_index(net, ifindex); |
| 972 | if (!soft_iface) |
| 973 | return -ENODEV; |
| 974 | |
| 975 | if (!batadv_softif_is_valid(soft_iface)) { |
| 976 | dev_put(soft_iface); |
| 977 | return -ENODEV; |
| 978 | } |
| 979 | |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 980 | bat_priv = netdev_priv(soft_iface); |
| 981 | |
Sven Eckelmann | fb69be6 | 2018-10-30 22:01:24 +0100 | [diff] [blame] | 982 | rtnl_lock(); |
| 983 | cb->seq = batadv_hardif_generation << 1 | 1; |
Matthias Schiffer | b60620c | 2016-07-03 13:31:36 +0200 | [diff] [blame] | 984 | |
Sven Eckelmann | fb69be6 | 2018-10-30 22:01:24 +0100 | [diff] [blame] | 985 | list_for_each_entry(hard_iface, &batadv_hardif_list, list) { |
Matthias Schiffer | b60620c | 2016-07-03 13:31:36 +0200 | [diff] [blame] | 986 | if (hard_iface->soft_iface != soft_iface) |
| 987 | continue; |
| 988 | |
| 989 | if (i++ < skip) |
| 990 | continue; |
| 991 | |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 992 | if (batadv_netlink_hardif_fill(msg, bat_priv, hard_iface, |
| 993 | BATADV_CMD_GET_HARDIF, |
| 994 | portid, cb->nlh->nlmsg_seq, |
| 995 | NLM_F_MULTI, cb)) { |
Matthias Schiffer | b60620c | 2016-07-03 13:31:36 +0200 | [diff] [blame] | 996 | i--; |
| 997 | break; |
| 998 | } |
| 999 | } |
| 1000 | |
Sven Eckelmann | fb69be6 | 2018-10-30 22:01:24 +0100 | [diff] [blame] | 1001 | rtnl_unlock(); |
Matthias Schiffer | b60620c | 2016-07-03 13:31:36 +0200 | [diff] [blame] | 1002 | |
| 1003 | dev_put(soft_iface); |
| 1004 | |
| 1005 | cb->args[0] = i; |
| 1006 | |
| 1007 | return msg->len; |
| 1008 | } |
| 1009 | |
Sven Eckelmann | c4a7a8d | 2018-11-23 12:00:28 +0100 | [diff] [blame] | 1010 | /** |
Sven Eckelmann | 49e7e37 | 2018-11-23 12:41:08 +0100 | [diff] [blame] | 1011 | * batadv_netlink_vlan_fill() - Fill message with vlan attributes |
| 1012 | * @msg: Netlink message to dump into |
| 1013 | * @bat_priv: the bat priv with all the soft interface information |
| 1014 | * @vlan: vlan which was modified |
| 1015 | * @cmd: type of message to generate |
| 1016 | * @portid: Port making netlink request |
| 1017 | * @seq: sequence number for message |
| 1018 | * @flags: Additional flags for message |
| 1019 | * |
| 1020 | * Return: 0 on success or negative error number in case of failure |
| 1021 | */ |
| 1022 | static int batadv_netlink_vlan_fill(struct sk_buff *msg, |
| 1023 | struct batadv_priv *bat_priv, |
| 1024 | struct batadv_softif_vlan *vlan, |
| 1025 | enum batadv_nl_commands cmd, |
| 1026 | u32 portid, u32 seq, int flags) |
| 1027 | { |
| 1028 | void *hdr; |
| 1029 | |
| 1030 | hdr = genlmsg_put(msg, portid, seq, &batadv_netlink_family, flags, cmd); |
| 1031 | if (!hdr) |
| 1032 | return -ENOBUFS; |
| 1033 | |
| 1034 | if (nla_put_u32(msg, BATADV_ATTR_MESH_IFINDEX, |
| 1035 | bat_priv->soft_iface->ifindex)) |
| 1036 | goto nla_put_failure; |
| 1037 | |
| 1038 | if (nla_put_u32(msg, BATADV_ATTR_VLANID, vlan->vid & VLAN_VID_MASK)) |
| 1039 | goto nla_put_failure; |
| 1040 | |
Sven Eckelmann | e43d16b | 2018-11-23 12:51:55 +0100 | [diff] [blame] | 1041 | if (nla_put_u8(msg, BATADV_ATTR_AP_ISOLATION_ENABLED, |
| 1042 | !!atomic_read(&vlan->ap_isolation))) |
| 1043 | goto nla_put_failure; |
| 1044 | |
Sven Eckelmann | 49e7e37 | 2018-11-23 12:41:08 +0100 | [diff] [blame] | 1045 | genlmsg_end(msg, hdr); |
| 1046 | return 0; |
| 1047 | |
| 1048 | nla_put_failure: |
| 1049 | genlmsg_cancel(msg, hdr); |
| 1050 | return -EMSGSIZE; |
| 1051 | } |
| 1052 | |
| 1053 | /** |
| 1054 | * batadv_netlink_notify_vlan() - send vlan attributes to listener |
| 1055 | * @bat_priv: the bat priv with all the soft interface information |
| 1056 | * @vlan: vlan which was modified |
| 1057 | * |
| 1058 | * Return: 0 on success, < 0 on error |
| 1059 | */ |
Sven Eckelmann | 7e6f461 | 2018-11-23 16:07:12 +0100 | [diff] [blame] | 1060 | int batadv_netlink_notify_vlan(struct batadv_priv *bat_priv, |
| 1061 | struct batadv_softif_vlan *vlan) |
Sven Eckelmann | 49e7e37 | 2018-11-23 12:41:08 +0100 | [diff] [blame] | 1062 | { |
| 1063 | struct sk_buff *msg; |
| 1064 | int ret; |
| 1065 | |
| 1066 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); |
| 1067 | if (!msg) |
| 1068 | return -ENOMEM; |
| 1069 | |
| 1070 | ret = batadv_netlink_vlan_fill(msg, bat_priv, vlan, |
| 1071 | BATADV_CMD_SET_VLAN, 0, 0, 0); |
| 1072 | if (ret < 0) { |
| 1073 | nlmsg_free(msg); |
| 1074 | return ret; |
| 1075 | } |
| 1076 | |
| 1077 | genlmsg_multicast_netns(&batadv_netlink_family, |
| 1078 | dev_net(bat_priv->soft_iface), msg, 0, |
| 1079 | BATADV_NL_MCGRP_CONFIG, GFP_KERNEL); |
| 1080 | |
| 1081 | return 0; |
| 1082 | } |
| 1083 | |
| 1084 | /** |
| 1085 | * batadv_netlink_get_vlan() - Get vlan attributes |
| 1086 | * @skb: Netlink message with request data |
| 1087 | * @info: receiver information |
| 1088 | * |
| 1089 | * Return: 0 on success or negative error number in case of failure |
| 1090 | */ |
| 1091 | static int batadv_netlink_get_vlan(struct sk_buff *skb, struct genl_info *info) |
| 1092 | { |
| 1093 | struct batadv_softif_vlan *vlan = info->user_ptr[1]; |
| 1094 | struct batadv_priv *bat_priv = info->user_ptr[0]; |
| 1095 | struct sk_buff *msg; |
| 1096 | int ret; |
| 1097 | |
| 1098 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); |
| 1099 | if (!msg) |
| 1100 | return -ENOMEM; |
| 1101 | |
| 1102 | ret = batadv_netlink_vlan_fill(msg, bat_priv, vlan, BATADV_CMD_GET_VLAN, |
| 1103 | info->snd_portid, info->snd_seq, 0); |
| 1104 | if (ret < 0) { |
| 1105 | nlmsg_free(msg); |
| 1106 | return ret; |
| 1107 | } |
| 1108 | |
| 1109 | ret = genlmsg_reply(msg, info); |
| 1110 | |
| 1111 | return ret; |
| 1112 | } |
| 1113 | |
| 1114 | /** |
| 1115 | * batadv_netlink_set_vlan() - Get vlan attributes |
| 1116 | * @skb: Netlink message with request data |
| 1117 | * @info: receiver information |
| 1118 | * |
| 1119 | * Return: 0 on success or negative error number in case of failure |
| 1120 | */ |
| 1121 | static int batadv_netlink_set_vlan(struct sk_buff *skb, struct genl_info *info) |
| 1122 | { |
| 1123 | struct batadv_softif_vlan *vlan = info->user_ptr[1]; |
| 1124 | struct batadv_priv *bat_priv = info->user_ptr[0]; |
Sven Eckelmann | e43d16b | 2018-11-23 12:51:55 +0100 | [diff] [blame] | 1125 | struct nlattr *attr; |
| 1126 | |
| 1127 | if (info->attrs[BATADV_ATTR_AP_ISOLATION_ENABLED]) { |
| 1128 | attr = info->attrs[BATADV_ATTR_AP_ISOLATION_ENABLED]; |
| 1129 | |
| 1130 | atomic_set(&vlan->ap_isolation, !!nla_get_u8(attr)); |
| 1131 | } |
Sven Eckelmann | 49e7e37 | 2018-11-23 12:41:08 +0100 | [diff] [blame] | 1132 | |
| 1133 | batadv_netlink_notify_vlan(bat_priv, vlan); |
| 1134 | |
| 1135 | return 0; |
| 1136 | } |
| 1137 | |
| 1138 | /** |
Sven Eckelmann | c4a7a8d | 2018-11-23 12:00:28 +0100 | [diff] [blame] | 1139 | * batadv_get_softif_from_info() - Retrieve soft interface from genl attributes |
| 1140 | * @net: the applicable net namespace |
| 1141 | * @info: receiver information |
| 1142 | * |
| 1143 | * Return: Pointer to soft interface (with increased refcnt) on success, error |
| 1144 | * pointer on error |
| 1145 | */ |
| 1146 | static struct net_device * |
| 1147 | batadv_get_softif_from_info(struct net *net, struct genl_info *info) |
| 1148 | { |
| 1149 | struct net_device *soft_iface; |
| 1150 | int ifindex; |
| 1151 | |
| 1152 | if (!info->attrs[BATADV_ATTR_MESH_IFINDEX]) |
| 1153 | return ERR_PTR(-EINVAL); |
| 1154 | |
| 1155 | ifindex = nla_get_u32(info->attrs[BATADV_ATTR_MESH_IFINDEX]); |
| 1156 | |
| 1157 | soft_iface = dev_get_by_index(net, ifindex); |
| 1158 | if (!soft_iface) |
| 1159 | return ERR_PTR(-ENODEV); |
| 1160 | |
| 1161 | if (!batadv_softif_is_valid(soft_iface)) |
| 1162 | goto err_put_softif; |
| 1163 | |
| 1164 | return soft_iface; |
| 1165 | |
| 1166 | err_put_softif: |
| 1167 | dev_put(soft_iface); |
| 1168 | |
| 1169 | return ERR_PTR(-EINVAL); |
| 1170 | } |
| 1171 | |
| 1172 | /** |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 1173 | * batadv_get_hardif_from_info() - Retrieve hardif from genl attributes |
| 1174 | * @bat_priv: the bat priv with all the soft interface information |
| 1175 | * @net: the applicable net namespace |
| 1176 | * @info: receiver information |
| 1177 | * |
| 1178 | * Return: Pointer to hard interface (with increased refcnt) on success, error |
| 1179 | * pointer on error |
| 1180 | */ |
| 1181 | static struct batadv_hard_iface * |
| 1182 | batadv_get_hardif_from_info(struct batadv_priv *bat_priv, struct net *net, |
| 1183 | struct genl_info *info) |
| 1184 | { |
| 1185 | struct batadv_hard_iface *hard_iface; |
| 1186 | struct net_device *hard_dev; |
| 1187 | unsigned int hardif_index; |
| 1188 | |
| 1189 | if (!info->attrs[BATADV_ATTR_HARD_IFINDEX]) |
| 1190 | return ERR_PTR(-EINVAL); |
| 1191 | |
| 1192 | hardif_index = nla_get_u32(info->attrs[BATADV_ATTR_HARD_IFINDEX]); |
| 1193 | |
| 1194 | hard_dev = dev_get_by_index(net, hardif_index); |
| 1195 | if (!hard_dev) |
| 1196 | return ERR_PTR(-ENODEV); |
| 1197 | |
| 1198 | hard_iface = batadv_hardif_get_by_netdev(hard_dev); |
| 1199 | if (!hard_iface) |
| 1200 | goto err_put_harddev; |
| 1201 | |
| 1202 | if (hard_iface->soft_iface != bat_priv->soft_iface) |
| 1203 | goto err_put_hardif; |
| 1204 | |
| 1205 | /* hard_dev is referenced by hard_iface and not needed here */ |
| 1206 | dev_put(hard_dev); |
| 1207 | |
| 1208 | return hard_iface; |
| 1209 | |
| 1210 | err_put_hardif: |
| 1211 | batadv_hardif_put(hard_iface); |
| 1212 | err_put_harddev: |
| 1213 | dev_put(hard_dev); |
| 1214 | |
| 1215 | return ERR_PTR(-EINVAL); |
| 1216 | } |
| 1217 | |
| 1218 | /** |
Sven Eckelmann | 49e7e37 | 2018-11-23 12:41:08 +0100 | [diff] [blame] | 1219 | * batadv_get_vlan_from_info() - Retrieve vlan from genl attributes |
| 1220 | * @bat_priv: the bat priv with all the soft interface information |
| 1221 | * @net: the applicable net namespace |
| 1222 | * @info: receiver information |
| 1223 | * |
| 1224 | * Return: Pointer to vlan on success (with increased refcnt), error pointer |
| 1225 | * on error |
| 1226 | */ |
| 1227 | static struct batadv_softif_vlan * |
| 1228 | batadv_get_vlan_from_info(struct batadv_priv *bat_priv, struct net *net, |
| 1229 | struct genl_info *info) |
| 1230 | { |
| 1231 | struct batadv_softif_vlan *vlan; |
| 1232 | u16 vid; |
| 1233 | |
| 1234 | if (!info->attrs[BATADV_ATTR_VLANID]) |
| 1235 | return ERR_PTR(-EINVAL); |
| 1236 | |
| 1237 | vid = nla_get_u16(info->attrs[BATADV_ATTR_VLANID]); |
| 1238 | |
| 1239 | vlan = batadv_softif_vlan_get(bat_priv, vid | BATADV_VLAN_HAS_TAG); |
| 1240 | if (!vlan) |
| 1241 | return ERR_PTR(-ENOENT); |
| 1242 | |
| 1243 | return vlan; |
| 1244 | } |
| 1245 | |
| 1246 | /** |
Sven Eckelmann | c4a7a8d | 2018-11-23 12:00:28 +0100 | [diff] [blame] | 1247 | * batadv_pre_doit() - Prepare batman-adv genl doit request |
| 1248 | * @ops: requested netlink operation |
| 1249 | * @skb: Netlink message with request data |
| 1250 | * @info: receiver information |
| 1251 | * |
| 1252 | * Return: 0 on success or negative error number in case of failure |
| 1253 | */ |
| 1254 | static int batadv_pre_doit(const struct genl_ops *ops, struct sk_buff *skb, |
| 1255 | struct genl_info *info) |
| 1256 | { |
| 1257 | struct net *net = genl_info_net(info); |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 1258 | struct batadv_hard_iface *hard_iface; |
| 1259 | struct batadv_priv *bat_priv = NULL; |
Sven Eckelmann | 49e7e37 | 2018-11-23 12:41:08 +0100 | [diff] [blame] | 1260 | struct batadv_softif_vlan *vlan; |
Sven Eckelmann | c4a7a8d | 2018-11-23 12:00:28 +0100 | [diff] [blame] | 1261 | struct net_device *soft_iface; |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 1262 | u8 user_ptr1_flags; |
| 1263 | u8 mesh_dep_flags; |
| 1264 | int ret; |
| 1265 | |
Sven Eckelmann | 49e7e37 | 2018-11-23 12:41:08 +0100 | [diff] [blame] | 1266 | user_ptr1_flags = BATADV_FLAG_NEED_HARDIF | BATADV_FLAG_NEED_VLAN; |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 1267 | if (WARN_ON(hweight8(ops->internal_flags & user_ptr1_flags) > 1)) |
| 1268 | return -EINVAL; |
| 1269 | |
Sven Eckelmann | 49e7e37 | 2018-11-23 12:41:08 +0100 | [diff] [blame] | 1270 | mesh_dep_flags = BATADV_FLAG_NEED_HARDIF | BATADV_FLAG_NEED_VLAN; |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 1271 | if (WARN_ON((ops->internal_flags & mesh_dep_flags) && |
| 1272 | (~ops->internal_flags & BATADV_FLAG_NEED_MESH))) |
| 1273 | return -EINVAL; |
Sven Eckelmann | c4a7a8d | 2018-11-23 12:00:28 +0100 | [diff] [blame] | 1274 | |
| 1275 | if (ops->internal_flags & BATADV_FLAG_NEED_MESH) { |
| 1276 | soft_iface = batadv_get_softif_from_info(net, info); |
| 1277 | if (IS_ERR(soft_iface)) |
| 1278 | return PTR_ERR(soft_iface); |
| 1279 | |
| 1280 | bat_priv = netdev_priv(soft_iface); |
| 1281 | info->user_ptr[0] = bat_priv; |
| 1282 | } |
| 1283 | |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 1284 | if (ops->internal_flags & BATADV_FLAG_NEED_HARDIF) { |
| 1285 | hard_iface = batadv_get_hardif_from_info(bat_priv, net, info); |
| 1286 | if (IS_ERR(hard_iface)) { |
| 1287 | ret = PTR_ERR(hard_iface); |
| 1288 | goto err_put_softif; |
| 1289 | } |
| 1290 | |
| 1291 | info->user_ptr[1] = hard_iface; |
| 1292 | } |
| 1293 | |
Sven Eckelmann | 49e7e37 | 2018-11-23 12:41:08 +0100 | [diff] [blame] | 1294 | if (ops->internal_flags & BATADV_FLAG_NEED_VLAN) { |
| 1295 | vlan = batadv_get_vlan_from_info(bat_priv, net, info); |
| 1296 | if (IS_ERR(vlan)) { |
| 1297 | ret = PTR_ERR(vlan); |
| 1298 | goto err_put_softif; |
| 1299 | } |
| 1300 | |
| 1301 | info->user_ptr[1] = vlan; |
| 1302 | } |
| 1303 | |
Sven Eckelmann | c4a7a8d | 2018-11-23 12:00:28 +0100 | [diff] [blame] | 1304 | return 0; |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 1305 | |
| 1306 | err_put_softif: |
| 1307 | if (bat_priv) |
| 1308 | dev_put(bat_priv->soft_iface); |
| 1309 | |
| 1310 | return ret; |
Sven Eckelmann | c4a7a8d | 2018-11-23 12:00:28 +0100 | [diff] [blame] | 1311 | } |
| 1312 | |
| 1313 | /** |
| 1314 | * batadv_post_doit() - End batman-adv genl doit request |
| 1315 | * @ops: requested netlink operation |
| 1316 | * @skb: Netlink message with request data |
| 1317 | * @info: receiver information |
| 1318 | */ |
| 1319 | static void batadv_post_doit(const struct genl_ops *ops, struct sk_buff *skb, |
| 1320 | struct genl_info *info) |
| 1321 | { |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 1322 | struct batadv_hard_iface *hard_iface; |
Sven Eckelmann | 49e7e37 | 2018-11-23 12:41:08 +0100 | [diff] [blame] | 1323 | struct batadv_softif_vlan *vlan; |
Sven Eckelmann | c4a7a8d | 2018-11-23 12:00:28 +0100 | [diff] [blame] | 1324 | struct batadv_priv *bat_priv; |
| 1325 | |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 1326 | if (ops->internal_flags & BATADV_FLAG_NEED_HARDIF && |
| 1327 | info->user_ptr[1]) { |
| 1328 | hard_iface = info->user_ptr[1]; |
| 1329 | |
| 1330 | batadv_hardif_put(hard_iface); |
| 1331 | } |
| 1332 | |
Sven Eckelmann | 49e7e37 | 2018-11-23 12:41:08 +0100 | [diff] [blame] | 1333 | if (ops->internal_flags & BATADV_FLAG_NEED_VLAN && info->user_ptr[1]) { |
| 1334 | vlan = info->user_ptr[1]; |
| 1335 | batadv_softif_vlan_put(vlan); |
| 1336 | } |
| 1337 | |
Sven Eckelmann | c4a7a8d | 2018-11-23 12:00:28 +0100 | [diff] [blame] | 1338 | if (ops->internal_flags & BATADV_FLAG_NEED_MESH && info->user_ptr[0]) { |
| 1339 | bat_priv = info->user_ptr[0]; |
| 1340 | dev_put(bat_priv->soft_iface); |
| 1341 | } |
| 1342 | } |
| 1343 | |
Sven Eckelmann | ce1a21d | 2016-10-18 15:57:36 +0200 | [diff] [blame] | 1344 | static const struct genl_ops batadv_netlink_ops[] = { |
Matthias Schiffer | 5da0aef | 2016-05-09 18:41:09 +0200 | [diff] [blame] | 1345 | { |
Sven Eckelmann | 6004051 | 2018-11-23 12:14:56 +0100 | [diff] [blame] | 1346 | .cmd = BATADV_CMD_GET_MESH, |
Johannes Berg | ef6243a | 2019-04-26 14:07:31 +0200 | [diff] [blame] | 1347 | .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, |
Sven Eckelmann | 6004051 | 2018-11-23 12:14:56 +0100 | [diff] [blame] | 1348 | /* can be retrieved by unprivileged users */ |
Sven Eckelmann | 6004051 | 2018-11-23 12:14:56 +0100 | [diff] [blame] | 1349 | .doit = batadv_netlink_get_mesh, |
| 1350 | .internal_flags = BATADV_FLAG_NEED_MESH, |
Matthias Schiffer | 5da0aef | 2016-05-09 18:41:09 +0200 | [diff] [blame] | 1351 | }, |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 1352 | { |
| 1353 | .cmd = BATADV_CMD_TP_METER, |
Johannes Berg | ef6243a | 2019-04-26 14:07:31 +0200 | [diff] [blame] | 1354 | .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 1355 | .flags = GENL_ADMIN_PERM, |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 1356 | .doit = batadv_netlink_tp_meter_start, |
Sven Eckelmann | c4a7a8d | 2018-11-23 12:00:28 +0100 | [diff] [blame] | 1357 | .internal_flags = BATADV_FLAG_NEED_MESH, |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 1358 | }, |
| 1359 | { |
| 1360 | .cmd = BATADV_CMD_TP_METER_CANCEL, |
Johannes Berg | ef6243a | 2019-04-26 14:07:31 +0200 | [diff] [blame] | 1361 | .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 1362 | .flags = GENL_ADMIN_PERM, |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 1363 | .doit = batadv_netlink_tp_meter_cancel, |
Sven Eckelmann | c4a7a8d | 2018-11-23 12:00:28 +0100 | [diff] [blame] | 1364 | .internal_flags = BATADV_FLAG_NEED_MESH, |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 1365 | }, |
Matthias Schiffer | 07a3061 | 2016-07-03 13:31:35 +0200 | [diff] [blame] | 1366 | { |
| 1367 | .cmd = BATADV_CMD_GET_ROUTING_ALGOS, |
Johannes Berg | ef6243a | 2019-04-26 14:07:31 +0200 | [diff] [blame] | 1368 | .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, |
Matthias Schiffer | 07a3061 | 2016-07-03 13:31:35 +0200 | [diff] [blame] | 1369 | .flags = GENL_ADMIN_PERM, |
Matthias Schiffer | 07a3061 | 2016-07-03 13:31:35 +0200 | [diff] [blame] | 1370 | .dumpit = batadv_algo_dump, |
| 1371 | }, |
Matthias Schiffer | b60620c | 2016-07-03 13:31:36 +0200 | [diff] [blame] | 1372 | { |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 1373 | .cmd = BATADV_CMD_GET_HARDIF, |
Johannes Berg | ef6243a | 2019-04-26 14:07:31 +0200 | [diff] [blame] | 1374 | .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 1375 | /* can be retrieved by unprivileged users */ |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 1376 | .dumpit = batadv_netlink_dump_hardif, |
| 1377 | .doit = batadv_netlink_get_hardif, |
| 1378 | .internal_flags = BATADV_FLAG_NEED_MESH | |
| 1379 | BATADV_FLAG_NEED_HARDIF, |
Matthias Schiffer | b60620c | 2016-07-03 13:31:36 +0200 | [diff] [blame] | 1380 | }, |
Matthias Schiffer | d34f055 | 2016-07-03 13:31:37 +0200 | [diff] [blame] | 1381 | { |
| 1382 | .cmd = BATADV_CMD_GET_TRANSTABLE_LOCAL, |
Johannes Berg | ef6243a | 2019-04-26 14:07:31 +0200 | [diff] [blame] | 1383 | .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, |
Matthias Schiffer | d34f055 | 2016-07-03 13:31:37 +0200 | [diff] [blame] | 1384 | .flags = GENL_ADMIN_PERM, |
Matthias Schiffer | d34f055 | 2016-07-03 13:31:37 +0200 | [diff] [blame] | 1385 | .dumpit = batadv_tt_local_dump, |
| 1386 | }, |
| 1387 | { |
| 1388 | .cmd = BATADV_CMD_GET_TRANSTABLE_GLOBAL, |
Johannes Berg | ef6243a | 2019-04-26 14:07:31 +0200 | [diff] [blame] | 1389 | .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, |
Matthias Schiffer | d34f055 | 2016-07-03 13:31:37 +0200 | [diff] [blame] | 1390 | .flags = GENL_ADMIN_PERM, |
Matthias Schiffer | d34f055 | 2016-07-03 13:31:37 +0200 | [diff] [blame] | 1391 | .dumpit = batadv_tt_global_dump, |
| 1392 | }, |
Matthias Schiffer | 85cf8c8 | 2016-07-03 13:31:39 +0200 | [diff] [blame] | 1393 | { |
| 1394 | .cmd = BATADV_CMD_GET_ORIGINATORS, |
Johannes Berg | ef6243a | 2019-04-26 14:07:31 +0200 | [diff] [blame] | 1395 | .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, |
Matthias Schiffer | 85cf8c8 | 2016-07-03 13:31:39 +0200 | [diff] [blame] | 1396 | .flags = GENL_ADMIN_PERM, |
Matthias Schiffer | 85cf8c8 | 2016-07-03 13:31:39 +0200 | [diff] [blame] | 1397 | .dumpit = batadv_orig_dump, |
| 1398 | }, |
| 1399 | { |
| 1400 | .cmd = BATADV_CMD_GET_NEIGHBORS, |
Johannes Berg | ef6243a | 2019-04-26 14:07:31 +0200 | [diff] [blame] | 1401 | .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, |
Matthias Schiffer | 85cf8c8 | 2016-07-03 13:31:39 +0200 | [diff] [blame] | 1402 | .flags = GENL_ADMIN_PERM, |
Matthias Schiffer | 85cf8c8 | 2016-07-03 13:31:39 +0200 | [diff] [blame] | 1403 | .dumpit = batadv_hardif_neigh_dump, |
| 1404 | }, |
Sven Eckelmann | d7129da | 2016-07-03 13:31:42 +0200 | [diff] [blame] | 1405 | { |
| 1406 | .cmd = BATADV_CMD_GET_GATEWAYS, |
Johannes Berg | ef6243a | 2019-04-26 14:07:31 +0200 | [diff] [blame] | 1407 | .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, |
Sven Eckelmann | d7129da | 2016-07-03 13:31:42 +0200 | [diff] [blame] | 1408 | .flags = GENL_ADMIN_PERM, |
Sven Eckelmann | d7129da | 2016-07-03 13:31:42 +0200 | [diff] [blame] | 1409 | .dumpit = batadv_gw_dump, |
| 1410 | }, |
Andrew Lunn | 04f3f5b | 2016-07-03 13:31:45 +0200 | [diff] [blame] | 1411 | { |
| 1412 | .cmd = BATADV_CMD_GET_BLA_CLAIM, |
Johannes Berg | ef6243a | 2019-04-26 14:07:31 +0200 | [diff] [blame] | 1413 | .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, |
Andrew Lunn | 04f3f5b | 2016-07-03 13:31:45 +0200 | [diff] [blame] | 1414 | .flags = GENL_ADMIN_PERM, |
Andrew Lunn | 04f3f5b | 2016-07-03 13:31:45 +0200 | [diff] [blame] | 1415 | .dumpit = batadv_bla_claim_dump, |
| 1416 | }, |
Simon Wunderlich | ea4152e | 2016-07-03 13:31:47 +0200 | [diff] [blame] | 1417 | { |
| 1418 | .cmd = BATADV_CMD_GET_BLA_BACKBONE, |
Johannes Berg | ef6243a | 2019-04-26 14:07:31 +0200 | [diff] [blame] | 1419 | .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, |
Simon Wunderlich | ea4152e | 2016-07-03 13:31:47 +0200 | [diff] [blame] | 1420 | .flags = GENL_ADMIN_PERM, |
Simon Wunderlich | ea4152e | 2016-07-03 13:31:47 +0200 | [diff] [blame] | 1421 | .dumpit = batadv_bla_backbone_dump, |
| 1422 | }, |
Linus Lüssing | 41aeefc | 2018-03-13 11:41:12 +0100 | [diff] [blame] | 1423 | { |
| 1424 | .cmd = BATADV_CMD_GET_DAT_CACHE, |
Johannes Berg | ef6243a | 2019-04-26 14:07:31 +0200 | [diff] [blame] | 1425 | .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, |
Linus Lüssing | 41aeefc | 2018-03-13 11:41:12 +0100 | [diff] [blame] | 1426 | .flags = GENL_ADMIN_PERM, |
Linus Lüssing | 41aeefc | 2018-03-13 11:41:12 +0100 | [diff] [blame] | 1427 | .dumpit = batadv_dat_cache_dump, |
| 1428 | }, |
Linus Lüssing | 53dd9a6 | 2018-03-13 11:41:13 +0100 | [diff] [blame] | 1429 | { |
| 1430 | .cmd = BATADV_CMD_GET_MCAST_FLAGS, |
Johannes Berg | ef6243a | 2019-04-26 14:07:31 +0200 | [diff] [blame] | 1431 | .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, |
Linus Lüssing | 53dd9a6 | 2018-03-13 11:41:13 +0100 | [diff] [blame] | 1432 | .flags = GENL_ADMIN_PERM, |
Linus Lüssing | 53dd9a6 | 2018-03-13 11:41:13 +0100 | [diff] [blame] | 1433 | .dumpit = batadv_mcast_flags_dump, |
| 1434 | }, |
Sven Eckelmann | 6004051 | 2018-11-23 12:14:56 +0100 | [diff] [blame] | 1435 | { |
| 1436 | .cmd = BATADV_CMD_SET_MESH, |
Johannes Berg | ef6243a | 2019-04-26 14:07:31 +0200 | [diff] [blame] | 1437 | .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, |
Sven Eckelmann | 6004051 | 2018-11-23 12:14:56 +0100 | [diff] [blame] | 1438 | .flags = GENL_ADMIN_PERM, |
Sven Eckelmann | 6004051 | 2018-11-23 12:14:56 +0100 | [diff] [blame] | 1439 | .doit = batadv_netlink_set_mesh, |
| 1440 | .internal_flags = BATADV_FLAG_NEED_MESH, |
| 1441 | }, |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 1442 | { |
| 1443 | .cmd = BATADV_CMD_SET_HARDIF, |
Johannes Berg | ef6243a | 2019-04-26 14:07:31 +0200 | [diff] [blame] | 1444 | .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 1445 | .flags = GENL_ADMIN_PERM, |
Sven Eckelmann | 5c55a40 | 2018-11-23 12:33:17 +0100 | [diff] [blame] | 1446 | .doit = batadv_netlink_set_hardif, |
| 1447 | .internal_flags = BATADV_FLAG_NEED_MESH | |
| 1448 | BATADV_FLAG_NEED_HARDIF, |
| 1449 | }, |
Sven Eckelmann | 49e7e37 | 2018-11-23 12:41:08 +0100 | [diff] [blame] | 1450 | { |
| 1451 | .cmd = BATADV_CMD_GET_VLAN, |
Johannes Berg | ef6243a | 2019-04-26 14:07:31 +0200 | [diff] [blame] | 1452 | .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, |
Sven Eckelmann | 49e7e37 | 2018-11-23 12:41:08 +0100 | [diff] [blame] | 1453 | /* can be retrieved by unprivileged users */ |
Sven Eckelmann | 49e7e37 | 2018-11-23 12:41:08 +0100 | [diff] [blame] | 1454 | .doit = batadv_netlink_get_vlan, |
| 1455 | .internal_flags = BATADV_FLAG_NEED_MESH | |
| 1456 | BATADV_FLAG_NEED_VLAN, |
| 1457 | }, |
| 1458 | { |
| 1459 | .cmd = BATADV_CMD_SET_VLAN, |
Johannes Berg | ef6243a | 2019-04-26 14:07:31 +0200 | [diff] [blame] | 1460 | .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, |
Sven Eckelmann | 49e7e37 | 2018-11-23 12:41:08 +0100 | [diff] [blame] | 1461 | .flags = GENL_ADMIN_PERM, |
Sven Eckelmann | 49e7e37 | 2018-11-23 12:41:08 +0100 | [diff] [blame] | 1462 | .doit = batadv_netlink_set_vlan, |
| 1463 | .internal_flags = BATADV_FLAG_NEED_MESH | |
| 1464 | BATADV_FLAG_NEED_VLAN, |
| 1465 | }, |
Matthias Schiffer | 09748a2 | 2016-05-09 18:41:08 +0200 | [diff] [blame] | 1466 | }; |
| 1467 | |
Johannes Berg | 56989f6 | 2016-10-24 14:40:05 +0200 | [diff] [blame] | 1468 | struct genl_family batadv_netlink_family __ro_after_init = { |
Johannes Berg | 489111e | 2016-10-24 14:40:03 +0200 | [diff] [blame] | 1469 | .hdrsize = 0, |
| 1470 | .name = BATADV_NL_NAME, |
| 1471 | .version = 1, |
| 1472 | .maxattr = BATADV_ATTR_MAX, |
Johannes Berg | 3b0f31f | 2019-03-21 22:51:02 +0100 | [diff] [blame] | 1473 | .policy = batadv_netlink_policy, |
Johannes Berg | 489111e | 2016-10-24 14:40:03 +0200 | [diff] [blame] | 1474 | .netnsok = true, |
Sven Eckelmann | c4a7a8d | 2018-11-23 12:00:28 +0100 | [diff] [blame] | 1475 | .pre_doit = batadv_pre_doit, |
| 1476 | .post_doit = batadv_post_doit, |
Johannes Berg | 489111e | 2016-10-24 14:40:03 +0200 | [diff] [blame] | 1477 | .module = THIS_MODULE, |
| 1478 | .ops = batadv_netlink_ops, |
| 1479 | .n_ops = ARRAY_SIZE(batadv_netlink_ops), |
| 1480 | .mcgrps = batadv_netlink_mcgrps, |
| 1481 | .n_mcgrps = ARRAY_SIZE(batadv_netlink_mcgrps), |
| 1482 | }; |
| 1483 | |
Matthias Schiffer | 09748a2 | 2016-05-09 18:41:08 +0200 | [diff] [blame] | 1484 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 1485 | * batadv_netlink_register() - register batadv genl netlink family |
Matthias Schiffer | 09748a2 | 2016-05-09 18:41:08 +0200 | [diff] [blame] | 1486 | */ |
| 1487 | void __init batadv_netlink_register(void) |
| 1488 | { |
| 1489 | int ret; |
| 1490 | |
Johannes Berg | 489111e | 2016-10-24 14:40:03 +0200 | [diff] [blame] | 1491 | ret = genl_register_family(&batadv_netlink_family); |
Matthias Schiffer | 09748a2 | 2016-05-09 18:41:08 +0200 | [diff] [blame] | 1492 | if (ret) |
| 1493 | pr_warn("unable to register netlink family"); |
| 1494 | } |
| 1495 | |
| 1496 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 1497 | * batadv_netlink_unregister() - unregister batadv genl netlink family |
Matthias Schiffer | 09748a2 | 2016-05-09 18:41:08 +0200 | [diff] [blame] | 1498 | */ |
| 1499 | void batadv_netlink_unregister(void) |
| 1500 | { |
| 1501 | genl_unregister_family(&batadv_netlink_family); |
| 1502 | } |