-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWIFI.ino
314 lines (238 loc) · 8.66 KB
/
WIFI.ino
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
// Using WIFiMulti all networks in encrypted file /netpass are
// tried, if in reach. If no networks available in /netpass are
// found, smart config is started, and with the ESP touch app
// on a phone connected to the network you want to connect to
// you can supply the network passord to the Radio.
// Once connected succesfully, the radio will save the network
// and password in encrypted file /netpass.
// In wificredentials the iv and key needed for encryption and
// decryption should be defined as
// const char* gr_iv = "1234567890123456"; // length minimal 16
// const char* gr_key = "12345678901234567890123456789012"; // length minimal 32
// This is obviously not super safe, but protects against the dumbest
// attempts to get this sensitive information, and offers the benefit
// of automatic connection to several networks ( e.g. home, work and family)
#include <hwcrypto/aes.h>
struct netp{
uint8_t ssid[48]; // max 32
uint8_t pass[64]; //max 63
};
TaskHandle_t startwifiTask;
std::vector<struct netp> netpass;
uint8_t key[32];
uint8_t iv[16];
WiFiMulti wifiMulti;
fs::FS multifs = RadioFS;
//---------------------------------------------------------------------------------------
void WiFiLostIP(WiFiEvent_t event, WiFiEventInfo_t info)
{
tft_message( "Connection lost to", "network");
return;
}
//---------------------------------------------------------------------------------------
void add2netp( String nssid = WiFi.SSID(), String npsk = WiFi.psk() ){
bool foundssid = false;
for ( auto n : netpass ){
if ( !strcmp( (char *)n.ssid, nssid.c_str() ) ){
// Maybe the pasword changed? If so, change it.
if ( strcmp( (char *)n.pass, npsk.c_str() ) ){
memset( n.pass, 0, sizeof( n.pass ) );
strcpy( (char *)n.pass, npsk.c_str() );
}else{
foundssid = true;
}
break;
}
}
if ( !foundssid ) {
log_i( "add network %s", nssid.c_str() );
struct netp n;
strcpy( (char *)n.pass, npsk.c_str() );
strcpy( (char *)n.ssid, nssid.c_str() );
netpass.push_back( n );
netp2file();
}else{
log_i( "network %s already known", nssid.c_str() );
}
//displaynetp();
}
//---------------------------------------------------------------------------------------
void WiFiGotIP(WiFiEvent_t event, WiFiEventInfo_t info)
{
Serial.println("\n\nWiFi connected");
Serial.print("Obtained IP address: ");
Serial.print(WiFi.localIP());
Serial.print( " on WiFi network with SSID ");
Serial.println(WiFi.SSID() );
add2netp();
tft_message( "Connected to WiFi, IP address: " , WiFi.localIP().toString().c_str() );
tft_message( "Retrieving time from NTP server");
ntp_setup( true );
tellPixels( PIX_BLINKBLUE );
#ifdef USEOTA
initOTA( APNAME, APPAS );
#endif
tft_message( "Start radio");
startAfterWifi();
}
//---------------------------------------------------------------------------------------
void runWiFi( void *param){
//deleteFile(RadioFS, "/netpass");
#ifdef LOADSSIDS
log_d ("load ssids");
// this will crash if the arrays have no "" as last element.
for ( int i=0; wifiSsid[i][0] ; ++i ){
add2netp( wifiSsid[i] , wifiPassword[i] ); // add wifi and password in wificredentials
}
netpass.clear();
netpass.shrink_to_fit();
#endif
file2netp();
//displaynetp();
WiFi.setHostname( APNAME );
WiFi.onEvent(WiFiGotIP, WiFiEvent_t::SYSTEM_EVENT_STA_GOT_IP);
WiFi.onEvent(WiFiLostIP, WiFiEvent_t::SYSTEM_EVENT_STA_LOST_IP);
WiFi.mode(WIFI_STA);
log_i("Waiting for WiFi");
for ( int i=0 ; i < 10; ++i){
int mstatus;
if ( (mstatus = wifiMulti.run( 7000 )) == WL_CONNECTED) {
break;
}
Serial.printf( "%d mstatus = %d\n", i, mstatus);
#ifdef USESPTOUCH
if ( mstatus == 6) break;
#endif
delay(2000);
}
#ifdef USESPTOUCH
if ( WiFi.status() != WL_CONNECTED ){
//Init WiFi as Station, start SmartConfig
//WiFi.mode(WIFI_AP_STA);
tft_message("No network", "Use ESP Touch" );
WiFi.beginSmartConfig();
Serial.println("Started smartconfig");
// 5 minutes to connect using smartconfig
for (int i=0; !WiFi.smartConfigDone() && i < 300 ; ++i ) {
delay(500);
Serial.print(".");
}
if ( !WiFi.smartConfigDone() ){
Serial.printf( "\n%s stop of smartconfig. No WiFi.", WiFi.stopSmartConfig()?"Successful":"Failed");
}
}
#else
if ( WiFi.status() != WL_CONNECTED ){
tft_message("No known network found", "define more in wificredentials.h" );
}
#endif
delay(100);
netpass.clear();
netpass.shrink_to_fit();
vTaskDelete( NULL );
}
//---------------------------------------------------------------------------------------
void startWiFi(){
xTaskCreatePinnedToCore(
runWiFi, // Task to handle special functions.
"WiFiStart", // name of task.
1024*16, // Stack size of task
NULL, // parameter of the task
2, // priority of the task
&startwifiTask, // Task handle to keep track of created task
0 ); //core to run it on
}
//------------------------------------------------------------------------------
void netp2file(){
log_i("netp2file");
size_t netpsize = netpass.size() * sizeof ( struct netp );
memset( iv, 0, sizeof( iv ) );
snprintf( (char *) iv, sizeof( iv) , gr_iv); // gr_key and gr_iv defined in WiFicredentials.h
memset( key, 0, sizeof( key ) );
snprintf( (char *)key, sizeof( key), gr_key);
uint8_t* cryptbuf = (uint8_t *) gr_calloc( netpsize , sizeof( uint8_t) );
esp_aes_context ctx;
esp_aes_init( &ctx );
esp_aes_setkey( &ctx, key, 256 );
uint8_t *plain = (uint8_t *)netpass.data();
esp_aes_crypt_cbc( &ctx, ESP_AES_ENCRYPT, netpsize, iv, plain, cryptbuf );
/* //debug
Serial.printf("Encrypted\n");
for ( int i =0; i < netpsize; ++i ){
Serial.printf( "%02x",cryptbuf[i]);
if ( 0 == (i+1)%32)Serial.printf("\n");
}
*/
File file = multifs.open("/netpass", FILE_WRITE);
if(!file){
log_e("- failed to open /netpass for writing");
}else{
log_i("written %d bytes to /netpass", file.write( cryptbuf, netpsize ) );
}
free( cryptbuf );
esp_aes_free( &ctx );
}
//------------------------------------------------------------------------------
void file2netp(){
log_i("file2netp");
memset( iv, 0, sizeof( iv ) );
snprintf( (char *) iv, sizeof( iv) , gr_iv ); // to be defined in wificredentials as const char *encrypt_iv = "randomcharacterstobekeptsecret";
memset( key, 0, sizeof( key ) );
snprintf( (char *)key, sizeof( key), gr_key); // to be defined in wificredentials as const char *encrypt_key = "randomcharacterstobekeptsecret";
File file = multifs.open("/netpass");
if ( ! file ) {
log_e( "No netpass file found ");
return;
}
size_t filesize = file.size();
uint8_t* cryptbuf = (uint8_t *) gr_calloc( filesize, sizeof( uint8_t) );
file.read( cryptbuf, filesize );
file.close();
/* //debug
Serial.printf("Encrypted - from file with %d bytes\n", filesize);
for ( int i =0; i < filesize ; ++i ){
Serial.printf( "%02x",cryptbuf[i]);
if ( 0 == (i+1)%32)Serial.printf("\n");
}
Serial.printf( "\n");
*/
esp_aes_context ctx;
esp_aes_init( &ctx );
esp_aes_setkey( &ctx, key, 256 );
uint8_t* plainbuf = (uint8_t *) gr_calloc( filesize, sizeof( uint8_t) );
esp_aes_crypt_cbc( &ctx, ESP_AES_DECRYPT, filesize, iv, cryptbuf, plainbuf );
struct netp* n = (struct netp *) plainbuf;
size_t plaincount = filesize / sizeof ( struct netp);
for ( int i = 0; i < plaincount; ++i ){
netpass.push_back( *n );
//log_i("Adding ssid %s", (char *)n->ssid);
wifiMulti.addAP((char *)n->ssid, (char *)n->pass);
++n;
}
//log_i("read the following networks from file");
//displaynetp();
esp_aes_free( &ctx );
free( cryptbuf );
free( plainbuf );
}
//----debug--------------------------------------------------------------------------
/*
void displaynetp(){
int count=0;
log_i("Display netpass");
for ( auto n : netpass ){
Serial.printf( "[%s] - [%s]\n", n.ssid, n.pass );
count++;
}
log_i("Found %d networks\n", count);
}
//----debug-----------------------------------------------------------------------------
void deleteFile(fs::FS &fs, const char * path){
Serial.printf("Deleting file: %s\r\n", path);
if(fs.remove(path)){
Serial.println("- file deleted");
} else {
Serial.println("- delete failed");
}
}
*/