2008-02-27 20:34:43 -05:00
|
|
|
/*
|
|
|
|
* hostapd / WMM (Wi-Fi Multimedia)
|
|
|
|
* Copyright 2002-2003, Instant802 Networks, Inc.
|
|
|
|
* Copyright 2005-2006, Devicescape Software, 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.
|
|
|
|
*
|
|
|
|
* Alternatively, this software may be distributed under the terms of BSD
|
|
|
|
* license.
|
|
|
|
*
|
|
|
|
* See README and COPYING for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef WME_H
|
|
|
|
#define WME_H
|
|
|
|
|
|
|
|
#ifdef __linux__
|
|
|
|
#include <endian.h>
|
|
|
|
#endif /* __linux__ */
|
|
|
|
|
|
|
|
#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__DragonFly__)
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/endian.h>
|
|
|
|
#endif /* defined(__FreeBSD__) || defined(__NetBSD__) ||
|
|
|
|
* defined(__DragonFly__) */
|
|
|
|
|
|
|
|
|
2009-03-04 05:33:24 -05:00
|
|
|
/*
|
|
|
|
* WMM Information Element (used in (Re)Association Request frames; may also be
|
|
|
|
* used in Beacon frames)
|
|
|
|
*/
|
|
|
|
struct wmm_information_element {
|
|
|
|
/* Element ID: 221 (0xdd); Length: 7 */
|
|
|
|
/* required fields for WMM version 1 */
|
|
|
|
u8 oui[3]; /* 00:50:f2 */
|
|
|
|
u8 oui_type; /* 2 */
|
|
|
|
u8 oui_subtype; /* 0 */
|
|
|
|
u8 version; /* 1 for WMM version 1.0 */
|
|
|
|
u8 qos_info; /* AP/STA specific QoS info */
|
2008-02-27 20:34:43 -05:00
|
|
|
|
|
|
|
} __attribute__ ((packed));
|
|
|
|
|
2009-03-04 05:33:24 -05:00
|
|
|
struct wmm_ac_parameter {
|
2008-02-27 20:34:43 -05:00
|
|
|
#if __BYTE_ORDER == __LITTLE_ENDIAN
|
2009-03-04 05:33:24 -05:00
|
|
|
/* byte 1: ACI/AIFSN */
|
2008-02-27 20:34:43 -05:00
|
|
|
u8 aifsn:4,
|
|
|
|
acm:1,
|
2009-03-04 05:33:24 -05:00
|
|
|
aci:2,
|
|
|
|
reserved:1;
|
2008-02-27 20:34:43 -05:00
|
|
|
|
2009-03-04 05:33:24 -05:00
|
|
|
/* byte 2: ECWmin/ECWmax (CW = 2^ECW - 1) */
|
|
|
|
u8 e_cw_min:4,
|
|
|
|
e_cw_max:4;
|
2008-02-27 20:34:43 -05:00
|
|
|
#elif __BYTE_ORDER == __BIG_ENDIAN
|
2009-03-04 05:33:24 -05:00
|
|
|
/* byte 1: ACI/AIFSN */
|
2008-02-27 20:34:43 -05:00
|
|
|
u8 reserved:1,
|
2009-03-04 05:33:24 -05:00
|
|
|
aci:2,
|
|
|
|
acm:1,
|
|
|
|
aifsn:4;
|
2008-02-27 20:34:43 -05:00
|
|
|
|
2009-03-04 05:33:24 -05:00
|
|
|
/* byte 2: ECWmin/ECWmax */
|
|
|
|
u8 e_cw_max:4,
|
|
|
|
e_cw_min:4;
|
2008-02-27 20:34:43 -05:00
|
|
|
#else
|
|
|
|
#error "Please fix <endian.h>"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* bytes 3 & 4 */
|
2009-03-04 05:33:24 -05:00
|
|
|
le16 txop_limit;
|
2008-02-27 20:34:43 -05:00
|
|
|
} __attribute__ ((packed));
|
|
|
|
|
2009-03-04 05:33:24 -05:00
|
|
|
/*
|
|
|
|
* WMM Parameter Element (used in Beacon, Probe Response, and (Re)Association
|
|
|
|
* Response frmaes)
|
|
|
|
*/
|
|
|
|
struct wmm_parameter_element {
|
|
|
|
/* Element ID: 221 (0xdd); Length: 24 */
|
|
|
|
/* required fields for WMM version 1 */
|
|
|
|
u8 oui[3]; /* 00:50:f2 */
|
|
|
|
u8 oui_type; /* 2 */
|
|
|
|
u8 oui_subtype; /* 1 */
|
|
|
|
u8 version; /* 1 for WMM version 1.0 */
|
|
|
|
u8 qos_info; /* AP/STA specif QoS info */
|
|
|
|
u8 reserved; /* 0 */
|
|
|
|
struct wmm_ac_parameter ac[4]; /* AC_BE, AC_BK, AC_VI, AC_VO */
|
2008-02-27 20:34:43 -05:00
|
|
|
|
|
|
|
} __attribute__ ((packed));
|
|
|
|
|
2009-03-04 05:33:24 -05:00
|
|
|
/* WMM TSPEC Element */
|
|
|
|
struct wmm_tspec_element {
|
|
|
|
u8 eid; /* 221 = 0xdd */
|
|
|
|
u8 length; /* 6 + 55 = 61 */
|
|
|
|
u8 oui[3]; /* 00:50:f2 */
|
|
|
|
u8 oui_type; /* 2 */
|
|
|
|
u8 oui_subtype; /* 2 */
|
|
|
|
u8 version; /* 1 */
|
|
|
|
/* WMM TSPEC body (55 octets): */
|
|
|
|
u8 ts_info[3];
|
|
|
|
le16 nominal_msdu_size;
|
|
|
|
le16 maximum_msdu_size;
|
|
|
|
le32 minimum_service_interval;
|
|
|
|
le32 maximum_service_interval;
|
|
|
|
le32 inactivity_interval;
|
|
|
|
le32 suspension_interval;
|
|
|
|
le32 service_start_time;
|
|
|
|
le32 minimum_data_rate;
|
|
|
|
le32 mean_data_rate;
|
|
|
|
le32 peak_data_rate;
|
|
|
|
le32 maximum_burst_size;
|
|
|
|
le32 delay_bound;
|
|
|
|
le32 minimum_phy_rate;
|
|
|
|
le16 surplus_bandwidth_allowance;
|
|
|
|
le16 medium_time;
|
2008-02-27 20:34:43 -05:00
|
|
|
} __attribute__ ((packed));
|
|
|
|
|
|
|
|
|
2009-03-04 05:33:24 -05:00
|
|
|
/* Access Categories / ACI to AC coding */
|
2008-02-27 20:34:43 -05:00
|
|
|
enum {
|
2009-03-04 05:33:24 -05:00
|
|
|
WMM_AC_BE = 0 /* Best Effort */,
|
|
|
|
WMM_AC_BK = 1 /* Background */,
|
|
|
|
WMM_AC_VI = 2 /* Video */,
|
|
|
|
WMM_AC_VO = 3 /* Voice */
|
2008-02-27 20:34:43 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ieee80211_mgmt;
|
|
|
|
|
2009-03-04 05:33:24 -05:00
|
|
|
u8 * hostapd_eid_wmm(struct hostapd_data *hapd, u8 *eid);
|
|
|
|
int hostapd_eid_wmm_valid(struct hostapd_data *hapd, u8 *eid, size_t len);
|
2009-01-08 11:40:14 -05:00
|
|
|
#ifdef NEED_MLME
|
2009-03-04 05:33:24 -05:00
|
|
|
int hostapd_wmm_sta_config(struct hostapd_data *hapd, struct sta_info *sta);
|
2009-01-08 11:40:14 -05:00
|
|
|
#else /* NEED_MLME */
|
2009-03-04 05:33:24 -05:00
|
|
|
static inline int hostapd_wmm_sta_config(struct hostapd_data *hapd,
|
2009-01-08 11:40:14 -05:00
|
|
|
struct sta_info *sta)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif /* NEED_MLME */
|
2009-03-04 05:33:24 -05:00
|
|
|
void hostapd_wmm_action(struct hostapd_data *hapd, struct ieee80211_mgmt *mgmt,
|
2008-02-27 20:34:43 -05:00
|
|
|
size_t len);
|
|
|
|
|
|
|
|
#endif /* WME_H */
|