2017-07-06 23:37:26 +02:00
|
|
|
#!/usr/bin/python3
|
2014-05-18 21:01:21 +02:00
|
|
|
# -*- encoding: utf8 -*-
|
2012-02-01 16:55:53 +01:00
|
|
|
#
|
|
|
|
# The Qubes OS Project, http://www.qubes-os.org
|
|
|
|
#
|
|
|
|
# Copyright (C) 2010 Marek Marczykowski <marmarek@invisiblethingslab.com>
|
|
|
|
#
|
2017-10-12 00:11:50 +02:00
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2.1 of the License, or (at your option) any later version.
|
2012-02-01 16:55:53 +01:00
|
|
|
#
|
2017-10-12 00:11:50 +02:00
|
|
|
# This library is distributed in the hope that it will be useful,
|
2012-02-01 16:55:53 +01:00
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2017-10-12 00:11:50 +02:00
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# Lesser General Public License for more details.
|
2012-02-01 16:55:53 +01:00
|
|
|
#
|
2017-10-12 00:11:50 +02:00
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this library; if not, see <https://www.gnu.org/licenses/>.
|
2012-02-01 16:55:53 +01:00
|
|
|
#
|
|
|
|
#
|
|
|
|
import sys
|
2018-04-10 06:56:33 +02:00
|
|
|
import os
|
2012-02-01 16:55:53 +01:00
|
|
|
import re
|
|
|
|
import subprocess
|
2017-07-06 23:37:26 +02:00
|
|
|
from qubesadmin import Qubes
|
2012-02-01 16:55:53 +01:00
|
|
|
|
|
|
|
def main():
|
2018-04-10 06:56:33 +02:00
|
|
|
if os.geteuid() != 0:
|
2018-04-10 06:58:10 +02:00
|
|
|
sys.stderr.write('This program must be run as root to set the date, aborting!\n')
|
2018-04-10 06:56:33 +02:00
|
|
|
sys.exit(1)
|
2017-07-06 23:37:26 +02:00
|
|
|
app = Qubes()
|
|
|
|
clockvm = app.clockvm
|
2012-02-01 16:55:53 +01:00
|
|
|
|
2020-03-04 04:02:47 +01:00
|
|
|
if not clockvm:
|
|
|
|
sys.exit(0)
|
|
|
|
|
2018-08-28 01:31:16 +02:00
|
|
|
if not clockvm.is_running():
|
|
|
|
sys.stderr.write('ClockVM {} is not running, aborting.\n'.format(
|
|
|
|
clockvm.name))
|
|
|
|
sys.exit(0)
|
|
|
|
|
2017-07-06 23:37:26 +02:00
|
|
|
p = clockvm.run_service('qubes.GetDate')
|
2017-07-11 21:39:01 +02:00
|
|
|
untrusted_date_out = p.stdout.read(25).decode('ascii', errors='strict')
|
|
|
|
untrusted_date_out = untrusted_date_out.strip()
|
2012-02-01 16:55:53 +01:00
|
|
|
|
2017-07-11 21:39:01 +02:00
|
|
|
if not re.match(r'^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\+00:?00$', untrusted_date_out):
|
2017-07-12 12:52:43 +02:00
|
|
|
sys.stderr.write('Invalid date received, aborting!\n')
|
2012-02-01 16:55:53 +01:00
|
|
|
sys.exit(1)
|
2017-07-12 12:52:43 +02:00
|
|
|
date_out = untrusted_date_out
|
|
|
|
subprocess.check_call(['date', '-u', '-Iseconds', '-s', date_out],
|
2017-07-06 23:37:26 +02:00
|
|
|
stdout=subprocess.DEVNULL)
|
2018-09-10 17:24:35 +02:00
|
|
|
subprocess.check_call(['/sbin/hwclock', '--systohc'],
|
2017-07-06 23:37:26 +02:00
|
|
|
stdout=subprocess.DEVNULL)
|
2012-02-01 16:55:53 +01:00
|
|
|
|
2017-07-06 23:37:26 +02:00
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|
2012-02-01 16:55:53 +01:00
|
|
|
|