blob: 6e8099e77043162e3db1e3dd2ced1a0ff05fbaa7 [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 */
Ron Rindjunsky9e723492008-01-28 14:07:18 +020024const int ieee802_1d_to_ac[8] = { 2, 3, 3, 2, 1, 1, 0, 0 };
Jiri Bencf0706e82007-05-05 11:45:53 -070025
Guy Cohena8bdf292008-01-09 19:12:48 +020026static const char llc_ip_hdr[8] = {0xAA, 0xAA, 0x3, 0, 0, 0, 0x08, 0};
Jiri Bencf0706e82007-05-05 11:45:53 -070027
David S. Miller51cb6db2008-07-15 03:34:57 -070028/* Given a data frame determine the 802.1p/1d tag to use. */
29static unsigned int classify_1d(struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -070030{
David S. Miller51cb6db2008-07-15 03:34:57 -070031 unsigned int dscp;
Jiri Bencf0706e82007-05-05 11:45:53 -070032
33 /* skb->priority values from 256->263 are magic values to
David S. Miller51cb6db2008-07-15 03:34:57 -070034 * directly indicate a specific 802.1d priority. This is used
35 * to allow 802.1d priority to be passed directly in from VLAN
36 * tags, etc.
37 */
Jiri Bencf0706e82007-05-05 11:45:53 -070038 if (skb->priority >= 256 && skb->priority <= 263)
39 return skb->priority - 256;
40
David S. Miller51cb6db2008-07-15 03:34:57 -070041 switch (skb->protocol) {
42 case __constant_htons(ETH_P_IP):
43 dscp = ip_hdr(skb)->tos & 0xfc;
44 break;
45
46 default:
Jiri Bencf0706e82007-05-05 11:45:53 -070047 return 0;
David S. Miller51cb6db2008-07-15 03:34:57 -070048 }
Jiri Bencf0706e82007-05-05 11:45:53 -070049
Jiri Bencf0706e82007-05-05 11:45:53 -070050 if (dscp & 0x1c)
51 return 0;
52 return dscp >> 5;
53}
54
55
David S. Miller51cb6db2008-07-15 03:34:57 -070056static int wme_downgrade_ac(struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -070057{
58 switch (skb->priority) {
59 case 6:
60 case 7:
61 skb->priority = 5; /* VO -> VI */
62 return 0;
63 case 4:
64 case 5:
65 skb->priority = 3; /* VI -> BE */
66 return 0;
67 case 0:
68 case 3:
69 skb->priority = 2; /* BE -> BK */
70 return 0;
71 default:
72 return -1;
73 }
74}
75
76
David S. Miller51cb6db2008-07-15 03:34:57 -070077/* Indicate which queue to use. */
78static u16 classify80211(struct sk_buff *skb, struct net_device *dev)
Jiri Bencf0706e82007-05-05 11:45:53 -070079{
David S. Miller51cb6db2008-07-15 03:34:57 -070080 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Jiri Bencf0706e82007-05-05 11:45:53 -070081 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Jiri Bencf0706e82007-05-05 11:45:53 -070082
Harvey Harrison002aaf42008-06-11 14:21:59 -070083 if (!ieee80211_is_data(hdr->frame_control)) {
Jiri Bencf0706e82007-05-05 11:45:53 -070084 /* management frames go on AC_VO queue, but are sent
85 * without QoS control fields */
Johannes Berge100bb62008-04-30 18:51:21 +020086 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -070087 }
88
Johannes Bergf9d540e2007-09-28 14:02:09 +020089 if (0 /* injected */) {
90 /* use AC from radiotap */
Jiri Bencf0706e82007-05-05 11:45:53 -070091 }
92
Harvey Harrison002aaf42008-06-11 14:21:59 -070093 if (!ieee80211_is_data_qos(hdr->frame_control)) {
Jiri Bencf0706e82007-05-05 11:45:53 -070094 skb->priority = 0; /* required for correct WPA/11i MIC */
95 return ieee802_1d_to_ac[skb->priority];
96 }
97
98 /* use the data classifier to determine what 802.1d tag the
Johannes Berg3c3b00c2007-08-28 17:01:55 -040099 * data frame has */
David S. Miller51cb6db2008-07-15 03:34:57 -0700100 skb->priority = classify_1d(skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700101
Johannes Berg3c3b00c2007-08-28 17:01:55 -0400102 /* in case we are a client verify acm is not set for this ac */
Jiri Bencf0706e82007-05-05 11:45:53 -0700103 while (unlikely(local->wmm_acm & BIT(skb->priority))) {
104 if (wme_downgrade_ac(skb)) {
David S. Miller51cb6db2008-07-15 03:34:57 -0700105 /* The old code would drop the packet in this
106 * case.
107 */
108 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -0700109 }
110 }
111
112 /* look up which queue to use for frames with this 1d tag */
113 return ieee802_1d_to_ac[skb->priority];
114}
115
David S. Miller51cb6db2008-07-15 03:34:57 -0700116u16 ieee80211_select_queue(struct net_device *dev, struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700117{
Jiri Bencf0706e82007-05-05 11:45:53 -0700118 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
David S. Miller51cb6db2008-07-15 03:34:57 -0700119 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
120 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200121 struct sta_info *sta;
David S. Miller51cb6db2008-07-15 03:34:57 -0700122 u16 queue;
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200123 u8 tid;
Jiri Bencf0706e82007-05-05 11:45:53 -0700124
David S. Miller51cb6db2008-07-15 03:34:57 -0700125 queue = classify80211(skb, dev);
126 if (unlikely(queue >= local->hw.queues))
127 queue = local->hw.queues - 1;
128
Johannes Berge039fa42008-05-15 12:55:29 +0200129 if (info->flags & IEEE80211_TX_CTL_REQUEUE) {
Johannes Bergd0709a62008-02-25 16:27:46 +0100130 rcu_read_lock();
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200131 sta = sta_info_get(local, hdr->addr1);
Harvey Harrison238f74a2008-07-02 11:05:34 -0700132 tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200133 if (sta) {
David S. Miller51cb6db2008-07-15 03:34:57 -0700134 struct ieee80211_hw *hw = &local->hw;
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200135 int ampdu_queue = sta->tid_to_tx_q[tid];
David S. Miller51cb6db2008-07-15 03:34:57 -0700136
137 if ((ampdu_queue < ieee80211_num_queues(hw)) &&
138 test_bit(ampdu_queue, local->queue_pool)) {
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200139 queue = ampdu_queue;
Johannes Berge039fa42008-05-15 12:55:29 +0200140 info->flags |= IEEE80211_TX_CTL_AMPDU;
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200141 } else {
Johannes Berge039fa42008-05-15 12:55:29 +0200142 info->flags &= ~IEEE80211_TX_CTL_AMPDU;
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200143 }
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200144 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100145 rcu_read_unlock();
David S. Miller51cb6db2008-07-15 03:34:57 -0700146
147 return queue;
Jiri Bencf0706e82007-05-05 11:45:53 -0700148 }
149
David S. Miller51cb6db2008-07-15 03:34:57 -0700150 /* Now we know the 1d priority, fill in the QoS header if
151 * there is one.
Jiri Bencf0706e82007-05-05 11:45:53 -0700152 */
Harvey Harrison002aaf42008-06-11 14:21:59 -0700153 if (ieee80211_is_data_qos(hdr->frame_control)) {
154 u8 *p = ieee80211_get_qos_ctl(hdr);
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200155 u8 ack_policy = 0;
Harvey Harrison238f74a2008-07-02 11:05:34 -0700156 tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
Jiri Bencf0706e82007-05-05 11:45:53 -0700157 if (local->wifi_wme_noack_test)
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200158 ack_policy |= QOS_CONTROL_ACK_POLICY_NOACK <<
Jiri Bencf0706e82007-05-05 11:45:53 -0700159 QOS_CONTROL_ACK_POLICY_SHIFT;
160 /* qos header is 2 bytes, second reserved */
Harvey Harrison002aaf42008-06-11 14:21:59 -0700161 *p++ = ack_policy | tid;
Jiri Bencf0706e82007-05-05 11:45:53 -0700162 *p = 0;
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200163
Johannes Bergd0709a62008-02-25 16:27:46 +0100164 rcu_read_lock();
165
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200166 sta = sta_info_get(local, hdr->addr1);
167 if (sta) {
168 int ampdu_queue = sta->tid_to_tx_q[tid];
David S. Miller51cb6db2008-07-15 03:34:57 -0700169 struct ieee80211_hw *hw = &local->hw;
170
171 if ((ampdu_queue < ieee80211_num_queues(hw)) &&
172 test_bit(ampdu_queue, local->queue_pool)) {
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200173 queue = ampdu_queue;
Johannes Berge039fa42008-05-15 12:55:29 +0200174 info->flags |= IEEE80211_TX_CTL_AMPDU;
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200175 } else {
Johannes Berge039fa42008-05-15 12:55:29 +0200176 info->flags &= ~IEEE80211_TX_CTL_AMPDU;
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200177 }
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200178 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100179
180 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -0700181 }
182
Jiri Bencf0706e82007-05-05 11:45:53 -0700183 return queue;
184}
185
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200186int ieee80211_ht_agg_queue_add(struct ieee80211_local *local,
David S. Miller51cb6db2008-07-15 03:34:57 -0700187 struct sta_info *sta, u16 tid)
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200188{
189 int i;
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200190
191 /* prepare the filter and save it for the SW queue
Johannes Berge100bb62008-04-30 18:51:21 +0200192 * matching the received HW queue */
193
194 if (!local->hw.ampdu_queues)
195 return -EPERM;
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200196
197 /* try to get a Qdisc from the pool */
David S. Miller51cb6db2008-07-15 03:34:57 -0700198 for (i = local->hw.queues; i < ieee80211_num_queues(&local->hw); i++)
199 if (!test_and_set_bit(i, local->queue_pool)) {
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200200 ieee80211_stop_queue(local_to_hw(local), i);
201 sta->tid_to_tx_q[tid] = i;
202
203 /* IF there are already pending packets
204 * on this tid first we need to drain them
205 * on the previous queue
206 * since HT is strict in order */
207#ifdef CONFIG_MAC80211_HT_DEBUG
David S. Miller51cb6db2008-07-15 03:34:57 -0700208 if (net_ratelimit()) {
209 DECLARE_MAC_BUF(mac);
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200210 printk(KERN_DEBUG "allocated aggregation queue"
Tomas Winkler995ad6c2008-06-12 20:08:19 +0300211 " %d tid %d addr %s pool=0x%lX\n",
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200212 i, tid, print_mac(mac, sta->addr),
David S. Miller51cb6db2008-07-15 03:34:57 -0700213 local->queue_pool[0]);
214 }
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200215#endif /* CONFIG_MAC80211_HT_DEBUG */
216 return 0;
217 }
218
219 return -EAGAIN;
220}
221
222/**
David S. Millere8a04642008-07-17 00:34:19 -0700223 * the caller needs to hold netdev_get_tx_queue(local->mdev, X)->lock
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200224 */
225void ieee80211_ht_agg_queue_remove(struct ieee80211_local *local,
226 struct sta_info *sta, u16 tid,
227 u8 requeue)
228{
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200229 int agg_queue = sta->tid_to_tx_q[tid];
David S. Miller51cb6db2008-07-15 03:34:57 -0700230 struct ieee80211_hw *hw = &local->hw;
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200231
232 /* return the qdisc to the pool */
David S. Miller51cb6db2008-07-15 03:34:57 -0700233 clear_bit(agg_queue, local->queue_pool);
234 sta->tid_to_tx_q[tid] = ieee80211_num_queues(hw);
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200235
David S. Miller51cb6db2008-07-15 03:34:57 -0700236 if (requeue) {
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200237 ieee80211_requeue(local, agg_queue);
David S. Miller51cb6db2008-07-15 03:34:57 -0700238 } else {
239 struct netdev_queue *txq;
David S. Miller83874002008-07-17 00:53:03 -0700240 spinlock_t *root_lock;
David S. Miller51cb6db2008-07-15 03:34:57 -0700241
242 txq = netdev_get_tx_queue(local->mdev, agg_queue);
David S. Miller83874002008-07-17 00:53:03 -0700243 root_lock = qdisc_root_lock(txq->qdisc);
David S. Miller51cb6db2008-07-15 03:34:57 -0700244
David S. Miller83874002008-07-17 00:53:03 -0700245 spin_lock_bh(root_lock);
David S. Miller51cb6db2008-07-15 03:34:57 -0700246 qdisc_reset(txq->qdisc);
David S. Miller83874002008-07-17 00:53:03 -0700247 spin_unlock_bh(root_lock);
David S. Miller51cb6db2008-07-15 03:34:57 -0700248 }
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200249}
250
251void ieee80211_requeue(struct ieee80211_local *local, int queue)
252{
David S. Miller51cb6db2008-07-15 03:34:57 -0700253 struct netdev_queue *txq = netdev_get_tx_queue(local->mdev, queue);
254 struct sk_buff_head list;
David S. Miller83874002008-07-17 00:53:03 -0700255 spinlock_t *root_lock;
David S. Miller51cb6db2008-07-15 03:34:57 -0700256 struct Qdisc *qdisc;
Ron Rindjunsky0da926f2008-04-23 13:45:12 +0300257 u32 len;
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200258
David S. Miller51cb6db2008-07-15 03:34:57 -0700259 rcu_read_lock_bh();
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200260
David S. Miller51cb6db2008-07-15 03:34:57 -0700261 qdisc = rcu_dereference(txq->qdisc);
262 if (!qdisc || !qdisc->dequeue)
263 goto out_unlock;
264
265 skb_queue_head_init(&list);
266
David S. Miller83874002008-07-17 00:53:03 -0700267 root_lock = qdisc_root_lock(qdisc);
268 spin_lock(root_lock);
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200269 for (len = qdisc->q.qlen; len > 0; len--) {
David S. Miller51cb6db2008-07-15 03:34:57 -0700270 struct sk_buff *skb = qdisc->dequeue(qdisc);
271
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200272 if (skb)
David S. Miller51cb6db2008-07-15 03:34:57 -0700273 __skb_queue_tail(&list, skb);
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200274 }
David S. Miller83874002008-07-17 00:53:03 -0700275 spin_unlock(root_lock);
David S. Miller51cb6db2008-07-15 03:34:57 -0700276
277 for (len = list.qlen; len > 0; len--) {
278 struct sk_buff *skb = __skb_dequeue(&list);
279 u16 new_queue;
280
281 BUG_ON(!skb);
282 new_queue = ieee80211_select_queue(local->mdev, skb);
283 skb_set_queue_mapping(skb, new_queue);
284
285 txq = netdev_get_tx_queue(local->mdev, new_queue);
286
David S. Miller51cb6db2008-07-15 03:34:57 -0700287
288 qdisc = rcu_dereference(txq->qdisc);
David S. Miller83874002008-07-17 00:53:03 -0700289 root_lock = qdisc_root_lock(qdisc);
David S. Miller51cb6db2008-07-15 03:34:57 -0700290
David S. Miller83874002008-07-17 00:53:03 -0700291 spin_lock(root_lock);
292 qdisc->enqueue(skb, qdisc);
293 spin_unlock(root_lock);
David S. Miller51cb6db2008-07-15 03:34:57 -0700294 }
295
296out_unlock:
297 rcu_read_unlock_bh();
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200298}