-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathip.c
357 lines (324 loc) · 8.41 KB
/
ip.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
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
/* *********************************************************************
* This Original Work is copyright of 51 Degrees Mobile Experts Limited.
* Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House,
* Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU.
*
* This Original Work is licensed under the European Union Public Licence
* (EUPL) v.1.2 and is subject to its terms as set out below.
*
* If a copy of the EUPL was not distributed with this file, You can obtain
* one at https://opensource.org/licenses/EUPL-1.2.
*
* The 'Compatible Licences' set out in the Appendix to the EUPL (as may be
* amended by the European Commission) shall be deemed incompatible for
* the purposes of the Work and the provisions of the compatibility
* clause in Article 5 of the EUPL shall not apply.
*
* If using the Work as, or as part of, a network application, by
* including the attribution notice(s) required under Article 5 of the EUPL
* in the end user terms of the application under an appropriate heading,
* such notice(s) shall fulfill the requirements of that article.
* ********************************************************************* */
#include "ip.h"
#include "fiftyone.h"
typedef void(*parseIterator)(
void *state,
IpType segmentType,
const char *start,
const char *end);
/**
* State is an integer which is increased every time the method is called.
*/
static void callbackIpAddressCount(
void * const state,
const IpType segmentType,
const char * const start,
const char * const end) {
if (start <= end) {
if (segmentType != IP_TYPE_INVALID) {
(*(int*)state)++;
if (segmentType == IP_TYPE_IPV6) {
(*(int*)state)++;
}
}
}
}
/*
* Make sure each byte in the Ipv4 or Ipv6 address
* stays within the bound 0,255
* @parsedValue The value parsed from string
* @return the adjusted value
* if the value is out of the range then return
* the closest boundary value (0 or 255)
*/
static byte getIpByte(int parsedValue) {
if (parsedValue < 0) {
parsedValue = 0;
}
else if (parsedValue > UINT8_MAX) {
parsedValue = UINT8_MAX;
}
return (byte)parsedValue;
}
typedef struct {
IpAddress * const address;
byte *current;
int bytesPresent;
int abbreviationsFilled;
} fiftyoneDegreeIpAddressBuildState;
typedef fiftyoneDegreeIpAddressBuildState IpAddressBuildState;
static void parseIpV6Segment(
IpAddressBuildState * const buildState,
const char * const start,
const char * const end) {
int i;
char first[3], second[3], val; // "FF" + '\0'
if (start > end) {
// This is an abbreviation, so fill it in.
if (buildState->abbreviationsFilled) {
return;
}
buildState->abbreviationsFilled++;
for (i = 0; i < IPV6_LENGTH - buildState->bytesPresent; i++) {
*buildState->current = (byte)0;
buildState->current++;
}
}
else {
// Add the two bytes of the segment.
first[2] = '\0';
second[2] = '\0';
for (i = 0; i < IPV4_LENGTH; i++) {
if (end - i >= start) val = end[-i];
else val = '0';
if (i < 2) second[1 - i] = val;
else first[3 - i] = val;
}
*buildState->current = getIpByte((int)strtol(first, NULL, 16));
buildState->current++;
*buildState->current = getIpByte((int)strtol(second, NULL, 16));
buildState->current++;
}
}
static void callbackIpAddressBuild(
void * const state,
const IpType segmentType,
const char * const start,
const char * const end) {
fiftyoneDegreeIpAddressBuildState *const buildState = state;
if (segmentType == IP_TYPE_IPV4) {
*buildState->current = getIpByte(atoi(start));
buildState->current++;
}
else if (segmentType == IP_TYPE_IPV6) {
parseIpV6Segment(buildState, start, end);
}
}
static IpType getIpTypeFromSeparator(const char separator) {
switch (separator) {
case '.':
return IP_TYPE_IPV4;
case ':':
return IP_TYPE_IPV6;
default:
return IP_TYPE_INVALID;
}
}
static IpType getSegmentTypeWithSeparator(
const char separator,
const IpType ipType,
const IpType lastSeparatorType) {
switch (ipType) {
case IP_TYPE_IPV4:
return IP_TYPE_IPV4;
case IP_TYPE_IPV6:
switch (separator) {
case ':':
return IP_TYPE_IPV6;
case '.':
return IP_TYPE_IPV4;
default:
return lastSeparatorType;
}
default:
return getIpTypeFromSeparator(separator);
}
}
typedef enum {
FIFTYONE_DEGREES_IP_NON_BREAK_CHAR = 0,
FIFTYONE_DEGREES_IP_SEGMENT_BREAK_CHAR,
FIFTYONE_DEGREES_IP_ADDRESS_BREAK_CHAR,
FIFTYONE_DEGREES_IP_INVALID_CHAR,
} IpStringSeparatorType;
#define IP_NON_BREAK_CHAR FIFTYONE_DEGREES_IP_NON_BREAK_CHAR
#define IP_SEGMENT_BREAK_CHAR FIFTYONE_DEGREES_IP_SEGMENT_BREAK_CHAR
#define IP_ADDRESS_BREAK_CHAR FIFTYONE_DEGREES_IP_ADDRESS_BREAK_CHAR
#define IP_INVALID_CHAR FIFTYONE_DEGREES_IP_INVALID_CHAR
static IpStringSeparatorType getSeparatorCharType(
const char ipChar,
const IpType ipType) {
switch (ipChar) {
case ':':
return ((ipType == IP_TYPE_IPV4)
? IP_ADDRESS_BREAK_CHAR : IP_SEGMENT_BREAK_CHAR);
case '.':
return IP_SEGMENT_BREAK_CHAR;
case ',':
case ' ':
case ']':
case '/':
case '\0':
case '\n':
return IP_ADDRESS_BREAK_CHAR;
default:
break;
}
if ('0' <= ipChar && ipChar <= '9') {
return IP_NON_BREAK_CHAR;
}
if (('a' <= ipChar && ipChar <= 'f') || ('A' <= ipChar && ipChar <= 'F')) {
return (ipType == IP_TYPE_IPV4
? IP_INVALID_CHAR : IP_NON_BREAK_CHAR);
}
return IP_INVALID_CHAR;
}
static int8_t getMaxSegmentLengthForIpType(const IpType ipType) {
return (ipType == IP_TYPE_IPV4) ? 3 : 4; // "255" or "FFFF"
}
/**
* Calls the callback method every time a byte is identified in the value
* when parsed left to right.
*/
static IpType iterateIpAddress(
const char *start,
const char * const end,
void * const state,
int * const springCount,
IpType type,
const parseIterator foundSegment) {
const char * const postEnd = end + 1;
*springCount = 0;
if (*start == '[') {
if (type == IP_TYPE_IPV4) {
return IP_TYPE_INVALID;
}
start++;
}
IpType currentSegmentType =
IP_TYPE_INVALID;
const char *current = start;
const char *nextSegment = current;
for (; current <= postEnd && nextSegment <= postEnd; ++current) {
char nextChar = 0;
if (current < postEnd) {
nextChar = *current;
}
IpStringSeparatorType separatorType =
getSeparatorCharType(nextChar, type);
if (!separatorType) {
continue;
}
if (separatorType == IP_INVALID_CHAR) {
return IP_TYPE_INVALID;
}
currentSegmentType = getSegmentTypeWithSeparator(
nextChar, type, currentSegmentType);
if (type == IP_TYPE_INVALID) {
type = currentSegmentType;
}
if (current - nextSegment > getMaxSegmentLengthForIpType(type)) {
return IP_TYPE_INVALID;
}
// Check if it is leading abbreviation
if (current - 1 >= start) {
foundSegment(state, currentSegmentType,
nextSegment, current - 1);
}
if (separatorType == IP_ADDRESS_BREAK_CHAR) {
return type;
}
if (current == nextSegment && current != start) {
++*springCount;
}
nextSegment = current + 1;
}
if (nextSegment < current
&& type != IP_TYPE_INVALID) {
foundSegment(state, currentSegmentType,
nextSegment, current - 1);
}
return type;
}
bool fiftyoneDegreesIpAddressParse(
const char * const start,
const char * const end,
IpAddress * const address) {
if (!start) {
return false;
}
int byteCount = 0;
int springCount = 0;
IpType type = iterateIpAddress(
start,
end,
&byteCount,
&springCount,
IP_TYPE_INVALID,
callbackIpAddressCount);
switch (type) {
case IP_TYPE_IPV4:
if (byteCount != IPV4_LENGTH || springCount) {
return false;
}
break;
case IP_TYPE_IPV6:
if (byteCount > IPV6_LENGTH ||
springCount > 1 ||
(byteCount < IPV6_LENGTH && !springCount)) {
return false;
}
break;
default:
return false;
}
address->type = type;
IpAddressBuildState buildState = {
address,
address->value,
byteCount,
0,
};
// Add the bytes from the source value and get the type of address.
iterateIpAddress(
start,
end,
&buildState,
&springCount,
type,
callbackIpAddressBuild);
return true;
}
int fiftyoneDegreesIpAddressesCompare(
const unsigned char * const ipAddress1,
const unsigned char * const ipAddress2,
IpType type) {
uint16_t compareSize = 0;
int result = 0;
switch(type) {
case IP_TYPE_IPV4:
compareSize = IPV4_LENGTH;
break;
case IP_TYPE_IPV6:
compareSize = IPV6_LENGTH;
break;
case IP_TYPE_INVALID:
default:
compareSize = 0;
break;
}
for (uint16_t i = 0; i < compareSize; i++) {
result = ipAddress1[i] - ipAddress2[i];
if (result != 0) return result;
}
return result;
}