Sven Eckelmann | 0046b04 | 2016-01-01 00:01:03 +0100 | [diff] [blame] | 1 | /* Copyright (C) 2007-2016 B.A.T.M.A.N. contributors: |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 2 | * |
| 3 | * Marek Lindner, Simon Wunderlich |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of version 2 of the GNU General Public |
| 7 | * License as published by the Free Software Foundation. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, but |
| 10 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 12 | * General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
Antonio Quartulli | ebf38fb | 2013-11-03 20:40:48 +0100 | [diff] [blame] | 15 | * along with this program; if not, see <http://www.gnu.org/licenses/>. |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 16 | */ |
| 17 | |
Sven Eckelmann | a2d0816 | 2016-05-15 11:07:46 +0200 | [diff] [blame] | 18 | #include "bat_iv_ogm.h" |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 19 | #include "main.h" |
| 20 | |
| 21 | #include <linux/atomic.h> |
| 22 | #include <linux/bitmap.h> |
| 23 | #include <linux/bitops.h> |
| 24 | #include <linux/bug.h> |
| 25 | #include <linux/byteorder/generic.h> |
| 26 | #include <linux/cache.h> |
| 27 | #include <linux/errno.h> |
| 28 | #include <linux/etherdevice.h> |
| 29 | #include <linux/fs.h> |
| 30 | #include <linux/if_ether.h> |
| 31 | #include <linux/init.h> |
| 32 | #include <linux/jiffies.h> |
Antonio Quartulli | f0d9725 | 2016-05-03 01:45:34 +0800 | [diff] [blame] | 33 | #include <linux/kernel.h> |
Sven Eckelmann | 77ae32e | 2016-01-16 10:29:53 +0100 | [diff] [blame] | 34 | #include <linux/kref.h> |
Sven Eckelmann | fcafa5e | 2016-05-15 11:07:42 +0200 | [diff] [blame] | 35 | #include <linux/list.h> |
Sven Eckelmann | 64ae7445 | 2016-02-22 22:56:34 +0100 | [diff] [blame] | 36 | #include <linux/lockdep.h> |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 37 | #include <linux/netdevice.h> |
Matthias Schiffer | 024f99c | 2016-07-03 13:31:40 +0200 | [diff] [blame] | 38 | #include <linux/netlink.h> |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 39 | #include <linux/pkt_sched.h> |
| 40 | #include <linux/printk.h> |
| 41 | #include <linux/random.h> |
| 42 | #include <linux/rculist.h> |
| 43 | #include <linux/rcupdate.h> |
| 44 | #include <linux/seq_file.h> |
| 45 | #include <linux/skbuff.h> |
| 46 | #include <linux/slab.h> |
| 47 | #include <linux/spinlock.h> |
| 48 | #include <linux/stddef.h> |
| 49 | #include <linux/string.h> |
| 50 | #include <linux/types.h> |
| 51 | #include <linux/workqueue.h> |
Matthias Schiffer | 024f99c | 2016-07-03 13:31:40 +0200 | [diff] [blame] | 52 | #include <net/genetlink.h> |
| 53 | #include <net/netlink.h> |
| 54 | #include <uapi/linux/batman_adv.h> |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 55 | |
Sven Eckelmann | a2d0816 | 2016-05-15 11:07:46 +0200 | [diff] [blame] | 56 | #include "bat_algo.h" |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 57 | #include "bitarray.h" |
Antonio Quartulli | 34d99cf | 2016-07-03 12:46:33 +0200 | [diff] [blame] | 58 | #include "gateway_client.h" |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 59 | #include "hard-interface.h" |
| 60 | #include "hash.h" |
Sven Eckelmann | ba41208 | 2016-05-15 23:48:31 +0200 | [diff] [blame] | 61 | #include "log.h" |
Matthias Schiffer | 024f99c | 2016-07-03 13:31:40 +0200 | [diff] [blame] | 62 | #include "netlink.h" |
Martin Hundebøll | d56b170 | 2013-01-25 11:12:39 +0100 | [diff] [blame] | 63 | #include "network-coding.h" |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 64 | #include "originator.h" |
| 65 | #include "packet.h" |
| 66 | #include "routing.h" |
| 67 | #include "send.h" |
| 68 | #include "translation-table.h" |
Markus Pargmann | 1f8dce4 | 2016-05-15 11:07:43 +0200 | [diff] [blame] | 69 | #include "tvlv.h" |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 70 | |
Antonio Quartulli | f0d9725 | 2016-05-03 01:45:34 +0800 | [diff] [blame] | 71 | static void batadv_iv_send_outstanding_bat_ogm_packet(struct work_struct *work); |
| 72 | |
Antonio Quartulli | 791c2a2 | 2013-08-17 12:44:44 +0200 | [diff] [blame] | 73 | /** |
Martin Hundebøll | 95298a9 | 2014-07-15 09:41:05 +0200 | [diff] [blame] | 74 | * enum batadv_dup_status - duplicate status |
Markus Pargmann | 9f52ee1 | 2014-12-26 12:41:34 +0100 | [diff] [blame] | 75 | * @BATADV_NO_DUP: the packet is no duplicate |
Antonio Quartulli | 791c2a2 | 2013-08-17 12:44:44 +0200 | [diff] [blame] | 76 | * @BATADV_ORIG_DUP: OGM is a duplicate in the originator (but not for the |
| 77 | * neighbor) |
| 78 | * @BATADV_NEIGH_DUP: OGM is a duplicate for the neighbor |
| 79 | * @BATADV_PROTECTED: originator is currently protected (after reboot) |
| 80 | */ |
| 81 | enum batadv_dup_status { |
| 82 | BATADV_NO_DUP = 0, |
| 83 | BATADV_ORIG_DUP, |
| 84 | BATADV_NEIGH_DUP, |
| 85 | BATADV_PROTECTED, |
| 86 | }; |
| 87 | |
Antonio Quartulli | 24a5dee | 2013-04-08 09:38:12 +0200 | [diff] [blame] | 88 | /** |
| 89 | * batadv_ring_buffer_set - update the ring buffer with the given value |
| 90 | * @lq_recv: pointer to the ring buffer |
| 91 | * @lq_index: index to store the value at |
| 92 | * @value: value to store in the ring buffer |
| 93 | */ |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 94 | static void batadv_ring_buffer_set(u8 lq_recv[], u8 *lq_index, u8 value) |
Antonio Quartulli | 24a5dee | 2013-04-08 09:38:12 +0200 | [diff] [blame] | 95 | { |
| 96 | lq_recv[*lq_index] = value; |
| 97 | *lq_index = (*lq_index + 1) % BATADV_TQ_GLOBAL_WINDOW_SIZE; |
| 98 | } |
| 99 | |
| 100 | /** |
Markus Pargmann | d491dbb | 2014-12-26 12:41:36 +0100 | [diff] [blame] | 101 | * batadv_ring_buffer_avg - compute the average of all non-zero values stored |
Antonio Quartulli | 24a5dee | 2013-04-08 09:38:12 +0200 | [diff] [blame] | 102 | * in the given ring buffer |
| 103 | * @lq_recv: pointer to the ring buffer |
| 104 | * |
Sven Eckelmann | 62fe710 | 2015-09-15 19:00:48 +0200 | [diff] [blame] | 105 | * Return: computed average value. |
Antonio Quartulli | 24a5dee | 2013-04-08 09:38:12 +0200 | [diff] [blame] | 106 | */ |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 107 | static u8 batadv_ring_buffer_avg(const u8 lq_recv[]) |
Antonio Quartulli | 24a5dee | 2013-04-08 09:38:12 +0200 | [diff] [blame] | 108 | { |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 109 | const u8 *ptr; |
| 110 | u16 count = 0; |
| 111 | u16 i = 0; |
| 112 | u16 sum = 0; |
Antonio Quartulli | 24a5dee | 2013-04-08 09:38:12 +0200 | [diff] [blame] | 113 | |
| 114 | ptr = lq_recv; |
| 115 | |
| 116 | while (i < BATADV_TQ_GLOBAL_WINDOW_SIZE) { |
| 117 | if (*ptr != 0) { |
| 118 | count++; |
| 119 | sum += *ptr; |
| 120 | } |
| 121 | |
| 122 | i++; |
| 123 | ptr++; |
| 124 | } |
| 125 | |
| 126 | if (count == 0) |
| 127 | return 0; |
| 128 | |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 129 | return (u8)(sum / count); |
Antonio Quartulli | 24a5dee | 2013-04-08 09:38:12 +0200 | [diff] [blame] | 130 | } |
David S. Miller | d98cae64e | 2013-06-19 16:49:39 -0700 | [diff] [blame] | 131 | |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 132 | /** |
Antonio Quartulli | d0015fd | 2013-09-03 11:10:23 +0200 | [diff] [blame] | 133 | * batadv_iv_ogm_orig_free - free the private resources allocated for this |
| 134 | * orig_node |
| 135 | * @orig_node: the orig_node for which the resources have to be free'd |
| 136 | */ |
| 137 | static void batadv_iv_ogm_orig_free(struct batadv_orig_node *orig_node) |
| 138 | { |
| 139 | kfree(orig_node->bat_iv.bcast_own); |
| 140 | kfree(orig_node->bat_iv.bcast_own_sum); |
| 141 | } |
| 142 | |
| 143 | /** |
| 144 | * batadv_iv_ogm_orig_add_if - change the private structures of the orig_node to |
| 145 | * include the new hard-interface |
| 146 | * @orig_node: the orig_node that has to be changed |
| 147 | * @max_if_num: the current amount of interfaces |
| 148 | * |
Sven Eckelmann | 62fe710 | 2015-09-15 19:00:48 +0200 | [diff] [blame] | 149 | * Return: 0 on success, a negative error code otherwise. |
Antonio Quartulli | d0015fd | 2013-09-03 11:10:23 +0200 | [diff] [blame] | 150 | */ |
| 151 | static int batadv_iv_ogm_orig_add_if(struct batadv_orig_node *orig_node, |
| 152 | int max_if_num) |
| 153 | { |
| 154 | void *data_ptr; |
Antonio Quartulli | 0185dda | 2014-05-24 06:43:47 +0200 | [diff] [blame] | 155 | size_t old_size; |
Antonio Quartulli | d0015fd | 2013-09-03 11:10:23 +0200 | [diff] [blame] | 156 | int ret = -ENOMEM; |
| 157 | |
| 158 | spin_lock_bh(&orig_node->bat_iv.ogm_cnt_lock); |
| 159 | |
Antonio Quartulli | d0015fd | 2013-09-03 11:10:23 +0200 | [diff] [blame] | 160 | old_size = (max_if_num - 1) * sizeof(unsigned long) * BATADV_NUM_WORDS; |
Antonio Quartulli | 0185dda | 2014-05-24 06:43:47 +0200 | [diff] [blame] | 161 | data_ptr = kmalloc_array(max_if_num, |
| 162 | BATADV_NUM_WORDS * sizeof(unsigned long), |
| 163 | GFP_ATOMIC); |
Antonio Quartulli | d0015fd | 2013-09-03 11:10:23 +0200 | [diff] [blame] | 164 | if (!data_ptr) |
| 165 | goto unlock; |
| 166 | |
| 167 | memcpy(data_ptr, orig_node->bat_iv.bcast_own, old_size); |
| 168 | kfree(orig_node->bat_iv.bcast_own); |
| 169 | orig_node->bat_iv.bcast_own = data_ptr; |
| 170 | |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 171 | data_ptr = kmalloc_array(max_if_num, sizeof(u8), GFP_ATOMIC); |
Sven Eckelmann | f7dcdf5 | 2016-02-22 22:56:33 +0100 | [diff] [blame] | 172 | if (!data_ptr) |
Antonio Quartulli | d0015fd | 2013-09-03 11:10:23 +0200 | [diff] [blame] | 173 | goto unlock; |
Antonio Quartulli | d0015fd | 2013-09-03 11:10:23 +0200 | [diff] [blame] | 174 | |
| 175 | memcpy(data_ptr, orig_node->bat_iv.bcast_own_sum, |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 176 | (max_if_num - 1) * sizeof(u8)); |
Antonio Quartulli | d0015fd | 2013-09-03 11:10:23 +0200 | [diff] [blame] | 177 | kfree(orig_node->bat_iv.bcast_own_sum); |
| 178 | orig_node->bat_iv.bcast_own_sum = data_ptr; |
| 179 | |
| 180 | ret = 0; |
| 181 | |
| 182 | unlock: |
| 183 | spin_unlock_bh(&orig_node->bat_iv.ogm_cnt_lock); |
| 184 | |
| 185 | return ret; |
| 186 | } |
| 187 | |
| 188 | /** |
Sven Eckelmann | 64ae7445 | 2016-02-22 22:56:34 +0100 | [diff] [blame] | 189 | * batadv_iv_ogm_drop_bcast_own_entry - drop section of bcast_own |
| 190 | * @orig_node: the orig_node that has to be changed |
| 191 | * @max_if_num: the current amount of interfaces |
| 192 | * @del_if_num: the index of the interface being removed |
| 193 | */ |
| 194 | static void |
| 195 | batadv_iv_ogm_drop_bcast_own_entry(struct batadv_orig_node *orig_node, |
| 196 | int max_if_num, int del_if_num) |
| 197 | { |
| 198 | size_t chunk_size; |
| 199 | size_t if_offset; |
| 200 | void *data_ptr; |
| 201 | |
| 202 | lockdep_assert_held(&orig_node->bat_iv.ogm_cnt_lock); |
| 203 | |
| 204 | chunk_size = sizeof(unsigned long) * BATADV_NUM_WORDS; |
| 205 | data_ptr = kmalloc_array(max_if_num, chunk_size, GFP_ATOMIC); |
| 206 | if (!data_ptr) |
| 207 | /* use old buffer when new one could not be allocated */ |
| 208 | data_ptr = orig_node->bat_iv.bcast_own; |
| 209 | |
| 210 | /* copy first part */ |
| 211 | memmove(data_ptr, orig_node->bat_iv.bcast_own, del_if_num * chunk_size); |
| 212 | |
| 213 | /* copy second part */ |
| 214 | if_offset = (del_if_num + 1) * chunk_size; |
| 215 | memmove((char *)data_ptr + del_if_num * chunk_size, |
| 216 | (uint8_t *)orig_node->bat_iv.bcast_own + if_offset, |
| 217 | (max_if_num - del_if_num) * chunk_size); |
| 218 | |
| 219 | /* bcast_own was shrunk down in new buffer; free old one */ |
| 220 | if (orig_node->bat_iv.bcast_own != data_ptr) { |
| 221 | kfree(orig_node->bat_iv.bcast_own); |
| 222 | orig_node->bat_iv.bcast_own = data_ptr; |
| 223 | } |
| 224 | } |
| 225 | |
| 226 | /** |
| 227 | * batadv_iv_ogm_drop_bcast_own_sum_entry - drop section of bcast_own_sum |
| 228 | * @orig_node: the orig_node that has to be changed |
| 229 | * @max_if_num: the current amount of interfaces |
| 230 | * @del_if_num: the index of the interface being removed |
| 231 | */ |
| 232 | static void |
| 233 | batadv_iv_ogm_drop_bcast_own_sum_entry(struct batadv_orig_node *orig_node, |
| 234 | int max_if_num, int del_if_num) |
| 235 | { |
| 236 | size_t if_offset; |
| 237 | void *data_ptr; |
| 238 | |
| 239 | lockdep_assert_held(&orig_node->bat_iv.ogm_cnt_lock); |
| 240 | |
| 241 | data_ptr = kmalloc_array(max_if_num, sizeof(u8), GFP_ATOMIC); |
| 242 | if (!data_ptr) |
| 243 | /* use old buffer when new one could not be allocated */ |
| 244 | data_ptr = orig_node->bat_iv.bcast_own_sum; |
| 245 | |
| 246 | memmove(data_ptr, orig_node->bat_iv.bcast_own_sum, |
| 247 | del_if_num * sizeof(u8)); |
| 248 | |
| 249 | if_offset = (del_if_num + 1) * sizeof(u8); |
| 250 | memmove((char *)data_ptr + del_if_num * sizeof(u8), |
| 251 | orig_node->bat_iv.bcast_own_sum + if_offset, |
| 252 | (max_if_num - del_if_num) * sizeof(u8)); |
| 253 | |
| 254 | /* bcast_own_sum was shrunk down in new buffer; free old one */ |
| 255 | if (orig_node->bat_iv.bcast_own_sum != data_ptr) { |
| 256 | kfree(orig_node->bat_iv.bcast_own_sum); |
| 257 | orig_node->bat_iv.bcast_own_sum = data_ptr; |
| 258 | } |
| 259 | } |
| 260 | |
| 261 | /** |
Antonio Quartulli | d0015fd | 2013-09-03 11:10:23 +0200 | [diff] [blame] | 262 | * batadv_iv_ogm_orig_del_if - change the private structures of the orig_node to |
| 263 | * exclude the removed interface |
| 264 | * @orig_node: the orig_node that has to be changed |
| 265 | * @max_if_num: the current amount of interfaces |
| 266 | * @del_if_num: the index of the interface being removed |
| 267 | * |
Sven Eckelmann | 62fe710 | 2015-09-15 19:00:48 +0200 | [diff] [blame] | 268 | * Return: 0 on success, a negative error code otherwise. |
Antonio Quartulli | d0015fd | 2013-09-03 11:10:23 +0200 | [diff] [blame] | 269 | */ |
| 270 | static int batadv_iv_ogm_orig_del_if(struct batadv_orig_node *orig_node, |
| 271 | int max_if_num, int del_if_num) |
| 272 | { |
Antonio Quartulli | d0015fd | 2013-09-03 11:10:23 +0200 | [diff] [blame] | 273 | spin_lock_bh(&orig_node->bat_iv.ogm_cnt_lock); |
| 274 | |
Sven Eckelmann | 64ae7445 | 2016-02-22 22:56:34 +0100 | [diff] [blame] | 275 | if (max_if_num == 0) { |
Antonio Quartulli | d0015fd | 2013-09-03 11:10:23 +0200 | [diff] [blame] | 276 | kfree(orig_node->bat_iv.bcast_own); |
Sven Eckelmann | 64ae7445 | 2016-02-22 22:56:34 +0100 | [diff] [blame] | 277 | kfree(orig_node->bat_iv.bcast_own_sum); |
| 278 | orig_node->bat_iv.bcast_own = NULL; |
| 279 | orig_node->bat_iv.bcast_own_sum = NULL; |
| 280 | } else { |
| 281 | batadv_iv_ogm_drop_bcast_own_entry(orig_node, max_if_num, |
| 282 | del_if_num); |
| 283 | batadv_iv_ogm_drop_bcast_own_sum_entry(orig_node, max_if_num, |
| 284 | del_if_num); |
Antonio Quartulli | d0015fd | 2013-09-03 11:10:23 +0200 | [diff] [blame] | 285 | } |
| 286 | |
Antonio Quartulli | d0015fd | 2013-09-03 11:10:23 +0200 | [diff] [blame] | 287 | spin_unlock_bh(&orig_node->bat_iv.ogm_cnt_lock); |
| 288 | |
Sven Eckelmann | 64ae7445 | 2016-02-22 22:56:34 +0100 | [diff] [blame] | 289 | return 0; |
Antonio Quartulli | d0015fd | 2013-09-03 11:10:23 +0200 | [diff] [blame] | 290 | } |
| 291 | |
| 292 | /** |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 293 | * batadv_iv_ogm_orig_get - retrieve or create (if does not exist) an originator |
| 294 | * @bat_priv: the bat priv with all the soft interface information |
| 295 | * @addr: mac address of the originator |
| 296 | * |
Sven Eckelmann | 62fe710 | 2015-09-15 19:00:48 +0200 | [diff] [blame] | 297 | * Return: the originator object corresponding to the passed mac address or NULL |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 298 | * on failure. |
| 299 | * If the object does not exists it is created an initialised. |
| 300 | */ |
| 301 | static struct batadv_orig_node * |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 302 | batadv_iv_ogm_orig_get(struct batadv_priv *bat_priv, const u8 *addr) |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 303 | { |
| 304 | struct batadv_orig_node *orig_node; |
| 305 | int size, hash_added; |
| 306 | |
| 307 | orig_node = batadv_orig_hash_find(bat_priv, addr); |
| 308 | if (orig_node) |
| 309 | return orig_node; |
| 310 | |
| 311 | orig_node = batadv_orig_node_new(bat_priv, addr); |
| 312 | if (!orig_node) |
| 313 | return NULL; |
| 314 | |
| 315 | spin_lock_init(&orig_node->bat_iv.ogm_cnt_lock); |
| 316 | |
| 317 | size = bat_priv->num_ifaces * sizeof(unsigned long) * BATADV_NUM_WORDS; |
| 318 | orig_node->bat_iv.bcast_own = kzalloc(size, GFP_ATOMIC); |
| 319 | if (!orig_node->bat_iv.bcast_own) |
| 320 | goto free_orig_node; |
| 321 | |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 322 | size = bat_priv->num_ifaces * sizeof(u8); |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 323 | orig_node->bat_iv.bcast_own_sum = kzalloc(size, GFP_ATOMIC); |
| 324 | if (!orig_node->bat_iv.bcast_own_sum) |
Antonio Quartulli | a5a5cb8 | 2014-02-15 02:17:20 +0100 | [diff] [blame] | 325 | goto free_orig_node; |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 326 | |
Sven Eckelmann | 55db2d5 | 2016-07-15 17:39:21 +0200 | [diff] [blame] | 327 | kref_get(&orig_node->refcount); |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 328 | hash_added = batadv_hash_add(bat_priv->orig_hash, batadv_compare_orig, |
| 329 | batadv_choose_orig, orig_node, |
| 330 | &orig_node->hash_entry); |
| 331 | if (hash_added != 0) |
Sven Eckelmann | 55db2d5 | 2016-07-15 17:39:21 +0200 | [diff] [blame] | 332 | goto free_orig_node_hash; |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 333 | |
| 334 | return orig_node; |
| 335 | |
Sven Eckelmann | 55db2d5 | 2016-07-15 17:39:21 +0200 | [diff] [blame] | 336 | free_orig_node_hash: |
Sven Eckelmann | 5d96731 | 2016-01-17 11:01:09 +0100 | [diff] [blame] | 337 | batadv_orig_node_put(orig_node); |
Sven Eckelmann | 55db2d5 | 2016-07-15 17:39:21 +0200 | [diff] [blame] | 338 | free_orig_node: |
Sven Eckelmann | 5d96731 | 2016-01-17 11:01:09 +0100 | [diff] [blame] | 339 | batadv_orig_node_put(orig_node); |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 340 | |
| 341 | return NULL; |
| 342 | } |
| 343 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 344 | static struct batadv_neigh_node * |
| 345 | batadv_iv_ogm_neigh_new(struct batadv_hard_iface *hard_iface, |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 346 | const u8 *neigh_addr, |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 347 | struct batadv_orig_node *orig_node, |
Antonio Quartulli | 863dd7a | 2013-03-25 13:49:46 +0100 | [diff] [blame] | 348 | struct batadv_orig_node *orig_neigh) |
Marek Lindner | 7ae8b28 | 2012-03-01 15:35:21 +0800 | [diff] [blame] | 349 | { |
Marek Lindner | 741aa06 | 2015-07-26 04:57:43 +0800 | [diff] [blame] | 350 | struct batadv_neigh_node *neigh_node; |
Marek Lindner | 7ae8b28 | 2012-03-01 15:35:21 +0800 | [diff] [blame] | 351 | |
Marek Lindner | 6f0a6b5 | 2016-05-03 01:52:08 +0800 | [diff] [blame] | 352 | neigh_node = batadv_neigh_node_get_or_create(orig_node, |
| 353 | hard_iface, neigh_addr); |
Marek Lindner | 7ae8b28 | 2012-03-01 15:35:21 +0800 | [diff] [blame] | 354 | if (!neigh_node) |
| 355 | goto out; |
| 356 | |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 357 | neigh_node->orig_node = orig_neigh; |
Marek Lindner | 7ae8b28 | 2012-03-01 15:35:21 +0800 | [diff] [blame] | 358 | |
Marek Lindner | 7ae8b28 | 2012-03-01 15:35:21 +0800 | [diff] [blame] | 359 | out: |
| 360 | return neigh_node; |
| 361 | } |
| 362 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 363 | static int batadv_iv_ogm_iface_enable(struct batadv_hard_iface *hard_iface) |
Marek Lindner | d0b9fd8 | 2011-07-30 12:33:33 +0200 | [diff] [blame] | 364 | { |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 365 | struct batadv_ogm_packet *batadv_ogm_packet; |
Marek Lindner | 1451151 | 2012-08-02 17:20:26 +0200 | [diff] [blame] | 366 | unsigned char *ogm_buff; |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 367 | u32 random_seqno; |
Marek Lindner | d7d32ec | 2012-02-07 17:20:46 +0800 | [diff] [blame] | 368 | |
| 369 | /* randomize initial seqno to avoid collision */ |
| 370 | get_random_bytes(&random_seqno, sizeof(random_seqno)); |
Marek Lindner | 1451151 | 2012-08-02 17:20:26 +0200 | [diff] [blame] | 371 | atomic_set(&hard_iface->bat_iv.ogm_seqno, random_seqno); |
Marek Lindner | d0b9fd8 | 2011-07-30 12:33:33 +0200 | [diff] [blame] | 372 | |
Marek Lindner | 1451151 | 2012-08-02 17:20:26 +0200 | [diff] [blame] | 373 | hard_iface->bat_iv.ogm_buff_len = BATADV_OGM_HLEN; |
| 374 | ogm_buff = kmalloc(hard_iface->bat_iv.ogm_buff_len, GFP_ATOMIC); |
| 375 | if (!ogm_buff) |
Markus Pargmann | 42d9f2c | 2014-12-26 12:41:26 +0100 | [diff] [blame] | 376 | return -ENOMEM; |
Marek Lindner | 77af757 | 2012-02-07 17:20:48 +0800 | [diff] [blame] | 377 | |
Marek Lindner | 1451151 | 2012-08-02 17:20:26 +0200 | [diff] [blame] | 378 | hard_iface->bat_iv.ogm_buff = ogm_buff; |
| 379 | |
| 380 | batadv_ogm_packet = (struct batadv_ogm_packet *)ogm_buff; |
Simon Wunderlich | a40d9b0 | 2013-12-02 20:38:31 +0100 | [diff] [blame] | 381 | batadv_ogm_packet->packet_type = BATADV_IV_OGM; |
| 382 | batadv_ogm_packet->version = BATADV_COMPAT_VERSION; |
| 383 | batadv_ogm_packet->ttl = 2; |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 384 | batadv_ogm_packet->flags = BATADV_NO_FLAGS; |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 385 | batadv_ogm_packet->reserved = 0; |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 386 | batadv_ogm_packet->tq = BATADV_TQ_MAX_VALUE; |
Marek Lindner | 77af757 | 2012-02-07 17:20:48 +0800 | [diff] [blame] | 387 | |
Markus Pargmann | 42d9f2c | 2014-12-26 12:41:26 +0100 | [diff] [blame] | 388 | return 0; |
Marek Lindner | d0b9fd8 | 2011-07-30 12:33:33 +0200 | [diff] [blame] | 389 | } |
| 390 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 391 | static void batadv_iv_ogm_iface_disable(struct batadv_hard_iface *hard_iface) |
Marek Lindner | 00a5007 | 2012-02-07 17:20:47 +0800 | [diff] [blame] | 392 | { |
Marek Lindner | 1451151 | 2012-08-02 17:20:26 +0200 | [diff] [blame] | 393 | kfree(hard_iface->bat_iv.ogm_buff); |
| 394 | hard_iface->bat_iv.ogm_buff = NULL; |
Marek Lindner | 00a5007 | 2012-02-07 17:20:47 +0800 | [diff] [blame] | 395 | } |
| 396 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 397 | static void batadv_iv_ogm_iface_update_mac(struct batadv_hard_iface *hard_iface) |
Marek Lindner | d0b9fd8 | 2011-07-30 12:33:33 +0200 | [diff] [blame] | 398 | { |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 399 | struct batadv_ogm_packet *batadv_ogm_packet; |
Marek Lindner | 1451151 | 2012-08-02 17:20:26 +0200 | [diff] [blame] | 400 | unsigned char *ogm_buff = hard_iface->bat_iv.ogm_buff; |
Marek Lindner | d0b9fd8 | 2011-07-30 12:33:33 +0200 | [diff] [blame] | 401 | |
Marek Lindner | 1451151 | 2012-08-02 17:20:26 +0200 | [diff] [blame] | 402 | batadv_ogm_packet = (struct batadv_ogm_packet *)ogm_buff; |
Antonio Quartulli | 8fdd015 | 2014-01-22 00:42:11 +0100 | [diff] [blame] | 403 | ether_addr_copy(batadv_ogm_packet->orig, |
| 404 | hard_iface->net_dev->dev_addr); |
| 405 | ether_addr_copy(batadv_ogm_packet->prev_sender, |
| 406 | hard_iface->net_dev->dev_addr); |
Marek Lindner | d0b9fd8 | 2011-07-30 12:33:33 +0200 | [diff] [blame] | 407 | } |
| 408 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 409 | static void |
| 410 | batadv_iv_ogm_primary_iface_set(struct batadv_hard_iface *hard_iface) |
Marek Lindner | c322939 | 2012-03-11 06:17:50 +0800 | [diff] [blame] | 411 | { |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 412 | struct batadv_ogm_packet *batadv_ogm_packet; |
Marek Lindner | 1451151 | 2012-08-02 17:20:26 +0200 | [diff] [blame] | 413 | unsigned char *ogm_buff = hard_iface->bat_iv.ogm_buff; |
Marek Lindner | c322939 | 2012-03-11 06:17:50 +0800 | [diff] [blame] | 414 | |
Marek Lindner | 1451151 | 2012-08-02 17:20:26 +0200 | [diff] [blame] | 415 | batadv_ogm_packet = (struct batadv_ogm_packet *)ogm_buff; |
Simon Wunderlich | a40d9b0 | 2013-12-02 20:38:31 +0100 | [diff] [blame] | 416 | batadv_ogm_packet->ttl = BATADV_TTL; |
Marek Lindner | c322939 | 2012-03-11 06:17:50 +0800 | [diff] [blame] | 417 | } |
| 418 | |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 419 | /* when do we schedule our own ogm to be sent */ |
Sven Eckelmann | fe8bc39 | 2012-05-12 18:33:51 +0200 | [diff] [blame] | 420 | static unsigned long |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 421 | batadv_iv_ogm_emit_send_time(const struct batadv_priv *bat_priv) |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 422 | { |
Sven Eckelmann | 42d0b04 | 2012-06-03 22:19:17 +0200 | [diff] [blame] | 423 | unsigned int msecs; |
| 424 | |
| 425 | msecs = atomic_read(&bat_priv->orig_interval) - BATADV_JITTER; |
Akinobu Mita | e76e432 | 2012-12-24 11:14:07 +0900 | [diff] [blame] | 426 | msecs += prandom_u32() % (2 * BATADV_JITTER); |
Sven Eckelmann | 42d0b04 | 2012-06-03 22:19:17 +0200 | [diff] [blame] | 427 | |
| 428 | return jiffies + msecs_to_jiffies(msecs); |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 429 | } |
| 430 | |
| 431 | /* when do we schedule a ogm packet to be sent */ |
Sven Eckelmann | fe8bc39 | 2012-05-12 18:33:51 +0200 | [diff] [blame] | 432 | static unsigned long batadv_iv_ogm_fwd_send_time(void) |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 433 | { |
Akinobu Mita | e76e432 | 2012-12-24 11:14:07 +0900 | [diff] [blame] | 434 | return jiffies + msecs_to_jiffies(prandom_u32() % (BATADV_JITTER / 2)); |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 435 | } |
| 436 | |
| 437 | /* apply hop penalty for a normal link */ |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 438 | static u8 batadv_hop_penalty(u8 tq, const struct batadv_priv *bat_priv) |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 439 | { |
| 440 | int hop_penalty = atomic_read(&bat_priv->hop_penalty); |
Sven Eckelmann | 42d0b04 | 2012-06-03 22:19:17 +0200 | [diff] [blame] | 441 | int new_tq; |
| 442 | |
| 443 | new_tq = tq * (BATADV_TQ_MAX_VALUE - hop_penalty); |
| 444 | new_tq /= BATADV_TQ_MAX_VALUE; |
| 445 | |
| 446 | return new_tq; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 447 | } |
| 448 | |
Simon Wunderlich | 600184b | 2015-11-23 19:57:21 +0100 | [diff] [blame] | 449 | /** |
| 450 | * batadv_iv_ogm_aggr_packet - checks if there is another OGM attached |
| 451 | * @buff_pos: current position in the skb |
| 452 | * @packet_len: total length of the skb |
| 453 | * @tvlv_len: tvlv length of the previously considered OGM |
| 454 | * |
| 455 | * Return: true if there is enough space for another OGM, false otherwise. |
| 456 | */ |
Markus Pargmann | 9fd9b19 | 2014-12-26 12:41:27 +0100 | [diff] [blame] | 457 | static bool batadv_iv_ogm_aggr_packet(int buff_pos, int packet_len, |
| 458 | __be16 tvlv_len) |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 459 | { |
Sven Eckelmann | 08c36d3 | 2012-05-12 02:09:39 +0200 | [diff] [blame] | 460 | int next_buff_pos = 0; |
| 461 | |
Sven Eckelmann | 7e071c7 | 2012-06-03 22:19:13 +0200 | [diff] [blame] | 462 | next_buff_pos += buff_pos + BATADV_OGM_HLEN; |
Marek Lindner | ef26157 | 2013-04-23 21:39:57 +0800 | [diff] [blame] | 463 | next_buff_pos += ntohs(tvlv_len); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 464 | |
| 465 | return (next_buff_pos <= packet_len) && |
Sven Eckelmann | 42d0b04 | 2012-06-03 22:19:17 +0200 | [diff] [blame] | 466 | (next_buff_pos <= BATADV_MAX_AGGREGATION_BYTES); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 467 | } |
| 468 | |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 469 | /* send a batman ogm to a given interface */ |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 470 | static void batadv_iv_ogm_send_to_if(struct batadv_forw_packet *forw_packet, |
| 471 | struct batadv_hard_iface *hard_iface) |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 472 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 473 | struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface); |
Markus Pargmann | de12bae | 2014-12-26 12:41:28 +0100 | [diff] [blame] | 474 | const char *fwd_str; |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 475 | u8 packet_num; |
| 476 | s16 buff_pos; |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 477 | struct batadv_ogm_packet *batadv_ogm_packet; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 478 | struct sk_buff *skb; |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 479 | u8 *packet_pos; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 480 | |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 481 | if (hard_iface->if_status != BATADV_IF_ACTIVE) |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 482 | return; |
| 483 | |
| 484 | packet_num = 0; |
| 485 | buff_pos = 0; |
Sven Eckelmann | c67893d | 2012-07-08 18:33:51 +0200 | [diff] [blame] | 486 | packet_pos = forw_packet->skb->data; |
| 487 | batadv_ogm_packet = (struct batadv_ogm_packet *)packet_pos; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 488 | |
| 489 | /* adjust all flags and log packets */ |
Sven Eckelmann | fe8bc39 | 2012-05-12 18:33:51 +0200 | [diff] [blame] | 490 | while (batadv_iv_ogm_aggr_packet(buff_pos, forw_packet->packet_len, |
Marek Lindner | ef26157 | 2013-04-23 21:39:57 +0800 | [diff] [blame] | 491 | batadv_ogm_packet->tvlv_len)) { |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 492 | /* we might have aggregated direct link packets with an |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 493 | * ordinary base packet |
| 494 | */ |
Sven Eckelmann | 8de47de | 2012-07-08 16:32:09 +0200 | [diff] [blame] | 495 | if (forw_packet->direct_link_flags & BIT(packet_num) && |
| 496 | forw_packet->if_incoming == hard_iface) |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 497 | batadv_ogm_packet->flags |= BATADV_DIRECTLINK; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 498 | else |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 499 | batadv_ogm_packet->flags &= ~BATADV_DIRECTLINK; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 500 | |
Sven Eckelmann | c67893d | 2012-07-08 18:33:51 +0200 | [diff] [blame] | 501 | if (packet_num > 0 || !forw_packet->own) |
| 502 | fwd_str = "Forwarding"; |
| 503 | else |
| 504 | fwd_str = "Sending own"; |
| 505 | |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 506 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
Marek Lindner | e1bf0c1 | 2013-04-23 21:40:01 +0800 | [diff] [blame] | 507 | "%s %spacket (originator %pM, seqno %u, TQ %d, TTL %d, IDF %s) on interface %s [%pM]\n", |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 508 | fwd_str, (packet_num > 0 ? "aggregated " : ""), |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 509 | batadv_ogm_packet->orig, |
| 510 | ntohl(batadv_ogm_packet->seqno), |
Simon Wunderlich | a40d9b0 | 2013-12-02 20:38:31 +0100 | [diff] [blame] | 511 | batadv_ogm_packet->tq, batadv_ogm_packet->ttl, |
Sven Eckelmann | a2f2b6c | 2015-04-23 18:22:24 +0200 | [diff] [blame] | 512 | ((batadv_ogm_packet->flags & BATADV_DIRECTLINK) ? |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 513 | "on" : "off"), |
Marek Lindner | e1bf0c1 | 2013-04-23 21:40:01 +0800 | [diff] [blame] | 514 | hard_iface->net_dev->name, |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 515 | hard_iface->net_dev->dev_addr); |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 516 | |
Sven Eckelmann | 7e071c7 | 2012-06-03 22:19:13 +0200 | [diff] [blame] | 517 | buff_pos += BATADV_OGM_HLEN; |
Marek Lindner | ef26157 | 2013-04-23 21:39:57 +0800 | [diff] [blame] | 518 | buff_pos += ntohs(batadv_ogm_packet->tvlv_len); |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 519 | packet_num++; |
Sven Eckelmann | c67893d | 2012-07-08 18:33:51 +0200 | [diff] [blame] | 520 | packet_pos = forw_packet->skb->data + buff_pos; |
| 521 | batadv_ogm_packet = (struct batadv_ogm_packet *)packet_pos; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 522 | } |
| 523 | |
| 524 | /* create clone because function is called more than once */ |
| 525 | skb = skb_clone(forw_packet->skb, GFP_ATOMIC); |
Martin Hundebøll | f821486 | 2012-04-20 17:02:45 +0200 | [diff] [blame] | 526 | if (skb) { |
Sven Eckelmann | d69909d | 2012-06-03 22:19:20 +0200 | [diff] [blame] | 527 | batadv_inc_counter(bat_priv, BATADV_CNT_MGMT_TX); |
| 528 | batadv_add_counter(bat_priv, BATADV_CNT_MGMT_TX_BYTES, |
Martin Hundebøll | f821486 | 2012-04-20 17:02:45 +0200 | [diff] [blame] | 529 | skb->len + ETH_HLEN); |
Antonio Quartulli | 95d3927 | 2016-01-16 16:40:15 +0800 | [diff] [blame] | 530 | batadv_send_broadcast_skb(skb, hard_iface); |
Martin Hundebøll | f821486 | 2012-04-20 17:02:45 +0200 | [diff] [blame] | 531 | } |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 532 | } |
| 533 | |
| 534 | /* send a batman ogm packet */ |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 535 | static void batadv_iv_ogm_emit(struct batadv_forw_packet *forw_packet) |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 536 | { |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 537 | struct net_device *soft_iface; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 538 | |
| 539 | if (!forw_packet->if_incoming) { |
Sven Eckelmann | 86ceb36 | 2012-03-07 09:07:45 +0100 | [diff] [blame] | 540 | pr_err("Error - can't forward packet: incoming iface not specified\n"); |
Linus LĂĽssing | f55a2e8 | 2016-06-14 22:56:50 +0200 | [diff] [blame] | 541 | return; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 542 | } |
| 543 | |
| 544 | soft_iface = forw_packet->if_incoming->soft_iface; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 545 | |
Simon Wunderlich | ef0a937 | 2013-11-13 19:14:49 +0100 | [diff] [blame] | 546 | if (WARN_ON(!forw_packet->if_outgoing)) |
Linus LĂĽssing | f55a2e8 | 2016-06-14 22:56:50 +0200 | [diff] [blame] | 547 | return; |
Simon Wunderlich | ef0a937 | 2013-11-13 19:14:49 +0100 | [diff] [blame] | 548 | |
| 549 | if (WARN_ON(forw_packet->if_outgoing->soft_iface != soft_iface)) |
Linus LĂĽssing | f55a2e8 | 2016-06-14 22:56:50 +0200 | [diff] [blame] | 550 | return; |
Simon Wunderlich | ef0a937 | 2013-11-13 19:14:49 +0100 | [diff] [blame] | 551 | |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 552 | if (forw_packet->if_incoming->if_status != BATADV_IF_ACTIVE) |
Linus LĂĽssing | f55a2e8 | 2016-06-14 22:56:50 +0200 | [diff] [blame] | 553 | return; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 554 | |
Simon Wunderlich | ef0a937 | 2013-11-13 19:14:49 +0100 | [diff] [blame] | 555 | /* only for one specific outgoing interface */ |
| 556 | batadv_iv_ogm_send_to_if(forw_packet, forw_packet->if_outgoing); |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 557 | } |
| 558 | |
Simon Wunderlich | ef0a937 | 2013-11-13 19:14:49 +0100 | [diff] [blame] | 559 | /** |
| 560 | * batadv_iv_ogm_can_aggregate - find out if an OGM can be aggregated on an |
| 561 | * existing forward packet |
| 562 | * @new_bat_ogm_packet: OGM packet to be aggregated |
| 563 | * @bat_priv: the bat priv with all the soft interface information |
| 564 | * @packet_len: (total) length of the OGM |
| 565 | * @send_time: timestamp (jiffies) when the packet is to be sent |
Martin Hundebøll | 95298a9 | 2014-07-15 09:41:05 +0200 | [diff] [blame] | 566 | * @directlink: true if this is a direct link packet |
Simon Wunderlich | ef0a937 | 2013-11-13 19:14:49 +0100 | [diff] [blame] | 567 | * @if_incoming: interface where the packet was received |
| 568 | * @if_outgoing: interface for which the retransmission should be considered |
| 569 | * @forw_packet: the forwarded packet which should be checked |
| 570 | * |
Sven Eckelmann | 62fe710 | 2015-09-15 19:00:48 +0200 | [diff] [blame] | 571 | * Return: true if new_packet can be aggregated with forw_packet |
Simon Wunderlich | ef0a937 | 2013-11-13 19:14:49 +0100 | [diff] [blame] | 572 | */ |
Sven Eckelmann | fe8bc39 | 2012-05-12 18:33:51 +0200 | [diff] [blame] | 573 | static bool |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 574 | batadv_iv_ogm_can_aggregate(const struct batadv_ogm_packet *new_bat_ogm_packet, |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 575 | struct batadv_priv *bat_priv, |
Sven Eckelmann | fe8bc39 | 2012-05-12 18:33:51 +0200 | [diff] [blame] | 576 | int packet_len, unsigned long send_time, |
| 577 | bool directlink, |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 578 | const struct batadv_hard_iface *if_incoming, |
Simon Wunderlich | ef0a937 | 2013-11-13 19:14:49 +0100 | [diff] [blame] | 579 | const struct batadv_hard_iface *if_outgoing, |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 580 | const struct batadv_forw_packet *forw_packet) |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 581 | { |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 582 | struct batadv_ogm_packet *batadv_ogm_packet; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 583 | int aggregated_bytes = forw_packet->packet_len + packet_len; |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 584 | struct batadv_hard_iface *primary_if = NULL; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 585 | bool res = false; |
Sven Eckelmann | 42d0b04 | 2012-06-03 22:19:17 +0200 | [diff] [blame] | 586 | unsigned long aggregation_end_time; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 587 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 588 | batadv_ogm_packet = (struct batadv_ogm_packet *)forw_packet->skb->data; |
Sven Eckelmann | 42d0b04 | 2012-06-03 22:19:17 +0200 | [diff] [blame] | 589 | aggregation_end_time = send_time; |
| 590 | aggregation_end_time += msecs_to_jiffies(BATADV_MAX_AGGREGATION_MS); |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 591 | |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 592 | /* we can aggregate the current packet to this aggregated packet |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 593 | * if: |
| 594 | * |
| 595 | * - the send time is within our MAX_AGGREGATION_MS time |
| 596 | * - the resulting packet wont be bigger than |
| 597 | * MAX_AGGREGATION_BYTES |
Markus Pargmann | 8f34b38 | 2014-12-26 12:41:29 +0100 | [diff] [blame] | 598 | * otherwise aggregation is not possible |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 599 | */ |
Markus Pargmann | 8f34b38 | 2014-12-26 12:41:29 +0100 | [diff] [blame] | 600 | if (!time_before(send_time, forw_packet->send_time) || |
| 601 | !time_after_eq(aggregation_end_time, forw_packet->send_time)) |
| 602 | return false; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 603 | |
Markus Pargmann | 8f34b38 | 2014-12-26 12:41:29 +0100 | [diff] [blame] | 604 | if (aggregated_bytes > BATADV_MAX_AGGREGATION_BYTES) |
| 605 | return false; |
Simon Wunderlich | ef0a937 | 2013-11-13 19:14:49 +0100 | [diff] [blame] | 606 | |
Markus Pargmann | 8f34b38 | 2014-12-26 12:41:29 +0100 | [diff] [blame] | 607 | /* packet is not leaving on the same interface. */ |
| 608 | if (forw_packet->if_outgoing != if_outgoing) |
| 609 | return false; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 610 | |
Markus Pargmann | 8f34b38 | 2014-12-26 12:41:29 +0100 | [diff] [blame] | 611 | /* check aggregation compatibility |
| 612 | * -> direct link packets are broadcasted on |
| 613 | * their interface only |
| 614 | * -> aggregate packet if the current packet is |
| 615 | * a "global" packet as well as the base |
| 616 | * packet |
| 617 | */ |
| 618 | primary_if = batadv_primary_if_get_selected(bat_priv); |
| 619 | if (!primary_if) |
| 620 | return false; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 621 | |
Markus Pargmann | 8f34b38 | 2014-12-26 12:41:29 +0100 | [diff] [blame] | 622 | /* packets without direct link flag and high TTL |
| 623 | * are flooded through the net |
| 624 | */ |
| 625 | if (!directlink && |
| 626 | !(batadv_ogm_packet->flags & BATADV_DIRECTLINK) && |
| 627 | batadv_ogm_packet->ttl != 1 && |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 628 | |
Markus Pargmann | 8f34b38 | 2014-12-26 12:41:29 +0100 | [diff] [blame] | 629 | /* own packets originating non-primary |
| 630 | * interfaces leave only that interface |
| 631 | */ |
| 632 | (!forw_packet->own || |
| 633 | forw_packet->if_incoming == primary_if)) { |
| 634 | res = true; |
| 635 | goto out; |
| 636 | } |
| 637 | |
| 638 | /* if the incoming packet is sent via this one |
| 639 | * interface only - we still can aggregate |
| 640 | */ |
| 641 | if (directlink && |
| 642 | new_bat_ogm_packet->ttl == 1 && |
| 643 | forw_packet->if_incoming == if_incoming && |
| 644 | |
| 645 | /* packets from direct neighbors or |
| 646 | * own secondary interface packets |
| 647 | * (= secondary interface packets in general) |
| 648 | */ |
| 649 | (batadv_ogm_packet->flags & BATADV_DIRECTLINK || |
| 650 | (forw_packet->own && |
| 651 | forw_packet->if_incoming != primary_if))) { |
| 652 | res = true; |
| 653 | goto out; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 654 | } |
| 655 | |
| 656 | out: |
| 657 | if (primary_if) |
Sven Eckelmann | 82047ad | 2016-01-17 11:01:10 +0100 | [diff] [blame] | 658 | batadv_hardif_put(primary_if); |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 659 | return res; |
| 660 | } |
| 661 | |
Simon Wunderlich | 1b371d1 | 2014-01-15 21:17:54 +0100 | [diff] [blame] | 662 | /** |
| 663 | * batadv_iv_ogm_aggregate_new - create a new aggregated packet and add this |
Simon Wunderlich | ef0a937 | 2013-11-13 19:14:49 +0100 | [diff] [blame] | 664 | * packet to it. |
| 665 | * @packet_buff: pointer to the OGM |
| 666 | * @packet_len: (total) length of the OGM |
| 667 | * @send_time: timestamp (jiffies) when the packet is to be sent |
| 668 | * @direct_link: whether this OGM has direct link status |
| 669 | * @if_incoming: interface where the packet was received |
| 670 | * @if_outgoing: interface for which the retransmission should be considered |
| 671 | * @own_packet: true if it is a self-generated ogm |
| 672 | */ |
Sven Eckelmann | fe8bc39 | 2012-05-12 18:33:51 +0200 | [diff] [blame] | 673 | static void batadv_iv_ogm_aggregate_new(const unsigned char *packet_buff, |
| 674 | int packet_len, unsigned long send_time, |
| 675 | bool direct_link, |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 676 | struct batadv_hard_iface *if_incoming, |
Simon Wunderlich | ef0a937 | 2013-11-13 19:14:49 +0100 | [diff] [blame] | 677 | struct batadv_hard_iface *if_outgoing, |
Sven Eckelmann | fe8bc39 | 2012-05-12 18:33:51 +0200 | [diff] [blame] | 678 | int own_packet) |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 679 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 680 | struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface); |
| 681 | struct batadv_forw_packet *forw_packet_aggr; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 682 | unsigned char *skb_buff; |
Sven Eckelmann | 42d0b04 | 2012-06-03 22:19:17 +0200 | [diff] [blame] | 683 | unsigned int skb_size; |
Linus LĂĽssing | a65e548 | 2016-06-20 21:39:54 +0200 | [diff] [blame] | 684 | atomic_t *queue_left = own_packet ? NULL : &bat_priv->batman_queue_left; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 685 | |
Linus LĂĽssing | a65e548 | 2016-06-20 21:39:54 +0200 | [diff] [blame] | 686 | forw_packet_aggr = batadv_forw_packet_alloc(if_incoming, if_outgoing, |
| 687 | queue_left, bat_priv); |
Markus Pargmann | 940d156 | 2014-12-26 12:41:31 +0100 | [diff] [blame] | 688 | if (!forw_packet_aggr) |
Linus LĂĽssing | a65e548 | 2016-06-20 21:39:54 +0200 | [diff] [blame] | 689 | return; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 690 | |
Markus Pargmann | 940d156 | 2014-12-26 12:41:31 +0100 | [diff] [blame] | 691 | if (atomic_read(&bat_priv->aggregated_ogms) && |
| 692 | packet_len < BATADV_MAX_AGGREGATION_BYTES) |
Sven Eckelmann | 5b24657 | 2012-11-04 17:11:45 +0100 | [diff] [blame] | 693 | skb_size = BATADV_MAX_AGGREGATION_BYTES; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 694 | else |
Sven Eckelmann | 5b24657 | 2012-11-04 17:11:45 +0100 | [diff] [blame] | 695 | skb_size = packet_len; |
| 696 | |
Antonio Quartulli | 41ab6c4 | 2013-04-02 22:28:44 +0200 | [diff] [blame] | 697 | skb_size += ETH_HLEN; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 698 | |
Antonio Quartulli | 41ab6c4 | 2013-04-02 22:28:44 +0200 | [diff] [blame] | 699 | forw_packet_aggr->skb = netdev_alloc_skb_ip_align(NULL, skb_size); |
Linus LĂĽssing | a65e548 | 2016-06-20 21:39:54 +0200 | [diff] [blame] | 700 | if (!forw_packet_aggr->skb) { |
| 701 | batadv_forw_packet_free(forw_packet_aggr); |
| 702 | return; |
| 703 | } |
| 704 | |
Simon Wunderlich | c54f38c9 | 2013-07-29 17:56:44 +0200 | [diff] [blame] | 705 | forw_packet_aggr->skb->priority = TC_PRIO_CONTROL; |
Antonio Quartulli | 41ab6c4 | 2013-04-02 22:28:44 +0200 | [diff] [blame] | 706 | skb_reserve(forw_packet_aggr->skb, ETH_HLEN); |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 707 | |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 708 | skb_buff = skb_put(forw_packet_aggr->skb, packet_len); |
| 709 | forw_packet_aggr->packet_len = packet_len; |
| 710 | memcpy(skb_buff, packet_buff, packet_len); |
| 711 | |
| 712 | forw_packet_aggr->own = own_packet; |
Sven Eckelmann | 42d0b04 | 2012-06-03 22:19:17 +0200 | [diff] [blame] | 713 | forw_packet_aggr->direct_link_flags = BATADV_NO_FLAGS; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 714 | forw_packet_aggr->send_time = send_time; |
| 715 | |
| 716 | /* save packet direct link flag status */ |
| 717 | if (direct_link) |
| 718 | forw_packet_aggr->direct_link_flags |= 1; |
| 719 | |
| 720 | /* add new packet to packet list */ |
| 721 | spin_lock_bh(&bat_priv->forw_bat_list_lock); |
| 722 | hlist_add_head(&forw_packet_aggr->list, &bat_priv->forw_bat_list); |
| 723 | spin_unlock_bh(&bat_priv->forw_bat_list_lock); |
| 724 | |
| 725 | /* start timer for this packet */ |
| 726 | INIT_DELAYED_WORK(&forw_packet_aggr->delayed_work, |
Antonio Quartulli | f0d9725 | 2016-05-03 01:45:34 +0800 | [diff] [blame] | 727 | batadv_iv_send_outstanding_bat_ogm_packet); |
Sven Eckelmann | 3193e8f | 2012-05-12 02:09:42 +0200 | [diff] [blame] | 728 | queue_delayed_work(batadv_event_workqueue, |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 729 | &forw_packet_aggr->delayed_work, |
| 730 | send_time - jiffies); |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 731 | } |
| 732 | |
| 733 | /* aggregate a new packet into the existing ogm packet */ |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 734 | static void batadv_iv_ogm_aggregate(struct batadv_forw_packet *forw_packet_aggr, |
Sven Eckelmann | fe8bc39 | 2012-05-12 18:33:51 +0200 | [diff] [blame] | 735 | const unsigned char *packet_buff, |
| 736 | int packet_len, bool direct_link) |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 737 | { |
| 738 | unsigned char *skb_buff; |
Sven Eckelmann | 8de47de | 2012-07-08 16:32:09 +0200 | [diff] [blame] | 739 | unsigned long new_direct_link_flag; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 740 | |
| 741 | skb_buff = skb_put(forw_packet_aggr->skb, packet_len); |
| 742 | memcpy(skb_buff, packet_buff, packet_len); |
| 743 | forw_packet_aggr->packet_len += packet_len; |
| 744 | forw_packet_aggr->num_packets++; |
| 745 | |
| 746 | /* save packet direct link flag status */ |
Sven Eckelmann | 8de47de | 2012-07-08 16:32:09 +0200 | [diff] [blame] | 747 | if (direct_link) { |
| 748 | new_direct_link_flag = BIT(forw_packet_aggr->num_packets); |
| 749 | forw_packet_aggr->direct_link_flags |= new_direct_link_flag; |
| 750 | } |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 751 | } |
| 752 | |
Simon Wunderlich | ef0a937 | 2013-11-13 19:14:49 +0100 | [diff] [blame] | 753 | /** |
| 754 | * batadv_iv_ogm_queue_add - queue up an OGM for transmission |
| 755 | * @bat_priv: the bat priv with all the soft interface information |
| 756 | * @packet_buff: pointer to the OGM |
| 757 | * @packet_len: (total) length of the OGM |
| 758 | * @if_incoming: interface where the packet was received |
| 759 | * @if_outgoing: interface for which the retransmission should be considered |
| 760 | * @own_packet: true if it is a self-generated ogm |
| 761 | * @send_time: timestamp (jiffies) when the packet is to be sent |
| 762 | */ |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 763 | static void batadv_iv_ogm_queue_add(struct batadv_priv *bat_priv, |
Sven Eckelmann | fe8bc39 | 2012-05-12 18:33:51 +0200 | [diff] [blame] | 764 | unsigned char *packet_buff, |
| 765 | int packet_len, |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 766 | struct batadv_hard_iface *if_incoming, |
Simon Wunderlich | ef0a937 | 2013-11-13 19:14:49 +0100 | [diff] [blame] | 767 | struct batadv_hard_iface *if_outgoing, |
Sven Eckelmann | fe8bc39 | 2012-05-12 18:33:51 +0200 | [diff] [blame] | 768 | int own_packet, unsigned long send_time) |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 769 | { |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 770 | /* _aggr -> pointer to the packet we want to aggregate with |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 771 | * _pos -> pointer to the position in the queue |
| 772 | */ |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 773 | struct batadv_forw_packet *forw_packet_aggr = NULL; |
| 774 | struct batadv_forw_packet *forw_packet_pos = NULL; |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 775 | struct batadv_ogm_packet *batadv_ogm_packet; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 776 | bool direct_link; |
Sven Eckelmann | 42d0b04 | 2012-06-03 22:19:17 +0200 | [diff] [blame] | 777 | unsigned long max_aggregation_jiffies; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 778 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 779 | batadv_ogm_packet = (struct batadv_ogm_packet *)packet_buff; |
Markus Pargmann | 5648915 | 2014-12-26 12:41:32 +0100 | [diff] [blame] | 780 | direct_link = !!(batadv_ogm_packet->flags & BATADV_DIRECTLINK); |
Sven Eckelmann | 42d0b04 | 2012-06-03 22:19:17 +0200 | [diff] [blame] | 781 | max_aggregation_jiffies = msecs_to_jiffies(BATADV_MAX_AGGREGATION_MS); |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 782 | |
| 783 | /* find position for the packet in the forward queue */ |
| 784 | spin_lock_bh(&bat_priv->forw_bat_list_lock); |
| 785 | /* own packets are not to be aggregated */ |
Markus Pargmann | 5648915 | 2014-12-26 12:41:32 +0100 | [diff] [blame] | 786 | if (atomic_read(&bat_priv->aggregated_ogms) && !own_packet) { |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 787 | hlist_for_each_entry(forw_packet_pos, |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 788 | &bat_priv->forw_bat_list, list) { |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 789 | if (batadv_iv_ogm_can_aggregate(batadv_ogm_packet, |
Sven Eckelmann | fe8bc39 | 2012-05-12 18:33:51 +0200 | [diff] [blame] | 790 | bat_priv, packet_len, |
| 791 | send_time, direct_link, |
| 792 | if_incoming, |
Simon Wunderlich | ef0a937 | 2013-11-13 19:14:49 +0100 | [diff] [blame] | 793 | if_outgoing, |
Sven Eckelmann | fe8bc39 | 2012-05-12 18:33:51 +0200 | [diff] [blame] | 794 | forw_packet_pos)) { |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 795 | forw_packet_aggr = forw_packet_pos; |
| 796 | break; |
| 797 | } |
| 798 | } |
| 799 | } |
| 800 | |
| 801 | /* nothing to aggregate with - either aggregation disabled or no |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 802 | * suitable aggregation packet found |
| 803 | */ |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 804 | if (!forw_packet_aggr) { |
| 805 | /* the following section can run without the lock */ |
| 806 | spin_unlock_bh(&bat_priv->forw_bat_list_lock); |
| 807 | |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 808 | /* if we could not aggregate this packet with one of the others |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 809 | * we hold it back for a while, so that it might be aggregated |
| 810 | * later on |
| 811 | */ |
Sven Eckelmann | 42d0b04 | 2012-06-03 22:19:17 +0200 | [diff] [blame] | 812 | if (!own_packet && atomic_read(&bat_priv->aggregated_ogms)) |
| 813 | send_time += max_aggregation_jiffies; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 814 | |
Sven Eckelmann | fe8bc39 | 2012-05-12 18:33:51 +0200 | [diff] [blame] | 815 | batadv_iv_ogm_aggregate_new(packet_buff, packet_len, |
| 816 | send_time, direct_link, |
Simon Wunderlich | ef0a937 | 2013-11-13 19:14:49 +0100 | [diff] [blame] | 817 | if_incoming, if_outgoing, |
| 818 | own_packet); |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 819 | } else { |
Sven Eckelmann | fe8bc39 | 2012-05-12 18:33:51 +0200 | [diff] [blame] | 820 | batadv_iv_ogm_aggregate(forw_packet_aggr, packet_buff, |
| 821 | packet_len, direct_link); |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 822 | spin_unlock_bh(&bat_priv->forw_bat_list_lock); |
| 823 | } |
| 824 | } |
| 825 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 826 | static void batadv_iv_ogm_forward(struct batadv_orig_node *orig_node, |
Sven Eckelmann | fe8bc39 | 2012-05-12 18:33:51 +0200 | [diff] [blame] | 827 | const struct ethhdr *ethhdr, |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 828 | struct batadv_ogm_packet *batadv_ogm_packet, |
Sven Eckelmann | fe8bc39 | 2012-05-12 18:33:51 +0200 | [diff] [blame] | 829 | bool is_single_hop_neigh, |
| 830 | bool is_from_best_next_hop, |
Simon Wunderlich | ef0a937 | 2013-11-13 19:14:49 +0100 | [diff] [blame] | 831 | struct batadv_hard_iface *if_incoming, |
| 832 | struct batadv_hard_iface *if_outgoing) |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 833 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 834 | struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface); |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 835 | u16 tvlv_len; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 836 | |
Simon Wunderlich | a40d9b0 | 2013-12-02 20:38:31 +0100 | [diff] [blame] | 837 | if (batadv_ogm_packet->ttl <= 1) { |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 838 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, "ttl exceeded\n"); |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 839 | return; |
| 840 | } |
| 841 | |
Marek Lindner | 13b2541 | 2012-03-11 06:17:53 +0800 | [diff] [blame] | 842 | if (!is_from_best_next_hop) { |
| 843 | /* Mark the forwarded packet when it is not coming from our |
| 844 | * best next hop. We still need to forward the packet for our |
| 845 | * neighbor link quality detection to work in case the packet |
| 846 | * originated from a single hop neighbor. Otherwise we can |
| 847 | * simply drop the ogm. |
| 848 | */ |
| 849 | if (is_single_hop_neigh) |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 850 | batadv_ogm_packet->flags |= BATADV_NOT_BEST_NEXT_HOP; |
Marek Lindner | 13b2541 | 2012-03-11 06:17:53 +0800 | [diff] [blame] | 851 | else |
| 852 | return; |
| 853 | } |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 854 | |
Marek Lindner | ef26157 | 2013-04-23 21:39:57 +0800 | [diff] [blame] | 855 | tvlv_len = ntohs(batadv_ogm_packet->tvlv_len); |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 856 | |
Simon Wunderlich | a40d9b0 | 2013-12-02 20:38:31 +0100 | [diff] [blame] | 857 | batadv_ogm_packet->ttl--; |
Antonio Quartulli | 8fdd015 | 2014-01-22 00:42:11 +0100 | [diff] [blame] | 858 | ether_addr_copy(batadv_ogm_packet->prev_sender, ethhdr->h_source); |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 859 | |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 860 | /* apply hop penalty */ |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 861 | batadv_ogm_packet->tq = batadv_hop_penalty(batadv_ogm_packet->tq, |
Sven Eckelmann | fe8bc39 | 2012-05-12 18:33:51 +0200 | [diff] [blame] | 862 | bat_priv); |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 863 | |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 864 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 865 | "Forwarding packet: tq: %i, ttl: %i\n", |
Simon Wunderlich | a40d9b0 | 2013-12-02 20:38:31 +0100 | [diff] [blame] | 866 | batadv_ogm_packet->tq, batadv_ogm_packet->ttl); |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 867 | |
Marek Lindner | 75cd33f | 2012-03-01 15:35:16 +0800 | [diff] [blame] | 868 | if (is_single_hop_neigh) |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 869 | batadv_ogm_packet->flags |= BATADV_DIRECTLINK; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 870 | else |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 871 | batadv_ogm_packet->flags &= ~BATADV_DIRECTLINK; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 872 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 873 | batadv_iv_ogm_queue_add(bat_priv, (unsigned char *)batadv_ogm_packet, |
Marek Lindner | ef26157 | 2013-04-23 21:39:57 +0800 | [diff] [blame] | 874 | BATADV_OGM_HLEN + tvlv_len, |
Simon Wunderlich | ef0a937 | 2013-11-13 19:14:49 +0100 | [diff] [blame] | 875 | if_incoming, if_outgoing, 0, |
| 876 | batadv_iv_ogm_fwd_send_time()); |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 877 | } |
| 878 | |
Antonio Quartulli | d989661 | 2013-04-17 17:44:43 +0200 | [diff] [blame] | 879 | /** |
| 880 | * batadv_iv_ogm_slide_own_bcast_window - bitshift own OGM broadcast windows for |
| 881 | * the given interface |
| 882 | * @hard_iface: the interface for which the windows have to be shifted |
| 883 | */ |
| 884 | static void |
| 885 | batadv_iv_ogm_slide_own_bcast_window(struct batadv_hard_iface *hard_iface) |
| 886 | { |
| 887 | struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface); |
| 888 | struct batadv_hashtable *hash = bat_priv->orig_hash; |
| 889 | struct hlist_head *head; |
| 890 | struct batadv_orig_node *orig_node; |
| 891 | unsigned long *word; |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 892 | u32 i; |
Antonio Quartulli | d989661 | 2013-04-17 17:44:43 +0200 | [diff] [blame] | 893 | size_t word_index; |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 894 | u8 *w; |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 895 | int if_num; |
Antonio Quartulli | d989661 | 2013-04-17 17:44:43 +0200 | [diff] [blame] | 896 | |
| 897 | for (i = 0; i < hash->size; i++) { |
| 898 | head = &hash->table[i]; |
| 899 | |
| 900 | rcu_read_lock(); |
| 901 | hlist_for_each_entry_rcu(orig_node, head, hash_entry) { |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 902 | spin_lock_bh(&orig_node->bat_iv.ogm_cnt_lock); |
Antonio Quartulli | d989661 | 2013-04-17 17:44:43 +0200 | [diff] [blame] | 903 | word_index = hard_iface->if_num * BATADV_NUM_WORDS; |
Antonio Quartulli | 32db6aa | 2014-09-01 14:37:29 +0200 | [diff] [blame] | 904 | word = &orig_node->bat_iv.bcast_own[word_index]; |
Antonio Quartulli | d989661 | 2013-04-17 17:44:43 +0200 | [diff] [blame] | 905 | |
| 906 | batadv_bit_get_packet(bat_priv, word, 1, 0); |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 907 | if_num = hard_iface->if_num; |
| 908 | w = &orig_node->bat_iv.bcast_own_sum[if_num]; |
Antonio Quartulli | d989661 | 2013-04-17 17:44:43 +0200 | [diff] [blame] | 909 | *w = bitmap_weight(word, BATADV_TQ_LOCAL_WINDOW_SIZE); |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 910 | spin_unlock_bh(&orig_node->bat_iv.ogm_cnt_lock); |
Antonio Quartulli | d989661 | 2013-04-17 17:44:43 +0200 | [diff] [blame] | 911 | } |
| 912 | rcu_read_unlock(); |
| 913 | } |
| 914 | } |
| 915 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 916 | static void batadv_iv_ogm_schedule(struct batadv_hard_iface *hard_iface) |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 917 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 918 | struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface); |
Marek Lindner | 1451151 | 2012-08-02 17:20:26 +0200 | [diff] [blame] | 919 | unsigned char **ogm_buff = &hard_iface->bat_iv.ogm_buff; |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 920 | struct batadv_ogm_packet *batadv_ogm_packet; |
Simon Wunderlich | ef0a937 | 2013-11-13 19:14:49 +0100 | [diff] [blame] | 921 | struct batadv_hard_iface *primary_if, *tmp_hard_iface; |
Marek Lindner | 1451151 | 2012-08-02 17:20:26 +0200 | [diff] [blame] | 922 | int *ogm_buff_len = &hard_iface->bat_iv.ogm_buff_len; |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 923 | u32 seqno; |
| 924 | u16 tvlv_len = 0; |
Simon Wunderlich | ef0a937 | 2013-11-13 19:14:49 +0100 | [diff] [blame] | 925 | unsigned long send_time; |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 926 | |
Antonio Quartulli | f0d9725 | 2016-05-03 01:45:34 +0800 | [diff] [blame] | 927 | if ((hard_iface->if_status == BATADV_IF_NOT_IN_USE) || |
| 928 | (hard_iface->if_status == BATADV_IF_TO_BE_REMOVED)) |
| 929 | return; |
| 930 | |
| 931 | /* the interface gets activated here to avoid race conditions between |
| 932 | * the moment of activating the interface in |
| 933 | * hardif_activate_interface() where the originator mac is set and |
| 934 | * outdated packets (especially uninitialized mac addresses) in the |
| 935 | * packet queue |
| 936 | */ |
| 937 | if (hard_iface->if_status == BATADV_IF_TO_BE_ACTIVATED) |
| 938 | hard_iface->if_status = BATADV_IF_ACTIVE; |
| 939 | |
Sven Eckelmann | e5d8925 | 2012-05-12 13:48:54 +0200 | [diff] [blame] | 940 | primary_if = batadv_primary_if_get_selected(bat_priv); |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 941 | |
Marek Lindner | e1bf0c1 | 2013-04-23 21:40:01 +0800 | [diff] [blame] | 942 | if (hard_iface == primary_if) { |
| 943 | /* tt changes have to be committed before the tvlv data is |
| 944 | * appended as it may alter the tt tvlv container |
| 945 | */ |
| 946 | batadv_tt_local_commit_changes(bat_priv); |
Marek Lindner | ef26157 | 2013-04-23 21:39:57 +0800 | [diff] [blame] | 947 | tvlv_len = batadv_tvlv_container_ogm_append(bat_priv, ogm_buff, |
| 948 | ogm_buff_len, |
| 949 | BATADV_OGM_HLEN); |
Marek Lindner | e1bf0c1 | 2013-04-23 21:40:01 +0800 | [diff] [blame] | 950 | } |
Marek Lindner | be9aa4c | 2012-05-07 04:22:05 +0800 | [diff] [blame] | 951 | |
Marek Lindner | 1451151 | 2012-08-02 17:20:26 +0200 | [diff] [blame] | 952 | batadv_ogm_packet = (struct batadv_ogm_packet *)(*ogm_buff); |
Marek Lindner | ef26157 | 2013-04-23 21:39:57 +0800 | [diff] [blame] | 953 | batadv_ogm_packet->tvlv_len = htons(tvlv_len); |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 954 | |
| 955 | /* change sequence number to network order */ |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 956 | seqno = (u32)atomic_read(&hard_iface->bat_iv.ogm_seqno); |
Sven Eckelmann | bbb1f90 | 2012-07-08 17:13:15 +0200 | [diff] [blame] | 957 | batadv_ogm_packet->seqno = htonl(seqno); |
Marek Lindner | 1451151 | 2012-08-02 17:20:26 +0200 | [diff] [blame] | 958 | atomic_inc(&hard_iface->bat_iv.ogm_seqno); |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 959 | |
Antonio Quartulli | d989661 | 2013-04-17 17:44:43 +0200 | [diff] [blame] | 960 | batadv_iv_ogm_slide_own_bcast_window(hard_iface); |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 961 | |
Simon Wunderlich | ef0a937 | 2013-11-13 19:14:49 +0100 | [diff] [blame] | 962 | send_time = batadv_iv_ogm_emit_send_time(bat_priv); |
| 963 | |
| 964 | if (hard_iface != primary_if) { |
| 965 | /* OGMs from secondary interfaces are only scheduled on their |
| 966 | * respective interfaces. |
| 967 | */ |
| 968 | batadv_iv_ogm_queue_add(bat_priv, *ogm_buff, *ogm_buff_len, |
| 969 | hard_iface, hard_iface, 1, send_time); |
| 970 | goto out; |
| 971 | } |
| 972 | |
| 973 | /* OGMs from primary interfaces are scheduled on all |
| 974 | * interfaces. |
| 975 | */ |
| 976 | rcu_read_lock(); |
| 977 | list_for_each_entry_rcu(tmp_hard_iface, &batadv_hardif_list, list) { |
| 978 | if (tmp_hard_iface->soft_iface != hard_iface->soft_iface) |
Sven Eckelmann | 87b40f5 | 2015-07-17 10:03:42 +0200 | [diff] [blame] | 979 | continue; |
Sven Eckelmann | 2735344 | 2016-03-05 16:09:16 +0100 | [diff] [blame] | 980 | |
| 981 | if (!kref_get_unless_zero(&tmp_hard_iface->refcount)) |
| 982 | continue; |
| 983 | |
Simon Wunderlich | ef0a937 | 2013-11-13 19:14:49 +0100 | [diff] [blame] | 984 | batadv_iv_ogm_queue_add(bat_priv, *ogm_buff, |
| 985 | *ogm_buff_len, hard_iface, |
| 986 | tmp_hard_iface, 1, send_time); |
Sven Eckelmann | 2735344 | 2016-03-05 16:09:16 +0100 | [diff] [blame] | 987 | |
| 988 | batadv_hardif_put(tmp_hard_iface); |
Simon Wunderlich | ef0a937 | 2013-11-13 19:14:49 +0100 | [diff] [blame] | 989 | } |
| 990 | rcu_read_unlock(); |
| 991 | |
| 992 | out: |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 993 | if (primary_if) |
Sven Eckelmann | 82047ad | 2016-01-17 11:01:10 +0100 | [diff] [blame] | 994 | batadv_hardif_put(primary_if); |
Marek Lindner | b9dacc5 | 2011-08-03 09:09:30 +0200 | [diff] [blame] | 995 | } |
| 996 | |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 997 | /** |
| 998 | * batadv_iv_ogm_orig_update - use OGM to update corresponding data in an |
| 999 | * originator |
| 1000 | * @bat_priv: the bat priv with all the soft interface information |
| 1001 | * @orig_node: the orig node who originally emitted the ogm packet |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1002 | * @orig_ifinfo: ifinfo for the outgoing interface of the orig_node |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1003 | * @ethhdr: Ethernet header of the OGM |
| 1004 | * @batadv_ogm_packet: the ogm packet |
| 1005 | * @if_incoming: interface where the packet was received |
| 1006 | * @if_outgoing: interface for which the retransmission should be considered |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1007 | * @dup_status: the duplicate status of this ogm packet. |
| 1008 | */ |
Sven Eckelmann | fe8bc39 | 2012-05-12 18:33:51 +0200 | [diff] [blame] | 1009 | static void |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 1010 | batadv_iv_ogm_orig_update(struct batadv_priv *bat_priv, |
| 1011 | struct batadv_orig_node *orig_node, |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1012 | struct batadv_orig_ifinfo *orig_ifinfo, |
Sven Eckelmann | fe8bc39 | 2012-05-12 18:33:51 +0200 | [diff] [blame] | 1013 | const struct ethhdr *ethhdr, |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 1014 | const struct batadv_ogm_packet *batadv_ogm_packet, |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 1015 | struct batadv_hard_iface *if_incoming, |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1016 | struct batadv_hard_iface *if_outgoing, |
Simon Wunderlich | 7c24bbb | 2013-05-23 13:07:42 +0200 | [diff] [blame] | 1017 | enum batadv_dup_status dup_status) |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1018 | { |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1019 | struct batadv_neigh_ifinfo *neigh_ifinfo = NULL; |
| 1020 | struct batadv_neigh_ifinfo *router_ifinfo = NULL; |
Sven Eckelmann | 4f248cf | 2015-06-09 20:50:49 +0200 | [diff] [blame] | 1021 | struct batadv_neigh_node *neigh_node = NULL; |
| 1022 | struct batadv_neigh_node *tmp_neigh_node = NULL; |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 1023 | struct batadv_neigh_node *router = NULL; |
| 1024 | struct batadv_orig_node *orig_node_tmp; |
Linus LĂĽssing | 7caf69f | 2012-09-18 03:01:08 +0200 | [diff] [blame] | 1025 | int if_num; |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 1026 | u8 sum_orig, sum_neigh; |
| 1027 | u8 *neigh_addr; |
| 1028 | u8 tq_avg; |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1029 | |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 1030 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 1031 | "update_originator(): Searching and updating originator entry of received packet\n"); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1032 | |
| 1033 | rcu_read_lock(); |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1034 | hlist_for_each_entry_rcu(tmp_neigh_node, |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1035 | &orig_node->neigh_list, list) { |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 1036 | neigh_addr = tmp_neigh_node->addr; |
| 1037 | if (batadv_compare_eth(neigh_addr, ethhdr->h_source) && |
| 1038 | tmp_neigh_node->if_incoming == if_incoming && |
Sven Eckelmann | 77ae32e | 2016-01-16 10:29:53 +0100 | [diff] [blame] | 1039 | kref_get_unless_zero(&tmp_neigh_node->refcount)) { |
Antonio Quartulli | 38dc40e | 2013-03-30 17:22:00 +0100 | [diff] [blame] | 1040 | if (WARN(neigh_node, "too many matching neigh_nodes")) |
Sven Eckelmann | 25bb250 | 2016-01-17 11:01:11 +0100 | [diff] [blame] | 1041 | batadv_neigh_node_put(neigh_node); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1042 | neigh_node = tmp_neigh_node; |
| 1043 | continue; |
| 1044 | } |
| 1045 | |
Simon Wunderlich | 7c24bbb | 2013-05-23 13:07:42 +0200 | [diff] [blame] | 1046 | if (dup_status != BATADV_NO_DUP) |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1047 | continue; |
| 1048 | |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1049 | /* only update the entry for this outgoing interface */ |
| 1050 | neigh_ifinfo = batadv_neigh_ifinfo_get(tmp_neigh_node, |
| 1051 | if_outgoing); |
| 1052 | if (!neigh_ifinfo) |
| 1053 | continue; |
| 1054 | |
| 1055 | spin_lock_bh(&tmp_neigh_node->ifinfo_lock); |
| 1056 | batadv_ring_buffer_set(neigh_ifinfo->bat_iv.tq_recv, |
| 1057 | &neigh_ifinfo->bat_iv.tq_index, 0); |
| 1058 | tq_avg = batadv_ring_buffer_avg(neigh_ifinfo->bat_iv.tq_recv); |
| 1059 | neigh_ifinfo->bat_iv.tq_avg = tq_avg; |
| 1060 | spin_unlock_bh(&tmp_neigh_node->ifinfo_lock); |
| 1061 | |
Sven Eckelmann | 044fa3a | 2016-01-17 11:01:12 +0100 | [diff] [blame] | 1062 | batadv_neigh_ifinfo_put(neigh_ifinfo); |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1063 | neigh_ifinfo = NULL; |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1064 | } |
| 1065 | |
| 1066 | if (!neigh_node) { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 1067 | struct batadv_orig_node *orig_tmp; |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1068 | |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 1069 | orig_tmp = batadv_iv_ogm_orig_get(bat_priv, ethhdr->h_source); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1070 | if (!orig_tmp) |
| 1071 | goto unlock; |
| 1072 | |
Sven Eckelmann | fe8bc39 | 2012-05-12 18:33:51 +0200 | [diff] [blame] | 1073 | neigh_node = batadv_iv_ogm_neigh_new(if_incoming, |
| 1074 | ethhdr->h_source, |
Antonio Quartulli | 863dd7a | 2013-03-25 13:49:46 +0100 | [diff] [blame] | 1075 | orig_node, orig_tmp); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1076 | |
Sven Eckelmann | 5d96731 | 2016-01-17 11:01:09 +0100 | [diff] [blame] | 1077 | batadv_orig_node_put(orig_tmp); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1078 | if (!neigh_node) |
| 1079 | goto unlock; |
Markus Pargmann | 23badd6 | 2014-12-26 12:41:33 +0100 | [diff] [blame] | 1080 | } else { |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 1081 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 1082 | "Updating existing last-hop neighbor of originator\n"); |
Markus Pargmann | 23badd6 | 2014-12-26 12:41:33 +0100 | [diff] [blame] | 1083 | } |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1084 | |
| 1085 | rcu_read_unlock(); |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1086 | neigh_ifinfo = batadv_neigh_ifinfo_new(neigh_node, if_outgoing); |
| 1087 | if (!neigh_ifinfo) |
| 1088 | goto out; |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1089 | |
Marek Lindner | d7b2a97 | 2012-03-01 15:35:19 +0800 | [diff] [blame] | 1090 | neigh_node->last_seen = jiffies; |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1091 | |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1092 | spin_lock_bh(&neigh_node->ifinfo_lock); |
| 1093 | batadv_ring_buffer_set(neigh_ifinfo->bat_iv.tq_recv, |
| 1094 | &neigh_ifinfo->bat_iv.tq_index, |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 1095 | batadv_ogm_packet->tq); |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1096 | tq_avg = batadv_ring_buffer_avg(neigh_ifinfo->bat_iv.tq_recv); |
| 1097 | neigh_ifinfo->bat_iv.tq_avg = tq_avg; |
| 1098 | spin_unlock_bh(&neigh_node->ifinfo_lock); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1099 | |
Simon Wunderlich | 7c24bbb | 2013-05-23 13:07:42 +0200 | [diff] [blame] | 1100 | if (dup_status == BATADV_NO_DUP) { |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1101 | orig_ifinfo->last_ttl = batadv_ogm_packet->ttl; |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1102 | neigh_ifinfo->last_ttl = batadv_ogm_packet->ttl; |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1103 | } |
| 1104 | |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1105 | /* if this neighbor already is our next hop there is nothing |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 1106 | * to change |
| 1107 | */ |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1108 | router = batadv_orig_router_get(orig_node, if_outgoing); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1109 | if (router == neigh_node) |
Marek Lindner | e1bf0c1 | 2013-04-23 21:40:01 +0800 | [diff] [blame] | 1110 | goto out; |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1111 | |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1112 | if (router) { |
| 1113 | router_ifinfo = batadv_neigh_ifinfo_get(router, if_outgoing); |
| 1114 | if (!router_ifinfo) |
| 1115 | goto out; |
| 1116 | |
| 1117 | /* if this neighbor does not offer a better TQ we won't |
| 1118 | * consider it |
| 1119 | */ |
| 1120 | if (router_ifinfo->bat_iv.tq_avg > neigh_ifinfo->bat_iv.tq_avg) |
| 1121 | goto out; |
| 1122 | } |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1123 | |
| 1124 | /* if the TQ is the same and the link not more symmetric we |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 1125 | * won't consider it either |
| 1126 | */ |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1127 | if (router_ifinfo && |
Markus Pargmann | 01b97a3 | 2014-12-26 12:41:30 +0100 | [diff] [blame] | 1128 | neigh_ifinfo->bat_iv.tq_avg == router_ifinfo->bat_iv.tq_avg) { |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1129 | orig_node_tmp = router->orig_node; |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 1130 | spin_lock_bh(&orig_node_tmp->bat_iv.ogm_cnt_lock); |
Linus LĂĽssing | 7caf69f | 2012-09-18 03:01:08 +0200 | [diff] [blame] | 1131 | if_num = router->if_incoming->if_num; |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 1132 | sum_orig = orig_node_tmp->bat_iv.bcast_own_sum[if_num]; |
| 1133 | spin_unlock_bh(&orig_node_tmp->bat_iv.ogm_cnt_lock); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1134 | |
| 1135 | orig_node_tmp = neigh_node->orig_node; |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 1136 | spin_lock_bh(&orig_node_tmp->bat_iv.ogm_cnt_lock); |
Linus LĂĽssing | 7caf69f | 2012-09-18 03:01:08 +0200 | [diff] [blame] | 1137 | if_num = neigh_node->if_incoming->if_num; |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 1138 | sum_neigh = orig_node_tmp->bat_iv.bcast_own_sum[if_num]; |
| 1139 | spin_unlock_bh(&orig_node_tmp->bat_iv.ogm_cnt_lock); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1140 | |
Sven Eckelmann | bbb1f90 | 2012-07-08 17:13:15 +0200 | [diff] [blame] | 1141 | if (sum_orig >= sum_neigh) |
Marek Lindner | e1bf0c1 | 2013-04-23 21:40:01 +0800 | [diff] [blame] | 1142 | goto out; |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1143 | } |
| 1144 | |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1145 | batadv_update_route(bat_priv, orig_node, if_outgoing, neigh_node); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1146 | goto out; |
| 1147 | |
| 1148 | unlock: |
| 1149 | rcu_read_unlock(); |
| 1150 | out: |
| 1151 | if (neigh_node) |
Sven Eckelmann | 25bb250 | 2016-01-17 11:01:11 +0100 | [diff] [blame] | 1152 | batadv_neigh_node_put(neigh_node); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1153 | if (router) |
Sven Eckelmann | 25bb250 | 2016-01-17 11:01:11 +0100 | [diff] [blame] | 1154 | batadv_neigh_node_put(router); |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1155 | if (neigh_ifinfo) |
Sven Eckelmann | 044fa3a | 2016-01-17 11:01:12 +0100 | [diff] [blame] | 1156 | batadv_neigh_ifinfo_put(neigh_ifinfo); |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1157 | if (router_ifinfo) |
Sven Eckelmann | 044fa3a | 2016-01-17 11:01:12 +0100 | [diff] [blame] | 1158 | batadv_neigh_ifinfo_put(router_ifinfo); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1159 | } |
| 1160 | |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1161 | /** |
| 1162 | * batadv_iv_ogm_calc_tq - calculate tq for current received ogm packet |
| 1163 | * @orig_node: the orig node who originally emitted the ogm packet |
| 1164 | * @orig_neigh_node: the orig node struct of the neighbor who sent the packet |
| 1165 | * @batadv_ogm_packet: the ogm packet |
| 1166 | * @if_incoming: interface where the packet was received |
| 1167 | * @if_outgoing: interface for which the retransmission should be considered |
| 1168 | * |
Sven Eckelmann | 4b426b1 | 2016-02-22 21:02:39 +0100 | [diff] [blame] | 1169 | * Return: true if the link can be considered bidirectional, false otherwise |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1170 | */ |
Sven Eckelmann | 4b426b1 | 2016-02-22 21:02:39 +0100 | [diff] [blame] | 1171 | static bool batadv_iv_ogm_calc_tq(struct batadv_orig_node *orig_node, |
| 1172 | struct batadv_orig_node *orig_neigh_node, |
| 1173 | struct batadv_ogm_packet *batadv_ogm_packet, |
| 1174 | struct batadv_hard_iface *if_incoming, |
| 1175 | struct batadv_hard_iface *if_outgoing) |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1176 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 1177 | struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface); |
| 1178 | struct batadv_neigh_node *neigh_node = NULL, *tmp_neigh_node; |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1179 | struct batadv_neigh_ifinfo *neigh_ifinfo; |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 1180 | u8 total_count; |
| 1181 | u8 orig_eq_count, neigh_rq_count, neigh_rq_inv, tq_own; |
Sven Eckelmann | 42d0b04 | 2012-06-03 22:19:17 +0200 | [diff] [blame] | 1182 | unsigned int neigh_rq_inv_cube, neigh_rq_max_cube; |
Sven Eckelmann | d285f52 | 2016-02-16 10:47:07 +0100 | [diff] [blame] | 1183 | int if_num; |
| 1184 | unsigned int tq_asym_penalty, inv_asym_penalty; |
Sven Eckelmann | 42d0b04 | 2012-06-03 22:19:17 +0200 | [diff] [blame] | 1185 | unsigned int combined_tq; |
Sven Eckelmann | d285f52 | 2016-02-16 10:47:07 +0100 | [diff] [blame] | 1186 | unsigned int tq_iface_penalty; |
Sven Eckelmann | 4b426b1 | 2016-02-22 21:02:39 +0100 | [diff] [blame] | 1187 | bool ret = false; |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1188 | |
| 1189 | /* find corresponding one hop neighbor */ |
| 1190 | rcu_read_lock(); |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1191 | hlist_for_each_entry_rcu(tmp_neigh_node, |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1192 | &orig_neigh_node->neigh_list, list) { |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 1193 | if (!batadv_compare_eth(tmp_neigh_node->addr, |
| 1194 | orig_neigh_node->orig)) |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1195 | continue; |
| 1196 | |
| 1197 | if (tmp_neigh_node->if_incoming != if_incoming) |
| 1198 | continue; |
| 1199 | |
Sven Eckelmann | 77ae32e | 2016-01-16 10:29:53 +0100 | [diff] [blame] | 1200 | if (!kref_get_unless_zero(&tmp_neigh_node->refcount)) |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1201 | continue; |
| 1202 | |
| 1203 | neigh_node = tmp_neigh_node; |
| 1204 | break; |
| 1205 | } |
| 1206 | rcu_read_unlock(); |
| 1207 | |
| 1208 | if (!neigh_node) |
Sven Eckelmann | fe8bc39 | 2012-05-12 18:33:51 +0200 | [diff] [blame] | 1209 | neigh_node = batadv_iv_ogm_neigh_new(if_incoming, |
| 1210 | orig_neigh_node->orig, |
| 1211 | orig_neigh_node, |
Antonio Quartulli | 863dd7a | 2013-03-25 13:49:46 +0100 | [diff] [blame] | 1212 | orig_neigh_node); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1213 | |
| 1214 | if (!neigh_node) |
| 1215 | goto out; |
| 1216 | |
Marek Lindner | d7b2a97 | 2012-03-01 15:35:19 +0800 | [diff] [blame] | 1217 | /* if orig_node is direct neighbor update neigh_node last_seen */ |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1218 | if (orig_node == orig_neigh_node) |
Marek Lindner | d7b2a97 | 2012-03-01 15:35:19 +0800 | [diff] [blame] | 1219 | neigh_node->last_seen = jiffies; |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1220 | |
Marek Lindner | d7b2a97 | 2012-03-01 15:35:19 +0800 | [diff] [blame] | 1221 | orig_node->last_seen = jiffies; |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1222 | |
| 1223 | /* find packet count of corresponding one hop neighbor */ |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 1224 | spin_lock_bh(&orig_node->bat_iv.ogm_cnt_lock); |
| 1225 | if_num = if_incoming->if_num; |
| 1226 | orig_eq_count = orig_neigh_node->bat_iv.bcast_own_sum[if_num]; |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1227 | neigh_ifinfo = batadv_neigh_ifinfo_new(neigh_node, if_outgoing); |
| 1228 | if (neigh_ifinfo) { |
| 1229 | neigh_rq_count = neigh_ifinfo->bat_iv.real_packet_count; |
Sven Eckelmann | 044fa3a | 2016-01-17 11:01:12 +0100 | [diff] [blame] | 1230 | batadv_neigh_ifinfo_put(neigh_ifinfo); |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1231 | } else { |
| 1232 | neigh_rq_count = 0; |
| 1233 | } |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 1234 | spin_unlock_bh(&orig_node->bat_iv.ogm_cnt_lock); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1235 | |
| 1236 | /* pay attention to not get a value bigger than 100 % */ |
Sven Eckelmann | c67893d | 2012-07-08 18:33:51 +0200 | [diff] [blame] | 1237 | if (orig_eq_count > neigh_rq_count) |
| 1238 | total_count = neigh_rq_count; |
| 1239 | else |
| 1240 | total_count = orig_eq_count; |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1241 | |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 1242 | /* if we have too few packets (too less data) we set tq_own to zero |
| 1243 | * if we receive too few packets it is not considered bidirectional |
| 1244 | */ |
Sven Eckelmann | 42d0b04 | 2012-06-03 22:19:17 +0200 | [diff] [blame] | 1245 | if (total_count < BATADV_TQ_LOCAL_BIDRECT_SEND_MINIMUM || |
| 1246 | neigh_rq_count < BATADV_TQ_LOCAL_BIDRECT_RECV_MINIMUM) |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1247 | tq_own = 0; |
| 1248 | else |
| 1249 | /* neigh_node->real_packet_count is never zero as we |
| 1250 | * only purge old information when getting new |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 1251 | * information |
| 1252 | */ |
Sven Eckelmann | 42d0b04 | 2012-06-03 22:19:17 +0200 | [diff] [blame] | 1253 | tq_own = (BATADV_TQ_MAX_VALUE * total_count) / neigh_rq_count; |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1254 | |
Sven Eckelmann | 21a1236 | 2012-03-07 09:07:46 +0100 | [diff] [blame] | 1255 | /* 1 - ((1-x) ** 3), normalized to TQ_MAX_VALUE this does |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1256 | * affect the nearly-symmetric links only a little, but |
| 1257 | * punishes asymmetric links more. This will give a value |
| 1258 | * between 0 and TQ_MAX_VALUE |
| 1259 | */ |
Sven Eckelmann | 42d0b04 | 2012-06-03 22:19:17 +0200 | [diff] [blame] | 1260 | neigh_rq_inv = BATADV_TQ_LOCAL_WINDOW_SIZE - neigh_rq_count; |
| 1261 | neigh_rq_inv_cube = neigh_rq_inv * neigh_rq_inv * neigh_rq_inv; |
| 1262 | neigh_rq_max_cube = BATADV_TQ_LOCAL_WINDOW_SIZE * |
| 1263 | BATADV_TQ_LOCAL_WINDOW_SIZE * |
| 1264 | BATADV_TQ_LOCAL_WINDOW_SIZE; |
| 1265 | inv_asym_penalty = BATADV_TQ_MAX_VALUE * neigh_rq_inv_cube; |
| 1266 | inv_asym_penalty /= neigh_rq_max_cube; |
| 1267 | tq_asym_penalty = BATADV_TQ_MAX_VALUE - inv_asym_penalty; |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1268 | |
Simon Wunderlich | c039876 | 2013-11-13 19:14:48 +0100 | [diff] [blame] | 1269 | /* penalize if the OGM is forwarded on the same interface. WiFi |
| 1270 | * interfaces and other half duplex devices suffer from throughput |
| 1271 | * drops as they can't send and receive at the same time. |
| 1272 | */ |
| 1273 | tq_iface_penalty = BATADV_TQ_MAX_VALUE; |
| 1274 | if (if_outgoing && (if_incoming == if_outgoing) && |
| 1275 | batadv_is_wifi_netdev(if_outgoing->net_dev)) |
| 1276 | tq_iface_penalty = batadv_hop_penalty(BATADV_TQ_MAX_VALUE, |
| 1277 | bat_priv); |
| 1278 | |
| 1279 | combined_tq = batadv_ogm_packet->tq * |
| 1280 | tq_own * |
| 1281 | tq_asym_penalty * |
| 1282 | tq_iface_penalty; |
| 1283 | combined_tq /= BATADV_TQ_MAX_VALUE * |
| 1284 | BATADV_TQ_MAX_VALUE * |
| 1285 | BATADV_TQ_MAX_VALUE; |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 1286 | batadv_ogm_packet->tq = combined_tq; |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1287 | |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 1288 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
Simon Wunderlich | c039876 | 2013-11-13 19:14:48 +0100 | [diff] [blame] | 1289 | "bidirectional: orig = %-15pM neigh = %-15pM => own_bcast = %2i, real recv = %2i, local tq: %3i, asym_penalty: %3i, iface_penalty: %3i, total tq: %3i, if_incoming = %s, if_outgoing = %s\n", |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 1290 | orig_node->orig, orig_neigh_node->orig, total_count, |
Simon Wunderlich | c039876 | 2013-11-13 19:14:48 +0100 | [diff] [blame] | 1291 | neigh_rq_count, tq_own, tq_asym_penalty, tq_iface_penalty, |
| 1292 | batadv_ogm_packet->tq, if_incoming->net_dev->name, |
| 1293 | if_outgoing ? if_outgoing->net_dev->name : "DEFAULT"); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1294 | |
| 1295 | /* if link has the minimum required transmission quality |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 1296 | * consider it bidirectional |
| 1297 | */ |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 1298 | if (batadv_ogm_packet->tq >= BATADV_TQ_TOTAL_BIDRECT_LIMIT) |
Sven Eckelmann | 4b426b1 | 2016-02-22 21:02:39 +0100 | [diff] [blame] | 1299 | ret = true; |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1300 | |
| 1301 | out: |
| 1302 | if (neigh_node) |
Sven Eckelmann | 25bb250 | 2016-01-17 11:01:11 +0100 | [diff] [blame] | 1303 | batadv_neigh_node_put(neigh_node); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1304 | return ret; |
| 1305 | } |
| 1306 | |
Simon Wunderlich | 7c24bbb | 2013-05-23 13:07:42 +0200 | [diff] [blame] | 1307 | /** |
| 1308 | * batadv_iv_ogm_update_seqnos - process a batman packet for all interfaces, |
| 1309 | * adjust the sequence number and find out whether it is a duplicate |
| 1310 | * @ethhdr: ethernet header of the packet |
| 1311 | * @batadv_ogm_packet: OGM packet to be considered |
| 1312 | * @if_incoming: interface on which the OGM packet was received |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1313 | * @if_outgoing: interface for which the retransmission should be considered |
Simon Wunderlich | 7c24bbb | 2013-05-23 13:07:42 +0200 | [diff] [blame] | 1314 | * |
Sven Eckelmann | 62fe710 | 2015-09-15 19:00:48 +0200 | [diff] [blame] | 1315 | * Return: duplicate status as enum batadv_dup_status |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1316 | */ |
Simon Wunderlich | 7c24bbb | 2013-05-23 13:07:42 +0200 | [diff] [blame] | 1317 | static enum batadv_dup_status |
Sven Eckelmann | fe8bc39 | 2012-05-12 18:33:51 +0200 | [diff] [blame] | 1318 | batadv_iv_ogm_update_seqnos(const struct ethhdr *ethhdr, |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 1319 | const struct batadv_ogm_packet *batadv_ogm_packet, |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1320 | const struct batadv_hard_iface *if_incoming, |
| 1321 | struct batadv_hard_iface *if_outgoing) |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1322 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 1323 | struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface); |
| 1324 | struct batadv_orig_node *orig_node; |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1325 | struct batadv_orig_ifinfo *orig_ifinfo = NULL; |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1326 | struct batadv_neigh_node *neigh_node; |
| 1327 | struct batadv_neigh_ifinfo *neigh_ifinfo; |
Sven Eckelmann | 4b426b1 | 2016-02-22 21:02:39 +0100 | [diff] [blame] | 1328 | bool is_dup; |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 1329 | s32 seq_diff; |
Sven Eckelmann | 4b426b1 | 2016-02-22 21:02:39 +0100 | [diff] [blame] | 1330 | bool need_update = false; |
Simon Wunderlich | 7c24bbb | 2013-05-23 13:07:42 +0200 | [diff] [blame] | 1331 | int set_mark; |
| 1332 | enum batadv_dup_status ret = BATADV_NO_DUP; |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 1333 | u32 seqno = ntohl(batadv_ogm_packet->seqno); |
| 1334 | u8 *neigh_addr; |
| 1335 | u8 packet_count; |
Antonio Quartulli | 0538f75 | 2013-09-02 12:15:01 +0200 | [diff] [blame] | 1336 | unsigned long *bitmap; |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1337 | |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 1338 | orig_node = batadv_iv_ogm_orig_get(bat_priv, batadv_ogm_packet->orig); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1339 | if (!orig_node) |
Simon Wunderlich | 7c24bbb | 2013-05-23 13:07:42 +0200 | [diff] [blame] | 1340 | return BATADV_NO_DUP; |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1341 | |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1342 | orig_ifinfo = batadv_orig_ifinfo_new(orig_node, if_outgoing); |
| 1343 | if (WARN_ON(!orig_ifinfo)) { |
Sven Eckelmann | 5d96731 | 2016-01-17 11:01:09 +0100 | [diff] [blame] | 1344 | batadv_orig_node_put(orig_node); |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1345 | return 0; |
| 1346 | } |
| 1347 | |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 1348 | spin_lock_bh(&orig_node->bat_iv.ogm_cnt_lock); |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1349 | seq_diff = seqno - orig_ifinfo->last_real_seqno; |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1350 | |
| 1351 | /* signalize caller that the packet is to be dropped. */ |
Antonio Quartulli | 1e5cc26 | 2012-02-26 15:39:42 +0100 | [diff] [blame] | 1352 | if (!hlist_empty(&orig_node->neigh_list) && |
Sven Eckelmann | 30d3c51 | 2012-05-12 02:09:36 +0200 | [diff] [blame] | 1353 | batadv_window_protected(bat_priv, seq_diff, |
Simon Wunderlich | 81f0268 | 2015-11-23 19:57:22 +0100 | [diff] [blame] | 1354 | BATADV_TQ_LOCAL_WINDOW_SIZE, |
| 1355 | &orig_ifinfo->batman_seqno_reset, NULL)) { |
Simon Wunderlich | 7c24bbb | 2013-05-23 13:07:42 +0200 | [diff] [blame] | 1356 | ret = BATADV_PROTECTED; |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1357 | goto out; |
Simon Wunderlich | 7c24bbb | 2013-05-23 13:07:42 +0200 | [diff] [blame] | 1358 | } |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1359 | |
| 1360 | rcu_read_lock(); |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1361 | hlist_for_each_entry_rcu(neigh_node, &orig_node->neigh_list, list) { |
| 1362 | neigh_ifinfo = batadv_neigh_ifinfo_new(neigh_node, |
| 1363 | if_outgoing); |
| 1364 | if (!neigh_ifinfo) |
| 1365 | continue; |
| 1366 | |
| 1367 | neigh_addr = neigh_node->addr; |
| 1368 | is_dup = batadv_test_bit(neigh_ifinfo->bat_iv.real_bits, |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1369 | orig_ifinfo->last_real_seqno, |
Simon Wunderlich | 7c24bbb | 2013-05-23 13:07:42 +0200 | [diff] [blame] | 1370 | seqno); |
| 1371 | |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 1372 | if (batadv_compare_eth(neigh_addr, ethhdr->h_source) && |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1373 | neigh_node->if_incoming == if_incoming) { |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1374 | set_mark = 1; |
Simon Wunderlich | 7c24bbb | 2013-05-23 13:07:42 +0200 | [diff] [blame] | 1375 | if (is_dup) |
| 1376 | ret = BATADV_NEIGH_DUP; |
| 1377 | } else { |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1378 | set_mark = 0; |
Simon Wunderlich | 7c24bbb | 2013-05-23 13:07:42 +0200 | [diff] [blame] | 1379 | if (is_dup && (ret != BATADV_NEIGH_DUP)) |
| 1380 | ret = BATADV_ORIG_DUP; |
| 1381 | } |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1382 | |
| 1383 | /* if the window moved, set the update flag. */ |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1384 | bitmap = neigh_ifinfo->bat_iv.real_bits; |
Antonio Quartulli | 0538f75 | 2013-09-02 12:15:01 +0200 | [diff] [blame] | 1385 | need_update |= batadv_bit_get_packet(bat_priv, bitmap, |
Sven Eckelmann | 0f5f9322 | 2012-05-12 02:09:25 +0200 | [diff] [blame] | 1386 | seq_diff, set_mark); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1387 | |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1388 | packet_count = bitmap_weight(bitmap, |
Sven Eckelmann | bbb1f90 | 2012-07-08 17:13:15 +0200 | [diff] [blame] | 1389 | BATADV_TQ_LOCAL_WINDOW_SIZE); |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1390 | neigh_ifinfo->bat_iv.real_packet_count = packet_count; |
Sven Eckelmann | 044fa3a | 2016-01-17 11:01:12 +0100 | [diff] [blame] | 1391 | batadv_neigh_ifinfo_put(neigh_ifinfo); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1392 | } |
| 1393 | rcu_read_unlock(); |
| 1394 | |
| 1395 | if (need_update) { |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 1396 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1397 | "%s updating last_seqno: old %u, new %u\n", |
| 1398 | if_outgoing ? if_outgoing->net_dev->name : "DEFAULT", |
| 1399 | orig_ifinfo->last_real_seqno, seqno); |
| 1400 | orig_ifinfo->last_real_seqno = seqno; |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1401 | } |
| 1402 | |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1403 | out: |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 1404 | spin_unlock_bh(&orig_node->bat_iv.ogm_cnt_lock); |
Sven Eckelmann | 5d96731 | 2016-01-17 11:01:09 +0100 | [diff] [blame] | 1405 | batadv_orig_node_put(orig_node); |
Sven Eckelmann | 35f9477 | 2016-01-17 11:01:13 +0100 | [diff] [blame] | 1406 | batadv_orig_ifinfo_put(orig_ifinfo); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1407 | return ret; |
| 1408 | } |
| 1409 | |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1410 | /** |
| 1411 | * batadv_iv_ogm_process_per_outif - process a batman iv OGM for an outgoing if |
| 1412 | * @skb: the skb containing the OGM |
Martin Hundebøll | 95298a9 | 2014-07-15 09:41:05 +0200 | [diff] [blame] | 1413 | * @ogm_offset: offset from skb->data to start of ogm header |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1414 | * @orig_node: the (cached) orig node for the originator of this OGM |
| 1415 | * @if_incoming: the interface where this packet was received |
| 1416 | * @if_outgoing: the interface for which the packet should be considered |
| 1417 | */ |
| 1418 | static void |
| 1419 | batadv_iv_ogm_process_per_outif(const struct sk_buff *skb, int ogm_offset, |
| 1420 | struct batadv_orig_node *orig_node, |
| 1421 | struct batadv_hard_iface *if_incoming, |
| 1422 | struct batadv_hard_iface *if_outgoing) |
| 1423 | { |
| 1424 | struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface); |
Marek Lindner | 4ff1e2a | 2015-08-04 21:09:58 +0800 | [diff] [blame] | 1425 | struct batadv_hardif_neigh_node *hardif_neigh = NULL; |
Sven Eckelmann | 4f248cf | 2015-06-09 20:50:49 +0200 | [diff] [blame] | 1426 | struct batadv_neigh_node *router = NULL; |
| 1427 | struct batadv_neigh_node *router_router = NULL; |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1428 | struct batadv_orig_node *orig_neigh_node; |
| 1429 | struct batadv_orig_ifinfo *orig_ifinfo; |
| 1430 | struct batadv_neigh_node *orig_neigh_router = NULL; |
| 1431 | struct batadv_neigh_ifinfo *router_ifinfo = NULL; |
| 1432 | struct batadv_ogm_packet *ogm_packet; |
| 1433 | enum batadv_dup_status dup_status; |
| 1434 | bool is_from_best_next_hop = false; |
| 1435 | bool is_single_hop_neigh = false; |
| 1436 | bool sameseq, similar_ttl; |
| 1437 | struct sk_buff *skb_priv; |
| 1438 | struct ethhdr *ethhdr; |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 1439 | u8 *prev_sender; |
Sven Eckelmann | 4b426b1 | 2016-02-22 21:02:39 +0100 | [diff] [blame] | 1440 | bool is_bidirect; |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1441 | |
| 1442 | /* create a private copy of the skb, as some functions change tq value |
| 1443 | * and/or flags. |
| 1444 | */ |
| 1445 | skb_priv = skb_copy(skb, GFP_ATOMIC); |
| 1446 | if (!skb_priv) |
| 1447 | return; |
| 1448 | |
| 1449 | ethhdr = eth_hdr(skb_priv); |
| 1450 | ogm_packet = (struct batadv_ogm_packet *)(skb_priv->data + ogm_offset); |
| 1451 | |
| 1452 | dup_status = batadv_iv_ogm_update_seqnos(ethhdr, ogm_packet, |
| 1453 | if_incoming, if_outgoing); |
| 1454 | if (batadv_compare_eth(ethhdr->h_source, ogm_packet->orig)) |
| 1455 | is_single_hop_neigh = true; |
| 1456 | |
| 1457 | if (dup_status == BATADV_PROTECTED) { |
| 1458 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
| 1459 | "Drop packet: packet within seqno protection time (sender: %pM)\n", |
| 1460 | ethhdr->h_source); |
| 1461 | goto out; |
| 1462 | } |
| 1463 | |
| 1464 | if (ogm_packet->tq == 0) { |
| 1465 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
| 1466 | "Drop packet: originator packet with tq equal 0\n"); |
| 1467 | goto out; |
| 1468 | } |
| 1469 | |
Marek Lindner | 4ff1e2a | 2015-08-04 21:09:58 +0800 | [diff] [blame] | 1470 | if (is_single_hop_neigh) { |
| 1471 | hardif_neigh = batadv_hardif_neigh_get(if_incoming, |
| 1472 | ethhdr->h_source); |
| 1473 | if (hardif_neigh) |
| 1474 | hardif_neigh->last_seen = jiffies; |
| 1475 | } |
| 1476 | |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1477 | router = batadv_orig_router_get(orig_node, if_outgoing); |
| 1478 | if (router) { |
| 1479 | router_router = batadv_orig_router_get(router->orig_node, |
| 1480 | if_outgoing); |
| 1481 | router_ifinfo = batadv_neigh_ifinfo_get(router, if_outgoing); |
| 1482 | } |
| 1483 | |
| 1484 | if ((router_ifinfo && router_ifinfo->bat_iv.tq_avg != 0) && |
| 1485 | (batadv_compare_eth(router->addr, ethhdr->h_source))) |
| 1486 | is_from_best_next_hop = true; |
| 1487 | |
| 1488 | prev_sender = ogm_packet->prev_sender; |
| 1489 | /* avoid temporary routing loops */ |
| 1490 | if (router && router_router && |
| 1491 | (batadv_compare_eth(router->addr, prev_sender)) && |
| 1492 | !(batadv_compare_eth(ogm_packet->orig, prev_sender)) && |
| 1493 | (batadv_compare_eth(router->addr, router_router->addr))) { |
| 1494 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
| 1495 | "Drop packet: ignoring all rebroadcast packets that may make me loop (sender: %pM)\n", |
| 1496 | ethhdr->h_source); |
| 1497 | goto out; |
| 1498 | } |
| 1499 | |
| 1500 | if (if_outgoing == BATADV_IF_DEFAULT) |
| 1501 | batadv_tvlv_ogm_receive(bat_priv, ogm_packet, orig_node); |
| 1502 | |
| 1503 | /* if sender is a direct neighbor the sender mac equals |
| 1504 | * originator mac |
| 1505 | */ |
| 1506 | if (is_single_hop_neigh) |
| 1507 | orig_neigh_node = orig_node; |
| 1508 | else |
| 1509 | orig_neigh_node = batadv_iv_ogm_orig_get(bat_priv, |
| 1510 | ethhdr->h_source); |
| 1511 | |
| 1512 | if (!orig_neigh_node) |
| 1513 | goto out; |
| 1514 | |
| 1515 | /* Update nc_nodes of the originator */ |
| 1516 | batadv_nc_update_nc_node(bat_priv, orig_node, orig_neigh_node, |
| 1517 | ogm_packet, is_single_hop_neigh); |
| 1518 | |
| 1519 | orig_neigh_router = batadv_orig_router_get(orig_neigh_node, |
| 1520 | if_outgoing); |
| 1521 | |
| 1522 | /* drop packet if sender is not a direct neighbor and if we |
| 1523 | * don't route towards it |
| 1524 | */ |
| 1525 | if (!is_single_hop_neigh && (!orig_neigh_router)) { |
| 1526 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
| 1527 | "Drop packet: OGM via unknown neighbor!\n"); |
| 1528 | goto out_neigh; |
| 1529 | } |
| 1530 | |
| 1531 | is_bidirect = batadv_iv_ogm_calc_tq(orig_node, orig_neigh_node, |
| 1532 | ogm_packet, if_incoming, |
| 1533 | if_outgoing); |
| 1534 | |
| 1535 | /* update ranking if it is not a duplicate or has the same |
| 1536 | * seqno and similar ttl as the non-duplicate |
| 1537 | */ |
| 1538 | orig_ifinfo = batadv_orig_ifinfo_new(orig_node, if_outgoing); |
| 1539 | if (!orig_ifinfo) |
| 1540 | goto out_neigh; |
| 1541 | |
| 1542 | sameseq = orig_ifinfo->last_real_seqno == ntohl(ogm_packet->seqno); |
| 1543 | similar_ttl = (orig_ifinfo->last_ttl - 3) <= ogm_packet->ttl; |
| 1544 | |
| 1545 | if (is_bidirect && ((dup_status == BATADV_NO_DUP) || |
| 1546 | (sameseq && similar_ttl))) { |
| 1547 | batadv_iv_ogm_orig_update(bat_priv, orig_node, |
| 1548 | orig_ifinfo, ethhdr, |
| 1549 | ogm_packet, if_incoming, |
| 1550 | if_outgoing, dup_status); |
| 1551 | } |
Sven Eckelmann | 35f9477 | 2016-01-17 11:01:13 +0100 | [diff] [blame] | 1552 | batadv_orig_ifinfo_put(orig_ifinfo); |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1553 | |
Simon Wunderlich | ef0a937 | 2013-11-13 19:14:49 +0100 | [diff] [blame] | 1554 | /* only forward for specific interface, not for the default one. */ |
| 1555 | if (if_outgoing == BATADV_IF_DEFAULT) |
| 1556 | goto out_neigh; |
| 1557 | |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1558 | /* is single hop (direct) neighbor */ |
| 1559 | if (is_single_hop_neigh) { |
| 1560 | /* OGMs from secondary interfaces should only scheduled once |
| 1561 | * per interface where it has been received, not multiple times |
| 1562 | */ |
| 1563 | if ((ogm_packet->ttl <= 2) && |
| 1564 | (if_incoming != if_outgoing)) { |
| 1565 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
| 1566 | "Drop packet: OGM from secondary interface and wrong outgoing interface\n"); |
| 1567 | goto out_neigh; |
| 1568 | } |
| 1569 | /* mark direct link on incoming interface */ |
| 1570 | batadv_iv_ogm_forward(orig_node, ethhdr, ogm_packet, |
| 1571 | is_single_hop_neigh, |
Simon Wunderlich | ef0a937 | 2013-11-13 19:14:49 +0100 | [diff] [blame] | 1572 | is_from_best_next_hop, if_incoming, |
| 1573 | if_outgoing); |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1574 | |
| 1575 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
| 1576 | "Forwarding packet: rebroadcast neighbor packet with direct link flag\n"); |
| 1577 | goto out_neigh; |
| 1578 | } |
| 1579 | |
| 1580 | /* multihop originator */ |
| 1581 | if (!is_bidirect) { |
| 1582 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
| 1583 | "Drop packet: not received via bidirectional link\n"); |
| 1584 | goto out_neigh; |
| 1585 | } |
| 1586 | |
| 1587 | if (dup_status == BATADV_NEIGH_DUP) { |
| 1588 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
| 1589 | "Drop packet: duplicate packet received\n"); |
| 1590 | goto out_neigh; |
| 1591 | } |
| 1592 | |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1593 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
| 1594 | "Forwarding packet: rebroadcast originator packet\n"); |
| 1595 | batadv_iv_ogm_forward(orig_node, ethhdr, ogm_packet, |
| 1596 | is_single_hop_neigh, is_from_best_next_hop, |
Simon Wunderlich | ef0a937 | 2013-11-13 19:14:49 +0100 | [diff] [blame] | 1597 | if_incoming, if_outgoing); |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1598 | |
| 1599 | out_neigh: |
| 1600 | if ((orig_neigh_node) && (!is_single_hop_neigh)) |
Sven Eckelmann | 5d96731 | 2016-01-17 11:01:09 +0100 | [diff] [blame] | 1601 | batadv_orig_node_put(orig_neigh_node); |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1602 | out: |
Simon Wunderlich | c1e517f | 2014-03-26 15:46:21 +0100 | [diff] [blame] | 1603 | if (router_ifinfo) |
Sven Eckelmann | 044fa3a | 2016-01-17 11:01:12 +0100 | [diff] [blame] | 1604 | batadv_neigh_ifinfo_put(router_ifinfo); |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1605 | if (router) |
Sven Eckelmann | 25bb250 | 2016-01-17 11:01:11 +0100 | [diff] [blame] | 1606 | batadv_neigh_node_put(router); |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1607 | if (router_router) |
Sven Eckelmann | 25bb250 | 2016-01-17 11:01:11 +0100 | [diff] [blame] | 1608 | batadv_neigh_node_put(router_router); |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1609 | if (orig_neigh_router) |
Sven Eckelmann | 25bb250 | 2016-01-17 11:01:11 +0100 | [diff] [blame] | 1610 | batadv_neigh_node_put(orig_neigh_router); |
Marek Lindner | 4ff1e2a | 2015-08-04 21:09:58 +0800 | [diff] [blame] | 1611 | if (hardif_neigh) |
Sven Eckelmann | accadc3 | 2016-01-17 11:01:14 +0100 | [diff] [blame] | 1612 | batadv_hardif_neigh_put(hardif_neigh); |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1613 | |
| 1614 | kfree_skb(skb_priv); |
| 1615 | } |
| 1616 | |
| 1617 | /** |
| 1618 | * batadv_iv_ogm_process - process an incoming batman iv OGM |
| 1619 | * @skb: the skb containing the OGM |
| 1620 | * @ogm_offset: offset to the OGM which should be processed (for aggregates) |
| 1621 | * @if_incoming: the interface where this packet was receved |
| 1622 | */ |
| 1623 | static void batadv_iv_ogm_process(const struct sk_buff *skb, int ogm_offset, |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 1624 | struct batadv_hard_iface *if_incoming) |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1625 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 1626 | struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface); |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1627 | struct batadv_orig_node *orig_neigh_node, *orig_node; |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 1628 | struct batadv_hard_iface *hard_iface; |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1629 | struct batadv_ogm_packet *ogm_packet; |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 1630 | u32 if_incoming_seqno; |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1631 | bool has_directlink_flag; |
| 1632 | struct ethhdr *ethhdr; |
| 1633 | bool is_my_oldorig = false; |
| 1634 | bool is_my_addr = false; |
| 1635 | bool is_my_orig = false; |
| 1636 | |
| 1637 | ogm_packet = (struct batadv_ogm_packet *)(skb->data + ogm_offset); |
| 1638 | ethhdr = eth_hdr(skb); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1639 | |
| 1640 | /* Silently drop when the batman packet is actually not a |
| 1641 | * correct packet. |
| 1642 | * |
| 1643 | * This might happen if a packet is padded (e.g. Ethernet has a |
| 1644 | * minimum frame length of 64 byte) and the aggregation interprets |
| 1645 | * it as an additional length. |
| 1646 | * |
| 1647 | * TODO: A more sane solution would be to have a bit in the |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 1648 | * batadv_ogm_packet to detect whether the packet is the last |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1649 | * packet in an aggregation. Here we expect that the padding |
| 1650 | * is always zero (or not 0x01) |
| 1651 | */ |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1652 | if (ogm_packet->packet_type != BATADV_IV_OGM) |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1653 | return; |
| 1654 | |
| 1655 | /* could be changed by schedule_own_packet() */ |
Marek Lindner | 1451151 | 2012-08-02 17:20:26 +0200 | [diff] [blame] | 1656 | if_incoming_seqno = atomic_read(&if_incoming->bat_iv.ogm_seqno); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1657 | |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1658 | if (ogm_packet->flags & BATADV_DIRECTLINK) |
| 1659 | has_directlink_flag = true; |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 1660 | else |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1661 | has_directlink_flag = false; |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1662 | |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 1663 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
Marek Lindner | e1bf0c1 | 2013-04-23 21:40:01 +0800 | [diff] [blame] | 1664 | "Received BATMAN packet via NB: %pM, IF: %s [%pM] (from OG: %pM, via prev OG: %pM, seqno %u, tq %d, TTL %d, V %d, IDF %d)\n", |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 1665 | ethhdr->h_source, if_incoming->net_dev->name, |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1666 | if_incoming->net_dev->dev_addr, ogm_packet->orig, |
| 1667 | ogm_packet->prev_sender, ntohl(ogm_packet->seqno), |
| 1668 | ogm_packet->tq, ogm_packet->ttl, |
| 1669 | ogm_packet->version, has_directlink_flag); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1670 | |
| 1671 | rcu_read_lock(); |
Sven Eckelmann | 3193e8f | 2012-05-12 02:09:42 +0200 | [diff] [blame] | 1672 | list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) { |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 1673 | if (hard_iface->if_status != BATADV_IF_ACTIVE) |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1674 | continue; |
| 1675 | |
| 1676 | if (hard_iface->soft_iface != if_incoming->soft_iface) |
| 1677 | continue; |
| 1678 | |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 1679 | if (batadv_compare_eth(ethhdr->h_source, |
| 1680 | hard_iface->net_dev->dev_addr)) |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1681 | is_my_addr = true; |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1682 | |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1683 | if (batadv_compare_eth(ogm_packet->orig, |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 1684 | hard_iface->net_dev->dev_addr)) |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1685 | is_my_orig = true; |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1686 | |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1687 | if (batadv_compare_eth(ogm_packet->prev_sender, |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 1688 | hard_iface->net_dev->dev_addr)) |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1689 | is_my_oldorig = true; |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1690 | } |
| 1691 | rcu_read_unlock(); |
| 1692 | |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1693 | if (is_my_addr) { |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 1694 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 1695 | "Drop packet: received my own broadcast (sender: %pM)\n", |
| 1696 | ethhdr->h_source); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1697 | return; |
| 1698 | } |
| 1699 | |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1700 | if (is_my_orig) { |
| 1701 | unsigned long *word; |
| 1702 | int offset; |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 1703 | s32 bit_pos; |
| 1704 | s16 if_num; |
| 1705 | u8 *weight; |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1706 | |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 1707 | orig_neigh_node = batadv_iv_ogm_orig_get(bat_priv, |
| 1708 | ethhdr->h_source); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1709 | if (!orig_neigh_node) |
| 1710 | return; |
| 1711 | |
| 1712 | /* neighbor has to indicate direct link and it has to |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 1713 | * come via the corresponding interface |
| 1714 | * save packet seqno for bidirectional check |
| 1715 | */ |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1716 | if (has_directlink_flag && |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 1717 | batadv_compare_eth(if_incoming->net_dev->dev_addr, |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1718 | ogm_packet->orig)) { |
Sven Eckelmann | 42d0b04 | 2012-06-03 22:19:17 +0200 | [diff] [blame] | 1719 | if_num = if_incoming->if_num; |
| 1720 | offset = if_num * BATADV_NUM_WORDS; |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1721 | |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 1722 | spin_lock_bh(&orig_neigh_node->bat_iv.ogm_cnt_lock); |
Antonio Quartulli | 32db6aa | 2014-09-01 14:37:29 +0200 | [diff] [blame] | 1723 | word = &orig_neigh_node->bat_iv.bcast_own[offset]; |
Sven Eckelmann | 9b4a115 | 2012-05-12 13:48:53 +0200 | [diff] [blame] | 1724 | bit_pos = if_incoming_seqno - 2; |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1725 | bit_pos -= ntohl(ogm_packet->seqno); |
Sven Eckelmann | 9b4a115 | 2012-05-12 13:48:53 +0200 | [diff] [blame] | 1726 | batadv_set_bit(word, bit_pos); |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 1727 | weight = &orig_neigh_node->bat_iv.bcast_own_sum[if_num]; |
Sven Eckelmann | 42d0b04 | 2012-06-03 22:19:17 +0200 | [diff] [blame] | 1728 | *weight = bitmap_weight(word, |
| 1729 | BATADV_TQ_LOCAL_WINDOW_SIZE); |
Antonio Quartulli | bbad0a5 | 2013-09-02 12:15:02 +0200 | [diff] [blame] | 1730 | spin_unlock_bh(&orig_neigh_node->bat_iv.ogm_cnt_lock); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1731 | } |
| 1732 | |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 1733 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 1734 | "Drop packet: originator packet from myself (via neighbor)\n"); |
Sven Eckelmann | 5d96731 | 2016-01-17 11:01:09 +0100 | [diff] [blame] | 1735 | batadv_orig_node_put(orig_neigh_node); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1736 | return; |
| 1737 | } |
| 1738 | |
| 1739 | if (is_my_oldorig) { |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 1740 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 1741 | "Drop packet: ignoring all rebroadcast echos (sender: %pM)\n", |
| 1742 | ethhdr->h_source); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1743 | return; |
| 1744 | } |
| 1745 | |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1746 | if (ogm_packet->flags & BATADV_NOT_BEST_NEXT_HOP) { |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 1747 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 1748 | "Drop packet: ignoring all packets not forwarded from the best next hop (sender: %pM)\n", |
| 1749 | ethhdr->h_source); |
Marek Lindner | 13b2541 | 2012-03-11 06:17:53 +0800 | [diff] [blame] | 1750 | return; |
| 1751 | } |
| 1752 | |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1753 | orig_node = batadv_iv_ogm_orig_get(bat_priv, ogm_packet->orig); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1754 | if (!orig_node) |
| 1755 | return; |
| 1756 | |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1757 | batadv_iv_ogm_process_per_outif(skb, ogm_offset, orig_node, |
| 1758 | if_incoming, BATADV_IF_DEFAULT); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1759 | |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1760 | rcu_read_lock(); |
| 1761 | list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) { |
| 1762 | if (hard_iface->if_status != BATADV_IF_ACTIVE) |
| 1763 | continue; |
| 1764 | |
| 1765 | if (hard_iface->soft_iface != bat_priv->soft_iface) |
| 1766 | continue; |
| 1767 | |
Sven Eckelmann | 2735344 | 2016-03-05 16:09:16 +0100 | [diff] [blame] | 1768 | if (!kref_get_unless_zero(&hard_iface->refcount)) |
| 1769 | continue; |
| 1770 | |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1771 | batadv_iv_ogm_process_per_outif(skb, ogm_offset, orig_node, |
| 1772 | if_incoming, hard_iface); |
Sven Eckelmann | 2735344 | 2016-03-05 16:09:16 +0100 | [diff] [blame] | 1773 | |
| 1774 | batadv_hardif_put(hard_iface); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1775 | } |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1776 | rcu_read_unlock(); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1777 | |
Sven Eckelmann | 5d96731 | 2016-01-17 11:01:09 +0100 | [diff] [blame] | 1778 | batadv_orig_node_put(orig_node); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1779 | } |
| 1780 | |
Antonio Quartulli | f0d9725 | 2016-05-03 01:45:34 +0800 | [diff] [blame] | 1781 | static void batadv_iv_send_outstanding_bat_ogm_packet(struct work_struct *work) |
| 1782 | { |
| 1783 | struct delayed_work *delayed_work; |
| 1784 | struct batadv_forw_packet *forw_packet; |
| 1785 | struct batadv_priv *bat_priv; |
| 1786 | |
| 1787 | delayed_work = to_delayed_work(work); |
| 1788 | forw_packet = container_of(delayed_work, struct batadv_forw_packet, |
| 1789 | delayed_work); |
| 1790 | bat_priv = netdev_priv(forw_packet->if_incoming->soft_iface); |
| 1791 | spin_lock_bh(&bat_priv->forw_bat_list_lock); |
| 1792 | hlist_del(&forw_packet->list); |
| 1793 | spin_unlock_bh(&bat_priv->forw_bat_list_lock); |
| 1794 | |
| 1795 | if (atomic_read(&bat_priv->mesh_state) == BATADV_MESH_DEACTIVATING) |
| 1796 | goto out; |
| 1797 | |
| 1798 | batadv_iv_ogm_emit(forw_packet); |
| 1799 | |
| 1800 | /* we have to have at least one packet in the queue to determine the |
| 1801 | * queues wake up time unless we are shutting down. |
| 1802 | * |
| 1803 | * only re-schedule if this is the "original" copy, e.g. the OGM of the |
| 1804 | * primary interface should only be rescheduled once per period, but |
| 1805 | * this function will be called for the forw_packet instances of the |
| 1806 | * other secondary interfaces as well. |
| 1807 | */ |
| 1808 | if (forw_packet->own && |
| 1809 | forw_packet->if_incoming == forw_packet->if_outgoing) |
| 1810 | batadv_iv_ogm_schedule(forw_packet->if_incoming); |
| 1811 | |
| 1812 | out: |
Antonio Quartulli | f0d9725 | 2016-05-03 01:45:34 +0800 | [diff] [blame] | 1813 | batadv_forw_packet_free(forw_packet); |
| 1814 | } |
| 1815 | |
Sven Eckelmann | fe8bc39 | 2012-05-12 18:33:51 +0200 | [diff] [blame] | 1816 | static int batadv_iv_ogm_receive(struct sk_buff *skb, |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 1817 | struct batadv_hard_iface *if_incoming) |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1818 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 1819 | struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface); |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1820 | struct batadv_ogm_packet *ogm_packet; |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 1821 | u8 *packet_pos; |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1822 | int ogm_offset; |
Marek Lindner | ef26157 | 2013-04-23 21:39:57 +0800 | [diff] [blame] | 1823 | bool ret; |
Marek Lindner | c3e2931 | 2012-03-04 16:56:25 +0800 | [diff] [blame] | 1824 | |
Sven Eckelmann | 7e071c7 | 2012-06-03 22:19:13 +0200 | [diff] [blame] | 1825 | ret = batadv_check_management_packet(skb, if_incoming, BATADV_OGM_HLEN); |
Marek Lindner | c3e2931 | 2012-03-04 16:56:25 +0800 | [diff] [blame] | 1826 | if (!ret) |
| 1827 | return NET_RX_DROP; |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1828 | |
Marek Lindner | edbf12b | 2012-03-11 06:17:49 +0800 | [diff] [blame] | 1829 | /* did we receive a B.A.T.M.A.N. IV OGM packet on an interface |
| 1830 | * that does not have B.A.T.M.A.N. IV enabled ? |
| 1831 | */ |
Antonio Quartulli | 29824a5 | 2016-05-25 23:27:31 +0800 | [diff] [blame] | 1832 | if (bat_priv->algo_ops->iface.enable != batadv_iv_ogm_iface_enable) |
Marek Lindner | edbf12b | 2012-03-11 06:17:49 +0800 | [diff] [blame] | 1833 | return NET_RX_DROP; |
| 1834 | |
Sven Eckelmann | d69909d | 2012-06-03 22:19:20 +0200 | [diff] [blame] | 1835 | batadv_inc_counter(bat_priv, BATADV_CNT_MGMT_RX); |
| 1836 | batadv_add_counter(bat_priv, BATADV_CNT_MGMT_RX_BYTES, |
Martin Hundebøll | f821486 | 2012-04-20 17:02:45 +0200 | [diff] [blame] | 1837 | skb->len + ETH_HLEN); |
| 1838 | |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1839 | ogm_offset = 0; |
| 1840 | ogm_packet = (struct batadv_ogm_packet *)skb->data; |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1841 | |
| 1842 | /* unpack the aggregated packets and process them one by one */ |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1843 | while (batadv_iv_ogm_aggr_packet(ogm_offset, skb_headlen(skb), |
| 1844 | ogm_packet->tvlv_len)) { |
| 1845 | batadv_iv_ogm_process(skb, ogm_offset, if_incoming); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1846 | |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1847 | ogm_offset += BATADV_OGM_HLEN; |
| 1848 | ogm_offset += ntohs(ogm_packet->tvlv_len); |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1849 | |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1850 | packet_pos = skb->data + ogm_offset; |
| 1851 | ogm_packet = (struct batadv_ogm_packet *)packet_pos; |
Marek Lindner | b47506d | 2013-03-04 10:39:49 +0800 | [diff] [blame] | 1852 | } |
Marek Lindner | c3e2931 | 2012-03-04 16:56:25 +0800 | [diff] [blame] | 1853 | |
| 1854 | kfree_skb(skb); |
| 1855 | return NET_RX_SUCCESS; |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 1856 | } |
Marek Lindner | 1c28047 | 2011-11-28 17:40:17 +0800 | [diff] [blame] | 1857 | |
Sven Eckelmann | dc1cbd1 | 2016-07-16 09:31:20 +0200 | [diff] [blame] | 1858 | #ifdef CONFIG_BATMAN_ADV_DEBUGFS |
Simon Wunderlich | 1b371d1 | 2014-01-15 21:17:54 +0100 | [diff] [blame] | 1859 | /** |
| 1860 | * batadv_iv_ogm_orig_print_neigh - print neighbors for the originator table |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1861 | * @orig_node: the orig_node for which the neighbors are printed |
| 1862 | * @if_outgoing: outgoing interface for these entries |
| 1863 | * @seq: debugfs table seq_file struct |
| 1864 | * |
| 1865 | * Must be called while holding an rcu lock. |
| 1866 | */ |
| 1867 | static void |
| 1868 | batadv_iv_ogm_orig_print_neigh(struct batadv_orig_node *orig_node, |
| 1869 | struct batadv_hard_iface *if_outgoing, |
| 1870 | struct seq_file *seq) |
| 1871 | { |
| 1872 | struct batadv_neigh_node *neigh_node; |
| 1873 | struct batadv_neigh_ifinfo *n_ifinfo; |
| 1874 | |
| 1875 | hlist_for_each_entry_rcu(neigh_node, &orig_node->neigh_list, list) { |
| 1876 | n_ifinfo = batadv_neigh_ifinfo_get(neigh_node, if_outgoing); |
| 1877 | if (!n_ifinfo) |
| 1878 | continue; |
| 1879 | |
| 1880 | seq_printf(seq, " %pM (%3i)", |
| 1881 | neigh_node->addr, |
| 1882 | n_ifinfo->bat_iv.tq_avg); |
| 1883 | |
Sven Eckelmann | 044fa3a | 2016-01-17 11:01:12 +0100 | [diff] [blame] | 1884 | batadv_neigh_ifinfo_put(n_ifinfo); |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1885 | } |
| 1886 | } |
| 1887 | |
Antonio Quartulli | 737a2a22 | 2013-09-02 12:15:03 +0200 | [diff] [blame] | 1888 | /** |
| 1889 | * batadv_iv_ogm_orig_print - print the originator table |
| 1890 | * @bat_priv: the bat priv with all the soft interface information |
| 1891 | * @seq: debugfs table seq_file struct |
Simon Wunderlich | cb1c92e | 2013-11-21 11:52:16 +0100 | [diff] [blame] | 1892 | * @if_outgoing: the outgoing interface for which this should be printed |
Antonio Quartulli | 737a2a22 | 2013-09-02 12:15:03 +0200 | [diff] [blame] | 1893 | */ |
| 1894 | static void batadv_iv_ogm_orig_print(struct batadv_priv *bat_priv, |
Simon Wunderlich | cb1c92e | 2013-11-21 11:52:16 +0100 | [diff] [blame] | 1895 | struct seq_file *seq, |
| 1896 | struct batadv_hard_iface *if_outgoing) |
Antonio Quartulli | 737a2a22 | 2013-09-02 12:15:03 +0200 | [diff] [blame] | 1897 | { |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1898 | struct batadv_neigh_node *neigh_node; |
Antonio Quartulli | 737a2a22 | 2013-09-02 12:15:03 +0200 | [diff] [blame] | 1899 | struct batadv_hashtable *hash = bat_priv->orig_hash; |
| 1900 | int last_seen_msecs, last_seen_secs; |
| 1901 | struct batadv_orig_node *orig_node; |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1902 | struct batadv_neigh_ifinfo *n_ifinfo; |
Antonio Quartulli | 737a2a22 | 2013-09-02 12:15:03 +0200 | [diff] [blame] | 1903 | unsigned long last_seen_jiffies; |
| 1904 | struct hlist_head *head; |
| 1905 | int batman_count = 0; |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 1906 | u32 i; |
Antonio Quartulli | 737a2a22 | 2013-09-02 12:15:03 +0200 | [diff] [blame] | 1907 | |
Antonio Quartulli | 925a6f3 | 2016-03-12 10:30:18 +0100 | [diff] [blame] | 1908 | seq_puts(seq, |
| 1909 | " Originator last-seen (#/255) Nexthop [outgoingIF]: Potential nexthops ...\n"); |
Antonio Quartulli | 737a2a22 | 2013-09-02 12:15:03 +0200 | [diff] [blame] | 1910 | |
| 1911 | for (i = 0; i < hash->size; i++) { |
| 1912 | head = &hash->table[i]; |
| 1913 | |
| 1914 | rcu_read_lock(); |
| 1915 | hlist_for_each_entry_rcu(orig_node, head, hash_entry) { |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 1916 | neigh_node = batadv_orig_router_get(orig_node, |
Simon Wunderlich | cb1c92e | 2013-11-21 11:52:16 +0100 | [diff] [blame] | 1917 | if_outgoing); |
Antonio Quartulli | 737a2a22 | 2013-09-02 12:15:03 +0200 | [diff] [blame] | 1918 | if (!neigh_node) |
| 1919 | continue; |
| 1920 | |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1921 | n_ifinfo = batadv_neigh_ifinfo_get(neigh_node, |
Simon Wunderlich | cb1c92e | 2013-11-21 11:52:16 +0100 | [diff] [blame] | 1922 | if_outgoing); |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1923 | if (!n_ifinfo) |
| 1924 | goto next; |
| 1925 | |
| 1926 | if (n_ifinfo->bat_iv.tq_avg == 0) |
Antonio Quartulli | 737a2a22 | 2013-09-02 12:15:03 +0200 | [diff] [blame] | 1927 | goto next; |
| 1928 | |
| 1929 | last_seen_jiffies = jiffies - orig_node->last_seen; |
| 1930 | last_seen_msecs = jiffies_to_msecs(last_seen_jiffies); |
| 1931 | last_seen_secs = last_seen_msecs / 1000; |
| 1932 | last_seen_msecs = last_seen_msecs % 1000; |
| 1933 | |
| 1934 | seq_printf(seq, "%pM %4i.%03is (%3i) %pM [%10s]:", |
| 1935 | orig_node->orig, last_seen_secs, |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1936 | last_seen_msecs, n_ifinfo->bat_iv.tq_avg, |
Antonio Quartulli | 737a2a22 | 2013-09-02 12:15:03 +0200 | [diff] [blame] | 1937 | neigh_node->addr, |
| 1938 | neigh_node->if_incoming->net_dev->name); |
| 1939 | |
Simon Wunderlich | cb1c92e | 2013-11-21 11:52:16 +0100 | [diff] [blame] | 1940 | batadv_iv_ogm_orig_print_neigh(orig_node, if_outgoing, |
| 1941 | seq); |
Antonio Quartulli | 737a2a22 | 2013-09-02 12:15:03 +0200 | [diff] [blame] | 1942 | seq_puts(seq, "\n"); |
| 1943 | batman_count++; |
| 1944 | |
| 1945 | next: |
Sven Eckelmann | 25bb250 | 2016-01-17 11:01:11 +0100 | [diff] [blame] | 1946 | batadv_neigh_node_put(neigh_node); |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 1947 | if (n_ifinfo) |
Sven Eckelmann | 044fa3a | 2016-01-17 11:01:12 +0100 | [diff] [blame] | 1948 | batadv_neigh_ifinfo_put(n_ifinfo); |
Antonio Quartulli | 737a2a22 | 2013-09-02 12:15:03 +0200 | [diff] [blame] | 1949 | } |
| 1950 | rcu_read_unlock(); |
| 1951 | } |
| 1952 | |
| 1953 | if (batman_count == 0) |
| 1954 | seq_puts(seq, "No batman nodes in range ...\n"); |
| 1955 | } |
Sven Eckelmann | dc1cbd1 | 2016-07-16 09:31:20 +0200 | [diff] [blame] | 1956 | #endif |
Antonio Quartulli | 737a2a22 | 2013-09-02 12:15:03 +0200 | [diff] [blame] | 1957 | |
Antonio Quartulli | a3285a8 | 2013-09-02 12:15:04 +0200 | [diff] [blame] | 1958 | /** |
Matthias Schiffer | 024f99c | 2016-07-03 13:31:40 +0200 | [diff] [blame] | 1959 | * batadv_iv_ogm_neigh_get_tq_avg - Get the TQ average for a neighbour on a |
| 1960 | * given outgoing interface. |
| 1961 | * @neigh_node: Neighbour of interest |
| 1962 | * @if_outgoing: Outgoing interface of interest |
| 1963 | * @tq_avg: Pointer of where to store the TQ average |
| 1964 | * |
| 1965 | * Return: False if no average TQ available, otherwise true. |
| 1966 | */ |
| 1967 | static bool |
| 1968 | batadv_iv_ogm_neigh_get_tq_avg(struct batadv_neigh_node *neigh_node, |
| 1969 | struct batadv_hard_iface *if_outgoing, |
| 1970 | u8 *tq_avg) |
| 1971 | { |
| 1972 | struct batadv_neigh_ifinfo *n_ifinfo; |
| 1973 | |
| 1974 | n_ifinfo = batadv_neigh_ifinfo_get(neigh_node, if_outgoing); |
| 1975 | if (!n_ifinfo) |
| 1976 | return false; |
| 1977 | |
| 1978 | *tq_avg = n_ifinfo->bat_iv.tq_avg; |
| 1979 | batadv_neigh_ifinfo_put(n_ifinfo); |
| 1980 | |
| 1981 | return true; |
| 1982 | } |
| 1983 | |
| 1984 | /** |
| 1985 | * batadv_iv_ogm_orig_dump_subentry - Dump an originator subentry into a |
| 1986 | * message |
| 1987 | * @msg: Netlink message to dump into |
| 1988 | * @portid: Port making netlink request |
| 1989 | * @seq: Sequence number of netlink message |
| 1990 | * @bat_priv: The bat priv with all the soft interface information |
| 1991 | * @if_outgoing: Limit dump to entries with this outgoing interface |
| 1992 | * @orig_node: Originator to dump |
| 1993 | * @neigh_node: Single hops neighbour |
| 1994 | * @best: Is the best originator |
| 1995 | * |
| 1996 | * Return: Error code, or 0 on success |
| 1997 | */ |
| 1998 | static int |
| 1999 | batadv_iv_ogm_orig_dump_subentry(struct sk_buff *msg, u32 portid, u32 seq, |
| 2000 | struct batadv_priv *bat_priv, |
| 2001 | struct batadv_hard_iface *if_outgoing, |
| 2002 | struct batadv_orig_node *orig_node, |
| 2003 | struct batadv_neigh_node *neigh_node, |
| 2004 | bool best) |
| 2005 | { |
| 2006 | void *hdr; |
| 2007 | u8 tq_avg; |
| 2008 | unsigned int last_seen_msecs; |
| 2009 | |
| 2010 | last_seen_msecs = jiffies_to_msecs(jiffies - orig_node->last_seen); |
| 2011 | |
| 2012 | if (!batadv_iv_ogm_neigh_get_tq_avg(neigh_node, if_outgoing, &tq_avg)) |
| 2013 | return 0; |
| 2014 | |
| 2015 | if (if_outgoing != BATADV_IF_DEFAULT && |
| 2016 | if_outgoing != neigh_node->if_incoming) |
| 2017 | return 0; |
| 2018 | |
| 2019 | hdr = genlmsg_put(msg, portid, seq, &batadv_netlink_family, |
| 2020 | NLM_F_MULTI, BATADV_CMD_GET_ORIGINATORS); |
| 2021 | if (!hdr) |
| 2022 | return -ENOBUFS; |
| 2023 | |
| 2024 | if (nla_put(msg, BATADV_ATTR_ORIG_ADDRESS, ETH_ALEN, |
| 2025 | orig_node->orig) || |
| 2026 | nla_put(msg, BATADV_ATTR_NEIGH_ADDRESS, ETH_ALEN, |
| 2027 | neigh_node->addr) || |
| 2028 | nla_put_u32(msg, BATADV_ATTR_HARD_IFINDEX, |
| 2029 | neigh_node->if_incoming->net_dev->ifindex) || |
| 2030 | nla_put_u8(msg, BATADV_ATTR_TQ, tq_avg) || |
| 2031 | nla_put_u32(msg, BATADV_ATTR_LAST_SEEN_MSECS, |
| 2032 | last_seen_msecs)) |
| 2033 | goto nla_put_failure; |
| 2034 | |
| 2035 | if (best && nla_put_flag(msg, BATADV_ATTR_FLAG_BEST)) |
| 2036 | goto nla_put_failure; |
| 2037 | |
| 2038 | genlmsg_end(msg, hdr); |
| 2039 | return 0; |
| 2040 | |
| 2041 | nla_put_failure: |
| 2042 | genlmsg_cancel(msg, hdr); |
| 2043 | return -EMSGSIZE; |
| 2044 | } |
| 2045 | |
| 2046 | /** |
| 2047 | * batadv_iv_ogm_orig_dump_entry - Dump an originator entry into a message |
| 2048 | * @msg: Netlink message to dump into |
| 2049 | * @portid: Port making netlink request |
| 2050 | * @seq: Sequence number of netlink message |
| 2051 | * @bat_priv: The bat priv with all the soft interface information |
| 2052 | * @if_outgoing: Limit dump to entries with this outgoing interface |
| 2053 | * @orig_node: Originator to dump |
| 2054 | * @sub_s: Number of sub entries to skip |
| 2055 | * |
| 2056 | * This function assumes the caller holds rcu_read_lock(). |
| 2057 | * |
| 2058 | * Return: Error code, or 0 on success |
| 2059 | */ |
| 2060 | static int |
| 2061 | batadv_iv_ogm_orig_dump_entry(struct sk_buff *msg, u32 portid, u32 seq, |
| 2062 | struct batadv_priv *bat_priv, |
| 2063 | struct batadv_hard_iface *if_outgoing, |
| 2064 | struct batadv_orig_node *orig_node, int *sub_s) |
| 2065 | { |
| 2066 | struct batadv_neigh_node *neigh_node_best; |
| 2067 | struct batadv_neigh_node *neigh_node; |
| 2068 | int sub = 0; |
| 2069 | bool best; |
| 2070 | u8 tq_avg_best; |
| 2071 | |
| 2072 | neigh_node_best = batadv_orig_router_get(orig_node, if_outgoing); |
| 2073 | if (!neigh_node_best) |
| 2074 | goto out; |
| 2075 | |
| 2076 | if (!batadv_iv_ogm_neigh_get_tq_avg(neigh_node_best, if_outgoing, |
| 2077 | &tq_avg_best)) |
| 2078 | goto out; |
| 2079 | |
| 2080 | if (tq_avg_best == 0) |
| 2081 | goto out; |
| 2082 | |
| 2083 | hlist_for_each_entry_rcu(neigh_node, &orig_node->neigh_list, list) { |
| 2084 | if (sub++ < *sub_s) |
| 2085 | continue; |
| 2086 | |
| 2087 | best = (neigh_node == neigh_node_best); |
| 2088 | |
| 2089 | if (batadv_iv_ogm_orig_dump_subentry(msg, portid, seq, |
| 2090 | bat_priv, if_outgoing, |
| 2091 | orig_node, neigh_node, |
| 2092 | best)) { |
| 2093 | batadv_neigh_node_put(neigh_node_best); |
| 2094 | |
| 2095 | *sub_s = sub - 1; |
| 2096 | return -EMSGSIZE; |
| 2097 | } |
| 2098 | } |
| 2099 | |
| 2100 | out: |
| 2101 | if (neigh_node_best) |
| 2102 | batadv_neigh_node_put(neigh_node_best); |
| 2103 | |
| 2104 | *sub_s = 0; |
| 2105 | return 0; |
| 2106 | } |
| 2107 | |
| 2108 | /** |
| 2109 | * batadv_iv_ogm_orig_dump_bucket - Dump an originator bucket into a |
| 2110 | * message |
| 2111 | * @msg: Netlink message to dump into |
| 2112 | * @portid: Port making netlink request |
| 2113 | * @seq: Sequence number of netlink message |
| 2114 | * @bat_priv: The bat priv with all the soft interface information |
| 2115 | * @if_outgoing: Limit dump to entries with this outgoing interface |
| 2116 | * @head: Bucket to be dumped |
| 2117 | * @idx_s: Number of entries to be skipped |
| 2118 | * @sub: Number of sub entries to be skipped |
| 2119 | * |
| 2120 | * Return: Error code, or 0 on success |
| 2121 | */ |
| 2122 | static int |
| 2123 | batadv_iv_ogm_orig_dump_bucket(struct sk_buff *msg, u32 portid, u32 seq, |
| 2124 | struct batadv_priv *bat_priv, |
| 2125 | struct batadv_hard_iface *if_outgoing, |
| 2126 | struct hlist_head *head, int *idx_s, int *sub) |
| 2127 | { |
| 2128 | struct batadv_orig_node *orig_node; |
| 2129 | int idx = 0; |
| 2130 | |
| 2131 | rcu_read_lock(); |
| 2132 | hlist_for_each_entry_rcu(orig_node, head, hash_entry) { |
| 2133 | if (idx++ < *idx_s) |
| 2134 | continue; |
| 2135 | |
| 2136 | if (batadv_iv_ogm_orig_dump_entry(msg, portid, seq, bat_priv, |
| 2137 | if_outgoing, orig_node, |
| 2138 | sub)) { |
| 2139 | rcu_read_unlock(); |
| 2140 | *idx_s = idx - 1; |
| 2141 | return -EMSGSIZE; |
| 2142 | } |
| 2143 | } |
| 2144 | rcu_read_unlock(); |
| 2145 | |
| 2146 | *idx_s = 0; |
| 2147 | *sub = 0; |
| 2148 | return 0; |
| 2149 | } |
| 2150 | |
| 2151 | /** |
| 2152 | * batadv_iv_ogm_orig_dump - Dump the originators into a message |
| 2153 | * @msg: Netlink message to dump into |
| 2154 | * @cb: Control block containing additional options |
| 2155 | * @bat_priv: The bat priv with all the soft interface information |
| 2156 | * @if_outgoing: Limit dump to entries with this outgoing interface |
| 2157 | */ |
| 2158 | static void |
| 2159 | batadv_iv_ogm_orig_dump(struct sk_buff *msg, struct netlink_callback *cb, |
| 2160 | struct batadv_priv *bat_priv, |
| 2161 | struct batadv_hard_iface *if_outgoing) |
| 2162 | { |
| 2163 | struct batadv_hashtable *hash = bat_priv->orig_hash; |
| 2164 | struct hlist_head *head; |
| 2165 | int bucket = cb->args[0]; |
| 2166 | int idx = cb->args[1]; |
| 2167 | int sub = cb->args[2]; |
| 2168 | int portid = NETLINK_CB(cb->skb).portid; |
| 2169 | |
| 2170 | while (bucket < hash->size) { |
| 2171 | head = &hash->table[bucket]; |
| 2172 | |
| 2173 | if (batadv_iv_ogm_orig_dump_bucket(msg, portid, |
| 2174 | cb->nlh->nlmsg_seq, |
| 2175 | bat_priv, if_outgoing, head, |
| 2176 | &idx, &sub)) |
| 2177 | break; |
| 2178 | |
| 2179 | bucket++; |
| 2180 | } |
| 2181 | |
| 2182 | cb->args[0] = bucket; |
| 2183 | cb->args[1] = idx; |
| 2184 | cb->args[2] = sub; |
| 2185 | } |
| 2186 | |
Sven Eckelmann | dc1cbd1 | 2016-07-16 09:31:20 +0200 | [diff] [blame] | 2187 | #ifdef CONFIG_BATMAN_ADV_DEBUGFS |
Matthias Schiffer | 024f99c | 2016-07-03 13:31:40 +0200 | [diff] [blame] | 2188 | /** |
Marek Lindner | 7587405 | 2015-08-04 21:09:57 +0800 | [diff] [blame] | 2189 | * batadv_iv_hardif_neigh_print - print a single hop neighbour node |
| 2190 | * @seq: neighbour table seq_file struct |
| 2191 | * @hardif_neigh: hardif neighbour information |
| 2192 | */ |
| 2193 | static void |
| 2194 | batadv_iv_hardif_neigh_print(struct seq_file *seq, |
| 2195 | struct batadv_hardif_neigh_node *hardif_neigh) |
| 2196 | { |
| 2197 | int last_secs, last_msecs; |
| 2198 | |
| 2199 | last_secs = jiffies_to_msecs(jiffies - hardif_neigh->last_seen) / 1000; |
| 2200 | last_msecs = jiffies_to_msecs(jiffies - hardif_neigh->last_seen) % 1000; |
| 2201 | |
| 2202 | seq_printf(seq, " %10s %pM %4i.%03is\n", |
| 2203 | hardif_neigh->if_incoming->net_dev->name, |
| 2204 | hardif_neigh->addr, last_secs, last_msecs); |
| 2205 | } |
| 2206 | |
| 2207 | /** |
| 2208 | * batadv_iv_ogm_neigh_print - print the single hop neighbour list |
| 2209 | * @bat_priv: the bat priv with all the soft interface information |
| 2210 | * @seq: neighbour table seq_file struct |
| 2211 | */ |
| 2212 | static void batadv_iv_neigh_print(struct batadv_priv *bat_priv, |
| 2213 | struct seq_file *seq) |
| 2214 | { |
| 2215 | struct net_device *net_dev = (struct net_device *)seq->private; |
| 2216 | struct batadv_hardif_neigh_node *hardif_neigh; |
| 2217 | struct batadv_hard_iface *hard_iface; |
| 2218 | int batman_count = 0; |
| 2219 | |
Antonio Quartulli | 925a6f3 | 2016-03-12 10:30:18 +0100 | [diff] [blame] | 2220 | seq_puts(seq, " IF Neighbor last-seen\n"); |
Marek Lindner | 7587405 | 2015-08-04 21:09:57 +0800 | [diff] [blame] | 2221 | |
| 2222 | rcu_read_lock(); |
| 2223 | list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) { |
| 2224 | if (hard_iface->soft_iface != net_dev) |
| 2225 | continue; |
| 2226 | |
| 2227 | hlist_for_each_entry_rcu(hardif_neigh, |
| 2228 | &hard_iface->neigh_list, list) { |
| 2229 | batadv_iv_hardif_neigh_print(seq, hardif_neigh); |
| 2230 | batman_count++; |
| 2231 | } |
| 2232 | } |
| 2233 | rcu_read_unlock(); |
| 2234 | |
| 2235 | if (batman_count == 0) |
| 2236 | seq_puts(seq, "No batman nodes in range ...\n"); |
| 2237 | } |
Sven Eckelmann | dc1cbd1 | 2016-07-16 09:31:20 +0200 | [diff] [blame] | 2238 | #endif |
Marek Lindner | 7587405 | 2015-08-04 21:09:57 +0800 | [diff] [blame] | 2239 | |
| 2240 | /** |
Markus Pargmann | 57b1250 | 2016-07-03 11:07:14 +0200 | [diff] [blame] | 2241 | * batadv_iv_ogm_neigh_diff - calculate tq difference of two neighbors |
| 2242 | * @neigh1: the first neighbor object of the comparison |
| 2243 | * @if_outgoing1: outgoing interface for the first neighbor |
| 2244 | * @neigh2: the second neighbor object of the comparison |
| 2245 | * @if_outgoing2: outgoing interface for the second neighbor |
| 2246 | * @diff: pointer to integer receiving the calculated difference |
| 2247 | * |
| 2248 | * The content of *@diff is only valid when this function returns true. |
| 2249 | * It is less, equal to or greater than 0 if the metric via neigh1 is lower, |
| 2250 | * the same as or higher than the metric via neigh2 |
| 2251 | * |
| 2252 | * Return: true when the difference could be calculated, false otherwise |
| 2253 | */ |
| 2254 | static bool batadv_iv_ogm_neigh_diff(struct batadv_neigh_node *neigh1, |
| 2255 | struct batadv_hard_iface *if_outgoing1, |
| 2256 | struct batadv_neigh_node *neigh2, |
| 2257 | struct batadv_hard_iface *if_outgoing2, |
| 2258 | int *diff) |
| 2259 | { |
| 2260 | struct batadv_neigh_ifinfo *neigh1_ifinfo, *neigh2_ifinfo; |
| 2261 | u8 tq1, tq2; |
| 2262 | bool ret = true; |
| 2263 | |
| 2264 | neigh1_ifinfo = batadv_neigh_ifinfo_get(neigh1, if_outgoing1); |
| 2265 | neigh2_ifinfo = batadv_neigh_ifinfo_get(neigh2, if_outgoing2); |
| 2266 | |
| 2267 | if (!neigh1_ifinfo || !neigh2_ifinfo) { |
| 2268 | ret = false; |
| 2269 | goto out; |
| 2270 | } |
| 2271 | |
| 2272 | tq1 = neigh1_ifinfo->bat_iv.tq_avg; |
| 2273 | tq2 = neigh2_ifinfo->bat_iv.tq_avg; |
| 2274 | *diff = (int)tq1 - (int)tq2; |
| 2275 | |
| 2276 | out: |
| 2277 | if (neigh1_ifinfo) |
| 2278 | batadv_neigh_ifinfo_put(neigh1_ifinfo); |
| 2279 | if (neigh2_ifinfo) |
| 2280 | batadv_neigh_ifinfo_put(neigh2_ifinfo); |
| 2281 | |
| 2282 | return ret; |
| 2283 | } |
| 2284 | |
| 2285 | /** |
Matthias Schiffer | 024f99c | 2016-07-03 13:31:40 +0200 | [diff] [blame] | 2286 | * batadv_iv_ogm_neigh_dump_neigh - Dump a neighbour into a netlink message |
| 2287 | * @msg: Netlink message to dump into |
| 2288 | * @portid: Port making netlink request |
| 2289 | * @seq: Sequence number of netlink message |
| 2290 | * @hardif_neigh: Neighbour to be dumped |
| 2291 | * |
| 2292 | * Return: Error code, or 0 on success |
| 2293 | */ |
| 2294 | static int |
| 2295 | batadv_iv_ogm_neigh_dump_neigh(struct sk_buff *msg, u32 portid, u32 seq, |
| 2296 | struct batadv_hardif_neigh_node *hardif_neigh) |
| 2297 | { |
| 2298 | void *hdr; |
| 2299 | unsigned int last_seen_msecs; |
| 2300 | |
| 2301 | last_seen_msecs = jiffies_to_msecs(jiffies - hardif_neigh->last_seen); |
| 2302 | |
| 2303 | hdr = genlmsg_put(msg, portid, seq, &batadv_netlink_family, |
| 2304 | NLM_F_MULTI, BATADV_CMD_GET_NEIGHBORS); |
| 2305 | if (!hdr) |
| 2306 | return -ENOBUFS; |
| 2307 | |
| 2308 | if (nla_put(msg, BATADV_ATTR_NEIGH_ADDRESS, ETH_ALEN, |
| 2309 | hardif_neigh->addr) || |
| 2310 | nla_put_u32(msg, BATADV_ATTR_HARD_IFINDEX, |
| 2311 | hardif_neigh->if_incoming->net_dev->ifindex) || |
| 2312 | nla_put_u32(msg, BATADV_ATTR_LAST_SEEN_MSECS, |
| 2313 | last_seen_msecs)) |
| 2314 | goto nla_put_failure; |
| 2315 | |
| 2316 | genlmsg_end(msg, hdr); |
| 2317 | return 0; |
| 2318 | |
| 2319 | nla_put_failure: |
| 2320 | genlmsg_cancel(msg, hdr); |
| 2321 | return -EMSGSIZE; |
| 2322 | } |
| 2323 | |
| 2324 | /** |
| 2325 | * batadv_iv_ogm_neigh_dump_hardif - Dump the neighbours of a hard interface |
| 2326 | * into a message |
| 2327 | * @msg: Netlink message to dump into |
| 2328 | * @portid: Port making netlink request |
| 2329 | * @seq: Sequence number of netlink message |
| 2330 | * @bat_priv: The bat priv with all the soft interface information |
| 2331 | * @hard_iface: Hard interface to dump the neighbours for |
| 2332 | * @idx_s: Number of entries to skip |
| 2333 | * |
| 2334 | * This function assumes the caller holds rcu_read_lock(). |
| 2335 | * |
| 2336 | * Return: Error code, or 0 on success |
| 2337 | */ |
| 2338 | static int |
| 2339 | batadv_iv_ogm_neigh_dump_hardif(struct sk_buff *msg, u32 portid, u32 seq, |
| 2340 | struct batadv_priv *bat_priv, |
| 2341 | struct batadv_hard_iface *hard_iface, |
| 2342 | int *idx_s) |
| 2343 | { |
| 2344 | struct batadv_hardif_neigh_node *hardif_neigh; |
| 2345 | int idx = 0; |
| 2346 | |
| 2347 | hlist_for_each_entry_rcu(hardif_neigh, |
| 2348 | &hard_iface->neigh_list, list) { |
| 2349 | if (idx++ < *idx_s) |
| 2350 | continue; |
| 2351 | |
| 2352 | if (batadv_iv_ogm_neigh_dump_neigh(msg, portid, seq, |
| 2353 | hardif_neigh)) { |
| 2354 | *idx_s = idx - 1; |
| 2355 | return -EMSGSIZE; |
| 2356 | } |
| 2357 | } |
| 2358 | |
| 2359 | *idx_s = 0; |
| 2360 | return 0; |
| 2361 | } |
| 2362 | |
| 2363 | /** |
| 2364 | * batadv_iv_ogm_neigh_dump - Dump the neighbours into a message |
| 2365 | * @msg: Netlink message to dump into |
| 2366 | * @cb: Control block containing additional options |
| 2367 | * @bat_priv: The bat priv with all the soft interface information |
| 2368 | * @single_hardif: Limit dump to this hard interfaace |
| 2369 | */ |
| 2370 | static void |
| 2371 | batadv_iv_ogm_neigh_dump(struct sk_buff *msg, struct netlink_callback *cb, |
| 2372 | struct batadv_priv *bat_priv, |
| 2373 | struct batadv_hard_iface *single_hardif) |
| 2374 | { |
| 2375 | struct batadv_hard_iface *hard_iface; |
| 2376 | int i_hardif = 0; |
| 2377 | int i_hardif_s = cb->args[0]; |
| 2378 | int idx = cb->args[1]; |
| 2379 | int portid = NETLINK_CB(cb->skb).portid; |
| 2380 | |
| 2381 | rcu_read_lock(); |
| 2382 | if (single_hardif) { |
| 2383 | if (i_hardif_s == 0) { |
| 2384 | if (batadv_iv_ogm_neigh_dump_hardif(msg, portid, |
| 2385 | cb->nlh->nlmsg_seq, |
| 2386 | bat_priv, |
| 2387 | single_hardif, |
| 2388 | &idx) == 0) |
| 2389 | i_hardif++; |
| 2390 | } |
| 2391 | } else { |
| 2392 | list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, |
| 2393 | list) { |
| 2394 | if (hard_iface->soft_iface != bat_priv->soft_iface) |
| 2395 | continue; |
| 2396 | |
| 2397 | if (i_hardif++ < i_hardif_s) |
| 2398 | continue; |
| 2399 | |
| 2400 | if (batadv_iv_ogm_neigh_dump_hardif(msg, portid, |
| 2401 | cb->nlh->nlmsg_seq, |
| 2402 | bat_priv, |
| 2403 | hard_iface, &idx)) { |
| 2404 | i_hardif--; |
| 2405 | break; |
| 2406 | } |
| 2407 | } |
| 2408 | } |
| 2409 | rcu_read_unlock(); |
| 2410 | |
| 2411 | cb->args[0] = i_hardif; |
| 2412 | cb->args[1] = idx; |
| 2413 | } |
| 2414 | |
| 2415 | /** |
Antonio Quartulli | a3285a8 | 2013-09-02 12:15:04 +0200 | [diff] [blame] | 2416 | * batadv_iv_ogm_neigh_cmp - compare the metrics of two neighbors |
| 2417 | * @neigh1: the first neighbor object of the comparison |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 2418 | * @if_outgoing1: outgoing interface for the first neighbor |
Antonio Quartulli | a3285a8 | 2013-09-02 12:15:04 +0200 | [diff] [blame] | 2419 | * @neigh2: the second neighbor object of the comparison |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 2420 | * @if_outgoing2: outgoing interface for the second neighbor |
Antonio Quartulli | a3285a8 | 2013-09-02 12:15:04 +0200 | [diff] [blame] | 2421 | * |
Sven Eckelmann | 62fe710 | 2015-09-15 19:00:48 +0200 | [diff] [blame] | 2422 | * Return: a value less, equal to or greater than 0 if the metric via neigh1 is |
Antonio Quartulli | a3285a8 | 2013-09-02 12:15:04 +0200 | [diff] [blame] | 2423 | * lower, the same as or higher than the metric via neigh2 |
| 2424 | */ |
| 2425 | static int batadv_iv_ogm_neigh_cmp(struct batadv_neigh_node *neigh1, |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 2426 | struct batadv_hard_iface *if_outgoing1, |
| 2427 | struct batadv_neigh_node *neigh2, |
| 2428 | struct batadv_hard_iface *if_outgoing2) |
Antonio Quartulli | a3285a8 | 2013-09-02 12:15:04 +0200 | [diff] [blame] | 2429 | { |
Markus Pargmann | 57b1250 | 2016-07-03 11:07:14 +0200 | [diff] [blame] | 2430 | bool ret; |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 2431 | int diff; |
Antonio Quartulli | a3285a8 | 2013-09-02 12:15:04 +0200 | [diff] [blame] | 2432 | |
Markus Pargmann | 57b1250 | 2016-07-03 11:07:14 +0200 | [diff] [blame] | 2433 | ret = batadv_iv_ogm_neigh_diff(neigh1, if_outgoing1, neigh2, |
| 2434 | if_outgoing2, &diff); |
| 2435 | if (!ret) |
| 2436 | return 0; |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 2437 | |
| 2438 | return diff; |
Antonio Quartulli | a3285a8 | 2013-09-02 12:15:04 +0200 | [diff] [blame] | 2439 | } |
| 2440 | |
Antonio Quartulli | c43c981 | 2013-09-02 12:15:05 +0200 | [diff] [blame] | 2441 | /** |
Simon Wunderlich | 18165f6 | 2015-08-08 02:01:50 +0200 | [diff] [blame] | 2442 | * batadv_iv_ogm_neigh_is_sob - check if neigh1 is similarly good or better |
| 2443 | * than neigh2 from the metric prospective |
Antonio Quartulli | c43c981 | 2013-09-02 12:15:05 +0200 | [diff] [blame] | 2444 | * @neigh1: the first neighbor object of the comparison |
Martin Hundebøll | 95298a9 | 2014-07-15 09:41:05 +0200 | [diff] [blame] | 2445 | * @if_outgoing1: outgoing interface for the first neighbor |
Antonio Quartulli | c43c981 | 2013-09-02 12:15:05 +0200 | [diff] [blame] | 2446 | * @neigh2: the second neighbor object of the comparison |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 2447 | * @if_outgoing2: outgoing interface for the second neighbor |
Martin Hundebøll | 95298a9 | 2014-07-15 09:41:05 +0200 | [diff] [blame] | 2448 | * |
Sven Eckelmann | 62fe710 | 2015-09-15 19:00:48 +0200 | [diff] [blame] | 2449 | * Return: true if the metric via neigh1 is equally good or better than |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 2450 | * the metric via neigh2, false otherwise. |
| 2451 | */ |
| 2452 | static bool |
Simon Wunderlich | 18165f6 | 2015-08-08 02:01:50 +0200 | [diff] [blame] | 2453 | batadv_iv_ogm_neigh_is_sob(struct batadv_neigh_node *neigh1, |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 2454 | struct batadv_hard_iface *if_outgoing1, |
| 2455 | struct batadv_neigh_node *neigh2, |
| 2456 | struct batadv_hard_iface *if_outgoing2) |
| 2457 | { |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 2458 | bool ret; |
Markus Pargmann | 57b1250 | 2016-07-03 11:07:14 +0200 | [diff] [blame] | 2459 | int diff; |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 2460 | |
Markus Pargmann | 57b1250 | 2016-07-03 11:07:14 +0200 | [diff] [blame] | 2461 | ret = batadv_iv_ogm_neigh_diff(neigh1, if_outgoing1, neigh2, |
| 2462 | if_outgoing2, &diff); |
| 2463 | if (!ret) |
| 2464 | return false; |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 2465 | |
Markus Pargmann | 57b1250 | 2016-07-03 11:07:14 +0200 | [diff] [blame] | 2466 | ret = diff > -BATADV_TQ_SIMILARITY_THRESHOLD; |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 2467 | return ret; |
Antonio Quartulli | c43c981 | 2013-09-02 12:15:05 +0200 | [diff] [blame] | 2468 | } |
| 2469 | |
Antonio Quartulli | f0d9725 | 2016-05-03 01:45:34 +0800 | [diff] [blame] | 2470 | static void batadv_iv_iface_activate(struct batadv_hard_iface *hard_iface) |
| 2471 | { |
| 2472 | /* begin scheduling originator messages on that interface */ |
| 2473 | batadv_iv_ogm_schedule(hard_iface); |
| 2474 | } |
| 2475 | |
Antonio Quartulli | 34d99cf | 2016-07-03 12:46:33 +0200 | [diff] [blame] | 2476 | static struct batadv_gw_node * |
| 2477 | batadv_iv_gw_get_best_gw_node(struct batadv_priv *bat_priv) |
| 2478 | { |
| 2479 | struct batadv_neigh_node *router; |
| 2480 | struct batadv_neigh_ifinfo *router_ifinfo; |
| 2481 | struct batadv_gw_node *gw_node, *curr_gw = NULL; |
| 2482 | u64 max_gw_factor = 0; |
| 2483 | u64 tmp_gw_factor = 0; |
| 2484 | u8 max_tq = 0; |
| 2485 | u8 tq_avg; |
| 2486 | struct batadv_orig_node *orig_node; |
| 2487 | |
| 2488 | rcu_read_lock(); |
| 2489 | hlist_for_each_entry_rcu(gw_node, &bat_priv->gw.list, list) { |
| 2490 | orig_node = gw_node->orig_node; |
| 2491 | router = batadv_orig_router_get(orig_node, BATADV_IF_DEFAULT); |
| 2492 | if (!router) |
| 2493 | continue; |
| 2494 | |
| 2495 | router_ifinfo = batadv_neigh_ifinfo_get(router, |
| 2496 | BATADV_IF_DEFAULT); |
| 2497 | if (!router_ifinfo) |
| 2498 | goto next; |
| 2499 | |
| 2500 | if (!kref_get_unless_zero(&gw_node->refcount)) |
| 2501 | goto next; |
| 2502 | |
| 2503 | tq_avg = router_ifinfo->bat_iv.tq_avg; |
| 2504 | |
| 2505 | switch (atomic_read(&bat_priv->gw.sel_class)) { |
| 2506 | case 1: /* fast connection */ |
| 2507 | tmp_gw_factor = tq_avg * tq_avg; |
| 2508 | tmp_gw_factor *= gw_node->bandwidth_down; |
| 2509 | tmp_gw_factor *= 100 * 100; |
| 2510 | tmp_gw_factor >>= 18; |
| 2511 | |
| 2512 | if ((tmp_gw_factor > max_gw_factor) || |
| 2513 | ((tmp_gw_factor == max_gw_factor) && |
| 2514 | (tq_avg > max_tq))) { |
| 2515 | if (curr_gw) |
| 2516 | batadv_gw_node_put(curr_gw); |
| 2517 | curr_gw = gw_node; |
| 2518 | kref_get(&curr_gw->refcount); |
| 2519 | } |
| 2520 | break; |
| 2521 | |
| 2522 | default: /* 2: stable connection (use best statistic) |
| 2523 | * 3: fast-switch (use best statistic but change as |
| 2524 | * soon as a better gateway appears) |
| 2525 | * XX: late-switch (use best statistic but change as |
| 2526 | * soon as a better gateway appears which has |
| 2527 | * $routing_class more tq points) |
| 2528 | */ |
| 2529 | if (tq_avg > max_tq) { |
| 2530 | if (curr_gw) |
| 2531 | batadv_gw_node_put(curr_gw); |
| 2532 | curr_gw = gw_node; |
| 2533 | kref_get(&curr_gw->refcount); |
| 2534 | } |
| 2535 | break; |
| 2536 | } |
| 2537 | |
| 2538 | if (tq_avg > max_tq) |
| 2539 | max_tq = tq_avg; |
| 2540 | |
| 2541 | if (tmp_gw_factor > max_gw_factor) |
| 2542 | max_gw_factor = tmp_gw_factor; |
| 2543 | |
| 2544 | batadv_gw_node_put(gw_node); |
| 2545 | |
| 2546 | next: |
| 2547 | batadv_neigh_node_put(router); |
| 2548 | if (router_ifinfo) |
| 2549 | batadv_neigh_ifinfo_put(router_ifinfo); |
| 2550 | } |
| 2551 | rcu_read_unlock(); |
| 2552 | |
| 2553 | return curr_gw; |
| 2554 | } |
| 2555 | |
| 2556 | static bool batadv_iv_gw_is_eligible(struct batadv_priv *bat_priv, |
| 2557 | struct batadv_orig_node *curr_gw_orig, |
| 2558 | struct batadv_orig_node *orig_node) |
| 2559 | { |
| 2560 | struct batadv_neigh_ifinfo *router_orig_ifinfo = NULL; |
| 2561 | struct batadv_neigh_ifinfo *router_gw_ifinfo = NULL; |
| 2562 | struct batadv_neigh_node *router_gw = NULL; |
| 2563 | struct batadv_neigh_node *router_orig = NULL; |
| 2564 | u8 gw_tq_avg, orig_tq_avg; |
| 2565 | bool ret = false; |
| 2566 | |
| 2567 | /* dynamic re-election is performed only on fast or late switch */ |
| 2568 | if (atomic_read(&bat_priv->gw.sel_class) <= 2) |
| 2569 | return false; |
| 2570 | |
| 2571 | router_gw = batadv_orig_router_get(curr_gw_orig, BATADV_IF_DEFAULT); |
| 2572 | if (!router_gw) { |
| 2573 | ret = true; |
| 2574 | goto out; |
| 2575 | } |
| 2576 | |
| 2577 | router_gw_ifinfo = batadv_neigh_ifinfo_get(router_gw, |
| 2578 | BATADV_IF_DEFAULT); |
| 2579 | if (!router_gw_ifinfo) { |
| 2580 | ret = true; |
| 2581 | goto out; |
| 2582 | } |
| 2583 | |
| 2584 | router_orig = batadv_orig_router_get(orig_node, BATADV_IF_DEFAULT); |
| 2585 | if (!router_orig) |
| 2586 | goto out; |
| 2587 | |
| 2588 | router_orig_ifinfo = batadv_neigh_ifinfo_get(router_orig, |
| 2589 | BATADV_IF_DEFAULT); |
| 2590 | if (!router_orig_ifinfo) |
| 2591 | goto out; |
| 2592 | |
| 2593 | gw_tq_avg = router_gw_ifinfo->bat_iv.tq_avg; |
| 2594 | orig_tq_avg = router_orig_ifinfo->bat_iv.tq_avg; |
| 2595 | |
| 2596 | /* the TQ value has to be better */ |
| 2597 | if (orig_tq_avg < gw_tq_avg) |
| 2598 | goto out; |
| 2599 | |
| 2600 | /* if the routing class is greater than 3 the value tells us how much |
| 2601 | * greater the TQ value of the new gateway must be |
| 2602 | */ |
| 2603 | if ((atomic_read(&bat_priv->gw.sel_class) > 3) && |
| 2604 | (orig_tq_avg - gw_tq_avg < atomic_read(&bat_priv->gw.sel_class))) |
| 2605 | goto out; |
| 2606 | |
| 2607 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
| 2608 | "Restarting gateway selection: better gateway found (tq curr: %i, tq new: %i)\n", |
| 2609 | gw_tq_avg, orig_tq_avg); |
| 2610 | |
| 2611 | ret = true; |
| 2612 | out: |
| 2613 | if (router_gw_ifinfo) |
| 2614 | batadv_neigh_ifinfo_put(router_gw_ifinfo); |
| 2615 | if (router_orig_ifinfo) |
| 2616 | batadv_neigh_ifinfo_put(router_orig_ifinfo); |
| 2617 | if (router_gw) |
| 2618 | batadv_neigh_node_put(router_gw); |
| 2619 | if (router_orig) |
| 2620 | batadv_neigh_node_put(router_orig); |
| 2621 | |
| 2622 | return ret; |
| 2623 | } |
| 2624 | |
Sven Eckelmann | dc1cbd1 | 2016-07-16 09:31:20 +0200 | [diff] [blame] | 2625 | #ifdef CONFIG_BATMAN_ADV_DEBUGFS |
Antonio Quartulli | 34d99cf | 2016-07-03 12:46:33 +0200 | [diff] [blame] | 2626 | /* fails if orig_node has no router */ |
| 2627 | static int batadv_iv_gw_write_buffer_text(struct batadv_priv *bat_priv, |
| 2628 | struct seq_file *seq, |
| 2629 | const struct batadv_gw_node *gw_node) |
| 2630 | { |
| 2631 | struct batadv_gw_node *curr_gw; |
| 2632 | struct batadv_neigh_node *router; |
| 2633 | struct batadv_neigh_ifinfo *router_ifinfo = NULL; |
| 2634 | int ret = -1; |
| 2635 | |
| 2636 | router = batadv_orig_router_get(gw_node->orig_node, BATADV_IF_DEFAULT); |
| 2637 | if (!router) |
| 2638 | goto out; |
| 2639 | |
| 2640 | router_ifinfo = batadv_neigh_ifinfo_get(router, BATADV_IF_DEFAULT); |
| 2641 | if (!router_ifinfo) |
| 2642 | goto out; |
| 2643 | |
| 2644 | curr_gw = batadv_gw_get_selected_gw_node(bat_priv); |
| 2645 | |
| 2646 | seq_printf(seq, "%s %pM (%3i) %pM [%10s]: %u.%u/%u.%u MBit\n", |
| 2647 | (curr_gw == gw_node ? "=>" : " "), |
| 2648 | gw_node->orig_node->orig, |
| 2649 | router_ifinfo->bat_iv.tq_avg, router->addr, |
| 2650 | router->if_incoming->net_dev->name, |
| 2651 | gw_node->bandwidth_down / 10, |
| 2652 | gw_node->bandwidth_down % 10, |
| 2653 | gw_node->bandwidth_up / 10, |
| 2654 | gw_node->bandwidth_up % 10); |
| 2655 | ret = seq_has_overflowed(seq) ? -1 : 0; |
| 2656 | |
| 2657 | if (curr_gw) |
| 2658 | batadv_gw_node_put(curr_gw); |
| 2659 | out: |
| 2660 | if (router_ifinfo) |
| 2661 | batadv_neigh_ifinfo_put(router_ifinfo); |
| 2662 | if (router) |
| 2663 | batadv_neigh_node_put(router); |
| 2664 | return ret; |
| 2665 | } |
| 2666 | |
| 2667 | static void batadv_iv_gw_print(struct batadv_priv *bat_priv, |
| 2668 | struct seq_file *seq) |
| 2669 | { |
| 2670 | struct batadv_gw_node *gw_node; |
| 2671 | int gw_count = 0; |
| 2672 | |
| 2673 | seq_puts(seq, |
| 2674 | " Gateway (#/255) Nexthop [outgoingIF]: advertised uplink bandwidth\n"); |
| 2675 | |
| 2676 | rcu_read_lock(); |
| 2677 | hlist_for_each_entry_rcu(gw_node, &bat_priv->gw.list, list) { |
| 2678 | /* fails if orig_node has no router */ |
| 2679 | if (batadv_iv_gw_write_buffer_text(bat_priv, seq, gw_node) < 0) |
| 2680 | continue; |
| 2681 | |
| 2682 | gw_count++; |
| 2683 | } |
| 2684 | rcu_read_unlock(); |
| 2685 | |
| 2686 | if (gw_count == 0) |
| 2687 | seq_puts(seq, "No gateways in range ...\n"); |
| 2688 | } |
Sven Eckelmann | dc1cbd1 | 2016-07-16 09:31:20 +0200 | [diff] [blame] | 2689 | #endif |
Antonio Quartulli | 34d99cf | 2016-07-03 12:46:33 +0200 | [diff] [blame] | 2690 | |
Andrew Lunn | efb766a | 2016-07-03 13:31:43 +0200 | [diff] [blame] | 2691 | /** |
| 2692 | * batadv_iv_gw_dump_entry - Dump a gateway into a message |
| 2693 | * @msg: Netlink message to dump into |
| 2694 | * @portid: Port making netlink request |
| 2695 | * @seq: Sequence number of netlink message |
| 2696 | * @bat_priv: The bat priv with all the soft interface information |
| 2697 | * @gw_node: Gateway to be dumped |
| 2698 | * |
| 2699 | * Return: Error code, or 0 on success |
| 2700 | */ |
| 2701 | static int batadv_iv_gw_dump_entry(struct sk_buff *msg, u32 portid, u32 seq, |
| 2702 | struct batadv_priv *bat_priv, |
| 2703 | struct batadv_gw_node *gw_node) |
| 2704 | { |
| 2705 | struct batadv_neigh_ifinfo *router_ifinfo = NULL; |
| 2706 | struct batadv_neigh_node *router; |
| 2707 | struct batadv_gw_node *curr_gw; |
| 2708 | int ret = -EINVAL; |
| 2709 | void *hdr; |
| 2710 | |
| 2711 | router = batadv_orig_router_get(gw_node->orig_node, BATADV_IF_DEFAULT); |
| 2712 | if (!router) |
| 2713 | goto out; |
| 2714 | |
| 2715 | router_ifinfo = batadv_neigh_ifinfo_get(router, BATADV_IF_DEFAULT); |
| 2716 | if (!router_ifinfo) |
| 2717 | goto out; |
| 2718 | |
| 2719 | curr_gw = batadv_gw_get_selected_gw_node(bat_priv); |
| 2720 | |
| 2721 | hdr = genlmsg_put(msg, portid, seq, &batadv_netlink_family, |
| 2722 | NLM_F_MULTI, BATADV_CMD_GET_GATEWAYS); |
| 2723 | if (!hdr) { |
| 2724 | ret = -ENOBUFS; |
| 2725 | goto out; |
| 2726 | } |
| 2727 | |
| 2728 | ret = -EMSGSIZE; |
| 2729 | |
| 2730 | if (curr_gw == gw_node) |
| 2731 | if (nla_put_flag(msg, BATADV_ATTR_FLAG_BEST)) { |
| 2732 | genlmsg_cancel(msg, hdr); |
| 2733 | goto out; |
| 2734 | } |
| 2735 | |
| 2736 | if (nla_put(msg, BATADV_ATTR_ORIG_ADDRESS, ETH_ALEN, |
| 2737 | gw_node->orig_node->orig) || |
| 2738 | nla_put_u8(msg, BATADV_ATTR_TQ, router_ifinfo->bat_iv.tq_avg) || |
| 2739 | nla_put(msg, BATADV_ATTR_ROUTER, ETH_ALEN, |
| 2740 | router->addr) || |
| 2741 | nla_put_string(msg, BATADV_ATTR_HARD_IFNAME, |
| 2742 | router->if_incoming->net_dev->name) || |
| 2743 | nla_put_u32(msg, BATADV_ATTR_BANDWIDTH_DOWN, |
| 2744 | gw_node->bandwidth_down) || |
| 2745 | nla_put_u32(msg, BATADV_ATTR_BANDWIDTH_UP, |
| 2746 | gw_node->bandwidth_up)) { |
| 2747 | genlmsg_cancel(msg, hdr); |
| 2748 | goto out; |
| 2749 | } |
| 2750 | |
| 2751 | genlmsg_end(msg, hdr); |
| 2752 | ret = 0; |
| 2753 | |
| 2754 | out: |
| 2755 | if (router_ifinfo) |
| 2756 | batadv_neigh_ifinfo_put(router_ifinfo); |
| 2757 | if (router) |
| 2758 | batadv_neigh_node_put(router); |
| 2759 | return ret; |
| 2760 | } |
| 2761 | |
| 2762 | /** |
| 2763 | * batadv_iv_gw_dump - Dump gateways into a message |
| 2764 | * @msg: Netlink message to dump into |
| 2765 | * @cb: Control block containing additional options |
| 2766 | * @bat_priv: The bat priv with all the soft interface information |
| 2767 | */ |
| 2768 | static void batadv_iv_gw_dump(struct sk_buff *msg, struct netlink_callback *cb, |
| 2769 | struct batadv_priv *bat_priv) |
| 2770 | { |
| 2771 | int portid = NETLINK_CB(cb->skb).portid; |
| 2772 | struct batadv_gw_node *gw_node; |
| 2773 | int idx_skip = cb->args[0]; |
| 2774 | int idx = 0; |
| 2775 | |
| 2776 | rcu_read_lock(); |
| 2777 | hlist_for_each_entry_rcu(gw_node, &bat_priv->gw.list, list) { |
| 2778 | if (idx++ < idx_skip) |
| 2779 | continue; |
| 2780 | |
| 2781 | if (batadv_iv_gw_dump_entry(msg, portid, cb->nlh->nlmsg_seq, |
| 2782 | bat_priv, gw_node)) { |
| 2783 | idx_skip = idx - 1; |
| 2784 | goto unlock; |
| 2785 | } |
| 2786 | } |
| 2787 | |
| 2788 | idx_skip = idx; |
| 2789 | unlock: |
| 2790 | rcu_read_unlock(); |
| 2791 | |
| 2792 | cb->args[0] = idx_skip; |
| 2793 | } |
| 2794 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 2795 | static struct batadv_algo_ops batadv_batman_iv __read_mostly = { |
Marek Lindner | 519d349 | 2012-04-18 17:15:57 +0800 | [diff] [blame] | 2796 | .name = "BATMAN_IV", |
Antonio Quartulli | 29824a5 | 2016-05-25 23:27:31 +0800 | [diff] [blame] | 2797 | .iface = { |
| 2798 | .activate = batadv_iv_iface_activate, |
| 2799 | .enable = batadv_iv_ogm_iface_enable, |
| 2800 | .disable = batadv_iv_ogm_iface_disable, |
| 2801 | .update_mac = batadv_iv_ogm_iface_update_mac, |
| 2802 | .primary_set = batadv_iv_ogm_primary_iface_set, |
| 2803 | }, |
| 2804 | .neigh = { |
| 2805 | .cmp = batadv_iv_ogm_neigh_cmp, |
| 2806 | .is_similar_or_better = batadv_iv_ogm_neigh_is_sob, |
Sven Eckelmann | dc1cbd1 | 2016-07-16 09:31:20 +0200 | [diff] [blame] | 2807 | #ifdef CONFIG_BATMAN_ADV_DEBUGFS |
Antonio Quartulli | 29824a5 | 2016-05-25 23:27:31 +0800 | [diff] [blame] | 2808 | .print = batadv_iv_neigh_print, |
Sven Eckelmann | dc1cbd1 | 2016-07-16 09:31:20 +0200 | [diff] [blame] | 2809 | #endif |
Matthias Schiffer | 024f99c | 2016-07-03 13:31:40 +0200 | [diff] [blame] | 2810 | .dump = batadv_iv_ogm_neigh_dump, |
Antonio Quartulli | 29824a5 | 2016-05-25 23:27:31 +0800 | [diff] [blame] | 2811 | }, |
| 2812 | .orig = { |
Sven Eckelmann | dc1cbd1 | 2016-07-16 09:31:20 +0200 | [diff] [blame] | 2813 | #ifdef CONFIG_BATMAN_ADV_DEBUGFS |
Antonio Quartulli | 29824a5 | 2016-05-25 23:27:31 +0800 | [diff] [blame] | 2814 | .print = batadv_iv_ogm_orig_print, |
Sven Eckelmann | dc1cbd1 | 2016-07-16 09:31:20 +0200 | [diff] [blame] | 2815 | #endif |
Matthias Schiffer | 024f99c | 2016-07-03 13:31:40 +0200 | [diff] [blame] | 2816 | .dump = batadv_iv_ogm_orig_dump, |
Antonio Quartulli | 29824a5 | 2016-05-25 23:27:31 +0800 | [diff] [blame] | 2817 | .free = batadv_iv_ogm_orig_free, |
| 2818 | .add_if = batadv_iv_ogm_orig_add_if, |
| 2819 | .del_if = batadv_iv_ogm_orig_del_if, |
| 2820 | }, |
Antonio Quartulli | 34d99cf | 2016-07-03 12:46:33 +0200 | [diff] [blame] | 2821 | .gw = { |
| 2822 | .get_best_gw_node = batadv_iv_gw_get_best_gw_node, |
| 2823 | .is_eligible = batadv_iv_gw_is_eligible, |
Sven Eckelmann | dc1cbd1 | 2016-07-16 09:31:20 +0200 | [diff] [blame] | 2824 | #ifdef CONFIG_BATMAN_ADV_DEBUGFS |
Antonio Quartulli | 34d99cf | 2016-07-03 12:46:33 +0200 | [diff] [blame] | 2825 | .print = batadv_iv_gw_print, |
Sven Eckelmann | dc1cbd1 | 2016-07-16 09:31:20 +0200 | [diff] [blame] | 2826 | #endif |
Andrew Lunn | efb766a | 2016-07-03 13:31:43 +0200 | [diff] [blame] | 2827 | .dump = batadv_iv_gw_dump, |
Antonio Quartulli | 34d99cf | 2016-07-03 12:46:33 +0200 | [diff] [blame] | 2828 | }, |
Marek Lindner | 1c28047 | 2011-11-28 17:40:17 +0800 | [diff] [blame] | 2829 | }; |
| 2830 | |
Sven Eckelmann | 81c524f | 2012-05-12 02:09:22 +0200 | [diff] [blame] | 2831 | int __init batadv_iv_init(void) |
Marek Lindner | 1c28047 | 2011-11-28 17:40:17 +0800 | [diff] [blame] | 2832 | { |
Marek Lindner | c3e2931 | 2012-03-04 16:56:25 +0800 | [diff] [blame] | 2833 | int ret; |
| 2834 | |
| 2835 | /* batman originator packet */ |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 2836 | ret = batadv_recv_handler_register(BATADV_IV_OGM, |
| 2837 | batadv_iv_ogm_receive); |
Marek Lindner | c3e2931 | 2012-03-04 16:56:25 +0800 | [diff] [blame] | 2838 | if (ret < 0) |
| 2839 | goto out; |
| 2840 | |
Sven Eckelmann | fe8bc39 | 2012-05-12 18:33:51 +0200 | [diff] [blame] | 2841 | ret = batadv_algo_register(&batadv_batman_iv); |
Marek Lindner | c3e2931 | 2012-03-04 16:56:25 +0800 | [diff] [blame] | 2842 | if (ret < 0) |
| 2843 | goto handler_unregister; |
| 2844 | |
| 2845 | goto out; |
| 2846 | |
| 2847 | handler_unregister: |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 2848 | batadv_recv_handler_unregister(BATADV_IV_OGM); |
Marek Lindner | c3e2931 | 2012-03-04 16:56:25 +0800 | [diff] [blame] | 2849 | out: |
| 2850 | return ret; |
Marek Lindner | 1c28047 | 2011-11-28 17:40:17 +0800 | [diff] [blame] | 2851 | } |