ieee80211_ioctl.h revision 1.2 1 /*-
2 * Copyright (c) 2001 Atsushi Onoe
3 * Copyright (c) 2002, 2003 Sam Leffler, Errno Consulting
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * Alternatively, this software may be distributed under the terms of the
18 * GNU General Public License ("GPL") version 2 as published by the Free
19 * Software Foundation.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 * $FreeBSD: src/sys/net80211/ieee80211_ioctl.h,v 1.2 2003/06/27 05:13:52 sam Exp $
33 */
34 #ifndef _NET80211_IEEE80211_IOCTL_H_
35 #define _NET80211_IEEE80211_IOCTL_H_
36
37 /*
38 * IEEE 802.11 ioctls.
39 */
40
41 #ifdef __FreeBSD__
42 /*
43 * FreeBSD-style ioctls.
44 */
45 /* the first member must be matched with struct ifreq */
46 struct ieee80211req {
47 char i_name[IFNAMSIZ]; /* if_name, e.g. "wi0" */
48 u_int16_t i_type; /* req type */
49 int16_t i_val; /* Index or simple value */
50 int16_t i_len; /* Index or simple value */
51 void *i_data; /* Extra data */
52 };
53 #define SIOCS80211 _IOW('i', 234, struct ieee80211req)
54 #define SIOCG80211 _IOWR('i', 235, struct ieee80211req)
55
56 #define IEEE80211_IOC_SSID 1
57 #define IEEE80211_IOC_NUMSSIDS 2
58 #define IEEE80211_IOC_WEP 3
59 #define IEEE80211_WEP_NOSUP -1
60 #define IEEE80211_WEP_OFF 0
61 #define IEEE80211_WEP_ON 1
62 #define IEEE80211_WEP_MIXED 2
63 #define IEEE80211_IOC_WEPKEY 4
64 #define IEEE80211_IOC_NUMWEPKEYS 5
65 #define IEEE80211_IOC_WEPTXKEY 6
66 #define IEEE80211_IOC_AUTHMODE 7
67 #define IEEE80211_IOC_STATIONNAME 8
68 #define IEEE80211_IOC_CHANNEL 9
69 #define IEEE80211_IOC_POWERSAVE 10
70 #define IEEE80211_POWERSAVE_NOSUP -1
71 #define IEEE80211_POWERSAVE_OFF 0
72 #define IEEE80211_POWERSAVE_CAM 1
73 #define IEEE80211_POWERSAVE_PSP 2
74 #define IEEE80211_POWERSAVE_PSP_CAM 3
75 #define IEEE80211_POWERSAVE_ON IEEE80211_POWERSAVE_CAM
76 #define IEEE80211_IOC_POWERSAVESLEEP 11
77 #define IEEE80211_IOCT_RTSTHRESHOLD 12 /* why IOCT_ ? */
78
79 #ifndef IEEE80211_CHAN_ANY
80 #define IEEE80211_CHAN_ANY 0xffff /* token for ``any channel'' */
81 #endif
82 #endif /* __FreeBSD__ */
83
84 #ifdef __NetBSD__
85 /* nwid is pointed at by ifr.ifr_data */
86 struct ieee80211_nwid {
87 u_int8_t i_len;
88 u_int8_t i_nwid[IEEE80211_NWID_LEN];
89 };
90
91 #define SIOCS80211NWID _IOWR('i', 230, struct ifreq)
92 #define SIOCG80211NWID _IOWR('i', 231, struct ifreq)
93
94 /* the first member must be matched with struct ifreq */
95 struct ieee80211_nwkey {
96 char i_name[IFNAMSIZ]; /* if_name, e.g. "wi0" */
97 int i_wepon; /* wep enabled flag */
98 int i_defkid; /* default encrypt key id */
99 struct {
100 int i_keylen;
101 u_int8_t *i_keydat;
102 } i_key[IEEE80211_WEP_NKID];
103 };
104 #define SIOCS80211NWKEY _IOW('i', 232, struct ieee80211_nwkey)
105 #define SIOCG80211NWKEY _IOWR('i', 233, struct ieee80211_nwkey)
106 /* i_wepon */
107 #define IEEE80211_NWKEY_OPEN 0 /* No privacy */
108 #define IEEE80211_NWKEY_WEP 1 /* WEP enabled */
109 #define IEEE80211_NWKEY_EAP 2 /* EAP enabled */
110 #define IEEE80211_NWKEY_PERSIST 0x100 /* designate persist keyset */
111
112 /* power management parameters */
113 struct ieee80211_power {
114 char i_name[IFNAMSIZ]; /* if_name, e.g. "wi0" */
115 int i_enabled; /* 1 == on, 0 == off */
116 int i_maxsleep; /* max sleep in ms */
117 };
118 #define SIOCS80211POWER _IOW('i', 234, struct ieee80211_power)
119 #define SIOCG80211POWER _IOWR('i', 235, struct ieee80211_power)
120
121 struct ieee80211_auth {
122 char i_name[IFNAMSIZ]; /* if_name, e.g. "wi0" */
123 int i_authtype;
124 };
125
126 #define IEEE80211_AUTH_NONE 0
127 #define IEEE80211_AUTH_OPEN 1
128 #define IEEE80211_AUTH_SHARED 2
129
130 #define SIOCS80211AUTH _IOW('i', 236, struct ieee80211_auth)
131 #define SIOCG80211AUTH _IOWR('i', 237, struct ieee80211_auth)
132
133 struct ieee80211_channel {
134 char i_name[IFNAMSIZ]; /* if_name, e.g. "wi0" */
135 u_int16_t i_channel;
136 };
137
138 #define IEEE80211_CHAN_ANY 0xffff
139 #define IEEE80211_CHAN_ANYC IEEE80211_CHAN_ANY /* XXX make NULL */
140
141 #define SIOCS80211CHANNEL _IOW('i', 238, struct ieee80211_channel)
142 #define SIOCG80211CHANNEL _IOWR('i', 239, struct ieee80211_channel)
143
144 struct ieee80211_bssid {
145 char i_name[IFNAMSIZ]; /* if_name, e.g. "wi0" */
146 u_int8_t i_bssid[IEEE80211_ADDR_LEN];
147 };
148
149 #define SIOCS80211BSSID _IOW('i', 240, struct ieee80211_bssid)
150 #define SIOCG80211BSSID _IOWR('i', 241, struct ieee80211_bssid)
151 #endif
152
153 #endif /* _NET80211_IEEE80211_IOCTL_H_ */
154