-
Notifications
You must be signed in to change notification settings - Fork 28
/
aid.c
108 lines (88 loc) · 3.18 KB
/
aid.c
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
/* Copyright (c) Facebook, Inc., 2018
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
*/
#include "aid.h"
#include <string.h>
// See 802.11-2016 section 9.4.1.8 AID field
#define MAX_AID 2007
#define DIV_ROUND_UP(x, y) ((x) + (y)-1) / (y)
#define BIT(x) (1UL << (x))
#define AID_BITMAP_LEN DIV_ROUND_UP(MAX_AID + 1, sizeof(uint32_t) * 8)
// MSB bits of the AID specify a word in the bitmap, LSB bits of the AID specify
// a bit in a word in the bitmap. This is the distance to shift to get the split
// between MSB and LSB.
#define AID_WORD_SHIFT (ffs(sizeof(uint32_t) * 8) - 1)
// These LSB bits specify a bit in a word in the bitmap
#define AID_WORD_MASK (BIT(AID_WORD_SHIFT) - 1)
static uint8_t aidmap_initialized;
static uint32_t aidmap[AID_BITMAP_LEN];
static void aid_initmap() {
// A value of 1 indicates "free"
memset(aidmap, 0xff, sizeof(aidmap));
// 0 is an invalid AID, mark it as "in use"
aidmap[0] &= ~1;
aidmap_initialized = 1;
}
static void aid_set(uint16_t aid, uint8_t mark_used) {
// On first access we need to initialise the bitmap
if (!aidmap_initialized) {
aid_initmap();
}
// 0 is an invalid AID, we never modify it
if (aid == 0) {
return;
}
int word_index = aid >> AID_WORD_SHIFT;
int bit = aid & AID_WORD_MASK;
if (mark_used) {
// Claim by setting the bit to 0
aidmap[word_index] &= ~BIT(bit);
} else {
// Release by setting the bit to 1
aidmap[word_index] |= BIT(bit);
}
}
void aid_free(uint16_t aid) {
aid_set(aid, /* mark_used */ 0);
}
uint16_t aid_alloc() {
// On first access we need to initialise the bitmap
if (!aidmap_initialized) {
aid_initmap();
}
for (uint32_t word = 0; word < AID_BITMAP_LEN; word++) {
int bit = ffs(aidmap[word]);
if (bit) {
uint16_t aid = word * sizeof(uint32_t) * 8 + (bit - 1);
if (aid > MAX_AID) {
return 0;
}
aid_set(aid, /* mark_used */ 1);
return aid;
}
}
// Out of AIDs
return 0;
}