proc-uptime.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. * Copyright © 2018 Alexey Dobriyan <adobriyan@gmail.com>
  3. *
  4. * Permission to use, copy, modify, and distribute this software for any
  5. * purpose with or without fee is hereby granted, provided that the above
  6. * copyright notice and this permission notice appear in all copies.
  7. *
  8. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  9. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  10. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  11. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  12. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  13. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  14. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  15. */
  16. #undef NDEBUG
  17. #include <assert.h>
  18. #include <errno.h>
  19. #include <string.h>
  20. #include <stdlib.h>
  21. #include <unistd.h>
  22. #include <time.h>
  23. #include "proc.h"
  24. static uint64_t clock_boottime(void)
  25. {
  26. struct timespec ts;
  27. int err;
  28. err = clock_gettime(CLOCK_BOOTTIME, &ts);
  29. assert(err >= 0);
  30. return (ts.tv_sec * 100) + (ts.tv_nsec / 10000000);
  31. }
  32. static uint64_t proc_uptime(int fd)
  33. {
  34. uint64_t val1, val2;
  35. char buf[64], *p;
  36. ssize_t rv;
  37. /* save "p < end" checks */
  38. memset(buf, 0, sizeof(buf));
  39. rv = pread(fd, buf, sizeof(buf), 0);
  40. assert(0 <= rv && rv <= sizeof(buf));
  41. buf[sizeof(buf) - 1] = '\0';
  42. p = buf;
  43. val1 = xstrtoull(p, &p);
  44. assert(p[0] == '.');
  45. assert('0' <= p[1] && p[1] <= '9');
  46. assert('0' <= p[2] && p[2] <= '9');
  47. assert(p[3] == ' ');
  48. val2 = (p[1] - '0') * 10 + p[2] - '0';
  49. return val1 * 100 + val2;
  50. }