set-2038.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /* Time bounds setting test
  2. * by: john stultz ([email protected])
  3. * (C) Copyright IBM 2012
  4. * Licensed under the GPLv2
  5. *
  6. * NOTE: This is a meta-test which sets the time to edge cases then
  7. * uses other tests to detect problems. Thus this test requires that
  8. * the inconsistency-check and nanosleep tests be present in the same
  9. * directory it is run from.
  10. *
  11. * To build:
  12. * $ gcc set-2038.c -o set-2038 -lrt
  13. *
  14. * This program is free software: you can redistribute it and/or modify
  15. * it under the terms of the GNU General Public License as published by
  16. * the Free Software Foundation, either version 2 of the License, or
  17. * (at your option) any later version.
  18. *
  19. * This program is distributed in the hope that it will be useful,
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. * GNU General Public License for more details.
  23. */
  24. #include <stdio.h>
  25. #include <stdlib.h>
  26. #include <unistd.h>
  27. #include <time.h>
  28. #include <sys/time.h>
  29. #include "../kselftest.h"
  30. #define NSEC_PER_SEC 1000000000LL
  31. #define KTIME_MAX ((long long)~((unsigned long long)1 << 63))
  32. #define KTIME_SEC_MAX (KTIME_MAX / NSEC_PER_SEC)
  33. #define YEAR_1901 (-0x7fffffffL)
  34. #define YEAR_1970 1
  35. #define YEAR_2038 0x7fffffffL /*overflows 32bit time_t */
  36. #define YEAR_2262 KTIME_SEC_MAX /*overflows 64bit ktime_t */
  37. #define YEAR_MAX ((long long)((1ULL<<63)-1)) /*overflows 64bit time_t */
  38. int is32bits(void)
  39. {
  40. return (sizeof(long) == 4);
  41. }
  42. int settime(long long time)
  43. {
  44. struct timeval now;
  45. int ret;
  46. now.tv_sec = (time_t)time;
  47. now.tv_usec = 0;
  48. ret = settimeofday(&now, NULL);
  49. printf("Setting time to 0x%lx: %d\n", (long)time, ret);
  50. return ret;
  51. }
  52. int do_tests(void)
  53. {
  54. int ret;
  55. ret = system("date");
  56. ret = system("./inconsistency-check -c 0 -t 20");
  57. ret |= system("./nanosleep");
  58. ret |= system("./nsleep-lat");
  59. return ret;
  60. }
  61. int main(int argc, char *argv[])
  62. {
  63. int ret = 0;
  64. int opt, dangerous = 0;
  65. time_t start;
  66. /* Process arguments */
  67. while ((opt = getopt(argc, argv, "d")) != -1) {
  68. switch (opt) {
  69. case 'd':
  70. dangerous = 1;
  71. }
  72. }
  73. start = time(0);
  74. /* First test that crazy values don't work */
  75. if (!settime(YEAR_1901)) {
  76. ret = -1;
  77. goto out;
  78. }
  79. if (!settime(YEAR_MAX)) {
  80. ret = -1;
  81. goto out;
  82. }
  83. if (!is32bits() && !settime(YEAR_2262)) {
  84. ret = -1;
  85. goto out;
  86. }
  87. /* Now test behavior near edges */
  88. settime(YEAR_1970);
  89. ret = do_tests();
  90. if (ret)
  91. goto out;
  92. settime(YEAR_2038 - 600);
  93. ret = do_tests();
  94. if (ret)
  95. goto out;
  96. /* The rest of the tests can blowup on 32bit systems */
  97. if (is32bits() && !dangerous)
  98. goto out;
  99. /* Test rollover behavior 32bit edge */
  100. settime(YEAR_2038 - 10);
  101. ret = do_tests();
  102. if (ret)
  103. goto out;
  104. settime(YEAR_2262 - 600);
  105. ret = do_tests();
  106. out:
  107. /* restore clock */
  108. settime(start);
  109. if (ret)
  110. return ksft_exit_fail();
  111. return ksft_exit_pass();
  112. }