The FreeRADIUS server $Id: f3670dba8951ca10eb4948feb3dc3db9423a334f $
Loading...
Searching...
No Matches
time.c
Go to the documentation of this file.
1/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
15 */
16
17/**
18 * $Id: c9cebfdc4c6c757a9ad72be24e5ad257a95c7600 $
19 *
20 * @brief Platform independent time functions
21 * @file lib/util/time.c
22 *
23 * @copyright 2016-2019 Alan DeKok (aland@freeradius.org)
24 * @copyright 2019-2020 Arran Cudbard-Bell (a.cudbardb@freeradius.org)
25 */
26RCSID("$Id: c9cebfdc4c6c757a9ad72be24e5ad257a95c7600 $")
27
28#include <freeradius-devel/autoconf.h>
29#include <freeradius-devel/util/time.h>
30#include <freeradius-devel/util/skip.h>
31
32int64_t const fr_time_multiplier_by_res[] = {
33 [FR_TIME_RES_NSEC] = 1,
38 [FR_TIME_RES_MIN] = (int64_t)NSEC * 60,
39 [FR_TIME_RES_HOUR] = (int64_t)NSEC * 3600,
40 [FR_TIME_RES_DAY] = (int64_t)NSEC * 86400,
41 [FR_TIME_RES_WEEK] = (int64_t)NSEC * 86400 * 7,
44};
45
47 { L("microseconds"), FR_TIME_RES_USEC },
48 { L("us"), FR_TIME_RES_USEC },
49
50 { L("nanoseconds"), FR_TIME_RES_NSEC },
51 { L("ns"), FR_TIME_RES_NSEC },
52
53 { L("milliseconds"), FR_TIME_RES_MSEC },
54 { L("ms"), FR_TIME_RES_MSEC },
55
56 { L("centiseconds"), FR_TIME_RES_CSEC },
57 { L("cs"), FR_TIME_RES_CSEC },
58
59 { L("seconds"), FR_TIME_RES_SEC },
60 { L("s"), FR_TIME_RES_SEC },
61
62 { L("minutes"), FR_TIME_RES_MIN },
63 { L("m"), FR_TIME_RES_MIN },
64
65 { L("hours"), FR_TIME_RES_HOUR },
66 { L("h"), FR_TIME_RES_HOUR },
67
68 { L("days"), FR_TIME_RES_DAY },
69 { L("d"), FR_TIME_RES_DAY },
70
71 { L("weeks"), FR_TIME_RES_WEEK },
72 { L("w"), FR_TIME_RES_WEEK },
73
74 /*
75 * These use special values FR_TIME_DUR_MONTH and FR_TIME_DUR_YEAR
76 */
77 { L("months"), FR_TIME_RES_MONTH },
78 { L("M"), FR_TIME_RES_MONTH },
79
80 { L("years"), FR_TIME_RES_YEAR },
81 { L("y"), FR_TIME_RES_YEAR },
82
83};
85
86int64_t fr_time_epoch; //!< monotonic clock at boot, i.e. our epoch
87_Atomic int64_t fr_time_monotonic_to_realtime; //!< difference between the two clocks
88
89static char const *tz_names[2] = { NULL, NULL }; //!< normal, DST, from localtime_r(), tm_zone
90static long gmtoff[2] = {0, 0}; //!< from localtime_r(), tm_gmtoff
91static bool isdst = false; //!< from localtime_r(), tm_is_dst
92
93/*
94 * fr_time_to_sec() returns `int64_t`, which is then assigned to a local `time_t`.
95 *
96 * POSIX.1-2024 requires that the width of `time_t` is at least
97 * 64 bits, so we check that here.
98 */
99static_assert(sizeof(time_t) == sizeof(int64_t), "time_t is not 64-bits");
100
101/** Get a new fr_time_monotonic_to_realtime value
102 *
103 * Should be done regularly to adjust for changes in system time.
104 *
105 * @return
106 * - 0 on success.
107 * - -1 on failure.
108 */
110{
111 struct tm tm;
112 time_t now;
113
114 /*
115 * fr_time_monotonic_to_realtime is the difference in nano
116 *
117 * So to convert a realtime timeval to fr_time we just subtract fr_time_monotonic_to_realtime from the timeval,
118 * which leaves the number of nanoseconds elapsed since our epoch.
119 */
120 struct timespec ts_realtime, ts_monotime;
121
122 /*
123 * Call these consecutively to minimise drift...
124 */
125 if (clock_gettime(CLOCK_REALTIME, &ts_realtime) < 0) return -1;
126 if (clock_gettime(CLOCK_MONOTONIC_RAW, &ts_monotime) < 0) return -1;
127
132
133 now = ts_realtime.tv_sec;
134
135 /*
136 * Get local time zone name, daylight savings, and GMT
137 * offsets.
138 */
139 (void) localtime_r(&now, &tm);
140
141 isdst = (tm.tm_isdst != 0);
142 tz_names[isdst] = tm.tm_zone;
143 gmtoff[isdst] = tm.tm_gmtoff * NSEC; /* they store seconds, we store nanoseconds */
144
145 return 0;
146}
147
148/** Initialize the local time.
149 *
150 * MUST be called when the program starts. MUST NOT be called after
151 * that.
152 *
153 * @return
154 * - <0 on error
155 * - 0 on success
156 */
158{
159 struct timespec ts;
160
161 tzset(); /* Populate timezone, daylight and tzname globals */
162
163 if (clock_gettime(CLOCK_MONOTONIC_RAW, &ts) < 0) return -1;
165
166 return fr_time_sync();
167}
168
169/** Return time delta from the time zone.
170 *
171 * Returns the delta between UTC and the timezone specified by tz
172 *
173 * @param[in] tz time zone name
174 * @param[out] delta the time delta
175 * @return
176 * - 0 converted OK
177 * - <0 on error
178 *
179 * @note This function ONLY handles a limited number of time
180 * zones: local and gmt. It is impossible in general to parse
181 * arbitrary time zone strings, as there are duplicates.
182 */
184{
185 *delta = fr_time_delta_wrap(0);
186
187 if ((strcmp(tz, "UTC") == 0) ||
188 (strcmp(tz, "GMT") == 0)) {
189 return 0;
190 }
191
192 /*
193 * Our local time zone OR time zone with daylight savings.
194 */
195 if (tz_names[0] && (strcmp(tz, tz_names[0]) == 0)) {
196 *delta = fr_time_delta_wrap(gmtoff[0]);
197 return 0;
198 }
199
200 if (tz_names[1] && (strcmp(tz, tz_names[1]) == 0)) {
201 *delta = fr_time_delta_wrap(gmtoff[1]);
202 return 0;
203 }
204
205 return -1;
206}
207
208/** Create fr_time_delta_t from a string
209 *
210 * @param[out] out Where to write fr_time_delta_t
211 * @param[in] in String to parse.
212 * @param[in] hint scale for the parsing. Default is "seconds".
213 * @param[in] no_trailing asserts that there should be a terminal sequence
214 * after the time delta. Allows us to produce
215 * better errors.
216 * @param[in] tt terminal sequences.
217 * @return
218 * - >= 0 on success.
219 * - <0 on failure.
220 */
222 bool no_trailing, fr_sbuff_term_t const *tt)
223{
224 fr_sbuff_t our_in = FR_SBUFF(in);
225 int64_t integer = 0; /* Whole units */
226 double f = 0.0;
227 fr_time_res_t res;
228 bool do_float;
229 bool negative;
231 bool overflow;
232 size_t match_len;
233
234 negative = fr_sbuff_is_char(&our_in, '-');
235 do_float = false;
236
237 if (fr_sbuff_is_char(&our_in, '.')) goto is_float;
238
239 /*
240 * Look for:
241 *
242 * <integer>[scale]
243 */
244 if (fr_sbuff_out(&sberr, &integer, &our_in) < 0) {
245 char const *err;
246
247 num_error:
248 if (sberr != FR_SBUFF_PARSE_ERROR_NOT_FOUND) {
250 } else {
251 err = "Invalid text, input should be a number";
252 }
253
254 fr_strerror_printf("Failed parsing time_delta: %s", err);
255 FR_SBUFF_ERROR_RETURN(&our_in);
256 }
257
258 /*
259 * hh:mm:ss
260 */
261 if (fr_sbuff_next_if_char(&our_in, ':')) goto do_timestamp;
262
263 /*
264 * If it's a fractional thing, then just parse it as a double.
265 *
266 * <float>[scale]
267 */
268 if (fr_sbuff_is_char(&our_in, '.')) {
269 our_in = FR_SBUFF(in);
270
271 is_float:
272 if (fr_sbuff_out(&sberr, &f, &our_in) < 0) goto num_error;
273
274 do_float = true;
275 }
276
277 /*
278 * Now look for the time resolution.
279 */
281
282 if (fr_sbuff_is_terminal(&our_in, tt)) {
283 if (match_len == 0) res = hint;
284
285 } else if (no_trailing) {
286 fail_trailing_data:
287 /* Got a qualifier but there is more text after it. */
288 if (res != FR_TIME_RES_INVALID) {
289 fr_strerror_const("Trailing data after time_delta");
290 FR_SBUFF_ERROR_RETURN(&our_in);
291 }
292
293 fr_strerror_const("Invalid precision qualifier for time_delta");
294 FR_SBUFF_ERROR_RETURN(&our_in);
295
296 } else if (match_len == 0) {
297 /*
298 * There is trailing data, but we don't care about it. Ensure that we have a time resolution.
299 */
300 res = hint;
301 }
302
304
305 /*
306 * For floating point numbers, we pre-multiply by the time resolution, and then override the time
307 * resolution to indicate that no further scaling is necessary.
308 *
309 * We check for overflow prior to multiplication, as doubles have ~53 bits of precision, while
310 * int64_t has 64 bits of precision. That way the comparison is more likely to be accurate.
311 */
312 if (do_float) {
313 if (f < ((double) INT64_MIN) / (double) fr_time_multiplier_by_res[res]) goto fail_overflow;
314 if (f > ((double) INT64_MAX) / (double) fr_time_multiplier_by_res[res]) goto fail_overflow;
315
317 res = FR_TIME_RES_NSEC;
318 integer = f;
319 }
320
321 /*
322 * We have a valid time scale. Let's use that.
323 */
324 *out = fr_time_delta_from_integer(&overflow, integer, res);
325 if (overflow) {
326 fail_overflow:
327 fr_strerror_printf("time_delta would %s", negative ? "underflow" : "overflow");
328 fr_sbuff_set_to_start(&our_in);
329 FR_SBUFF_ERROR_RETURN(&our_in);
330
331 }
332 FR_SBUFF_SET_RETURN(in, &our_in);
333
334do_timestamp:
335 res = hint;
336
337 /*
338 * We allow 2^15 hours, but much less than that in seconds/
339 */
340 if (integer < 0) {
341 if (integer < INT16_MIN) goto fail_overflow;
342 } else {
343 if (integer > INT16_MAX) goto fail_overflow;
344 }
345
346 /*
347 * It's a timestamp format
348 *
349 * [hours:]minutes:seconds
350 */
351 {
352 uint64_t hours, minutes, seconds;
354
355 fr_sbuff_marker(&m1, &our_in);
356
357 if (fr_sbuff_out(&sberr, &seconds, &our_in) < 0) goto num_error;
358
359 /*
360 * minutes:seconds
361 */
362 if (!fr_sbuff_next_if_char(&our_in, ':')) {
363 hours = 0;
364 minutes = negative ? -integer : integer;
365
366 } else {
367 /*
368 * hours:minutes:seconds
369 *
370 * The second number we read is the minutes,
371 * and the seconds are the third number, read
372 * below. For the mm:ss form the second number
373 * is already the seconds, so it must NOT be
374 * re-read here.
375 */
376 hours = negative ? -integer : integer;
377 minutes = seconds;
378
379 if (fr_sbuff_out(&sberr, &seconds, &our_in) < 0) goto num_error;
380 }
381
382 if (minutes >= 60) {
383 fr_strerror_printf("minutes component of time_delta is too large");
385 }
386
387 if (seconds >= 60) {
388 fr_strerror_printf("seconds component of time_delta is too large");
390 }
391
392 if (no_trailing && !fr_sbuff_is_terminal(&our_in, tt)) goto fail_trailing_data;
393
394 /*
395 * Add all the components together...
396 */
397 if (!fr_add(&integer, ((hours * 60) * 60) + (minutes * 60), seconds)) goto fail_overflow;
398
399 /*
400 * We can't have more than 64K hours plus a bit,
401 * which limits the size of the integer that we
402 * return.
403 */
404 fr_assert(integer < ((int64_t) UINT16_MAX) * 3600 + 3600 + 60);
405
406 /*
407 * Flip the sign back to negative
408 */
409 if (negative) integer = -(integer);
410 }
411
412 *out = fr_time_delta_from_sec(integer);
413 FR_SBUFF_SET_RETURN(in, &our_in);
414}
415
416/** Create fr_time_delta_t from a string
417 *
418 * @param[out] out Where to write fr_time_delta_t
419 * @param[in] in String to parse.
420 * @param[in] inlen Length of string.
421 * @param[in] hint scale for the parsing. Default is "seconds"
422 * @return
423 * - >0 on success.
424 * - <0 on failure.
425 */
427{
428 fr_slen_t slen;
429
430 if (!*in) {
431 fr_strerror_const("Empty input is invalid");
432 return -1;
433 }
434
435 slen = fr_time_delta_from_substr(out, &FR_SBUFF_IN(in, inlen), hint, true, NULL);
436 if (slen < 0) return slen;
437 if (slen != (fr_slen_t)inlen) {
438 fr_strerror_const("trailing data after time_delta"); /* Shouldn't happen with no_trailing */
439 return -(inlen + 1);
440 }
441 return slen;
442}
443
444/** Print fr_time_delta_t to a string with an appropriate suffix
445 *
446 * @param[out] out Where to write the string version of the time delta.
447 * @param[in] delta to print.
448 * @param[in] res to print resolution with.
449 * @param[in] is_unsigned whether the value should be printed unsigned.
450 * @return
451 * - >0 the number of bytes written to out.
452 * - <0 how many additional bytes would have been required.
453 */
455{
456 fr_sbuff_t our_out = FR_SBUFF(out);
457 char *q;
458 char *start;
459 int64_t lhs = 0;
460 uint64_t rhs = 0;
461
462/*
463 * The % operator can return a _signed_ value. This macro is
464 * correct for both positive and negative inputs.
465 */
466#define MOD(a,b) ((((a) < 0) ? -(uint64_t)(a) : (uint64_t)(a)) % (b))
467
468 lhs = fr_time_delta_to_integer(delta, res);
470
471 if (!is_unsigned) {
472 /*
473 * 0 is unsigned, but we want to print
474 * "-0.1" if necessary.
475 */
476 if ((lhs == 0) && fr_time_delta_isneg(delta)) {
477 FR_SBUFF_IN_CHAR_RETURN(&our_out, '-');
478 }
479
480 FR_SBUFF_IN_SPRINTF_RETURN(&our_out, "%" PRIi64 ".%09" PRIu64, lhs, rhs);
481 } else {
482 if (fr_time_delta_isneg(delta)) lhs = rhs = 0;
483
484 FR_SBUFF_IN_SPRINTF_RETURN(&our_out, "%" PRIu64 ".%09" PRIu64, lhs, rhs);
485 }
486 /*
487 * If the sprintf wrote nothing there's nothing to trim.
488 * (Shouldn't happen for a non-zero format like %lu.%09lu, but
489 * guarding keeps us from walking behind the buffer if the sbuff
490 * ran out of room and no bytes were written.)
491 */
492 if (fr_sbuff_current(&our_out) == fr_sbuff_start(&our_out)) FR_SBUFF_SET_RETURN(out, &our_out);
493
494 q = fr_sbuff_current(&our_out) - 1;
495 start = fr_sbuff_start(&our_out);
496
497 /*
498 * Truncate trailing zeros. Don't walk past the start of the
499 * buffer - a bare "0" has no trailing zeros to strip.
500 */
501 while ((q > start) && (*q == '0')) *(q--) = '\0';
502
503 /*
504 * If there's nothing after the decimal point,
505 * truncate the decimal point. i.e. Don't print
506 * "5."
507 */
508 if (*q == '.') {
509 *q = '\0';
510 } else {
511 q++; /* to account for q-- above */
512 }
513
515}
516
517DIAG_OFF(format-nonliteral)
518/** Copy a time string (local timezone) to an sbuff
519 *
520 * @note This function will attempt to extend the sbuff by double the length of
521 * the fmt string. It is recommended to either pre-extend the sbuff before
522 * calling this function, or avoid using format specifiers that expand to
523 * character strings longer than 4 bytes.
524 *
525 * @param[in] out Where to write the formatted time string.
526 * @param[in] time Internal server time to convert to wallclock
527 * time and copy out as formatted string.
528 * @param[in] fmt Time format string.
529 * @return
530 * - >0 the number of bytes written to the sbuff.
531 * - 0 if there's insufficient space in the sbuff.
532 */
534{
535 struct tm tm;
536 time_t utime = fr_time_to_sec(time);
537 size_t len;
538
539 localtime_r(&utime, &tm);
540
541 len = strftime(fr_sbuff_current(out), fr_sbuff_extend_lowat(NULL, out, strlen(fmt) * 2), fmt, &tm);
542 if (len == 0) return 0;
543
544 return fr_sbuff_advance(out, len);
545}
546
547/** Copy a time string (UTC) to an sbuff
548 *
549 * @note This function will attempt to extend the sbuff by double the length of
550 * the fmt string. It is recommended to either pre-extend the sbuff before
551 * calling this function, or avoid using format specifiers that expand to
552 * character strings longer than 4 bytes.
553 *
554 * @param[in] out Where to write the formatted time string.
555 * @param[in] time Internal server time to convert to wallclock
556 * time and copy out as formatted string.
557 * @param[in] fmt Time format string.
558 * @return
559 * - >0 the number of bytes written to the sbuff.
560 * - 0 if there's insufficient space in the sbuff.
561 */
563{
564 struct tm tm;
565 time_t utime = fr_time_to_sec(time);
566 size_t len;
567
568 gmtime_r(&utime, &tm);
569
570 len = strftime(fr_sbuff_current(out), fr_sbuff_extend_lowat(NULL, out, strlen(fmt) * 2), fmt, &tm);
571 if (len == 0) return 0;
572
573 return fr_sbuff_advance(out, len);
574}
575DIAG_ON(format-nonliteral)
576
578{
579 fr_time_delta_t delay;
580
581 if (fr_time_gteq(start, end)) {
582 delay = fr_time_delta_wrap(0);
583 } else {
584 delay = fr_time_sub(end, start);
585 }
586
587 if (fr_time_delta_lt(delay, fr_time_delta_wrap(1000))) { /* microseconds */
588 elapsed->array[0]++;
589
590 } else if (fr_time_delta_lt(delay, fr_time_delta_wrap(10000))) {
591 elapsed->array[1]++;
592
593 } else if (fr_time_delta_lt(delay, fr_time_delta_wrap(100000))) {
594 elapsed->array[2]++;
595
596 } else if (fr_time_delta_lt(delay, fr_time_delta_wrap(1000000))) { /* milliseconds */
597 elapsed->array[3]++;
598
599 } else if (fr_time_delta_lt(delay, fr_time_delta_wrap(10000000))) {
600 elapsed->array[4]++;
601
602 } else if (fr_time_delta_lt(delay, fr_time_delta_wrap(100000000))) {
603 elapsed->array[5]++;
604
605 } else if (fr_time_delta_lt(delay, fr_time_delta_wrap(1000000000))) { /* seconds */
606 elapsed->array[6]++;
607
608 } else { /* tens of seconds or more */
609 elapsed->array[7]++;
610
611 }
612}
613
614static const char *names[8] = {
615 "1us", "10us", "100us",
616 "1ms", "10ms", "100ms",
617 "1s", "10s"
618};
619
620static char const *tab_string = "\t\t\t\t\t\t\t\t\t\t\t\t\t\t";
621
622void fr_time_elapsed_fprint(FILE *fp, fr_time_elapsed_t const *elapsed, char const *prefix, int tab_offset)
623{
624 int i;
625 size_t prefix_len;
626
627 if (!prefix) prefix = "elapsed";
628
629 prefix_len = strlen(prefix);
630
631 for (i = 0; i < 8; i++) {
632 size_t len;
633
634 if (!elapsed->array[i]) continue;
635
636 len = prefix_len + 1 + strlen(names[i]);
637
638 if (len >= (size_t) (tab_offset * 8)) {
639 fprintf(fp, "%s.%s %" PRIu64 "\n",
640 prefix, names[i], elapsed->array[i]);
641
642 } else {
643 int tabs;
644
645 tabs = ((tab_offset * 8) - len);
646 if ((tabs & 0x07) != 0) tabs += 7;
647 tabs >>= 3;
648
649 fprintf(fp, "%s.%s%.*s%" PRIu64 "\n",
650 prefix, names[i], tabs, tab_string, elapsed->array[i]);
651 }
652 }
653}
654
655/*
656 * Based on https://blog.reverberate.org/2020/05/12/optimizing-date-algorithms.html
657 */
659{
660 static const uint16_t month_yday[12] = {0, 31, 59, 90, 120, 151,
661 181, 212, 243, 273, 304, 334};
662
663 uint32_t year_adj;
664 uint32_t febs;
665 uint32_t leap_days;
666 uint32_t days;
667
668 /* Prevent crash if tm->tm_mon is invalid - seen in clusterfuzz */
669 if (unlikely(tm->tm_mon >= (__typeof__(tm->tm_mon))NUM_ELEMENTS(month_yday))) return fr_unix_time_min();
670
671 if (unlikely(tm->tm_year > 10000)) return fr_unix_time_min();
672
673 year_adj = tm->tm_year + 4800 + 1900; /* Ensure positive year, multiple of 400. */
674 febs = year_adj - (tm->tm_mon < 2 ? 1 : 0); /* Februaries since base. tm_mon is 0 - 11 */
675 leap_days = 1 + (febs / 4) - (febs / 100) + (febs / 400);
676
677 days = 365 * year_adj + leap_days + month_yday[tm->tm_mon] + tm->tm_mday - 1;
678
679#define CHECK(_x, _max) if ((tm->tm_ ## _x < 0) || (tm->tm_ ## _x >= _max)) tm->tm_ ## _x = _max - 1
680
681 CHECK(sec, 60);
682 CHECK(min, 60);
683 CHECK(hour, 24);
684 CHECK(mday, 32);
685 CHECK(mon, 12);
686 CHECK(year, 3000);
687 CHECK(wday, 7);
688 CHECK(mon, 12);
689 CHECK(yday, 366);
690 /* don't check gmtoff, it can be negative */
691
692 /*
693 * 2472692 adjusts the days for Unix epoch. It is calculated as
694 * (365.2425 * (4800 + 1970))
695 *
696 * We REMOVE the time zone offset in order to get internal unix times in UTC.
697 */
698 return fr_unix_time_from_sec((((days - 2472692) * 86400) + (tm->tm_hour * 3600) +
699 (tm->tm_min * 60) + tm->tm_sec) - tm->tm_gmtoff);
700}
701
702/** Scale an input time to NSEC, clamping it at max / min.
703 *
704 * @param t input time / time delta
705 * @param hint time resolution hint
706 * @return
707 * - INT64_MIN on underflow
708 * - 0 on invalid hint
709 * - INT64_MAX on overflow
710 * - otherwise a valid number, multiplied by the relevant scale,
711 * so that the result is in nanoseconds.
712 */
713int64_t fr_time_scale(int64_t t, fr_time_res_t hint)
714{
715 int64_t scale;
716
717 switch (hint) {
718 case FR_TIME_RES_SEC:
719 scale = NSEC;
720 break;
721
722 case FR_TIME_RES_MSEC:
723 scale = 1000000;
724 break;
725
726 case FR_TIME_RES_USEC:
727 scale = 1000;
728 break;
729
730 case FR_TIME_RES_NSEC:
731 return t;
732
733 default:
734 return 0;
735 }
736
737 if (t < 0) {
738 if (t < (INT64_MIN / scale)) {
739 return INT64_MIN;
740 }
741 } else if (t > 0) {
742 if (t > (INT64_MAX / scale)) {
743 return INT64_MAX;
744 }
745 }
746
747 return t * scale;
748}
749
750
751/*
752 * Sort of strtok/strsep function.
753 */
754static char *mystrtok(char **ptr, char const *sep)
755{
756 char *res;
757
758 if (**ptr == '\0') return NULL;
759
760 while (**ptr && strchr(sep, **ptr)) (*ptr)++;
761
762 if (**ptr == '\0') return NULL;
763
764 res = *ptr;
765 while (**ptr && strchr(sep, **ptr) == NULL) (*ptr)++;
766
767 if (**ptr != '\0') *(*ptr)++ = '\0';
768
769 return res;
770}
771
772/*
773 * Helper function to get a 2-digit date. With a maximum value,
774 * and a terminating character.
775 */
776static int get_part(char **str, int *date, int min, int max, char term, char const *name)
777{
778 char *p = *str;
779
780 if (!isdigit((uint8_t) *p) || !isdigit((uint8_t) p[1])) return -1;
781 *date = (p[0] - '0') * 10 + (p[1] - '0');
782
783 if (*date < min) {
784 fr_strerror_printf("Invalid %s (too small)", name);
785 return -1;
786 }
787
788 if (*date > max) {
789 fr_strerror_printf("Invalid %s (too large)", name);
790 return -1;
791 }
792
793 p += 2;
794 if (!term) {
795 *str = p;
796 return 0;
797 }
798
799 if (*p != term) {
800 fr_strerror_printf("Expected '%c' after %s, got '%c'",
801 term, name, *p);
802 return -1;
803 }
804 p++;
805
806 *str = p;
807 return 0;
808}
809
810static char const *months[] = {
811 "jan", "feb", "mar", "apr", "may", "jun",
812 "jul", "aug", "sep", "oct", "nov", "dec" };
813
814
815/** Convert string in various formats to a fr_unix_time_t
816 *
817 * @param date_str input date string.
818 * @param date time_t to write result to.
819 * @param[in] hint scale for the parsing. Default is "seconds"
820 * @return
821 * - 0 on success.
822 * - -1 on failure.
823 */
824int fr_unix_time_from_str(fr_unix_time_t *date, char const *date_str, fr_time_res_t hint)
825{
826 int i;
827 int64_t tmp;
828 struct tm *tm, s_tm;
829 char buf[64];
830 char *p;
831 char *f[4];
832 char *tail = NULL;
833 unsigned long l;
834 fr_time_delta_t gmt_delta = fr_time_delta_wrap(0);
835
836 if (!*date_str) {
837 fr_strerror_const("Empty input is invalid");
838 return -1;
839 }
840
841 /*
842 * Test for unix timestamp, which is just a number and
843 * nothing else.
844 */
845 tmp = strtoul(date_str, &tail, 10);
846 if (*tail == '\0') {
847 *date = fr_unix_time_from_nsec(fr_time_scale(tmp, hint));
848 return 0;
849 }
850
851 tm = &s_tm;
852 memset(tm, 0, sizeof(*tm));
853 tm->tm_isdst = -1; /* don't know, and don't care about DST */
854
855 /*
856 * Check for RFC 3339 dates. Note that we only support
857 * dates in a ~1000 year period. If the server is being
858 * used after 3000AD, someone can patch it then.
859 *
860 * %Y-%m-%dT%H:%M:%S
861 * [.%d] sub-seconds
862 * Z | (+/-)%H:%M time zone offset
863 *
864 */
865 if ((tmp > 1900) && (tmp < 3000) && *tail == '-') {
866 unsigned long subseconds;
867 int tz, tz_hour, tz_min;
868
869 p = tail + 1;
870 s_tm.tm_year = tmp - 1900; /* 'struct tm' starts years in 1900 */
871
872 if (get_part(&p, &s_tm.tm_mon, 1, 12, '-', "month") < 0) return -1;
873 s_tm.tm_mon--; /* ISO is 1..12, where 'struct tm' is 0..11 */
874
875 if (get_part(&p, &s_tm.tm_mday, 1, 31, 'T', "day") < 0) return -1;
876 if (get_part(&p, &s_tm.tm_hour, 0, 23, ':', "hour") < 0) return -1;
877 if (get_part(&p, &s_tm.tm_min, 0, 59, ':', "minute") < 0) return -1;
878 if (get_part(&p, &s_tm.tm_sec, 0, 60, '\0', "seconds") < 0) return -1;
879
880 if (*p == '.') {
881 p++;
882 subseconds = strtoul(p, &tail, 10);
883 if (subseconds > NSEC) {
884 fr_strerror_const("Invalid nanosecond specifier");
885 return -1;
886 }
887
888 /*
889 * Scale subseconds to nanoseconds by how
890 * many digits were parsed/
891 */
892 if ((tail - p) < 9) {
893 for (i = 0; i < 9 - (tail -p); i++) {
894 subseconds *= 10;
895 }
896 }
897
898 p = tail;
899 } else {
900 subseconds = 0;
901 }
902
903 /*
904 * Time zone is GMT. Leave well enough
905 * alone.
906 */
907 if (*p == 'Z') {
908 if (p[1] != '\0') {
909 fr_strerror_printf("Unexpected text '%c' after time zone", p[1]);
910 return -1;
911 }
912 tz = 0;
913 goto done;
914 }
915
916 if ((*p != '+') && (*p != '-')) {
917 fr_strerror_printf("Invalid time zone specifier '%c'", *p);
918 return -1;
919 }
920 tail = p; /* remember sign for later */
921 p++;
922
923 if (get_part(&p, &tz_hour, 0, 23, ':', "hour in time zone") < 0) return -1;
924 if (get_part(&p, &tz_min, 0, 59, '\0', "minute in time zone") < 0) return -1;
925
926 if (*p != '\0') {
927 fr_strerror_printf("Unexpected text '%c' after time zone", *p);
928 return -1;
929 }
930
931 /*
932 * We set the time zone, but the timegm()
933 * function ignores it. Note also that mktime()
934 * ignores it too, and treats the time zone as
935 * local.
936 *
937 * We can't store this value in s_tm.gtmoff,
938 * because the timegm() function helpfully zeros
939 * it out.
940 *
941 * So insyead of using stupid C library
942 * functions, we just roll our own.
943 */
944 tz = tz_hour * 3600 + tz_min * 60;
945 if (*tail == '-') tz *= -1;
946
947 done:
948 /*
949 * Set the gmt offset correctly, as
950 * fr_unix_time_from_tm() will do the correction
951 * to remove the time zone.
952 */
953 tm->tm_gmtoff = tz;
955 return 0;
956 }
957
958 /*
959 * Try to parse dates via locale-specific names,
960 * using the same format string as strftime().
961 *
962 * If that fails, then we fall back to our parsing
963 * routine, which is much more forgiving.
964 */
965
966#ifdef __APPLE__
967 /*
968 * OSX "man strptime" says it only accepts the local time zone, and GMT.
969 *
970 * However, when printing dates via strftime(), it prints
971 * "UTC" instead of "GMT". So... we have to fix it up
972 * for stupid nonsense.
973 */
974 {
975 char const *tz = strstr(date_str, "UTC");
976 if (tz) {
977 char *my_str;
978
979 my_str = talloc_strdup(NULL, date_str);
980 if (my_str) {
981 p = my_str + (tz - date_str);
982 memcpy(p, "GMT", 3);
983
984 p = strptime(my_str, "%b %e %Y %H:%M:%S %Z", tm);
985 if (p && (*p == '\0')) {
986 talloc_free(my_str);
987 *date = fr_unix_time_from_tm(tm);
988 return 0;
989 }
990 talloc_free(my_str);
991 }
992 }
993 }
994#endif
995
996 p = strptime(date_str, "%b %e %Y %H:%M:%S %Z", tm);
997 if (p && (*p == '\0')) {
998 *date = fr_unix_time_from_tm(tm);
999 return 0;
1000 }
1001
1002 strlcpy(buf, date_str, sizeof(buf));
1003
1004 p = buf;
1005 f[0] = mystrtok(&p, " \t");
1006 f[1] = mystrtok(&p, " \t");
1007 f[2] = mystrtok(&p, " \t");
1008 f[3] = mystrtok(&p, " \t"); /* may, or may not, be present */
1009 if (!f[0] || !f[1] || !f[2]) {
1010 fr_strerror_const("Too few fields");
1011 return -1;
1012 }
1013
1014 /*
1015 * Try to parse the time zone. If it's GMT / UTC or a
1016 * local time zone we're OK.
1017 *
1018 * Otherwise, ignore errors and assume GMT.
1019 */
1020 if (*p != '\0') {
1022 (void) fr_time_delta_from_time_zone(p, &gmt_delta);
1023 }
1024
1025 /*
1026 * The time has a colon, where nothing else does.
1027 * So if we find it, bubble it to the back of the list.
1028 */
1029 if (f[3]) {
1030 for (i = 0; i < 3; i++) {
1031 if (strchr(f[i], ':')) {
1032 p = f[3];
1033 f[3] = f[i];
1034 f[i] = p;
1035 break;
1036 }
1037 }
1038 }
1039
1040 /*
1041 * The month is text, which allows us to find it easily.
1042 */
1043 tm->tm_mon = 12;
1044 for (i = 0; i < 3; i++) {
1045 if (isalpha((uint8_t) *f[i])) {
1046 int j;
1047
1048 /*
1049 * Bubble the month to the front of the list
1050 */
1051 p = f[0];
1052 f[0] = f[i];
1053 f[i] = p;
1054
1055 for (j = 0; j < 12; j++) {
1056 if (strncasecmp(months[j], f[0], 3) == 0) {
1057 tm->tm_mon = j;
1058 break;
1059 }
1060 }
1061 }
1062 }
1063
1064 /* month not found? */
1065 if (tm->tm_mon == 12) {
1066 fr_strerror_const("No month found");
1067 return -1;
1068 }
1069
1070 /*
1071 * Check for invalid text, or invalid trailing text.
1072 */
1073 l = strtoul(f[1], &tail, 10);
1074 if ((l == ULONG_MAX) || (*tail != '\0')) {
1075 fr_strerror_const("Invalid year string");
1076 return -1;
1077 }
1078 tm->tm_year = l;
1079
1080 l = strtoul(f[2], &tail, 10);
1081 if ((l == ULONG_MAX) || (*tail != '\0')) {
1082 fr_strerror_const("Invalid day of month string");
1083 return -1;
1084 }
1085 tm->tm_mday = l;
1086
1087 if (tm->tm_year >= 1900) {
1088 tm->tm_year -= 1900;
1089
1090 } else {
1091 /*
1092 * We can't use 2-digit years any more, they make it
1093 * impossible to tell what's the day, and what's the year.
1094 */
1095 if (tm->tm_mday < 1900) {
1096 fr_strerror_const("Invalid year < 1900");
1097 return -1;
1098 }
1099
1100 /*
1101 * Swap the year and the day.
1102 */
1103 i = tm->tm_year;
1104 tm->tm_year = tm->tm_mday - 1900;
1105 tm->tm_mday = i;
1106 }
1107
1108 if (tm->tm_year > 10000) {
1109 fr_strerror_const("Invalid value for year");
1110 return -1;
1111 }
1112
1113 /*
1114 * If the day is out of range, die.
1115 */
1116 if ((tm->tm_mday < 1) || (tm->tm_mday > 31)) {
1117 fr_strerror_const("Invalid value for day of month");
1118 return -1;
1119 }
1120
1121 /*
1122 * There may be %H:%M:%S. Parse it in a hacky way.
1123 */
1124 if (f[3]) {
1125 f[0] = f[3]; /* HH */
1126 f[1] = strchr(f[0], ':'); /* find : separator */
1127 if (!f[1]) {
1128 fr_strerror_const("No ':' after hour");
1129 return -1;
1130 }
1131
1132 *(f[1]++) = '\0'; /* nuke it, and point to MM:SS */
1133
1134 f[2] = strchr(f[1], ':'); /* find : separator */
1135 if (f[2]) {
1136 *(f[2]++) = '\0'; /* nuke it, and point to SS */
1137 tm->tm_sec = atoi(f[2]);
1138 } /* else leave it as zero */
1139
1140 tm->tm_hour = atoi(f[0]);
1141 tm->tm_min = atoi(f[1]);
1142 }
1143
1144 *date = fr_unix_time_add(fr_unix_time_from_tm(tm), gmt_delta);
1145
1146 return 0;
1147}
1148
1149/** Convert unix time to string
1150 *
1151 * @param[out] out Where to write the string.
1152 * @param[in] time to convert.
1153 * @param[in] res What base resolution to print the time as.
1154 * @param[in] utc If true, use UTC, otherwise local time.
1155 * @return
1156 * - 0 on success.
1157 * - -1 on failure.
1158 */
1160{
1161 fr_sbuff_t our_out = FR_SBUFF(out);
1162 int64_t subseconds;
1163 time_t t;
1164 struct tm s_tm;
1165 size_t len;
1166 char buf[128];
1167
1168 t = fr_unix_time_to_sec(time);
1169 if (utc) {
1170 (void) gmtime_r(&t, &s_tm);
1171 } else {
1172 (void) localtime_r(&t, &s_tm);
1173 }
1174
1175 len = strftime(buf, sizeof(buf), "%Y-%m-%dT%H:%M:%S", &s_tm);
1176 FR_SBUFF_IN_BSTRNCPY_RETURN(&our_out, buf, len);
1177 subseconds = fr_unix_time_unwrap(time) % NSEC;
1178
1179 /*
1180 * Use RFC 3339 format, which is a
1181 * profile of ISO8601. The ISO standard
1182 * allows a much more complex set of date
1183 * formats. The RFC is much stricter.
1184 */
1185 switch (res) {
1187 case FR_TIME_RES_YEAR:
1188 case FR_TIME_RES_MONTH:
1189 case FR_TIME_RES_WEEK:
1190 case FR_TIME_RES_DAY:
1191 case FR_TIME_RES_HOUR:
1192 case FR_TIME_RES_MIN:
1193 case FR_TIME_RES_SEC:
1194 break;
1195
1196 case FR_TIME_RES_CSEC:
1197 subseconds /= (NSEC / CSEC);
1198 FR_SBUFF_IN_SPRINTF_RETURN(&our_out, ".%02" PRIi64, subseconds);
1199 break;
1200
1201 case FR_TIME_RES_MSEC:
1202 subseconds /= (NSEC / MSEC);
1203 FR_SBUFF_IN_SPRINTF_RETURN(&our_out, ".%03" PRIi64, subseconds);
1204 break;
1205
1206 case FR_TIME_RES_USEC:
1207 subseconds /= (NSEC / USEC);
1208 FR_SBUFF_IN_SPRINTF_RETURN(&our_out, ".%06" PRIi64, subseconds);
1209 break;
1210
1211 case FR_TIME_RES_NSEC:
1212 FR_SBUFF_IN_SPRINTF_RETURN(&our_out, ".%09" PRIi64, subseconds);
1213 break;
1214 }
1215
1216 /*
1217 * And time zone.
1218 */
1219 if (s_tm.tm_gmtoff != 0) {
1220 int hours, minutes;
1221
1222 hours = s_tm.tm_gmtoff / 3600;
1223 minutes = (s_tm.tm_gmtoff / 60) % 60;
1224
1225 FR_SBUFF_IN_SPRINTF_RETURN(&our_out, "%+03d:%02u", hours, minutes);
1226 } else {
1227 FR_SBUFF_IN_CHAR_RETURN(&our_out, 'Z');
1228 }
1229
1230 FR_SBUFF_SET_RETURN(out, &our_out);
1231}
1232
1233/** Get the offset to gmt.
1234 *
1235 */
1240
1241/** Whether or not we're daylight savings.
1242 *
1243 */
1245{
1246 return isdst;
1247}
static int const char * fmt
Definition acutest.h:573
#define RCSID(id)
Definition build.h:560
#define L(_str)
Helper for initialising arrays of string literals.
Definition build.h:228
#define DIAG_ON(_x)
Definition build.h:535
#define unlikely(_x)
Definition build.h:455
#define NUM_ELEMENTS(_t)
Definition build.h:406
#define DIAG_OFF(_x)
Definition build.h:534
static const char * tabs
Definition command.c:1589
static size_t min(size_t x, size_t y)
Definition dbuff.c:66
static fr_slen_t err
Definition dict.h:906
static fr_slen_t in
Definition dict.h:906
talloc_free(hp)
#define fr_add(_out, _a, _b)
Adds two integers.
Definition math.h:187
unsigned short uint16_t
unsigned int uint32_t
unsigned char uint8_t
ssize_t fr_slen_t
unsigned long int size_t
fr_sbuff_parse_error_t
@ FR_SBUFF_PARSE_ERROR_NOT_FOUND
String does not contain a token matching the output type.
int strncasecmp(char *s1, char *s2, int n)
Definition missing.c:35
struct tm * gmtime_r(time_t const *l_clock, struct tm *result)
Definition missing.c:205
struct tm * localtime_r(time_t const *l_clock, struct tm *result)
Definition missing.c:162
#define fr_assert(_expr)
Definition rad_assert.h:37
static bool done
Definition radclient.c:80
static char const * name
bool fr_sbuff_is_terminal(fr_sbuff_t *in, fr_sbuff_term_t const *tt)
Efficient terminal string search.
Definition sbuff.c:2258
fr_table_num_ordered_t const sbuff_parse_error_table[]
Definition sbuff.c:43
bool fr_sbuff_next_if_char(fr_sbuff_t *sbuff, char c)
Return true if the current char matches, and if it does, advance.
Definition sbuff.c:2194
#define fr_sbuff_start(_sbuff_or_marker)
#define fr_sbuff_out_by_longest_prefix(_match_len, _out, _table, _sbuff, _def)
#define FR_SBUFF_IN_CHAR_RETURN(_sbuff,...)
#define FR_SBUFF_IN(_start, _len_or_end)
#define fr_sbuff_current(_sbuff_or_marker)
#define fr_sbuff_is_char(_sbuff_or_marker, _c)
#define FR_SBUFF_ERROR_RETURN(_sbuff_or_marker)
#define FR_SBUFF_SET_RETURN(_dst, _src)
#define FR_SBUFF_IN_SPRINTF_RETURN(...)
#define FR_SBUFF(_sbuff_or_marker)
#define FR_SBUFF_IN_BSTRNCPY_RETURN(...)
#define fr_sbuff_advance(_sbuff_or_marker, _len)
#define fr_sbuff_out(_err, _out, _in)
#define fr_sbuff_extend_lowat(_status, _sbuff_or_marker, _lowat)
Set of terminal elements.
#define fr_skip_whitespace(_p)
Skip whitespace ('\t', '\n', '\v', '\f', '\r', ' ')
Definition skip.h:36
@ memory_order_release
Definition stdatomic.h:130
#define _Atomic(T)
Definition stdatomic.h:77
#define atomic_store_explicit(object, desired, order)
Definition stdatomic.h:314
size_t strlcpy(char *dst, char const *src, size_t siz)
Definition strlcpy.c:34
#define fr_table_str_by_value(_table, _number, _def)
Convert an integer to a string.
Definition table.h:804
An element in an arbitrarily ordered array of name to num mappings.
Definition table.h:57
#define talloc_strdup(_ctx, _str)
Definition talloc.h:149
static char * mystrtok(char **ptr, char const *sep)
Definition time.c:754
void fr_time_elapsed_update(fr_time_elapsed_t *elapsed, fr_time_t start, fr_time_t end)
Definition time.c:577
fr_unix_time_t fr_unix_time_from_tm(struct tm *tm)
Definition time.c:658
static char const * tab_string
Definition time.c:620
static const char * names[8]
Definition time.c:614
int fr_time_sync(void)
Get a new fr_time_monotonic_to_realtime value.
Definition time.c:109
static int get_part(char **str, int *date, int min, int max, char term, char const *name)
Definition time.c:776
static long gmtoff[2]
from localtime_r(), tm_gmtoff
Definition time.c:90
fr_table_num_ordered_t const fr_time_precision_table[]
Definition time.c:46
size_t fr_time_strftime_local(fr_sbuff_t *out, fr_time_t time, char const *fmt)
Copy a time string (local timezone) to an sbuff.
Definition time.c:533
#define CHECK(_x, _max)
fr_slen_t fr_time_delta_from_substr(fr_time_delta_t *out, fr_sbuff_t *in, fr_time_res_t hint, bool no_trailing, fr_sbuff_term_t const *tt)
Create fr_time_delta_t from a string.
Definition time.c:221
int fr_time_delta_from_time_zone(char const *tz, fr_time_delta_t *delta)
Return time delta from the time zone.
Definition time.c:183
fr_slen_t fr_time_delta_from_str(fr_time_delta_t *out, char const *in, size_t inlen, fr_time_res_t hint)
Create fr_time_delta_t from a string.
Definition time.c:426
bool fr_time_is_dst(void)
Whether or not we're daylight savings.
Definition time.c:1244
void fr_time_elapsed_fprint(FILE *fp, fr_time_elapsed_t const *elapsed, char const *prefix, int tab_offset)
Definition time.c:622
_Atomic int64_t fr_time_monotonic_to_realtime
difference between the two clocks
Definition time.c:87
int fr_unix_time_from_str(fr_unix_time_t *date, char const *date_str, fr_time_res_t hint)
Convert string in various formats to a fr_unix_time_t.
Definition time.c:824
int64_t fr_time_scale(int64_t t, fr_time_res_t hint)
Scale an input time to NSEC, clamping it at max / min.
Definition time.c:713
#define MOD(a, b)
static char const * months[]
Definition time.c:810
fr_time_delta_t fr_time_gmtoff(void)
Get the offset to gmt.
Definition time.c:1236
fr_slen_t fr_time_delta_to_str(fr_sbuff_t *out, fr_time_delta_t delta, fr_time_res_t res, bool is_unsigned)
Print fr_time_delta_t to a string with an appropriate suffix.
Definition time.c:454
size_t fr_time_precision_table_len
Definition time.c:84
static char const * tz_names[2]
normal, DST, from localtime_r(), tm_zone
Definition time.c:89
int fr_time_start(void)
Initialize the local time.
Definition time.c:157
static bool isdst
from localtime_r(), tm_is_dst
Definition time.c:91
fr_slen_t fr_unix_time_to_str(fr_sbuff_t *out, fr_unix_time_t time, fr_time_res_t res, bool utc)
Convert unix time to string.
Definition time.c:1159
int64_t fr_time_epoch
monotonic clock at boot, i.e. our epoch
Definition time.c:86
size_t fr_time_strftime_utc(fr_sbuff_t *out, fr_time_t time, char const *fmt)
Copy a time string (UTC) to an sbuff.
Definition time.c:562
int64_t const fr_time_multiplier_by_res[]
Definition time.c:32
static fr_time_delta_t fr_time_delta_from_integer(bool *overflow, int64_t integer, fr_time_res_t res)
Definition time.h:548
#define MSEC
Definition time.h:381
static int64_t fr_time_delta_to_integer(fr_time_delta_t delta, fr_time_res_t res)
Definition time.h:627
static int64_t fr_time_to_sec(fr_time_t when)
Convert an fr_time_t (internal time) to number of sec since the unix epoch (wallclock time)
Definition time.h:731
#define fr_time_gteq(_a, _b)
Definition time.h:238
static fr_unix_time_t fr_unix_time_from_nsec(int64_t nsec)
Definition time.h:423
static int64_t fr_time_delta_unwrap(fr_time_delta_t time)
Definition time.h:154
#define fr_time_delta_isneg(_a)
Definition time.h:291
#define fr_time_delta_lt(_a, _b)
Definition time.h:285
static fr_time_delta_t fr_time_delta_from_sec(int64_t sec)
Definition time.h:590
static int64_t fr_unix_time_to_sec(fr_unix_time_t delta)
Definition time.h:506
#define fr_time_delta_wrap(_time)
Definition time.h:152
#define fr_unix_time_min()
Definition time.h:159
fr_time_res_t
The base resolution for print parse operations.
Definition time.h:48
@ FR_TIME_RES_MONTH
Definition time.h:55
@ FR_TIME_RES_MSEC
Definition time.h:58
@ FR_TIME_RES_WEEK
Definition time.h:54
@ FR_TIME_RES_MIN
Definition time.h:51
@ FR_TIME_RES_CSEC
Definition time.h:57
@ FR_TIME_RES_HOUR
Definition time.h:52
@ FR_TIME_RES_YEAR
Definition time.h:56
@ FR_TIME_RES_DAY
Definition time.h:53
@ FR_TIME_RES_NSEC
Definition time.h:60
@ FR_TIME_RES_USEC
Definition time.h:59
@ FR_TIME_RES_SEC
Definition time.h:50
@ FR_TIME_RES_INVALID
Definition time.h:49
static fr_unix_time_t fr_unix_time_from_sec(int64_t sec)
Definition time.h:449
#define NSEC
Definition time.h:379
static uint64_t fr_unix_time_unwrap(fr_unix_time_t time)
Definition time.h:161
#define CLOCK_MONOTONIC_RAW
Definition time.h:950
uint64_t array[8]
100ns to 100s
Definition time.h:376
#define USEC
Definition time.h:380
#define fr_time_sub(_a, _b)
Subtract one time from another.
Definition time.h:229
#define FR_TIME_DUR_MONTH
Definition time.h:394
#define CSEC
Definition time.h:382
#define fr_unix_time_add(_a, _b)
Add a time/time delta together.
Definition time.h:324
static fr_time_delta_t fr_time_delta_from_timespec(struct timespec const *ts)
Definition time.h:614
#define FR_TIME_DUR_YEAR
Definition time.h:393
A time delta, a difference in time measured in nanoseconds.
Definition time.h:80
"server local" time.
Definition time.h:69
"Unix" time.
Definition time.h:95
#define fr_strerror_printf(_fmt,...)
Log to thread local error buffer.
Definition strerror.h:64
#define fr_strerror_const(_msg)
Definition strerror.h:223
static size_t char fr_sbuff_t size_t inlen
Definition value.h:1062
static size_t char ** out
Definition value.h:1062