blob: 1eb1dd94b742557d3dc3dab3bd08c272191babfe (
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
|
/* Copyright (C) CZ.NIC, z.s.p.o. <knot-resolver@labs.nic.cz>
* SPDX-License-Identifier: GPL-3.0-or-later
*/
#pragma once
#include "lib/defines.h"
#include "lib/generic/trie.h"
#include <libknot/rrset.h>
/**
* Find TA RRSet by name.
* @param trust_anchors trust store
* @param name name of the TA
* @return non-empty RRSet or NULL
*/
KR_EXPORT
knot_rrset_t *kr_ta_get(trie_t *trust_anchors, const knot_dname_t *name);
/**
* Add TA to trust store. DS or DNSKEY types are supported.
* @param trust_anchors trust store
* @param name name of the TA
* @param type RR type of the TA (DS or DNSKEY)
* @param ttl
* @param rdata
* @param rdlen
* @return 0 or an error
*/
KR_EXPORT
int kr_ta_add(trie_t *trust_anchors, const knot_dname_t *name, uint16_t type,
uint32_t ttl, const uint8_t *rdata, uint16_t rdlen);
struct kr_context;
/**
* Return pointer to the name of the closest positive trust anchor or NULL.
*
* "Closest" means on path towards root. Closer negative anchor results into NULL.
* @param type serves as a shorthand because DS needs to start one level higher.
*/
KR_EXPORT KR_PURE
const knot_dname_t * kr_ta_closest(const struct kr_context *ctx, const knot_dname_t *name,
const uint16_t type);
/**
* Remove TA from trust store.
* @param trust_anchors trust store
* @param name name of the TA
* @return 0 or an error
*/
KR_EXPORT
int kr_ta_del(trie_t *trust_anchors, const knot_dname_t *name);
/**
* Clear trust store.
* @param trust_anchors trust store
*/
KR_EXPORT
void kr_ta_clear(trie_t *trust_anchors);
|