forked from yaosj2k/dnsforwarder
-
Notifications
You must be signed in to change notification settings - Fork 9
/
hostscontainer.c
executable file
·442 lines (381 loc) · 11.8 KB
/
hostscontainer.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
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
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
#include <string.h>
#include <ctype.h>
#include "ipchunk.h"
#include "hostscontainer.h"
#include "logs.h"
typedef struct _TableNode TableNode;
struct _TableNode{
const TableNode *Next;
HostsRecordType Type;
const void *Data;
};
PRIFUNC HostsRecordType HostsContainer_DetermineType(const char *IPOrCName)
{
if( IPOrCName == NULL )
{
return HOSTS_TYPE_UNKNOWN;
}
/* Good IP List */
if( *IPOrCName == '<' && IPOrCName[strlen(IPOrCName) - 1] == '>' )
{
return HOSTS_TYPE_GOOD_IP_LIST;
}
/* A host IPOrCName started with "@@ " is excluded */
if( *IPOrCName == '@' && *(IPOrCName + 1) == '@' )
{
return HOSTS_TYPE_EXCLUEDE;
}
if( isxdigit(*IPOrCName) )
{
const char *Itr;
/* Check if it is IPv6 */
if( strchr(IPOrCName, ':') != NULL )
{
return HOSTS_TYPE_AAAA;
}
/* Check if it is CNAME */
for(Itr = IPOrCName; *Itr != '\0'; ++Itr)
{
if( isalpha(*Itr) || *Itr == '-' )
{
return HOSTS_TYPE_CNAME;
}
}
for(Itr = IPOrCName; *Itr != '\0'; ++Itr)
{
if( isdigit(*Itr) || *Itr == '.' )
{
return HOSTS_TYPE_A;
}
}
return HOSTS_TYPE_UNKNOWN;
} else {
if( *IPOrCName == ':' )
{
return HOSTS_TYPE_AAAA;
}
for(; *IPOrCName != '\0'; ++IPOrCName)
{
if( !isalnum(*IPOrCName) && *IPOrCName != '-' && *IPOrCName != '.' )
{
return HOSTS_TYPE_UNKNOWN;
}
}
return HOSTS_TYPE_CNAME;
}
}
/*
If Func == NULL:
Return NULL : No match found;
Otherwise : A match found;
If Func != NULL:
Return NULL : Func returned non-zero at a call or no match found;
Otherwise : Func returned zero at every call and at least one match found;
*/
PUBFUNC const void *HostsContainer_Find(HostsContainer *Container,
const char *Name,
HostsRecordType Type,
HostsFindFunc Func,
void *Arg
)
{
const TableNode **Matched = NULL;
const TableNode *IP = NULL;
const TableNode *IP4to6 = NULL;
if( !StringChunk_Match(&(Container->Mappings), Name, NULL, (void **)&Matched, NULL, NULL) )
{
return NULL;
}
if( Matched != NULL )
{
IP = *Matched;
}
while( IP != NULL )
{
if( Type == HOSTS_TYPE_UNKNOWN || IP->Type == Type )
{
Type = IP->Type;
break;
}
if( Type == HOSTS_TYPE_AAAA && IP->Type == HOSTS_TYPE_A && IP4to6 == NULL )
{
IP4to6 = IP;
}
IP = IP->Next;
}
if( IP == NULL )
{
IP = IP4to6;
}
if( IP != NULL )
{
if( Func != NULL )
{
int i = 1;
if( Func(i++, Type, IP->Data, Arg) != 0 )
{
return NULL;
}
}
}
return IP;
}
PRIFUNC const void *HostsContainer_FindExist(HostsContainer *Container,
const char *Name
)
{
const TableNode **Matched = NULL;
const TableNode *IP = NULL;
if( !StringChunk_Match_Exactly(&(Container->Mappings), Name, NULL, (void **)&Matched, NULL, NULL) )
{
return NULL;
}
if( Matched != NULL )
{
IP = *Matched;
}
if( IP != NULL )
{
return IP;
} else {
return NULL;
}
}
PRIFUNC int HostsContainer_AddNode(HostsContainer *Container,
const char *Name,
HostsRecordType Type,
const void *Data,
int DataLength
)
{
TableNode n, *s = NULL, *Exist = NULL;
if( Data != NULL )
{
if( Type == HOSTS_TYPE_A || Type == HOSTS_TYPE_AAAA )
{
StableBufferIterator IPI;
IpAddr *ipAddr;
if(StableBufferIterator_Init(&IPI, &(Container->TableIPAddr)) != 0)
{
return -170;
}
IPI.Reset(&IPI);
while( (ipAddr = IPI.NextBlock(&IPI)) != NULL )
{
int i, BytesOfMetaInfo;
BytesOfMetaInfo = IPI.CurrentBlockUsed(&IPI);
for( i = 0; i * sizeof(IpAddr) < BytesOfMetaInfo; ++i, ++ipAddr )
{
if( memcmp(ipAddr, Data, DataLength) == 0 )
{
goto OUT_SEARCH;
}
}
}
OUT_SEARCH:
if( ipAddr == NULL )
{
ipAddr = Container->TableIPAddr.Add(&(Container->TableIPAddr),
Data,
DataLength,
TRUE
);
}
n.Data = ipAddr;
} else {
n.Data = Container->Table.Add(&(Container->Table),
Data,
DataLength,
TRUE
);
}
if( n.Data == NULL )
{
return -171;
}
} else {
n.Data = NULL;
}
n.Type = Type;
Exist = (TableNode *)HostsContainer_FindExist(Container, Name);
if( Exist == NULL )
{
n.Next = NULL;
s = Container->Table.Add(&(Container->Table),
&n,
sizeof(TableNode),
TRUE
);
if( s == NULL )
{
return -201;
}
if( StringChunk_Add(&(Container->Mappings),
Name,
&s,
sizeof(TableNode *)
)
!= 0 )
{
return -212;
}
} else {
n.Next = Exist->Next;
s = Container->Table.Add(&(Container->Table),
&n,
sizeof(TableNode),
TRUE
);
if( s == NULL )
{
return -213;
}
Exist->Next = s;
}
return 0;
}
PRIFUNC int HostsContainer_AddIP(HostsContainer *Container,
HostsRecordType Type,
const char *IP,
const char *Domain
)
{
IpAddr ipAddr;
IpAddr_Parse(IP, &ipAddr);
return HostsContainer_AddNode(Container,
Domain,
Type,
&ipAddr,
sizeof(IpAddr)
);
}
PRIFUNC int HostsContainer_AddCName(HostsContainer *Container,
const char *CName,
const char *Domain
)
{
return HostsContainer_AddNode(Container,
Domain,
HOSTS_TYPE_CNAME,
CName,
strlen(CName) + 1
);
}
PRIFUNC int HostsContainer_AddGoodIpList(HostsContainer *Container,
const char *ListName,
const char *Domain
)
{
char Trimed[128];
sscanf(ListName, "<%127[^>]", Trimed);
return HostsContainer_AddNode(Container,
Domain,
HOSTS_TYPE_GOOD_IP_LIST,
Trimed,
strlen(Trimed) + 1
);
}
PRIFUNC int HostsContainer_AddExcluded(HostsContainer *Container,
const char *Domain
)
{
return HostsContainer_AddNode(Container,
Domain,
HOSTS_TYPE_EXCLUEDE,
NULL,
0
);
}
PRIFUNC HostsRecordType HostsContainer_Add(HostsContainer *Container,
const char *IPOrCName,
const char *Domain
)
{
HostsRecordType Type = HostsContainer_DetermineType(IPOrCName);
switch( Type )
{
case HOSTS_TYPE_AAAA:
case HOSTS_TYPE_A:
if( HostsContainer_AddIP(Container, Type, IPOrCName, Domain) != 0 )
{
return HOSTS_TYPE_UNKNOWN;
} else {
return Type;
}
break;
case HOSTS_TYPE_CNAME:
if( HostsContainer_AddCName(Container, IPOrCName, Domain) != 0 )
{
return HOSTS_TYPE_UNKNOWN;
} else {
return HOSTS_TYPE_CNAME;
}
break;
case HOSTS_TYPE_EXCLUEDE:
if( HostsContainer_AddExcluded(Container, Domain) != 0 )
{
return HOSTS_TYPE_UNKNOWN;
} else {
return HOSTS_TYPE_EXCLUEDE;
}
break;
case HOSTS_TYPE_GOOD_IP_LIST:
if( HostsContainer_AddGoodIpList(Container, IPOrCName, Domain) != 0 )
{
return HOSTS_TYPE_UNKNOWN;
} else {
return HOSTS_TYPE_GOOD_IP_LIST;
}
break;
default:
INFO("Unrecognisable host : %s %s\n", IPOrCName, Domain);
return HOSTS_TYPE_UNKNOWN;
break;
}
}
PUBFUNC HostsRecordType HostsContainer_Load(HostsContainer *Container,
const char *MetaLine
)
{
char IPOrCName[DOMAIN_NAME_LENGTH_MAX + 1];
char Domain[DOMAIN_NAME_LENGTH_MAX + 1];
if( sscanf(MetaLine,
"%" STRINGIZINGINT(DOMAIN_NAME_LENGTH_MAX) "s%" STRINGIZINGINT(DOMAIN_NAME_LENGTH_MAX) "s",
IPOrCName,
Domain
)
!= 2 )
{
INFO("Unrecognisable host : %s, it may be too long.\n", MetaLine);
return HOSTS_TYPE_UNKNOWN;
}
return HostsContainer_Add(Container, IPOrCName, Domain);
}
PUBFUNC void HostsContainer_Free(HostsContainer *Container)
{
StringChunk_Free(&(Container->Mappings), TRUE);
Container->Table.Free(&(Container->Table));
Container->TableIPAddr.Free(&(Container->TableIPAddr));
}
int HostsContainer_Init(HostsContainer *Container)
{
if( StringChunk_Init(&(Container->Mappings), NULL) != 0 )
{
return -2;
}
if( StableBuffer_Init(&(Container->Table)) != 0 )
{
StringChunk_Free(&(Container->Mappings), TRUE);
return -6;
}
if( StableBuffer_Init(&(Container->TableIPAddr)) != 0 )
{
StringChunk_Free(&(Container->Mappings), TRUE);
Container->Table.Free(&(Container->Table));
return -7;
}
Container->Load = HostsContainer_Load;
Container->Find = HostsContainer_Find;
Container->Free = HostsContainer_Free;
return 0;
}