2 * Copyright 2004, Instant802 Networks, Inc.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
9 #include <linux/netdevice.h>
10 #include <linux/skbuff.h>
11 #include <linux/module.h>
12 #include <linux/if_arp.h>
13 #include <linux/types.h>
15 #include <net/pkt_sched.h>
17 #include <net/mac80211.h>
18 #include "ieee80211_i.h"
21 /* Default mapping in classifier to work with default
24 const int ieee802_1d_to_ac
[8] = {
35 static int wme_downgrade_ac(struct sk_buff
*skb
)
37 switch (skb
->priority
) {
40 skb
->priority
= 5; /* VO -> VI */
44 skb
->priority
= 3; /* VI -> BE */
48 skb
->priority
= 2; /* BE -> BK */
55 static u16
ieee80211_downgrade_queue(struct ieee80211_sub_if_data
*sdata
,
58 /* in case we are a client verify acm is not set for this ac */
59 while (unlikely(sdata
->wmm_acm
& BIT(skb
->priority
))) {
60 if (wme_downgrade_ac(skb
)) {
62 * This should not really happen. The AP has marked all
63 * lower ACs to require admission control which is not
64 * a reasonable configuration. Allow the frame to be
65 * transmitted using AC_BK as a workaround.
71 /* look up which queue to use for frames with this 1d tag */
72 return ieee802_1d_to_ac
[skb
->priority
];
75 /* Indicate which queue to use for this fully formed 802.11 frame */
76 u16
ieee80211_select_queue_80211(struct ieee80211_sub_if_data
*sdata
,
78 struct ieee80211_hdr
*hdr
)
80 struct ieee80211_local
*local
= sdata
->local
;
83 if (local
->hw
.queues
< IEEE80211_NUM_ACS
)
86 if (!ieee80211_is_data(hdr
->frame_control
)) {
88 return ieee802_1d_to_ac
[skb
->priority
];
90 if (!ieee80211_is_data_qos(hdr
->frame_control
)) {
92 return ieee802_1d_to_ac
[skb
->priority
];
95 p
= ieee80211_get_qos_ctl(hdr
);
96 skb
->priority
= *p
& IEEE80211_QOS_CTL_TAG1D_MASK
;
98 return ieee80211_downgrade_queue(sdata
, skb
);
101 /* Indicate which queue to use. */
102 u16
ieee80211_select_queue(struct ieee80211_sub_if_data
*sdata
,
105 struct ieee80211_local
*local
= sdata
->local
;
106 struct sta_info
*sta
= NULL
;
110 if (local
->hw
.queues
< IEEE80211_NUM_ACS
|| skb
->len
< 6) {
111 skb
->priority
= 0; /* required for correct WPA/11i MIC */
116 switch (sdata
->vif
.type
) {
117 case NL80211_IFTYPE_AP_VLAN
:
118 sta
= rcu_dereference(sdata
->u
.vlan
.sta
);
120 qos
= test_sta_flag(sta
, WLAN_STA_WME
);
123 case NL80211_IFTYPE_AP
:
126 case NL80211_IFTYPE_WDS
:
127 ra
= sdata
->u
.wds
.remote_addr
;
129 #ifdef CONFIG_MAC80211_MESH
130 case NL80211_IFTYPE_MESH_POINT
:
134 case NL80211_IFTYPE_STATION
:
135 ra
= sdata
->u
.mgd
.bssid
;
137 case NL80211_IFTYPE_ADHOC
:
144 if (!sta
&& ra
&& !is_multicast_ether_addr(ra
)) {
145 sta
= sta_info_get(sdata
, ra
);
147 qos
= test_sta_flag(sta
, WLAN_STA_WME
);
152 skb
->priority
= 0; /* required for correct WPA/11i MIC */
153 return IEEE80211_AC_BE
;
156 /* use the data classifier to determine what 802.1d tag the
158 skb
->priority
= cfg80211_classify8021d(skb
);
160 return ieee80211_downgrade_queue(sdata
, skb
);
164 * ieee80211_set_qos_hdr - Fill in the QoS header if there is one.
166 * @sdata: local subif
167 * @skb: packet to be updated
169 void ieee80211_set_qos_hdr(struct ieee80211_sub_if_data
*sdata
,
172 struct ieee80211_hdr
*hdr
= (void *)skb
->data
;
173 struct ieee80211_tx_info
*info
= IEEE80211_SKB_CB(skb
);
177 if (!ieee80211_is_data_qos(hdr
->frame_control
))
180 p
= ieee80211_get_qos_ctl(hdr
);
181 tid
= skb
->priority
& IEEE80211_QOS_CTL_TAG1D_MASK
;
183 /* preserve EOSP bit */
184 ack_policy
= *p
& IEEE80211_QOS_CTL_EOSP
;
186 if (is_multicast_ether_addr(hdr
->addr1
) ||
187 sdata
->noack_map
& BIT(tid
)) {
188 ack_policy
|= IEEE80211_QOS_CTL_ACK_POLICY_NOACK
;
189 info
->flags
|= IEEE80211_TX_CTL_NO_ACK
;
192 /* qos header is 2 bytes */
193 *p
++ = ack_policy
| tid
;
194 if (ieee80211_vif_is_mesh(&sdata
->vif
)) {
195 /* preserve RSPI and Mesh PS Level bit */
196 *p
&= ((IEEE80211_QOS_CTL_RSPI
|
197 IEEE80211_QOS_CTL_MESH_PS_LEVEL
) >> 8);
199 /* Nulls don't have a mesh header (frame body) */
200 if (!ieee80211_is_qos_nullfunc(hdr
->frame_control
))
201 *p
|= (IEEE80211_QOS_CTL_MESH_CONTROL_PRESENT
>> 8);