4 * Conversion between Windows NT timestamps and UNIX timestamps.
8 * Copyright (C) 2012-2017 Eric Biggers
10 * This file is free software; you can redistribute it and/or modify it under
11 * the terms of the GNU Lesser General Public License as published by the Free
12 * Software Foundation; either version 3 of the License, or (at your option) any
15 * This file is distributed in the hope that it will be useful, but WITHOUT
16 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
20 * You should have received a copy of the GNU Lesser General Public License
21 * along with this file; if not, see https://www.gnu.org/licenses/.
28 #include "wimlib.h" /* for struct wimlib_timespec */
29 #include "wimlib/timestamp.h"
32 * Timestamps in WIM files are Windows NT timestamps, or FILETIMEs: 64-bit
33 * values storing the number of 100-nanosecond ticks since January 1, 1601.
35 * Note: UNIX timestamps are signed; Windows timestamps are not. Negative UNIX
36 * timestamps represent times before 1970-01-01. When such a timestamp is
37 * converted to a Windows timestamp, we can preserve the correct date provided
38 * that it is not also before 1601-01-01.
41 #define NANOSECONDS_PER_TICK 100
42 #define TICKS_PER_SECOND (1000000000 / NANOSECONDS_PER_TICK)
43 #define TICKS_PER_MICROSECOND (TICKS_PER_SECOND / 1000000)
46 * EPOCH_DISTANCE is the number of seconds separating the Windows NT and UNIX
47 * epochs. This is equal to ((1970-1601)*365+89)*24*60*60. 89 is the number
48 * of leap years between 1970 and 1601.
50 #define EPOCH_DISTANCE 11644473600
52 /* Windows NT timestamps to UNIX timestamps */
55 wim_timestamp_to_time_t(u64 timestamp)
57 return (timestamp / TICKS_PER_SECOND) - EPOCH_DISTANCE;
61 wim_timestamp_to_wimlib_timespec(u64 timestamp, struct wimlib_timespec *wts,
64 s64 sec = (timestamp / TICKS_PER_SECOND) - EPOCH_DISTANCE;
67 wts->tv_nsec = (timestamp % TICKS_PER_SECOND) * NANOSECONDS_PER_TICK;
69 if (sizeof(wts->tv_sec) == 4)
70 *high_part_ret = sec >> 32;
74 static void __attribute__((unused))
75 check_sizeof_time_t(void)
77 /* Windows builds should always be using 64-bit time_t now. */
78 STATIC_ASSERT(sizeof(time_t) == 8);
82 wim_timestamp_to_timeval(u64 timestamp)
84 return (struct timeval) {
85 .tv_sec = wim_timestamp_to_time_t(timestamp),
86 .tv_usec = (timestamp % TICKS_PER_SECOND) / TICKS_PER_MICROSECOND,
91 wim_timestamp_to_timespec(u64 timestamp)
93 return (struct timespec) {
94 .tv_sec = wim_timestamp_to_time_t(timestamp),
95 .tv_nsec = (timestamp % TICKS_PER_SECOND) * NANOSECONDS_PER_TICK,
100 /* UNIX timestamps to Windows NT timestamps */
103 time_t_to_wim_timestamp(time_t t)
105 return ((u64)t + EPOCH_DISTANCE) * TICKS_PER_SECOND;
110 timeval_to_wim_timestamp(const struct timeval *tv)
112 return time_t_to_wim_timestamp(tv->tv_sec) +
113 (u32)tv->tv_usec * TICKS_PER_MICROSECOND;
117 timespec_to_wim_timestamp(const struct timespec *ts)
119 return time_t_to_wim_timestamp(ts->tv_sec) +
120 (u32)ts->tv_nsec / NANOSECONDS_PER_TICK;
123 /* Retrieve the current time as a WIM timestamp. */
125 now_as_wim_timestamp(void)
129 gettimeofday(&tv, NULL);
130 return timeval_to_wim_timestamp(&tv);
134 /* Translate a WIM timestamp into a human-readable string. */
136 wim_timestamp_to_str(u64 timestamp, tchar *buf, size_t len)
139 time_t t = wim_timestamp_to_time_t(timestamp);
142 tstrftime(buf, len, T("%a %b %d %H:%M:%S %Y UTC"), &tm);