blob: 89511be3111ed56d9f82421044f9a32c3605707c [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
2 * Copyright 2004, Instant802 Networks, Inc.
3 *
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.
7 */
8
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>
14#include <net/ip.h>
15#include <net/pkt_sched.h>
16
17#include <net/mac80211.h>
18#include "ieee80211_i.h"
19#include "wme.h"
20
David S. Miller51cb6db2008-07-15 03:34:57 -070021/* Default mapping in classifier to work with default
Johannes Berge100bb62008-04-30 18:51:21 +020022 * queue setup.
23 */
Johannes Berg4bce22b2010-11-16 11:49:58 -080024const int ieee802_1d_to_ac[8] = {
25 IEEE80211_AC_BE,
26 IEEE80211_AC_BK,
27 IEEE80211_AC_BK,
28 IEEE80211_AC_BE,
29 IEEE80211_AC_VI,
30 IEEE80211_AC_VI,
31 IEEE80211_AC_VO,
32 IEEE80211_AC_VO
33};
Jiri Bencf0706e82007-05-05 11:45:53 -070034
David S. Miller51cb6db2008-07-15 03:34:57 -070035static int wme_downgrade_ac(struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -070036{
37 switch (skb->priority) {
38 case 6:
39 case 7:
40 skb->priority = 5; /* VO -> VI */
41 return 0;
42 case 4:
43 case 5:
44 skb->priority = 3; /* VI -> BE */
45 return 0;
46 case 0:
47 case 3:
48 skb->priority = 2; /* BE -> BK */
49 return 0;
50 default:
51 return -1;
52 }
53}
54
Thomas Pedersend3c15972011-11-24 17:15:23 -080055/* Indicate which queue to use for this fully formed 802.11 frame */
56u16 ieee80211_select_queue_80211(struct ieee80211_local *local,
57 struct sk_buff *skb,
58 struct ieee80211_hdr *hdr)
59{
60 u8 *p;
61
62 if (local->hw.queues < 4)
63 return 0;
64
65 if (!ieee80211_is_data(hdr->frame_control)) {
66 skb->priority = 7;
67 return ieee802_1d_to_ac[skb->priority];
68 }
69 if (!ieee80211_is_data_qos(hdr->frame_control)) {
70 skb->priority = 0;
71 return ieee802_1d_to_ac[skb->priority];
72 }
73
74 p = ieee80211_get_qos_ctl(hdr);
75 skb->priority = *p & IEEE80211_QOS_CTL_TAG1D_MASK;
76
77 return ieee80211_downgrade_queue(local, skb);
78}
Jiri Bencf0706e82007-05-05 11:45:53 -070079
Johannes Bergcf0277e2010-01-05 18:00:58 +010080/* Indicate which queue to use. */
81u16 ieee80211_select_queue(struct ieee80211_sub_if_data *sdata,
82 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -070083{
Johannes Bergcf0277e2010-01-05 18:00:58 +010084 struct ieee80211_local *local = sdata->local;
85 struct sta_info *sta = NULL;
Johannes Bergcf0277e2010-01-05 18:00:58 +010086 const u8 *ra = NULL;
87 bool qos = false;
Jiri Bencf0706e82007-05-05 11:45:53 -070088
Johannes Bergcf0277e2010-01-05 18:00:58 +010089 if (local->hw.queues < 4 || skb->len < 6) {
90 skb->priority = 0; /* required for correct WPA/11i MIC */
Johannes Berg17212842010-12-22 10:15:30 +010091 return min_t(u16, local->hw.queues - 1, IEEE80211_AC_BE);
Jiri Bencf0706e82007-05-05 11:45:53 -070092 }
93
Johannes Bergcf0277e2010-01-05 18:00:58 +010094 rcu_read_lock();
95 switch (sdata->vif.type) {
96 case NL80211_IFTYPE_AP_VLAN:
Johannes Bergcf0277e2010-01-05 18:00:58 +010097 sta = rcu_dereference(sdata->u.vlan.sta);
Johannes Berg17212842010-12-22 10:15:30 +010098 if (sta) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +020099 qos = test_sta_flag(sta, WLAN_STA_WME);
Johannes Bergcf0277e2010-01-05 18:00:58 +0100100 break;
Johannes Berg17212842010-12-22 10:15:30 +0100101 }
Johannes Bergcf0277e2010-01-05 18:00:58 +0100102 case NL80211_IFTYPE_AP:
103 ra = skb->data;
104 break;
105 case NL80211_IFTYPE_WDS:
106 ra = sdata->u.wds.remote_addr;
107 break;
108#ifdef CONFIG_MAC80211_MESH
109 case NL80211_IFTYPE_MESH_POINT:
Javier Cardonad0ce1852011-11-03 21:11:13 -0700110 qos = true;
Johannes Bergcf0277e2010-01-05 18:00:58 +0100111 break;
112#endif
113 case NL80211_IFTYPE_STATION:
114 ra = sdata->u.mgd.bssid;
115 break;
116 case NL80211_IFTYPE_ADHOC:
117 ra = skb->data;
118 break;
119 default:
120 break;
Jiri Bencf0706e82007-05-05 11:45:53 -0700121 }
122
Johannes Bergcf0277e2010-01-05 18:00:58 +0100123 if (!sta && ra && !is_multicast_ether_addr(ra)) {
124 sta = sta_info_get(sdata, ra);
125 if (sta)
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200126 qos = test_sta_flag(sta, WLAN_STA_WME);
Johannes Bergcf0277e2010-01-05 18:00:58 +0100127 }
Johannes Bergcf0277e2010-01-05 18:00:58 +0100128 rcu_read_unlock();
129
130 if (!qos) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700131 skb->priority = 0; /* required for correct WPA/11i MIC */
Johannes Berg17212842010-12-22 10:15:30 +0100132 return IEEE80211_AC_BE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700133 }
134
135 /* use the data classifier to determine what 802.1d tag the
Johannes Berg3c3b00c2007-08-28 17:01:55 -0400136 * data frame has */
Zhu Yie31a16d2009-05-21 21:47:03 +0800137 skb->priority = cfg80211_classify8021d(skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700138
Johannes Bergcf0277e2010-01-05 18:00:58 +0100139 return ieee80211_downgrade_queue(local, skb);
140}
141
142u16 ieee80211_downgrade_queue(struct ieee80211_local *local,
143 struct sk_buff *skb)
144{
Johannes Berg3c3b00c2007-08-28 17:01:55 -0400145 /* in case we are a client verify acm is not set for this ac */
Jiri Bencf0706e82007-05-05 11:45:53 -0700146 while (unlikely(local->wmm_acm & BIT(skb->priority))) {
147 if (wme_downgrade_ac(skb)) {
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200148 /*
149 * This should not really happen. The AP has marked all
150 * lower ACs to require admission control which is not
151 * a reasonable configuration. Allow the frame to be
152 * transmitted using AC_BK as a workaround.
David S. Miller51cb6db2008-07-15 03:34:57 -0700153 */
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200154 break;
Jiri Bencf0706e82007-05-05 11:45:53 -0700155 }
156 }
157
158 /* look up which queue to use for frames with this 1d tag */
159 return ieee802_1d_to_ac[skb->priority];
160}
161
Javier Cardona2154c812011-09-07 17:49:53 -0700162void ieee80211_set_qos_hdr(struct ieee80211_sub_if_data *sdata,
163 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700164{
Johannes Bergcf0277e2010-01-05 18:00:58 +0100165 struct ieee80211_hdr *hdr = (void *)skb->data;
Simon Wunderlichb53be792011-11-18 14:20:44 +0100166 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700167
Johannes Bergcf0277e2010-01-05 18:00:58 +0100168 /* Fill in the QoS header if there is one. */
Johannes Berg8f77f382009-06-07 21:58:37 +0200169 if (ieee80211_is_data_qos(hdr->frame_control)) {
Harvey Harrison002aaf42008-06-11 14:21:59 -0700170 u8 *p = ieee80211_get_qos_ctl(hdr);
Johannes Berg68629c612011-11-03 09:59:39 +0100171 u8 ack_policy, tid;
Johannes Bergcf0277e2010-01-05 18:00:58 +0100172
Harvey Harrison238f74a2008-07-02 11:05:34 -0700173 tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
Johannes Bergcf0277e2010-01-05 18:00:58 +0100174
Johannes Berg68629c612011-11-03 09:59:39 +0100175 /* preserve EOSP bit */
176 ack_policy = *p & IEEE80211_QOS_CTL_EOSP;
177
Simon Wunderlichb53be792011-11-18 14:20:44 +0100178 if (is_multicast_ether_addr(hdr->addr1) ||
179 sdata->noack_map & BIT(tid)) {
Johannes Berg04b7dcf2011-06-22 10:06:59 +0200180 ack_policy |= IEEE80211_QOS_CTL_ACK_POLICY_NOACK;
Simon Wunderlichb53be792011-11-18 14:20:44 +0100181 info->flags |= IEEE80211_TX_CTL_NO_ACK;
182 }
183
Javier Cardona2154c812011-09-07 17:49:53 -0700184 /* qos header is 2 bytes */
Harvey Harrison002aaf42008-06-11 14:21:59 -0700185 *p++ = ack_policy | tid;
Javier Cardona2154c812011-09-07 17:49:53 -0700186 *p = ieee80211_vif_is_mesh(&sdata->vif) ?
187 (IEEE80211_QOS_CTL_MESH_CONTROL_PRESENT >> 8) : 0;
Jiri Bencf0706e82007-05-05 11:45:53 -0700188 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700189}