Blame view

net/mac80211/wme.c 4.39 KB
f0706e828   Jiri Benc   [MAC80211]: Add m...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  /*
   * Copyright 2004, Instant802 Networks, Inc.
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License version 2 as
   * published by the Free Software Foundation.
   */
  
  #include <linux/netdevice.h>
  #include <linux/skbuff.h>
  #include <linux/module.h>
  #include <linux/if_arp.h>
  #include <linux/types.h>
  #include <net/ip.h>
  #include <net/pkt_sched.h>
  
  #include <net/mac80211.h>
  #include "ieee80211_i.h"
  #include "wme.h"
51cb6db0f   David S. Miller   mac80211: Reimple...
20
  /* Default mapping in classifier to work with default
e100bb64b   Johannes Berg   mac80211: QoS rel...
21
22
   * queue setup.
   */
4bce22b9b   Johannes Berg   mac80211: defines...
23
24
25
26
27
28
29
30
31
32
  const int ieee802_1d_to_ac[8] = {
  	IEEE80211_AC_BE,
  	IEEE80211_AC_BK,
  	IEEE80211_AC_BK,
  	IEEE80211_AC_BE,
  	IEEE80211_AC_VI,
  	IEEE80211_AC_VI,
  	IEEE80211_AC_VO,
  	IEEE80211_AC_VO
  };
f0706e828   Jiri Benc   [MAC80211]: Add m...
33

51cb6db0f   David S. Miller   mac80211: Reimple...
34
  static int wme_downgrade_ac(struct sk_buff *skb)
f0706e828   Jiri Benc   [MAC80211]: Add m...
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
  {
  	switch (skb->priority) {
  	case 6:
  	case 7:
  		skb->priority = 5; /* VO -> VI */
  		return 0;
  	case 4:
  	case 5:
  		skb->priority = 3; /* VI -> BE */
  		return 0;
  	case 0:
  	case 3:
  		skb->priority = 2; /* BE -> BK */
  		return 0;
  	default:
  		return -1;
  	}
  }
d3c1597b8   Thomas Pedersen   mac80211: fix for...
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
  /* Indicate which queue to use for this fully formed 802.11 frame */
  u16 ieee80211_select_queue_80211(struct ieee80211_local *local,
  				 struct sk_buff *skb,
  				 struct ieee80211_hdr *hdr)
  {
  	u8 *p;
  
  	if (local->hw.queues < 4)
  		return 0;
  
  	if (!ieee80211_is_data(hdr->frame_control)) {
  		skb->priority = 7;
  		return ieee802_1d_to_ac[skb->priority];
  	}
  	if (!ieee80211_is_data_qos(hdr->frame_control)) {
  		skb->priority = 0;
  		return ieee802_1d_to_ac[skb->priority];
  	}
  
  	p = ieee80211_get_qos_ctl(hdr);
  	skb->priority = *p & IEEE80211_QOS_CTL_TAG1D_MASK;
  
  	return ieee80211_downgrade_queue(local, skb);
  }
f0706e828   Jiri Benc   [MAC80211]: Add m...
77

cf0277e71   Johannes Berg   mac80211: fix skb...
78
79
80
  /* Indicate which queue to use. */
  u16 ieee80211_select_queue(struct ieee80211_sub_if_data *sdata,
  			   struct sk_buff *skb)
