[NL80211]: add netlink interface to cfg80211
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / net / mac80211 / ieee80211_cfg.c
blobd6fc55cc8ad4778d1c55681d5d4f8440eb46fc90
1 /*
2 * mac80211 configuration hooks for cfg80211
4 * Copyright 2006 Johannes Berg <johannes@sipsolutions.net>
6 * This file is GPLv2 as found in COPYING.
7 */
9 #include <linux/nl80211.h>
10 #include <linux/rtnetlink.h>
11 #include <net/net_namespace.h>
12 #include <net/cfg80211.h>
13 #include "ieee80211_i.h"
14 #include "ieee80211_cfg.h"
16 static int ieee80211_add_iface(struct wiphy *wiphy, char *name,
17 enum nl80211_iftype type)
19 struct ieee80211_local *local = wiphy_priv(wiphy);
20 int itype;
22 if (unlikely(local->reg_state != IEEE80211_DEV_REGISTERED))
23 return -ENODEV;
25 switch (type) {
26 case NL80211_IFTYPE_UNSPECIFIED:
27 itype = IEEE80211_IF_TYPE_STA;
28 break;
29 case NL80211_IFTYPE_ADHOC:
30 itype = IEEE80211_IF_TYPE_IBSS;
31 break;
32 case NL80211_IFTYPE_STATION:
33 itype = IEEE80211_IF_TYPE_STA;
34 break;
35 case NL80211_IFTYPE_MONITOR:
36 itype = IEEE80211_IF_TYPE_MNTR;
37 break;
38 default:
39 return -EINVAL;
42 return ieee80211_if_add(local->mdev, name, NULL, itype);
45 static int ieee80211_del_iface(struct wiphy *wiphy, int ifindex)
47 struct ieee80211_local *local = wiphy_priv(wiphy);
48 struct net_device *dev;
49 char *name;
51 if (unlikely(local->reg_state != IEEE80211_DEV_REGISTERED))
52 return -ENODEV;
54 dev = dev_get_by_index(&init_net, ifindex);
55 if (!dev)
56 return 0;
58 name = dev->name;
59 dev_put(dev);
61 return ieee80211_if_remove(local->mdev, name, -1);
64 struct cfg80211_ops mac80211_config_ops = {
65 .add_virtual_intf = ieee80211_add_iface,
66 .del_virtual_intf = ieee80211_del_iface,