From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:34356) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UG7Ro-0007tM-66 for qemu-devel@nongnu.org; Thu, 14 Mar 2013 08:39:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UG7Rl-0000Rt-Hd for qemu-devel@nongnu.org; Thu, 14 Mar 2013 08:39:52 -0400 Received: from mail-gh0-f172.google.com ([209.85.160.172]:34936) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UG7Rl-0000Rn-5P for qemu-devel@nongnu.org; Thu, 14 Mar 2013 08:39:49 -0400 Received: by mail-gh0-f172.google.com with SMTP id z22so378580ghb.31 for ; Thu, 14 Mar 2013 05:39:48 -0700 (PDT) Sender: fluxion Date: Thu, 14 Mar 2013 07:38:11 -0500 From: mdroth Message-ID: <20130314123811.GL4005@vm> References: <1363244871-11973-1-git-send-email-lilei@linux.vnet.ibm.com> <1363244871-11973-3-git-send-email-lilei@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1363244871-11973-3-git-send-email-lilei@linux.vnet.ibm.com> Subject: Re: [Qemu-devel] [PATCH 2/2] qga: add windows implementation for guest-set-time List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Lei Li Cc: aliguori@us.ibm.com, qemu-devel@nongnu.org On Thu, Mar 14, 2013 at 03:07:51PM +0800, Lei Li wrote: > Signed-off-by: Lei Li > --- > qga/commands-win32.c | 33 +++++++++++++++++++++++++++++++++ > 1 file changed, 33 insertions(+) > > diff --git a/qga/commands-win32.c b/qga/commands-win32.c > index e24fb4a..8064c3a 100644 > --- a/qga/commands-win32.c > +++ b/qga/commands-win32.c > @@ -141,6 +141,39 @@ out: > return -1; > } > > +void qmp_guest_set_time(int64_t time_ns, Error **errp) > +{ > + SYSTEMTIME ts; > + FILETIME tf; > + LONGLONG time; > + > + if (time_ns < 0 || time_ns / 100 > INT64_MAX - W32_FT_OFFSET) { > + error_setg(errp, "Time %" PRId64 "is invalid", time_ns); > + return; > + } > + > + time = time_ns / 100 + W32_FT_OFFSET; > + > + tf.dwLowDateTime = (DWORD) time; > + tf.dwHighDateTime = (DWORD) (time >> 32); > + > + if (!FileTimeToSystemTime(&tf, &ts)) { > + error_setg(errp, "Failed to convert system time"); > + return; > + } > + > + acquire_privilege(SE_SYSTEMTIME_NAME, errp); > + if (error_is_set(errp)) { > + error_setg(errp, "Failed to acquire privilege"); Sorry, missed this one on the last review: Overriding a previously set error will cause an assert. We should just return and pass back the error from acquire_privilege. > + return; > + } > + > + if (!SetSystemTime(&ts)) { > + error_setg(errp, "Failed to set time to guest: %d", (int)GetLastError()); > + 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.11.7 >