2 * mac80211 configuration hooks for cfg80211
4 * Copyright 2006 Johannes Berg <johannes@sipsolutions.net>
6 * This file is GPLv2 as found in COPYING.
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"
16 static enum ieee80211_if_types
17 nl80211_type_to_mac80211_type(enum nl80211_iftype type
)
20 case NL80211_IFTYPE_UNSPECIFIED
:
21 return IEEE80211_IF_TYPE_STA
;
22 case NL80211_IFTYPE_ADHOC
:
23 return IEEE80211_IF_TYPE_IBSS
;
24 case NL80211_IFTYPE_STATION
:
25 return IEEE80211_IF_TYPE_STA
;
26 case NL80211_IFTYPE_MONITOR
:
27 return IEEE80211_IF_TYPE_MNTR
;
29 return IEEE80211_IF_TYPE_INVALID
;
33 static int ieee80211_add_iface(struct wiphy
*wiphy
, char *name
,
34 enum nl80211_iftype type
)
36 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
37 enum ieee80211_if_types itype
;
39 if (unlikely(local
->reg_state
!= IEEE80211_DEV_REGISTERED
))
42 itype
= nl80211_type_to_mac80211_type(type
);
43 if (itype
== IEEE80211_IF_TYPE_INVALID
)
46 return ieee80211_if_add(local
->mdev
, name
, NULL
, itype
);
49 static int ieee80211_del_iface(struct wiphy
*wiphy
, int ifindex
)
51 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
52 struct net_device
*dev
;
55 if (unlikely(local
->reg_state
!= IEEE80211_DEV_REGISTERED
))
58 /* we're under RTNL */
59 dev
= __dev_get_by_index(&init_net
, ifindex
);
65 return ieee80211_if_remove(local
->mdev
, name
, -1);
68 static int ieee80211_change_iface(struct wiphy
*wiphy
, int ifindex
,
69 enum nl80211_iftype type
)
71 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
72 struct net_device
*dev
;
73 enum ieee80211_if_types itype
;
74 struct ieee80211_sub_if_data
*sdata
;
76 if (unlikely(local
->reg_state
!= IEEE80211_DEV_REGISTERED
))
79 /* we're under RTNL */
80 dev
= __dev_get_by_index(&init_net
, ifindex
);
84 if (netif_running(dev
))
87 itype
= nl80211_type_to_mac80211_type(type
);
88 if (itype
== IEEE80211_IF_TYPE_INVALID
)
91 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
93 if (sdata
->type
== IEEE80211_IF_TYPE_VLAN
)
96 ieee80211_if_reinit(dev
);
97 ieee80211_if_set_type(dev
, itype
);
102 struct cfg80211_ops mac80211_config_ops
= {
103 .add_virtual_intf
= ieee80211_add_iface
,
104 .del_virtual_intf
= ieee80211_del_iface
,
105 .change_virtual_intf
= ieee80211_change_iface
,