summaryrefslogtreecommitdiffstats
path: root/nexus/WifiNetwork.h
blob: 15ec647eaa44717e4e5849892a58c08f01d3dcbe (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
/*
 * Copyright (C) 2008 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifndef _WIFI_NETWORK_H
#define _WIFI_NETWORK_H

#include <sys/types.h>

#include <utils/List.h>

#include "Property.h"

class PropertyManager;

class KeyManagementMask {
public:
    static const uint32_t UNKNOWN   = 0;
    static const uint32_t NONE      = 0x01;
    static const uint32_t WPA_PSK   = 0x02;
    static const uint32_t WPA_EAP   = 0x04;
    static const uint32_t IEEE8021X = 0x08;
    static const uint32_t ALL       = WPA_PSK | WPA_EAP | IEEE8021X;
};

class SecurityProtocolMask {
public:
    static const uint32_t WPA = 0x01;
    static const uint32_t RSN = 0x02;
};

class AuthenticationAlgorithmMask {
public:
    static const uint32_t OPEN   = 0x01;
    static const uint32_t SHARED = 0x02;
    static const uint32_t LEAP   = 0x04;
};

class PairwiseCiphersMask {
public:
    static const uint32_t NONE = 0x00;
    static const uint32_t TKIP = 0x01;
    static const uint32_t CCMP = 0x02;
};

class GroupCiphersMask {
public:
    static const uint32_t WEP40  = 0x01;
    static const uint32_t WEP104 = 0x02;
    static const uint32_t TKIP   = 0x04;
    static const uint32_t CCMP   = 0x08;
};

class Supplicant;
class Controller;
class WifiController;

class WifiNetwork {
    class WifiNetworkIntegerProperty : public IntegerProperty {
    protected:
        WifiNetwork *mWn;
    public:
        WifiNetworkIntegerProperty(WifiNetwork *wn, const char *name, bool ro,
                                   int elements);
        virtual ~WifiNetworkIntegerProperty() {}
        virtual int set(int idx, int value) = 0;
        virtual int get(int idx, int *buffer) = 0;
    };
    friend class WifiNetwork::WifiNetworkIntegerProperty;

    class WifiNetworkStringProperty : public StringProperty {
    protected:
        WifiNetwork *mWn;
    public:
        WifiNetworkStringProperty(WifiNetwork *wn, const char *name, bool ro,
                                 int elements);
        virtual ~WifiNetworkStringProperty() {}
        virtual int set(int idx, const char *value) = 0;
        virtual int get(int idx, char *buffer, size_t max) = 0;
    };
    friend class WifiNetwork::WifiNetworkStringProperty;

    class WifiNetworkEnabledProperty : public WifiNetworkIntegerProperty {
    public:
        WifiNetworkEnabledProperty(WifiNetwork *wn);
        virtual ~WifiNetworkEnabledProperty() {};
        int set(int idx, int value);
        int get(int idx, int *buffer);
    };

    class WifiNetworkPriorityProperty : public WifiNetworkIntegerProperty {
    public:
        WifiNetworkPriorityProperty(WifiNetwork *wn);
        virtual ~WifiNetworkPriorityProperty() {};
        int set(int idx, int value);
        int get(int idx, int *buffer);
    };

    class WifiNetworkDefaultKeyIndexProperty : public WifiNetworkIntegerProperty {
    public:
        WifiNetworkDefaultKeyIndexProperty(WifiNetwork *wn);
        virtual ~WifiNetworkDefaultKeyIndexProperty() {};
        int set(int idx, int value);
        int get(int idx, int *buffer);
    };

    class WifiNetworkSsidProperty : public WifiNetworkStringProperty {
    public:
        WifiNetworkSsidProperty(WifiNetwork *wn);
        virtual ~WifiNetworkSsidProperty() {};
        int set(int idx, const char *value);
        int get(int idx, char *buffer, size_t max);
    };

    class WifiNetworkBssidProperty : public WifiNetworkStringProperty {
    public:
        WifiNetworkBssidProperty(WifiNetwork *wn);
        virtual ~WifiNetworkBssidProperty() {};
        int set(int idx, const char *value);
        int get(int idx, char *buffer, size_t max);
    };

    class WifiNetworkPskProperty : public WifiNetworkStringProperty {
    public:
        WifiNetworkPskProperty(WifiNetwork *wn);
        virtual ~WifiNetworkPskProperty() {};
        int set(int idx, const char *value);
        int get(int idx, char *buffer, size_t max);
    };

    class WifiNetworkKeyManagementProperty : public WifiNetworkStringProperty {
    public:
        WifiNetworkKeyManagementProperty(WifiNetwork *wn);
        virtual ~WifiNetworkKeyManagementProperty() {};
        int set(int idx, const char *value);
        int get(int idx, char *buffer, size_t max);
    };

    class WifiNetworkAuthAlgorithmsProperty : public WifiNetworkStringProperty {
    public:
        WifiNetworkAuthAlgorithmsProperty(WifiNetwork *wn);
        virtual ~WifiNetworkAuthAlgorithmsProperty() {};
        int set(int idx, const char *value);
        int get(int idx, char *buffer, size_t max);
    };

    class WifiNetworkProtocolsProperty : public WifiNetworkStringProperty {
    public:
        WifiNetworkProtocolsProperty(WifiNetwork *wn);
        virtual ~WifiNetworkProtocolsProperty() {};
        int set(int idx, const char *value);
        int get(int idx, char *buffer, size_t max);
    };

    class WifiNetworkWepKeyProperty : public WifiNetworkStringProperty {
    public:
        WifiNetworkWepKeyProperty(WifiNetwork *wn);
        virtual ~WifiNetworkWepKeyProperty() {};
        int set(int idx, const char *value);
        int get(int idx, char *buffer, size_t max);
    };

    class WifiNetworkPairwiseCiphersProperty : public WifiNetworkStringProperty {
    public:
        WifiNetworkPairwiseCiphersProperty(WifiNetwork *wn);
        virtual ~WifiNetworkPairwiseCiphersProperty() {};
        int set(int idx, const char *value);
        int get(int idx, char *buffer, size_t max);
    };

    class WifiNetworkGroupCiphersProperty : public WifiNetworkStringProperty {
    public:
        WifiNetworkGroupCiphersProperty(WifiNetwork *wn);
        virtual ~WifiNetworkGroupCiphersProperty() {};
        int set(int idx, const char *value);
        int get(int idx, char *buffer, size_t max);
    };

    class WifiNetworkHiddenSsidProperty : public WifiNetworkStringProperty {
    public:
        WifiNetworkHiddenSsidProperty(WifiNetwork *wn);
        virtual ~WifiNetworkHiddenSsidProperty() {};
        int set(int idx, const char *value);
        int get(int idx, char *buffer, size_t max);
    };

private:
    Supplicant *mSuppl;
    WifiController *mController;

    /*
     * Unique network id - normally provided by supplicant
     */
    int mNetid;

    /*
     * The networks' SSID. Can either be an ASCII string,
     * which must be enclosed in double quotation marks
     * (ie: "MyNetwork"), or a string of hex digits which
     * are not enclosed in quotes (ie: 01ab7893)
     */
    char *mSsid;

    /*
     * When set, this entry should only be used
     * when associating with the AP having the specified
     * BSSID. The value is a string in the format of an
     * Ethernet MAC address
     */
    char *mBssid;

    /*
     *  Pre-shared key for use with WPA-PSK
     */
    char *mPsk;

    /*
     * Up to four WEP keys. Either in ASCII string enclosed in
     * double quotes, or a string of hex digits
     */
    char *mWepKeys[4];

    /*
     * Default WEP key index, ranging from 0 -> NUM_WEP_KEYS -1
     */
    int mDefaultKeyIndex;

    /*
     * Priority determines the preference given to a network by 
     * supplicant when choosing an access point with which
     * to associate
     */
    int mPriority;

    /*
     * This is a network that does not broadcast it's SSID, so an
     * SSID-specific probe request must be used for scans.
     */
    char *mHiddenSsid;

    /*
     * The set of key management protocols supported by this configuration.
     */
    uint32_t mKeyManagement;

    /*
     * The set of security protocols supported by this configuration.
     */
    uint32_t mProtocols;

    /*
     * The set of authentication protocols supported by this configuration.
     */
    uint32_t mAuthAlgorithms;

    /*
     * The set of pairwise ciphers for WPA supported by this configuration.
     */
    uint32_t mPairwiseCiphers;

    /*
     * The set of group ciphers for WPA supported by this configuration.
     */
    uint32_t mGroupCiphers;

    /*
     * Set if this Network is enabled
     */
    bool mEnabled;

    char *mPropNamespace;
    struct {
        WifiNetworkEnabledProperty               *propEnabled;
        WifiNetworkSsidProperty                  *propSsid;
        WifiNetworkBssidProperty                 *propBssid;
        WifiNetworkPskProperty                   *propPsk;
        WifiNetworkWepKeyProperty                *propWepKey;
        WifiNetworkDefaultKeyIndexProperty       *propDefKeyIdx;
        WifiNetworkPriorityProperty              *propPriority;
        WifiNetworkKeyManagementProperty  *propKeyManagement;
        WifiNetworkProtocolsProperty      *propProtocols;
        WifiNetworkAuthAlgorithmsProperty *propAuthAlgorithms;
        WifiNetworkPairwiseCiphersProperty       *propPairwiseCiphers;
        WifiNetworkGroupCiphersProperty          *propGroupCiphers;
        WifiNetworkHiddenSsidProperty            *propHiddenSsid;
    } mStaticProperties;
private:
    WifiNetwork();

public:
    WifiNetwork(WifiController *c, Supplicant *suppl, int networkId);
    WifiNetwork(WifiController *c, Supplicant *suppl, const char *data);

    virtual ~WifiNetwork();

    WifiNetwork *clone();
    int attachProperties(PropertyManager *pm, const char *nsName);
    int detachProperties(PropertyManager *pm, const char *nsName);

    int getNetworkId() { return mNetid; }
    const char *getSsid() { return mSsid; }
    const char *getBssid() { return mBssid; }
    const char *getPsk() { return mPsk; }
    const char *getWepKey(int idx) { return mWepKeys[idx]; }
    int getDefaultKeyIndex() { return mDefaultKeyIndex; }
    int getPriority() { return mPriority; }
    const char *getHiddenSsid() { return mHiddenSsid; }
    uint32_t getKeyManagement() { return mKeyManagement; }
    uint32_t getProtocols() { return mProtocols; }
    uint32_t getAuthAlgorithms() { return mAuthAlgorithms; }
    uint32_t getPairwiseCiphers() { return mPairwiseCiphers; }
    uint32_t getGroupCiphers() { return mGroupCiphers; }
    bool getEnabled() { return mEnabled; }
    Controller *getController() { return (Controller *) mController; }

    int setEnabled(bool enabled);
    int setSsid(const char *ssid);
    int setBssid(const char *bssid);
    int setPsk(const char *psk);
    int setWepKey(int idx, const char *key);
    int setDefaultKeyIndex(int idx);
    int setPriority(int pri);
    int setHiddenSsid(const char *ssid);
    int setKeyManagement(uint32_t mask);
    int setProtocols(uint32_t mask);
    int setAuthAlgorithms(uint32_t mask);
    int setPairwiseCiphers(uint32_t mask);
    int setGroupCiphers(uint32_t mask);

    // XXX:Should this really be exposed?.. meh
    int refresh();

private:
    int parseKeyManagementMask(const char *buffer, uint32_t *mask);
    int parseProtocolsMask(const char *buffer, uint32_t *mask);
    int parseAuthAlgorithmsMask(const char *buffer, uint32_t *mask);
    int parsePairwiseCiphersMask(const char *buffer, uint32_t *mask);
    int parseGroupCiphersMask(const char *buffer, uint32_t *mask);
    void createProperties();
};

typedef android::List<WifiNetwork *> WifiNetworkCollection;

#endif