]>
Commit | Line | Data |
---|---|---|
d2912cb1 | 1 | // SPDX-License-Identifier: GPL-2.0-only |
f0706e82 JB |
2 | /* |
3 | * Copyright 2004, Instant802 Networks, Inc. | |
d98ad83e | 4 | * Copyright 2013-2014 Intel Mobile Communications GmbH |
f0706e82 JB |
5 | */ |
6 | ||
7 | #include <linux/netdevice.h> | |
8 | #include <linux/skbuff.h> | |
9 | #include <linux/module.h> | |
10 | #include <linux/if_arp.h> | |
11 | #include <linux/types.h> | |
12 | #include <net/ip.h> | |
13 | #include <net/pkt_sched.h> | |
14 | ||
15 | #include <net/mac80211.h> | |
16 | #include "ieee80211_i.h" | |
17 | #include "wme.h" | |
18 | ||
51cb6db0 | 19 | /* Default mapping in classifier to work with default |
e100bb64 JB |
20 | * queue setup. |
21 | */ | |
4bce22b9 JB |
22 | const int ieee802_1d_to_ac[8] = { |
23 | IEEE80211_AC_BE, | |
24 | IEEE80211_AC_BK, | |
25 | IEEE80211_AC_BK, | |
26 | IEEE80211_AC_BE, | |
27 | IEEE80211_AC_VI, | |
28 | IEEE80211_AC_VI, | |
29 | IEEE80211_AC_VO, | |
30 | IEEE80211_AC_VO | |
31 | }; | |
f0706e82 | 32 | |
51cb6db0 | 33 | static int wme_downgrade_ac(struct sk_buff *skb) |
f0706e82 JB |
34 | { |
35 | switch (skb->priority) { | |
36 | case 6: | |
37 | case 7: | |
38 | skb->priority = 5; /* VO -> VI */ | |
39 | return 0; | |
40 | case 4: | |
41 | case 5: | |
42 | skb->priority = 3; /* VI -> BE */ | |
43 | return 0; | |
44 | case 0: | |
45 | case 3: | |
46 | skb->priority = 2; /* BE -> BK */ | |
47 | return 0; | |
48 | default: | |
49 | return -1; | |
50 | } | |
51 | } | |
52 | ||
b6da911b LK |
53 | /** |
54 | * ieee80211_fix_reserved_tid - return the TID to use if this one is reserved | |
55 | * @tid: the assumed-reserved TID | |
56 | * | |
57 | * Returns: the alternative TID to use, or 0 on error | |
58 | */ | |
59 | static inline u8 ieee80211_fix_reserved_tid(u8 tid) | |
60 | { | |
61 | switch (tid) { | |
62 | case 0: | |
63 | return 3; | |
64 | case 1: | |
65 | return 2; | |
66 | case 2: | |
67 | return 1; | |
68 | case 3: | |
69 | return 0; | |
70 | case 4: | |
71 | return 5; | |
72 | case 5: | |
73 | return 4; | |
74 | case 6: | |
75 | return 7; | |
76 | case 7: | |
77 | return 6; | |
78 | } | |
79 | ||
80 | return 0; | |
81 | } | |
82 | ||
00e96dec | 83 | static u16 ieee80211_downgrade_queue(struct ieee80211_sub_if_data *sdata, |
02219b3a | 84 | struct sta_info *sta, struct sk_buff *skb) |
4670cf7a | 85 | { |
02219b3a JB |
86 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
87 | ||
4670cf7a | 88 | /* in case we are a client verify acm is not set for this ac */ |
02219b3a JB |
89 | while (sdata->wmm_acm & BIT(skb->priority)) { |
90 | int ac = ieee802_1d_to_ac[skb->priority]; | |
91 | ||
92 | if (ifmgd->tx_tspec[ac].admitted_time && | |
93 | skb->priority == ifmgd->tx_tspec[ac].up) | |
94 | return ac; | |
95 | ||
4670cf7a JB |
96 | if (wme_downgrade_ac(skb)) { |
97 | /* | |
98 | * This should not really happen. The AP has marked all | |
99 | * lower ACs to require admission control which is not | |
100 | * a reasonable configuration. Allow the frame to be | |
101 | * transmitted using AC_BK as a workaround. | |
102 | */ | |
103 | break; | |
104 | } | |
105 | } | |
106 | ||
b6da911b LK |
107 | /* Check to see if this is a reserved TID */ |
108 | if (sta && sta->reserved_tid == skb->priority) | |
109 | skb->priority = ieee80211_fix_reserved_tid(skb->priority); | |
110 | ||
4670cf7a JB |
111 | /* look up which queue to use for frames with this 1d tag */ |
112 | return ieee802_1d_to_ac[skb->priority]; | |
113 | } | |
114 | ||
d3c1597b | 115 | /* Indicate which queue to use for this fully formed 802.11 frame */ |
00e96dec | 116 | u16 ieee80211_select_queue_80211(struct ieee80211_sub_if_data *sdata, |
d3c1597b TP |
117 | struct sk_buff *skb, |
118 | struct ieee80211_hdr *hdr) | |
119 | { | |
00e96dec | 120 | struct ieee80211_local *local = sdata->local; |
66d06c84 | 121 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
d3c1597b TP |
122 | u8 *p; |
123 | ||
66d06c84 MV |
124 | if ((info->control.flags & IEEE80211_TX_CTRL_DONT_REORDER) || |
125 | local->hw.queues < IEEE80211_NUM_ACS) | |
d3c1597b TP |
126 | return 0; |
127 | ||
128 | if (!ieee80211_is_data(hdr->frame_control)) { | |
129 | skb->priority = 7; | |
130 | return ieee802_1d_to_ac[skb->priority]; | |
131 | } | |
132 | if (!ieee80211_is_data_qos(hdr->frame_control)) { | |
133 | skb->priority = 0; | |
134 | return ieee802_1d_to_ac[skb->priority]; | |
135 | } | |
136 | ||
137 | p = ieee80211_get_qos_ctl(hdr); | |
138 | skb->priority = *p & IEEE80211_QOS_CTL_TAG1D_MASK; | |
139 | ||
02219b3a | 140 | return ieee80211_downgrade_queue(sdata, NULL, skb); |
d3c1597b | 141 | } |
f0706e82 | 142 | |
1974da8b FF |
143 | u16 __ieee80211_select_queue(struct ieee80211_sub_if_data *sdata, |
144 | struct sta_info *sta, struct sk_buff *skb) | |
145 | { | |
66d06c84 | 146 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
1974da8b FF |
147 | struct mac80211_qos_map *qos_map; |
148 | bool qos; | |
149 | ||
150 | /* all mesh/ocb stations are required to support WME */ | |
151 | if (sdata->vif.type == NL80211_IFTYPE_MESH_POINT || | |
152 | sdata->vif.type == NL80211_IFTYPE_OCB) | |
153 | qos = true; | |
154 | else if (sta) | |
155 | qos = sta->sta.wme; | |
156 | else | |
157 | qos = false; | |
158 | ||
66d06c84 | 159 | if (!qos || (info->control.flags & IEEE80211_TX_CTRL_DONT_REORDER)) { |
1974da8b FF |
160 | skb->priority = 0; /* required for correct WPA/11i MIC */ |
161 | return IEEE80211_AC_BE; | |
162 | } | |
163 | ||
164 | if (skb->protocol == sdata->control_port_protocol) { | |
165 | skb->priority = 7; | |
166 | goto downgrade; | |
167 | } | |
168 | ||
169 | /* use the data classifier to determine what 802.1d tag the | |
170 | * data frame has */ | |
171 | qos_map = rcu_dereference(sdata->qos_map); | |
172 | skb->priority = cfg80211_classify8021d(skb, qos_map ? | |
173 | &qos_map->qos_map : NULL); | |
174 | ||
175 | downgrade: | |
176 | return ieee80211_downgrade_queue(sdata, sta, skb); | |
177 | } | |
178 | ||
179 | ||
cf0277e7 JB |
180 | /* Indicate which queue to use. */ |
181 | u16 ieee80211_select_queue(struct ieee80211_sub_if_data *sdata, | |
182 | struct sk_buff *skb) | |
f0706e82 | 183 | { |
cf0277e7 JB |
184 | struct ieee80211_local *local = sdata->local; |
185 | struct sta_info *sta = NULL; | |
cf0277e7 | 186 | const u8 *ra = NULL; |
02219b3a | 187 | u16 ret; |
f0706e82 | 188 | |
1974da8b FF |
189 | /* when using iTXQ, we can do this later */ |
190 | if (local->ops->wake_tx_queue) | |
191 | return 0; | |
192 | ||
32c5057b | 193 | if (local->hw.queues < IEEE80211_NUM_ACS || skb->len < 6) { |
cf0277e7 | 194 | skb->priority = 0; /* required for correct WPA/11i MIC */ |
ded81f6b | 195 | return 0; |
cf0277e7 JB |
196 | } |
197 | ||
198 | rcu_read_lock(); | |
199 | switch (sdata->vif.type) { | |
200 | case NL80211_IFTYPE_AP_VLAN: | |
cf0277e7 | 201 | sta = rcu_dereference(sdata->u.vlan.sta); |
1974da8b | 202 | if (sta) |
cf0277e7 | 203 | break; |
fc0561dc | 204 | fallthrough; |
cf0277e7 JB |
205 | case NL80211_IFTYPE_AP: |
206 | ra = skb->data; | |
207 | break; | |
cf0277e7 | 208 | case NL80211_IFTYPE_STATION: |
b6da911b LK |
209 | /* might be a TDLS station */ |
210 | sta = sta_info_get(sdata, skb->data); | |
211 | if (sta) | |
1974da8b | 212 | break; |
b6da911b | 213 | |
cf0277e7 JB |
214 | ra = sdata->u.mgd.bssid; |
215 | break; | |
216 | case NL80211_IFTYPE_ADHOC: | |
217 | ra = skb->data; | |
218 | break; | |
219 | default: | |
220 | break; | |
f0706e82 JB |
221 | } |
222 | ||
1974da8b | 223 | if (!sta && ra && !is_multicast_ether_addr(ra)) |
cf0277e7 | 224 | sta = sta_info_get(sdata, ra); |
cf0277e7 | 225 | |
1974da8b | 226 | ret = __ieee80211_select_queue(sdata, sta, skb); |
f0706e82 | 227 | |
02219b3a JB |
228 | rcu_read_unlock(); |
229 | return ret; | |
cf0277e7 JB |
230 | } |
231 | ||
40aefedc MP |
232 | /** |
233 | * ieee80211_set_qos_hdr - Fill in the QoS header if there is one. | |
234 | * | |
235 | * @sdata: local subif | |
236 | * @skb: packet to be updated | |
237 | */ | |
2154c81c JC |
238 | void ieee80211_set_qos_hdr(struct ieee80211_sub_if_data *sdata, |
239 | struct sk_buff *skb) | |
f0706e82 | 240 | { |
cf0277e7 | 241 | struct ieee80211_hdr *hdr = (void *)skb->data; |
b53be792 | 242 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
32910bb9 JB |
243 | u8 tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK; |
244 | u8 flags; | |
40aefedc | 245 | u8 *p; |
cf0277e7 | 246 | |
40aefedc MP |
247 | if (!ieee80211_is_data_qos(hdr->frame_control)) |
248 | return; | |
cf0277e7 | 249 | |
40aefedc | 250 | p = ieee80211_get_qos_ctl(hdr); |
68629c61 | 251 | |
527d6759 MV |
252 | /* don't overwrite the QoS field of injected frames */ |
253 | if (info->flags & IEEE80211_TX_CTL_INJECTED) { | |
254 | /* do take into account Ack policy of injected frames */ | |
255 | if (*p & IEEE80211_QOS_CTL_ACK_POLICY_NOACK) | |
256 | info->flags |= IEEE80211_TX_CTL_NO_ACK; | |
257 | return; | |
258 | } | |
259 | ||
32910bb9 JB |
260 | /* set up the first byte */ |
261 | ||
262 | /* | |
263 | * preserve everything but the TID and ACK policy | |
264 | * (which we both write here) | |
265 | */ | |
266 | flags = *p & ~(IEEE80211_QOS_CTL_TID_MASK | | |
267 | IEEE80211_QOS_CTL_ACK_POLICY_MASK); | |
b53be792 | 268 | |
40aefedc MP |
269 | if (is_multicast_ether_addr(hdr->addr1) || |
270 | sdata->noack_map & BIT(tid)) { | |
32910bb9 | 271 | flags |= IEEE80211_QOS_CTL_ACK_POLICY_NOACK; |
40aefedc | 272 | info->flags |= IEEE80211_TX_CTL_NO_ACK; |
f0706e82 | 273 | } |
40aefedc | 274 | |
32910bb9 JB |
275 | *p = flags | tid; |
276 | ||
277 | /* set up the second byte */ | |
278 | p++; | |
279 | ||
3f52b7e3 MP |
280 | if (ieee80211_vif_is_mesh(&sdata->vif)) { |
281 | /* preserve RSPI and Mesh PS Level bit */ | |
282 | *p &= ((IEEE80211_QOS_CTL_RSPI | | |
283 | IEEE80211_QOS_CTL_MESH_PS_LEVEL) >> 8); | |
284 | ||
285 | /* Nulls don't have a mesh header (frame body) */ | |
286 | if (!ieee80211_is_qos_nullfunc(hdr->frame_control)) | |
287 | *p |= (IEEE80211_QOS_CTL_MESH_CONTROL_PRESENT >> 8); | |
288 | } else { | |
289 | *p = 0; | |
290 | } | |
f0706e82 | 291 | } |