blob: 093a4ab7f28b3db97e2f26e842f0ee5cb3d58ad4 [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) {
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -070042 case htons(ETH_P_IP):
David S. Miller51cb6db2008-07-15 03:34:57 -070043 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 return dscp >> 5;
51}
52
53
David S. Miller51cb6db2008-07-15 03:34:57 -070054static int wme_downgrade_ac(struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -070055{
56 switch (skb->priority) {
57 case 6:
58 case 7:
59 skb->priority = 5; /* VO -> VI */
60 return 0;
61 case 4:
62 case 5:
63 skb->priority = 3; /* VI -> BE */
64 return 0;
65 case 0:
66 case 3:
67 skb->priority = 2; /* BE -> BK */
68 return 0;
69 default:
70 return -1;
71 }
72}
73
74
David S. Miller51cb6db2008-07-15 03:34:57 -070075/* Indicate which queue to use. */
Johannes Bergb4a4bf52008-09-26 13:34:54 +020076static u16 classify80211(struct ieee80211_local *local, struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -070077{
Jiri Bencf0706e82007-05-05 11:45:53 -070078 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Jiri Bencf0706e82007-05-05 11:45:53 -070079
Harvey Harrison002aaf42008-06-11 14:21:59 -070080 if (!ieee80211_is_data(hdr->frame_control)) {
Jiri Bencf0706e82007-05-05 11:45:53 -070081 /* management frames go on AC_VO queue, but are sent
82 * without QoS control fields */
Johannes Berge100bb62008-04-30 18:51:21 +020083 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -070084 }
85
Johannes Bergf9d540e2007-09-28 14:02:09 +020086 if (0 /* injected */) {
87 /* use AC from radiotap */
Jiri Bencf0706e82007-05-05 11:45:53 -070088 }
89
Harvey Harrison002aaf42008-06-11 14:21:59 -070090 if (!ieee80211_is_data_qos(hdr->frame_control)) {
Jiri Bencf0706e82007-05-05 11:45:53 -070091 skb->priority = 0; /* required for correct WPA/11i MIC */
92 return ieee802_1d_to_ac[skb->priority];
93 }
94
95 /* use the data classifier to determine what 802.1d tag the
Johannes Berg3c3b00c2007-08-28 17:01:55 -040096 * data frame has */
David S. Miller51cb6db2008-07-15 03:34:57 -070097 skb->priority = classify_1d(skb);
Jiri Bencf0706e82007-05-05 11:45:53 -070098
Johannes Berg3c3b00c2007-08-28 17:01:55 -040099 /* in case we are a client verify acm is not set for this ac */
Jiri Bencf0706e82007-05-05 11:45:53 -0700100 while (unlikely(local->wmm_acm & BIT(skb->priority))) {
101 if (wme_downgrade_ac(skb)) {
David S. Miller51cb6db2008-07-15 03:34:57 -0700102 /* The old code would drop the packet in this
103 * case.
104 */
105 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -0700106 }
107 }
108
109 /* look up which queue to use for frames with this 1d tag */
110 return ieee802_1d_to_ac[skb->priority];
111}
112
David S. Miller51cb6db2008-07-15 03:34:57 -0700113u16 ieee80211_select_queue(struct net_device *dev, struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700114{
Johannes Bergb4a4bf52008-09-26 13:34:54 +0200115 struct ieee80211_master_priv *mpriv = netdev_priv(dev);
116 struct ieee80211_local *local = mpriv->local;
Jiri Bencf0706e82007-05-05 11:45:53 -0700117 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
David S. Miller51cb6db2008-07-15 03:34:57 -0700118 u16 queue;
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200119 u8 tid;
Jiri Bencf0706e82007-05-05 11:45:53 -0700120
Johannes Bergb4a4bf52008-09-26 13:34:54 +0200121 queue = classify80211(local, skb);
David S. Miller51cb6db2008-07-15 03:34:57 -0700122 if (unlikely(queue >= local->hw.queues))
123 queue = local->hw.queues - 1;
124
Johannes Berg96f5e662009-02-12 00:51:53 +0100125 /*
126 * Now we know the 1d priority, fill in the QoS header if
127 * there is one (and we haven't done this before).
Jiri Bencf0706e82007-05-05 11:45:53 -0700128 */
Johannes Berg96f5e662009-02-12 00:51:53 +0100129 if (!skb->requeue && ieee80211_is_data_qos(hdr->frame_control)) {
Harvey Harrison002aaf42008-06-11 14:21:59 -0700130 u8 *p = ieee80211_get_qos_ctl(hdr);
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200131 u8 ack_policy = 0;
Harvey Harrison238f74a2008-07-02 11:05:34 -0700132 tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
Jiri Bencf0706e82007-05-05 11:45:53 -0700133 if (local->wifi_wme_noack_test)
Ron Rindjunsky9e723492008-01-28 14:07:18 +0200134 ack_policy |= QOS_CONTROL_ACK_POLICY_NOACK <<
Jiri Bencf0706e82007-05-05 11:45:53 -0700135 QOS_CONTROL_ACK_POLICY_SHIFT;
136 /* qos header is 2 bytes, second reserved */
Harvey Harrison002aaf42008-06-11 14:21:59 -0700137 *p++ = ack_policy | tid;
Jiri Bencf0706e82007-05-05 11:45:53 -0700138 *p = 0;
139 }
140
Jiri Bencf0706e82007-05-05 11:45:53 -0700141 return queue;
142}