2009-08-07 23:22:35 +08:00
|
|
|
/*
|
|
|
|
* This file contains helper code to handle channel
|
|
|
|
* settings and keeping track of what is possible at
|
|
|
|
* any point in time.
|
|
|
|
*
|
|
|
|
* Copyright 2009 Johannes Berg <johannes@sipsolutions.net>
|
|
|
|
*/
|
|
|
|
|
2011-11-30 23:56:32 +08:00
|
|
|
#include <linux/export.h>
|
2009-08-07 23:22:35 +08:00
|
|
|
#include <net/cfg80211.h>
|
|
|
|
#include "core.h"
|
2012-06-27 22:19:42 +08:00
|
|
|
#include "rdev-ops.h"
|
2009-08-07 23:22:35 +08:00
|
|
|
|
2012-11-09 04:25:48 +08:00
|
|
|
bool cfg80211_reg_can_beacon(struct wiphy *wiphy,
|
|
|
|
struct cfg80211_chan_def *chandef)
|
2010-11-13 08:31:23 +08:00
|
|
|
{
|
|
|
|
struct ieee80211_channel *sec_chan;
|
|
|
|
int diff;
|
|
|
|
|
2012-11-09 04:25:48 +08:00
|
|
|
trace_cfg80211_reg_can_beacon(wiphy, chandef);
|
2012-08-27 17:49:39 +08:00
|
|
|
|
2012-11-09 04:25:48 +08:00
|
|
|
switch (chandef->_type) {
|
2010-11-13 08:31:23 +08:00
|
|
|
case NL80211_CHAN_HT40PLUS:
|
|
|
|
diff = 20;
|
2010-11-18 05:34:37 +08:00
|
|
|
break;
|
2010-11-13 08:31:23 +08:00
|
|
|
case NL80211_CHAN_HT40MINUS:
|
|
|
|
diff = -20;
|
2010-11-18 05:34:37 +08:00
|
|
|
break;
|
2010-11-13 08:31:23 +08:00
|
|
|
default:
|
2012-08-27 17:49:39 +08:00
|
|
|
trace_cfg80211_return_bool(true);
|
2012-05-17 05:50:17 +08:00
|
|
|
return true;
|
2010-11-13 08:31:23 +08:00
|
|
|
}
|
|
|
|
|
2012-11-09 04:25:48 +08:00
|
|
|
sec_chan = ieee80211_get_channel(wiphy,
|
|
|
|
chandef->chan->center_freq + diff);
|
2012-08-27 17:49:39 +08:00
|
|
|
if (!sec_chan) {
|
|
|
|
trace_cfg80211_return_bool(false);
|
2010-11-13 08:31:23 +08:00
|
|
|
return false;
|
2012-08-27 17:49:39 +08:00
|
|
|
}
|
2010-11-13 08:31:23 +08:00
|
|
|
|
|
|
|
/* we'll need a DFS capability later */
|
|
|
|
if (sec_chan->flags & (IEEE80211_CHAN_DISABLED |
|
|
|
|
IEEE80211_CHAN_PASSIVE_SCAN |
|
|
|
|
IEEE80211_CHAN_NO_IBSS |
|
2012-08-27 17:49:39 +08:00
|
|
|
IEEE80211_CHAN_RADAR)) {
|
|
|
|
trace_cfg80211_return_bool(false);
|
2010-11-13 08:31:23 +08:00
|
|
|
return false;
|
2012-08-27 17:49:39 +08:00
|
|
|
}
|
|
|
|
trace_cfg80211_return_bool(true);
|
2010-11-13 08:31:23 +08:00
|
|
|
return true;
|
|
|
|
}
|
2012-11-09 04:25:48 +08:00
|
|
|
EXPORT_SYMBOL(cfg80211_reg_can_beacon);
|
2010-11-13 08:31:23 +08:00
|
|
|
|
2012-06-06 14:18:22 +08:00
|
|
|
int cfg80211_set_monitor_channel(struct cfg80211_registered_device *rdev,
|
2012-11-09 04:25:48 +08:00
|
|
|
struct cfg80211_chan_def *chandef)
|
2009-12-23 20:15:41 +08:00
|
|
|
{
|
2012-06-06 14:18:22 +08:00
|
|
|
if (!rdev->ops->set_monitor_channel)
|
2009-12-23 20:15:41 +08:00
|
|
|
return -EOPNOTSUPP;
|
2012-06-29 18:47:03 +08:00
|
|
|
if (!cfg80211_has_monitors_only(rdev))
|
|
|
|
return -EBUSY;
|
2009-12-23 20:15:41 +08:00
|
|
|
|
2012-11-09 04:25:48 +08:00
|
|
|
return rdev_set_monitor_channel(rdev, chandef);
|
2009-08-07 23:22:35 +08:00
|
|
|
}
|
2012-06-29 18:47:00 +08:00
|
|
|
|
|
|
|
void
|
2012-07-11 01:39:02 +08:00
|
|
|
cfg80211_get_chan_state(struct wireless_dev *wdev,
|
2012-06-29 18:47:00 +08:00
|
|
|
struct ieee80211_channel **chan,
|
|
|
|
enum cfg80211_chan_mode *chanmode)
|
|
|
|
{
|
|
|
|
*chan = NULL;
|
|
|
|
*chanmode = CHAN_MODE_UNDEFINED;
|
|
|
|
|
|
|
|
ASSERT_WDEV_LOCK(wdev);
|
|
|
|
|
2012-06-16 06:19:54 +08:00
|
|
|
if (wdev->netdev && !netif_running(wdev->netdev))
|
2012-06-29 18:47:00 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
switch (wdev->iftype) {
|
|
|
|
case NL80211_IFTYPE_ADHOC:
|
|
|
|
if (wdev->current_bss) {
|
|
|
|
*chan = wdev->current_bss->pub.channel;
|
|
|
|
*chanmode = wdev->ibss_fixed
|
|
|
|
? CHAN_MODE_SHARED
|
|
|
|
: CHAN_MODE_EXCLUSIVE;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
case NL80211_IFTYPE_STATION:
|
|
|
|
case NL80211_IFTYPE_P2P_CLIENT:
|
|
|
|
if (wdev->current_bss) {
|
|
|
|
*chan = wdev->current_bss->pub.channel;
|
|
|
|
*chanmode = CHAN_MODE_SHARED;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case NL80211_IFTYPE_AP:
|
|
|
|
case NL80211_IFTYPE_P2P_GO:
|
2012-07-12 22:10:02 +08:00
|
|
|
if (wdev->beacon_interval) {
|
|
|
|
*chan = wdev->channel;
|
|
|
|
*chanmode = CHAN_MODE_SHARED;
|
|
|
|
}
|
|
|
|
return;
|
2012-06-29 18:47:00 +08:00
|
|
|
case NL80211_IFTYPE_MESH_POINT:
|
2012-07-12 22:10:02 +08:00
|
|
|
if (wdev->mesh_id_len) {
|
|
|
|
*chan = wdev->channel;
|
|
|
|
*chanmode = CHAN_MODE_SHARED;
|
|
|
|
}
|
2012-06-29 18:47:00 +08:00
|
|
|
return;
|
|
|
|
case NL80211_IFTYPE_MONITOR:
|
|
|
|
case NL80211_IFTYPE_AP_VLAN:
|
|
|
|
case NL80211_IFTYPE_WDS:
|
|
|
|
/* these interface types don't really have a channel */
|
|
|
|
return;
|
2012-06-16 06:19:54 +08:00
|
|
|
case NL80211_IFTYPE_P2P_DEVICE:
|
|
|
|
if (wdev->wiphy->features &
|
|
|
|
NL80211_FEATURE_P2P_DEVICE_NEEDS_CHANNEL)
|
|
|
|
*chanmode = CHAN_MODE_EXCLUSIVE;
|
|
|
|
return;
|
2012-06-29 18:47:00 +08:00
|
|
|
case NL80211_IFTYPE_UNSPECIFIED:
|
|
|
|
case NUM_NL80211_IFTYPES:
|
|
|
|
WARN_ON(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|