mac80211: QoS multicast frames have No Ack policy
[deliverable/linux.git] / net / mac80211 / wme.c
CommitLineData
f0706e82
JB
1/*
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
51cb6db0 21/* Default mapping in classifier to work with default
e100bb64
JB
22 * queue setup.
23 */
4bce22b9
JB
24const 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};
f0706e82 34
51cb6db0 35static int wme_downgrade_ac(struct sk_buff *skb)
f0706e82
JB
36{
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
cf0277e7
JB
56/* Indicate which queue to use. */
57u16 ieee80211_select_queue(struct ieee80211_sub_if_data *sdata,
58 struct sk_buff *skb)
f0706e82 59{
cf0277e7
JB
60 struct ieee80211_local *local = sdata->local;
61 struct sta_info *sta = NULL;
cf0277e7
JB
62 const u8 *ra = NULL;
63 bool qos = false;
f0706e82 64
cf0277e7
JB
65 if (local->hw.queues < 4 || skb->len < 6) {
66 skb->priority = 0; /* required for correct WPA/11i MIC */
17212846 67 return min_t(u16, local->hw.queues - 1, IEEE80211_AC_BE);
cf0277e7
JB
68 }
69
70 rcu_read_lock();
71 switch (sdata->vif.type) {
72 case NL80211_IFTYPE_AP_VLAN:
cf0277e7 73 sta = rcu_dereference(sdata->u.vlan.sta);
17212846 74 if (sta) {
c2c98fde 75 qos = test_sta_flag(sta, WLAN_STA_WME);
cf0277e7 76 break;
17212846 77 }
cf0277e7
JB
78 case NL80211_IFTYPE_AP:
79 ra = skb->data;
80 break;
81 case NL80211_IFTYPE_WDS:
82 ra = sdata->u.wds.remote_addr;
83 break;
84#ifdef CONFIG_MAC80211_MESH
85 case NL80211_IFTYPE_MESH_POINT:
4777be41 86 ra = skb->data;
cf0277e7
JB
87 break;
88#endif
89 case NL80211_IFTYPE_STATION:
90 ra = sdata->u.mgd.bssid;
91 break;
92 case NL80211_IFTYPE_ADHOC:
93 ra = skb->data;
94 break;
95 default:
96 break;
f0706e82
JB
97 }
98
cf0277e7
JB
99 if (!sta && ra && !is_multicast_ether_addr(ra)) {
100 sta = sta_info_get(sdata, ra);
101 if (sta)
c2c98fde 102 qos = test_sta_flag(sta, WLAN_STA_WME);
f0706e82 103 }
cf0277e7
JB
104 rcu_read_unlock();
105
106 if (!qos) {
f0706e82 107 skb->priority = 0; /* required for correct WPA/11i MIC */
17212846 108 return IEEE80211_AC_BE;
f0706e82
JB
109 }
110
111 /* use the data classifier to determine what 802.1d tag the
3c3b00ca 112 * data frame has */
e31a16d6 113 skb->priority = cfg80211_classify8021d(skb);
f0706e82 114
cf0277e7
JB
115 return ieee80211_downgrade_queue(local, skb);
116}
117
118u16 ieee80211_downgrade_queue(struct ieee80211_local *local,
119 struct sk_buff *skb)
120{
3c3b00ca 121 /* in case we are a client verify acm is not set for this ac */
f0706e82
JB
122 while (unlikely(local->wmm_acm & BIT(skb->priority))) {
123 if (wme_downgrade_ac(skb)) {
0eeb59fe
JM
124 /*
125 * This should not really happen. The AP has marked all
126 * lower ACs to require admission control which is not
127 * a reasonable configuration. Allow the frame to be
128 * transmitted using AC_BK as a workaround.
51cb6db0 129 */
0eeb59fe 130 break;
f0706e82
JB
131 }
132 }
133
134 /* look up which queue to use for frames with this 1d tag */
135 return ieee802_1d_to_ac[skb->priority];
136}
137
2154c81c
JC
138void ieee80211_set_qos_hdr(struct ieee80211_sub_if_data *sdata,
139 struct sk_buff *skb)
f0706e82 140{
cf0277e7
JB
141 struct ieee80211_hdr *hdr = (void *)skb->data;
142
143 /* Fill in the QoS header if there is one. */
8f77f384 144 if (ieee80211_is_data_qos(hdr->frame_control)) {
002aaf4e 145 u8 *p = ieee80211_get_qos_ctl(hdr);
68629c61 146 u8 ack_policy, tid;
cf0277e7 147
238f74a2 148 tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
cf0277e7 149
68629c61
JB
150 /* preserve EOSP bit */
151 ack_policy = *p & IEEE80211_QOS_CTL_EOSP;
152
6cc00d54
TP
153 if (unlikely(sdata->local->wifi_wme_noack_test) ||
154 is_multicast_ether_addr(hdr->addr1))
04b7dcf9 155 ack_policy |= IEEE80211_QOS_CTL_ACK_POLICY_NOACK;
2154c81c 156 /* qos header is 2 bytes */
002aaf4e 157 *p++ = ack_policy | tid;
2154c81c
JC
158 *p = ieee80211_vif_is_mesh(&sdata->vif) ?
159 (IEEE80211_QOS_CTL_MESH_CONTROL_PRESENT >> 8) : 0;
f0706e82 160 }
f0706e82 161}
This page took 0.419762 seconds and 5 git commands to generate.