Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2002-2005, Instant802 Networks, Inc. |
| 3 | * Copyright 2005-2006, Devicescape Software, Inc. |
| 4 | * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz> |
Johannes Berg | d98ad83 | 2014-09-03 15:24:57 +0300 | [diff] [blame] | 5 | * Copyright 2013-2014 Intel Mobile Communications GmbH |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License version 2 as |
| 9 | * published by the Free Software Foundation. |
| 10 | */ |
| 11 | |
| 12 | #include <net/mac80211.h> |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 13 | #include <linux/module.h> |
| 14 | #include <linux/init.h> |
| 15 | #include <linux/netdevice.h> |
| 16 | #include <linux/types.h> |
| 17 | #include <linux/slab.h> |
| 18 | #include <linux/skbuff.h> |
| 19 | #include <linux/etherdevice.h> |
| 20 | #include <linux/if_arp.h> |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 21 | #include <linux/rtnetlink.h> |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 22 | #include <linux/bitmap.h> |
Juuso Oikarinen | 6854296 | 2010-06-09 13:43:26 +0300 | [diff] [blame] | 23 | #include <linux/inetdevice.h> |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 24 | #include <net/net_namespace.h> |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 25 | #include <net/cfg80211.h> |
Johannes Berg | a65240c | 2013-01-14 15:14:34 +0100 | [diff] [blame] | 26 | #include <net/addrconf.h> |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 27 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 28 | #include "ieee80211_i.h" |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 29 | #include "driver-ops.h" |
Johannes Berg | 2c8dccc | 2008-04-08 15:14:40 -0400 | [diff] [blame] | 30 | #include "rate.h" |
Luis Carlos Cobo | f7a9214 | 2008-02-23 15:17:18 +0100 | [diff] [blame] | 31 | #include "mesh.h" |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 32 | #include "wep.h" |
Johannes Berg | 2c8dccc | 2008-04-08 15:14:40 -0400 | [diff] [blame] | 33 | #include "led.h" |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 34 | #include "debugfs.h" |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 35 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 36 | void ieee80211_configure_filter(struct ieee80211_local *local) |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 37 | { |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 38 | u64 mc; |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 39 | unsigned int changed_flags; |
| 40 | unsigned int new_flags = 0; |
| 41 | |
Johannes Berg | 5391899 | 2007-09-26 15:19:47 +0200 | [diff] [blame] | 42 | if (atomic_read(&local->iff_allmultis)) |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 43 | new_flags |= FIF_ALLMULTI; |
| 44 | |
Ben Greear | 8a69067 | 2012-04-17 10:54:16 -0700 | [diff] [blame] | 45 | if (local->monitors || test_bit(SCAN_SW_SCANNING, &local->scanning) || |
| 46 | test_bit(SCAN_ONCHANNEL_SCANNING, &local->scanning)) |
Michael Wu | 8cc9a73 | 2008-01-31 19:48:23 +0100 | [diff] [blame] | 47 | new_flags |= FIF_BCN_PRBRESP_PROMISC; |
| 48 | |
Johannes Berg | 7be5086 | 2010-10-13 12:06:24 +0200 | [diff] [blame] | 49 | if (local->fif_probe_req || local->probe_req_reg) |
| 50 | new_flags |= FIF_PROBE_REQ; |
| 51 | |
Michael Wu | 8cc9a73 | 2008-01-31 19:48:23 +0100 | [diff] [blame] | 52 | if (local->fif_fcsfail) |
| 53 | new_flags |= FIF_FCSFAIL; |
| 54 | |
| 55 | if (local->fif_plcpfail) |
| 56 | new_flags |= FIF_PLCPFAIL; |
| 57 | |
| 58 | if (local->fif_control) |
| 59 | new_flags |= FIF_CONTROL; |
| 60 | |
| 61 | if (local->fif_other_bss) |
| 62 | new_flags |= FIF_OTHER_BSS; |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 63 | |
Igor Perminov | e3b90ca | 2009-08-04 16:48:51 +0400 | [diff] [blame] | 64 | if (local->fif_pspoll) |
| 65 | new_flags |= FIF_PSPOLL; |
| 66 | |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 67 | spin_lock_bh(&local->filter_lock); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 68 | changed_flags = local->filter_flags ^ new_flags; |
| 69 | |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 70 | mc = drv_prepare_multicast(local, &local->mc_list); |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 71 | spin_unlock_bh(&local->filter_lock); |
| 72 | |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 73 | /* be a bit nasty */ |
| 74 | new_flags |= (1<<31); |
| 75 | |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 76 | drv_configure_filter(local, changed_flags, &new_flags, mc); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 77 | |
| 78 | WARN_ON(new_flags & (1<<31)); |
| 79 | |
| 80 | local->filter_flags = new_flags & ~(1<<31); |
| 81 | } |
| 82 | |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 83 | static void ieee80211_reconfig_filter(struct work_struct *work) |
| 84 | { |
| 85 | struct ieee80211_local *local = |
| 86 | container_of(work, struct ieee80211_local, reconfig_filter); |
| 87 | |
| 88 | ieee80211_configure_filter(local); |
| 89 | } |
| 90 | |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 91 | static u32 ieee80211_hw_conf_chan(struct ieee80211_local *local) |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 92 | { |
Johannes Berg | 1ea6f9c | 2012-10-24 10:59:25 +0200 | [diff] [blame] | 93 | struct ieee80211_sub_if_data *sdata; |
Karl Beldan | 675a0b0 | 2013-03-25 16:26:57 +0100 | [diff] [blame] | 94 | struct cfg80211_chan_def chandef = {}; |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 95 | u32 changed = 0; |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 96 | int power; |
Felix Fietkau | ffd2778 | 2010-07-29 17:36:43 +0200 | [diff] [blame] | 97 | u32 offchannel_flag; |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 98 | |
Felix Fietkau | ffd2778 | 2010-07-29 17:36:43 +0200 | [diff] [blame] | 99 | offchannel_flag = local->hw.conf.flags & IEEE80211_CONF_OFFCHANNEL; |
Karl Beldan | 675a0b0 | 2013-03-25 16:26:57 +0100 | [diff] [blame] | 100 | |
Simon Wunderlich | 7ca15a0 | 2013-07-08 16:55:56 +0200 | [diff] [blame] | 101 | if (local->scan_chandef.chan) { |
| 102 | chandef = local->scan_chandef; |
Ben Greear | b23b025 | 2011-02-04 11:54:17 -0800 | [diff] [blame] | 103 | } else if (local->tmp_channel) { |
Karl Beldan | 675a0b0 | 2013-03-25 16:26:57 +0100 | [diff] [blame] | 104 | chandef.chan = local->tmp_channel; |
| 105 | chandef.width = NL80211_CHAN_WIDTH_20_NOHT; |
| 106 | chandef.center_freq1 = chandef.chan->center_freq; |
| 107 | } else |
| 108 | chandef = local->_oper_chandef; |
Ben Greear | b23b025 | 2011-02-04 11:54:17 -0800 | [diff] [blame] | 109 | |
Karl Beldan | 675a0b0 | 2013-03-25 16:26:57 +0100 | [diff] [blame] | 110 | WARN(!cfg80211_chandef_valid(&chandef), |
| 111 | "control:%d MHz width:%d center: %d/%d MHz", |
| 112 | chandef.chan->center_freq, chandef.width, |
| 113 | chandef.center_freq1, chandef.center_freq2); |
| 114 | |
| 115 | if (!cfg80211_chandef_identical(&chandef, &local->_oper_chandef)) |
Ben Greear | b23b025 | 2011-02-04 11:54:17 -0800 | [diff] [blame] | 116 | local->hw.conf.flags |= IEEE80211_CONF_OFFCHANNEL; |
| 117 | else |
| 118 | local->hw.conf.flags &= ~IEEE80211_CONF_OFFCHANNEL; |
| 119 | |
Felix Fietkau | ffd2778 | 2010-07-29 17:36:43 +0200 | [diff] [blame] | 120 | offchannel_flag ^= local->hw.conf.flags & IEEE80211_CONF_OFFCHANNEL; |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 121 | |
Karl Beldan | 675a0b0 | 2013-03-25 16:26:57 +0100 | [diff] [blame] | 122 | if (offchannel_flag || |
| 123 | !cfg80211_chandef_identical(&local->hw.conf.chandef, |
| 124 | &local->_oper_chandef)) { |
| 125 | local->hw.conf.chandef = chandef; |
Jouni Malinen | 72bdcf3 | 2008-11-26 16:15:24 +0200 | [diff] [blame] | 126 | changed |= IEEE80211_CONF_CHANGE_CHANNEL; |
| 127 | } |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 128 | |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 129 | if (!conf_is_ht(&local->hw.conf)) { |
| 130 | /* |
| 131 | * mac80211.h documents that this is only valid |
| 132 | * when the channel is set to an HT type, and |
| 133 | * that otherwise STATIC is used. |
| 134 | */ |
| 135 | local->hw.conf.smps_mode = IEEE80211_SMPS_STATIC; |
| 136 | } else if (local->hw.conf.smps_mode != local->smps_mode) { |
| 137 | local->hw.conf.smps_mode = local->smps_mode; |
| 138 | changed |= IEEE80211_CONF_CHANGE_SMPS; |
| 139 | } |
| 140 | |
Simon Wunderlich | 0430c88 | 2013-07-08 16:55:55 +0200 | [diff] [blame] | 141 | power = ieee80211_chandef_max_power(&chandef); |
Vasanthakumar Thiagarajan | a8302de | 2009-01-09 18:14:15 +0530 | [diff] [blame] | 142 | |
Johannes Berg | 1ea6f9c | 2012-10-24 10:59:25 +0200 | [diff] [blame] | 143 | rcu_read_lock(); |
| 144 | list_for_each_entry_rcu(sdata, &local->interfaces, list) { |
| 145 | if (!rcu_access_pointer(sdata->vif.chanctx_conf)) |
| 146 | continue; |
Felix Fietkau | 764152f | 2014-04-10 15:06:48 +0200 | [diff] [blame] | 147 | if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) |
| 148 | continue; |
Johannes Berg | 1ea6f9c | 2012-10-24 10:59:25 +0200 | [diff] [blame] | 149 | power = min(power, sdata->vif.bss_conf.txpower); |
| 150 | } |
| 151 | rcu_read_unlock(); |
Vasanthakumar Thiagarajan | a8302de | 2009-01-09 18:14:15 +0530 | [diff] [blame] | 152 | |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 153 | if (local->hw.conf.power_level != power) { |
| 154 | changed |= IEEE80211_CONF_CHANGE_POWER; |
| 155 | local->hw.conf.power_level = power; |
| 156 | } |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 157 | |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 158 | return changed; |
| 159 | } |
| 160 | |
| 161 | int ieee80211_hw_config(struct ieee80211_local *local, u32 changed) |
| 162 | { |
| 163 | int ret = 0; |
| 164 | |
| 165 | might_sleep(); |
| 166 | |
| 167 | if (!local->use_chanctx) |
| 168 | changed |= ieee80211_hw_conf_chan(local); |
| 169 | else |
| 170 | changed &= ~(IEEE80211_CONF_CHANGE_CHANNEL | |
| 171 | IEEE80211_CONF_CHANGE_POWER); |
| 172 | |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 173 | if (changed && local->open_count) { |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 174 | ret = drv_config(local, changed); |
Johannes Berg | d73782f | 2008-10-07 12:04:34 +0200 | [diff] [blame] | 175 | /* |
Reinette Chatre | 447107f | 2008-12-04 14:49:08 -0800 | [diff] [blame] | 176 | * Goal: |
Johannes Berg | d73782f | 2008-10-07 12:04:34 +0200 | [diff] [blame] | 177 | * HW reconfiguration should never fail, the driver has told |
| 178 | * us what it can support so it should live up to that promise. |
Reinette Chatre | 447107f | 2008-12-04 14:49:08 -0800 | [diff] [blame] | 179 | * |
| 180 | * Current status: |
| 181 | * rfkill is not integrated with mac80211 and a |
| 182 | * configuration command can thus fail if hardware rfkill |
| 183 | * is enabled |
| 184 | * |
| 185 | * FIXME: integrate rfkill with mac80211 and then add this |
| 186 | * WARN_ON() back |
| 187 | * |
Johannes Berg | d73782f | 2008-10-07 12:04:34 +0200 | [diff] [blame] | 188 | */ |
Reinette Chatre | 447107f | 2008-12-04 14:49:08 -0800 | [diff] [blame] | 189 | /* WARN_ON(ret); */ |
Johannes Berg | d73782f | 2008-10-07 12:04:34 +0200 | [diff] [blame] | 190 | } |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 191 | |
| 192 | return ret; |
| 193 | } |
| 194 | |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 195 | void ieee80211_bss_info_change_notify(struct ieee80211_sub_if_data *sdata, |
| 196 | u32 changed) |
Daniel Drake | d9430a3 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 197 | { |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 198 | struct ieee80211_local *local = sdata->local; |
| 199 | |
Felix Fietkau | 990baec | 2014-04-09 00:08:01 +0200 | [diff] [blame] | 200 | if (!changed || sdata->vif.type == NL80211_IFTYPE_AP_VLAN) |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 201 | return; |
| 202 | |
Johannes Berg | 12375ef | 2009-11-25 20:30:31 +0100 | [diff] [blame] | 203 | drv_bss_info_changed(local, sdata, &sdata->vif.bss_conf, changed); |
Daniel Drake | d9430a3 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 204 | } |
| 205 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 206 | u32 ieee80211_reset_erp_info(struct ieee80211_sub_if_data *sdata) |
Daniel Drake | d9430a3 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 207 | { |
Johannes Berg | bda3933 | 2008-10-11 01:51:51 +0200 | [diff] [blame] | 208 | sdata->vif.bss_conf.use_cts_prot = false; |
| 209 | sdata->vif.bss_conf.use_short_preamble = false; |
| 210 | sdata->vif.bss_conf.use_short_slot = false; |
Johannes Berg | 7a5158e | 2008-10-08 10:59:33 +0200 | [diff] [blame] | 211 | return BSS_CHANGED_ERP_CTS_PROT | |
| 212 | BSS_CHANGED_ERP_PREAMBLE | |
| 213 | BSS_CHANGED_ERP_SLOT; |
Daniel Drake | d9430a3 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 214 | } |
| 215 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 216 | static void ieee80211_tasklet_handler(unsigned long data) |
| 217 | { |
| 218 | struct ieee80211_local *local = (struct ieee80211_local *) data; |
| 219 | struct sk_buff *skb; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 220 | |
| 221 | while ((skb = skb_dequeue(&local->skb_queue)) || |
| 222 | (skb = skb_dequeue(&local->skb_queue_unreliable))) { |
| 223 | switch (skb->pkt_type) { |
| 224 | case IEEE80211_RX_MSG: |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 225 | /* Clear skb->pkt_type in order to not confuse kernel |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 226 | * netstack. */ |
| 227 | skb->pkt_type = 0; |
Johannes Berg | 005e472 | 2012-02-26 11:24:35 +0100 | [diff] [blame] | 228 | ieee80211_rx(&local->hw, skb); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 229 | break; |
| 230 | case IEEE80211_TX_STATUS_MSG: |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 231 | skb->pkt_type = 0; |
Johannes Berg | 005e472 | 2012-02-26 11:24:35 +0100 | [diff] [blame] | 232 | ieee80211_tx_status(&local->hw, skb); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 233 | break; |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 234 | default: |
Larry Finger | 5e3f308 | 2008-12-17 14:26:59 -0600 | [diff] [blame] | 235 | WARN(1, "mac80211: Packet is of unknown type %d\n", |
| 236 | skb->pkt_type); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 237 | dev_kfree_skb(skb); |
| 238 | break; |
| 239 | } |
| 240 | } |
| 241 | } |
| 242 | |
Johannes Berg | f2753dd | 2009-04-14 10:09:24 +0200 | [diff] [blame] | 243 | static void ieee80211_restart_work(struct work_struct *work) |
| 244 | { |
| 245 | struct ieee80211_local *local = |
| 246 | container_of(work, struct ieee80211_local, restart_work); |
Michal Kazior | ab499db | 2015-05-22 10:22:40 +0200 | [diff] [blame] | 247 | struct ieee80211_sub_if_data *sdata; |
Johannes Berg | f2753dd | 2009-04-14 10:09:24 +0200 | [diff] [blame] | 248 | |
Stanislaw Gruszka | bc86863 | 2010-10-01 14:05:27 +0200 | [diff] [blame] | 249 | /* wait for scan work complete */ |
| 250 | flush_workqueue(local->workqueue); |
Eliad Peller | 2bc533b | 2016-01-05 16:28:06 +0200 | [diff] [blame] | 251 | flush_work(&local->sched_scan_stopped_work); |
Stanislaw Gruszka | bc86863 | 2010-10-01 14:05:27 +0200 | [diff] [blame] | 252 | |
David Spinadel | d43c6b6 | 2013-12-08 21:48:57 +0200 | [diff] [blame] | 253 | WARN(test_bit(SCAN_HW_SCANNING, &local->scanning), |
| 254 | "%s called with hardware scan in progress\n", __func__); |
Stanislaw Gruszka | bc86863 | 2010-10-01 14:05:27 +0200 | [diff] [blame] | 255 | |
Johannes Berg | f2753dd | 2009-04-14 10:09:24 +0200 | [diff] [blame] | 256 | rtnl_lock(); |
Michal Kazior | ab499db | 2015-05-22 10:22:40 +0200 | [diff] [blame] | 257 | list_for_each_entry(sdata, &local->interfaces, list) |
| 258 | flush_delayed_work(&sdata->dec_tailroom_needed_wk); |
Stanislaw Gruszka | 4136c42 | 2010-10-06 11:22:10 +0200 | [diff] [blame] | 259 | ieee80211_scan_cancel(local); |
Eliad Peller | 470f4d6 | 2015-12-14 16:26:57 +0200 | [diff] [blame] | 260 | |
| 261 | /* make sure any new ROC will consider local->in_reconfig */ |
| 262 | flush_delayed_work(&local->roc_work); |
| 263 | flush_work(&local->hw_roc_done); |
| 264 | |
Johannes Berg | f2753dd | 2009-04-14 10:09:24 +0200 | [diff] [blame] | 265 | ieee80211_reconfig(local); |
| 266 | rtnl_unlock(); |
| 267 | } |
| 268 | |
| 269 | void ieee80211_restart_hw(struct ieee80211_hw *hw) |
| 270 | { |
| 271 | struct ieee80211_local *local = hw_to_local(hw); |
| 272 | |
Johannes Berg | b5878a2 | 2010-04-07 16:48:40 +0200 | [diff] [blame] | 273 | trace_api_restart_hw(local); |
| 274 | |
Michael Buesch | b196d03 | 2011-03-07 13:09:12 +0100 | [diff] [blame] | 275 | wiphy_info(hw->wiphy, |
| 276 | "Hardware restart was requested\n"); |
| 277 | |
John W. Linville | 18145c6 | 2010-08-30 15:12:02 -0400 | [diff] [blame] | 278 | /* use this reason, ieee80211_reconfig will unblock it */ |
Johannes Berg | 445ea4e | 2013-02-13 12:25:28 +0100 | [diff] [blame] | 279 | ieee80211_stop_queues_by_reason(hw, IEEE80211_MAX_QUEUE_MAP, |
Luciano Coelho | cca07b0 | 2014-06-13 16:30:05 +0300 | [diff] [blame] | 280 | IEEE80211_QUEUE_STOP_REASON_SUSPEND, |
| 281 | false); |
Johannes Berg | f2753dd | 2009-04-14 10:09:24 +0200 | [diff] [blame] | 282 | |
Arik Nemtsov | 04800ad | 2012-06-06 11:25:02 +0300 | [diff] [blame] | 283 | /* |
| 284 | * Stop all Rx during the reconfig. We don't want state changes |
| 285 | * or driver callbacks while this is in progress. |
| 286 | */ |
| 287 | local->in_reconfig = true; |
| 288 | barrier(); |
| 289 | |
Eliad Peller | 43d6df0 | 2015-10-25 10:59:35 +0200 | [diff] [blame] | 290 | queue_work(system_freezable_wq, &local->restart_work); |
Johannes Berg | f2753dd | 2009-04-14 10:09:24 +0200 | [diff] [blame] | 291 | } |
| 292 | EXPORT_SYMBOL(ieee80211_restart_hw); |
| 293 | |
John W. Linville | 26b36cf | 2010-06-04 14:25:44 -0400 | [diff] [blame] | 294 | #ifdef CONFIG_INET |
Juuso Oikarinen | 2b2c009 | 2010-05-27 15:32:13 +0300 | [diff] [blame] | 295 | static int ieee80211_ifa_changed(struct notifier_block *nb, |
| 296 | unsigned long data, void *arg) |
| 297 | { |
| 298 | struct in_ifaddr *ifa = arg; |
| 299 | struct ieee80211_local *local = |
| 300 | container_of(nb, struct ieee80211_local, |
| 301 | ifa_notifier); |
| 302 | struct net_device *ndev = ifa->ifa_dev->dev; |
| 303 | struct wireless_dev *wdev = ndev->ieee80211_ptr; |
Juuso Oikarinen | 6854296 | 2010-06-09 13:43:26 +0300 | [diff] [blame] | 304 | struct in_device *idev; |
Juuso Oikarinen | 2b2c009 | 2010-05-27 15:32:13 +0300 | [diff] [blame] | 305 | struct ieee80211_sub_if_data *sdata; |
Juuso Oikarinen | 6854296 | 2010-06-09 13:43:26 +0300 | [diff] [blame] | 306 | struct ieee80211_bss_conf *bss_conf; |
Juuso Oikarinen | 2b2c009 | 2010-05-27 15:32:13 +0300 | [diff] [blame] | 307 | struct ieee80211_if_managed *ifmgd; |
Juuso Oikarinen | 6854296 | 2010-06-09 13:43:26 +0300 | [diff] [blame] | 308 | int c = 0; |
Juuso Oikarinen | 2b2c009 | 2010-05-27 15:32:13 +0300 | [diff] [blame] | 309 | |
| 310 | /* Make sure it's our interface that got changed */ |
| 311 | if (!wdev) |
| 312 | return NOTIFY_DONE; |
| 313 | |
| 314 | if (wdev->wiphy != local->hw.wiphy) |
| 315 | return NOTIFY_DONE; |
| 316 | |
Juuso Oikarinen | 2b2c009 | 2010-05-27 15:32:13 +0300 | [diff] [blame] | 317 | sdata = IEEE80211_DEV_TO_SUB_IF(ndev); |
Juuso Oikarinen | 6854296 | 2010-06-09 13:43:26 +0300 | [diff] [blame] | 318 | bss_conf = &sdata->vif.bss_conf; |
Juuso Oikarinen | 2b2c009 | 2010-05-27 15:32:13 +0300 | [diff] [blame] | 319 | |
| 320 | /* ARP filtering is only supported in managed mode */ |
| 321 | if (sdata->vif.type != NL80211_IFTYPE_STATION) |
| 322 | return NOTIFY_DONE; |
| 323 | |
Eric Dumazet | 95ae6b2 | 2010-09-15 04:04:31 +0000 | [diff] [blame] | 324 | idev = __in_dev_get_rtnl(sdata->dev); |
Juuso Oikarinen | 6854296 | 2010-06-09 13:43:26 +0300 | [diff] [blame] | 325 | if (!idev) |
| 326 | return NOTIFY_DONE; |
| 327 | |
Juuso Oikarinen | 2b2c009 | 2010-05-27 15:32:13 +0300 | [diff] [blame] | 328 | ifmgd = &sdata->u.mgd; |
Johannes Berg | 8d61ffa | 2013-05-10 12:32:47 +0200 | [diff] [blame] | 329 | sdata_lock(sdata); |
Juuso Oikarinen | 6854296 | 2010-06-09 13:43:26 +0300 | [diff] [blame] | 330 | |
| 331 | /* Copy the addresses to the bss_conf list */ |
| 332 | ifa = idev->ifa_list; |
Johannes Berg | 0f19b41 | 2013-01-14 16:39:07 +0100 | [diff] [blame] | 333 | while (ifa) { |
| 334 | if (c < IEEE80211_BSS_ARP_ADDR_LIST_LEN) |
| 335 | bss_conf->arp_addr_list[c] = ifa->ifa_address; |
Juuso Oikarinen | 6854296 | 2010-06-09 13:43:26 +0300 | [diff] [blame] | 336 | ifa = ifa->ifa_next; |
| 337 | c++; |
| 338 | } |
| 339 | |
Juuso Oikarinen | 6854296 | 2010-06-09 13:43:26 +0300 | [diff] [blame] | 340 | bss_conf->arp_addr_cnt = c; |
| 341 | |
Eliad Peller | 53d69c3 | 2011-12-12 15:30:04 +0200 | [diff] [blame] | 342 | /* Configure driver only if associated (which also implies it is up) */ |
Johannes Berg | 0f19b41 | 2013-01-14 16:39:07 +0100 | [diff] [blame] | 343 | if (ifmgd->associated) |
Juuso Oikarinen | 6854296 | 2010-06-09 13:43:26 +0300 | [diff] [blame] | 344 | ieee80211_bss_info_change_notify(sdata, |
| 345 | BSS_CHANGED_ARP_FILTER); |
Juuso Oikarinen | 6854296 | 2010-06-09 13:43:26 +0300 | [diff] [blame] | 346 | |
Johannes Berg | 8d61ffa | 2013-05-10 12:32:47 +0200 | [diff] [blame] | 347 | sdata_unlock(sdata); |
Juuso Oikarinen | 2b2c009 | 2010-05-27 15:32:13 +0300 | [diff] [blame] | 348 | |
Zhao, Gang | 8bd811a | 2014-04-21 12:53:05 +0800 | [diff] [blame] | 349 | return NOTIFY_OK; |
Juuso Oikarinen | 2b2c009 | 2010-05-27 15:32:13 +0300 | [diff] [blame] | 350 | } |
John W. Linville | 26b36cf | 2010-06-04 14:25:44 -0400 | [diff] [blame] | 351 | #endif |
Juuso Oikarinen | 2b2c009 | 2010-05-27 15:32:13 +0300 | [diff] [blame] | 352 | |
Johannes Berg | a65240c | 2013-01-14 15:14:34 +0100 | [diff] [blame] | 353 | #if IS_ENABLED(CONFIG_IPV6) |
| 354 | static int ieee80211_ifa6_changed(struct notifier_block *nb, |
| 355 | unsigned long data, void *arg) |
| 356 | { |
| 357 | struct inet6_ifaddr *ifa = (struct inet6_ifaddr *)arg; |
| 358 | struct inet6_dev *idev = ifa->idev; |
| 359 | struct net_device *ndev = ifa->idev->dev; |
| 360 | struct ieee80211_local *local = |
| 361 | container_of(nb, struct ieee80211_local, ifa6_notifier); |
| 362 | struct wireless_dev *wdev = ndev->ieee80211_ptr; |
| 363 | struct ieee80211_sub_if_data *sdata; |
| 364 | |
| 365 | /* Make sure it's our interface that got changed */ |
| 366 | if (!wdev || wdev->wiphy != local->hw.wiphy) |
| 367 | return NOTIFY_DONE; |
| 368 | |
| 369 | sdata = IEEE80211_DEV_TO_SUB_IF(ndev); |
| 370 | |
| 371 | /* |
| 372 | * For now only support station mode. This is mostly because |
| 373 | * doing AP would have to handle AP_VLAN in some way ... |
| 374 | */ |
| 375 | if (sdata->vif.type != NL80211_IFTYPE_STATION) |
| 376 | return NOTIFY_DONE; |
| 377 | |
| 378 | drv_ipv6_addr_change(local, sdata, idev); |
| 379 | |
Zhao, Gang | 8bd811a | 2014-04-21 12:53:05 +0800 | [diff] [blame] | 380 | return NOTIFY_OK; |
Johannes Berg | a65240c | 2013-01-14 15:14:34 +0100 | [diff] [blame] | 381 | } |
| 382 | #endif |
| 383 | |
Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 384 | /* There isn't a lot of sense in it, but you can transmit anything you like */ |
| 385 | static const struct ieee80211_txrx_stypes |
| 386 | ieee80211_default_mgmt_stypes[NUM_NL80211_IFTYPES] = { |
| 387 | [NL80211_IFTYPE_ADHOC] = { |
| 388 | .tx = 0xffff, |
Will Hawkins | 3bfda62 | 2012-06-19 17:59:14 -0400 | [diff] [blame] | 389 | .rx = BIT(IEEE80211_STYPE_ACTION >> 4) | |
| 390 | BIT(IEEE80211_STYPE_AUTH >> 4) | |
Antonio Quartulli | 41e31b8 | 2012-11-30 00:18:12 +0100 | [diff] [blame] | 391 | BIT(IEEE80211_STYPE_DEAUTH >> 4) | |
| 392 | BIT(IEEE80211_STYPE_PROBE_REQ >> 4), |
Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 393 | }, |
| 394 | [NL80211_IFTYPE_STATION] = { |
| 395 | .tx = 0xffff, |
| 396 | .rx = BIT(IEEE80211_STYPE_ACTION >> 4) | |
| 397 | BIT(IEEE80211_STYPE_PROBE_REQ >> 4), |
| 398 | }, |
| 399 | [NL80211_IFTYPE_AP] = { |
| 400 | .tx = 0xffff, |
| 401 | .rx = BIT(IEEE80211_STYPE_ASSOC_REQ >> 4) | |
| 402 | BIT(IEEE80211_STYPE_REASSOC_REQ >> 4) | |
| 403 | BIT(IEEE80211_STYPE_PROBE_REQ >> 4) | |
| 404 | BIT(IEEE80211_STYPE_DISASSOC >> 4) | |
| 405 | BIT(IEEE80211_STYPE_AUTH >> 4) | |
| 406 | BIT(IEEE80211_STYPE_DEAUTH >> 4) | |
| 407 | BIT(IEEE80211_STYPE_ACTION >> 4), |
| 408 | }, |
| 409 | [NL80211_IFTYPE_AP_VLAN] = { |
| 410 | /* copy AP */ |
| 411 | .tx = 0xffff, |
| 412 | .rx = BIT(IEEE80211_STYPE_ASSOC_REQ >> 4) | |
| 413 | BIT(IEEE80211_STYPE_REASSOC_REQ >> 4) | |
| 414 | BIT(IEEE80211_STYPE_PROBE_REQ >> 4) | |
| 415 | BIT(IEEE80211_STYPE_DISASSOC >> 4) | |
| 416 | BIT(IEEE80211_STYPE_AUTH >> 4) | |
| 417 | BIT(IEEE80211_STYPE_DEAUTH >> 4) | |
| 418 | BIT(IEEE80211_STYPE_ACTION >> 4), |
| 419 | }, |
Johannes Berg | 2ca27bc | 2010-09-16 14:58:23 +0200 | [diff] [blame] | 420 | [NL80211_IFTYPE_P2P_CLIENT] = { |
| 421 | .tx = 0xffff, |
| 422 | .rx = BIT(IEEE80211_STYPE_ACTION >> 4) | |
| 423 | BIT(IEEE80211_STYPE_PROBE_REQ >> 4), |
| 424 | }, |
| 425 | [NL80211_IFTYPE_P2P_GO] = { |
| 426 | .tx = 0xffff, |
| 427 | .rx = BIT(IEEE80211_STYPE_ASSOC_REQ >> 4) | |
| 428 | BIT(IEEE80211_STYPE_REASSOC_REQ >> 4) | |
| 429 | BIT(IEEE80211_STYPE_PROBE_REQ >> 4) | |
| 430 | BIT(IEEE80211_STYPE_DISASSOC >> 4) | |
| 431 | BIT(IEEE80211_STYPE_AUTH >> 4) | |
| 432 | BIT(IEEE80211_STYPE_DEAUTH >> 4) | |
| 433 | BIT(IEEE80211_STYPE_ACTION >> 4), |
| 434 | }, |
Javier Cardona | c7108a7 | 2010-12-16 17:37:50 -0800 | [diff] [blame] | 435 | [NL80211_IFTYPE_MESH_POINT] = { |
| 436 | .tx = 0xffff, |
Javier Cardona | 7183912 | 2011-04-07 15:08:31 -0700 | [diff] [blame] | 437 | .rx = BIT(IEEE80211_STYPE_ACTION >> 4) | |
| 438 | BIT(IEEE80211_STYPE_AUTH >> 4) | |
| 439 | BIT(IEEE80211_STYPE_DEAUTH >> 4), |
Javier Cardona | c7108a7 | 2010-12-16 17:37:50 -0800 | [diff] [blame] | 440 | }, |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 441 | [NL80211_IFTYPE_P2P_DEVICE] = { |
| 442 | .tx = 0xffff, |
| 443 | .rx = BIT(IEEE80211_STYPE_ACTION >> 4) | |
| 444 | BIT(IEEE80211_STYPE_PROBE_REQ >> 4), |
| 445 | }, |
Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 446 | }; |
| 447 | |
Ben Greear | ef96a842 | 2011-11-18 11:32:00 -0800 | [diff] [blame] | 448 | static const struct ieee80211_ht_cap mac80211_ht_capa_mod_mask = { |
| 449 | .ampdu_params_info = IEEE80211_HT_AMPDU_PARM_FACTOR | |
| 450 | IEEE80211_HT_AMPDU_PARM_DENSITY, |
| 451 | |
| 452 | .cap_info = cpu_to_le16(IEEE80211_HT_CAP_SUP_WIDTH_20_40 | |
| 453 | IEEE80211_HT_CAP_MAX_AMSDU | |
Ben Greear | bc0784d | 2012-12-12 16:56:20 -0800 | [diff] [blame] | 454 | IEEE80211_HT_CAP_SGI_20 | |
Pawel Kulakowski | a2e7495 | 2014-04-01 07:13:21 +0200 | [diff] [blame] | 455 | IEEE80211_HT_CAP_SGI_40 | |
Jouni Malinen | 9a07bf5 | 2014-04-15 19:13:56 +0300 | [diff] [blame] | 456 | IEEE80211_HT_CAP_LDPC_CODING | |
| 457 | IEEE80211_HT_CAP_40MHZ_INTOLERANT), |
Ben Greear | ef96a842 | 2011-11-18 11:32:00 -0800 | [diff] [blame] | 458 | .mcs = { |
| 459 | .rx_mask = { 0xff, 0xff, 0xff, 0xff, 0xff, |
| 460 | 0xff, 0xff, 0xff, 0xff, 0xff, }, |
| 461 | }, |
| 462 | }; |
| 463 | |
Johannes Berg | dd5ecfe | 2013-02-21 17:40:19 +0100 | [diff] [blame] | 464 | static const struct ieee80211_vht_cap mac80211_vht_capa_mod_mask = { |
| 465 | .vht_cap_info = |
| 466 | cpu_to_le32(IEEE80211_VHT_CAP_RXLDPC | |
| 467 | IEEE80211_VHT_CAP_SHORT_GI_80 | |
| 468 | IEEE80211_VHT_CAP_SHORT_GI_160 | |
| 469 | IEEE80211_VHT_CAP_RXSTBC_1 | |
| 470 | IEEE80211_VHT_CAP_RXSTBC_2 | |
| 471 | IEEE80211_VHT_CAP_RXSTBC_3 | |
| 472 | IEEE80211_VHT_CAP_RXSTBC_4 | |
| 473 | IEEE80211_VHT_CAP_TXSTBC | |
| 474 | IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE | |
| 475 | IEEE80211_VHT_CAP_SU_BEAMFORMEE_CAPABLE | |
| 476 | IEEE80211_VHT_CAP_TX_ANTENNA_PATTERN | |
| 477 | IEEE80211_VHT_CAP_RX_ANTENNA_PATTERN | |
| 478 | IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_MASK), |
| 479 | .supp_mcs = { |
| 480 | .rx_mcs_map = cpu_to_le16(~0), |
| 481 | .tx_mcs_map = cpu_to_le16(~0), |
| 482 | }, |
| 483 | }; |
| 484 | |
Ben Greear | ad28757 | 2014-10-22 12:23:01 -0700 | [diff] [blame] | 485 | struct ieee80211_hw *ieee80211_alloc_hw_nm(size_t priv_data_len, |
| 486 | const struct ieee80211_ops *ops, |
| 487 | const char *requested_name) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 488 | { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 489 | struct ieee80211_local *local; |
Johannes Berg | 96f5e66 | 2009-02-12 00:51:53 +0100 | [diff] [blame] | 490 | int priv_size, i; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 491 | struct wiphy *wiphy; |
Johannes Berg | fe57d9f | 2012-07-26 14:55:08 +0200 | [diff] [blame] | 492 | bool use_chanctx; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 493 | |
Johannes Berg | c0af073 | 2012-07-26 14:42:10 +0200 | [diff] [blame] | 494 | if (WARN_ON(!ops->tx || !ops->start || !ops->stop || !ops->config || |
| 495 | !ops->add_interface || !ops->remove_interface || |
| 496 | !ops->configure_filter)) |
| 497 | return NULL; |
| 498 | |
Johannes Berg | f09603a | 2012-01-20 13:55:21 +0100 | [diff] [blame] | 499 | if (WARN_ON(ops->sta_state && (ops->sta_add || ops->sta_remove))) |
| 500 | return NULL; |
| 501 | |
Johannes Berg | e269d86 | 2012-07-26 14:46:32 +0200 | [diff] [blame] | 502 | /* check all or no channel context operations exist */ |
| 503 | i = !!ops->add_chanctx + !!ops->remove_chanctx + |
| 504 | !!ops->change_chanctx + !!ops->assign_vif_chanctx + |
| 505 | !!ops->unassign_vif_chanctx; |
| 506 | if (WARN_ON(i != 0 && i != 5)) |
| 507 | return NULL; |
Johannes Berg | fe57d9f | 2012-07-26 14:55:08 +0200 | [diff] [blame] | 508 | use_chanctx = i == 5; |
Johannes Berg | e269d86 | 2012-07-26 14:46:32 +0200 | [diff] [blame] | 509 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 510 | /* Ensure 32-byte alignment of our private data and hw private data. |
| 511 | * We use the wiphy priv data for both our ieee80211_local and for |
| 512 | * the driver's private data |
| 513 | * |
| 514 | * In memory it'll be like this: |
| 515 | * |
| 516 | * +-------------------------+ |
| 517 | * | struct wiphy | |
| 518 | * +-------------------------+ |
| 519 | * | struct ieee80211_local | |
| 520 | * +-------------------------+ |
| 521 | * | driver's private data | |
| 522 | * +-------------------------+ |
| 523 | * |
| 524 | */ |
Eric Dumazet | 1ce8e7b | 2009-05-27 04:42:37 +0000 | [diff] [blame] | 525 | priv_size = ALIGN(sizeof(*local), NETDEV_ALIGN) + priv_data_len; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 526 | |
Ben Greear | ad28757 | 2014-10-22 12:23:01 -0700 | [diff] [blame] | 527 | wiphy = wiphy_new_nm(&mac80211_config_ops, priv_size, requested_name); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 528 | |
| 529 | if (!wiphy) |
| 530 | return NULL; |
| 531 | |
Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 532 | wiphy->mgmt_stypes = ieee80211_default_mgmt_stypes; |
| 533 | |
Johannes Berg | 207aba6 | 2010-12-10 17:10:44 +0100 | [diff] [blame] | 534 | wiphy->privid = mac80211_wiphy_privid; |
| 535 | |
Johannes Berg | 9bc383d | 2009-11-19 11:55:19 +0100 | [diff] [blame] | 536 | wiphy->flags |= WIPHY_FLAG_NETNS_OK | |
| 537 | WIPHY_FLAG_4ADDR_AP | |
Johannes Berg | ee97192 | 2011-11-04 11:18:18 +0100 | [diff] [blame] | 538 | WIPHY_FLAG_4ADDR_STATION | |
Johannes Berg | 7c4ef71 | 2011-11-18 15:33:48 +0100 | [diff] [blame] | 539 | WIPHY_FLAG_REPORTS_OBSS | |
Johannes Berg | 81ddbb5 | 2012-03-26 18:47:18 +0200 | [diff] [blame] | 540 | WIPHY_FLAG_OFFCHAN_TX; |
| 541 | |
| 542 | if (ops->remain_on_channel) |
| 543 | wiphy->flags |= WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL; |
Johannes Berg | 207aba6 | 2010-12-10 17:10:44 +0100 | [diff] [blame] | 544 | |
Johannes Berg | b292219 | 2012-10-12 10:55:53 +0200 | [diff] [blame] | 545 | wiphy->features |= NL80211_FEATURE_SK_TX_STATUS | |
| 546 | NL80211_FEATURE_SAE | |
Johannes Berg | 1ea6f9c | 2012-10-24 10:59:25 +0200 | [diff] [blame] | 547 | NL80211_FEATURE_HT_IBSS | |
Thomas Pedersen | a6dad6a | 2013-03-04 13:06:12 -0800 | [diff] [blame] | 548 | NL80211_FEATURE_VIF_TXPOWER | |
Ben Greear | b5dfae0 | 2014-10-22 12:23:06 -0700 | [diff] [blame] | 549 | NL80211_FEATURE_MAC_ON_CREATE | |
Johannes Berg | 90f9ba9 | 2015-11-26 16:26:14 +0100 | [diff] [blame] | 550 | NL80211_FEATURE_USERSPACE_MPM | |
| 551 | NL80211_FEATURE_FULL_AP_CLIENT_STATE; |
Johannes Berg | a729cff | 2011-11-06 14:13:34 +0100 | [diff] [blame] | 552 | |
Sam Leffler | cd2bb51 | 2012-10-11 21:03:35 -0700 | [diff] [blame] | 553 | if (!ops->hw_scan) |
Antonio Quartulli | 5c95b94 | 2012-10-16 08:39:22 +0200 | [diff] [blame] | 554 | wiphy->features |= NL80211_FEATURE_LOW_PRIORITY_SCAN | |
| 555 | NL80211_FEATURE_AP_SCAN; |
| 556 | |
Sam Leffler | cd2bb51 | 2012-10-11 21:03:35 -0700 | [diff] [blame] | 557 | |
Johannes Berg | 207aba6 | 2010-12-10 17:10:44 +0100 | [diff] [blame] | 558 | if (!ops->set_key) |
| 559 | wiphy->flags |= WIPHY_FLAG_IBSS_RSN; |
Johannes Berg | 18a8365 | 2009-03-31 12:12:05 +0200 | [diff] [blame] | 560 | |
Emmanuel Grumbach | f278ce4 | 2016-03-09 10:08:27 +0200 | [diff] [blame] | 561 | wiphy_ext_feature_set(wiphy, NL80211_EXT_FEATURE_RRM); |
| 562 | |
Johannes Berg | 0c1ad2c | 2009-12-23 13:15:39 +0100 | [diff] [blame] | 563 | wiphy->bss_priv_size = sizeof(struct ieee80211_bss); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 564 | |
| 565 | local = wiphy_priv(wiphy); |
Johannes Berg | de95a54 | 2009-04-01 11:58:36 +0200 | [diff] [blame] | 566 | |
Johannes Berg | 7bedd0c | 2015-02-13 21:55:15 +0100 | [diff] [blame] | 567 | if (sta_info_init(local)) |
| 568 | goto err_free; |
| 569 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 570 | local->hw.wiphy = wiphy; |
| 571 | |
Eric Dumazet | 1ce8e7b | 2009-05-27 04:42:37 +0000 | [diff] [blame] | 572 | local->hw.priv = (char *)local + ALIGN(sizeof(*local), NETDEV_ALIGN); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 573 | |
| 574 | local->ops = ops; |
Johannes Berg | fe57d9f | 2012-07-26 14:55:08 +0200 | [diff] [blame] | 575 | local->use_chanctx = use_chanctx; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 576 | |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 577 | /* set up some defaults */ |
| 578 | local->hw.queues = 1; |
| 579 | local->hw.max_rates = 1; |
Helmut Schaa | 78be49e | 2010-10-02 11:31:55 +0200 | [diff] [blame] | 580 | local->hw.max_report_rates = 0; |
Luciano Coelho | df6ba5d | 2011-01-12 15:26:30 +0200 | [diff] [blame] | 581 | local->hw.max_rx_aggregation_subframes = IEEE80211_MAX_AMPDU_BUF; |
Helmut Schaa | 39e6871 | 2011-08-05 11:46:19 +0200 | [diff] [blame] | 582 | local->hw.max_tx_aggregation_subframes = IEEE80211_MAX_AMPDU_BUF; |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 583 | local->hw.offchannel_tx_hw_queue = IEEE80211_INVAL_HW_QUEUE; |
Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 584 | local->hw.conf.long_frame_max_tx_count = wiphy->retry_long; |
| 585 | local->hw.conf.short_frame_max_tx_count = wiphy->retry_short; |
Johannes Berg | ac55d2f | 2012-05-10 09:09:10 +0200 | [diff] [blame] | 586 | local->hw.radiotap_mcs_details = IEEE80211_RADIOTAP_MCS_HAVE_MCS | |
| 587 | IEEE80211_RADIOTAP_MCS_HAVE_GI | |
| 588 | IEEE80211_RADIOTAP_MCS_HAVE_BW; |
Johannes Berg | 5164892 | 2012-11-22 23:00:18 +0100 | [diff] [blame] | 589 | local->hw.radiotap_vht_details = IEEE80211_RADIOTAP_VHT_KNOWN_GI | |
| 590 | IEEE80211_RADIOTAP_VHT_KNOWN_BANDWIDTH; |
Alexander Bondar | 219c386 | 2013-01-22 16:52:23 +0200 | [diff] [blame] | 591 | local->hw.uapsd_queues = IEEE80211_DEFAULT_UAPSD_QUEUES; |
| 592 | local->hw.uapsd_max_sp_len = IEEE80211_DEFAULT_MAX_SP_LEN; |
Johannes Berg | 1ea6f9c | 2012-10-24 10:59:25 +0200 | [diff] [blame] | 593 | local->user_power_level = IEEE80211_UNSET_POWER_LEVEL; |
Ben Greear | ef96a842 | 2011-11-18 11:32:00 -0800 | [diff] [blame] | 594 | wiphy->ht_capa_mod_mask = &mac80211_ht_capa_mod_mask; |
Johannes Berg | dd5ecfe | 2013-02-21 17:40:19 +0100 | [diff] [blame] | 595 | wiphy->vht_capa_mod_mask = &mac80211_vht_capa_mod_mask; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 596 | |
Luciano Coelho | e9a2194 | 2014-10-08 09:48:36 +0300 | [diff] [blame] | 597 | local->ext_capa[7] = WLAN_EXT_CAPA8_OPMODE_NOTIF; |
| 598 | |
| 599 | wiphy->extended_capabilities = local->ext_capa; |
| 600 | wiphy->extended_capabilities_mask = local->ext_capa; |
| 601 | wiphy->extended_capabilities_len = |
| 602 | ARRAY_SIZE(local->ext_capa); |
| 603 | |
Johannes Berg | 7901042 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 604 | INIT_LIST_HEAD(&local->interfaces); |
YOSHIFUJI Hideaki / 吉藤英明 | 2f787b0 | 2010-04-04 17:59:30 +0000 | [diff] [blame] | 605 | |
| 606 | __hw_addr_init(&local->mc_list); |
| 607 | |
Johannes Berg | c771c9d | 2009-01-23 22:54:03 +0100 | [diff] [blame] | 608 | mutex_init(&local->iflist_mtx); |
Johannes Berg | a1699b7 | 2010-07-30 16:46:07 +0200 | [diff] [blame] | 609 | mutex_init(&local->mtx); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 610 | |
Johannes Berg | ad0e2b5 | 2010-06-01 10:19:19 +0200 | [diff] [blame] | 611 | mutex_init(&local->key_mtx); |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 612 | spin_lock_init(&local->filter_lock); |
Christian Lamparter | f9e124f | 2013-02-04 17:44:44 +0000 | [diff] [blame] | 613 | spin_lock_init(&local->rx_path_lock); |
Kalle Valo | ce7c911 | 2008-12-18 23:35:20 +0200 | [diff] [blame] | 614 | spin_lock_init(&local->queue_stop_reason_lock); |
| 615 | |
Michal Kazior | d01a1e6 | 2012-06-26 14:37:16 +0200 | [diff] [blame] | 616 | INIT_LIST_HEAD(&local->chanctx_list); |
| 617 | mutex_init(&local->chanctx_mtx); |
| 618 | |
Johannes Berg | c2b1345 | 2008-09-11 00:01:55 +0200 | [diff] [blame] | 619 | INIT_DELAYED_WORK(&local->scan_work, ieee80211_scan_work); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 620 | |
Johannes Berg | f2753dd | 2009-04-14 10:09:24 +0200 | [diff] [blame] | 621 | INIT_WORK(&local->restart_work, ieee80211_restart_work); |
| 622 | |
Simon Wunderlich | 164eb02 | 2013-02-08 18:16:20 +0100 | [diff] [blame] | 623 | INIT_WORK(&local->radar_detected_work, |
| 624 | ieee80211_dfs_radar_detected_work); |
| 625 | |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 626 | INIT_WORK(&local->reconfig_filter, ieee80211_reconfig_filter); |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 627 | local->smps_mode = IEEE80211_SMPS_OFF; |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 628 | |
Kalle Valo | 520eb82 | 2008-12-18 23:35:27 +0200 | [diff] [blame] | 629 | INIT_WORK(&local->dynamic_ps_enable_work, |
| 630 | ieee80211_dynamic_ps_enable_work); |
| 631 | INIT_WORK(&local->dynamic_ps_disable_work, |
| 632 | ieee80211_dynamic_ps_disable_work); |
| 633 | setup_timer(&local->dynamic_ps_timer, |
| 634 | ieee80211_dynamic_ps_timer, (unsigned long) local); |
| 635 | |
Luciano Coelho | 85a9994 | 2011-05-12 16:28:29 +0300 | [diff] [blame] | 636 | INIT_WORK(&local->sched_scan_stopped_work, |
| 637 | ieee80211_sched_scan_stopped_work); |
| 638 | |
Arik Nemtsov | c8ff71e | 2015-07-08 15:41:45 +0300 | [diff] [blame] | 639 | INIT_WORK(&local->tdls_chsw_work, ieee80211_tdls_chsw_work); |
| 640 | |
Johannes Berg | a729cff | 2011-11-06 14:13:34 +0100 | [diff] [blame] | 641 | spin_lock_init(&local->ack_status_lock); |
| 642 | idr_init(&local->ack_status_frames); |
Johannes Berg | a729cff | 2011-11-06 14:13:34 +0100 | [diff] [blame] | 643 | |
Johannes Berg | a6a67db | 2010-06-10 10:21:41 +0200 | [diff] [blame] | 644 | for (i = 0; i < IEEE80211_MAX_QUEUES; i++) { |
Johannes Berg | 2a577d9 | 2009-03-23 17:28:37 +0100 | [diff] [blame] | 645 | skb_queue_head_init(&local->pending[i]); |
Johannes Berg | a6a67db | 2010-06-10 10:21:41 +0200 | [diff] [blame] | 646 | atomic_set(&local->agg_queue_stop[i], 0); |
| 647 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 648 | tasklet_init(&local->tx_pending_tasklet, ieee80211_tx_pending, |
| 649 | (unsigned long)local); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 650 | |
| 651 | tasklet_init(&local->tasklet, |
| 652 | ieee80211_tasklet_handler, |
| 653 | (unsigned long) local); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 654 | |
| 655 | skb_queue_head_init(&local->skb_queue); |
| 656 | skb_queue_head_init(&local->skb_queue_unreliable); |
Arik Nemtsov | c8ff71e | 2015-07-08 15:41:45 +0300 | [diff] [blame] | 657 | skb_queue_head_init(&local->skb_queue_tdls_chsw); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 658 | |
Johannes Berg | 8d5c258 | 2015-04-23 12:19:22 +0200 | [diff] [blame] | 659 | ieee80211_alloc_led_names(local); |
Johannes Berg | fe67c91 | 2010-11-27 20:02:59 +0100 | [diff] [blame] | 660 | |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 661 | ieee80211_roc_setup(local); |
Johannes Berg | 21f8358 | 2010-12-18 17:20:47 +0100 | [diff] [blame] | 662 | |
Johannes Berg | 99ee7ca | 2016-08-29 23:25:17 +0300 | [diff] [blame] | 663 | local->hw.radiotap_timestamp.units_pos = -1; |
| 664 | local->hw.radiotap_timestamp.accuracy = -1; |
| 665 | |
Johannes Berg | 005e472 | 2012-02-26 11:24:35 +0100 | [diff] [blame] | 666 | return &local->hw; |
Johannes Berg | 7bedd0c | 2015-02-13 21:55:15 +0100 | [diff] [blame] | 667 | err_free: |
| 668 | wiphy_free(wiphy); |
| 669 | return NULL; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 670 | } |
Ben Greear | ad28757 | 2014-10-22 12:23:01 -0700 | [diff] [blame] | 671 | EXPORT_SYMBOL(ieee80211_alloc_hw_nm); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 672 | |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 673 | static int ieee80211_init_cipher_suites(struct ieee80211_local *local) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 674 | { |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 675 | bool have_wep = !(IS_ERR(local->wep_tx_tfm) || |
| 676 | IS_ERR(local->wep_rx_tfm)); |
Johannes Berg | 30686bf | 2015-06-02 21:39:54 +0200 | [diff] [blame] | 677 | bool have_mfp = ieee80211_hw_check(&local->hw, MFP_CAPABLE); |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 678 | int n_suites = 0, r = 0, w = 0; |
| 679 | u32 *suites; |
Johannes Berg | 25e47c1 | 2009-04-02 20:14:06 +0200 | [diff] [blame] | 680 | static const u32 cipher_suites[] = { |
Johannes Berg | 5daa8a8 | 2010-08-10 09:46:41 +0200 | [diff] [blame] | 681 | /* keep WEP first, it may be removed below */ |
Johannes Berg | 25e47c1 | 2009-04-02 20:14:06 +0200 | [diff] [blame] | 682 | WLAN_CIPHER_SUITE_WEP40, |
| 683 | WLAN_CIPHER_SUITE_WEP104, |
| 684 | WLAN_CIPHER_SUITE_TKIP, |
| 685 | WLAN_CIPHER_SUITE_CCMP, |
Jouni Malinen | 2b2ba0d | 2015-01-24 19:52:07 +0200 | [diff] [blame] | 686 | WLAN_CIPHER_SUITE_CCMP_256, |
Jouni Malinen | 00b9cfa | 2015-01-24 19:52:06 +0200 | [diff] [blame] | 687 | WLAN_CIPHER_SUITE_GCMP, |
| 688 | WLAN_CIPHER_SUITE_GCMP_256, |
Johannes Berg | 25e47c1 | 2009-04-02 20:14:06 +0200 | [diff] [blame] | 689 | |
| 690 | /* keep last -- depends on hw flags! */ |
Jouni Malinen | 56c52da | 2015-01-24 19:52:08 +0200 | [diff] [blame] | 691 | WLAN_CIPHER_SUITE_AES_CMAC, |
| 692 | WLAN_CIPHER_SUITE_BIP_CMAC_256, |
Jouni Malinen | 8ade538 | 2015-01-24 19:52:09 +0200 | [diff] [blame] | 693 | WLAN_CIPHER_SUITE_BIP_GMAC_128, |
| 694 | WLAN_CIPHER_SUITE_BIP_GMAC_256, |
Johannes Berg | 25e47c1 | 2009-04-02 20:14:06 +0200 | [diff] [blame] | 695 | }; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 696 | |
Johannes Berg | 30686bf | 2015-06-02 21:39:54 +0200 | [diff] [blame] | 697 | if (ieee80211_hw_check(&local->hw, SW_CRYPTO_CONTROL) || |
Johannes Berg | fa7e1fb | 2015-01-22 18:44:19 +0100 | [diff] [blame] | 698 | local->hw.wiphy->cipher_suites) { |
| 699 | /* If the driver advertises, or doesn't support SW crypto, |
| 700 | * we only need to remove WEP if necessary. |
| 701 | */ |
| 702 | if (have_wep) |
| 703 | return 0; |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 704 | |
Johannes Berg | fa7e1fb | 2015-01-22 18:44:19 +0100 | [diff] [blame] | 705 | /* well if it has _no_ ciphers ... fine */ |
| 706 | if (!local->hw.wiphy->n_cipher_suites) |
| 707 | return 0; |
| 708 | |
| 709 | /* Driver provides cipher suites, but we need to exclude WEP */ |
| 710 | suites = kmemdup(local->hw.wiphy->cipher_suites, |
| 711 | sizeof(u32) * local->hw.wiphy->n_cipher_suites, |
| 712 | GFP_KERNEL); |
| 713 | if (!suites) |
| 714 | return -ENOMEM; |
| 715 | |
| 716 | for (r = 0; r < local->hw.wiphy->n_cipher_suites; r++) { |
| 717 | u32 suite = local->hw.wiphy->cipher_suites[r]; |
| 718 | |
| 719 | if (suite == WLAN_CIPHER_SUITE_WEP40 || |
| 720 | suite == WLAN_CIPHER_SUITE_WEP104) |
| 721 | continue; |
| 722 | suites[w++] = suite; |
| 723 | } |
| 724 | } else if (!local->hw.cipher_schemes) { |
| 725 | /* If the driver doesn't have cipher schemes, there's nothing |
| 726 | * else to do other than assign the (software supported and |
| 727 | * perhaps offloaded) cipher suites. |
| 728 | */ |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 729 | local->hw.wiphy->cipher_suites = cipher_suites; |
| 730 | local->hw.wiphy->n_cipher_suites = ARRAY_SIZE(cipher_suites); |
| 731 | |
| 732 | if (!have_mfp) |
Jouni Malinen | 8ade538 | 2015-01-24 19:52:09 +0200 | [diff] [blame] | 733 | local->hw.wiphy->n_cipher_suites -= 4; |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 734 | |
| 735 | if (!have_wep) { |
| 736 | local->hw.wiphy->cipher_suites += 2; |
| 737 | local->hw.wiphy->n_cipher_suites -= 2; |
| 738 | } |
| 739 | |
Johannes Berg | fa7e1fb | 2015-01-22 18:44:19 +0100 | [diff] [blame] | 740 | /* not dynamically allocated, so just return */ |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 741 | return 0; |
Johannes Berg | fa7e1fb | 2015-01-22 18:44:19 +0100 | [diff] [blame] | 742 | } else { |
| 743 | const struct ieee80211_cipher_scheme *cs; |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 744 | |
Johannes Berg | fa7e1fb | 2015-01-22 18:44:19 +0100 | [diff] [blame] | 745 | cs = local->hw.cipher_schemes; |
| 746 | |
| 747 | /* Driver specifies cipher schemes only (but not cipher suites |
| 748 | * including the schemes) |
| 749 | * |
Jouni Malinen | 00b9cfa | 2015-01-24 19:52:06 +0200 | [diff] [blame] | 750 | * We start counting ciphers defined by schemes, TKIP, CCMP, |
Jouni Malinen | 2b2ba0d | 2015-01-24 19:52:07 +0200 | [diff] [blame] | 751 | * CCMP-256, GCMP, and GCMP-256 |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 752 | */ |
Jouni Malinen | 2b2ba0d | 2015-01-24 19:52:07 +0200 | [diff] [blame] | 753 | n_suites = local->hw.n_cipher_schemes + 5; |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 754 | |
| 755 | /* check if we have WEP40 and WEP104 */ |
| 756 | if (have_wep) |
| 757 | n_suites += 2; |
| 758 | |
Jouni Malinen | 8ade538 | 2015-01-24 19:52:09 +0200 | [diff] [blame] | 759 | /* check if we have AES_CMAC, BIP-CMAC-256, BIP-GMAC-128, |
| 760 | * BIP-GMAC-256 |
| 761 | */ |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 762 | if (have_mfp) |
Jouni Malinen | 8ade538 | 2015-01-24 19:52:09 +0200 | [diff] [blame] | 763 | n_suites += 4; |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 764 | |
| 765 | suites = kmalloc(sizeof(u32) * n_suites, GFP_KERNEL); |
| 766 | if (!suites) |
| 767 | return -ENOMEM; |
| 768 | |
| 769 | suites[w++] = WLAN_CIPHER_SUITE_CCMP; |
Jouni Malinen | 2b2ba0d | 2015-01-24 19:52:07 +0200 | [diff] [blame] | 770 | suites[w++] = WLAN_CIPHER_SUITE_CCMP_256; |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 771 | suites[w++] = WLAN_CIPHER_SUITE_TKIP; |
Jouni Malinen | 00b9cfa | 2015-01-24 19:52:06 +0200 | [diff] [blame] | 772 | suites[w++] = WLAN_CIPHER_SUITE_GCMP; |
| 773 | suites[w++] = WLAN_CIPHER_SUITE_GCMP_256; |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 774 | |
| 775 | if (have_wep) { |
| 776 | suites[w++] = WLAN_CIPHER_SUITE_WEP40; |
| 777 | suites[w++] = WLAN_CIPHER_SUITE_WEP104; |
| 778 | } |
| 779 | |
Jouni Malinen | 56c52da | 2015-01-24 19:52:08 +0200 | [diff] [blame] | 780 | if (have_mfp) { |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 781 | suites[w++] = WLAN_CIPHER_SUITE_AES_CMAC; |
Jouni Malinen | 56c52da | 2015-01-24 19:52:08 +0200 | [diff] [blame] | 782 | suites[w++] = WLAN_CIPHER_SUITE_BIP_CMAC_256; |
Jouni Malinen | 8ade538 | 2015-01-24 19:52:09 +0200 | [diff] [blame] | 783 | suites[w++] = WLAN_CIPHER_SUITE_BIP_GMAC_128; |
| 784 | suites[w++] = WLAN_CIPHER_SUITE_BIP_GMAC_256; |
Jouni Malinen | 56c52da | 2015-01-24 19:52:08 +0200 | [diff] [blame] | 785 | } |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 786 | |
Johannes Berg | e3a55b5 | 2015-05-05 16:32:29 +0200 | [diff] [blame] | 787 | for (r = 0; r < local->hw.n_cipher_schemes; r++) { |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 788 | suites[w++] = cs[r].cipher; |
Johannes Berg | 94c78cb | 2015-05-20 11:31:47 +0200 | [diff] [blame] | 789 | if (WARN_ON(cs[r].pn_len > IEEE80211_MAX_PN_LEN)) { |
| 790 | kfree(suites); |
Johannes Berg | e3a55b5 | 2015-05-05 16:32:29 +0200 | [diff] [blame] | 791 | return -EINVAL; |
Johannes Berg | 94c78cb | 2015-05-20 11:31:47 +0200 | [diff] [blame] | 792 | } |
Johannes Berg | e3a55b5 | 2015-05-05 16:32:29 +0200 | [diff] [blame] | 793 | } |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 794 | } |
| 795 | |
| 796 | local->hw.wiphy->cipher_suites = suites; |
| 797 | local->hw.wiphy->n_cipher_suites = w; |
| 798 | local->wiphy_ciphers_allocated = true; |
| 799 | |
| 800 | return 0; |
| 801 | } |
| 802 | |
| 803 | int ieee80211_register_hw(struct ieee80211_hw *hw) |
| 804 | { |
| 805 | struct ieee80211_local *local = hw_to_local(hw); |
| 806 | int result, i; |
Johannes Berg | 57fbcce | 2016-04-12 15:56:15 +0200 | [diff] [blame] | 807 | enum nl80211_band band; |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 808 | int channels, max_bitrates; |
| 809 | bool supp_ht, supp_vht; |
| 810 | netdev_features_t feature_whitelist; |
| 811 | struct cfg80211_chan_def dflt_chandef = {}; |
| 812 | |
Johannes Berg | 30686bf | 2015-06-02 21:39:54 +0200 | [diff] [blame] | 813 | if (ieee80211_hw_check(hw, QUEUE_CONTROL) && |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 814 | (local->hw.offchannel_tx_hw_queue == IEEE80211_INVAL_HW_QUEUE || |
| 815 | local->hw.offchannel_tx_hw_queue >= local->hw.queues)) |
| 816 | return -EINVAL; |
| 817 | |
Arik Nemtsov | a7a6bdd | 2014-11-09 18:50:19 +0200 | [diff] [blame] | 818 | if ((hw->wiphy->features & NL80211_FEATURE_TDLS_CHANNEL_SWITCH) && |
| 819 | (!local->ops->tdls_channel_switch || |
Arik Nemtsov | 8a4d32f | 2014-11-09 18:50:20 +0200 | [diff] [blame] | 820 | !local->ops->tdls_cancel_channel_switch || |
| 821 | !local->ops->tdls_recv_channel_switch)) |
Arik Nemtsov | a7a6bdd | 2014-11-09 18:50:19 +0200 | [diff] [blame] | 822 | return -EOPNOTSUPP; |
| 823 | |
Ayala Beker | 708d50e | 2016-09-20 17:31:14 +0300 | [diff] [blame] | 824 | if (WARN_ON(local->hw.wiphy->interface_modes & |
| 825 | BIT(NL80211_IFTYPE_NAN) && |
| 826 | (!local->ops->start_nan || !local->ops->stop_nan))) |
| 827 | return -EINVAL; |
| 828 | |
Larry Finger | 38bb3e9 | 2011-05-05 18:48:47 -0500 | [diff] [blame] | 829 | #ifdef CONFIG_PM |
Johannes Berg | 964dc9e | 2013-06-03 17:25:34 +0200 | [diff] [blame] | 830 | if (hw->wiphy->wowlan && (!local->ops->suspend || !local->ops->resume)) |
Johannes Berg | eecc480 | 2011-05-04 15:37:29 +0200 | [diff] [blame] | 831 | return -EINVAL; |
Johannes Berg | dfb89c5 | 2012-06-27 09:23:48 +0200 | [diff] [blame] | 832 | #endif |
Johannes Berg | eecc480 | 2011-05-04 15:37:29 +0200 | [diff] [blame] | 833 | |
Johannes Berg | fe57d9f | 2012-07-26 14:55:08 +0200 | [diff] [blame] | 834 | if (!local->use_chanctx) { |
| 835 | for (i = 0; i < local->hw.wiphy->n_iface_combinations; i++) { |
| 836 | const struct ieee80211_iface_combination *comb; |
| 837 | |
| 838 | comb = &local->hw.wiphy->iface_combinations[i]; |
| 839 | |
| 840 | if (comb->num_different_channels > 1) |
| 841 | return -EINVAL; |
| 842 | } |
Johannes Berg | 746a336 | 2012-10-22 15:20:53 +0200 | [diff] [blame] | 843 | } else { |
Johannes Berg | fe57d9f | 2012-07-26 14:55:08 +0200 | [diff] [blame] | 844 | /* |
| 845 | * WDS is currently prohibited when channel contexts are used |
| 846 | * because there's no clear definition of which channel WDS |
| 847 | * type interfaces use |
| 848 | */ |
| 849 | if (local->hw.wiphy->interface_modes & BIT(NL80211_IFTYPE_WDS)) |
| 850 | return -EINVAL; |
Simon Wunderlich | 164eb02 | 2013-02-08 18:16:20 +0100 | [diff] [blame] | 851 | |
Michal Kazior | 486cf4c | 2014-10-10 12:43:23 +0200 | [diff] [blame] | 852 | /* DFS is not supported with multi-channel combinations yet */ |
Simon Wunderlich | 164eb02 | 2013-02-08 18:16:20 +0100 | [diff] [blame] | 853 | for (i = 0; i < local->hw.wiphy->n_iface_combinations; i++) { |
| 854 | const struct ieee80211_iface_combination *comb; |
| 855 | |
| 856 | comb = &local->hw.wiphy->iface_combinations[i]; |
| 857 | |
Michal Kazior | 486cf4c | 2014-10-10 12:43:23 +0200 | [diff] [blame] | 858 | if (comb->radar_detect_widths && |
| 859 | comb->num_different_channels > 1) |
Simon Wunderlich | 164eb02 | 2013-02-08 18:16:20 +0100 | [diff] [blame] | 860 | return -EINVAL; |
| 861 | } |
Johannes Berg | fe57d9f | 2012-07-26 14:55:08 +0200 | [diff] [blame] | 862 | } |
| 863 | |
Arik Nemtsov | 72d7872 | 2012-05-10 16:18:26 +0300 | [diff] [blame] | 864 | /* Only HW csum features are currently compatible with mac80211 */ |
| 865 | feature_whitelist = NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM | |
Johannes Berg | 80616c0 | 2015-04-14 14:50:41 +0200 | [diff] [blame] | 866 | NETIF_F_HW_CSUM | NETIF_F_SG | NETIF_F_HIGHDMA | |
Sara Sharon | e035212 | 2016-03-09 13:27:08 +0200 | [diff] [blame] | 867 | NETIF_F_GSO_SOFTWARE | NETIF_F_RXCSUM; |
Arik Nemtsov | 72d7872 | 2012-05-10 16:18:26 +0300 | [diff] [blame] | 868 | if (WARN_ON(hw->netdev_features & ~feature_whitelist)) |
| 869 | return -EINVAL; |
| 870 | |
Helmut Schaa | 78be49e | 2010-10-02 11:31:55 +0200 | [diff] [blame] | 871 | if (hw->max_report_rates == 0) |
| 872 | hw->max_report_rates = hw->max_rates; |
| 873 | |
Johannes Berg | 04ecd25 | 2012-09-11 14:34:12 +0200 | [diff] [blame] | 874 | local->rx_chains = 1; |
| 875 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 876 | /* |
| 877 | * generic code guarantees at least one band, |
| 878 | * set this very early because much code assumes |
| 879 | * that hw.conf.channel is assigned |
| 880 | */ |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 881 | channels = 0; |
Johannes Berg | de95a54 | 2009-04-01 11:58:36 +0200 | [diff] [blame] | 882 | max_bitrates = 0; |
Johannes Berg | 5ef2d41 | 2009-03-31 12:12:07 +0200 | [diff] [blame] | 883 | supp_ht = false; |
Mahesh Palivela | ba0afa2f | 2012-07-02 11:25:12 +0000 | [diff] [blame] | 884 | supp_vht = false; |
Johannes Berg | 57fbcce | 2016-04-12 15:56:15 +0200 | [diff] [blame] | 885 | for (band = 0; band < NUM_NL80211_BANDS; band++) { |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 886 | struct ieee80211_supported_band *sband; |
| 887 | |
| 888 | sband = local->hw.wiphy->bands[band]; |
Johannes Berg | de95a54 | 2009-04-01 11:58:36 +0200 | [diff] [blame] | 889 | if (!sband) |
| 890 | continue; |
Karl Beldan | fffa4b1 | 2013-04-15 19:04:06 +0200 | [diff] [blame] | 891 | |
| 892 | if (!dflt_chandef.chan) { |
| 893 | cfg80211_chandef_create(&dflt_chandef, |
| 894 | &sband->channels[0], |
| 895 | NL80211_CHAN_NO_HT); |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 896 | /* init channel we're on */ |
Karl Beldan | fffa4b1 | 2013-04-15 19:04:06 +0200 | [diff] [blame] | 897 | if (!local->use_chanctx && !local->_oper_chandef.chan) { |
| 898 | local->hw.conf.chandef = dflt_chandef; |
| 899 | local->_oper_chandef = dflt_chandef; |
| 900 | } |
| 901 | local->monitor_chandef = dflt_chandef; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 902 | } |
Karl Beldan | fffa4b1 | 2013-04-15 19:04:06 +0200 | [diff] [blame] | 903 | |
Johannes Berg | de95a54 | 2009-04-01 11:58:36 +0200 | [diff] [blame] | 904 | channels += sband->n_channels; |
| 905 | |
| 906 | if (max_bitrates < sband->n_bitrates) |
| 907 | max_bitrates = sband->n_bitrates; |
Johannes Berg | 5ef2d41 | 2009-03-31 12:12:07 +0200 | [diff] [blame] | 908 | supp_ht = supp_ht || sband->ht_cap.ht_supported; |
Mahesh Palivela | ba0afa2f | 2012-07-02 11:25:12 +0000 | [diff] [blame] | 909 | supp_vht = supp_vht || sband->vht_cap.vht_supported; |
Johannes Berg | 04ecd25 | 2012-09-11 14:34:12 +0200 | [diff] [blame] | 910 | |
Felix Fietkau | 6baa8c9 | 2017-01-13 11:28:25 +0100 | [diff] [blame] | 911 | if (!sband->ht_cap.ht_supported) |
| 912 | continue; |
Johannes Berg | 04ecd25 | 2012-09-11 14:34:12 +0200 | [diff] [blame] | 913 | |
| 914 | /* TODO: consider VHT for RX chains, hopefully it's the same */ |
Felix Fietkau | 6baa8c9 | 2017-01-13 11:28:25 +0100 | [diff] [blame] | 915 | local->rx_chains = |
| 916 | max(ieee80211_mcs_to_chains(&sband->ht_cap.mcs), |
| 917 | local->rx_chains); |
| 918 | |
| 919 | /* no need to mask, SM_PS_DISABLED has all bits set */ |
| 920 | sband->ht_cap.cap |= WLAN_HT_CAP_SM_PS_DISABLED << |
| 921 | IEEE80211_HT_CAP_SM_PS_SHIFT; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 922 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 923 | |
Luis R. Rodriguez | f59ac04 | 2008-08-29 16:26:43 -0700 | [diff] [blame] | 924 | /* if low-level driver supports AP, we also support VLAN */ |
Johannes Berg | 7527a78 | 2011-05-13 10:58:57 +0200 | [diff] [blame] | 925 | if (local->hw.wiphy->interface_modes & BIT(NL80211_IFTYPE_AP)) { |
| 926 | hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_AP_VLAN); |
| 927 | hw->wiphy->software_iftypes |= BIT(NL80211_IFTYPE_AP_VLAN); |
| 928 | } |
Luis R. Rodriguez | f59ac04 | 2008-08-29 16:26:43 -0700 | [diff] [blame] | 929 | |
| 930 | /* mac80211 always supports monitor */ |
Johannes Berg | 7527a78 | 2011-05-13 10:58:57 +0200 | [diff] [blame] | 931 | hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_MONITOR); |
| 932 | hw->wiphy->software_iftypes |= BIT(NL80211_IFTYPE_MONITOR); |
| 933 | |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 934 | /* mac80211 doesn't support more than one IBSS interface right now */ |
Johannes Berg | 8e621fc | 2011-05-14 01:55:23 +0200 | [diff] [blame] | 935 | for (i = 0; i < hw->wiphy->n_iface_combinations; i++) { |
| 936 | const struct ieee80211_iface_combination *c; |
| 937 | int j; |
| 938 | |
| 939 | c = &hw->wiphy->iface_combinations[i]; |
| 940 | |
Johannes Berg | 8e621fc | 2011-05-14 01:55:23 +0200 | [diff] [blame] | 941 | for (j = 0; j < c->n_limits; j++) |
| 942 | if ((c->limits[j].types & BIT(NL80211_IFTYPE_ADHOC)) && |
| 943 | c->limits[j].max > 1) |
| 944 | return -EINVAL; |
| 945 | } |
| 946 | |
Johannes Berg | 5b0ec94 | 2014-01-06 16:02:34 +0100 | [diff] [blame] | 947 | local->int_scan_req = kzalloc(sizeof(*local->int_scan_req) + |
| 948 | sizeof(void *) * channels, GFP_KERNEL); |
| 949 | if (!local->int_scan_req) |
| 950 | return -ENOMEM; |
| 951 | |
Johannes Berg | 57fbcce | 2016-04-12 15:56:15 +0200 | [diff] [blame] | 952 | for (band = 0; band < NUM_NL80211_BANDS; band++) { |
Johannes Berg | 5b0ec94 | 2014-01-06 16:02:34 +0100 | [diff] [blame] | 953 | if (!local->hw.wiphy->bands[band]) |
| 954 | continue; |
| 955 | local->int_scan_req->rates[band] = (u32) -1; |
| 956 | } |
| 957 | |
Johannes Berg | 5eb5a52 | 2010-08-25 14:34:01 +0200 | [diff] [blame] | 958 | #ifndef CONFIG_MAC80211_MESH |
| 959 | /* mesh depends on Kconfig, but drivers should set it if they want */ |
| 960 | local->hw.wiphy->interface_modes &= ~BIT(NL80211_IFTYPE_MESH_POINT); |
| 961 | #endif |
| 962 | |
Javier Cardona | 1570ca5 | 2011-04-07 15:08:35 -0700 | [diff] [blame] | 963 | /* if the underlying driver supports mesh, mac80211 will (at least) |
| 964 | * provide routing of mesh authentication frames to userspace */ |
| 965 | if (local->hw.wiphy->interface_modes & BIT(NL80211_IFTYPE_MESH_POINT)) |
| 966 | local->hw.wiphy->flags |= WIPHY_FLAG_MESH_AUTH; |
| 967 | |
Johannes Berg | a621fa4 | 2010-08-27 14:26:54 +0300 | [diff] [blame] | 968 | /* mac80211 supports control port protocol changing */ |
| 969 | local->hw.wiphy->flags |= WIPHY_FLAG_CONTROL_PORT_PROTOCOL; |
| 970 | |
Johannes Berg | 30686bf | 2015-06-02 21:39:54 +0200 | [diff] [blame] | 971 | if (ieee80211_hw_check(&local->hw, SIGNAL_DBM)) { |
Johannes Berg | 77965c9 | 2009-02-18 18:45:06 +0100 | [diff] [blame] | 972 | local->hw.wiphy->signal_type = CFG80211_SIGNAL_TYPE_MBM; |
Johannes Berg | 30686bf | 2015-06-02 21:39:54 +0200 | [diff] [blame] | 973 | } else if (ieee80211_hw_check(&local->hw, SIGNAL_UNSPEC)) { |
Johannes Berg | 77965c9 | 2009-02-18 18:45:06 +0100 | [diff] [blame] | 974 | local->hw.wiphy->signal_type = CFG80211_SIGNAL_TYPE_UNSPEC; |
andrea merello | 5251207 | 2014-01-19 22:21:49 +0100 | [diff] [blame] | 975 | if (hw->max_signal <= 0) { |
| 976 | result = -EINVAL; |
| 977 | goto fail_wiphy_register; |
| 978 | } |
| 979 | } |
Johannes Berg | 77965c9 | 2009-02-18 18:45:06 +0100 | [diff] [blame] | 980 | |
Johannes Berg | de95a54 | 2009-04-01 11:58:36 +0200 | [diff] [blame] | 981 | /* |
| 982 | * Calculate scan IE length -- we need this to alloc |
| 983 | * memory and to subtract from the driver limit. It |
Jouni Malinen | dc9f48c | 2010-10-27 13:40:33 +0300 | [diff] [blame] | 984 | * includes the DS Params, (extended) supported rates, and HT |
Johannes Berg | de95a54 | 2009-04-01 11:58:36 +0200 | [diff] [blame] | 985 | * information -- SSID is the driver's responsibility. |
| 986 | */ |
Jouni Malinen | dc9f48c | 2010-10-27 13:40:33 +0300 | [diff] [blame] | 987 | local->scan_ies_len = 4 + max_bitrates /* (ext) supp rates */ + |
| 988 | 3 /* DS Params */; |
Johannes Berg | 5ef2d41 | 2009-03-31 12:12:07 +0200 | [diff] [blame] | 989 | if (supp_ht) |
| 990 | local->scan_ies_len += 2 + sizeof(struct ieee80211_ht_cap); |
Johannes Berg | de95a54 | 2009-04-01 11:58:36 +0200 | [diff] [blame] | 991 | |
Karl Beldan | d0e6c21 | 2013-03-25 16:26:58 +0100 | [diff] [blame] | 992 | if (supp_vht) |
Mahesh Palivela | ba0afa2f | 2012-07-02 11:25:12 +0000 | [diff] [blame] | 993 | local->scan_ies_len += |
Mahesh Palivela | d495028 | 2012-10-10 11:25:40 +0000 | [diff] [blame] | 994 | 2 + sizeof(struct ieee80211_vht_cap); |
Mahesh Palivela | ba0afa2f | 2012-07-02 11:25:12 +0000 | [diff] [blame] | 995 | |
Johannes Berg | de95a54 | 2009-04-01 11:58:36 +0200 | [diff] [blame] | 996 | if (!local->ops->hw_scan) { |
| 997 | /* For hw_scan, driver needs to set these up. */ |
| 998 | local->hw.wiphy->max_scan_ssids = 4; |
| 999 | local->hw.wiphy->max_scan_ie_len = IEEE80211_MAX_DATA_LEN; |
| 1000 | } |
| 1001 | |
| 1002 | /* |
| 1003 | * If the driver supports any scan IEs, then assume the |
| 1004 | * limit includes the IEs mac80211 will add, otherwise |
| 1005 | * leave it at zero and let the driver sort it out; we |
| 1006 | * still pass our IEs to the driver but userspace will |
| 1007 | * not be allowed to in that case. |
| 1008 | */ |
| 1009 | if (local->hw.wiphy->max_scan_ie_len) |
| 1010 | local->hw.wiphy->max_scan_ie_len -= local->scan_ies_len; |
| 1011 | |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 1012 | WARN_ON(!ieee80211_cs_list_valid(local->hw.cipher_schemes, |
| 1013 | local->hw.n_cipher_schemes)); |
Johannes Berg | 3ffc2a9 | 2010-08-27 14:26:52 +0300 | [diff] [blame] | 1014 | |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 1015 | result = ieee80211_init_cipher_suites(local); |
| 1016 | if (result < 0) |
| 1017 | goto fail_wiphy_register; |
Johannes Berg | 25e47c1 | 2009-04-02 20:14:06 +0200 | [diff] [blame] | 1018 | |
Johannes Berg | 21f8358 | 2010-12-18 17:20:47 +0100 | [diff] [blame] | 1019 | if (!local->ops->remain_on_channel) |
| 1020 | local->hw.wiphy->max_remain_on_channel_duration = 5000; |
Johannes Berg | a293911 | 2010-12-14 17:54:28 +0100 | [diff] [blame] | 1021 | |
Arik Nemtsov | dfe018b | 2011-09-28 14:12:52 +0300 | [diff] [blame] | 1022 | /* mac80211 based drivers don't support internal TDLS setup */ |
| 1023 | if (local->hw.wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS) |
| 1024 | local->hw.wiphy->flags |= WIPHY_FLAG_TDLS_EXTERNAL_SETUP; |
| 1025 | |
Luciano Coelho | e9a2194 | 2014-10-08 09:48:36 +0300 | [diff] [blame] | 1026 | /* mac80211 supports eCSA, if the driver supports STA CSA at all */ |
Johannes Berg | 30686bf | 2015-06-02 21:39:54 +0200 | [diff] [blame] | 1027 | if (ieee80211_hw_check(&local->hw, CHANCTX_STA_CSA)) |
Luciano Coelho | e9a2194 | 2014-10-08 09:48:36 +0300 | [diff] [blame] | 1028 | local->ext_capa[0] |= WLAN_EXT_CAPA1_EXT_CHANNEL_SWITCHING; |
| 1029 | |
Andrei Otcheretianski | 0d06d9b | 2014-05-09 14:11:47 +0300 | [diff] [blame] | 1030 | local->hw.wiphy->max_num_csa_counters = IEEE80211_MAX_CSA_COUNTERS_NUM; |
| 1031 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1032 | result = wiphy_register(local->hw.wiphy); |
| 1033 | if (result < 0) |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1034 | goto fail_wiphy_register; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1035 | |
Johannes Berg | e253008 | 2008-05-17 00:57:14 +0200 | [diff] [blame] | 1036 | /* |
| 1037 | * We use the number of queues for feature tests (QoS, HT) internally |
| 1038 | * so restrict them appropriately. |
| 1039 | */ |
Johannes Berg | e253008 | 2008-05-17 00:57:14 +0200 | [diff] [blame] | 1040 | if (hw->queues > IEEE80211_MAX_QUEUES) |
| 1041 | hw->queues = IEEE80211_MAX_QUEUES; |
Johannes Berg | e253008 | 2008-05-17 00:57:14 +0200 | [diff] [blame] | 1042 | |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 1043 | local->workqueue = |
Kees Cook | d853754 | 2013-07-03 15:04:57 -0700 | [diff] [blame] | 1044 | alloc_ordered_workqueue("%s", 0, wiphy_name(local->hw.wiphy)); |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 1045 | if (!local->workqueue) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1046 | result = -ENOMEM; |
| 1047 | goto fail_workqueue; |
| 1048 | } |
| 1049 | |
Johannes Berg | b306f45 | 2007-07-10 19:32:08 +0200 | [diff] [blame] | 1050 | /* |
| 1051 | * The hardware needs headroom for sending the frame, |
| 1052 | * and we need some headroom for passing the frame to monitor |
| 1053 | * interfaces, but never both at the same time. |
| 1054 | */ |
Jiri Benc | 33ccad3 | 2007-07-18 17:10:44 +0200 | [diff] [blame] | 1055 | local->tx_headroom = max_t(unsigned int , local->hw.extra_tx_headroom, |
Helmut Schaa | a2fe816 | 2011-10-11 18:08:54 +0200 | [diff] [blame] | 1056 | IEEE80211_TX_STATUS_HEADROOM); |
Johannes Berg | b306f45 | 2007-07-10 19:32:08 +0200 | [diff] [blame] | 1057 | |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 1058 | debugfs_hw_add(local); |
| 1059 | |
Helmut Schaa | b446918 | 2010-02-24 14:19:37 +0100 | [diff] [blame] | 1060 | /* |
| 1061 | * if the driver doesn't specify a max listen interval we |
| 1062 | * use 5 which should be a safe default |
| 1063 | */ |
Tomas Winkler | ea95bba | 2008-07-18 13:53:00 +0800 | [diff] [blame] | 1064 | if (local->hw.max_listen_interval == 0) |
Helmut Schaa | b446918 | 2010-02-24 14:19:37 +0100 | [diff] [blame] | 1065 | local->hw.max_listen_interval = 5; |
Tomas Winkler | ea95bba | 2008-07-18 13:53:00 +0800 | [diff] [blame] | 1066 | |
| 1067 | local->hw.conf.listen_interval = local->hw.max_listen_interval; |
| 1068 | |
Juuso Oikarinen | ff61638 | 2010-06-09 09:51:52 +0300 | [diff] [blame] | 1069 | local->dynamic_ps_forced_timeout = -1; |
Juuso Oikarinen | 195e294 | 2010-04-27 12:47:40 +0300 | [diff] [blame] | 1070 | |
Ayala Beker | 167e33f | 2016-09-20 17:31:20 +0300 | [diff] [blame] | 1071 | if (!local->hw.max_nan_de_entries) |
| 1072 | local->hw.max_nan_de_entries = IEEE80211_MAX_NAN_INSTANCE_ID; |
| 1073 | |
Alan Jenkins | d4c4a9a | 2009-04-29 11:41:24 +0100 | [diff] [blame] | 1074 | result = ieee80211_wep_init(local); |
John W. Linville | 3473187 | 2010-07-07 15:07:49 -0400 | [diff] [blame] | 1075 | if (result < 0) |
Joe Perches | 0fb9a9e | 2010-08-20 16:25:38 -0700 | [diff] [blame] | 1076 | wiphy_debug(local->hw.wiphy, "Failed to initialize wep: %d\n", |
| 1077 | result); |
Alan Jenkins | d4c4a9a | 2009-04-29 11:41:24 +0100 | [diff] [blame] | 1078 | |
Karl Beldan | 24d4730 | 2013-11-19 17:12:05 +0100 | [diff] [blame] | 1079 | local->hw.conf.flags = IEEE80211_CONF_IDLE; |
| 1080 | |
Mohammed Shafi Shajakhan | b57e6b5 | 2012-02-09 19:59:43 +0530 | [diff] [blame] | 1081 | ieee80211_led_init(local); |
| 1082 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1083 | rtnl_lock(); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1084 | |
Johannes Berg | 830f903 | 2007-10-28 14:51:05 +0100 | [diff] [blame] | 1085 | result = ieee80211_init_rate_ctrl_alg(local, |
| 1086 | hw->rate_control_algorithm); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1087 | if (result < 0) { |
Joe Perches | 0fb9a9e | 2010-08-20 16:25:38 -0700 | [diff] [blame] | 1088 | wiphy_debug(local->hw.wiphy, |
| 1089 | "Failed to initialize rate control algorithm\n"); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1090 | goto fail_rate; |
| 1091 | } |
| 1092 | |
Johannes Berg | 8dffff2 | 2008-12-09 00:10:30 +0100 | [diff] [blame] | 1093 | /* add one default STA interface if supported */ |
Ben Greear | e27513f | 2014-10-22 12:23:03 -0700 | [diff] [blame] | 1094 | if (local->hw.wiphy->interface_modes & BIT(NL80211_IFTYPE_STATION) && |
Johannes Berg | 30686bf | 2015-06-02 21:39:54 +0200 | [diff] [blame] | 1095 | !ieee80211_hw_check(hw, NO_AUTO_VIF)) { |
Tom Gundersen | 6bab2e19 | 2015-03-18 11:13:39 +0100 | [diff] [blame] | 1096 | result = ieee80211_if_add(local, "wlan%d", NET_NAME_ENUM, NULL, |
Johannes Berg | 8dffff2 | 2008-12-09 00:10:30 +0100 | [diff] [blame] | 1097 | NL80211_IFTYPE_STATION, NULL); |
| 1098 | if (result) |
Joe Perches | 0fb9a9e | 2010-08-20 16:25:38 -0700 | [diff] [blame] | 1099 | wiphy_warn(local->hw.wiphy, |
| 1100 | "Failed to add default virtual iface\n"); |
Johannes Berg | 8dffff2 | 2008-12-09 00:10:30 +0100 | [diff] [blame] | 1101 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1102 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1103 | rtnl_unlock(); |
| 1104 | |
Michal Kazior | fa962b9 | 2016-05-19 10:37:49 +0200 | [diff] [blame] | 1105 | result = ieee80211_txq_setup_flows(local); |
| 1106 | if (result) |
| 1107 | goto fail_flows; |
| 1108 | |
John W. Linville | 26b36cf | 2010-06-04 14:25:44 -0400 | [diff] [blame] | 1109 | #ifdef CONFIG_INET |
Juuso Oikarinen | 2b2c009 | 2010-05-27 15:32:13 +0300 | [diff] [blame] | 1110 | local->ifa_notifier.notifier_call = ieee80211_ifa_changed; |
| 1111 | result = register_inetaddr_notifier(&local->ifa_notifier); |
| 1112 | if (result) |
| 1113 | goto fail_ifa; |
John W. Linville | 26b36cf | 2010-06-04 14:25:44 -0400 | [diff] [blame] | 1114 | #endif |
Juuso Oikarinen | 2b2c009 | 2010-05-27 15:32:13 +0300 | [diff] [blame] | 1115 | |
Johannes Berg | a65240c | 2013-01-14 15:14:34 +0100 | [diff] [blame] | 1116 | #if IS_ENABLED(CONFIG_IPV6) |
| 1117 | local->ifa6_notifier.notifier_call = ieee80211_ifa6_changed; |
| 1118 | result = register_inet6addr_notifier(&local->ifa6_notifier); |
| 1119 | if (result) |
| 1120 | goto fail_ifa6; |
| 1121 | #endif |
| 1122 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1123 | return 0; |
| 1124 | |
Johannes Berg | a65240c | 2013-01-14 15:14:34 +0100 | [diff] [blame] | 1125 | #if IS_ENABLED(CONFIG_IPV6) |
| 1126 | fail_ifa6: |
Juuso Oikarinen | 93c08c3 | 2010-08-03 08:22:25 +0300 | [diff] [blame] | 1127 | #ifdef CONFIG_INET |
Johannes Berg | a65240c | 2013-01-14 15:14:34 +0100 | [diff] [blame] | 1128 | unregister_inetaddr_notifier(&local->ifa_notifier); |
| 1129 | #endif |
| 1130 | #endif |
| 1131 | #if defined(CONFIG_INET) || defined(CONFIG_IPV6) |
Juuso Oikarinen | 2b2c009 | 2010-05-27 15:32:13 +0300 | [diff] [blame] | 1132 | fail_ifa: |
Juuso Oikarinen | 93c08c3 | 2010-08-03 08:22:25 +0300 | [diff] [blame] | 1133 | #endif |
Michal Kazior | fa962b9 | 2016-05-19 10:37:49 +0200 | [diff] [blame] | 1134 | ieee80211_txq_teardown_flows(local); |
| 1135 | fail_flows: |
Johannes Berg | 54330bf | 2015-01-21 13:52:24 +0100 | [diff] [blame] | 1136 | rtnl_lock(); |
| 1137 | rate_control_deinitialize(local); |
Johannes Berg | 10f644a | 2009-04-16 13:17:25 +0200 | [diff] [blame] | 1138 | ieee80211_remove_interfaces(local); |
Johannes Berg | 10f644a | 2009-04-16 13:17:25 +0200 | [diff] [blame] | 1139 | fail_rate: |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1140 | rtnl_unlock(); |
Johannes Berg | 54330bf | 2015-01-21 13:52:24 +0100 | [diff] [blame] | 1141 | ieee80211_led_exit(local); |
Alan Jenkins | d4c4a9a | 2009-04-29 11:41:24 +0100 | [diff] [blame] | 1142 | ieee80211_wep_free(local); |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 1143 | destroy_workqueue(local->workqueue); |
Johannes Berg | 10f644a | 2009-04-16 13:17:25 +0200 | [diff] [blame] | 1144 | fail_workqueue: |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1145 | wiphy_unregister(local->hw.wiphy); |
Johannes Berg | 10f644a | 2009-04-16 13:17:25 +0200 | [diff] [blame] | 1146 | fail_wiphy_register: |
Johannes Berg | 3ffc2a9 | 2010-08-27 14:26:52 +0300 | [diff] [blame] | 1147 | if (local->wiphy_ciphers_allocated) |
| 1148 | kfree(local->hw.wiphy->cipher_suites); |
Johannes Berg | 11ba964 | 2009-08-19 19:45:50 +0200 | [diff] [blame] | 1149 | kfree(local->int_scan_req); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1150 | return result; |
| 1151 | } |
| 1152 | EXPORT_SYMBOL(ieee80211_register_hw); |
| 1153 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1154 | void ieee80211_unregister_hw(struct ieee80211_hw *hw) |
| 1155 | { |
| 1156 | struct ieee80211_local *local = hw_to_local(hw); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1157 | |
| 1158 | tasklet_kill(&local->tx_pending_tasklet); |
| 1159 | tasklet_kill(&local->tasklet); |
| 1160 | |
John W. Linville | 26b36cf | 2010-06-04 14:25:44 -0400 | [diff] [blame] | 1161 | #ifdef CONFIG_INET |
Juuso Oikarinen | 2b2c009 | 2010-05-27 15:32:13 +0300 | [diff] [blame] | 1162 | unregister_inetaddr_notifier(&local->ifa_notifier); |
John W. Linville | 26b36cf | 2010-06-04 14:25:44 -0400 | [diff] [blame] | 1163 | #endif |
Johannes Berg | a65240c | 2013-01-14 15:14:34 +0100 | [diff] [blame] | 1164 | #if IS_ENABLED(CONFIG_IPV6) |
| 1165 | unregister_inet6addr_notifier(&local->ifa6_notifier); |
| 1166 | #endif |
Johannes Berg | 10f644a | 2009-04-16 13:17:25 +0200 | [diff] [blame] | 1167 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1168 | rtnl_lock(); |
| 1169 | |
Johannes Berg | 7901042 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 1170 | /* |
| 1171 | * At this point, interface list manipulations are fine |
| 1172 | * because the driver cannot be handing us frames any |
| 1173 | * more and the tasklet is killed. |
| 1174 | */ |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1175 | ieee80211_remove_interfaces(local); |
Johannes Berg | 5b2812e | 2007-09-26 14:27:23 +0200 | [diff] [blame] | 1176 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1177 | rtnl_unlock(); |
| 1178 | |
Johannes Berg | aaa016c | 2015-11-23 23:53:51 +0100 | [diff] [blame] | 1179 | cancel_delayed_work_sync(&local->roc_work); |
Christian Lamparter | 258086a | 2010-08-22 23:48:25 +0200 | [diff] [blame] | 1180 | cancel_work_sync(&local->restart_work); |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 1181 | cancel_work_sync(&local->reconfig_filter); |
Arik Nemtsov | c8ff71e | 2015-07-08 15:41:45 +0300 | [diff] [blame] | 1182 | cancel_work_sync(&local->tdls_chsw_work); |
Johannes Berg | 18db594 | 2013-11-06 10:34:36 +0100 | [diff] [blame] | 1183 | flush_work(&local->sched_scan_stopped_work); |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 1184 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1185 | ieee80211_clear_tx_pending(local); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1186 | rate_control_deinitialize(local); |
| 1187 | |
Joe Perches | f64f9e7 | 2009-11-29 16:55:45 -0800 | [diff] [blame] | 1188 | if (skb_queue_len(&local->skb_queue) || |
| 1189 | skb_queue_len(&local->skb_queue_unreliable)) |
Joe Perches | 0fb9a9e | 2010-08-20 16:25:38 -0700 | [diff] [blame] | 1190 | wiphy_warn(local->hw.wiphy, "skb_queue not empty\n"); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1191 | skb_queue_purge(&local->skb_queue); |
| 1192 | skb_queue_purge(&local->skb_queue_unreliable); |
Arik Nemtsov | c8ff71e | 2015-07-08 15:41:45 +0300 | [diff] [blame] | 1193 | skb_queue_purge(&local->skb_queue_tdls_chsw); |
Michal Kazior | fa962b9 | 2016-05-19 10:37:49 +0200 | [diff] [blame] | 1194 | ieee80211_txq_teardown_flows(local); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1195 | |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 1196 | destroy_workqueue(local->workqueue); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1197 | wiphy_unregister(local->hw.wiphy); |
| 1198 | ieee80211_wep_free(local); |
| 1199 | ieee80211_led_exit(local); |
Johannes Berg | 5ba6353 | 2009-08-07 17:54:07 +0200 | [diff] [blame] | 1200 | kfree(local->int_scan_req); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1201 | } |
| 1202 | EXPORT_SYMBOL(ieee80211_unregister_hw); |
| 1203 | |
Johannes Berg | a729cff | 2011-11-06 14:13:34 +0100 | [diff] [blame] | 1204 | static int ieee80211_free_ack_frame(int id, void *p, void *data) |
| 1205 | { |
| 1206 | WARN_ONCE(1, "Have pending ack frames!\n"); |
| 1207 | kfree_skb(p); |
| 1208 | return 0; |
| 1209 | } |
| 1210 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1211 | void ieee80211_free_hw(struct ieee80211_hw *hw) |
| 1212 | { |
| 1213 | struct ieee80211_local *local = hw_to_local(hw); |
| 1214 | |
Johannes Berg | c771c9d | 2009-01-23 22:54:03 +0100 | [diff] [blame] | 1215 | mutex_destroy(&local->iflist_mtx); |
Johannes Berg | a1699b7 | 2010-07-30 16:46:07 +0200 | [diff] [blame] | 1216 | mutex_destroy(&local->mtx); |
Johannes Berg | c771c9d | 2009-01-23 22:54:03 +0100 | [diff] [blame] | 1217 | |
Johannes Berg | 3ffc2a9 | 2010-08-27 14:26:52 +0300 | [diff] [blame] | 1218 | if (local->wiphy_ciphers_allocated) |
| 1219 | kfree(local->hw.wiphy->cipher_suites); |
| 1220 | |
Johannes Berg | a729cff | 2011-11-06 14:13:34 +0100 | [diff] [blame] | 1221 | idr_for_each(&local->ack_status_frames, |
| 1222 | ieee80211_free_ack_frame, NULL); |
| 1223 | idr_destroy(&local->ack_status_frames); |
| 1224 | |
Johannes Berg | 54330bf | 2015-01-21 13:52:24 +0100 | [diff] [blame] | 1225 | sta_info_stop(local); |
| 1226 | |
Johannes Berg | 8d5c258 | 2015-04-23 12:19:22 +0200 | [diff] [blame] | 1227 | ieee80211_free_led_names(local); |
| 1228 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1229 | wiphy_free(local->hw.wiphy); |
| 1230 | } |
| 1231 | EXPORT_SYMBOL(ieee80211_free_hw); |
| 1232 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1233 | static int __init ieee80211_init(void) |
| 1234 | { |
| 1235 | struct sk_buff *skb; |
| 1236 | int ret; |
| 1237 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1238 | BUILD_BUG_ON(sizeof(struct ieee80211_tx_info) > sizeof(skb->cb)); |
| 1239 | BUILD_BUG_ON(offsetof(struct ieee80211_tx_info, driver_data) + |
Johannes Berg | c6a1fa1 | 2008-10-07 12:04:32 +0200 | [diff] [blame] | 1240 | IEEE80211_TX_INFO_DRIVER_DATA_SIZE > sizeof(skb->cb)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1241 | |
Felix Fietkau | cccf129 | 2008-10-05 18:07:45 +0200 | [diff] [blame] | 1242 | ret = rc80211_minstrel_init(); |
| 1243 | if (ret) |
| 1244 | return ret; |
| 1245 | |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 1246 | ret = rc80211_minstrel_ht_init(); |
| 1247 | if (ret) |
| 1248 | goto err_minstrel; |
| 1249 | |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 1250 | ret = ieee80211_iface_init(); |
| 1251 | if (ret) |
| 1252 | goto err_netdev; |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 1253 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1254 | return 0; |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 1255 | err_netdev: |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 1256 | rc80211_minstrel_ht_exit(); |
| 1257 | err_minstrel: |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 1258 | rc80211_minstrel_exit(); |
| 1259 | |
| 1260 | return ret; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1261 | } |
| 1262 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1263 | static void __exit ieee80211_exit(void) |
| 1264 | { |
Felix Fietkau | ec8aa66 | 2010-05-13 16:48:03 +0200 | [diff] [blame] | 1265 | rc80211_minstrel_ht_exit(); |
Felix Fietkau | cccf129 | 2008-10-05 18:07:45 +0200 | [diff] [blame] | 1266 | rc80211_minstrel_exit(); |
Johannes Berg | ac71c69 | 2007-10-28 14:17:44 +0100 | [diff] [blame] | 1267 | |
Johannes Berg | bf7cd94 | 2013-02-15 14:40:31 +0100 | [diff] [blame] | 1268 | ieee80211s_stop(); |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 1269 | |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 1270 | ieee80211_iface_exit(); |
Johannes Berg | d07c7cf | 2011-05-14 11:04:51 +0200 | [diff] [blame] | 1271 | |
| 1272 | rcu_barrier(); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1273 | } |
| 1274 | |
| 1275 | |
Johannes Berg | ca9938f | 2007-09-11 12:50:32 +0200 | [diff] [blame] | 1276 | subsys_initcall(ieee80211_init); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1277 | module_exit(ieee80211_exit); |
| 1278 | |
| 1279 | MODULE_DESCRIPTION("IEEE 802.11 subsystem"); |
| 1280 | MODULE_LICENSE("GPL"); |