Signed-off-by: Lei Li <li...@linux.vnet.ibm.com> --- qga/commands-win32.c | 35 +++++++++++++++++++++++++++++++++++ 1 files changed, 35 insertions(+), 0 deletions(-)
diff --git a/qga/commands-win32.c b/qga/commands-win32.c index 0a2bb34..b5d4bd3 100644 --- a/qga/commands-win32.c +++ b/qga/commands-win32.c @@ -140,6 +140,41 @@ int64_t qmp_guest_get_time(Error **errp) return time_ns; } +void qmp_guest_set_time(int64_t time_ns, Error **errp) +{ + SYSTEMTIME ts; + FILETIME tf; + LONGLONG time; + + acquire_privilege(SE_SYSTEMTIME_NAME, errp); + if (error_is_set(errp)) { + error_setg(errp, "Failed to acquire privilege"); + return; + } + + time = time_ns / 100 + W32_FT_OFFSET; + /* FILETIME values should be less than 0x8000000000000000 + for function FileTimeToSystemTime. */ + if (time & 0x8000000000000000) { + error_setg(errp, "Time %" PRId64 "is too large", time); + return; + } + + tf.dwLowDateTime = (DWORD) time; + tf.dwHighDateTime = (DWORD) (time >> 32); + + if (!FileTimeToSystemTime(&tf, &ts)) { + error_setg(errp, "Failed to convert system time"); + return; + } + + if (!SetSystemTime(&ts)) { + slog("guest-set-time failed: %d", GetLastError()); + error_setg_errno(errp, errno, "Failed to set time to guest"); + return; + } +} + int64_t qmp_guest_file_open(const char *path, bool has_mode, const char *mode, Error **err) { error_set(err, QERR_UNSUPPORTED); -- 1.7.7.6