f0706e828   Jiri Benc   [MAC80211]: Add m...
81
  {
cf0277e71   Johannes Berg   mac80211: fix skb...
82
83
  	struct ieee80211_local *local = sdata->local;
  	struct sta_info *sta = NULL;
cf0277e71   Johannes Berg   mac80211: fix skb...
84
85
  	const u8 *ra = NULL;
  	bool qos = false;
f0706e828   Jiri Benc   [MAC80211]: Add m...
86

cf0277e71   Johannes Berg   mac80211: fix skb...
87
88
  	if (local->hw.queues < 4 || skb->len < 6) {
  		skb->priority = 0; /* required for correct WPA/11i MIC */
172128468   Johannes Berg   mac80211: cleanup...
89
  		return min_t(u16, local->hw.queues - 1, IEEE80211_AC_BE);
cf0277e71   Johannes Berg   mac80211: fix skb...
90
91
92
93
94
  	}
  
  	rcu_read_lock();
  	switch (sdata->vif.type) {
  	case NL80211_IFTYPE_AP_VLAN:
cf0277e71   Johannes Berg   mac80211: fix skb...
95
  		sta = rcu_dereference(sdata->u.vlan.sta);
172128468   Johannes Berg   mac80211: cleanup...
96
  		if (sta) {
c2c98fdeb   Johannes Berg   mac80211: optimis...
97
  			qos = test_sta_flag(sta, WLAN_STA_WME);
cf0277e71   Johannes Berg   mac80211: fix skb...
98
  			break;
172128468   Johannes Berg   mac80211: cleanup...
99
  		}
cf0277e71   Johannes Berg   mac80211: fix skb...
100
101
102
103
104
105
106
107
  	case NL80211_IFTYPE_AP:
  		ra = skb->data;
  		break;
  	case NL80211_IFTYPE_WDS:
  		ra = sdata->u.wds.remote_addr;
  		break;
  #ifdef CONFIG_MAC80211_MESH
  	case NL80211_IFTYPE_MESH_POINT:
d0ce1855e   Javier Cardona   mac80211: simplif...
108
  		qos = true;
cf0277e71   Johannes Berg   mac80211: fix skb...
109
110
111
112
113
114
115
116
117
118
  		break;
  #endif
  	case NL80211_IFTYPE_STATION:
  		ra = sdata->u.mgd.bssid;
  		break;
  	case NL80211_IFTYPE_ADHOC:
  		ra = skb->data;
  		break;
  	default:
  		break;
f0706e828   Jiri Benc   [MAC80211]: Add m...
119
  	}
cf0277e71   Johannes Berg   mac80211: fix skb...
120
121
122
  	if (!sta && ra && !is_multicast_ether_addr(ra)) {
  		sta = sta_info_get(sdata, ra);
  		if (sta)
c2c98fdeb   Johannes Berg   mac80211: optimis...
123
  			qos = test_sta_flag(sta, WLAN_STA_WME);
f0706e828   Jiri Benc   [MAC80211]: Add m...
124
  	}
cf0277e71   Johannes Berg   mac80211: fix skb...
125
126
127
  	rcu_read_unlock();
  
  	if (!qos) {
f0706e828   Jiri Benc   [MAC80211]: Add m...
128
  		skb->priority = 0; /* required for correct WPA/11i MIC */
172128468   Johannes Berg   mac80211: cleanup...
129
  		return IEEE80211_AC_BE;
f0706e828   Jiri Benc   [MAC80211]: Add m...
130
131
132
  	}
  
  	/* use the data classifier to determine what 802.1d tag the
3c3b00caf   Johannes Berg   [MAC80211]: clean...
133
  	 * data frame has */
e31a16d6f   Zhu Yi   wireless: move so...
134
  	skb->priority = cfg80211_classify8021d(skb);
f0706e828   Jiri Benc   [MAC80211]: Add m...
135

cf0277e71   Johannes Berg   mac80211: fix skb...
136
137
138
139
140
141
  	return ieee80211_downgrade_queue(local, skb);
  }
  
  u16 ieee80211_downgrade_queue(struct ieee80211_local *local,
  			      struct sk_buff *skb)
  {
3c3b00caf   Johannes Berg   [MAC80211]: clean...
142
  	/* in case we are a client verify acm is not set for this ac */
f0706e828   Jiri Benc   [MAC80211]: Add m...
143
144
  	while (unlikely(local->wmm_acm & BIT(skb->priority))) {
  		if (wme_downgrade_ac(skb)) {
0eeb59fe2   Jouni Malinen   mac80211: Fix WMM...
145
146
147
148
149
  			/*
  			 * This should not really happen. The AP has marked all
  			 * lower ACs to require admission control which is not
  			 * a reasonable configuration. Allow the frame to be
  			 * transmitted using AC_BK as a workaround.
51cb6db0f   David S. Miller   mac80211: Reimple...
150
  			 */
0eeb59fe2   Jouni Malinen   mac80211: Fix WMM...
151
  			break;
f0706e828   Jiri Benc   [MAC80211]: Add m...
152
153
154
155
156
157
  		}
  	}
  
  	/* look up which queue to use for frames with this 1d tag */
  	return ieee802_1d_to_ac[skb->priority];
  }
2154c81c3   Javier Cardona   mac80211: Mesh da...
158
159
  void ieee80211_set_qos_hdr(struct ieee80211_sub_if_data *sdata,
  			   struct sk_buff *skb)
f0706e828   Jiri Benc   [MAC80211]: Add m...
160
  {
cf0277e71   Johannes Berg   mac80211: fix skb...
161
  	struct ieee80211_hdr *hdr = (void *)skb->data;
b53be7920   Simon Wunderlich   mac80211: Add NoA...
162
  	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
cf0277e71   Johannes Berg   mac80211: fix skb...
163
164
  
  	/* Fill in the QoS header if there is one. */
8f77f3849   Johannes Berg   mac80211: do not ...
165
  	if (ieee80211_is_data_qos(hdr->frame_control)) {
002aaf4ea   Harvey Harrison   mac80211: wme.c u...
166
  		u8 *p = ieee80211_get_qos_ctl(hdr);
68629c613   Johannes Berg   mac80211: preserv...
167
  		u8 ack_policy, tid;
cf0277e71   Johannes Berg   mac80211: fix skb...
168

238f74a22   Harvey Harrison   mac80211: move QO...
169
  		tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
cf0277e71   Johannes Berg   mac80211: fix skb...
170

68629c613   Johannes Berg   mac80211: preserv...
171
172
  		/* preserve EOSP bit */
  		ack_policy = *p & IEEE80211_QOS_CTL_EOSP;
b53be7920   Simon Wunderlich   mac80211: Add NoA...
173
174
  		if (is_multicast_ether_addr(hdr->addr1) ||
  		    sdata->noack_map & BIT(tid)) {
04b7dcf97   Johannes Berg   wireless: unify Q...
175
  			ack_policy |= IEEE80211_QOS_CTL_ACK_POLICY_NOACK;
b53be7920   Simon Wunderlich   mac80211: Add NoA...
176
177
  			info->flags |= IEEE80211_TX_CTL_NO_ACK;
  		}
2154c81c3   Javier Cardona   mac80211: Mesh da...
178
  		/* qos header is 2 bytes */
002aaf4ea   Harvey Harrison   mac80211: wme.c u...
179
  		*p++ = ack_policy | tid;
2154c81c3   Javier Cardona   mac80211: Mesh da...
180
181
  		*p = ieee80211_vif_is_mesh(&sdata->vif) ?
  			(IEEE80211_QOS_CTL_MESH_CONTROL_PRESENT >> 8) : 0;
f0706e828   Jiri Benc   [MAC80211]: Add m...
182
  	}
f0706e828   Jiri Benc   [MAC80211]: Add m...
183
  }