blob: 58e75bbc1f9132313af42f6c5d64106f0cb0cba2 [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
55
Johannes Bergcf0277e2010-01-05 18:00:58 +010056/* Indicate which queue to use. */
57u16 ieee80211_select_queue(struct ieee80211_sub_if_data *sdata,
58 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -070059{
Johannes Bergcf0277e2010-01-05 18:00:58 +010060 struct ieee80211_local *local = sdata->local;
61 struct sta_info *sta = NULL;
62 u32 sta_flags = 0;
63 const u8 *ra = NULL;
64 bool qos = false;
Jiri Bencf0706e82007-05-05 11:45:53 -070065
Johannes Bergcf0277e2010-01-05 18:00:58 +010066 if (local->hw.queues < 4 || skb->len < 6) {
67 skb->priority = 0; /* required for correct WPA/11i MIC */
68 return min_t(u16, local->hw.queues - 1,
69 ieee802_1d_to_ac[skb->priority]);
Jiri Bencf0706e82007-05-05 11:45:53 -070070 }
71
Johannes Bergcf0277e2010-01-05 18:00:58 +010072 rcu_read_lock();
73 switch (sdata->vif.type) {
74 case NL80211_IFTYPE_AP_VLAN:
75 rcu_read_lock();
76 sta = rcu_dereference(sdata->u.vlan.sta);
77 if (sta)
78 sta_flags = get_sta_flags(sta);
79 rcu_read_unlock();
80 if (sta)
81 break;
82 case NL80211_IFTYPE_AP:
83 ra = skb->data;
84 break;
85 case NL80211_IFTYPE_WDS:
86 ra = sdata->u.wds.remote_addr;
87 break;
88#ifdef CONFIG_MAC80211_MESH
89 case NL80211_IFTYPE_MESH_POINT:
90 /*
91 * XXX: This is clearly broken ... but already was before,
92 * because ieee80211_fill_mesh_addresses() would clear A1
93 * except for multicast addresses.
94 */
95 break;
96#endif
97 case NL80211_IFTYPE_STATION:
98 ra = sdata->u.mgd.bssid;
99 break;
100 case NL80211_IFTYPE_ADHOC:
101 ra = skb->data;
102 break;
103 default:
104 break;
Jiri Bencf0706e82007-05-05 11:45:53 -0700105 }
106
Johannes Bergcf0277e2010-01-05 18:00:58 +0100107 if (!sta && ra && !is_multicast_ether_addr(ra)) {
108 sta = sta_info_get(sdata, ra);
109 if (sta)
110 sta_flags = get_sta_flags(sta);
111 }
112
113 if (sta_flags & WLAN_STA_WME)
114 qos = true;
115
116 rcu_read_unlock();
117
118 if (!qos) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700119 skb->priority = 0; /* required for correct WPA/11i MIC */
120 return ieee802_1d_to_ac[skb->priority];
121 }
122
123 /* use the data classifier to determine what 802.1d tag the
Johannes Berg3c3b00c2007-08-28 17:01:55 -0400124 * data frame has */
Zhu Yie31a16d2009-05-21 21:47:03 +0800125 skb->priority = cfg80211_classify8021d(skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700126
Johannes Bergcf0277e2010-01-05 18:00:58 +0100127 return ieee80211_downgrade_queue(local, skb);
128}
129
130u16 ieee80211_downgrade_queue(struct ieee80211_local *local,
131 struct sk_buff *skb)
132{
Johannes Berg3c3b00c2007-08-28 17:01:55 -0400133 /* in case we are a client verify acm is not set for this ac */
Jiri Bencf0706e82007-05-05 11:45:53 -0700134 while (unlikely(local->wmm_acm & BIT(skb->priority))) {
135 if (wme_downgrade_ac(skb)) {
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200136 /*
137 * This should not really happen. The AP has marked all
138 * lower ACs to require admission control which is not
139 * a reasonable configuration. Allow the frame to be
140 * transmitted using AC_BK as a workaround.
David S. Miller51cb6db2008-07-15 03:34:57 -0700141 */
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200142 break;
Jiri Bencf0706e82007-05-05 11:45:53 -0700143 }
144 }
145
146 /* look up which queue to use for frames with this 1d tag */
147 return ieee802_1d_to_ac[skb->priority];
148}
149
Johannes Bergcf0277e2010-01-05 18:00:58 +0100150void ieee80211_set_qos_hdr(struct ieee80211_local *local, struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700151{
Johannes Bergcf0277e2010-01-05 18:00:58 +0100152 struct ieee80211_hdr *hdr = (void *)skb->data;
Jiri Bencf0706e82007-05-05 11:45:53 -0700153
Johannes Bergcf0277e2010-01-05 18:00:58 +0100154 /* Fill in the QoS header if there is one. */
Johannes Berg8f77f382009-06-07 21:58:37 +0200155 if (ieee80211_is_data_qos(hdr->frame_control)) {
Harvey Harrison002aaf42008-06-11 14:21:59 -0700156 u8 *p = ieee80211_get_qos_ctl(hdr);
Johannes Bergcf0277e2010-01-05 18:00:58 +0100157 u8 ack_policy = 0, tid;
158
Harvey Harrison238f74a2008-07-02 11:05:34 -0700159 tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
Johannes Bergcf0277e2010-01-05 18:00:58 +0100160
Johannes Bergd3707d92009-05-12 22:05:40 +0200161 if (unlikely(local->wifi_wme_noack_test))
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200162 ack_policy |= QOS_CONTROL_ACK_POLICY_NOACK <<
Jiri Bencf0706e82007-05-05 11:45:53 -0700163 QOS_CONTROL_ACK_POLICY_SHIFT;
164 /* qos header is 2 bytes, second reserved */
Harvey Harrison002aaf42008-06-11 14:21:59 -0700165 *p++ = ack_policy | tid;
Jiri Bencf0706e82007-05-05 11:45:53 -0700166 *p = 0;
167 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700168}