Blame view

net/mac80211/wme.c 3.6 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;
  	}
  }
cf0277e71   Johannes Berg   mac80211: fix skb...
53
54
55
  /* 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...
56
  {
cf0277e71   Johannes Berg   mac80211: fix skb...
57
58
  	struct ieee80211_local *local = sdata->local;
  	struct sta_info *sta = NULL;
cf0277e71   Johannes Berg   mac80211: fix skb...
59
60
  	const u8 *ra = NULL;
  	bool qos = false;
f0706e828   Jiri Benc   [MAC80211]: Add m...
61

cf0277e71   Johannes Berg   mac80211: fix skb...
62
63
  	if (local->hw.queues < 4 || skb->len < 6) {
  		skb->priority = 0; /* required for correct WPA/11i MIC */
172128468   Johannes Berg   mac80211: cleanup...
64
  		return min_t(u16, local->hw.queues - 1, IEEE80211_AC_BE);
cf0277e71   Johannes Berg   mac80211: fix skb...
65
66
67
68
69
  	}
  
  	rcu_read_lock();
  	switch (sdata->vif.type) {
  	case NL80211_IFTYPE_AP_VLAN:
cf0277e71   Johannes Berg   mac80211: fix skb...
70
  		sta = rcu_dereference(sdata->u.vlan.sta);
172128468   Johannes Berg   mac80211: cleanup...
71
  		if (sta) {
c2c98fdeb   Johannes Berg   mac80211: optimis...
72
  			qos = test_sta_flag(sta, WLAN_STA_WME);
cf0277e71   Johannes Berg   mac80211: fix skb...
73
  			break;
172128468   Johannes Berg   mac80211: cleanup...
74
  		}
cf0277e71   Johannes Berg   mac80211: fix skb...
75
76
77
78
79
80
81
82
  	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:
4777be416   Javier Cardona   mac80211: Start i...
83
  		ra = skb->data;
cf0277e71   Johannes Berg   mac80211: fix skb...
84
85
86
87
88
89
90
91
92
93
  		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...
94
  	}
cf0277e71   Johannes Berg   mac80211: fix skb...
95
96
97
  	if (!sta && ra && !is_multicast_ether_addr(ra)) {
  		sta = sta_info_get(sdata, ra);
  		if (sta)
c2c98fdeb   Johannes Berg   mac80211: optimis...
98
  			qos = test_sta_flag(sta, WLAN_STA_WME);
f0706e828   Jiri Benc   [MAC80211]: Add m...
99
  	}
cf0277e71   Johannes Berg   mac80211: fix skb...
100
101
102
  	rcu_read_unlock();
  
  	if (!qos) {
f0706e828   Jiri Benc   [MAC80211]: Add m...
103
  		skb->priority = 0; /* required for correct WPA/11i MIC */
172128468   Johannes Berg   mac80211: cleanup...
104
  		return IEEE80211_AC_BE;
f0706e828   Jiri Benc   [MAC80211]: Add m...
105
106
107
  	}
  
  	/* use the data classifier to determine what 802.1d tag the
3c3b00caf   Johannes Berg   [MAC80211]: clean...
108
  	 * data frame has */
e31a16d6f   Zhu Yi   wireless: move so...
109
  	skb->priority = cfg80211_classify8021d(skb);
f0706e828   Jiri Benc   [MAC80211]: Add m...
110

cf0277e71   Johannes Berg   mac80211: fix skb...
111
112
113
114
115
116
  	return ieee80211_downgrade_queue(local, skb);
  }
  
  u16 ieee80211_downgrade_queue(struct ieee80211_local *local,
  			      struct sk_buff *skb)
  {
3c3b00caf   Johannes Berg   [MAC80211]: clean...
117
  	/* in case we are a client verify acm is not set for this ac */
f0706e828   Jiri Benc   [MAC80211]: Add m...
118
119
  	while (unlikely(local->wmm_acm & BIT(skb->priority))) {
  		if (wme_downgrade_ac(skb)) {
0eeb59fe2   Jouni Malinen   mac80211: Fix WMM...
120
121
122
123
124
  			/*
  			 * 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...
125
  			 */
0eeb59fe2   Jouni Malinen   mac80211: Fix WMM...
126
  			break;
f0706e828   Jiri Benc   [MAC80211]: Add m...
127
128
129
130
131
132
  		}
  	}
  
  	/* 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...
133
134
  void ieee80211_set_qos_hdr(struct ieee80211_sub_if_data *sdata,
  			   struct sk_buff *skb)
f0706e828   Jiri Benc   [MAC80211]: Add m...
135
  {
cf0277e71   Johannes Berg   mac80211: fix skb...
136
137
138
  	struct ieee80211_hdr *hdr = (void *)skb->data;
  
  	/* Fill in the QoS header if there is one. */
8f77f3849   Johannes Berg   mac80211: do not ...
139
  	if (ieee80211_is_data_qos(hdr->frame_control)) {
002aaf4ea   Harvey Harrison   mac80211: wme.c u...
140
  		u8 *p = ieee80211_get_qos_ctl(hdr);
cf0277e71   Johannes Berg   mac80211: fix skb...
141
  		u8 ack_policy = 0, tid;
238f74a22   Harvey Harrison   mac80211: move QO...
142
  		tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
cf0277e71   Johannes Berg   mac80211: fix skb...
143

2154c81c3   Javier Cardona   mac80211: Mesh da...
144
  		if (unlikely(sdata->local->wifi_wme_noack_test))
04b7dcf97   Johannes Berg   wireless: unify Q...
145
  			ack_policy |= IEEE80211_QOS_CTL_ACK_POLICY_NOACK;
2154c81c3   Javier Cardona   mac80211: Mesh da...
146
  		/* qos header is 2 bytes */
002aaf4ea   Harvey Harrison   mac80211: wme.c u...
147
  		*p++ = ack_policy | tid;
2154c81c3   Javier Cardona   mac80211: Mesh da...
148
149
  		*p = ieee80211_vif_is_mesh(&sdata->vif) ?
  			(IEEE80211_QOS_CTL_MESH_CONTROL_PRESENT >> 8) : 0;
f0706e828   Jiri Benc   [MAC80211]: Add m...
150
  	}
f0706e828   Jiri Benc   [MAC80211]: Add m...
151
  }