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
|
typedef struct Wkey Wkey;
typedef struct Wnode Wnode;
typedef struct Wifi Wifi;
typedef struct Wifipkt Wifipkt;
enum {
Essidlen = 32,
};
/* cipher */
enum {
TKIP = 1,
CCMP = 2,
};
struct Wkey
{
int cipher;
int len;
uchar key[32];
uvlong tsc;
};
struct Wnode
{
uchar bssid[Eaddrlen];
char ssid[Essidlen+2];
char *status;
int rsnelen;
uchar rsne[258];
Wkey txkey[1];
Wkey rxkey[5];
int aid; /* association id */
ulong lastsend;
ulong lastseen;
/* stuff from beacon */
int ival;
int cap;
int channel;
int brsnelen;
uchar brsne[258];
};
struct Wifi
{
Ether *ether;
int debug;
Queue *iq;
ulong watchdog;
Ref txseq;
void (*transmit)(Wifi*, Wnode*, Block*);
/* for searching */
uchar bssid[Eaddrlen];
char essid[Essidlen+2];
/* effective base station */
Wnode *bss;
Wnode node[32];
};
struct Wifipkt
{
uchar fc[2];
uchar dur[2];
uchar a1[Eaddrlen];
uchar a2[Eaddrlen];
uchar a3[Eaddrlen];
uchar seq[2];
};
Wifi *wifiattach(Ether *ether, void (*transmit)(Wifi*, Wnode*, Block*));
void wifiiq(Wifi*, Block*);
long wifistat(Wifi*, void*, long, ulong);
long wifictl(Wifi*, void*, long);
int wifichecklink(Wifi*);
void wifiprobe(Wifi*, int);
|