blob: 004fb23241da08c45d6fa9e5d39f901447a80e5d [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
4 * Copyright (c) 2006 Jiri Benc <jbenc@suse.cz>
Johannes Berg75636522008-07-09 14:40:35 +02005 * Copyright 2008, Johannes Berg <johannes@sipsolutions.net>
Jiri Bencf0706e82007-05-05 11:45:53 -07006 *
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#include <linux/kernel.h>
12#include <linux/if_arp.h>
13#include <linux/netdevice.h>
14#include <linux/rtnetlink.h>
15#include <net/mac80211.h>
16#include "ieee80211_i.h"
17#include "sta_info.h"
Jiri Bence9f207f2007-05-05 11:46:38 -070018#include "debugfs_netdev.h"
Luis Carlos Coboee385852008-02-23 15:17:11 +010019#include "mesh.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070020
Johannes Berg75636522008-07-09 14:40:35 +020021/*
22 * Called when the netdev is removed or, by the code below, before
23 * the interface type changes.
24 */
25static void ieee80211_teardown_sdata(struct net_device *dev)
Jiri Bencf0706e82007-05-05 11:45:53 -070026{
Johannes Berg75636522008-07-09 14:40:35 +020027 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
28 struct ieee80211_local *local = sdata->local;
29 struct beacon_data *beacon;
30 struct sk_buff *skb;
31 int flushed;
Jiri Bencf0706e82007-05-05 11:45:53 -070032 int i;
33
Johannes Berg75636522008-07-09 14:40:35 +020034 /* free extra data */
35 ieee80211_free_keys(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -070036
Jouni Malinenaee14ce2008-09-09 16:33:15 +020037 ieee80211_debugfs_remove_netdev(sdata);
38
Johannes Berg988c0f72008-04-17 19:21:22 +020039 for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++)
Jiri Bencf0706e82007-05-05 11:45:53 -070040 __skb_queue_purge(&sdata->fragments[i].skb_list);
Johannes Berg75636522008-07-09 14:40:35 +020041 sdata->fragment_next = 0;
42
43 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +020044 case NL80211_IFTYPE_AP:
Johannes Berg75636522008-07-09 14:40:35 +020045 beacon = sdata->u.ap.beacon;
46 rcu_assign_pointer(sdata->u.ap.beacon, NULL);
47 synchronize_rcu();
48 kfree(beacon);
49
50 while ((skb = skb_dequeue(&sdata->u.ap.ps_bc_buf))) {
51 local->total_ps_buffered--;
52 dev_kfree_skb(skb);
53 }
54
55 break;
Johannes Berg05c914f2008-09-11 00:01:58 +020056 case NL80211_IFTYPE_MESH_POINT:
Johannes Berg75636522008-07-09 14:40:35 +020057 if (ieee80211_vif_is_mesh(&sdata->vif))
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +120058 mesh_rmc_free(sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +020059 break;
Johannes Berg05c914f2008-09-11 00:01:58 +020060 case NL80211_IFTYPE_STATION:
61 case NL80211_IFTYPE_ADHOC:
Johannes Berg75636522008-07-09 14:40:35 +020062 kfree(sdata->u.sta.extra_ie);
63 kfree(sdata->u.sta.assocreq_ies);
64 kfree(sdata->u.sta.assocresp_ies);
65 kfree_skb(sdata->u.sta.probe_resp);
66 break;
Johannes Berg05c914f2008-09-11 00:01:58 +020067 case NL80211_IFTYPE_WDS:
68 case NL80211_IFTYPE_AP_VLAN:
69 case NL80211_IFTYPE_MONITOR:
Johannes Berg75636522008-07-09 14:40:35 +020070 break;
Johannes Berg05c914f2008-09-11 00:01:58 +020071 case NL80211_IFTYPE_UNSPECIFIED:
72 case __NL80211_IFTYPE_AFTER_LAST:
Johannes Berg75636522008-07-09 14:40:35 +020073 BUG();
74 break;
75 }
76
77 flushed = sta_info_flush(local, sdata);
78 WARN_ON(flushed);
Jiri Bencf0706e82007-05-05 11:45:53 -070079}
80
Johannes Berg75636522008-07-09 14:40:35 +020081/*
82 * Helper function to initialise an interface to a specific type.
83 */
84static void ieee80211_setup_sdata(struct ieee80211_sub_if_data *sdata,
Johannes Berg05c914f2008-09-11 00:01:58 +020085 enum nl80211_iftype type)
Johannes Berg75636522008-07-09 14:40:35 +020086{
Johannes Berg75636522008-07-09 14:40:35 +020087 /* clear type-dependent union */
88 memset(&sdata->u, 0, sizeof(sdata->u));
89
90 /* and set some type-dependent values */
91 sdata->vif.type = type;
92
93 /* only monitor differs */
94 sdata->dev->type = ARPHRD_ETHER;
95
96 switch (type) {
Johannes Berg05c914f2008-09-11 00:01:58 +020097 case NL80211_IFTYPE_AP:
Johannes Berg75636522008-07-09 14:40:35 +020098 skb_queue_head_init(&sdata->u.ap.ps_bc_buf);
99 INIT_LIST_HEAD(&sdata->u.ap.vlans);
100 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200101 case NL80211_IFTYPE_STATION:
102 case NL80211_IFTYPE_ADHOC:
Johannes Berg9c6bd792008-09-11 00:01:52 +0200103 ieee80211_sta_setup_sdata(sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +0200104 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200105 case NL80211_IFTYPE_MESH_POINT:
Johannes Berg75636522008-07-09 14:40:35 +0200106 if (ieee80211_vif_is_mesh(&sdata->vif))
107 ieee80211_mesh_init_sdata(sdata);
108 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200109 case NL80211_IFTYPE_MONITOR:
Johannes Berg75636522008-07-09 14:40:35 +0200110 sdata->dev->type = ARPHRD_IEEE80211_RADIOTAP;
111 sdata->dev->hard_start_xmit = ieee80211_monitor_start_xmit;
112 sdata->u.mntr_flags = MONITOR_FLAG_CONTROL |
113 MONITOR_FLAG_OTHER_BSS;
114 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200115 case NL80211_IFTYPE_WDS:
116 case NL80211_IFTYPE_AP_VLAN:
Johannes Berg75636522008-07-09 14:40:35 +0200117 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200118 case NL80211_IFTYPE_UNSPECIFIED:
119 case __NL80211_IFTYPE_AFTER_LAST:
Johannes Berg75636522008-07-09 14:40:35 +0200120 BUG();
121 break;
122 }
123
124 ieee80211_debugfs_add_netdev(sdata);
125}
126
Johannes Bergf3947e22008-07-09 14:40:36 +0200127int ieee80211_if_change_type(struct ieee80211_sub_if_data *sdata,
Johannes Berg05c914f2008-09-11 00:01:58 +0200128 enum nl80211_iftype type)
Johannes Berg75636522008-07-09 14:40:35 +0200129{
Johannes Bergf3947e22008-07-09 14:40:36 +0200130 ASSERT_RTNL();
131
132 if (type == sdata->vif.type)
133 return 0;
134
135 /*
136 * We could, here, on changes between IBSS/STA/MESH modes,
137 * invoke an MLME function instead that disassociates etc.
138 * and goes into the requested mode.
139 */
140
141 if (netif_running(sdata->dev))
142 return -EBUSY;
143
Johannes Berg75636522008-07-09 14:40:35 +0200144 /* Purge and reset type-dependent state. */
145 ieee80211_teardown_sdata(sdata->dev);
146 ieee80211_setup_sdata(sdata, type);
147
148 /* reset some values that shouldn't be kept across type changes */
Johannes Berg96dd22a2008-09-11 00:01:57 +0200149 sdata->bss_conf.basic_rates =
150 ieee80211_mandatory_rates(sdata->local,
151 sdata->local->hw.conf.channel->band);
Johannes Berg75636522008-07-09 14:40:35 +0200152 sdata->drop_unencrypted = 0;
Johannes Bergf3947e22008-07-09 14:40:36 +0200153
154 return 0;
Johannes Berg75636522008-07-09 14:40:35 +0200155}
156
Johannes Berg3e122be2008-07-09 14:40:34 +0200157int ieee80211_if_add(struct ieee80211_local *local, const char *name,
Johannes Berg05c914f2008-09-11 00:01:58 +0200158 struct net_device **new_dev, enum nl80211_iftype type,
Luis Carlos Coboee385852008-02-23 15:17:11 +0100159 struct vif_params *params)
Jiri Bencf0706e82007-05-05 11:45:53 -0700160{
161 struct net_device *ndev;
Jiri Bencf0706e82007-05-05 11:45:53 -0700162 struct ieee80211_sub_if_data *sdata = NULL;
Johannes Berg75636522008-07-09 14:40:35 +0200163 int ret, i;
Jiri Bencf0706e82007-05-05 11:45:53 -0700164
165 ASSERT_RTNL();
Johannes Berg75636522008-07-09 14:40:35 +0200166
Johannes Berg32bfd352007-12-19 01:31:26 +0100167 ndev = alloc_netdev(sizeof(*sdata) + local->hw.vif_data_size,
Jiri Bencf0706e82007-05-05 11:45:53 -0700168 name, ieee80211_if_setup);
169 if (!ndev)
170 return -ENOMEM;
171
Johannes Bergf3994ec2008-05-12 20:51:44 -0700172 ndev->needed_headroom = local->tx_headroom +
173 4*6 /* four MAC addresses */
174 + 2 + 2 + 2 + 2 /* ctl, dur, seq, qos */
175 + 6 /* mesh */
176 + 8 /* rfc1042/bridge tunnel */
177 - ETH_HLEN /* ethernet hard_header_len */
178 + IEEE80211_ENCRYPT_HEADROOM;
179 ndev->needed_tailroom = IEEE80211_ENCRYPT_TAILROOM;
180
Jiri Bencf0706e82007-05-05 11:45:53 -0700181 ret = dev_alloc_name(ndev, ndev->name);
182 if (ret < 0)
183 goto fail;
184
185 memcpy(ndev->dev_addr, local->hw.wiphy->perm_addr, ETH_ALEN);
Jiri Bencf0706e82007-05-05 11:45:53 -0700186 SET_NETDEV_DEV(ndev, wiphy_dev(local->hw.wiphy));
187
Johannes Berg3e122be2008-07-09 14:40:34 +0200188 /* don't use IEEE80211_DEV_TO_SUB_IF because it checks too much */
189 sdata = netdev_priv(ndev);
Jiri Bencf0706e82007-05-05 11:45:53 -0700190 ndev->ieee80211_ptr = &sdata->wdev;
Johannes Berg75636522008-07-09 14:40:35 +0200191
192 /* initialise type-independent data */
Jiri Bencf0706e82007-05-05 11:45:53 -0700193 sdata->wdev.wiphy = local->hw.wiphy;
Jiri Bencf0706e82007-05-05 11:45:53 -0700194 sdata->local = local;
Johannes Berg75636522008-07-09 14:40:35 +0200195 sdata->dev = ndev;
196
197 for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++)
198 skb_queue_head_init(&sdata->fragments[i].skb_list);
199
200 INIT_LIST_HEAD(&sdata->key_list);
201
202 sdata->force_unicast_rateidx = -1;
203 sdata->max_ratectrl_rateidx = -1;
204
205 /* setup type-dependent data */
206 ieee80211_setup_sdata(sdata, type);
Jiri Bencf0706e82007-05-05 11:45:53 -0700207
208 ret = register_netdevice(ndev);
209 if (ret)
210 goto fail;
211
Johannes Berg75636522008-07-09 14:40:35 +0200212 ndev->uninit = ieee80211_teardown_sdata;
Jiri Bencf0706e82007-05-05 11:45:53 -0700213
Johannes Berg902acc72008-02-23 15:17:19 +0100214 if (ieee80211_vif_is_mesh(&sdata->vif) &&
215 params && params->mesh_id_len)
Johannes Berg472dbc42008-09-11 00:01:49 +0200216 ieee80211_sdata_set_mesh_id(sdata,
217 params->mesh_id_len,
218 params->mesh_id);
Luis Carlos Coboee385852008-02-23 15:17:11 +0100219
Johannes Berg79010422007-09-18 17:29:21 -0400220 list_add_tail_rcu(&sdata->list, &local->interfaces);
221
Jiri Bencf0706e82007-05-05 11:45:53 -0700222 if (new_dev)
223 *new_dev = ndev;
Jiri Bencf0706e82007-05-05 11:45:53 -0700224
Jiri Bencf0706e82007-05-05 11:45:53 -0700225 return 0;
226
Johannes Berg75636522008-07-09 14:40:35 +0200227 fail:
Jiri Bencf0706e82007-05-05 11:45:53 -0700228 free_netdev(ndev);
229 return ret;
230}
231
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200232void ieee80211_if_remove(struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e82007-05-05 11:45:53 -0700233{
Jiri Bencf0706e82007-05-05 11:45:53 -0700234 ASSERT_RTNL();
Johannes Berg11a843b2007-08-28 17:01:55 -0400235
Johannes Berg75636522008-07-09 14:40:35 +0200236 list_del_rcu(&sdata->list);
237 synchronize_rcu();
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200238 unregister_netdevice(sdata->dev);
Jiri Bencf0706e82007-05-05 11:45:53 -0700239}
240
Johannes Berg75636522008-07-09 14:40:35 +0200241/*
242 * Remove all interfaces, may only be called at hardware unregistration
243 * time because it doesn't do RCU-safe list removals.
244 */
245void ieee80211_remove_interfaces(struct ieee80211_local *local)
Jiri Bencf0706e82007-05-05 11:45:53 -0700246{
Johannes Berg75636522008-07-09 14:40:35 +0200247 struct ieee80211_sub_if_data *sdata, *tmp;
Jiri Bencf0706e82007-05-05 11:45:53 -0700248
249 ASSERT_RTNL();
250
Johannes Berg75636522008-07-09 14:40:35 +0200251 list_for_each_entry_safe(sdata, tmp, &local->interfaces, list) {
252 list_del(&sdata->list);
253 unregister_netdevice(sdata->dev);
Jiri Bencf0706e82007-05-05 11:45:53 -0700254 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700255}