blob: 116a923b14d621e1043b1cb07a5cecaf755039aa [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
David S. Miller51cb6db2008-07-15 03:34:57 -070026static int wme_downgrade_ac(struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -070027{
28 switch (skb->priority) {
29 case 6:
30 case 7:
31 skb->priority = 5; /* VO -> VI */
32 return 0;
33 case 4:
34 case 5:
35 skb->priority = 3; /* VI -> BE */
36 return 0;
37 case 0:
38 case 3:
39 skb->priority = 2; /* BE -> BK */
40 return 0;
41 default:
42 return -1;
43 }
44}
45
46
David S. Miller51cb6db2008-07-15 03:34:57 -070047/* Indicate which queue to use. */
Johannes Bergb4a4bf52008-09-26 13:34:54 +020048static u16 classify80211(struct ieee80211_local *local, struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -070049{
Jiri Bencf0706e82007-05-05 11:45:53 -070050 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Jiri Bencf0706e82007-05-05 11:45:53 -070051
Harvey Harrison002aaf42008-06-11 14:21:59 -070052 if (!ieee80211_is_data(hdr->frame_control)) {
Jiri Bencf0706e82007-05-05 11:45:53 -070053 /* management frames go on AC_VO queue, but are sent
54 * without QoS control fields */
Johannes Berge100bb62008-04-30 18:51:21 +020055 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -070056 }
57
Johannes Bergf9d540e2007-09-28 14:02:09 +020058 if (0 /* injected */) {
59 /* use AC from radiotap */
Jiri Bencf0706e82007-05-05 11:45:53 -070060 }
61
Harvey Harrison002aaf42008-06-11 14:21:59 -070062 if (!ieee80211_is_data_qos(hdr->frame_control)) {
Jiri Bencf0706e82007-05-05 11:45:53 -070063 skb->priority = 0; /* required for correct WPA/11i MIC */
64 return ieee802_1d_to_ac[skb->priority];
65 }
66
67 /* use the data classifier to determine what 802.1d tag the
Johannes Berg3c3b00c2007-08-28 17:01:55 -040068 * data frame has */
Zhu Yie31a16d2009-05-21 21:47:03 +080069 skb->priority = cfg80211_classify8021d(skb);
Jiri Bencf0706e82007-05-05 11:45:53 -070070
Johannes Berg3c3b00c2007-08-28 17:01:55 -040071 /* in case we are a client verify acm is not set for this ac */
Jiri Bencf0706e82007-05-05 11:45:53 -070072 while (unlikely(local->wmm_acm & BIT(skb->priority))) {
73 if (wme_downgrade_ac(skb)) {
Jouni Malinen0eeb59f2009-03-05 17:23:46 +020074 /*
75 * This should not really happen. The AP has marked all
76 * lower ACs to require admission control which is not
77 * a reasonable configuration. Allow the frame to be
78 * transmitted using AC_BK as a workaround.
David S. Miller51cb6db2008-07-15 03:34:57 -070079 */
Jouni Malinen0eeb59f2009-03-05 17:23:46 +020080 break;
Jiri Bencf0706e82007-05-05 11:45:53 -070081 }
82 }
83
84 /* look up which queue to use for frames with this 1d tag */
85 return ieee802_1d_to_ac[skb->priority];
86}
87
David S. Miller51cb6db2008-07-15 03:34:57 -070088u16 ieee80211_select_queue(struct net_device *dev, struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -070089{
Johannes Bergb4a4bf52008-09-26 13:34:54 +020090 struct ieee80211_master_priv *mpriv = netdev_priv(dev);
91 struct ieee80211_local *local = mpriv->local;
Jiri Bencf0706e82007-05-05 11:45:53 -070092 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
David S. Miller51cb6db2008-07-15 03:34:57 -070093 u16 queue;
Ron Rindjunsky9e723492008-01-28 14:07:18 +020094 u8 tid;
Jiri Bencf0706e82007-05-05 11:45:53 -070095
Johannes Bergb4a4bf52008-09-26 13:34:54 +020096 queue = classify80211(local, skb);
David S. Miller51cb6db2008-07-15 03:34:57 -070097 if (unlikely(queue >= local->hw.queues))
98 queue = local->hw.queues - 1;
99
Johannes Berg96f5e662009-02-12 00:51:53 +0100100 /*
101 * Now we know the 1d priority, fill in the QoS header if
102 * there is one (and we haven't done this before).
Jiri Bencf0706e82007-05-05 11:45:53 -0700103 */
Johannes Berg8f77f382009-06-07 21:58:37 +0200104 if (ieee80211_is_data_qos(hdr->frame_control)) {
Harvey Harrison002aaf42008-06-11 14:21:59 -0700105 u8 *p = ieee80211_get_qos_ctl(hdr);
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200106 u8 ack_policy = 0;
Harvey Harrison238f74a2008-07-02 11:05:34 -0700107 tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
Johannes Bergd3707d92009-05-12 22:05:40 +0200108 if (unlikely(local->wifi_wme_noack_test))
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200109 ack_policy |= QOS_CONTROL_ACK_POLICY_NOACK <<
Jiri Bencf0706e82007-05-05 11:45:53 -0700110 QOS_CONTROL_ACK_POLICY_SHIFT;
111 /* qos header is 2 bytes, second reserved */
Harvey Harrison002aaf42008-06-11 14:21:59 -0700112 *p++ = ack_policy | tid;
Jiri Bencf0706e82007-05-05 11:45:53 -0700113 *p = 0;
114 }
115
Jiri Bencf0706e82007-05-05 11:45:53 -0700116 return queue;
117}