aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/fil/libre/repwifiapp/helpers/Engine.java
blob: cdddb0bdc02dab3e4bcdf2f522870b660d0e074a (plain)
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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
//
// Copyright 2017 Filippo "Fil" Bergamo <fil.bergamo@riseup.net>
// 
// This file is part of RepWifiApp.
//
// RepWifiApp is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// 
// RepWifiApp is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
// 
// You should have received a copy of the GNU General Public License
// along with RepWifiApp.  If not, see <http://www.gnu.org/licenses/>.
// 
// ********************************************************************

package fil.libre.repwifiapp.helpers;

import fil.libre.repwifiapp.Commons;


public abstract class Engine implements IEngine{

	protected String getCmdWpaSup(){
		return "wpa_supplicant -B -dd -i" + Commons.INTERFACE_NAME + " -C\"" +Commons.SOCKET_DIR + "\" -P\"" + Commons.PID_FILE + "\"";
	}
	
	protected String getCmdWpaCli() {
		return "wpa_cli -p" + Commons.SOCKET_DIR + " -P" + Commons.PID_FILE  + " -i" + Commons.INTERFACE_NAME;
	}
		
	protected abstract String getCmdWpaStart();
	
	public static final String DNS1 = "193.183.98.154";
	public static final String DNS2 = "87.98.175.85";
		
	public boolean deleteFileIfExists(String filePath){

		if (filePath == null){
			return false;
		}

		if (filePath.contains("*")){
			//it's safer to reject bulk rm'ing
			return false;
		}

		if (filePath.contains(" -r ")){
			//only file rm'ing acceppted
			return false;
		}

		return executeRootCmd("if [ -e \""+ filePath + "\" ]; then rm \"" + filePath + "\"; fi");
	}

	public boolean chmodFile(String filePath, String mod){
		return executeRootCmd("chmod " + mod + " \"" + filePath + "\"");
	}

	@Override
	public boolean killPreviousConnections() {

		Utils.logDebug("killing wpa_supplicant..:");
		if (executeRootCmd("killall -SIGINT wpa_supplicant")){
			Utils.logDebug("Killed wpa_supplicant"); 
		}else{
			Utils.logDebug("Wpa_supplicant NOT killed.");
		}

		Utils.logDebug("killing dhcpcd..");
		if (executeRootCmd("killall -SIGINT dhcpcd")){
			Utils.logDebug("Killed dhcpcd"); 
		}else{
			Utils.logDebug("dhcpcd NOT killed.");
		}
		
			
		return true;
	
	}

	@Override
	public boolean clearWorkingDir(){

		Utils.logDebug("clearWorkingDir():");

		if (executeRootCmd("rm -r " + Commons.SOCKET_DIR)){
			Utils.logDebug("removed socket dir");
		}

		if (executeRootCmd("rm " + Commons.ENTROPY_FILE)){
			Utils.logDebug("removed entropy file");
		}

		if (executeRootCmd("rm " + Commons.PID_FILE)){
			Utils.logDebug("removed pidfile");
		}

		if (executeRootCmd("rm " + Commons.SOFTAP_FILE)){
			Utils.logDebug("removed softap file");
		}

		if (executeRootCmd("rm " + Commons.WPA_CONF)){
			Utils.logDebug("removed wpa conf file");
		}

		if (executeRootCmd("rm " + Commons.P2P_CONF)){
			Utils.logDebug("removed p2p conf file");
		}

	
		return true;

	}

	@Override
	public boolean startWpaSupplicant(){

		Utils.logDebug("startWpaSupplicant():");

		if (executeRootCmd(getCmdWpaSup())){
			return true;
		}else{
			Utils.logDebug("Failed to start wpa");
			return false;
		}

	}

	@Override
	public AccessPointInfo[] getAvailableNetworks(){

		Utils.logDebug("getAvailableNetworks():");
		
		killPreviousConnections();
		
		if (! clearWorkingDir()){
			Utils.logError("Failed clearing dir");
			return null;
		}
		
		if (! startWpaSupplicant()){
			Utils.logError("Failed starting wpa_supplicant");
			return null;
		}		

		if (! createScanScripts()){
			Utils.logError("Failed creating scripts");
			return null;
		}

		if (! scanNetworks()){
			Utils.logError("failed scanning networks");
			return null;
		}

		if (!getScanResults()){
			Utils.logError("failed getting scan results");
			return null;
		}

		//chmod 666 scan_file to make it readable
		if (!chmodFile(Commons.getScanFile(), "666")){
			Utils.logError("failed chmodding scan_file");
			return null;
		}

		AccessPointInfo[] a = AccessPointInfo.parseScanResult(Commons.getScanFile());
		if (a == null){
			Utils.logError("Unable to parse scan file into AccessPointInfo array");
		}

		
		return a;

	}

	@Override
	public abstract boolean connect(AccessPointInfo info);

