blob: 9eb0aee9105b398b442380315ec758a430a103b1 [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
2 * Copyright 2004, Instant802 Networks, Inc.
Johannes Bergd98ad832014-09-03 15:24:57 +03003 * Copyright 2013-2014 Intel Mobile Communications GmbH
Jiri Bencf0706e82007-05-05 11:45:53 -07004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
9
10#include <linux/netdevice.h>
11#include <linux/skbuff.h>
12#include <linux/module.h>
13#include <linux/if_arp.h>
14#include <linux/types.h>
15#include <net/ip.h>
16#include <net/pkt_sched.h>
17
18#include <net/mac80211.h>
19#include "ieee80211_i.h"
20#include "wme.h"
21
David S. Miller51cb6db2008-07-15 03:34:57 -070022/* Default mapping in classifier to work with default
Johannes Berge100bb62008-04-30 18:51:21 +020023 * queue setup.
24 */
Johannes Berg4bce22b2010-11-16 11:49:58 -080025const int ieee802_1d_to_ac[8] = {
26 IEEE80211_AC_BE,
27 IEEE80211_AC_BK,
28 IEEE80211_AC_BK,
29 IEEE80211_AC_BE,
30 IEEE80211_AC_VI,
31 IEEE80211_AC_VI,
32 IEEE80211_AC_VO,
33 IEEE80211_AC_VO
34};
Jiri Bencf0706e82007-05-05 11:45:53 -070035
David S. Miller51cb6db2008-07-15 03:34:57 -070036static int wme_downgrade_ac(struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -070037{
38 switch (skb->priority) {
39 case 6:
40 case 7:
41 skb->priority = 5; /* VO -> VI */
42 return 0;
43 case 4:
44 case 5:
45 skb->priority = 3; /* VI -> BE */
46 return 0;
47 case 0:
48 case 3:
49 skb->priority = 2; /* BE -> BK */
50 return 0;
51 default:
52 return -1;
53 }
54}
55
Liad Kaufmanb6da9112014-11-19 13:47:38 +020056/**
57 * ieee80211_fix_reserved_tid - return the TID to use if this one is reserved
58 * @tid: the assumed-reserved TID
59 *
60 * Returns: the alternative TID to use, or 0 on error
61 */
62static inline u8 ieee80211_fix_reserved_tid(u8 tid)
63{
64 switch (tid) {
65 case 0:
66 return 3;
67 case 1:
68 return 2;
69 case 2:
70 return 1;
71 case 3:
72 return 0;
73 case 4:
74 return 5;
75 case 5:
76 return 4;
77 case 6:
78 return 7;
79 case 7:
80 return 6;
81 }
82
83 return 0;
84}
85
Yoni Divinsky00e96de2012-06-20 15:39:13 +030086static u16 ieee80211_downgrade_queue(struct ieee80211_sub_if_data *sdata,
Johannes Berg02219b32014-10-07 10:38:50 +030087 struct sta_info *sta, struct sk_buff *skb)
Johannes Berg4670cf72012-03-27 14:18:38 +020088{
Johannes Berg02219b32014-10-07 10:38:50 +030089 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
90
Johannes Berg4670cf72012-03-27 14:18:38 +020091 /* in case we are a client verify acm is not set for this ac */
Johannes Berg02219b32014-10-07 10:38:50 +030092 while (sdata->wmm_acm & BIT(skb->priority)) {
93 int ac = ieee802_1d_to_ac[skb->priority];
94
95 if (ifmgd->tx_tspec[ac].admitted_time &&
96 skb->priority == ifmgd->tx_tspec[ac].up)
97 return ac;
98
Johannes Berg4670cf72012-03-27 14:18:38 +020099 if (wme_downgrade_ac(skb)) {
100 /*
101 * This should not really happen. The AP has marked all
102 * lower ACs to require admission control which is not
103 * a reasonable configuration. Allow the frame to be
104 * transmitted using AC_BK as a workaround.
105 */
106 break;
107 }
108 }
109
Liad Kaufmanb6da9112014-11-19 13:47:38 +0200110 /* Check to see if this is a reserved TID */
111 if (sta && sta->reserved_tid == skb->priority)
112 skb->priority = ieee80211_fix_reserved_tid(skb->priority);
113
Johannes Berg4670cf72012-03-27 14:18:38 +0200114 /* look up which queue to use for frames with this 1d tag */
115 return ieee802_1d_to_ac[skb->priority];
116}
117
Thomas Pedersend3c15972011-11-24 17:15:23 -0800118/* Indicate which queue to use for this fully formed 802.11 frame */
Yoni Divinsky00e96de2012-06-20 15:39:13 +0300119u16 ieee80211_select_queue_80211(struct ieee80211_sub_if_data *sdata,
Thomas Pedersend3c15972011-11-24 17:15:23 -0800120 struct sk_buff *skb,
121 struct ieee80211_hdr *hdr)
122{
Yoni Divinsky00e96de2012-06-20 15:39:13 +0300123 struct ieee80211_local *local = sdata->local;
Thomas Pedersend3c15972011-11-24 17:15:23 -0800124 u8 *p;
125
Johannes Berg32c50572012-03-28 11:04:29 +0200126 if (local->hw.queues < IEEE80211_NUM_ACS)
Thomas Pedersend3c15972011-11-24 17:15:23 -0800127 return 0;
128
129 if (!ieee80211_is_data(hdr->frame_control)) {
130 skb->priority = 7;
131 return ieee802_1d_to_ac[skb->priority];
132 }
133 if (!ieee80211_is_data_qos(hdr->frame_control)) {
134 skb->priority = 0;
135 return ieee802_1d_to_ac[skb->priority];
136 }
137
138 p = ieee80211_get_qos_ctl(hdr);
139 skb->priority = *p & IEEE80211_QOS_CTL_TAG1D_MASK;
140
Johannes Berg02219b32014-10-07 10:38:50 +0300141 return ieee80211_downgrade_queue(sdata, NULL, skb);
Thomas Pedersend3c15972011-11-24 17:15:23 -0800142}
Jiri Bencf0706e82007-05-05 11:45:53 -0700143
Johannes Bergcf0277e2010-01-05 18:00:58 +0100144/* Indicate which queue to use. */
145u16 ieee80211_select_queue(struct ieee80211_sub_if_data *sdata,
146 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700147{
Johannes Bergcf0277e2010-01-05 18:00:58 +0100148 struct ieee80211_local *local = sdata->local;
149 struct sta_info *sta = NULL;
Johannes Bergcf0277e2010-01-05 18:00:58 +0100150 const u8 *ra = NULL;
151 bool qos = false;
Kyeyoon Park32db6b52013-12-16 23:04:43 -0800152 struct mac80211_qos_map *qos_map;
Johannes Berg02219b32014-10-07 10:38:50 +0300153 u16 ret;
Jiri Bencf0706e82007-05-05 11:45:53 -0700154
Johannes Berg32c50572012-03-28 11:04:29 +0200155 if (local->hw.queues < IEEE80211_NUM_ACS || skb->len < 6) {
Johannes Bergcf0277e2010-01-05 18:00:58 +0100156 skb->priority = 0; /* required for correct WPA/11i MIC */
Johannes Bergded81f62012-03-28 11:04:26 +0200157 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -0700158 }
159
Johannes Bergcf0277e2010-01-05 18:00:58 +0100160 rcu_read_lock();
161 switch (sdata->vif.type) {
162 case NL80211_IFTYPE_AP_VLAN:
Johannes Bergcf0277e2010-01-05 18:00:58 +0100163 sta = rcu_dereference(sdata->u.vlan.sta);
Johannes Berg17212842010-12-22 10:15:30 +0100164 if (sta) {
Johannes Berga74a8c82014-07-22 14:50:47 +0200165 qos = sta->sta.wme;
Johannes Bergcf0277e2010-01-05 18:00:58 +0100166 break;
Johannes Berg17212842010-12-22 10:15:30 +0100167 }
Johannes Bergcf0277e2010-01-05 18:00:58 +0100168 case NL80211_IFTYPE_AP:
169 ra = skb->data;
170 break;
171 case NL80211_IFTYPE_WDS:
172 ra = sdata->u.wds.remote_addr;
173 break;
174#ifdef CONFIG_MAC80211_MESH
175 case NL80211_IFTYPE_MESH_POINT:
Javier Cardonad0ce1852011-11-03 21:11:13 -0700176 qos = true;
Johannes Bergcf0277e2010-01-05 18:00:58 +0100177 break;
178#endif
179 case NL80211_IFTYPE_STATION:
Liad Kaufmanb6da9112014-11-19 13:47:38 +0200180 /* might be a TDLS station */
181 sta = sta_info_get(sdata, skb->data);
182 if (sta)
183 qos = sta->sta.wme;
184
Johannes Bergcf0277e2010-01-05 18:00:58 +0100185 ra = sdata->u.mgd.bssid;
186 break;
187 case NL80211_IFTYPE_ADHOC:
188 ra = skb->data;
189 break;
Rostislav Lisovy239281f2014-11-03 10:33:19 +0100190 case NL80211_IFTYPE_OCB:
191 /* all stations are required to support WME */
192 qos = true;
193 break;
Johannes Bergcf0277e2010-01-05 18:00:58 +0100194 default:
195 break;
Jiri Bencf0706e82007-05-05 11:45:53 -0700196 }
197
Johannes Bergcf0277e2010-01-05 18:00:58 +0100198 if (!sta && ra && !is_multicast_ether_addr(ra)) {
199 sta = sta_info_get(sdata, ra);
200 if (sta)
Johannes Berga74a8c82014-07-22 14:50:47 +0200201 qos = sta->sta.wme;
Johannes Bergcf0277e2010-01-05 18:00:58 +0100202 }
Johannes Bergcf0277e2010-01-05 18:00:58 +0100203
204 if (!qos) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700205 skb->priority = 0; /* required for correct WPA/11i MIC */
Johannes Berg02219b32014-10-07 10:38:50 +0300206 ret = IEEE80211_AC_BE;
207 goto out;
Jiri Bencf0706e82007-05-05 11:45:53 -0700208 }
209
Felix Fietkau1bf4bbb2014-02-11 16:02:47 +0100210 if (skb->protocol == sdata->control_port_protocol) {
211 skb->priority = 7;
Johannes Berg02219b32014-10-07 10:38:50 +0300212 goto downgrade;
Felix Fietkau1bf4bbb2014-02-11 16:02:47 +0100213 }
214
Jiri Bencf0706e82007-05-05 11:45:53 -0700215 /* use the data classifier to determine what 802.1d tag the
Johannes Berg3c3b00c2007-08-28 17:01:55 -0400216 * data frame has */
Kyeyoon Park32db6b52013-12-16 23:04:43 -0800217 qos_map = rcu_dereference(sdata->qos_map);
218 skb->priority = cfg80211_classify8021d(skb, qos_map ?
219 &qos_map->qos_map : NULL);
Jiri Bencf0706e82007-05-05 11:45:53 -0700220
Johannes Berg02219b32014-10-07 10:38:50 +0300221 downgrade:
222 ret = ieee80211_downgrade_queue(sdata, sta, skb);
223 out:
224 rcu_read_unlock();
225 return ret;
Johannes Bergcf0277e2010-01-05 18:00:58 +0100226}
227
Marco Porsch40aefed2012-11-21 18:40:31 -0800228/**
229 * ieee80211_set_qos_hdr - Fill in the QoS header if there is one.
230 *
231 * @sdata: local subif
232 * @skb: packet to be updated
233 */
Javier Cardona2154c812011-09-07 17:49:53 -0700234void ieee80211_set_qos_hdr(struct ieee80211_sub_if_data *sdata,
235 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700236{
Johannes Bergcf0277e2010-01-05 18:00:58 +0100237 struct ieee80211_hdr *hdr = (void *)skb->data;
Simon Wunderlichb53be792011-11-18 14:20:44 +0100238 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Marco Porsch40aefed2012-11-21 18:40:31 -0800239 u8 *p;
240 u8 ack_policy, tid;
Jiri Bencf0706e82007-05-05 11:45:53 -0700241
Marco Porsch40aefed2012-11-21 18:40:31 -0800242 if (!ieee80211_is_data_qos(hdr->frame_control))
243 return;
Johannes Bergcf0277e2010-01-05 18:00:58 +0100244
Marco Porsch40aefed2012-11-21 18:40:31 -0800245 p = ieee80211_get_qos_ctl(hdr);
246 tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
Johannes Bergcf0277e2010-01-05 18:00:58 +0100247
Marco Porsch40aefed2012-11-21 18:40:31 -0800248 /* preserve EOSP bit */
249 ack_policy = *p & IEEE80211_QOS_CTL_EOSP;
Johannes Berg68629c612011-11-03 09:59:39 +0100250
Marco Porsch40aefed2012-11-21 18:40:31 -0800251 if (is_multicast_ether_addr(hdr->addr1) ||
252 sdata->noack_map & BIT(tid)) {
253 ack_policy |= IEEE80211_QOS_CTL_ACK_POLICY_NOACK;
254 info->flags |= IEEE80211_TX_CTL_NO_ACK;
Jiri Bencf0706e82007-05-05 11:45:53 -0700255 }
Marco Porsch40aefed2012-11-21 18:40:31 -0800256
257 /* qos header is 2 bytes */
258 *p++ = ack_policy | tid;
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100259 if (ieee80211_vif_is_mesh(&sdata->vif)) {
260 /* preserve RSPI and Mesh PS Level bit */
261 *p &= ((IEEE80211_QOS_CTL_RSPI |
262 IEEE80211_QOS_CTL_MESH_PS_LEVEL) >> 8);
263
264 /* Nulls don't have a mesh header (frame body) */
265 if (!ieee80211_is_qos_nullfunc(hdr->frame_control))
266 *p |= (IEEE80211_QOS_CTL_MESH_CONTROL_PRESENT >> 8);
267 } else {
268 *p = 0;
269 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700270}