aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/fil/libre/repwifiapp/helpers/NetworkManager.java
blob: 96805a6e99b6a13967c1e71619dfa79f2b313f5e (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
//
// 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 org.json.JSONArray;
import org.json.JSONObject;
import java.io.File;
import java.util.ArrayList;

public class NetworkManager {

    private static final String VERSION_NOTE = "RepWifiStorageVersion: 2.0\n";
    private static final String F_SEP = "\t";
    private static final int NET_MAX_AGE = 1095; // Expressed in days

    private String _knownNetworksFile = null;

    public NetworkManager(String networksFilePath) {
        this._knownNetworksFile = networksFilePath;
    }

    private AccessPointInfo getSavedInfo(AccessPointInfo i) {

        if (i == null) {
            return null;
        }

        String bssid = i.getBssid();
        String ssid = i.getSsid();

        if (bssid == null || ssid == null || bssid.trim().equals("") || ssid.trim().equals("")) {
            return null;
        }

        AccessPointInfo ret = null;
        AccessPointInfo[] list = getKnownNetworks();

        if (list == null) {
            return null;
        }

        for (AccessPointInfo toTest : list) {

            // try to match both bssid and ssid.
            // if bssid doesn't match, but ssid does,
            // then the network is a candidate.
            // if no bssid equality is found,
            // then return the best match (only ssid), if any
            if (toTest.getSsid().equals(ssid)) {

                i.setPassword(toTest.getPassword());
                i.setDhcpConfiguration(toTest.getDhcpConfiguration());
                i.setVpnProfileName(toTest.getVpnProfileName());

                if (toTest.getBssid().equals(bssid)) {
                    // complete match, return.
                    return i;

                } else {
                    // probable match
                    ret = i;
                }

            }

        }

        return ret;

    }

    private boolean saveOrRemove(AccessPointInfo info, boolean save) {

        AccessPointInfo[] existingNets = getKnownNetworks();

        ArrayList<AccessPointInfo> newlist = new ArrayList<AccessPointInfo>();

        if (existingNets == null || existingNets.length == 0) {
            // no existing storage yet, create it

            if (save) {
                // set timestamp
                info.setLastTimeUsed(System.currentTimeMillis());
                newlist.add(info);
                AccessPointInfo[] newContents = new AccessPointInfo[newlist.size()];
                newContents = newlist.toArray(newContents);

                return saveList(newContents);

            } else {
                // nothing to do, return
                return true;
            }

        }

        if (save) {
            // add the updated info to the storage
            info.setLastTimeUsed(System.currentTimeMillis());
            newlist.add(info);
        }

        for (AccessPointInfo old : existingNets) {

            if (old == null) {
                // error while loading from file. skip.
                continue;
            }

            // keep network only if it's not older than the max age for a
            // network
            else if (old.isOlderThan(NET_MAX_AGE)) {
                // skip it
                continue;
            }

            else if (old.getBssid().equals(info.getBssid()) && old.getSsid().equals(info.getSsid())) {
                // found previously saved entry for the same network we are
                // managing
                // skip it
                continue;
            }

            else {
                // old network info that can be kept in the storage
                newlist.add(old);
            }

        }

        AccessPointInfo[] newContents = new AccessPointInfo[newlist.size()];
        newContents = newlist.toArray(newContents);

        return saveList(newContents);

    }

    private AccessPointInfo getFromStringOld(String savedString) {

        if (savedString == null || savedString.trim().equals("")) {
            return null;
        }

        String[] fields = savedString.split(F_SEP);

        if (fields.length < 4) {
            return null;
        }

        String bssid = fields[0];
        String ssid = fields[1];
        String pass = fields[2];
        String lastUsed = fields[3];
        String auth = null;
        String ipWmask = null;
        String gw = null;
        boolean useDhcp = true;
        String vpnProfile = null;

        if (fields.length > 4) {
            auth = fields[4];
        }

        if (fields.length > 6) {
            ipWmask = fields[5];
            gw = fields[6];
            useDhcp = false;
        }

        if (fields.length > 7) {
            vpnProfile = fields[7];
        }

        long lastusedmillis = 0;
        try {
            lastusedmillis = Long.parseLong(lastUsed);
        } catch (NumberFormatException e) {
            // invalid format
            Utils.logError("Invalid time format in network manager \"" + lastUsed
                            + "\". Network BSSID: " + bssid, e);
        }

        if (bssid.trim().equals("") || ssid.trim().equals("") || pass.trim().equals("")) {
            return null;
        }

        AccessPointInfo i = new AccessPointInfo(ssid, bssid, auth, null, null);
        i.setPassword(pass);
        i.setLastTimeUsed(lastusedmillis);
        i.setVpnProfileName(vpnProfile);

        if (!useDhcp) {
            DhcpSettings s = DhcpSettings.parseSavedSettings(ipWmask, gw);
            i.setDhcpConfiguration(s);
        }

        return i;

    }

    private boolean saveList(AccessPointInfo[] list) {

        try {

            JSONArray jarr = new JSONArray();
            for (AccessPointInfo i : list) {

                JSONObject jo = i.toJson();
                if (jo == null) {
                    return false;
                }

                jarr.put(jo);

            }

            StringBuilder sb = new StringBuilder();
            sb.append(VERSION_NOTE);
            sb.append("\n");

            sb.append(jarr.toString(2));

            return Utils.writeFile(_knownNetworksFile, sb.toString(), true);

        } catch (Exception e) {
            Utils.logError("Exception while saving AccessPointInfo array to JSON-formatted file.",
                            e);
            return false;
        }

        /*
         * if (list == null) { return false; }
         * 
         * String[] lines = new String[list.length];
         * 
         * for (int i = 0; i < list.length; i++) {
         * 
         * String storeString = InfoToString(list[i]); if (storeString == null)
         * { return false; } lines[i] = storeString;
         * 
         * }
         * 
         * return Utils.writeFileLines(this._knownNetworksFile, lines, true);
         */

    }

    public boolean updateStorageVersion() {

        String[] lines = Utils.readFileLines(_knownNetworksFile);
        if (lines.length == 0) {
            return true;
        }

        if (lines[0].trim().equals(VERSION_NOTE)) {
            return true;

        } else {

            AccessPointInfo[] infos = getKnownNetworksOld();
            if (infos == null || infos.length == 0) {
                return true;
            }
            return saveList(infos);

        }

    }

    public AccessPointInfo[] getKnownNetworks() {

        try {

            String fconts = Utils.readFile(_knownNetworksFile);
            if (fconts == null) {
                return null;
            }

            if (!fconts.startsWith(VERSION_NOTE)) {
                // wrong version, try to convert it
                if (updateStorageVersion()) {
                    return getKnownNetworks();
                } else {
                    return null;
                }
            }

            JSONArray jarr = new JSONArray(fconts.replace(VERSION_NOTE, ""));
            ArrayList<AccessPointInfo> list = new ArrayList<AccessPointInfo>();

            int count = 0;
            for (int i = 0; i < jarr.length(); i++) {
                AccessPointInfo info = AccessPointInfo.fromJsonObject(jarr.getJSONObject(i));
                if (info == null) {
                    continue;
                }
                count += 1;
                list.add(info);
            }

            AccessPointInfo[] arr = new AccessPointInfo[count];
            return list.toArray(arr);

        } catch (Exception e) {
            Utils.logError("Exception while parsing JSON content from storage file.", e);
            return null;
        }

    }

    public AccessPointInfo[] getKnownNetworksOld() {

        ArrayList<AccessPointInfo> list = new ArrayList<AccessPointInfo>();

        File f = new File(this._knownNetworksFile);
        if (!f.exists()) {
            return null;
        }

        String[] lines = Utils.readFileLines(_knownNetworksFile);
        if (lines == null || lines.length == 0) {
            return null;
        }

        for (String l : lines) {

            AccessPointInfo info = getFromStringOld(l);
            if (info != null) {
                list.add(info);
            }

        }

        AccessPointInfo[] ret = new AccessPointInfo[list.size()];
        ret = list.toArray(ret);

        return ret;

    }

    public boolean isKnown(AccessPointInfo info) {

        AccessPointInfo i = getSavedInfo(info);
        if (i == null) {
            return false;
        } else {
            return true;
        }

    }

    public boolean save(AccessPointInfo info) {
        return saveOrRemove(info, true);
    }

    public boolean remove(AccessPointInfo info) {
        return saveOrRemove(info, false);
    }

    public AccessPointInfo getSavedNetwork(AccessPointInfo i) {
        return getSavedInfo(i);
    }

}