	@Override
	public boolean disconnect(){

		if (! isWpaSupplicantRunning()){
			return true;
		}

		try {

			RootCommand su = new RootCommand(getCmdWpaCli() + " disconnect");
			if (su.execute() == 0){
				String out = su.getOutput();
				if (out != null && out.trim().replace("\n", "").equals("OK")){
					return true;
				}else {
					return false;
				}
			}
			else{
				return false;
			}

		} catch (Exception e) {
			Utils.logError("Error while enabling network", e);
			return false;
		}
	}

	/***
	 * returns null if unable to determine connection status for any reason.
	 */
	@Override
	public ConnectionStatus getConnectionStatus(){

		Utils.logDebug("called getConnecitonStatus()");
		if (! isWpaSupplicantRunning()){
			//wpa_supplicant is not running.
			//unable to determin status.
			Utils.logDebug("wpa not running, cannot get connection status.");
			return null;

		}

		try {
			
			RootCommand su = new RootCommand(getCmdWpaCli() + " status");
			if(su.execute() == 0){
				String out = su.getOutput();
				if (out == null || out.trim().equals("")){
					return null;
				}
				else {
					return ConnectionStatus.parseWpaCliOutput(out);
				}
			}
			else {
				return null;
			}			
			
		} catch (Exception e) {
			Utils.logError("Error while executing wpa_cli status", e);
			return null;
		}
		
	}

	public boolean runDhcpcd(){
		
		return executeRootCmd("dhcpcd " + Commons.INTERFACE_NAME);
						
	}

	public boolean interfaceUp(){
		return executeRootCmd("ifconfig " + Commons.INTERFACE_NAME + " up");
	}
	
	protected boolean executeRootCmd(String cmd){

		try {

			RootCommand c = new RootCommand(cmd);
			if ( c.execute() == 0){
				return true;
			}else {
				return false;
			}

		} catch (Exception e) {
			Utils.logError("Error executing \"" + cmd + "\"",e);
			return false;
		}
	}
	
	protected boolean isWpaSupplicantRunning(){

		boolean retval = false;

		try {

			RootCommand su = new RootCommand("pidof wpa_supplicant");
			if (su.execute() == 0){

				if (su.getOutput().trim().equals("")){
					retval = false;
				}else{
					retval = true;
				}

			}else {
				retval = false;
			}


		} catch (Exception e) {
			Utils.logError("Exception during isWpaSupplicantRunning()",e);
			retval = false;
		}

		return retval;

	}

	protected boolean scanNetworks(){

		return executeRootCmd("bash " + Commons.getScriptScan());
		
	}

	protected boolean getScanResults(){

		return executeRootCmd("bash " + Commons.getScriptScanRes());
	
	}

	protected boolean createScanScripts(){

		try {

			String scan = getCmdWpaCli() + " scan\n" +
					"if [ $? -ne 0 ]; then\n" +
					"exit 1\n" +
					"fi\n" +
					"sleep 2s\n";

			String scanRes = "if [ -e \"" + Commons.getScanFile() + "\" ]; then\n" +
					"	rm \"" + Commons.getScanFile() + "\"\n" +
					"fi\n" + 
					getCmdWpaCli() + " scan_results > \""+ Commons.getScanFile() + "\"\n" +
					"if [ $? -ne 0 ]; then\n" +
					"	exit 1\n" +
					"fi\n" +
					"sleep 1s\n";

			
			//Try to create and chmod script scan
		/*	executeRootCmd("echo > " + Commons.getSCRIPT_SCAN());
			chmodFile(Commons.getSCRIPT_SCAN(), "666");*/
			
			
			if (! Utils.writeFile(Commons.getScriptScan(),scan,true) ){

				Exception e = Utils.getLastException();
				if (e != null){
					Utils.logError("Error while writing scan script.",e);
				}

				return false;
			}

			//Try to create and chmod script scanres
			/*executeRootCmd("echo > " + Commons.getSCRIPT_SCANRES());
			chmodFile(Commons.getSCRIPT_SCANRES(), "666");*/
			
			if (! Utils.writeFile(Commons.getScriptScanRes(),scanRes,true) ){

				Exception e = Utils.getLastException();
				if (e != null){
					Utils.logError("Error while writing getScanResults script.",e);
				}

				return false;
			}


			return true;

		} catch (Exception e) {

			Utils.logError("Error while creating the scanning script.",e);
			return false;
		}

	}
	
	/*protected boolean createDhcpcdScritp(){
		
		String scriptDhcp = "dhcpcd "+ Commons.INTERFACE_NAME + "\n" +
				"sleep 3s\n";

		if (! Utils.writeFile(Commons.getScriptDhcpcd(),scriptDhcp,true) ){

			Exception e = Utils.getLastException();
			if (e != null){
				Utils.logError("Error while writing dhcpcd script.",e);
			}

			return false;
		}
		
		return true;
		
	}*/
}