aboutsummaryrefslogtreecommitdiff
path: root/src/database.h
blob: 84e21c94bf844f4ad8ac86810f0d5a9a923fa72d (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
 * src/database.h
 * (c) 2021 Jonas Gunz <himself@jonasgunz.de>
 * License: MIT
 */

#pragma once

#include <stdlib.h>

#include "tree.h"
#include "log.h"

// TODO remove
#include "dns.h"

/*
 * Structure
 *
 * |-CLASS_IN
 * | |-RR_A tree
 * | |-RR_AAAA tree
 * | |-...
 * |-CLASS_CS
 * | |-...
 * |-...
 *
 * !! Always substract 1 from CLASS and RR Types, they start with 1
 *
 * Anything other than IN is probably never needed, but easier to do now than later.
 *
 * Data format in tree void*
 * 0     4     6         2+len
 * | ttl | len | data ... |
 * ttl: uint32_t
 * len: uint16_t
 *
 */

#define DB_CLASS_LEN	3
#define DB_RR_LEN	32

struct database {
	struct tree_node*** zone;
};

struct database_rdata {
	char*    rdata;
	uint16_t rdlen;
	uint32_t ttl;
};

int database_populate (
	struct database* _database,
	char* _zonefile
);

int database_destroy ( struct database* _database );

int database_query (
	struct database_rdata* _rdata,
	struct database* _database,
	const char* _qname,
	int _qname_len,
	uint16_t _qtype,
	uint16_t _qclass
);