tsig.c
Go to the documentation of this file.
1 /*
2  * tsig.c
3  *
4  * contains the functions needed for TSIG [RFC2845]
5  *
6  * (c) 2005-2006 NLnet Labs
7  * See the file LICENSE for the license
8  */
9 
10 #include <ldns/config.h>
11 
12 #include <ldns/ldns.h>
13 
14 #include <strings.h>
15 
16 #ifdef HAVE_SSL
17 #include <openssl/hmac.h>
18 #include <openssl/md5.h>
19 #endif /* HAVE_SSL */
20 
21 char *
23 {
24  return tc->algorithm;
25 }
26 
27 char *
29 {
30  return tc->keyname;
31 }
32 
33 char *
35 {
36  return tc->keydata;
37 }
38 
39 char *
41 {
42  return strdup(tc->keyname);
43 }
44 
45 char *
47 {
48  return strdup(tc->keydata);
49 }
50 
51 /*
52  * Makes an exact copy of the wire, but with the tsig rr removed
53  */
54 static uint8_t *
55 ldns_tsig_prepare_pkt_wire(uint8_t *wire, size_t wire_len, size_t *result_len)
56 {
57  uint8_t *wire2 = NULL;
58  uint16_t qd_count;
59  uint16_t an_count;
60  uint16_t ns_count;
61  uint16_t ar_count;
62  ldns_rr *rr;
63 
64  size_t pos;
65  uint16_t i;
66 
67  ldns_status status;
68 
69  if(wire_len < LDNS_HEADER_SIZE) {
70  return NULL;
71  }
72  /* fake parse the wire */
73  qd_count = LDNS_QDCOUNT(wire);
74  an_count = LDNS_ANCOUNT(wire);
75  ns_count = LDNS_NSCOUNT(wire);
76  ar_count = LDNS_ARCOUNT(wire);
77 
78  if (ar_count > 0) {
79  ar_count--;
80  } else {
81  return NULL;
82  }
83 
84  pos = LDNS_HEADER_SIZE;
85 
86  for (i = 0; i < qd_count; i++) {
87  status = ldns_wire2rr(&rr, wire, wire_len, &pos, LDNS_SECTION_QUESTION);
88  if (status != LDNS_STATUS_OK) {
89  return NULL;
90  }
91  ldns_rr_free(rr);
92  }
93 
94  for (i = 0; i < an_count; i++) {
95  status = ldns_wire2rr(&rr, wire, wire_len, &pos, LDNS_SECTION_ANSWER);
96  if (status != LDNS_STATUS_OK) {
97  return NULL;
98  }
99  ldns_rr_free(rr);
100  }
101 
102  for (i = 0; i < ns_count; i++) {
103  status = ldns_wire2rr(&rr, wire, wire_len, &pos, LDNS_SECTION_AUTHORITY);
104  if (status != LDNS_STATUS_OK) {
105  return NULL;
106  }
107  ldns_rr_free(rr);
108  }
109 
110  for (i = 0; i < ar_count; i++) {
111  status = ldns_wire2rr(&rr, wire, wire_len, &pos,
113  if (status != LDNS_STATUS_OK) {
114  return NULL;
115  }
116  ldns_rr_free(rr);
117  }
118 
119  *result_len = pos;
120  wire2 = LDNS_XMALLOC(uint8_t, *result_len);
121  if(!wire2) {
122  return NULL;
123  }
124  memcpy(wire2, wire, *result_len);
125 
126  ldns_write_uint16(wire2 + LDNS_ARCOUNT_OFF, ar_count);
127 
128  return wire2;
129 }
130 
131 #ifdef HAVE_SSL
132 static const EVP_MD *
133 ldns_digest_function(char *name)
134 {
135  /* these are the mandatory algorithms from RFC4635 */
136  /* The optional algorithms are not yet implemented */
137  if (strcasecmp(name, "hmac-sha256.") == 0) {
138 #ifdef HAVE_EVP_SHA256
139  return EVP_sha256();
140 #else
141  return NULL;
142 #endif
143  } else if (strcasecmp(name, "hmac-sha1.") == 0) {
144  return EVP_sha1();
145  } else if (strcasecmp(name, "hmac-md5.sig-alg.reg.int.") == 0) {
146  return EVP_md5();
147  } else {
148  return NULL;
149  }
150 }
151 #endif
152 
153 #ifdef HAVE_SSL
154 static ldns_status
155 ldns_tsig_mac_new(ldns_rdf **tsig_mac, uint8_t *pkt_wire, size_t pkt_wire_size,
156  const char *key_data, ldns_rdf *key_name_rdf, ldns_rdf *fudge_rdf,
157  ldns_rdf *algorithm_rdf, ldns_rdf *time_signed_rdf, ldns_rdf *error_rdf,
158  ldns_rdf *other_data_rdf, ldns_rdf *orig_mac_rdf, int tsig_timers_only)
159 {
160  ldns_status status;
161  char *wireformat;
162  int wiresize;
163  unsigned char *mac_bytes = NULL;
164  unsigned char *key_bytes = NULL;
165  int key_size;
166  const EVP_MD *digester;
167  char *algorithm_name = NULL;
168  unsigned int md_len = EVP_MAX_MD_SIZE;
169  ldns_rdf *result = NULL;
170  ldns_buffer *data_buffer = NULL;
171  ldns_rdf *canonical_key_name_rdf = NULL;
172  ldns_rdf *canonical_algorithm_rdf = NULL;
173 
174  if (key_name_rdf == NULL || algorithm_rdf == NULL) {
175  return LDNS_STATUS_NULL;
176  }
177  canonical_key_name_rdf = ldns_rdf_clone(key_name_rdf);
178  if (canonical_key_name_rdf == NULL) {
179  return LDNS_STATUS_MEM_ERR;
180  }
181  canonical_algorithm_rdf = ldns_rdf_clone(algorithm_rdf);
182  if (canonical_algorithm_rdf == NULL) {
183  ldns_rdf_deep_free(canonical_key_name_rdf);
184  return LDNS_STATUS_MEM_ERR;
185  }
186  /*
187  * prepare the digestable information
188  */
189  data_buffer = ldns_buffer_new(LDNS_MAX_PACKETLEN);
190  if (!data_buffer) {
191  status = LDNS_STATUS_MEM_ERR;
192  goto clean;
193  }
194  /* if orig_mac is not NULL, add it too */
195  if (orig_mac_rdf) {
196  (void) ldns_rdf2buffer_wire(data_buffer, orig_mac_rdf);
197  }
198  ldns_buffer_write(data_buffer, pkt_wire, pkt_wire_size);
199  if (!tsig_timers_only) {
200  ldns_dname2canonical(canonical_key_name_rdf);
201  (void)ldns_rdf2buffer_wire(data_buffer,
202  canonical_key_name_rdf);
203  ldns_buffer_write_u16(data_buffer, LDNS_RR_CLASS_ANY);
204  ldns_buffer_write_u32(data_buffer, 0);
205  ldns_dname2canonical(canonical_algorithm_rdf);
206  (void)ldns_rdf2buffer_wire(data_buffer,
207  canonical_algorithm_rdf);
208  }
209  (void)ldns_rdf2buffer_wire(data_buffer, time_signed_rdf);
210  (void)ldns_rdf2buffer_wire(data_buffer, fudge_rdf);
211  if (!tsig_timers_only) {
212  (void)ldns_rdf2buffer_wire(data_buffer, error_rdf);
213  (void)ldns_rdf2buffer_wire(data_buffer, other_data_rdf);
214  }
215 
216  wireformat = (char *) data_buffer->_data;
217  wiresize = (int) ldns_buffer_position(data_buffer);
218 
219  algorithm_name = ldns_rdf2str(algorithm_rdf);
220  if(!algorithm_name) {
221  status = LDNS_STATUS_MEM_ERR;
222  goto clean;
223  }
224 
225  /* prepare the key */
226  key_bytes = LDNS_XMALLOC(unsigned char,
227  ldns_b64_pton_calculate_size(strlen(key_data)));
228  if(!key_bytes) {
229  status = LDNS_STATUS_MEM_ERR;
230  goto clean;
231  }
232  key_size = ldns_b64_pton(key_data, key_bytes,
233  ldns_b64_pton_calculate_size(strlen(key_data)));
234  if (key_size < 0) {
235  status = LDNS_STATUS_INVALID_B64;
236  goto clean;
237  }
238  /* hmac it */
239  /* 2 spare bytes for the length */
240  mac_bytes = LDNS_XMALLOC(unsigned char, md_len+2);
241  if(!mac_bytes) {
242  status = LDNS_STATUS_MEM_ERR;
243  goto clean;
244  }
245  memset(mac_bytes, 0, md_len+2);
246 
247  digester = ldns_digest_function(algorithm_name);
248 
249  if (digester) {
250  (void) HMAC(digester, key_bytes, key_size, (void *)wireformat,
251  (size_t) wiresize, mac_bytes + 2, &md_len);
252 
253  ldns_write_uint16(mac_bytes, md_len);
254  result = ldns_rdf_new_frm_data(LDNS_RDF_TYPE_INT16_DATA, md_len + 2,
255  mac_bytes);
256  } else {
258  goto clean;
259  }
260  *tsig_mac = result;
261  status = LDNS_STATUS_OK;
262  clean:
263  LDNS_FREE(mac_bytes);
264  LDNS_FREE(key_bytes);
265  LDNS_FREE(algorithm_name);
266  ldns_buffer_free(data_buffer);
267  ldns_rdf_deep_free(canonical_algorithm_rdf);
268  ldns_rdf_deep_free(canonical_key_name_rdf);
269  return status;
270 }
271 #endif /* HAVE_SSL */
272 
273 
274 #ifdef HAVE_SSL
275 bool
276 ldns_pkt_tsig_verify(ldns_pkt *pkt, uint8_t *wire, size_t wirelen, const char *key_name,
277  const char *key_data, ldns_rdf *orig_mac_rdf)
278 {
279  return ldns_pkt_tsig_verify_next(pkt, wire, wirelen, key_name, key_data, orig_mac_rdf, 0);
280 }
281 
282 bool
283 ldns_pkt_tsig_verify_next(ldns_pkt *pkt, uint8_t *wire, size_t wirelen, const char* key_name,
284  const char *key_data, ldns_rdf *orig_mac_rdf, int tsig_timers_only)
285 {
286  ldns_rdf *fudge_rdf;
287  ldns_rdf *algorithm_rdf;
288  ldns_rdf *time_signed_rdf;
289  ldns_rdf *orig_id_rdf;
290  ldns_rdf *error_rdf;
291  ldns_rdf *other_data_rdf;
292  ldns_rdf *pkt_mac_rdf;
293  ldns_rdf *my_mac_rdf;
294  ldns_rdf *key_name_rdf = ldns_rdf_new_frm_str(LDNS_RDF_TYPE_DNAME, key_name);
295  uint16_t pkt_id, orig_pkt_id;
296  ldns_status status;
297 
298  uint8_t *prepared_wire = NULL;
299  size_t prepared_wire_size = 0;
300 
301  ldns_rr *orig_tsig = ldns_pkt_tsig(pkt);
302 
303  if (!orig_tsig || ldns_rr_rd_count(orig_tsig) <= 6) {
304  ldns_rdf_deep_free(key_name_rdf);
305  return false;
306  }
307  algorithm_rdf = ldns_rr_rdf(orig_tsig, 0);
308  time_signed_rdf = ldns_rr_rdf(orig_tsig, 1);
309  fudge_rdf = ldns_rr_rdf(orig_tsig, 2);
310  pkt_mac_rdf = ldns_rr_rdf(orig_tsig, 3);
311  orig_id_rdf = ldns_rr_rdf(orig_tsig, 4);
312  error_rdf = ldns_rr_rdf(orig_tsig, 5);
313  other_data_rdf = ldns_rr_rdf(orig_tsig, 6);
314 
315  /* remove temporarily */
316  ldns_pkt_set_tsig(pkt, NULL);
317  /* temporarily change the id to the original id */
318  pkt_id = ldns_pkt_id(pkt);
319  orig_pkt_id = ldns_rdf2native_int16(orig_id_rdf);
320  ldns_pkt_set_id(pkt, orig_pkt_id);
321 
322  prepared_wire = ldns_tsig_prepare_pkt_wire(wire, wirelen, &prepared_wire_size);
323 
324  status = ldns_tsig_mac_new(&my_mac_rdf, prepared_wire, prepared_wire_size,
325  key_data, key_name_rdf, fudge_rdf, algorithm_rdf,
326  time_signed_rdf, error_rdf, other_data_rdf, orig_mac_rdf, tsig_timers_only);
327 
328  LDNS_FREE(prepared_wire);
329 
330  if (status != LDNS_STATUS_OK) {
331  ldns_rdf_deep_free(key_name_rdf);
332  return false;
333  }
334  /* Put back the values */
335  ldns_pkt_set_tsig(pkt, orig_tsig);
336  ldns_pkt_set_id(pkt, pkt_id);
337 
338  ldns_rdf_deep_free(key_name_rdf);
339 
340  if (ldns_rdf_compare(pkt_mac_rdf, my_mac_rdf) == 0) {
341  ldns_rdf_deep_free(my_mac_rdf);
342  return true;
343  } else {
344  ldns_rdf_deep_free(my_mac_rdf);
345  return false;
346  }
347 }
348 #endif /* HAVE_SSL */
349 
350 #ifdef HAVE_SSL
352 ldns_pkt_tsig_sign(ldns_pkt *pkt, const char *key_name, const char *key_data,
353  uint16_t fudge, const char *algorithm_name, ldns_rdf *query_mac)
354 {
355  return ldns_pkt_tsig_sign_next(pkt, key_name, key_data, fudge, algorithm_name, query_mac, 0);
356 }
357 
359 ldns_pkt_tsig_sign_next(ldns_pkt *pkt, const char *key_name, const char *key_data,
360  uint16_t fudge, const char *algorithm_name, ldns_rdf *query_mac, int tsig_timers_only)
361 {
362  ldns_rr *tsig_rr;
363  ldns_rdf *key_name_rdf = ldns_rdf_new_frm_str(LDNS_RDF_TYPE_DNAME, key_name);
364  ldns_rdf *fudge_rdf = NULL;
365  ldns_rdf *orig_id_rdf = NULL;
366  ldns_rdf *algorithm_rdf;
367  ldns_rdf *error_rdf = NULL;
368  ldns_rdf *mac_rdf = NULL;
369  ldns_rdf *other_data_rdf = NULL;
370 
371  ldns_status status = LDNS_STATUS_OK;
372 
373  uint8_t *pkt_wire = NULL;
374  size_t pkt_wire_len;
375 
376  struct timeval tv_time_signed;
377  uint8_t *time_signed = NULL;
378  ldns_rdf *time_signed_rdf = NULL;
379 
380  algorithm_rdf = ldns_rdf_new_frm_str(LDNS_RDF_TYPE_DNAME, algorithm_name);
381  if(!key_name_rdf || !algorithm_rdf) {
382  status = LDNS_STATUS_MEM_ERR;
383  goto clean;
384  }
385 
386  /* eww don't have create tsigtime rdf yet :( */
387  /* bleh :p */
388  if (gettimeofday(&tv_time_signed, NULL) == 0) {
389  time_signed = LDNS_XMALLOC(uint8_t, 6);
390  if(!time_signed) {
391  status = LDNS_STATUS_MEM_ERR;
392  goto clean;
393  }
394  ldns_write_uint64_as_uint48(time_signed,
395  (uint64_t)tv_time_signed.tv_sec);
396  } else {
397  status = LDNS_STATUS_INTERNAL_ERR;
398  goto clean;
399  }
400 
401  time_signed_rdf = ldns_rdf_new(LDNS_RDF_TYPE_TSIGTIME, 6, time_signed);
402  if(!time_signed_rdf) {
403  LDNS_FREE(time_signed);
404  status = LDNS_STATUS_MEM_ERR;
405  goto clean;
406  }
407 
408  fudge_rdf = ldns_native2rdf_int16(LDNS_RDF_TYPE_INT16, fudge);
409 
411 
413 
414  other_data_rdf = ldns_native2rdf_int16_data(0, NULL);
415 
416  if(!fudge_rdf || !orig_id_rdf || !error_rdf || !other_data_rdf) {
417  status = LDNS_STATUS_MEM_ERR;
418  goto clean;
419  }
420 
421  if (ldns_pkt2wire(&pkt_wire, pkt, &pkt_wire_len) != LDNS_STATUS_OK) {
422  status = LDNS_STATUS_ERR;
423  goto clean;
424  }
425 
426  status = ldns_tsig_mac_new(&mac_rdf, pkt_wire, pkt_wire_len,
427  key_data, key_name_rdf, fudge_rdf, algorithm_rdf,
428  time_signed_rdf, error_rdf, other_data_rdf, query_mac, tsig_timers_only);
429 
430  if (!mac_rdf) {
431  goto clean;
432  }
433 
434  LDNS_FREE(pkt_wire);
435 
436  /* Create the TSIG RR */
437  tsig_rr = ldns_rr_new();
438  if(!tsig_rr) {
439  status = LDNS_STATUS_MEM_ERR;
440  goto clean;
441  }
442  ldns_rr_set_owner(tsig_rr, key_name_rdf);
445  ldns_rr_set_ttl(tsig_rr, 0);
446 
447  ldns_rr_push_rdf(tsig_rr, algorithm_rdf);
448  ldns_rr_push_rdf(tsig_rr, time_signed_rdf);
449  ldns_rr_push_rdf(tsig_rr, fudge_rdf);
450  ldns_rr_push_rdf(tsig_rr, mac_rdf);
451  ldns_rr_push_rdf(tsig_rr, orig_id_rdf);
452  ldns_rr_push_rdf(tsig_rr, error_rdf);
453  ldns_rr_push_rdf(tsig_rr, other_data_rdf);
454 
455  ldns_pkt_set_tsig(pkt, tsig_rr);
456 
457  return status;
458 
459  clean:
460  LDNS_FREE(pkt_wire);
461  ldns_rdf_free(key_name_rdf);
462  ldns_rdf_free(algorithm_rdf);
463  ldns_rdf_free(time_signed_rdf);
464  ldns_rdf_free(fudge_rdf);
465  ldns_rdf_free(orig_id_rdf);
466  ldns_rdf_free(error_rdf);
467  ldns_rdf_free(other_data_rdf);
468  return status;
469 }
470 #endif /* HAVE_SSL */
ldns_rdf * ldns_rr_rdf(const ldns_rr *rr, size_t nr)
returns the rdata field member counter.
Definition: rr.c:873
implementation of buffers to ease operations
Definition: buffer.h:50
void ldns_rdf_deep_free(ldns_rdf *rd)
frees a rdf structure and frees the data.
Definition: rdata.c:230
void ldns_rr_set_type(ldns_rr *rr, ldns_rr_type rr_type)
sets the type in the rr.
Definition: rr.c:792
char * ldns_tsig_keydata_clone(ldns_tsig_credentials *tc)
Definition: tsig.c:46
ldns_rdf * ldns_native2rdf_int16(ldns_rdf_type type, uint16_t value)
returns the rdf containing the native uint16_t representation.
Definition: rdata.c:132
ldns_status ldns_pkt2wire(uint8_t **dest, const ldns_pkt *packet, size_t *result_size)
Allocates an array of uint8_t at dest, and puts the wireformat of the given packet in that array...
Definition: host2wire.c:375
char * ldns_tsig_keyname_clone(ldns_tsig_credentials *tc)
Definition: tsig.c:40
uint16_t ldns_pkt_id(const ldns_pkt *packet)
Read the packet id.
Definition: packet.c:39
#define LDNS_XMALLOC(type, count)
Definition: util.h:51
#define LDNS_HEADER_SIZE
Definition: wire2host.h:32
_Bool ldns_pkt_tsig_verify_next(ldns_pkt *pkt, uint8_t *wire, size_t wirelen, const char *key_name, const char *key_data, ldns_rdf *orig_mac_rdf, int tsig_timers_only)
verifies the tsig rr for the given packet and key.
Definition: tsig.c:283
void ldns_buffer_free(ldns_buffer *buffer)
frees the buffer.
Definition: buffer.c:137
ldns_rdf * ldns_rdf_clone(const ldns_rdf *rd)
clones a rdf structure.
Definition: rdata.c:222
void ldns_dname2canonical(const ldns_rdf *rd)
Put a dname into canonical fmt - ie.
Definition: dname.c:277
size_t ldns_rr_rd_count(const ldns_rr *rr)
returns the rd_count of an rr structure.
Definition: rr.c:901
#define LDNS_MAX_PACKETLEN
Definition: packet.h:24
#define LDNS_QDCOUNT(wirebuf)
Definition: wire2host.h:105
void ldns_rr_free(ldns_rr *rr)
frees an RR structure
Definition: rr.c:75
#define LDNS_NSCOUNT(wirebuf)
Definition: wire2host.h:113
void ldns_pkt_set_tsig(ldns_pkt *pkt, ldns_rr *rr)
Set the packet's tsig rr.
Definition: packet.c:642
char * ldns_tsig_keyname(ldns_tsig_credentials *tc)
Definition: tsig.c:28
Resource Record.
Definition: rr.h:299
void ldns_rdf_free(ldns_rdf *rd)
frees a rdf structure, leaving the data pointer intact.
Definition: rdata.c:241
ldns_status ldns_rdf2buffer_wire(ldns_buffer *buffer, const ldns_rdf *rdf)
Copies the rdata data to the buffer in wire format.
Definition: host2wire.c:36
Including this file will include all ldns files, and define some lookup tables.
void ldns_rr_set_class(ldns_rr *rr, ldns_rr_class rr_class)
sets the class in the rr.
Definition: rr.c:798
16 bits
Definition: rdata.h:54
variable length any type rdata where the length is specified by the first 2 bytes ...
Definition: rdata.h:95
_Bool ldns_rr_push_rdf(ldns_rr *rr, const ldns_rdf *f)
sets rd_field member, it will be placed in the next available spot.
Definition: rr.c:821
uint16_t ldns_rdf2native_int16(const ldns_rdf *rd)
returns the native uint16_t representation from the rdf.
Definition: rdata.c:84
#define LDNS_ARCOUNT_OFF
Definition: wire2host.h:116
ldns_rdf * ldns_rdf_new_frm_str(ldns_rdf_type type, const char *str)
creates a new rdf from a string.
Definition: rdata.c:249
void ldns_pkt_set_id(ldns_pkt *packet, uint16_t id)
Set the packet's id.
Definition: packet.c:450
ldns_rdf * ldns_native2rdf_int16_data(size_t size, uint8_t *data)
returns an int16_data rdf that contains the data in the given array, preceded by an int16 specifying ...
Definition: rdata.c:162
DNS packet.
Definition: packet.h:233
void ldns_rr_set_owner(ldns_rr *rr, ldns_rdf *owner)
sets the owner in the rr structure.
Definition: rr.c:768
char * ldns_tsig_algorithm(ldns_tsig_credentials *tc)
Definition: tsig.c:22
_Bool ldns_pkt_tsig_verify(ldns_pkt *pkt, uint8_t *wire, size_t wirelen, const char *key_name, const char *key_data, ldns_rdf *orig_mac_rdf)
verifies the tsig rr for the given packet and key.
Definition: tsig.c:276
tsig time 48 bits
Definition: rdata.h:88
void ldns_rr_set_ttl(ldns_rr *rr, uint32_t ttl)
sets the ttl in the rr structure.
Definition: rr.c:780
enum ldns_enum_status ldns_status
Definition: error.h:131
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.
Definition: rdata.c:193
ldns_buffer * ldns_buffer_new(size_t capacity)
creates a new buffer with the specified capacity.
Definition: buffer.c:16
ldns_rdf * ldns_rdf_new(ldns_rdf_type type, size_t size, void *data)
allocates a new rdf structure and fills it.
Definition: rdata.c:179
ldns_status ldns_pkt_tsig_sign(ldns_pkt *pkt, const char *key_name, const char *key_data, uint16_t fudge, const char *algorithm_name, ldns_rdf *query_mac)
creates a tsig rr for the given packet and key.
Definition: tsig.c:352
char * ldns_rdf2str(const ldns_rdf *rdf)
Converts the data in the rdata field to presentation format and returns that as a char *...
Definition: host2str.c:2371
ldns_status ldns_pkt_tsig_sign_next(ldns_pkt *pkt, const char *key_name, const char *key_data, uint16_t fudge, const char *algorithm_name, ldns_rdf *query_mac, int tsig_timers_only)
creates a tsig rr for the given packet and key.
Definition: tsig.c:359
Resource record data field.
Definition: rdata.h:166
ldns_rr * ldns_pkt_tsig(const ldns_pkt *pkt)
Return the packet's tsig pseudo rr's.
Definition: packet.c:444
ldns_rr * ldns_rr_new(void)
creates a new rr structure.
Definition: rr.c:24
#define LDNS_FREE(ptr)
Definition: util.h:60
uint8_t * _data
The data contained in the buffer.
Definition: buffer.h:62
Contains credentials for TSIG.
Definition: tsig.h:26
Any class.
Definition: rr.h:58
#define LDNS_ANCOUNT(wirebuf)
Definition: wire2host.h:109
#define LDNS_ARCOUNT(wirebuf)
Definition: wire2host.h:117
int ldns_b64_pton(char const *src, uint8_t *target, size_t targsize)
domain name
Definition: rdata.h:50
int ldns_rdf_compare(const ldns_rdf *rd1, const ldns_rdf *rd2)
compares two rdf's on their wire formats.
Definition: rdata.c:642
ldns_status ldns_wire2rr(ldns_rr **rr_p, const uint8_t *wire, size_t max, size_t *pos, ldns_pkt_section section)
converts the data on the uint8_t bytearray (in wire format) to a DNS resource record.
Definition: wire2host.c:316
char * ldns_tsig_keydata(ldns_tsig_credentials *tc)
Definition: tsig.c:34