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
|
#include "alloc.h"
#include "stralloc.h"
#include "open.h"
#include "cdb.h"
#include "rules.h"
stralloc rules_name = {0};
static struct cdb c;
static int dorule(void (*callback)(char *,unsigned int))
{
char *data;
unsigned int datalen;
switch(cdb_find(&c,rules_name.s,rules_name.len)) {
case -1: return -1;
case 0: return 0;
}
datalen = cdb_datalen(&c);
data = alloc(datalen);
if (!data) return -1;
if (cdb_read(&c,data,datalen,cdb_datapos(&c)) == -1) {
alloc_free(data);
return -1;
}
callback(data,datalen);
alloc_free(data);
return 1;
}
static int doit(void (*callback)(char *,unsigned int),char *ip,char *host,char *info)
{
int r;
if (info) {
if (!stralloc_copys(&rules_name,info)) return -1;
if (!stralloc_cats(&rules_name,"@")) return -1;
if (!stralloc_cats(&rules_name,ip)) return -1;
r = dorule(callback);
if (r) return r;
if (host) {
if (!stralloc_copys(&rules_name,info)) return -1;
if (!stralloc_cats(&rules_name,"@=")) return -1;
if (!stralloc_cats(&rules_name,host)) return -1;
r = dorule(callback);
if (r) return r;
}
}
if (!stralloc_copys(&rules_name,ip)) return -1;
r = dorule(callback);
if (r) return r;
if (host) {
if (!stralloc_copys(&rules_name,"=")) return -1;
if (!stralloc_cats(&rules_name,host)) return -1;
r = dorule(callback);
if (r) return r;
}
if (!stralloc_copys(&rules_name,ip)) return -1;
while (rules_name.len > 0) {
if (ip[rules_name.len - 1] == '.' ||
(ip[rules_name.len-1]==':' && rules_name.len>1)) {
r = dorule(callback);
if (r) return r;
}
--rules_name.len;
}
if (host) {
while (*host) {
if (*host == '.') {
if (!stralloc_copys(&rules_name,"=")) return -1;
if (!stralloc_cats(&rules_name,host)) return -1;
r = dorule(callback);
if (r) return r;
}
++host;
}
if (!stralloc_copys(&rules_name,"=")) return -1;
r = dorule(callback);
if (r) return r;
}
rules_name.len = 0;
return dorule(callback);
}
int rules(void (*callback)(char *,unsigned int),int fd,char *ip,char *host,char *info)
{
int r;
cdb_init(&c,fd);
r = doit(callback,ip,host,info);
cdb_free(&c);
return r;
}
|