26 #include <openssl/rand.h>
32 while (table->
name != NULL) {
33 if (strcasecmp(name, table->
name) == 0)
43 while (table->
name != NULL) {
58 return (
int) (bits[index / 8] & (1 << (7 - index % 8)));
68 return (
int) bits[index / 8] & (1 << (index % 8));
78 if (bit_nr >= 0 && bit_nr < 8) {
80 *
byte = *
byte | (0x01 << bit_nr);
82 *
byte = *
byte & ~(0x01 << bit_nr);
101 case 'a':
case 'A':
return 10;
102 case 'b':
case 'B':
return 11;
103 case 'c':
case 'C':
return 12;
104 case 'd':
case 'D':
return 13;
105 case 'e':
case 'E':
return 14;
106 case 'f':
case 'F':
return 15;
146 if (strlen(str) % 2 != 0) {
150 for (i = 0; i < strlen(str) / 2; i++) {
166 static const int mdays[] = {
167 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
170 #define LDNS_MOD(x,y) (((x) % (y) < 0) ? ((x) % (y) + (y)) : ((x) % (y)))
171 #define LDNS_DIV(x,y) (((x) % (y) < 0) ? ((x) / (y) - 1 ) : ((x) / (y)))
174 is_leap_year(
int year)
181 leap_days(
int y1,
int y2)
196 int year = 1900 + tm->tm_year;
197 time_t days = 365 * ((time_t) year - 1970) + leap_days(1970, year);
203 for (i = 0; i < tm->tm_mon; ++i) {
206 if (tm->tm_mon > 1 && is_leap_year(year)) {
209 days += tm->tm_mday - 1;
211 hours = days * 24 + tm->tm_hour;
212 minutes = hours * 60 + tm->tm_min;
213 seconds = minutes * 60 + tm->tm_sec;
224 #if SIZEOF_TIME_T <= 4
227 ldns_year_and_yday_from_days_since_epoch(int64_t days,
struct tm *result)
232 while (days < 0 || days >= (int64_t) (is_leap_year(year) ? 366 : 365)) {
233 new_year = year + (int)
LDNS_DIV(days, 365);
234 days -= (new_year - year) * 365;
235 days -= leap_days(year, new_year);
238 result->tm_year = year;
239 result->tm_yday = (int) days;
243 static const int leap_year_mdays[] = {
244 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
248 ldns_mon_and_mday_from_year_and_yday(
struct tm *result)
250 int idays = result->tm_yday;
251 const int *mon_lengths = is_leap_year(result->tm_year) ?
252 leap_year_mdays : mdays;
255 while (idays >= mon_lengths[result->tm_mon]) {
256 idays -= mon_lengths[result->tm_mon++];
258 result->tm_mday = idays + 1;
262 ldns_wday_from_year_and_yday(
struct tm *result)
266 + leap_days(1970, result->tm_year)
268 result->tm_wday =
LDNS_MOD(result->tm_wday, 7);
269 if (result->tm_wday < 0) {
270 result->tm_wday += 7;
275 ldns_gmtime64_r(int64_t clock,
struct tm *result)
277 result->tm_isdst = 0;
278 result->tm_sec = (int)
LDNS_MOD(clock, 60);
280 result->tm_min = (int)
LDNS_MOD(clock, 60);
282 result->tm_hour = (int)
LDNS_MOD(clock, 24);
285 ldns_year_and_yday_from_days_since_epoch(clock, result);
286 ldns_mon_and_mday_from_year_and_yday(result);
287 ldns_wday_from_year_and_yday(result);
288 result->tm_year -= 1900;
296 ldns_serial_arithmitics_time(int32_t time, time_t now)
298 int32_t offset = time - (int32_t) now;
299 return (int64_t) now + offset;
306 #if SIZEOF_TIME_T <= 4
307 int64_t secs_since_epoch = ldns_serial_arithmitics_time(time, now);
308 return ldns_gmtime64_r(secs_since_epoch, result);
310 time_t secs_since_epoch = ldns_serial_arithmitics_time(time, now);
311 return gmtime_r(&secs_since_epoch, result);
339 if (size < (
unsigned int)
sizeof(seed_i)){
340 size = (
unsigned int)
sizeof(seed_i);
349 if ((rand_f = fopen(
"/dev/urandom",
"r")) == NULL) {
351 if ((rand_f = fopen(
"/dev/random",
"r")) == NULL) {
354 for (read = 0; read < size; read++) {
355 gettimeofday(&tv, NULL);
356 seed[read] = (uint8_t) (tv.tv_usec % 256);
359 read = fread(seed, 1, size, rand_f);
362 read = fread(seed, 1, size, rand_f);
366 read = fread(seed, 1, size, rand_f);
371 if (!fd) fclose(rand_f);
377 RAND_seed(seed, (
int) size);
382 memcpy(&seed_i, seed,
sizeof(seed_i));
389 if (rand_f) fclose(rand_f);
404 if (RAND_bytes((
unsigned char*)&rid, 2) != 1) {
405 rid = (uint16_t) random();
408 rid = (uint16_t) random();
420 char vowels[] = {
'a',
'e',
'i',
'o',
'u',
'y' };
421 char consonants[] = {
'b',
'c',
'd',
'f',
'g',
'h',
'k',
'l',
'm',
422 'n',
'p',
'r',
's',
't',
'v',
'z',
'x' };
423 size_t i, j = 0, rounds, seed = 1;
426 rounds = (len / 2) + 1;
428 if(!retval)
return NULL;
430 for (i = 0; i < rounds; i++) {
431 size_t idx0, idx1, idx2, idx3, idx4;
432 if ((i + 1 < rounds) || (len % 2 != 0)) {
433 idx0 = (((((size_t)(data[2 * i])) >> 6) & 3) +
435 idx1 = (((size_t)(data[2 * i])) >> 2) & 15;
436 idx2 = ((((size_t)(data[2 * i])) & 3) +
438 retval[j++] = vowels[idx0];
439 retval[j++] = consonants[idx1];
440 retval[j++] = vowels[idx2];
441 if ((i + 1) < rounds) {
442 idx3 = (((size_t)(data[(2 * i) + 1])) >> 4) & 15;
443 idx4 = (((size_t)(data[(2 * i) + 1]))) & 15;
444 retval[j++] = consonants[idx3];
446 retval[j++] = consonants[idx4];
448 ((((
size_t)(data[2 * i])) * 7) +
449 ((
size_t)(data[(2 * i) + 1])))) % 36;
455 retval[j++] = vowels[idx0];
456 retval[j++] = consonants[idx1];
457 retval[j++] = vowels[idx2];
470 char *target,
size_t targsize);
472 return b64_ntop(src, srclength, target, targsize);
480 int ldns_b64_pton(
const char* src, uint8_t *target,
size_t targsize)
482 return b64_pton(src, target, targsize);
488 ldns_b32_ntop_base(
const uint8_t* src,
size_t src_sz,
489 char* dst,
size_t dst_sz,
490 bool extended_hex,
bool add_padding)
493 const char* b32 = extended_hex ?
"0123456789abcdefghijklmnopqrstuv"
494 :
"abcdefghijklmnopqrstuvwxyz234567";
501 ret_sz = add_padding ? ldns_b32_ntop_calculate_size(src_sz)
502 : ldns_b32_ntop_calculate_size_no_padding(src_sz);
505 if (dst_sz < ret_sz + 1)
512 while (src_sz >= 5) {
514 dst[0] = b32[(src[0] ) >> 3];
517 dst[1] = b32[(src[0] & 0x07) << 2 | src[1] >> 6];
520 dst[2] = b32[(src[1] & 0x3e) >> 1];
523 dst[3] = b32[(src[1] & 0x01) << 4 | src[2] >> 4];
526 dst[4] = b32[(src[2] & 0x0f) << 1 | src[3] >> 7];
529 dst[5] = b32[(src[3] & 0x7c) >> 2];
532 dst[6] = b32[(src[3] & 0x03) << 3 | src[4] >> 5];
535 dst[7] = b32[(src[4] & 0x1f) ];
544 dst[6] = b32[(src[3] & 0x03) << 3];
547 dst[5] = b32[(src[3] & 0x7c) >> 2];
551 case 3: dst[4] = b32[(src[2] & 0x0f) << 1 | c];
555 case 2: dst[3] = b32[(src[1] & 0x01) << 4 | c];
558 dst[2] = b32[(src[1] & 0x3e) >> 1];
562 case 1: dst[1] = b32[(src[0] & 0x07) << 2 | c];
565 dst[0] = b32[ src[0] >> 3];
570 case 1: dst[2] =
'=';
572 case 2: dst[4] =
'=';
573 case 3: dst[5] =
'=';
575 case 4: dst[7] =
'=';
584 return ldns_b32_ntop_base(src, src_sz, dst, dst_sz,
false,
true);
589 char* dst,
size_t dst_sz)
591 return ldns_b32_ntop_base(src, src_sz, dst, dst_sz,
true,
true);
594 #ifndef HAVE_B32_NTOP
597 b32_ntop(
const uint8_t* src,
size_t src_sz,
char* dst,
size_t dst_sz)
599 return ldns_b32_ntop_base(src, src_sz, dst, dst_sz,
false,
true);
604 char* dst,
size_t dst_sz)
606 return ldns_b32_ntop_base(src, src_sz, dst, dst_sz,
true,
true);
612 ldns_b32_pton_base(
const char* src,
size_t src_sz,
613 uint8_t* dst,
size_t dst_sz,
614 bool extended_hex,
bool check_padding)
619 uint8_t* start = dst;
623 for (i = 0; i < 8; i++) {
629 }
while (isspace((
unsigned char)ch) && src_sz > 0);
631 if (ch ==
'=' || ch ==
'\0')
634 else if (extended_hex)
636 if (ch >=
'0' && ch <=
'9')
637 buf[i] = (uint8_t)ch -
'0';
638 else if (ch >=
'a' && ch <=
'v')
639 buf[i] = (uint8_t)ch -
'a' + 10;
640 else if (ch >=
'A' && ch <=
'V')
641 buf[i] = (uint8_t)ch -
'A' + 10;
645 else if (ch >=
'a' && ch <=
'z')
646 buf[i] = (uint8_t)ch -
'a';
647 else if (ch >=
'A' && ch <=
'Z')
648 buf[i] = (uint8_t)ch -
'A';
649 else if (ch >=
'2' && ch <=
'7')
650 buf[i] = (uint8_t)ch -
'2' + 26;
664 dst[0] = buf[0] << 3 | buf[1] >> 2;
669 dst[1] = buf[1] << 6 | buf[2] << 1 | buf[3] >> 4;
673 dst[2] = buf[3] << 4 | buf[4] >> 1;
678 dst[3] = buf[4] << 7 | buf[5] << 2 | buf[6] >> 3;
682 dst[4] = buf[6] << 5 | buf[7];
688 if (i > 0 && i < 8) {
691 if (dst_sz < (i + 1) / 2)
698 dst[3] = buf[4] << 7 | buf[5] << 2 | buf[6] >> 3;
702 dst[2] = buf[3] << 4 | buf[4] >> 1;
707 dst[1] = buf[1] << 6 | buf[2] << 1 | buf[3] >> 4;
711 dst[0] = buf[0] << 3 | buf[1] >> 2;
726 for (i = 8 - i - 1; i > 0; i--) {
734 }
while (isspace((
unsigned char)ch));
747 return ldns_b32_pton_base(src, src_sz, dst, dst_sz,
false,
true);
752 uint8_t* dst,
size_t dst_sz)
754 return ldns_b32_pton_base(src, src_sz, dst, dst_sz,
true,
true);
757 #ifndef HAVE_B32_PTON
760 b32_pton(
const char* src,
size_t src_sz, uint8_t* dst,
size_t dst_sz)
762 return ldns_b32_pton_base(src, src_sz, dst, dst_sz,
false,
true);
767 uint8_t* dst,
size_t dst_sz)
769 return ldns_b32_pton_base(src, src_sz, dst, dst_sz,
true,
true);