forked from dpifke/golang-wpasupplicant
-
Notifications
You must be signed in to change notification settings - Fork 1
/
wpasupplicant.go
245 lines (205 loc) · 6.88 KB
/
wpasupplicant.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
// Copyright (c) 2017 Dave Pifke.
//
// Redistribution and use in source and binary forms, with or without
// modification, is permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// 3. Neither the name of the copyright holder nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
// Package wpasupplicant provides an interface for talking to the
// wpa_supplicant daemon.
//
// At the moment, this simply provides an interface for fetching wifi scan
// results. More functionality is (probably) coming soon.
package wpasupplicant
import (
"net"
)
// Cipher is one of the WPA_CIPHER constants from the wpa_supplicant source.
type Cipher int
const (
CIPHER_NONE Cipher = 1 << iota
WEP40
WEP104
TKIP
CCMP
AES_128_CMAC
GCMP
SMS4
GCMP_256
CCMP_256
_
BIP_GMAC_128
BIP_GMAC_256
BIP_CMAC_256
GTK_NOT_USED
)
// KeyMgmt is one of the WPA_KEY_MGMT constants from the wpa_supplicant
// source.
type KeyMgmt int
const (
IEEE8021X KeyMgmt = 1 << iota
PSK
KEY_MGMT_NONE
IEEE8021X_NO_WPA
WPA_NONE
FT_IEEE8021X
FT_PSK
IEEE8021X_SHA256
PSK_SHA256
WPS
SAE
FT_SAE
WAPI_PSK
WAPI_CERT
CCKM
OSEN
IEEE8021X_SUITE_B
IEEE8021X_SUITE_B_192
)
type Algorithm int
// ScanResult is a scanned BSS.
type ScanResult interface {
// BSSID is the MAC address of the BSS.
BSSID() net.HardwareAddr
// SSID is the SSID of the BSS.
SSID() string
// Frequency is the frequency, in Mhz, of the BSS.
Frequency() int
// RSSI is the received signal strength, in dB, of the BSS.
RSSI() int
// Flags is an array of flags, in string format, returned by the
// wpa_supplicant SCAN_RESULTS command. Future versions of this code
// will parse these into something more meaningful.
Flags() []string
}
// scanResult is a package-private implementation of ScanResult.
type scanResult struct {
bssid net.HardwareAddr
ssid string
frequency int
rssi int
flags []string
}
func (r *scanResult) BSSID() net.HardwareAddr { return r.bssid }
func (r *scanResult) SSID() string { return r.ssid }
func (r *scanResult) Frequency() int { return r.frequency }
func (r *scanResult) RSSI() int { return r.rssi }
func (r *scanResult) Flags() []string { return r.flags }
// ConfiguredNetwork is a configured network (from LIST_NETWORKS)
type ConfiguredNetwork interface {
NetworkID() string
SSID() string
BSSID() string
Flags() []string
}
type configuredNetwork struct {
networkID string
ssid string
bssid string // Since bssid can be any
flags []string
}
func (r *configuredNetwork) NetworkID() string { return r.networkID }
func (r *configuredNetwork) BSSID() string { return r.bssid }
func (r *configuredNetwork) SSID() string { return r.ssid }
func (r *configuredNetwork) Flags() []string { return r.flags }
type StatusResult interface {
WPAState() string
KeyMgmt() string
IPAddr() string
SSID() string
Address() string
BSSID() string
Freq() string
}
type statusResult struct {
wpaState string
keyMgmt string
ipAddr string
ssid string
address string
bssid string
freq string
}
func (s *statusResult) WPAState() string { return s.wpaState }
func (s *statusResult) KeyMgmt() string { return s.keyMgmt }
func (s *statusResult) IPAddr() string { return s.ipAddr }
func (s *statusResult) SSID() string { return s.ssid }
func (s *statusResult) Address() string { return s.address }
func (s *statusResult) BSSID() string { return s.bssid }
func (s *statusResult) Freq() string { return s.freq }
type WPAEvent struct {
Event string
Arguments map[string]string
Line string
}
// Conn is a connection to wpa_supplicant over one of its communication
// channels.
type Conn interface {
// Close closes the unixgram connection
Close() error
// Ping tests the connection. It returns nil if wpa_supplicant is
// responding.
Ping() error
// AddNetwork creates an empty network configuration. Returns the network
// ID.
AddNetwork() (int, error)
// SetNetwork configures a network property. Returns error if the property
// configuration failed.
SetNetwork(int, string, string) error
// EnableNetwork enables a network. Returns error if the command fails.
EnableNetwork(int) error
// EnableAllNetworks enables all configured networks. Returns error if the command fails.
EnableAllNetworks() error
// SelectNetwork selects a network (and disables the others).
SelectNetwork(int) error
// DisableNetwork disables a network.
DisableNetwork(int) error
// RemoveNetwork removes a network from the configuration.
RemoveNetwork(int) error
// RemoveAllNetworks removes all networks (basically running `REMOVE_NETWORK all`).
// Returns error if command fails.
RemoveAllNetworks() error
// SaveConfig stores the current network configuration to disk.
SaveConfig() error
// Reconfigure sends a RECONFIGURE command to the wpa_supplicant. Returns error when
// command fails.
Reconfigure() error
// Reassociate sends a REASSOCIATE command to the wpa_supplicant. Returns error when
// command fails.
Reassociate() error
// Reconnect sends a RECONNECT command to the wpa_supplicant. Returns error when
// command fails.
Reconnect() error
// ListNetworks returns the currently configured networks.
ListNetworks() ([]ConfiguredNetwork, error)
// Status returns current wpa_supplicant status
Status() (StatusResult, error)
// Scan triggers a new scan. Returns error if the wpa_supplicant does not
// return OK.
Scan() error
// ScanResult returns the latest scanning results. It returns a slice
// of scanned BSSs, and/or a slice of errors representing problems
// communicating with wpa_supplicant or parsing its output.
ScanResults() ([]ScanResult, []error)
EventQueue() chan WPAEvent
}