Sven Eckelmann | 0046b04 | 2016-01-01 00:01:03 +0100 | [diff] [blame] | 1 | /* Copyright (C) 2007-2016 B.A.T.M.A.N. contributors: |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [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/>. |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 16 | */ |
| 17 | |
| 18 | #include "main.h" |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 19 | |
| 20 | #include <linux/atomic.h> |
| 21 | #include <linux/bug.h> |
| 22 | #include <linux/byteorder/generic.h> |
| 23 | #include <linux/crc32c.h> |
| 24 | #include <linux/errno.h> |
| 25 | #include <linux/fs.h> |
| 26 | #include <linux/if_ether.h> |
| 27 | #include <linux/if_vlan.h> |
| 28 | #include <linux/init.h> |
| 29 | #include <linux/ip.h> |
| 30 | #include <linux/ipv6.h> |
| 31 | #include <linux/kernel.h> |
Sven Eckelmann | f7157dd | 2016-01-16 10:29:48 +0100 | [diff] [blame] | 32 | #include <linux/kref.h> |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 33 | #include <linux/list.h> |
| 34 | #include <linux/module.h> |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 35 | #include <linux/netdevice.h> |
Sven Eckelmann | ba41208 | 2016-05-15 23:48:31 +0200 | [diff] [blame] | 36 | #include <linux/printk.h> |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 37 | #include <linux/rculist.h> |
| 38 | #include <linux/rcupdate.h> |
| 39 | #include <linux/seq_file.h> |
| 40 | #include <linux/skbuff.h> |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 41 | #include <linux/spinlock.h> |
| 42 | #include <linux/stddef.h> |
| 43 | #include <linux/string.h> |
| 44 | #include <linux/workqueue.h> |
| 45 | #include <net/dsfield.h> |
| 46 | #include <net/rtnetlink.h> |
| 47 | |
| 48 | #include "bat_algo.h" |
Sven Eckelmann | a2d0816 | 2016-05-15 11:07:46 +0200 | [diff] [blame^] | 49 | #include "bat_iv_ogm.h" |
| 50 | #include "bat_v.h" |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 51 | #include "bridge_loop_avoidance.h" |
Sven Eckelmann | b706b13 | 2012-06-10 23:58:51 +0200 | [diff] [blame] | 52 | #include "debugfs.h" |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 53 | #include "distributed-arp-table.h" |
| 54 | #include "gateway_client.h" |
| 55 | #include "gateway_common.h" |
| 56 | #include "hard-interface.h" |
| 57 | #include "icmp_socket.h" |
Sven Eckelmann | ba41208 | 2016-05-15 23:48:31 +0200 | [diff] [blame] | 58 | #include "log.h" |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 59 | #include "multicast.h" |
| 60 | #include "network-coding.h" |
| 61 | #include "originator.h" |
| 62 | #include "packet.h" |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 63 | #include "routing.h" |
| 64 | #include "send.h" |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 65 | #include "soft-interface.h" |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 66 | #include "translation-table.h" |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 67 | |
Sven Eckelmann | c3caf51 | 2011-05-03 11:51:38 +0200 | [diff] [blame] | 68 | /* List manipulations on hardif_list have to be rtnl_lock()'ed, |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 69 | * list traversals just rcu-locked |
| 70 | */ |
Sven Eckelmann | 3193e8f | 2012-05-12 02:09:42 +0200 | [diff] [blame] | 71 | struct list_head batadv_hardif_list; |
Sven Eckelmann | ee11ad6 | 2012-05-16 20:23:19 +0200 | [diff] [blame] | 72 | static int (*batadv_rx_handler[256])(struct sk_buff *, |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 73 | struct batadv_hard_iface *); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 74 | |
Sven Eckelmann | 3193e8f | 2012-05-12 02:09:42 +0200 | [diff] [blame] | 75 | unsigned char batadv_broadcast_addr[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff}; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 76 | |
Sven Eckelmann | 3193e8f | 2012-05-12 02:09:42 +0200 | [diff] [blame] | 77 | struct workqueue_struct *batadv_event_workqueue; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 78 | |
Sven Eckelmann | ee11ad6 | 2012-05-16 20:23:19 +0200 | [diff] [blame] | 79 | static void batadv_recv_handler_init(void); |
Marek Lindner | ffa995e | 2012-03-01 15:35:17 +0800 | [diff] [blame] | 80 | |
Sven Eckelmann | ee11ad6 | 2012-05-16 20:23:19 +0200 | [diff] [blame] | 81 | static int __init batadv_init(void) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 82 | { |
Sven Eckelmann | 3193e8f | 2012-05-12 02:09:42 +0200 | [diff] [blame] | 83 | INIT_LIST_HEAD(&batadv_hardif_list); |
Sven Eckelmann | 01d350d | 2016-05-15 11:07:44 +0200 | [diff] [blame] | 84 | batadv_algo_init(); |
Marek Lindner | 1c28047 | 2011-11-28 17:40:17 +0800 | [diff] [blame] | 85 | |
Sven Eckelmann | ee11ad6 | 2012-05-16 20:23:19 +0200 | [diff] [blame] | 86 | batadv_recv_handler_init(); |
Marek Lindner | ffa995e | 2012-03-01 15:35:17 +0800 | [diff] [blame] | 87 | |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 88 | batadv_v_init(); |
Sven Eckelmann | 81c524f | 2012-05-12 02:09:22 +0200 | [diff] [blame] | 89 | batadv_iv_init(); |
Matthias Schiffer | 6c519ba | 2013-09-27 18:03:39 +0200 | [diff] [blame] | 90 | batadv_nc_init(); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 91 | |
Sven Eckelmann | 3193e8f | 2012-05-12 02:09:42 +0200 | [diff] [blame] | 92 | batadv_event_workqueue = create_singlethread_workqueue("bat_events"); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 93 | |
Sven Eckelmann | 3193e8f | 2012-05-12 02:09:42 +0200 | [diff] [blame] | 94 | if (!batadv_event_workqueue) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 95 | return -ENOMEM; |
| 96 | |
Sven Eckelmann | 9039dc7 | 2012-05-12 02:09:33 +0200 | [diff] [blame] | 97 | batadv_socket_init(); |
Sven Eckelmann | 40a072d | 2012-05-12 02:09:23 +0200 | [diff] [blame] | 98 | batadv_debugfs_init(); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 99 | |
Sven Eckelmann | 9563877 | 2012-05-12 02:09:31 +0200 | [diff] [blame] | 100 | register_netdevice_notifier(&batadv_hard_if_notifier); |
Sven Eckelmann | a4ac28c | 2013-02-11 17:10:26 +0800 | [diff] [blame] | 101 | rtnl_link_register(&batadv_link_ops); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 102 | |
Sven Eckelmann | 86ceb36 | 2012-03-07 09:07:45 +0100 | [diff] [blame] | 103 | pr_info("B.A.T.M.A.N. advanced %s (compatibility version %i) loaded\n", |
Sven Eckelmann | 42d0b04 | 2012-06-03 22:19:17 +0200 | [diff] [blame] | 104 | BATADV_SOURCE_VERSION, BATADV_COMPAT_VERSION); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 105 | |
| 106 | return 0; |
| 107 | } |
| 108 | |
Sven Eckelmann | ee11ad6 | 2012-05-16 20:23:19 +0200 | [diff] [blame] | 109 | static void __exit batadv_exit(void) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 110 | { |
Sven Eckelmann | 40a072d | 2012-05-12 02:09:23 +0200 | [diff] [blame] | 111 | batadv_debugfs_destroy(); |
Sven Eckelmann | a4ac28c | 2013-02-11 17:10:26 +0800 | [diff] [blame] | 112 | rtnl_link_unregister(&batadv_link_ops); |
Sven Eckelmann | 9563877 | 2012-05-12 02:09:31 +0200 | [diff] [blame] | 113 | unregister_netdevice_notifier(&batadv_hard_if_notifier); |
| 114 | batadv_hardif_remove_interfaces(); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 115 | |
Sven Eckelmann | 3193e8f | 2012-05-12 02:09:42 +0200 | [diff] [blame] | 116 | flush_workqueue(batadv_event_workqueue); |
| 117 | destroy_workqueue(batadv_event_workqueue); |
| 118 | batadv_event_workqueue = NULL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 119 | |
| 120 | rcu_barrier(); |
| 121 | } |
| 122 | |
Sven Eckelmann | 3193e8f | 2012-05-12 02:09:42 +0200 | [diff] [blame] | 123 | int batadv_mesh_init(struct net_device *soft_iface) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 124 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 125 | struct batadv_priv *bat_priv = netdev_priv(soft_iface); |
Sven Eckelmann | 5346c35 | 2012-05-05 13:27:28 +0200 | [diff] [blame] | 126 | int ret; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 127 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 128 | spin_lock_init(&bat_priv->forw_bat_list_lock); |
| 129 | spin_lock_init(&bat_priv->forw_bcast_list_lock); |
Sven Eckelmann | 807736f | 2012-07-15 22:26:51 +0200 | [diff] [blame] | 130 | spin_lock_init(&bat_priv->tt.changes_list_lock); |
| 131 | spin_lock_init(&bat_priv->tt.req_list_lock); |
| 132 | spin_lock_init(&bat_priv->tt.roam_list_lock); |
| 133 | spin_lock_init(&bat_priv->tt.last_changeset_lock); |
Antonio Quartulli | a70a9aa | 2013-07-30 22:16:24 +0200 | [diff] [blame] | 134 | spin_lock_init(&bat_priv->tt.commit_lock); |
Sven Eckelmann | 807736f | 2012-07-15 22:26:51 +0200 | [diff] [blame] | 135 | spin_lock_init(&bat_priv->gw.list_lock); |
Linus LĂĽssing | ab49886 | 2014-02-15 17:47:53 +0100 | [diff] [blame] | 136 | #ifdef CONFIG_BATMAN_ADV_MCAST |
| 137 | spin_lock_init(&bat_priv->mcast.want_lists_lock); |
| 138 | #endif |
Marek Lindner | ef26157 | 2013-04-23 21:39:57 +0800 | [diff] [blame] | 139 | spin_lock_init(&bat_priv->tvlv.container_list_lock); |
| 140 | spin_lock_init(&bat_priv->tvlv.handler_list_lock); |
Antonio Quartulli | 5d2c05b | 2013-07-02 11:04:34 +0200 | [diff] [blame] | 141 | spin_lock_init(&bat_priv->softif_vlan_list_lock); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 142 | |
| 143 | INIT_HLIST_HEAD(&bat_priv->forw_bat_list); |
| 144 | INIT_HLIST_HEAD(&bat_priv->forw_bcast_list); |
Sven Eckelmann | 807736f | 2012-07-15 22:26:51 +0200 | [diff] [blame] | 145 | INIT_HLIST_HEAD(&bat_priv->gw.list); |
Linus LĂĽssing | ab49886 | 2014-02-15 17:47:53 +0100 | [diff] [blame] | 146 | #ifdef CONFIG_BATMAN_ADV_MCAST |
| 147 | INIT_HLIST_HEAD(&bat_priv->mcast.want_all_unsnoopables_list); |
Linus LĂĽssing | 4c8755d | 2014-02-15 17:47:54 +0100 | [diff] [blame] | 148 | INIT_HLIST_HEAD(&bat_priv->mcast.want_all_ipv4_list); |
| 149 | INIT_HLIST_HEAD(&bat_priv->mcast.want_all_ipv6_list); |
Linus LĂĽssing | ab49886 | 2014-02-15 17:47:53 +0100 | [diff] [blame] | 150 | #endif |
Sven Eckelmann | 807736f | 2012-07-15 22:26:51 +0200 | [diff] [blame] | 151 | INIT_LIST_HEAD(&bat_priv->tt.changes_list); |
Marek Lindner | 7c26a53 | 2015-06-28 22:16:06 +0800 | [diff] [blame] | 152 | INIT_HLIST_HEAD(&bat_priv->tt.req_list); |
Sven Eckelmann | 807736f | 2012-07-15 22:26:51 +0200 | [diff] [blame] | 153 | INIT_LIST_HEAD(&bat_priv->tt.roam_list); |
Linus LĂĽssing | c5caf4e | 2014-02-15 17:47:49 +0100 | [diff] [blame] | 154 | #ifdef CONFIG_BATMAN_ADV_MCAST |
| 155 | INIT_HLIST_HEAD(&bat_priv->mcast.mla_list); |
| 156 | #endif |
Marek Lindner | ef26157 | 2013-04-23 21:39:57 +0800 | [diff] [blame] | 157 | INIT_HLIST_HEAD(&bat_priv->tvlv.container_list); |
| 158 | INIT_HLIST_HEAD(&bat_priv->tvlv.handler_list); |
Antonio Quartulli | 5d2c05b | 2013-07-02 11:04:34 +0200 | [diff] [blame] | 159 | INIT_HLIST_HEAD(&bat_priv->softif_vlan_list); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 160 | |
Antonio Quartulli | 0da0035 | 2016-01-16 16:40:12 +0800 | [diff] [blame] | 161 | ret = batadv_v_mesh_init(bat_priv); |
| 162 | if (ret < 0) |
| 163 | goto err; |
| 164 | |
Sven Eckelmann | 7d211ef | 2012-05-12 02:09:34 +0200 | [diff] [blame] | 165 | ret = batadv_originator_init(bat_priv); |
Sven Eckelmann | 5346c35 | 2012-05-05 13:27:28 +0200 | [diff] [blame] | 166 | if (ret < 0) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 167 | goto err; |
| 168 | |
Sven Eckelmann | 08c36d3 | 2012-05-12 02:09:39 +0200 | [diff] [blame] | 169 | ret = batadv_tt_init(bat_priv); |
Sven Eckelmann | 5346c35 | 2012-05-05 13:27:28 +0200 | [diff] [blame] | 170 | if (ret < 0) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 171 | goto err; |
| 172 | |
Sven Eckelmann | 08adf15 | 2012-05-12 13:38:47 +0200 | [diff] [blame] | 173 | ret = batadv_bla_init(bat_priv); |
Sven Eckelmann | 5346c35 | 2012-05-05 13:27:28 +0200 | [diff] [blame] | 174 | if (ret < 0) |
Simon Wunderlich | 2372138 | 2012-01-22 20:00:19 +0100 | [diff] [blame] | 175 | goto err; |
| 176 | |
Antonio Quartulli | 2f1dfbe | 2012-06-30 20:01:19 +0200 | [diff] [blame] | 177 | ret = batadv_dat_init(bat_priv); |
| 178 | if (ret < 0) |
| 179 | goto err; |
| 180 | |
Matthias Schiffer | 6c519ba | 2013-09-27 18:03:39 +0200 | [diff] [blame] | 181 | ret = batadv_nc_mesh_init(bat_priv); |
Martin Hundebøll | d353d8d | 2013-01-25 11:12:38 +0100 | [diff] [blame] | 182 | if (ret < 0) |
| 183 | goto err; |
| 184 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 185 | batadv_gw_init(bat_priv); |
Linus LĂĽssing | 60432d7 | 2014-02-15 17:47:51 +0100 | [diff] [blame] | 186 | batadv_mcast_init(bat_priv); |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 187 | |
Sven Eckelmann | 807736f | 2012-07-15 22:26:51 +0200 | [diff] [blame] | 188 | atomic_set(&bat_priv->gw.reselect, 0); |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 189 | atomic_set(&bat_priv->mesh_state, BATADV_MESH_ACTIVE); |
Sven Eckelmann | 5346c35 | 2012-05-05 13:27:28 +0200 | [diff] [blame] | 190 | |
| 191 | return 0; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 192 | |
| 193 | err: |
Sven Eckelmann | 3193e8f | 2012-05-12 02:09:42 +0200 | [diff] [blame] | 194 | batadv_mesh_free(soft_iface); |
Sven Eckelmann | 5346c35 | 2012-05-05 13:27:28 +0200 | [diff] [blame] | 195 | return ret; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 196 | } |
| 197 | |
Sven Eckelmann | 3193e8f | 2012-05-12 02:09:42 +0200 | [diff] [blame] | 198 | void batadv_mesh_free(struct net_device *soft_iface) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 199 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 200 | struct batadv_priv *bat_priv = netdev_priv(soft_iface); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 201 | |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 202 | atomic_set(&bat_priv->mesh_state, BATADV_MESH_DEACTIVATING); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 203 | |
Sven Eckelmann | 9455e34 | 2012-05-12 02:09:37 +0200 | [diff] [blame] | 204 | batadv_purge_outstanding_packets(bat_priv, NULL); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 205 | |
Simon Wunderlich | bd3524c | 2015-08-03 19:13:58 +0200 | [diff] [blame] | 206 | batadv_gw_node_free(bat_priv); |
Antonio Quartulli | 0da0035 | 2016-01-16 16:40:12 +0800 | [diff] [blame] | 207 | |
| 208 | batadv_v_mesh_free(bat_priv); |
Matthias Schiffer | 6c519ba | 2013-09-27 18:03:39 +0200 | [diff] [blame] | 209 | batadv_nc_mesh_free(bat_priv); |
Antonio Quartulli | a436186 | 2013-05-07 01:06:18 +0200 | [diff] [blame] | 210 | batadv_dat_free(bat_priv); |
Sven Eckelmann | 08adf15 | 2012-05-12 13:38:47 +0200 | [diff] [blame] | 211 | batadv_bla_free(bat_priv); |
Simon Wunderlich | 2372138 | 2012-01-22 20:00:19 +0100 | [diff] [blame] | 212 | |
Linus LĂĽssing | c5caf4e | 2014-02-15 17:47:49 +0100 | [diff] [blame] | 213 | batadv_mcast_free(bat_priv); |
| 214 | |
Antonio Quartulli | a436186 | 2013-05-07 01:06:18 +0200 | [diff] [blame] | 215 | /* Free the TT and the originator tables only after having terminated |
| 216 | * all the other depending components which may use these structures for |
| 217 | * their purposes. |
| 218 | */ |
| 219 | batadv_tt_free(bat_priv); |
| 220 | |
| 221 | /* Since the originator table clean up routine is accessing the TT |
| 222 | * tables as well, it has to be invoked after the TT tables have been |
| 223 | * freed and marked as empty. This ensures that no cleanup RCU callbacks |
| 224 | * accessing the TT data are scheduled for later execution. |
| 225 | */ |
| 226 | batadv_originator_free(bat_priv); |
Antonio Quartulli | 2f1dfbe | 2012-06-30 20:01:19 +0200 | [diff] [blame] | 227 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 228 | batadv_gw_free(bat_priv); |
| 229 | |
Martin Hundebøll | f821486 | 2012-04-20 17:02:45 +0200 | [diff] [blame] | 230 | free_percpu(bat_priv->bat_counters); |
Martin Hundebøll | f69ae77 | 2013-04-17 21:13:16 +0200 | [diff] [blame] | 231 | bat_priv->bat_counters = NULL; |
Martin Hundebøll | f821486 | 2012-04-20 17:02:45 +0200 | [diff] [blame] | 232 | |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 233 | atomic_set(&bat_priv->mesh_state, BATADV_MESH_INACTIVE); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 234 | } |
| 235 | |
David S. Miller | 6e0895c | 2013-04-22 20:32:51 -0400 | [diff] [blame] | 236 | /** |
| 237 | * batadv_is_my_mac - check if the given mac address belongs to any of the real |
| 238 | * interfaces in the current mesh |
| 239 | * @bat_priv: the bat priv with all the soft interface information |
| 240 | * @addr: the address to check |
Markus Pargmann | e8ad3b1 | 2014-12-26 12:41:38 +0100 | [diff] [blame] | 241 | * |
Sven Eckelmann | 62fe710 | 2015-09-15 19:00:48 +0200 | [diff] [blame] | 242 | * Return: 'true' if the mac address was found, false otherwise. |
David S. Miller | 6e0895c | 2013-04-22 20:32:51 -0400 | [diff] [blame] | 243 | */ |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 244 | bool batadv_is_my_mac(struct batadv_priv *bat_priv, const u8 *addr) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 245 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 246 | const struct batadv_hard_iface *hard_iface; |
Markus Pargmann | e8ad3b1 | 2014-12-26 12:41:38 +0100 | [diff] [blame] | 247 | bool is_my_mac = false; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 248 | |
| 249 | rcu_read_lock(); |
Sven Eckelmann | 3193e8f | 2012-05-12 02:09:42 +0200 | [diff] [blame] | 250 | list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) { |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 251 | if (hard_iface->if_status != BATADV_IF_ACTIVE) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 252 | continue; |
| 253 | |
Antonio Quartulli | fe8a93b | 2013-04-03 19:10:26 +0200 | [diff] [blame] | 254 | if (hard_iface->soft_iface != bat_priv->soft_iface) |
| 255 | continue; |
| 256 | |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 257 | if (batadv_compare_eth(hard_iface->net_dev->dev_addr, addr)) { |
Markus Pargmann | e8ad3b1 | 2014-12-26 12:41:38 +0100 | [diff] [blame] | 258 | is_my_mac = true; |
| 259 | break; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 260 | } |
| 261 | } |
| 262 | rcu_read_unlock(); |
Markus Pargmann | e8ad3b1 | 2014-12-26 12:41:38 +0100 | [diff] [blame] | 263 | return is_my_mac; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 264 | } |
| 265 | |
Marek Lindner | 30da63a | 2012-08-03 17:15:46 +0200 | [diff] [blame] | 266 | /** |
| 267 | * batadv_seq_print_text_primary_if_get - called from debugfs table printing |
| 268 | * function that requires the primary interface |
| 269 | * @seq: debugfs table seq_file struct |
| 270 | * |
Sven Eckelmann | 62fe710 | 2015-09-15 19:00:48 +0200 | [diff] [blame] | 271 | * Return: primary interface if found or NULL otherwise. |
Marek Lindner | 30da63a | 2012-08-03 17:15:46 +0200 | [diff] [blame] | 272 | */ |
| 273 | struct batadv_hard_iface * |
| 274 | batadv_seq_print_text_primary_if_get(struct seq_file *seq) |
| 275 | { |
| 276 | struct net_device *net_dev = (struct net_device *)seq->private; |
| 277 | struct batadv_priv *bat_priv = netdev_priv(net_dev); |
| 278 | struct batadv_hard_iface *primary_if; |
| 279 | |
| 280 | primary_if = batadv_primary_if_get_selected(bat_priv); |
| 281 | |
| 282 | if (!primary_if) { |
| 283 | seq_printf(seq, |
| 284 | "BATMAN mesh %s disabled - please specify interfaces to enable it\n", |
| 285 | net_dev->name); |
| 286 | goto out; |
| 287 | } |
| 288 | |
| 289 | if (primary_if->if_status == BATADV_IF_ACTIVE) |
| 290 | goto out; |
| 291 | |
| 292 | seq_printf(seq, |
| 293 | "BATMAN mesh %s disabled - primary interface not active\n", |
| 294 | net_dev->name); |
Sven Eckelmann | 82047ad | 2016-01-17 11:01:10 +0100 | [diff] [blame] | 295 | batadv_hardif_put(primary_if); |
Marek Lindner | 30da63a | 2012-08-03 17:15:46 +0200 | [diff] [blame] | 296 | primary_if = NULL; |
| 297 | |
| 298 | out: |
| 299 | return primary_if; |
| 300 | } |
| 301 | |
Simon Wunderlich | c54f38c9 | 2013-07-29 17:56:44 +0200 | [diff] [blame] | 302 | /** |
Marek Lindner | 411d6ed | 2013-05-08 13:31:59 +0800 | [diff] [blame] | 303 | * batadv_max_header_len - calculate maximum encapsulation overhead for a |
| 304 | * payload packet |
| 305 | * |
Sven Eckelmann | 62fe710 | 2015-09-15 19:00:48 +0200 | [diff] [blame] | 306 | * Return: the maximum encapsulation overhead in bytes. |
Marek Lindner | 411d6ed | 2013-05-08 13:31:59 +0800 | [diff] [blame] | 307 | */ |
| 308 | int batadv_max_header_len(void) |
| 309 | { |
| 310 | int header_len = 0; |
| 311 | |
| 312 | header_len = max_t(int, header_len, |
| 313 | sizeof(struct batadv_unicast_packet)); |
| 314 | header_len = max_t(int, header_len, |
| 315 | sizeof(struct batadv_unicast_4addr_packet)); |
| 316 | header_len = max_t(int, header_len, |
| 317 | sizeof(struct batadv_bcast_packet)); |
| 318 | |
| 319 | #ifdef CONFIG_BATMAN_ADV_NC |
| 320 | header_len = max_t(int, header_len, |
| 321 | sizeof(struct batadv_coded_packet)); |
| 322 | #endif |
| 323 | |
Marek Lindner | 1df0cbd | 2014-01-15 20:31:18 +0800 | [diff] [blame] | 324 | return header_len + ETH_HLEN; |
Marek Lindner | 411d6ed | 2013-05-08 13:31:59 +0800 | [diff] [blame] | 325 | } |
| 326 | |
| 327 | /** |
Simon Wunderlich | c54f38c9 | 2013-07-29 17:56:44 +0200 | [diff] [blame] | 328 | * batadv_skb_set_priority - sets skb priority according to packet content |
| 329 | * @skb: the packet to be sent |
| 330 | * @offset: offset to the packet content |
| 331 | * |
| 332 | * This function sets a value between 256 and 263 (802.1d priority), which |
| 333 | * can be interpreted by the cfg80211 or other drivers. |
| 334 | */ |
| 335 | void batadv_skb_set_priority(struct sk_buff *skb, int offset) |
| 336 | { |
| 337 | struct iphdr ip_hdr_tmp, *ip_hdr; |
| 338 | struct ipv6hdr ip6_hdr_tmp, *ip6_hdr; |
| 339 | struct ethhdr ethhdr_tmp, *ethhdr; |
| 340 | struct vlan_ethhdr *vhdr, vhdr_tmp; |
| 341 | u32 prio; |
| 342 | |
| 343 | /* already set, do nothing */ |
| 344 | if (skb->priority >= 256 && skb->priority <= 263) |
| 345 | return; |
| 346 | |
| 347 | ethhdr = skb_header_pointer(skb, offset, sizeof(*ethhdr), ðhdr_tmp); |
| 348 | if (!ethhdr) |
| 349 | return; |
| 350 | |
| 351 | switch (ethhdr->h_proto) { |
| 352 | case htons(ETH_P_8021Q): |
| 353 | vhdr = skb_header_pointer(skb, offset + sizeof(*vhdr), |
| 354 | sizeof(*vhdr), &vhdr_tmp); |
| 355 | if (!vhdr) |
| 356 | return; |
| 357 | prio = ntohs(vhdr->h_vlan_TCI) & VLAN_PRIO_MASK; |
| 358 | prio = prio >> VLAN_PRIO_SHIFT; |
| 359 | break; |
| 360 | case htons(ETH_P_IP): |
| 361 | ip_hdr = skb_header_pointer(skb, offset + sizeof(*ethhdr), |
| 362 | sizeof(*ip_hdr), &ip_hdr_tmp); |
| 363 | if (!ip_hdr) |
| 364 | return; |
| 365 | prio = (ipv4_get_dsfield(ip_hdr) & 0xfc) >> 5; |
| 366 | break; |
| 367 | case htons(ETH_P_IPV6): |
| 368 | ip6_hdr = skb_header_pointer(skb, offset + sizeof(*ethhdr), |
| 369 | sizeof(*ip6_hdr), &ip6_hdr_tmp); |
| 370 | if (!ip6_hdr) |
| 371 | return; |
| 372 | prio = (ipv6_get_dsfield(ip6_hdr) & 0xfc) >> 5; |
| 373 | break; |
| 374 | default: |
| 375 | return; |
| 376 | } |
| 377 | |
| 378 | skb->priority = prio + 256; |
| 379 | } |
| 380 | |
Sven Eckelmann | ee11ad6 | 2012-05-16 20:23:19 +0200 | [diff] [blame] | 381 | static int batadv_recv_unhandled_packet(struct sk_buff *skb, |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 382 | struct batadv_hard_iface *recv_if) |
Marek Lindner | ffa995e | 2012-03-01 15:35:17 +0800 | [diff] [blame] | 383 | { |
| 384 | return NET_RX_DROP; |
| 385 | } |
| 386 | |
| 387 | /* incoming packets with the batman ethertype received on any active hard |
| 388 | * interface |
| 389 | */ |
Sven Eckelmann | 3193e8f | 2012-05-12 02:09:42 +0200 | [diff] [blame] | 390 | int batadv_batman_skb_recv(struct sk_buff *skb, struct net_device *dev, |
| 391 | struct packet_type *ptype, |
| 392 | struct net_device *orig_dev) |
Marek Lindner | ffa995e | 2012-03-01 15:35:17 +0800 | [diff] [blame] | 393 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 394 | struct batadv_priv *bat_priv; |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 395 | struct batadv_ogm_packet *batadv_ogm_packet; |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 396 | struct batadv_hard_iface *hard_iface; |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 397 | u8 idx; |
Marek Lindner | ffa995e | 2012-03-01 15:35:17 +0800 | [diff] [blame] | 398 | int ret; |
| 399 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 400 | hard_iface = container_of(ptype, struct batadv_hard_iface, |
| 401 | batman_adv_ptype); |
Sven Eckelmann | 4fe56e6 | 2016-03-05 16:09:17 +0100 | [diff] [blame] | 402 | |
| 403 | /* Prevent processing a packet received on an interface which is getting |
| 404 | * shut down otherwise the packet may trigger de-reference errors |
| 405 | * further down in the receive path. |
| 406 | */ |
| 407 | if (!kref_get_unless_zero(&hard_iface->refcount)) |
| 408 | goto err_out; |
| 409 | |
Marek Lindner | ffa995e | 2012-03-01 15:35:17 +0800 | [diff] [blame] | 410 | skb = skb_share_check(skb, GFP_ATOMIC); |
| 411 | |
| 412 | /* skb was released by skb_share_check() */ |
| 413 | if (!skb) |
Sven Eckelmann | 4fe56e6 | 2016-03-05 16:09:17 +0100 | [diff] [blame] | 414 | goto err_put; |
Marek Lindner | ffa995e | 2012-03-01 15:35:17 +0800 | [diff] [blame] | 415 | |
| 416 | /* packet should hold at least type and version */ |
| 417 | if (unlikely(!pskb_may_pull(skb, 2))) |
| 418 | goto err_free; |
| 419 | |
| 420 | /* expect a valid ethernet header here. */ |
| 421 | if (unlikely(skb->mac_len != ETH_HLEN || !skb_mac_header(skb))) |
| 422 | goto err_free; |
| 423 | |
| 424 | if (!hard_iface->soft_iface) |
| 425 | goto err_free; |
| 426 | |
| 427 | bat_priv = netdev_priv(hard_iface->soft_iface); |
| 428 | |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 429 | if (atomic_read(&bat_priv->mesh_state) != BATADV_MESH_ACTIVE) |
Marek Lindner | ffa995e | 2012-03-01 15:35:17 +0800 | [diff] [blame] | 430 | goto err_free; |
| 431 | |
| 432 | /* discard frames on not active interfaces */ |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 433 | if (hard_iface->if_status != BATADV_IF_ACTIVE) |
Marek Lindner | ffa995e | 2012-03-01 15:35:17 +0800 | [diff] [blame] | 434 | goto err_free; |
| 435 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 436 | batadv_ogm_packet = (struct batadv_ogm_packet *)skb->data; |
Marek Lindner | ffa995e | 2012-03-01 15:35:17 +0800 | [diff] [blame] | 437 | |
Simon Wunderlich | a40d9b0 | 2013-12-02 20:38:31 +0100 | [diff] [blame] | 438 | if (batadv_ogm_packet->version != BATADV_COMPAT_VERSION) { |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 439 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 440 | "Drop packet: incompatible batman version (%i)\n", |
Simon Wunderlich | a40d9b0 | 2013-12-02 20:38:31 +0100 | [diff] [blame] | 441 | batadv_ogm_packet->version); |
Marek Lindner | ffa995e | 2012-03-01 15:35:17 +0800 | [diff] [blame] | 442 | goto err_free; |
| 443 | } |
| 444 | |
Martin Hundebøll | e0d9677 | 2014-09-17 08:56:19 +0200 | [diff] [blame] | 445 | /* reset control block to avoid left overs from previous users */ |
| 446 | memset(skb->cb, 0, sizeof(struct batadv_skb_cb)); |
| 447 | |
Marek Lindner | ffa995e | 2012-03-01 15:35:17 +0800 | [diff] [blame] | 448 | /* all receive handlers return whether they received or reused |
| 449 | * the supplied skb. if not, we have to free the skb. |
| 450 | */ |
Simon Wunderlich | a40d9b0 | 2013-12-02 20:38:31 +0100 | [diff] [blame] | 451 | idx = batadv_ogm_packet->packet_type; |
Sven Eckelmann | ee11ad6 | 2012-05-16 20:23:19 +0200 | [diff] [blame] | 452 | ret = (*batadv_rx_handler[idx])(skb, hard_iface); |
Marek Lindner | ffa995e | 2012-03-01 15:35:17 +0800 | [diff] [blame] | 453 | |
| 454 | if (ret == NET_RX_DROP) |
| 455 | kfree_skb(skb); |
| 456 | |
Sven Eckelmann | 4fe56e6 | 2016-03-05 16:09:17 +0100 | [diff] [blame] | 457 | batadv_hardif_put(hard_iface); |
| 458 | |
Marek Lindner | ffa995e | 2012-03-01 15:35:17 +0800 | [diff] [blame] | 459 | /* return NET_RX_SUCCESS in any case as we |
| 460 | * most probably dropped the packet for |
| 461 | * routing-logical reasons. |
| 462 | */ |
| 463 | return NET_RX_SUCCESS; |
| 464 | |
| 465 | err_free: |
| 466 | kfree_skb(skb); |
Sven Eckelmann | 4fe56e6 | 2016-03-05 16:09:17 +0100 | [diff] [blame] | 467 | err_put: |
| 468 | batadv_hardif_put(hard_iface); |
Marek Lindner | ffa995e | 2012-03-01 15:35:17 +0800 | [diff] [blame] | 469 | err_out: |
| 470 | return NET_RX_DROP; |
| 471 | } |
| 472 | |
Sven Eckelmann | ee11ad6 | 2012-05-16 20:23:19 +0200 | [diff] [blame] | 473 | static void batadv_recv_handler_init(void) |
Marek Lindner | ffa995e | 2012-03-01 15:35:17 +0800 | [diff] [blame] | 474 | { |
| 475 | int i; |
| 476 | |
Sven Eckelmann | ee11ad6 | 2012-05-16 20:23:19 +0200 | [diff] [blame] | 477 | for (i = 0; i < ARRAY_SIZE(batadv_rx_handler); i++) |
| 478 | batadv_rx_handler[i] = batadv_recv_unhandled_packet; |
Marek Lindner | ffa995e | 2012-03-01 15:35:17 +0800 | [diff] [blame] | 479 | |
Simon Wunderlich | a1f1ac5 | 2013-04-25 10:37:23 +0200 | [diff] [blame] | 480 | for (i = BATADV_UNICAST_MIN; i <= BATADV_UNICAST_MAX; i++) |
| 481 | batadv_rx_handler[i] = batadv_recv_unhandled_unicast_packet; |
| 482 | |
Simon Wunderlich | 031ace8 | 2013-12-17 19:12:12 +0100 | [diff] [blame] | 483 | /* compile time checks for sizes */ |
| 484 | BUILD_BUG_ON(sizeof(struct batadv_bla_claim_dst) != 6); |
| 485 | BUILD_BUG_ON(sizeof(struct batadv_ogm_packet) != 24); |
| 486 | BUILD_BUG_ON(sizeof(struct batadv_icmp_header) != 20); |
| 487 | BUILD_BUG_ON(sizeof(struct batadv_icmp_packet) != 20); |
| 488 | BUILD_BUG_ON(sizeof(struct batadv_icmp_packet_rr) != 116); |
| 489 | BUILD_BUG_ON(sizeof(struct batadv_unicast_packet) != 10); |
| 490 | BUILD_BUG_ON(sizeof(struct batadv_unicast_4addr_packet) != 18); |
| 491 | BUILD_BUG_ON(sizeof(struct batadv_frag_packet) != 20); |
| 492 | BUILD_BUG_ON(sizeof(struct batadv_bcast_packet) != 14); |
| 493 | BUILD_BUG_ON(sizeof(struct batadv_coded_packet) != 46); |
| 494 | BUILD_BUG_ON(sizeof(struct batadv_unicast_tvlv_packet) != 20); |
| 495 | BUILD_BUG_ON(sizeof(struct batadv_tvlv_hdr) != 4); |
| 496 | BUILD_BUG_ON(sizeof(struct batadv_tvlv_gateway_data) != 8); |
| 497 | BUILD_BUG_ON(sizeof(struct batadv_tvlv_tt_vlan_data) != 8); |
| 498 | BUILD_BUG_ON(sizeof(struct batadv_tvlv_tt_change) != 12); |
| 499 | BUILD_BUG_ON(sizeof(struct batadv_tvlv_roam_adv) != 8); |
Simon Wunderlich | 80067c8 | 2013-04-25 10:37:22 +0200 | [diff] [blame] | 500 | |
Simon Wunderlich | a1f1ac5 | 2013-04-25 10:37:23 +0200 | [diff] [blame] | 501 | /* broadcast packet */ |
| 502 | batadv_rx_handler[BATADV_BCAST] = batadv_recv_bcast_packet; |
| 503 | |
| 504 | /* unicast packets ... */ |
Antonio Quartulli | 7cdcf6d | 2012-10-01 09:57:35 +0200 | [diff] [blame] | 505 | /* unicast with 4 addresses packet */ |
| 506 | batadv_rx_handler[BATADV_UNICAST_4ADDR] = batadv_recv_unicast_packet; |
Marek Lindner | ffa995e | 2012-03-01 15:35:17 +0800 | [diff] [blame] | 507 | /* unicast packet */ |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 508 | batadv_rx_handler[BATADV_UNICAST] = batadv_recv_unicast_packet; |
Marek Lindner | ef26157 | 2013-04-23 21:39:57 +0800 | [diff] [blame] | 509 | /* unicast tvlv packet */ |
| 510 | batadv_rx_handler[BATADV_UNICAST_TVLV] = batadv_recv_unicast_tvlv; |
Simon Wunderlich | a1f1ac5 | 2013-04-25 10:37:23 +0200 | [diff] [blame] | 511 | /* batman icmp packet */ |
| 512 | batadv_rx_handler[BATADV_ICMP] = batadv_recv_icmp_packet; |
Martin Hundebøll | 610bfc6bc | 2013-05-23 16:53:02 +0200 | [diff] [blame] | 513 | /* Fragmented packets */ |
| 514 | batadv_rx_handler[BATADV_UNICAST_FRAG] = batadv_recv_frag_packet; |
Marek Lindner | ffa995e | 2012-03-01 15:35:17 +0800 | [diff] [blame] | 515 | } |
| 516 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 517 | int |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 518 | batadv_recv_handler_register(u8 packet_type, |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 519 | int (*recv_handler)(struct sk_buff *, |
| 520 | struct batadv_hard_iface *)) |
Marek Lindner | ffa995e | 2012-03-01 15:35:17 +0800 | [diff] [blame] | 521 | { |
Simon Wunderlich | a1f1ac5 | 2013-04-25 10:37:23 +0200 | [diff] [blame] | 522 | int (*curr)(struct sk_buff *, |
| 523 | struct batadv_hard_iface *); |
| 524 | curr = batadv_rx_handler[packet_type]; |
| 525 | |
| 526 | if ((curr != batadv_recv_unhandled_packet) && |
| 527 | (curr != batadv_recv_unhandled_unicast_packet)) |
Marek Lindner | ffa995e | 2012-03-01 15:35:17 +0800 | [diff] [blame] | 528 | return -EBUSY; |
| 529 | |
Sven Eckelmann | ee11ad6 | 2012-05-16 20:23:19 +0200 | [diff] [blame] | 530 | batadv_rx_handler[packet_type] = recv_handler; |
Marek Lindner | ffa995e | 2012-03-01 15:35:17 +0800 | [diff] [blame] | 531 | return 0; |
| 532 | } |
| 533 | |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 534 | void batadv_recv_handler_unregister(u8 packet_type) |
Marek Lindner | ffa995e | 2012-03-01 15:35:17 +0800 | [diff] [blame] | 535 | { |
Sven Eckelmann | ee11ad6 | 2012-05-16 20:23:19 +0200 | [diff] [blame] | 536 | batadv_rx_handler[packet_type] = batadv_recv_unhandled_packet; |
Marek Lindner | ffa995e | 2012-03-01 15:35:17 +0800 | [diff] [blame] | 537 | } |
| 538 | |
Sven Eckelmann | 95a066d | 2012-10-17 21:10:39 +0200 | [diff] [blame] | 539 | /** |
| 540 | * batadv_skb_crc32 - calculate CRC32 of the whole packet and skip bytes in |
| 541 | * the header |
| 542 | * @skb: skb pointing to fragmented socket buffers |
| 543 | * @payload_ptr: Pointer to position inside the head buffer of the skb |
| 544 | * marking the start of the data to be CRC'ed |
| 545 | * |
| 546 | * payload_ptr must always point to an address in the skb head buffer and not to |
| 547 | * a fragment. |
Sven Eckelmann | 7afcbbe | 2015-10-31 12:29:29 +0100 | [diff] [blame] | 548 | * |
| 549 | * Return: big endian crc32c of the checksummed data |
Sven Eckelmann | 95a066d | 2012-10-17 21:10:39 +0200 | [diff] [blame] | 550 | */ |
| 551 | __be32 batadv_skb_crc32(struct sk_buff *skb, u8 *payload_ptr) |
| 552 | { |
| 553 | u32 crc = 0; |
| 554 | unsigned int from; |
| 555 | unsigned int to = skb->len; |
| 556 | struct skb_seq_state st; |
| 557 | const u8 *data; |
| 558 | unsigned int len; |
| 559 | unsigned int consumed = 0; |
| 560 | |
| 561 | from = (unsigned int)(payload_ptr - skb->data); |
| 562 | |
| 563 | skb_prepare_seq_read(skb, from, to, &st); |
| 564 | while ((len = skb_seq_read(consumed, &data, &st)) != 0) { |
| 565 | crc = crc32c(crc, data, len); |
| 566 | consumed += len; |
| 567 | } |
Sven Eckelmann | 95a066d | 2012-10-17 21:10:39 +0200 | [diff] [blame] | 568 | |
| 569 | return htonl(crc); |
| 570 | } |
| 571 | |
Marek Lindner | ef26157 | 2013-04-23 21:39:57 +0800 | [diff] [blame] | 572 | /** |
Antonio Quartulli | c018ad3 | 2013-06-04 12:11:39 +0200 | [diff] [blame] | 573 | * batadv_get_vid - extract the VLAN identifier from skb if any |
| 574 | * @skb: the buffer containing the packet |
| 575 | * @header_len: length of the batman header preceding the ethernet header |
| 576 | * |
Sven Eckelmann | 62fe710 | 2015-09-15 19:00:48 +0200 | [diff] [blame] | 577 | * Return: VID with the BATADV_VLAN_HAS_TAG flag when the packet embedded in the |
| 578 | * skb is vlan tagged. Otherwise BATADV_NO_FLAGS. |
Antonio Quartulli | c018ad3 | 2013-06-04 12:11:39 +0200 | [diff] [blame] | 579 | */ |
| 580 | unsigned short batadv_get_vid(struct sk_buff *skb, size_t header_len) |
| 581 | { |
| 582 | struct ethhdr *ethhdr = (struct ethhdr *)(skb->data + header_len); |
| 583 | struct vlan_ethhdr *vhdr; |
| 584 | unsigned short vid; |
| 585 | |
| 586 | if (ethhdr->h_proto != htons(ETH_P_8021Q)) |
| 587 | return BATADV_NO_FLAGS; |
| 588 | |
| 589 | if (!pskb_may_pull(skb, header_len + VLAN_ETH_HLEN)) |
| 590 | return BATADV_NO_FLAGS; |
| 591 | |
| 592 | vhdr = (struct vlan_ethhdr *)(skb->data + header_len); |
| 593 | vid = ntohs(vhdr->h_vlan_TCI) & VLAN_VID_MASK; |
| 594 | vid |= BATADV_VLAN_HAS_TAG; |
| 595 | |
| 596 | return vid; |
| 597 | } |
| 598 | |
Antonio Quartulli | eceb22a | 2013-11-16 12:03:51 +0100 | [diff] [blame] | 599 | /** |
| 600 | * batadv_vlan_ap_isola_get - return the AP isolation status for the given vlan |
| 601 | * @bat_priv: the bat priv with all the soft interface information |
| 602 | * @vid: the VLAN identifier for which the AP isolation attributed as to be |
| 603 | * looked up |
| 604 | * |
Sven Eckelmann | 62fe710 | 2015-09-15 19:00:48 +0200 | [diff] [blame] | 605 | * Return: true if AP isolation is on for the VLAN idenfied by vid, false |
Antonio Quartulli | eceb22a | 2013-11-16 12:03:51 +0100 | [diff] [blame] | 606 | * otherwise |
| 607 | */ |
| 608 | bool batadv_vlan_ap_isola_get(struct batadv_priv *bat_priv, unsigned short vid) |
| 609 | { |
| 610 | bool ap_isolation_enabled = false; |
| 611 | struct batadv_softif_vlan *vlan; |
| 612 | |
| 613 | /* if the AP isolation is requested on a VLAN, then check for its |
| 614 | * setting in the proper VLAN private data structure |
| 615 | */ |
| 616 | vlan = batadv_softif_vlan_get(bat_priv, vid); |
| 617 | if (vlan) { |
| 618 | ap_isolation_enabled = atomic_read(&vlan->ap_isolation); |
Sven Eckelmann | 9c3bf08 | 2016-01-17 11:01:21 +0100 | [diff] [blame] | 619 | batadv_softif_vlan_put(vlan); |
Antonio Quartulli | eceb22a | 2013-11-16 12:03:51 +0100 | [diff] [blame] | 620 | } |
| 621 | |
| 622 | return ap_isolation_enabled; |
| 623 | } |
| 624 | |
Sven Eckelmann | ee11ad6 | 2012-05-16 20:23:19 +0200 | [diff] [blame] | 625 | module_init(batadv_init); |
| 626 | module_exit(batadv_exit); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 627 | |
| 628 | MODULE_LICENSE("GPL"); |
| 629 | |
Sven Eckelmann | 42d0b04 | 2012-06-03 22:19:17 +0200 | [diff] [blame] | 630 | MODULE_AUTHOR(BATADV_DRIVER_AUTHOR); |
| 631 | MODULE_DESCRIPTION(BATADV_DRIVER_DESC); |
| 632 | MODULE_SUPPORTED_DEVICE(BATADV_DRIVER_DEVICE); |
| 633 | MODULE_VERSION(BATADV_SOURCE_VERSION); |