21 #include <openssl/ssl.h>
22 #include <openssl/evp.h>
23 #include <openssl/rand.h>
24 #include <openssl/err.h>
25 #include <openssl/md5.h>
26 #include <openssl/bn.h>
27 #include <openssl/rsa.h>
29 #include <openssl/dsa.h>
112 ldns_rdf *sname, *hashed_sname, *tmp;
115 bool exact_match_found;
143 exact_match_found =
false;
144 in_range_found =
false;
168 exact_match_found =
true;
170 in_range_found =
true;
174 if (!exact_match_found && in_range_found) {
176 }
else if (exact_match_found && flag) {
181 }
else if (exact_match_found && !flag) {
238 t_netorder = htons(type);
262 t_netorder = htons(type);
300 keysize= ldns_buffer_position(keybuf);
320 memmove(&ac16, key + keysize - 3, 2);
323 return (uint16_t) ac16;
326 for (i = 0; (size_t)i < keysize; ++i) {
327 ac32 += (i & 1) ? key[i] : key[i] << 8;
329 ac32 += (ac32 >> 16) & 0xFFFF;
330 return (uint16_t) (ac32 & 0xFFFF);
340 ldns_buffer_position(key));
350 BIGNUM *Q; BIGNUM *P;
351 BIGNUM *G; BIGNUM *Y;
356 length = (64 + T * 8);
362 if(len < (
size_t)1 + SHA_DIGEST_LENGTH + 3*length)
365 Q = BN_bin2bn(key+offset, SHA_DIGEST_LENGTH, NULL);
366 offset += SHA_DIGEST_LENGTH;
368 P = BN_bin2bn(key+offset, (
int)length, NULL);
371 G = BN_bin2bn(key+offset, (
int)length, NULL);
374 Y = BN_bin2bn(key+offset, (
int)length, NULL);
377 if(!Q || !P || !G || !Y || !(dsa = DSA_new())) {
384 #if OPENSSL_VERSION_NUMBER < 0x10100000 || (defined(HAVE_LIBRESSL) && LIBRESSL_VERSION_NUMBER < 0x20700000)
392 if (!DSA_set0_pqg(dsa, P, Q, G)) {
402 if (!DSA_set0_key(dsa, Y, NULL)) {
417 ldns_buffer_position(key));
438 memmove(&int16, key+1, 2);
447 if(len < (
size_t)offset + exp + 1)
452 if(!exponent)
return NULL;
453 (void) BN_bin2bn(key+offset, (
int)exp, exponent);
463 (void) BN_bin2bn(key+offset, (
int)(len - offset), modulus);
471 #if OPENSSL_VERSION_NUMBER < 0x10100000 || (defined(HAVE_LIBRESSL) && LIBRESSL_VERSION_NUMBER < 0x20700000)
477 if (!RSA_set0_key(rsa, modulus, exponent, NULL)) {
493 ctx = EVP_MD_CTX_create();
496 if(!EVP_DigestInit_ex(ctx, md, NULL) ||
497 !EVP_DigestUpdate(ctx, data, len) ||
498 !EVP_DigestFinal_ex(ctx, dest, NULL)) {
499 EVP_MD_CTX_destroy(ctx);
502 EVP_MD_CTX_destroy(ctx);
517 const EVP_MD* md = NULL;
553 md = EVP_get_digestbyname(
"md_gost94");
609 sha1hash = (uint8_t)h;
638 (void)
ldns_sha1((
unsigned char *) ldns_buffer_begin(data_buf),
639 (
unsigned int) ldns_buffer_position(data_buf),
640 (
unsigned char *) digest);
649 (void)
ldns_sha256((
unsigned char *) ldns_buffer_begin(data_buf),
650 (
unsigned int) ldns_buffer_position(data_buf),
651 (
unsigned char *) digest);
660 (
unsigned int) ldns_buffer_position(data_buf),
661 (
unsigned char *) digest, md)) {
668 (
size_t)EVP_MD_size(md),
675 (void) SHA384((
unsigned char *) ldns_buffer_begin(data_buf),
676 (
unsigned int) ldns_buffer_position(data_buf),
677 (
unsigned char *) digest);
679 SHA384_DIGEST_LENGTH,
726 uint8_t windowpresent[256];
731 uint8_t* data = NULL;
739 memset(windows, 0,
sizeof(
int)*256);
740 memset(windowpresent, 0, 256);
744 for (d = rr_type_list; d < rr_type_list + size; d++) {
747 windowpresent[window] = 1;
748 if (windows[window] < (
int)subtype) {
749 windows[window] = (int)subtype;
756 for (i = 0; i < 256; i++) {
757 if (windowpresent[i]) {
758 sz += windows[i] / 8 + 3;
768 for (i = 0; i < 256; i++) {
769 if (windowpresent[i]) {
770 *dptr++ = (uint8_t)i;
771 *dptr++ = (uint8_t)(windows[i] / 8 + 1);
776 windows[i] = (int)(dptr - data);
785 for (d = rr_type_list; d < rr_type_list + size; d++) {
787 data[windows[*d >> 8] + subtype/8] |= (0x80 >> (subtype % 8));
806 if (cur_rrset->
type == type) {
809 cur_rrset = cur_rrset->
next;
821 size_t type_count = 0;
823 int on_delegation_point;
839 cur_rrsets = from->
rrsets;
843 if ((on_delegation_point && (
846 || (!on_delegation_point &&
850 types[type_count] = cur_rrsets->
type;
853 cur_rrsets = cur_rrsets->
next;
880 size_t type_count = 0;
883 int on_delegation_point;
912 cur_rrsets = from->
rrsets;
920 if ((on_delegation_point && (
923 || (!on_delegation_point &&
926 types[type_count] = cur_rrsets->
type;
929 cur_rrsets = cur_rrsets->
next;
934 if (type_count > 0 &&
974 size_t type_count = 0;
987 if (type_count == 0 || i_type_list[type_count-1] != i_type) {
988 i_type_list[type_count] = i_type;
1010 uint16_t iterations,
1011 uint8_t salt_length,
1012 const uint8_t *salt)
1014 size_t hashed_owner_str_len;
1017 unsigned char *hashed_owner_str;
1018 char *hashed_owner_b32;
1019 size_t hashed_owner_b32_len;
1035 fprintf(stderr,
"Memory error\n");
1042 hashed_owner_str =
LDNS_XMALLOC(
unsigned char, hashed_owner_str_len);
1043 if(!hashed_owner_str) {
1048 memcpy(hashed_owner_str +
ldns_rdf_size(cann), salt, salt_length);
1051 for (cur_it = iterations + 1; cur_it > 0; cur_it--) {
1052 (void)
ldns_sha1((
unsigned char *) hashed_owner_str,
1053 (
unsigned int) hashed_owner_str_len, hash);
1057 hashed_owner_str =
LDNS_XMALLOC(
unsigned char, hashed_owner_str_len);
1058 if (!hashed_owner_str) {
1067 hashed_owner_str = hash;
1071 ldns_b32_ntop_calculate_size(hashed_owner_str_len) + 1);
1072 if(!hashed_owner_b32) {
1076 (uint8_t *) hashed_owner_str,
1077 hashed_owner_str_len,
1079 ldns_b32_ntop_calculate_size(hashed_owner_str_len)+1);
1080 if (hashed_owner_b32_len < 1) {
1082 fprintf(stderr,
"Error in base32 extended hex encoding ");
1083 fprintf(stderr,
"of hashed owner name (name: ");
1085 fprintf(stderr,
", return code: %u)\n",
1086 (
unsigned int) hashed_owner_b32_len);
1091 hashed_owner_b32[hashed_owner_b32_len] =
'\0';
1096 fprintf(stderr,
"Error creating rdf from %s\n", hashed_owner_b32);
1103 return hashed_owner;
1110 uint16_t iterations,
1111 uint8_t salt_length,
1112 const uint8_t *salt)
1115 uint8_t *salt_data = NULL;
1120 1, (
void*)&algorithm),
1141 salt_data[0] = salt_length;
1142 memcpy(salt_data + 1, salt, salt_length);
1162 if (!origin || !rr_list)
return 0;
1183 uint16_t iterations,
1184 uint8_t salt_length,
1185 const uint8_t *salt,
1186 bool emptynonterminal)
1198 size_t type_count = 0;
1232 if (type_count == 0 || i_type_list[type_count-1] != i_type) {
1233 i_type_list[type_count] = i_type;
1241 if (!emptynonterminal && !rr_list_delegation_only(cur_zone, rrs)) {
1331 uint8_t salt_length;
1340 if(!salt)
return NULL;
1371 uint16_t iterations;
1372 uint8_t salt_length;
1389 return hashed_owner;
1403 uint8_t window = type >> 8;
1404 uint8_t subtype = type & 0xff;
1417 while (dptr < dend && dptr[0] <= window) {
1419 if (dptr[0] == window && subtype / 8 < dptr[1] &&
1420 dptr + dptr[1] + 2 <= dend) {
1422 return dptr[2 + subtype / 8] & (0x80 >> (subtype % 8));
1424 dptr += dptr[1] + 2;
1440 uint8_t window = type >> 8;
1441 uint8_t subtype = type & 0xff;
1454 while (dptr < dend && dptr[0] <= window) {
1456 if (dptr[0] == window && subtype / 8 < dptr[1] &&
1457 dptr + dptr[1] + 2 <= dend) {
1459 dptr[2 + subtype / 8] |= (0x80 >> (subtype % 8));
1462 dptr += dptr[1] + 2;
1478 uint8_t window = type >> 8;
1479 uint8_t subtype = type & 0xff;
1493 while (dptr < dend && dptr[0] <= window) {
1495 if (dptr[0] == window && subtype / 8 < dptr[1] &&
1496 dptr + dptr[1] + 2 <= dend) {
1498 dptr[2 + subtype / 8] &= ~(0x80 >> (subtype % 8));
1501 dptr += dptr[1] + 2;
1512 char *next_hash_str;
1598 t_netorder = htons(t);
1604 if (! sigs_covered) {
1637 char *next_nsec_owner_str;
1644 next_nsec_owner_label =
1647 next_nsec_owner_str =
ldns_rdf2str(next_nsec_owner_label);
1648 if (next_nsec_owner_str[strlen(next_nsec_owner_str) - 1]
1650 next_nsec_owner_str[strlen(next_nsec_owner_str) - 1]
1654 next_nsec_owner_str);
1656 next_nsec_rdf, 4)) {
1663 next_nsec_owner_label =
1667 next_nsec_owner_str =
ldns_rdf2str(next_nsec_owner_label);
1668 if (next_nsec_owner_str[strlen(next_nsec_owner_str) - 1]
1670 next_nsec_owner_str[strlen(next_nsec_owner_str) - 1]
1674 next_nsec_owner_str);
1678 next_nsec_rdf, 4)) {
1691 if (rr1 == NULL && rr2 == NULL) {
1706 qsort(unsorted->
_rrs,
1752 const BIGNUM *
R, *S;
1753 unsigned char *dsasig_data = (
unsigned char*)ldns_buffer_begin(sig);
1756 dsasig = d2i_DSA_SIG(NULL,
1757 (
const unsigned char **)&dsasig_data,
1760 DSA_SIG_free(dsasig);
1766 DSA_SIG_free(dsasig);
1770 # ifdef HAVE_DSA_SIG_GET0
1771 DSA_SIG_get0(dsasig, &
R, &S);
1776 byte_offset = (size_t) (20 - BN_num_bytes(
R));
1777 if (byte_offset > 20) {
1778 DSA_SIG_free(dsasig);
1782 memset(&dsasig_data[1], 0, byte_offset);
1783 BN_bn2bin(
R, &dsasig_data[1 + byte_offset]);
1784 byte_offset = (size_t) (20 - BN_num_bytes(S));
1785 if (byte_offset > 20) {
1786 DSA_SIG_free(dsasig);
1790 memset(&dsasig_data[21], 0, byte_offset);
1791 BN_bn2bin(S, &dsasig_data[21 + byte_offset]);
1797 DSA_SIG_free(dsasig);
1801 (void)sig; (void)sig_len;
1814 unsigned char *raw_sig = NULL;
1822 (void) BN_bin2bn((
unsigned char *)
ldns_rdf_data(sig_rdf) + 1,
1823 SHA_DIGEST_LENGTH,
R);
1829 (void) BN_bin2bn((
unsigned char *)
ldns_rdf_data(sig_rdf) + 21,
1830 SHA_DIGEST_LENGTH, S);
1832 dsasig = DSA_SIG_new();
1838 # ifdef HAVE_DSA_SIG_SET0
1839 if (! DSA_SIG_set0(dsasig,
R, S)) {
1840 DSA_SIG_free(dsasig);
1848 raw_sig_len = i2d_DSA_SIG(dsasig, &raw_sig);
1849 if (raw_sig_len < 0) {
1850 DSA_SIG_free(dsasig);
1855 ldns_buffer_write(target_buffer, raw_sig, (
size_t)raw_sig_len);
1858 DSA_SIG_free(dsasig);
1861 return ldns_buffer_status(target_buffer);
1863 (void)target_buffer; (void)sig_rdf;
1872 const long sig_len,
int num_bytes)
1874 ECDSA_SIG* ecdsa_sig;
1875 const BIGNUM *r, *s;
1876 unsigned char *data = (
unsigned char*)ldns_buffer_begin(sig);
1878 ecdsa_sig = d2i_ECDSA_SIG(NULL, (
const unsigned char **)&data, sig_len);
1879 if(!ecdsa_sig)
return NULL;
1881 #ifdef HAVE_ECDSA_SIG_GET0
1882 ECDSA_SIG_get0(ecdsa_sig, &r, &s);
1888 if(BN_num_bytes(r) > num_bytes ||
1889 BN_num_bytes(s) > num_bytes) {
1890 ECDSA_SIG_free(ecdsa_sig);
1895 ECDSA_SIG_free(ecdsa_sig);
1900 memset(data, 0, num_bytes*2);
1901 BN_bn2bin(r, data+num_bytes-BN_num_bytes(r));
1902 BN_bn2bin(s, data+num_bytes*2-BN_num_bytes(s));
1904 ECDSA_SIG_free(ecdsa_sig);
1919 uint8_t pre[] = {0x30, 0x44, 0x02, 0x20};
1921 uint8_t mid[] = {0x02, 0x20};
1923 int raw_sig_len, r_high, s_high, r_rem=0, s_rem=0;
1927 if(bnsize < 16 || (
size_t)bnsize*2 !=
ldns_rdf_size(sig_rdf))
1930 while(r_rem < bnsize-1 && d[r_rem] == 0)
1933 while(s_rem < bnsize-1 && d[bnsize+s_rem] == 0)
1936 r_high = ((d[0+r_rem]&0x80)?1:0);
1937 s_high = ((d[bnsize+s_rem]&0x80)?1:0);
1938 raw_sig_len = pre_len + r_high + bnsize - r_rem + mid_len +
1939 s_high + bnsize - s_rem;
1941 ldns_buffer_write_u8(target_buffer, pre[0]);
1942 ldns_buffer_write_u8(target_buffer, raw_sig_len-2);
1943 ldns_buffer_write_u8(target_buffer, pre[2]);
1944 ldns_buffer_write_u8(target_buffer, bnsize + r_high - r_rem);
1946 ldns_buffer_write_u8(target_buffer, 0);
1947 ldns_buffer_write(target_buffer, d+r_rem, bnsize-r_rem);
1948 ldns_buffer_write(target_buffer, mid, mid_len-1);
1949 ldns_buffer_write_u8(target_buffer, bnsize + s_high - s_rem);
1951 ldns_buffer_write_u8(target_buffer, 0);
1952 ldns_buffer_write(target_buffer, d+bnsize+s_rem, bnsize-s_rem);
1954 return ldns_buffer_status(target_buffer);
void ldns_buffer_free(ldns_buffer *buffer)
frees the buffer.
signed char ldns_buffer_reserve(ldns_buffer *buffer, size_t amount)
ensures BUFFER can contain at least AMOUNT more bytes.
ldns_buffer * ldns_buffer_new(size_t capacity)
creates a new buffer with the specified capacity.
#define LDNS_MIN_BUFLEN
number of initial bytes in buffer of which we cannot tell the size before hand
int ldns_dname_compare(const ldns_rdf *dname1, const ldns_rdf *dname2)
Compares the two dname rdf's according to the algorithm for ordering in RFC4034 Section 6.
ldns_rdf * ldns_dname_left_chop(const ldns_rdf *d)
chop one label off the left side of a dname.
void ldns_dname2canonical(const ldns_rdf *rdf)
Put a dname into canonical fmt - ie.
uint8_t ldns_dname_label_count(const ldns_rdf *r)
count the number of labels inside a LDNS_RDF_DNAME type rdf.
ldns_status ldns_dname_cat(ldns_rdf *rd1, const ldns_rdf *rd2)
concatenates rd2 after rd1 (rd2 is copied, rd1 is modified)
ldns_rdf * ldns_dname_label(const ldns_rdf *rdf, uint8_t labelpos)
look inside the rdf and if it is an LDNS_RDF_TYPE_DNAME try and retrieve a specific label.
ldns_rdf * ldns_dname_new_frm_str(const char *str)
creates a new dname rdf from a string.
int ldns_digest_evp(const unsigned char *data, unsigned int len, unsigned char *dest, const EVP_MD *md)
Utility function to calculate hash using generic EVP_MD pointer.
int ldns_dnssec_default_delete_signatures(ldns_rr *sig __attribute__((unused)), void *n __attribute__((unused)))
RSA * ldns_key_buf2rsa(const ldns_buffer *key)
converts a buffer holding key material to a RSA key in openssl.
ldns_rdf * ldns_nsec_get_bitmap(const ldns_rr *nsec)
Returns the rdata field that contains the bitmap of the covered types of the given NSEC record.
signed char ldns_nsec_bitmap_covers_type(const ldns_rdf *bitmap, ldns_rr_type type)
Check if RR type t is enumerated and set in the RR type bitmap rdf.
ldns_rr * ldns_dnssec_create_nsec3(const ldns_dnssec_name *from, const ldns_dnssec_name *to, const ldns_rdf *zone_name, uint8_t algorithm, uint8_t flags, uint16_t iterations, uint8_t salt_length, const uint8_t *salt)
Creates NSEC3.
ldns_rr * ldns_create_nsec3(const ldns_rdf *cur_owner, const ldns_rdf *cur_zone, const ldns_rr_list *rrs, uint8_t algorithm, uint8_t flags, uint16_t iterations, uint8_t salt_length, const uint8_t *salt, signed char emptynonterminal)
uint16_t ldns_nsec3_iterations(const ldns_rr *nsec3_rr)
Returns the number of hash iterations used in the given NSEC3 RR.
void ldns_rr_list_sort_nsec3(ldns_rr_list *unsorted)
sort nsec3 list
ldns_status ldns_convert_ecdsa_rrsig_rdf2asn1(ldns_buffer *target_buffer, const ldns_rdf *sig_rdf)
Converts the RRSIG signature RDF (from DNS) to a buffer with the signature in ASN1 format as openssl ...
ldns_rdf * ldns_convert_dsa_rrsig_asn12rdf(const ldns_buffer *sig, const long sig_len)
Converts the DSA signature from ASN1 representation (RFC2459, as used by OpenSSL) to raw signature da...
ldns_rr * ldns_dnssec_get_dnskey_for_rrsig(const ldns_rr *rrsig, const ldns_rr_list *rrs)
Returns the DNSKEY that corresponds to the given RRSIG rr from the list, if any.
ldns_rr * ldns_dnssec_get_rrsig_for_name_and_type(const ldns_rdf *name, const ldns_rr_type type, const ldns_rr_list *rrs)
Returns the first RRSIG rr that corresponds to the rrset with the given name and type.
int ldns_dnssec_default_replace_signatures(ldns_rr *sig __attribute__((unused)), void *n __attribute__((unused)))
void ldns_nsec3_add_param_rdfs(ldns_rr *rr, uint8_t algorithm, uint8_t flags, uint16_t iterations, uint8_t salt_length, const uint8_t *salt)
Sets all the NSEC3 options.
ldns_rdf * ldns_convert_ecdsa_rrsig_asn1len2rdf(const ldns_buffer *sig, const long sig_len, int num_bytes)
Converts the ECDSA signature from ASN1 representation (as used by OpenSSL) to raw signature data as u...
signed char ldns_nsec_covers_name(const ldns_rr *nsec, const ldns_rdf *name)
Checks coverage of NSEC(3) RR name span Remember that nsec and name must both be in canonical form (i...
int ldns_dnssec_default_add_to_signatures(ldns_rr *sig __attribute__((unused)), void *n __attribute__((unused)))
signed char ldns_dnssec_pkt_has_rrsigs(const ldns_pkt *pkt)
Checks whether the packet contains rrsigs.
RSA * ldns_key_buf2rsa_raw(const unsigned char *key, size_t len)
Like ldns_key_buf2rsa, but uses raw buffer.
uint16_t ldns_calc_keytag_raw(const uint8_t *key, size_t keysize)
Calculates keytag of DNSSEC key, operates on wireformat rdata.
uint16_t ldns_calc_keytag(const ldns_rr *key)
calculates a keytag of a key for use in DNSSEC.
uint8_t ldns_nsec3_salt_length(const ldns_rr *nsec3_rr)
Returns the length of the salt used in the given NSEC3 RR.
int ldns_dnssec_default_leave_signatures(ldns_rr *sig __attribute__((unused)), void *n __attribute__((unused)))
uint8_t ldns_nsec3_flags(const ldns_rr *nsec3_rr)
Returns flags field.
ldns_rr * ldns_dnssec_create_nsec(const ldns_dnssec_name *from, const ldns_dnssec_name *to, ldns_rr_type nsec_type)
Creates NSEC.
ldns_rr * ldns_create_nsec(ldns_rdf *cur_owner, ldns_rdf *next_owner, ldns_rr_list *rrs)
Create a NSEC record.
uint8_t * ldns_nsec3_salt_data(const ldns_rr *nsec3_rr)
Returns the salt bytes used in the given NSEC3 RR.
ldns_rdf * ldns_dnssec_create_nsec_bitmap(ldns_rr_type rr_type_list[], size_t size, ldns_rr_type nsec_type)
Create the type bitmap for an NSEC(3) record.
ldns_status ldns_convert_dsa_rrsig_rdf2asn1(ldns_buffer *target_buffer, const ldns_rdf *sig_rdf)
Converts the RRSIG signature RDF (in rfc2536 format) to a buffer with the signature in rfc2459 format...
ldns_status ldns_pkt_verify_time(const ldns_pkt *p, ldns_rr_type t, const ldns_rdf *o, const ldns_rr_list *k, const ldns_rr_list *s, time_t check_time, ldns_rr_list *good_keys)
verify a packet
ldns_rr_list * ldns_dnssec_pkt_get_rrsigs_for_name_and_type(const ldns_pkt *pkt, const ldns_rdf *name, ldns_rr_type type)
Returns a ldns_rr_list containing the signatures covering the given name and type.
uint8_t ldns_nsec3_algorithm(const ldns_rr *nsec3_rr)
Returns the hash algorithm used in the given NSEC3 RR.
signed char ldns_nsec3_optout(const ldns_rr *nsec3_rr)
Returns true if the opt-out flag has been set in the given NSEC3 RR.
ldns_status ldns_nsec_bitmap_set_type(ldns_rdf *bitmap, ldns_rr_type type)
Checks if RR type t is enumerated in the type bitmap rdf and sets the bit.
ldns_rdf * ldns_nsec3_bitmap(const ldns_rr *nsec3_rr)
Returns the bitmap specifying the covered types of the given NSEC3 RR.
DSA * ldns_key_buf2dsa_raw(const unsigned char *key, size_t len)
Like ldns_key_buf2dsa, but uses raw buffer.
ldns_status ldns_nsec_bitmap_clear_type(ldns_rdf *bitmap, ldns_rr_type type)
Checks if RR type t is enumerated in the type bitmap rdf and clears the bit.
ldns_rdf * ldns_nsec3_hash_name_frm_nsec3(const ldns_rr *nsec, const ldns_rdf *name)
Calculates the hashed name using the parameters of the given NSEC3 RR.
ldns_status ldns_pkt_verify(const ldns_pkt *p, ldns_rr_type t, const ldns_rdf *o, const ldns_rr_list *k, const ldns_rr_list *s, ldns_rr_list *good_keys)
verify a packet
ldns_rdf * ldns_dnssec_nsec3_closest_encloser(const ldns_rdf *qname, ldns_rr_type qtype __attribute__((unused)), const ldns_rr_list *nsec3s)
ldns_rr * ldns_key_rr2ds(const ldns_rr *key, ldns_hash h)
returns a new DS rr that represents the given key rr.
ldns_status ldns_dnssec_chain_nsec3_list(ldns_rr_list *nsec3_rrs)
chains nsec3 list
ldns_rr_list * ldns_dnssec_pkt_get_rrsigs_for_type(const ldns_pkt *pkt, ldns_rr_type type)
Returns a ldns_rr_list containing the signatures covering the given type.
ldns_rdf * ldns_nsec3_next_owner(const ldns_rr *nsec3_rr)
Returns the first label of the next ownername in the NSEC3 chain (ie.
DSA * ldns_key_buf2dsa(const ldns_buffer *key)
converts a buffer holding key material to a DSA key in openssl.
ldns_rdf * ldns_nsec3_salt(const ldns_rr *nsec3_rr)
Returns the salt used in the given NSEC3 RR.
ldns_rdf * ldns_nsec3_hash_name(const ldns_rdf *name, uint8_t algorithm, uint16_t iterations, uint8_t salt_length, const uint8_t *salt)
Calculates the hashed name using the given parameters.
int qsort_rr_compare_nsec3(const void *a, const void *b)
compare for nsec3 sort
int ldns_dnssec_rrsets_contains_type(const ldns_dnssec_rrsets *rrsets, ldns_rr_type type)
returns whether a rrset of the given type is found in the rrsets.
This module contains base functions for DNSSEC operations (RFC4033 t/m RFC4035).
#define LDNS_SIGNATURE_LEAVE_ADD_NEW
return values for the old-signature callback
#define LDNS_SIGNATURE_REMOVE_NO_ADD
#define LDNS_SIGNATURE_REMOVE_ADD_NEW
#define LDNS_SIGNATURE_LEAVE_NO_ADD
ldns_status ldns_verify_time(const ldns_rr_list *rrset, const ldns_rr_list *rrsig, const ldns_rr_list *keys, time_t check_time, ldns_rr_list *good_keys)
Verifies a list of signatures for one rrset.
ldns_rdf * ldns_dnssec_name_name(const ldns_dnssec_name *name)
Returns the domain name of the given dnssec_name structure.
@ LDNS_STATUS_CRYPTO_ALGO_NOT_IMPL
@ LDNS_STATUS_TYPE_NOT_IN_BITMAP
@ LDNS_STATUS_SYNTAX_RDATA_ERR
const char * ldns_get_errorstr_by_id(ldns_status err)
look up a descriptive text by each error.
enum ldns_enum_status ldns_status
void ldns_rdf_print(FILE *output, const ldns_rdf *rdf)
Prints the data in the rdata field to the given file stream (in presentation format)
char * ldns_rdf2str(const ldns_rdf *rdf)
Converts the data in the rdata field to presentation format and returns that as a char *.
ldns_status ldns_rdf2buffer_wire(ldns_buffer *output, const ldns_rdf *rdf)
Copies the rdata data to the buffer in wire format.
ldns_status ldns_rr_rdata2buffer_wire(ldns_buffer *output, const ldns_rr *rr)
Converts an rr's rdata to wireformat, while excluding the ownername and all the stuff before the rdat...
int ldns_key_EVP_load_gost_id(void)
Get the PKEY id for GOST, loads GOST into openssl as a side effect.
enum ldns_enum_hash ldns_hash
Including this file will include all ldns files, and define some lookup tables.
#define LDNS_MAX_PACKETLEN
ldns_rr_list * ldns_pkt_authority(const ldns_pkt *p)
Return the packet's authority section.
uint16_t ldns_pkt_ancount(const ldns_pkt *p)
Return the packet's an count.
uint16_t ldns_pkt_nscount(const ldns_pkt *p)
Return the packet's ns count.
ldns_rr_list * ldns_pkt_answer(const ldns_pkt *p)
Return the packet's answer section.
ldns_rr_list * ldns_pkt_rr_list_by_type(const ldns_pkt *p, ldns_rr_type t, ldns_pkt_section s)
return all the rr with a specific type from a packet.
ldns_rr_list * ldns_pkt_rr_list_by_name_and_type(const ldns_pkt *packet, const ldns_rdf *ownername, ldns_rr_type type, ldns_pkt_section sec)
return all the rr with a specific type and type from a packet.
@ LDNS_SECTION_ANY_NOQUESTION
used to get all non-question rrs from a packet
ldns_rdf_type ldns_rdf_get_type(const ldns_rdf *rd)
returns the type of the rdf.
#define LDNS_RDF_SIZE_WORD
void ldns_rdf_deep_free(ldns_rdf *rd)
frees a rdf structure and frees the data.
ldns_rdf * ldns_rdf_new(ldns_rdf_type type, size_t size, void *data)
allocates a new rdf structure and fills it.
uint16_t ldns_rdf2native_int16(const ldns_rdf *rd)
returns the native uint16_t representation from the rdf.
ldns_rdf * ldns_native2rdf_int16(ldns_rdf_type type, uint16_t value)
returns the rdf containing the native uint16_t representation.
uint8_t ldns_rdf2native_int8(const ldns_rdf *rd)
returns the native uint8_t representation from the rdf.
@ LDNS_RDF_TYPE_B64
b64 string
@ LDNS_RDF_TYPE_NSEC3_SALT
nsec3 hash salt
@ LDNS_RDF_TYPE_HEX
hex string
@ LDNS_RDF_TYPE_INT8
8 bits
@ LDNS_RDF_TYPE_INT16
16 bits
@ LDNS_RDF_TYPE_TYPE
a RR type
size_t ldns_rdf_size(const ldns_rdf *rd)
returns the size of the rdf.
uint8_t * ldns_rdf_data(const ldns_rdf *rd)
returns the data of the rdf.
void ldns_rdf_free(ldns_rdf *rd)
frees a rdf structure, leaving the data pointer intact.
int ldns_rdf_compare(const ldns_rdf *rd1, const ldns_rdf *rd2)
compares two rdf's on their wire formats.
#define LDNS_NSEC3_VARS_OPTOUT_MASK
ldns_rdf * ldns_rdf_clone(const ldns_rdf *rd)
clones a rdf structure.
ldns_rdf * ldns_rdf_new_frm_data(ldns_rdf_type type, size_t size, const void *data)
allocates a new rdf structure and fills it.
ldns_rr * ldns_rr_list_rr(const ldns_rr_list *rr_list, size_t nr)
returns a specific rr of an rrlist.
uint32_t ldns_rr_ttl(const ldns_rr *rr)
returns the ttl of an rr structure.
ldns_rdf * ldns_rr_owner(const ldns_rr *rr)
returns the owner name of an rr structure.
ldns_rr_type ldns_rdf2rr_type(const ldns_rdf *rd)
convert an rdf of type LDNS_RDF_TYPE_TYPE to an actual LDNS_RR_TYPE.
void ldns_rr_list_deep_free(ldns_rr_list *rr_list)
frees an rr_list structure and all rrs contained therein.
void ldns_rr_free(ldns_rr *rr)
frees an RR structure
void ldns_rr_set_owner(ldns_rr *rr, ldns_rdf *owner)
sets the owner in the rr structure.
ldns_rr * ldns_rr_new_frm_type(ldns_rr_type t)
creates a new rr structure, based on the given type.
enum ldns_enum_rr_type ldns_rr_type
void ldns_rr_set_type(ldns_rr *rr, ldns_rr_type rr_type)
sets the type in the rr.
@ LDNS_RR_TYPE_RRSIG
DNSSEC.
@ LDNS_RR_TYPE_SOA
marks the start of a zone of authority
@ LDNS_RR_TYPE_DS
RFC4034, RFC3658.
@ LDNS_RR_TYPE_KEY
2535typecode
@ LDNS_RR_TYPE_NSEC3PARAM
@ LDNS_RR_TYPE_NS
an authoritative name server
ldns_rdf * ldns_rr_set_rdf(ldns_rr *rr, const ldns_rdf *f, size_t position)
sets a rdf member, it will be set on the position given.
size_t ldns_rr_list_rr_count(const ldns_rr_list *rr_list)
returns the number of rr's in an rr_list.
ldns_rr_type ldns_rr_get_type(const ldns_rr *rr)
returns the type of the rr.
void ldns_rr_set_ttl(ldns_rr *rr, uint32_t ttl)
sets the ttl in the rr structure.
ldns_rr_class ldns_rr_get_class(const ldns_rr *rr)
returns the class of the rr.
void ldns_rr_set_class(ldns_rr *rr, ldns_rr_class rr_class)
sets the class in the rr.
ldns_rr_list * ldns_rr_list_subtype_by_rdf(const ldns_rr_list *l, const ldns_rdf *r, size_t pos)
Return the rr_list which matches the rdf at position field.
signed char ldns_rr_push_rdf(ldns_rr *rr, const ldns_rdf *f)
sets rd_field member, it will be placed in the next available spot.
ldns_rdf * ldns_rr_rdf(const ldns_rr *rr, size_t nr)
returns the rdata field member counter.
ldns_rr * ldns_rr_new(void)
creates a new rr structure.
ldns_rdf * ldns_rr_rrsig_keytag(const ldns_rr *r)
returns the keytag of a LDNS_RR_TYPE_RRSIG RR
ldns_rdf * ldns_rr_rrsig_typecovered(const ldns_rr *r)
returns the type covered of a LDNS_RR_TYPE_RRSIG rr
ldns_rdf * ldns_rr_rrsig_signame(const ldns_rr *r)
returns the signers name of a LDNS_RR_TYPE_RRSIG RR
#define LDNS_SHA1_DIGEST_LENGTH
unsigned char * ldns_sha1(const unsigned char *data, unsigned int data_len, unsigned char *digest)
Convenience function to digest a fixed block of data at once.
unsigned char * ldns_sha256(const unsigned char *data, unsigned int data_len, unsigned char *digest)
Convenience function to digest a fixed block of data at once.
#define LDNS_SHA256_DIGEST_LENGTH
ldns_status ldns_str2rdf_b32_ext(ldns_rdf **rd, const char *str)
convert the string with the b32 ext hex data into wireformat
ldns_status ldns_str2rdf_dname(ldns_rdf **rd, const char *str)
convert a dname string into wireformat
implementation of buffers to ease operations
ldns_rdf * hashed_name
pointer to store the hashed name (only used when in an NSEC3 zone
ldns_dnssec_rrsets * rrsets
The rrsets for this name.
ldns_dnssec_rrsets * next
Resource record data field.
List or Set of Resource Records.
int ldns_b32_ntop_extended_hex(const uint8_t *src_data, size_t src_data_length, char *target_text_buffer, size_t target_text_buffer_size)
#define LDNS_CALLOC(type, count)
#define LDNS_XMALLOC(type, count)