blob: 62c6733e079232aae264b21129101b6bee1ac59b [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Jiri Bencf0706e82007-05-05 11:45:53 -07002/*
3 * Copyright 2004, Instant802 Networks, Inc.
Johannes Bergd98ad832014-09-03 15:24:57 +03004 * Copyright 2013-2014 Intel Mobile Communications GmbH
Jiri Bencf0706e82007-05-05 11:45:53 -07005 */
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
David S. Miller51cb6db2008-07-15 03:34:57 -070019/* Default mapping in classifier to work with default
Johannes Berge100bb62008-04-30 18:51:21 +020020 * queue setup.
21 */
Johannes Berg4bce22b2010-11-16 11:49:58 -080022const 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};
Jiri Bencf0706e82007-05-05 11:45:53 -070032
David S. Miller51cb6db2008-07-15 03:34:57 -070033static int wme_downgrade_ac(struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -070034{
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
Liad Kaufmanb6da9112014-11-19 13:47:38 +020053/**
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 */
59static 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
Yoni Divinsky00e96de2012-06-20 15:39:13 +030083static u16 ieee80211_downgrade_queue(struct ieee80211_sub_if_data *sdata,
Johannes Berg02219b32014-10-07 10:38:50 +030084 struct sta_info *sta, struct sk_buff *skb)
Johannes Berg4670cf72012-03-27 14:18:38 +020085{
Johannes Berg02219b32014-10-07 10:38:50 +030086 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
87
Johannes Berg4670cf72012-03-27 14:18:38 +020088 /* in case we are a client verify acm is not set for this ac */
Johannes Berg02219b32014-10-07 10:38:50 +030089 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
Johannes Berg4670cf72012-03-27 14:18:38 +020096 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
Liad Kaufmanb6da9112014-11-19 13:47:38 +0200107 /* 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
Johannes Berg4670cf72012-03-27 14:18:38 +0200111 /* look up which queue to use for frames with this 1d tag */
112 return ieee802_1d_to_ac[skb->priority];
113}
114
Thomas Pedersend3c15972011-11-24 17:15:23 -0800115/* Indicate which queue to use for this fully formed 802.11 frame */
Yoni Divinsky00e96de2012-06-20 15:39:13 +0300116u16 ieee80211_select_queue_80211(struct ieee80211_sub_if_data *sdata,
Thomas Pedersend3c15972011-11-24 17:15:23 -0800117 struct sk_buff *skb,
118 struct ieee80211_hdr *hdr)
119{
Yoni Divinsky00e96de2012-06-20 15:39:13 +0300120 struct ieee80211_local *local = sdata->local;
Mathy Vanhoef66d06c82020-11-04 10:18:20 +0400121 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Thomas Pedersend3c15972011-11-24 17:15:23 -0800122 u8 *p;
123
Mathy Vanhoef66d06c82020-11-04 10:18:20 +0400124 if ((info->control.flags & IEEE80211_TX_CTRL_DONT_REORDER) ||
125 local->hw.queues < IEEE80211_NUM_ACS)
Thomas Pedersend3c15972011-11-24 17:15:23 -0800126 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
Johannes Berg02219b32014-10-07 10:38:50 +0300140 return ieee80211_downgrade_queue(sdata, NULL, skb);
Thomas Pedersend3c15972011-11-24 17:15:23 -0800141}
Jiri Bencf0706e82007-05-05 11:45:53 -0700142
Felix Fietkau1974da82019-03-25 08:59:23 +0100143u16 __ieee80211_select_queue(struct ieee80211_sub_if_data *sdata,
144 struct sta_info *sta, struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700145{
Kyeyoon Park32db6b52013-12-16 23:04:43 -0800146 struct mac80211_qos_map *qos_map;
Felix Fietkau1974da82019-03-25 08:59:23 +0100147 bool qos;
Jiri Bencf0706e82007-05-05 11:45:53 -0700148
Felix Fietkau1974da82019-03-25 08:59:23 +0100149 /* all mesh/ocb stations are required to support WME */
150 if (sdata->vif.type == NL80211_IFTYPE_MESH_POINT ||
151 sdata->vif.type == NL80211_IFTYPE_OCB)
Javier Cardonad0ce1852011-11-03 21:11:13 -0700152 qos = true;
Felix Fietkau1974da82019-03-25 08:59:23 +0100153 else if (sta)
154 qos = sta->sta.wme;
155 else
156 qos = false;
Johannes Bergcf0277e2010-01-05 18:00:58 +0100157
Felix Fietkauf6ab25d2021-11-10 22:22:01 +0100158 if (!qos) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700159 skb->priority = 0; /* required for correct WPA/11i MIC */
Felix Fietkau1974da82019-03-25 08:59:23 +0100160 return IEEE80211_AC_BE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700161 }
162
Felix Fietkau1bf4bbb2014-02-11 16:02:47 +0100163 if (skb->protocol == sdata->control_port_protocol) {
164 skb->priority = 7;
Johannes Berg02219b32014-10-07 10:38:50 +0300165 goto downgrade;
Felix Fietkau1bf4bbb2014-02-11 16:02:47 +0100166 }
167
Jiri Bencf0706e82007-05-05 11:45:53 -0700168 /* use the data classifier to determine what 802.1d tag the
Johannes Berg3c3b00c2007-08-28 17:01:55 -0400169 * data frame has */
Kyeyoon Park32db6b52013-12-16 23:04:43 -0800170 qos_map = rcu_dereference(sdata->qos_map);
171 skb->priority = cfg80211_classify8021d(skb, qos_map ?
172 &qos_map->qos_map : NULL);
Jiri Bencf0706e82007-05-05 11:45:53 -0700173
Johannes Berg02219b32014-10-07 10:38:50 +0300174 downgrade:
Felix Fietkau1974da82019-03-25 08:59:23 +0100175 return ieee80211_downgrade_queue(sdata, sta, skb);
176}
177
178
179/* Indicate which queue to use. */
180u16 ieee80211_select_queue(struct ieee80211_sub_if_data *sdata,
181 struct sk_buff *skb)
182{
183 struct ieee80211_local *local = sdata->local;
184 struct sta_info *sta = NULL;
185 const u8 *ra = NULL;
186 u16 ret;
187
188 /* when using iTXQ, we can do this later */
189 if (local->ops->wake_tx_queue)
190 return 0;
191
192 if (local->hw.queues < IEEE80211_NUM_ACS || skb->len < 6) {
193 skb->priority = 0; /* required for correct WPA/11i MIC */
194 return 0;
195 }
196
197 rcu_read_lock();
198 switch (sdata->vif.type) {
199 case NL80211_IFTYPE_AP_VLAN:
200 sta = rcu_dereference(sdata->u.vlan.sta);
201 if (sta)
202 break;
Gustavo A. R. Silvafc0561d2020-07-07 15:45:48 -0500203 fallthrough;
Felix Fietkau1974da82019-03-25 08:59:23 +0100204 case NL80211_IFTYPE_AP:
205 ra = skb->data;
206 break;
Felix Fietkau1974da82019-03-25 08:59:23 +0100207 case NL80211_IFTYPE_STATION:
208 /* might be a TDLS station */
209 sta = sta_info_get(sdata, skb->data);
210 if (sta)
211 break;
212
213 ra = sdata->u.mgd.bssid;
214 break;
215 case NL80211_IFTYPE_ADHOC:
216 ra = skb->data;
217 break;
218 default:
219 break;
220 }
221
222 if (!sta && ra && !is_multicast_ether_addr(ra))
223 sta = sta_info_get(sdata, ra);
224
225 ret = __ieee80211_select_queue(sdata, sta, skb);
226
Johannes Berg02219b32014-10-07 10:38:50 +0300227 rcu_read_unlock();
228 return ret;
Johannes Bergcf0277e2010-01-05 18:00:58 +0100229}
230
Marco Porsch40aefed2012-11-21 18:40:31 -0800231/**
232 * ieee80211_set_qos_hdr - Fill in the QoS header if there is one.
233 *
234 * @sdata: local subif
235 * @skb: packet to be updated
236 */
Javier Cardona2154c81c2011-09-07 17:49:53 -0700237void ieee80211_set_qos_hdr(struct ieee80211_sub_if_data *sdata,
238 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700239{
Johannes Bergcf0277e2010-01-05 18:00:58 +0100240 struct ieee80211_hdr *hdr = (void *)skb->data;
Simon Wunderlichb53be792011-11-18 14:20:44 +0100241 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg32910bb2016-10-12 14:17:13 +0200242 u8 tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
243 u8 flags;
Marco Porsch40aefed2012-11-21 18:40:31 -0800244 u8 *p;
Jiri Bencf0706e82007-05-05 11:45:53 -0700245
Marco Porsch40aefed2012-11-21 18:40:31 -0800246 if (!ieee80211_is_data_qos(hdr->frame_control))
247 return;
Johannes Bergcf0277e2010-01-05 18:00:58 +0100248
Marco Porsch40aefed2012-11-21 18:40:31 -0800249 p = ieee80211_get_qos_ctl(hdr);
Johannes Bergcf0277e2010-01-05 18:00:58 +0100250
Mathy Vanhoef527d6752020-11-04 10:18:21 +0400251 /* don't overwrite the QoS field of injected frames */
252 if (info->flags & IEEE80211_TX_CTL_INJECTED) {
253 /* do take into account Ack policy of injected frames */
254 if (*p & IEEE80211_QOS_CTL_ACK_POLICY_NOACK)
255 info->flags |= IEEE80211_TX_CTL_NO_ACK;
256 return;
257 }
258
Johannes Berg32910bb2016-10-12 14:17:13 +0200259 /* set up the first byte */
260
261 /*
262 * preserve everything but the TID and ACK policy
263 * (which we both write here)
264 */
265 flags = *p & ~(IEEE80211_QOS_CTL_TID_MASK |
266 IEEE80211_QOS_CTL_ACK_POLICY_MASK);
Johannes Berg68629c612011-11-03 09:59:39 +0100267
Marco Porsch40aefed2012-11-21 18:40:31 -0800268 if (is_multicast_ether_addr(hdr->addr1) ||
269 sdata->noack_map & BIT(tid)) {
Johannes Berg32910bb2016-10-12 14:17:13 +0200270 flags |= IEEE80211_QOS_CTL_ACK_POLICY_NOACK;
Marco Porsch40aefed2012-11-21 18:40:31 -0800271 info->flags |= IEEE80211_TX_CTL_NO_ACK;
Jiri Bencf0706e82007-05-05 11:45:53 -0700272 }
Marco Porsch40aefed2012-11-21 18:40:31 -0800273
Johannes Berg32910bb2016-10-12 14:17:13 +0200274 *p = flags | tid;
275
276 /* set up the second byte */
277 p++;
278
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100279 if (ieee80211_vif_is_mesh(&sdata->vif)) {
280 /* preserve RSPI and Mesh PS Level bit */
281 *p &= ((IEEE80211_QOS_CTL_RSPI |
282 IEEE80211_QOS_CTL_MESH_PS_LEVEL) >> 8);
283
284 /* Nulls don't have a mesh header (frame body) */
285 if (!ieee80211_is_qos_nullfunc(hdr->frame_control))
286 *p |= (IEEE80211_QOS_CTL_MESH_CONTROL_PRESENT >> 8);
287 } else {
288 *p = 0;
289 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700290}