2009-10-06 22:31:54 +08:00
|
|
|
/*
|
|
|
|
* Implement cfg80211 ("iw") support.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 M&N Solutions GmbH, 61191 Rosbach, Germany
|
|
|
|
* Holger Schurig <hs4233@mail.mn-solutions.de>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 16:04:11 +08:00
|
|
|
#include <linux/slab.h>
|
2009-10-06 22:31:54 +08:00
|
|
|
#include <net/cfg80211.h>
|
|
|
|
|
|
|
|
#include "cfg.h"
|
|
|
|
#include "cmd.h"
|
|
|
|
|
|
|
|
|
|
|
|
#define CHAN2G(_channel, _freq, _flags) { \
|
|
|
|
.band = IEEE80211_BAND_2GHZ, \
|
|
|
|
.center_freq = (_freq), \
|
|
|
|
.hw_value = (_channel), \
|
|
|
|
.flags = (_flags), \
|
|
|
|
.max_antenna_gain = 0, \
|
|
|
|
.max_power = 30, \
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ieee80211_channel lbs_2ghz_channels[] = {
|
|
|
|
CHAN2G(1, 2412, 0),
|
|
|
|
CHAN2G(2, 2417, 0),
|
|
|
|
CHAN2G(3, 2422, 0),
|
|
|
|
CHAN2G(4, 2427, 0),
|
|
|
|
CHAN2G(5, 2432, 0),
|
|
|
|
CHAN2G(6, 2437, 0),
|
|
|
|
CHAN2G(7, 2442, 0),
|
|
|
|
CHAN2G(8, 2447, 0),
|
|
|
|
CHAN2G(9, 2452, 0),
|
|
|
|
CHAN2G(10, 2457, 0),
|
|
|
|
CHAN2G(11, 2462, 0),
|
|
|
|
CHAN2G(12, 2467, 0),
|
|
|
|
CHAN2G(13, 2472, 0),
|
|
|
|
CHAN2G(14, 2484, 0),
|
|
|
|
};
|
|
|
|
|
|
|
|
#define RATETAB_ENT(_rate, _rateid, _flags) { \
|
|
|
|
.bitrate = (_rate), \
|
|
|
|
.hw_value = (_rateid), \
|
|
|
|
.flags = (_flags), \
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static struct ieee80211_rate lbs_rates[] = {
|
|
|
|
RATETAB_ENT(10, 0x1, 0),
|
|
|
|
RATETAB_ENT(20, 0x2, 0),
|
|
|
|
RATETAB_ENT(55, 0x4, 0),
|
|
|
|
RATETAB_ENT(110, 0x8, 0),
|
|
|
|
RATETAB_ENT(60, 0x10, 0),
|
|
|
|
RATETAB_ENT(90, 0x20, 0),
|
|
|
|
RATETAB_ENT(120, 0x40, 0),
|
|
|
|
RATETAB_ENT(180, 0x80, 0),
|
|
|
|
RATETAB_ENT(240, 0x100, 0),
|
|
|
|
RATETAB_ENT(360, 0x200, 0),
|
|
|
|
RATETAB_ENT(480, 0x400, 0),
|
|
|
|
RATETAB_ENT(540, 0x800, 0),
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct ieee80211_supported_band lbs_band_2ghz = {
|
|
|
|
.channels = lbs_2ghz_channels,
|
|
|
|
.n_channels = ARRAY_SIZE(lbs_2ghz_channels),
|
|
|
|
.bitrates = lbs_rates,
|
|
|
|
.n_bitrates = ARRAY_SIZE(lbs_rates),
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static const u32 cipher_suites[] = {
|
|
|
|
WLAN_CIPHER_SUITE_WEP40,
|
|
|
|
WLAN_CIPHER_SUITE_WEP104,
|
|
|
|
WLAN_CIPHER_SUITE_TKIP,
|
|
|
|
WLAN_CIPHER_SUITE_CCMP,
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static int lbs_cfg_set_channel(struct wiphy *wiphy,
|
cfg80211/mac80211: better channel handling
Currently (all tested with hwsim) you can do stupid
things like setting up an AP on a certain channel,
then adding another virtual interface and making
that associate on another channel -- this will make
the beaconing to move channel but obviously without
the necessary IEs data update.
In order to improve this situation, first make the
configuration APIs (cfg80211 and nl80211) aware of
multi-channel operation -- we'll eventually need
that in the future anyway. There's one userland API
change and one API addition. The API change is that
now SET_WIPHY must be called with virtual interface
index rather than only wiphy index in order to take
effect for that interface -- luckily all current
users (hostapd) do that. For monitor interfaces, the
old setting is preserved, but monitors are always
slaved to other devices anyway so no guarantees.
The second userland API change is the introduction
of a per virtual interface SET_CHANNEL command, that
hostapd should use going forward to make it easier
to understand what's going on (it can automatically
detect a kernel with this command).
Other than mac80211, no existing cfg80211 drivers
are affected by this change because they only allow
a single virtual interface.
mac80211, however, now needs to be aware that the
channel settings are per interface now, and needs
to disallow (for now) real multi-channel operation,
which is another important part of this patch.
One of the immediate benefits is that you can now
start hostapd to operate on a hardware that already
has a connection on another virtual interface, as
long as you specify the same channel.
Note that two things are left unhandled (this is an
improvement -- not a complete fix):
* different HT/no-HT modes
currently you could start an HT AP and then
connect to a non-HT network on the same channel
which would configure the hardware for no HT;
that can be fixed fairly easily
* CSA
An AP we're connected to on a virtual interface
might indicate switching channels, and in that
case we would follow it, regardless of how many
other interfaces are operating; this requires
more effort to fix but is pretty rare after all
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
2010-05-05 21:25:02 +08:00
|
|
|
struct net_device *netdev,
|
2009-10-06 22:31:54 +08:00
|
|
|
struct ieee80211_channel *chan,
|
|
|
|
enum nl80211_channel_type channel_type)
|
|
|
|
{
|
|
|
|
struct lbs_private *priv = wiphy_priv(wiphy);
|
|
|
|
int ret = -ENOTSUPP;
|
|
|
|
|
|
|
|
lbs_deb_enter_args(LBS_DEB_CFG80211, "freq %d, type %d", chan->center_freq, channel_type);
|
|
|
|
|
|
|
|
if (channel_type != NL80211_CHAN_NO_HT)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
ret = lbs_set_channel(priv, chan->hw_value);
|
|
|
|
|
|
|
|
out:
|
|
|
|
lbs_deb_leave_args(LBS_DEB_CFG80211, "ret %d", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static struct cfg80211_ops lbs_cfg80211_ops = {
|
|
|
|
.set_channel = lbs_cfg_set_channel,
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* At this time lbs_private *priv doesn't even exist, so we just allocate
|
|
|
|
* memory and don't initialize the wiphy further. This is postponed until we
|
|
|
|
* can talk to the firmware and happens at registration time in
|
|
|
|
* lbs_cfg_wiphy_register().
|
|
|
|
*/
|
|
|
|
struct wireless_dev *lbs_cfg_alloc(struct device *dev)
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
struct wireless_dev *wdev;
|
|
|
|
|
|
|
|
lbs_deb_enter(LBS_DEB_CFG80211);
|
|
|
|
|
|
|
|
wdev = kzalloc(sizeof(struct wireless_dev), GFP_KERNEL);
|
|
|
|
if (!wdev) {
|
|
|
|
dev_err(dev, "cannot allocate wireless device\n");
|
|
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
}
|
|
|
|
|
|
|
|
wdev->wiphy = wiphy_new(&lbs_cfg80211_ops, sizeof(struct lbs_private));
|
|
|
|
if (!wdev->wiphy) {
|
|
|
|
dev_err(dev, "cannot allocate wiphy\n");
|
|
|
|
ret = -ENOMEM;
|
|
|
|
goto err_wiphy_new;
|
|
|
|
}
|
|
|
|
|
|
|
|
lbs_deb_leave(LBS_DEB_CFG80211);
|
|
|
|
return wdev;
|
|
|
|
|
|
|
|
err_wiphy_new:
|
|
|
|
kfree(wdev);
|
|
|
|
lbs_deb_leave_args(LBS_DEB_CFG80211, "ret %d", ret);
|
|
|
|
return ERR_PTR(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This function get's called after lbs_setup_firmware() determined the
|
|
|
|
* firmware capabities. So we can setup the wiphy according to our
|
|
|
|
* hardware/firmware.
|
|
|
|
*/
|
|
|
|
int lbs_cfg_register(struct lbs_private *priv)
|
|
|
|
{
|
|
|
|
struct wireless_dev *wdev = priv->wdev;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
lbs_deb_enter(LBS_DEB_CFG80211);
|
|
|
|
|
|
|
|
wdev->wiphy->max_scan_ssids = 1;
|
|
|
|
wdev->wiphy->signal_type = CFG80211_SIGNAL_TYPE_MBM;
|
|
|
|
|
|
|
|
/* TODO: BIT(NL80211_IFTYPE_ADHOC); */
|
|
|
|
wdev->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION);
|
|
|
|
|
|
|
|
/* TODO: honor priv->regioncode */
|
|
|
|
wdev->wiphy->bands[IEEE80211_BAND_2GHZ] = &lbs_band_2ghz;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We could check priv->fwcapinfo && FW_CAPINFO_WPA, but I have
|
|
|
|
* never seen a firmware without WPA
|
|
|
|
*/
|
|
|
|
wdev->wiphy->cipher_suites = cipher_suites;
|
|
|
|
wdev->wiphy->n_cipher_suites = ARRAY_SIZE(cipher_suites);
|
|
|
|
|
|
|
|
ret = wiphy_register(wdev->wiphy);
|
|
|
|
if (ret < 0)
|
|
|
|
lbs_pr_err("cannot register wiphy device\n");
|
|
|
|
|
2010-03-29 23:14:18 +08:00
|
|
|
priv->wiphy_registered = true;
|
|
|
|
|
2009-10-06 22:31:54 +08:00
|
|
|
ret = register_netdev(priv->dev);
|
|
|
|
if (ret)
|
|
|
|
lbs_pr_err("cannot register network device\n");
|
|
|
|
|
|
|
|
lbs_deb_leave_args(LBS_DEB_CFG80211, "ret %d", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void lbs_cfg_free(struct lbs_private *priv)
|
|
|
|
{
|
|
|
|
struct wireless_dev *wdev = priv->wdev;
|
|
|
|
|
|
|
|
lbs_deb_enter(LBS_DEB_CFG80211);
|
|
|
|
|
|
|
|
if (!wdev)
|
|
|
|
return;
|
|
|
|
|
2010-03-29 23:14:18 +08:00
|
|
|
if (priv->wiphy_registered)
|
2009-10-06 22:31:54 +08:00
|
|
|
wiphy_unregister(wdev->wiphy);
|
2010-03-29 23:14:18 +08:00
|
|
|
|
|
|
|
if (wdev->wiphy)
|
2009-10-06 22:31:54 +08:00
|
|
|
wiphy_free(wdev->wiphy);
|
2010-03-29 23:14:18 +08:00
|
|
|
|
2009-10-06 22:31:54 +08:00
|
|
|
kfree(wdev);
|
|
|
|
}
|