blob: 7a87fa340d3b59985ccdf23217c331f2314e7c13 (
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
|
/* ISC license. */
#include <stdint.h>
#include <string.h>
#include <skalibs/cdb.h>
#include <skalibs/ip46.h>
#include "shibari-cache-internal.h"
static inline int check (char const *key, size_t keylen)
{
cdb_data data ;
return cdb_find(&g->confdb, &data, key, keylen) ;
}
int clientaccess_ip4 (char const *ip)
{
int r ;
char key[9] = "A4:" ;
uint8_t i = 33 ;
memcpy(key+4, ip, 4) ;
key[8] = 0 ;
while (i--)
{
key[3] = i ;
key[4 + (i>>3)] &= ~(1U << (7 - (i & 7))) ;
r = check(key, 8) ;
if (r) return r ;
}
return 0 ;
}
#ifdef SKALIBS_IPV6_ENABLED
int clientaccess_ip6 (char const *ip)
{
int r ;
char key[21] = "A6:" ;
uint8_t i = 129 ;
memcpy(key+4, ip, 16) ;
key[20] = 0 ;
while (i--)
{
key[3] = i ;
key[4 + (i>>3)] &= ~(1U << (7 - (i & 7))) ;
r = check(key, 20) ;
if (r) return r ;
}
return 0 ;
}
#endif
|