This is xnu-11215.1.10. See this file in:
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <unistd.h>
#include <sys/mman.h>
#include <mach/clock_types.h>
#include <sys/timex.h>
#include <mach/mach.h>
#include <darwintest.h>
#include <darwintest_utils.h>
#define DAY 86400 /*1 day in sec*/
#define ERROR 2 /*2 us of error tolerance*/
T_DECL(settimeofday_29192647,
"Verify that the syscall settimeofday is effective",
T_META_ASROOT(true), T_META_CHECK_LEAKS(NO), T_META_LTEPHASE(LTE_POSTINIT))
{
struct timeval time;
long new_time;
if (geteuid() != 0) {
T_SKIP("settimeofday_29192647 test requires root privileges to run.");
}
T_QUIET;
T_ASSERT_POSIX_ZERO(gettimeofday(&time, NULL), NULL);
/* increment the time of one day */
new_time = time.tv_sec + DAY;
time.tv_sec = new_time;
time.tv_usec = 0;
T_LOG("Attemping to set the time one day after.");
T_WITH_ERRNO;
T_ASSERT_POSIX_ZERO(settimeofday(&time, NULL), NULL);
T_QUIET;
T_ASSERT_POSIX_ZERO(gettimeofday(&time, NULL), NULL);
/* expext to be past new_time */
T_EXPECT_GE_LONG(time.tv_sec, new_time, "Time successfully changed");
/* set the time back to previous value */
if (time.tv_sec >= new_time) {
time.tv_sec = time.tv_sec - DAY;
time.tv_usec = 0;
T_WITH_ERRNO;
T_ASSERT_POSIX_ZERO(settimeofday(&time, NULL), NULL);
}
}
static void
get_abs_to_us_scale_factor(uint64_t* numer, uint64_t* denom)
{
struct timespec time;
uint64_t old_abstime, new_abstime;
uint64_t old_time_usec, new_time_usec;
uint64_t time_conv1, diff;
mach_timebase_info_data_t timebaseInfo = { 0, 0 };
T_QUIET; T_ASSERT_EQ(mach_get_times(&old_abstime, NULL, &time), KERN_SUCCESS, NULL);
old_time_usec = (uint64_t)time.tv_sec * USEC_PER_SEC + (uint64_t)time.tv_nsec / 1000;
sleep(1);
T_QUIET; T_ASSERT_EQ(mach_get_times(&new_abstime, NULL, &time), KERN_SUCCESS, NULL);
new_time_usec = (uint64_t)time.tv_sec * USEC_PER_SEC + (uint64_t)time.tv_nsec / 1000;
/* this is conversion factors from abs to nanos */
T_ASSERT_EQ(mach_timebase_info(&timebaseInfo), KERN_SUCCESS, NULL);
new_time_usec -= old_time_usec;
new_abstime -= old_abstime;
time_conv1 = new_abstime;
time_conv1 *= timebaseInfo.numer;
time_conv1 /= timebaseInfo.denom * 1000;
if (time_conv1 > new_time_usec) {
diff = time_conv1 - new_time_usec;
} else {
diff = new_time_usec - time_conv1;
}
T_EXPECT_LE_ULLONG(diff, (unsigned long long)ERROR, "Check scale factor time base (%u/%u) delta read usec %llu delta converted %llu delta abs %llu", timebaseInfo.numer, timebaseInfo.denom, time_conv1, new_time_usec, new_abstime);
*numer = (uint64_t)timebaseInfo.numer;
*denom = (uint64_t)timebaseInfo.denom * 1000;
}
#define ADJSTMENT 3333 /*3333 us*/
#define ADJTIME_OFFSET_PER_SEC 500
T_DECL(adjtime_29192647,
"Verify that the syscall adjtime is effective",
T_META_CHECK_LEAKS(NO), T_META_LTEPHASE(LTE_POSTINIT), T_META_ASROOT(true))
{
struct timespec time;
struct timeval adj;
uint64_t old_abstime, new_abstime, abs_delta;
uint64_t old_time_usec, new_time_usec, us_delta, num, den;
unsigned int sleep_time;
long diff;
const char * lterdos_env = NULL;
#if defined(__i386__) || defined(__x86_64__)
T_SKIP("adjtime_29192647 test requires LTE to run.");
#endif
if (geteuid() != 0) {
T_SKIP("adjtime_29192647 test requires root privileges to run.");
}
lterdos_env = getenv("LTERDOS");
if (lterdos_env != NULL) {
if (!(strcmp(lterdos_env, "YES") == 0)) {
T_SKIP("adjtime_29192647 test requires LTE to run.");
}
} else {
T_SKIP("adjtime_29192647 test requires LTE to run.");
}
/*
* Calibrate scale factor for converting from abs time to usec
*/
get_abs_to_us_scale_factor(&num, &den);
T_QUIET; T_ASSERT_EQ(mach_get_times(&old_abstime, NULL, &time), KERN_SUCCESS, NULL);
old_time_usec = (uint64_t)time.tv_sec * USEC_PER_SEC + (uint64_t)time.tv_nsec / 1000;
adj.tv_sec = 0;
adj.tv_usec = ADJSTMENT;
T_LOG("Attemping to adjust the time of %d", ADJSTMENT);
/*
* If more than one second of adjustment
* the system slews at a rate of 5ms/s otherwise 500us/s
* until the last second is slewed the final < 500 usecs.
*/
T_WITH_ERRNO;
T_ASSERT_POSIX_ZERO(adjtime(&adj, NULL), NULL);
/*
* Wait that the full adjustment is applied.
* Note, add 2 more secs for take into account division error
* and that the last block of adj is fully elapsed.
*/
sleep_time = (ADJSTMENT) / (ADJTIME_OFFSET_PER_SEC)+2;
T_LOG("Waiting for %u sec\n", sleep_time);
sleep(sleep_time);
T_QUIET; T_ASSERT_EQ(mach_get_times(&new_abstime, NULL, &time), KERN_SUCCESS, NULL);
new_time_usec = (uint64_t)time.tv_sec * USEC_PER_SEC + (uint64_t)time.tv_nsec / 1000;
us_delta = new_time_usec - old_time_usec;
us_delta -= ADJSTMENT;
/* abs time is not affected by adjtime */
abs_delta = new_abstime - old_abstime;
abs_delta *= num;
abs_delta /= den;
diff = (long) us_delta - (long) abs_delta;
/* expext that us_delta == abs_delta */
T_EXPECT_LE_LONG(diff, (long) ERROR, "Check abs time vs calendar time");
T_EXPECT_GE_LONG(diff, (long) -ERROR, "Check abs time vs calendar time");
}
#define FREQ_PPM 222 /*222 PPM(us/s)*/
#define SHIFT_PLL 4
#define OFFSET_US 123 /*123us*/
T_DECL(ntp_adjtime_29192647,
"Verify that the syscall ntp_adjtime is effective",
T_META_CHECK_LEAKS(NO), T_META_LTEPHASE(LTE_POSTINIT), T_META_ASROOT(true))
{
struct timespec time;
struct timex ntptime;
uint64_t abstime1, abstime2, abs_delta, num, den, time_delta;
uint64_t time1_usec, time2_usec, time_conv, us_delta, app;
int64_t offset;
long diff, freq;
unsigned int sleep_time;
const char * lterdos_env = NULL;
#if defined(__i386__) || defined(__x86_64__)
T_SKIP("ntp_adjtime_29192647 test requires LTE to run.");
#endif
if (geteuid() != 0) {
T_SKIP("ntp_adjtime_29192647 test requires root privileges to run.");
}
lterdos_env = getenv("LTERDOS");
if (lterdos_env != NULL) {
if (!(strcmp(lterdos_env, "YES") == 0)) {
T_SKIP("adjtime_29192647 test requires LTE to run.");
}
} else {
T_SKIP("adjtime_29192647 test requires LTE to run.");
}
/*
* Calibrate scale factor for converting from abs time to usec
*/
get_abs_to_us_scale_factor(&num, &den);
/*
* scale frequency using ntp_adjtime;
*/
memset(&ntptime, 0, sizeof(ntptime));
ntptime.modes = MOD_STATUS;
ntptime.status = TIME_OK;
/* ntp input freq is in ppm (us/s) * 2^16, max freq is 500 ppm */
freq = (FREQ_PPM) * 65536;
ntptime.modes |= MOD_FREQUENCY;
ntptime.freq = freq;
T_LOG("Attemping to change calendar frequency of %d ppm", FREQ_PPM);
T_WITH_ERRNO;
T_ASSERT_EQ(ntp_adjtime(&ntptime), TIME_OK, NULL);
T_WITH_ERRNO;
T_ASSERT_EQ(ntptime.freq, freq, NULL);
sleep(2);
T_QUIET; T_ASSERT_EQ(mach_get_times(&abstime1, NULL, &time), KERN_SUCCESS, NULL);
time1_usec = (uint64_t)time.tv_sec * USEC_PER_SEC + (uint64_t)time.tv_nsec / 1000;
sleep(1);
T_QUIET; T_ASSERT_EQ(mach_get_times(&abstime2, NULL, &time), KERN_SUCCESS, NULL);
time2_usec = (uint64_t)time.tv_sec * USEC_PER_SEC + (uint64_t)time.tv_nsec / 1000;
abs_delta = abstime2 - abstime1;
us_delta = time2_usec - time1_usec;
time_conv = abs_delta;
time_conv *= num;
time_conv /= den;
app = time_conv / USEC_PER_SEC; //sec elapsed
time_delta = time_conv;
time_delta += app * (FREQ_PPM);
app = time_conv % USEC_PER_SEC;
time_delta += (app * (FREQ_PPM)) / USEC_PER_SEC;
diff = (long) us_delta - (long) time_delta;
/* expext that us_delta == time_delta */
T_EXPECT_LE_LONG(diff, (long) ERROR, "Check abs time vs calendar time");
T_EXPECT_GE_LONG(diff, (long) -ERROR, "Check abs time vs calendar time");
memset(&ntptime, 0, sizeof(ntptime));
/* reset freq to zero */
freq = 0;
ntptime.modes = MOD_STATUS;
ntptime.status = TIME_OK;
ntptime.modes |= MOD_FREQUENCY;
ntptime.freq = freq;
T_WITH_ERRNO;
T_ASSERT_EQ(ntp_adjtime(&ntptime), TIME_OK, NULL);
T_WITH_ERRNO;
T_ASSERT_EQ(ntptime.freq, freq, NULL);
sleep(1);
/*
* adjust the phase using ntp_adjtime;
*/
memset(&ntptime, 0, sizeof(ntptime));
ntptime.modes |= MOD_STATUS;
ntptime.status = TIME_OK;
ntptime.status |= STA_PLL | STA_FREQHOLD;
/* ntp input phase can be both ns or us (MOD_MICRO), max offset is 500 ms */
ntptime.offset = OFFSET_US;
ntptime.modes |= MOD_OFFSET | MOD_MICRO;
/*
* The system will slew each sec of:
* slew = ntp.offset >> (SHIFT_PLL + time_constant);
* ntp.offset -= slew;
*/
offset = (OFFSET_US) * 1000;
sleep_time = 2;
while ((offset >> SHIFT_PLL) > 0) {
offset -= offset >> SHIFT_PLL;
sleep_time++;
}
T_QUIET; T_ASSERT_EQ(mach_get_times(&abstime1, NULL, &time), KERN_SUCCESS, NULL);
time1_usec = (uint64_t)time.tv_sec * USEC_PER_SEC + (uint64_t)time.tv_nsec / 1000;
T_LOG("Attemping to change calendar phase of %d us", OFFSET_US);
T_WITH_ERRNO;
T_ASSERT_EQ(ntp_adjtime(&ntptime), TIME_OK, NULL);
T_WITH_ERRNO;
T_ASSERT_EQ(ntptime.offset, (long) OFFSET_US, NULL);
T_LOG("Waiting for %u sec\n", sleep_time);
sleep(sleep_time);
T_QUIET; T_ASSERT_EQ(mach_get_times(&abstime2, NULL, &time), KERN_SUCCESS, NULL);
time2_usec = (uint64_t)time.tv_sec * USEC_PER_SEC + (uint64_t)time.tv_nsec / 1000;
abs_delta = abstime2 - abstime1;
us_delta = time2_usec - time1_usec;
abs_delta *= num;
abs_delta /= den;
us_delta -= OFFSET_US;
diff = (long) us_delta - (long) abs_delta;
/* expext that us_delta == abs_delta */
T_EXPECT_LE_LONG(diff, (long) ERROR, "Check abs time vs calendar time");
T_EXPECT_GE_LONG(diff, (long) -ERROR, "Check abs time vs calendar time");
memset(&ntptime, 0, sizeof(ntptime));
ntptime.modes = MOD_STATUS;
ntptime.status = TIME_OK;
ntptime.modes |= MOD_FREQUENCY;
ntptime.freq = 0;
ntptime.status |= STA_PLL;
ntptime.offset = 0;
ntptime.modes |= MOD_OFFSET;
T_WITH_ERRNO;
T_ASSERT_EQ(ntp_adjtime(&ntptime), TIME_OK, NULL);
}