libiwinfo: madwifi fixes, use direct ioctl calls for vap creation, ifup and ifdown...
[project/luci.git] / contrib / package / iwinfo / src / include / madwifi.h
1 /*
2  * Header bits derived from MadWifi source:
3  *   Copyright (c) 2001 Atsushi Onoe
4  *   Copyright (c) 2002-2005 Sam Leffler, Errno Consulting
5  *   All rights reserved.
6  *
7  * Distributed under the terms of the GPLv2 license.
8  *
9  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
10  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
11  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
12  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
13  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
14  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
15  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
16  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
17  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
18  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
19  */
20
21 #ifndef _MADWIFI_H
22 #define _MADWIFI_H
23
24 /* ieee80211.h */
25 #define IEEE80211_ADDR_LEN              6
26 #define IEEE80211_RATE_VAL              0x7f
27
28
29 /* ieee80211_crypto.h */
30 #define IEEE80211_KEYBUF_SIZE           16
31 #define IEEE80211_MICBUF_SIZE           16
32 #define IEEE80211_TID_SIZE                      17
33
34 #define IEEE80211_CIPHER_WEP            0
35 #define IEEE80211_CIPHER_TKIP           1
36 #define IEEE80211_CIPHER_AES_OCB        2
37 #define IEEE80211_CIPHER_AES_CCM        3
38 #define IEEE80211_CIPHER_CKIP           5
39 #define IEEE80211_CIPHER_NONE           6
40 #define IEEE80211_CIPHER_MAX            (IEEE80211_CIPHER_NONE + 1)
41
42
43 /* ieee80211_ioctl.h */
44 #define IEEE80211_KEY_DEFAULT           0x80
45 #define IEEE80211_CHAN_MAX                      255
46 #define IEEE80211_CHAN_BYTES            32
47 #define IEEE80211_RATE_MAXSIZE          15
48
49 #define IEEE80211_IOCTL_GETKEY          (SIOCDEVPRIVATE+3)
50 #define IEEE80211_IOCTL_STA_STATS       (SIOCDEVPRIVATE+5)
51 #define IEEE80211_IOCTL_STA_INFO        (SIOCDEVPRIVATE+6)
52
53 #define IEEE80211_IOCTL_GETPARAM        (SIOCIWFIRSTPRIV+1)
54 #define IEEE80211_IOCTL_GETMODE         (SIOCIWFIRSTPRIV+3)
55 #define IEEE80211_IOCTL_GETCHANLIST     (SIOCIWFIRSTPRIV+7)
56 #define IEEE80211_IOCTL_GETCHANINFO     (SIOCIWFIRSTPRIV+13)
57
58 #define SIOC80211IFCREATE                       (SIOCDEVPRIVATE+7)
59 #define SIOC80211IFDESTROY                      (SIOCDEVPRIVATE+8)
60
61 #define IEEE80211_CLONE_BSSID   0x0001  /* allocate unique mac/bssid */
62 #define IEEE80211_NO_STABEACONS 0x0002  /* Do not setup the station beacon timers */
63
64 struct ieee80211_clone_params {
65         char icp_name[IFNAMSIZ];                /* device name */
66         u_int16_t icp_opmode;                   /* operating mode */
67         u_int16_t icp_flags;                    /* see below */
68 };
69
70 enum ieee80211_opmode {
71         IEEE80211_M_STA         = 1,    /* infrastructure station */
72         IEEE80211_M_IBSS        = 0,    /* IBSS (adhoc) station */
73         IEEE80211_M_AHDEMO      = 3,    /* Old lucent compatible adhoc demo */
74         IEEE80211_M_HOSTAP      = 6,    /* Software Access Point */
75         IEEE80211_M_MONITOR     = 8,    /* Monitor mode */
76         IEEE80211_M_WDS         = 2,    /* WDS link */
77 };
78
79 enum {
80         IEEE80211_PARAM_AUTHMODE                = 3,    /* authentication mode */
81         IEEE80211_PARAM_MCASTCIPHER             = 5,    /* multicast/default cipher */
82         IEEE80211_PARAM_MCASTKEYLEN             = 6,    /* multicast key length */
83         IEEE80211_PARAM_UCASTCIPHERS    = 7,    /* unicast cipher suites */
84         IEEE80211_PARAM_WPA                             = 10,   /* WPA mode (0,1,2) */
85 };
86
87 /*
88  * Authentication mode.
89  */
90 enum ieee80211_authmode {
91         IEEE80211_AUTH_NONE     = 0,
92         IEEE80211_AUTH_OPEN     = 1,    /* open */
93         IEEE80211_AUTH_SHARED   = 2,    /* shared-key */
94         IEEE80211_AUTH_8021X    = 3,    /* 802.1x */
95         IEEE80211_AUTH_AUTO     = 4,    /* auto-select/accept */
96         /* NB: these are used only for ioctls */
97         IEEE80211_AUTH_WPA      = 5,    /* WPA/RSN w/ 802.1x/PSK */
98 };
99
100 struct ieee80211_channel {
101         u_int16_t ic_freq;      /* setting in MHz */
102         u_int16_t ic_flags;     /* see below */
103         u_int8_t ic_ieee;       /* IEEE channel number */
104         int8_t ic_maxregpower;  /* maximum regulatory tx power in dBm */
105         int8_t ic_maxpower;     /* maximum tx power in dBm */
106         int8_t ic_minpower;     /* minimum tx power in dBm */
107         u_int8_t ic_scanflags;
108         u_int8_t ic_idletime; /* phy idle time in % */
109 };
110
111 struct ieee80211req_key {
112         u_int8_t ik_type;               /* key/cipher type */
113         u_int8_t ik_pad;
114         u_int16_t ik_keyix;     /* key index */
115         u_int8_t ik_keylen;             /* key length in bytes */
116         u_int8_t ik_flags;
117         u_int8_t ik_macaddr[IEEE80211_ADDR_LEN];
118         u_int64_t ik_keyrsc;            /* key receive sequence counter */
119         u_int64_t ik_keytsc;            /* key transmit sequence counter */
120         u_int8_t ik_keydata[IEEE80211_KEYBUF_SIZE+IEEE80211_MICBUF_SIZE];
121 };
122
123 struct ieee80211req_chanlist {
124         u_int8_t ic_channels[IEEE80211_CHAN_BYTES];
125 };
126
127 struct ieee80211req_chaninfo {
128         u_int ic_nchans;
129         struct ieee80211_channel ic_chans[IEEE80211_CHAN_MAX];
130 };
131
132 struct ieee80211req_sta_info {
133         u_int16_t isi_len;              /* length (mult of 4) */
134         u_int16_t isi_freq;             /* MHz */
135         u_int16_t isi_flags;            /* channel flags */
136         u_int16_t isi_state;            /* state flags */
137         u_int8_t isi_authmode;          /* authentication algorithm */
138         u_int8_t isi_rssi;
139         int8_t isi_noise;
140         u_int16_t isi_capinfo;          /* capabilities */
141         u_int8_t isi_athflags;          /* Atheros capabilities */
142         u_int8_t isi_erp;               /* ERP element */
143         u_int8_t isi_macaddr[IEEE80211_ADDR_LEN];
144         u_int8_t isi_nrates;            /* negotiated rates */
145         u_int8_t isi_rates[IEEE80211_RATE_MAXSIZE];
146         u_int8_t isi_txrate;            /* index to isi_rates[] */
147         u_int16_t isi_ie_len;           /* IE length */
148         u_int16_t isi_associd;          /* assoc response */
149         u_int16_t isi_txpower;          /* current tx power */
150         u_int16_t isi_vlan;             /* vlan tag */
151         u_int16_t isi_txseqs[17];       /* seq to be transmitted */
152         u_int16_t isi_rxseqs[17];       /* seq previous for qos frames*/
153         u_int16_t isi_inact;            /* inactivity timer */
154         u_int8_t isi_uapsd;             /* UAPSD queues */
155         u_int8_t isi_opmode;            /* sta operating mode */
156 };
157
158 #endif