]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/timedate/timedatectl.c
Merge pull request #1334 from poettering/sd-bus-default-flush-close
[thirdparty/systemd.git] / src / timedate / timedatectl.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4 This file is part of systemd.
5
6 Copyright 2012 Lennart Poettering
7 Copyright 2013 Kay Sievers
8
9 systemd is free software; you can redistribute it and/or modify it
10 under the terms of the GNU Lesser General Public License as published by
11 the Free Software Foundation; either version 2.1 of the License, or
12 (at your option) any later version.
13
14 systemd is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 Lesser General Public License for more details.
18
19 You should have received a copy of the GNU Lesser General Public License
20 along with systemd; If not, see <http://www.gnu.org/licenses/>.
21 ***/
22
23 #include <stdlib.h>
24 #include <stdbool.h>
25 #include <getopt.h>
26 #include <locale.h>
27
28 #include "sd-bus.h"
29 #include "bus-util.h"
30 #include "bus-error.h"
31 #include "util.h"
32 #include "spawn-polkit-agent.h"
33 #include "build.h"
34 #include "strv.h"
35 #include "pager.h"
36 #include "terminal-util.h"
37
38 static bool arg_no_pager = false;
39 static bool arg_ask_password = true;
40 static BusTransport arg_transport = BUS_TRANSPORT_LOCAL;
41 static char *arg_host = NULL;
42 static bool arg_adjust_system_clock = false;
43
44 static void pager_open_if_enabled(void) {
45
46 if (arg_no_pager)
47 return;
48
49 pager_open(false);
50 }
51
52 static void polkit_agent_open_if_enabled(void) {
53
54 /* Open the polkit agent as a child process if necessary */
55 if (!arg_ask_password)
56 return;
57
58 if (arg_transport != BUS_TRANSPORT_LOCAL)
59 return;
60
61 polkit_agent_open();
62 }
63
64 typedef struct StatusInfo {
65 usec_t time;
66 char *timezone;
67
68 usec_t rtc_time;
69 bool rtc_local;
70
71 bool ntp_enabled;
72 bool ntp_capable;
73 bool ntp_synced;
74 } StatusInfo;
75
76 static void status_info_clear(StatusInfo *info) {
77 if (info) {
78 free(info->timezone);
79 zero(*info);
80 }
81 }
82
83 static void print_status_info(const StatusInfo *i) {
84 char a[FORMAT_TIMESTAMP_MAX];
85 struct tm tm;
86 time_t sec;
87 bool have_time = false;
88 const char *old_tz = NULL, *tz;
89 int r;
90
91 assert(i);
92
93 /* Save the old $TZ */
94 tz = getenv("TZ");
95 if (tz)
96 old_tz = strdupa(tz);
97
98 /* Set the new $TZ */
99 if (setenv("TZ", isempty(i->timezone) ? "UTC" : i->timezone, true) < 0)
100 log_warning_errno(errno, "Failed to set TZ environment variable, ignoring: %m");
101 else
102 tzset();
103
104 if (i->time != 0) {
105 sec = (time_t) (i->time / USEC_PER_SEC);
106 have_time = true;
107 } else if (IN_SET(arg_transport, BUS_TRANSPORT_LOCAL, BUS_TRANSPORT_MACHINE)) {
108 sec = time(NULL);
109 have_time = true;
110 } else
111 log_warning("Could not get time from timedated and not operating locally, ignoring.");
112
113 if (have_time) {
114 xstrftime(a, "%a %Y-%m-%d %H:%M:%S %Z", localtime_r(&sec, &tm));
115 printf(" Local time: %.*s\n", (int) sizeof(a), a);
116
117 xstrftime(a, "%a %Y-%m-%d %H:%M:%S UTC", gmtime_r(&sec, &tm));
118 printf(" Universal time: %.*s\n", (int) sizeof(a), a);
119 } else {
120 printf(" Local time: %s\n", "n/a");
121 printf(" Universal time: %s\n", "n/a");
122 }
123
124 if (i->rtc_time > 0) {
125 time_t rtc_sec;
126
127 rtc_sec = (time_t) (i->rtc_time / USEC_PER_SEC);
128 xstrftime(a, "%a %Y-%m-%d %H:%M:%S", gmtime_r(&rtc_sec, &tm));
129 printf(" RTC time: %.*s\n", (int) sizeof(a), a);
130 } else
131 printf(" RTC time: %s\n", "n/a");
132
133 if (have_time)
134 xstrftime(a, "%Z, %z", localtime_r(&sec, &tm));
135
136 /* Restore the $TZ */
137 if (old_tz)
138 r = setenv("TZ", old_tz, true);
139 else
140 r = unsetenv("TZ");
141 if (r < 0)
142 log_warning_errno(errno, "Failed to set TZ environment variable, ignoring: %m");
143 else
144 tzset();
145
146 printf(" Time zone: %s (%.*s)\n"
147 " Network time on: %s\n"
148 "NTP synchronized: %s\n"
149 " RTC in local TZ: %s\n",
150 strna(i->timezone), (int) sizeof(a), have_time ? a : "n/a",
151 i->ntp_capable ? yes_no(i->ntp_enabled) : "n/a",
152 yes_no(i->ntp_synced),
153 yes_no(i->rtc_local));
154
155 if (i->rtc_local)
156 fputs("\n" ANSI_HIGHLIGHT
157 "Warning: The system is configured to read the RTC time in the local time zone.\n"
158 " This mode can not be fully supported. It will create various problems\n"
159 " with time zone changes and daylight saving time adjustments. The RTC\n"
160 " time is never updated, it relies on external facilities to maintain it.\n"
161 " If at all possible, use RTC in UTC by calling\n"
162 " 'timedatectl set-local-rtc 0'." ANSI_NORMAL "\n", stdout);
163 }
164
165 static int show_status(sd_bus *bus, char **args, unsigned n) {
166 _cleanup_(status_info_clear) StatusInfo info = {};
167 static const struct bus_properties_map map[] = {
168 { "Timezone", "s", NULL, offsetof(StatusInfo, timezone) },
169 { "LocalRTC", "b", NULL, offsetof(StatusInfo, rtc_local) },
170 { "NTP", "b", NULL, offsetof(StatusInfo, ntp_enabled) },
171 { "CanNTP", "b", NULL, offsetof(StatusInfo, ntp_capable) },
172 { "NTPSynchronized", "b", NULL, offsetof(StatusInfo, ntp_synced) },
173 { "TimeUSec", "t", NULL, offsetof(StatusInfo, time) },
174 { "RTCTimeUSec", "t", NULL, offsetof(StatusInfo, rtc_time) },
175 {}
176 };
177 int r;
178
179 assert(bus);
180
181 r = bus_map_all_properties(bus,
182 "org.freedesktop.timedate1",
183 "/org/freedesktop/timedate1",
184 map,
185 &info);
186 if (r < 0)
187 return log_error_errno(r, "Failed to query server: %m");
188
189 print_status_info(&info);
190
191 return r;
192 }
193
194 static int set_time(sd_bus *bus, char **args, unsigned n) {
195 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
196 bool relative = false, interactive = arg_ask_password;
197 usec_t t;
198 int r;
199
200 assert(args);
201 assert(n == 2);
202
203 polkit_agent_open_if_enabled();
204
205 r = parse_timestamp(args[1], &t);
206 if (r < 0) {
207 log_error("Failed to parse time specification: %s", args[1]);
208 return r;
209 }
210
211 r = sd_bus_call_method(bus,
212 "org.freedesktop.timedate1",
213 "/org/freedesktop/timedate1",
214 "org.freedesktop.timedate1",
215 "SetTime",
216 &error,
217 NULL,
218 "xbb", (int64_t)t, relative, interactive);
219 if (r < 0)
220 log_error("Failed to set time: %s", bus_error_message(&error, -r));
221
222 return r;
223 }
224
225 static int set_timezone(sd_bus *bus, char **args, unsigned n) {
226 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
227 int r;
228
229 assert(args);
230 assert(n == 2);
231
232 polkit_agent_open_if_enabled();
233
234 r = sd_bus_call_method(bus,
235 "org.freedesktop.timedate1",
236 "/org/freedesktop/timedate1",
237 "org.freedesktop.timedate1",
238 "SetTimezone",
239 &error,
240 NULL,
241 "sb", args[1], arg_ask_password);
242 if (r < 0)
243 log_error("Failed to set time zone: %s", bus_error_message(&error, -r));
244
245 return r;
246 }
247
248 static int set_local_rtc(sd_bus *bus, char **args, unsigned n) {
249 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
250 int r, b;
251
252 assert(args);
253 assert(n == 2);
254
255 polkit_agent_open_if_enabled();
256
257 b = parse_boolean(args[1]);
258 if (b < 0) {
259 log_error("Failed to parse local RTC setting: %s", args[1]);
260 return b;
261 }
262
263 r = sd_bus_call_method(bus,
264 "org.freedesktop.timedate1",
265 "/org/freedesktop/timedate1",
266 "org.freedesktop.timedate1",
267 "SetLocalRTC",
268 &error,
269 NULL,
270 "bbb", b, arg_adjust_system_clock, arg_ask_password);
271 if (r < 0)
272 log_error("Failed to set local RTC: %s", bus_error_message(&error, -r));
273
274 return r;
275 }
276
277 static int set_ntp(sd_bus *bus, char **args, unsigned n) {
278 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
279 int b, r;
280
281 assert(args);
282 assert(n == 2);
283
284 polkit_agent_open_if_enabled();
285
286 b = parse_boolean(args[1]);
287 if (b < 0) {
288 log_error("Failed to parse NTP setting: %s", args[1]);
289 return b;
290 }
291
292 r = sd_bus_call_method(bus,
293 "org.freedesktop.timedate1",
294 "/org/freedesktop/timedate1",
295 "org.freedesktop.timedate1",
296 "SetNTP",
297 &error,
298 NULL,
299 "bb", b, arg_ask_password);
300 if (r < 0)
301 log_error("Failed to set ntp: %s", bus_error_message(&error, -r));
302
303 return r;
304 }
305
306 static int list_timezones(sd_bus *bus, char **args, unsigned n) {
307 _cleanup_strv_free_ char **zones = NULL;
308 int r;
309
310 assert(args);
311 assert(n == 1);
312
313 r = get_timezones(&zones);
314 if (r < 0)
315 return log_error_errno(r, "Failed to read list of time zones: %m");
316
317 pager_open_if_enabled();
318 strv_print(zones);
319
320 return 0;
321 }
322
323 static void help(void) {
324 printf("%s [OPTIONS...] COMMAND ...\n\n"
325 "Query or change system time and date settings.\n\n"
326 " -h --help Show this help message\n"
327 " --version Show package version\n"
328 " --no-pager Do not pipe output into a pager\n"
329 " --no-ask-password Do not prompt for password\n"
330 " -H --host=[USER@]HOST Operate on remote host\n"
331 " -M --machine=CONTAINER Operate on local container\n"
332 " --adjust-system-clock Adjust system clock when changing local RTC mode\n\n"
333 "Commands:\n"
334 " status Show current time settings\n"
335 " set-time TIME Set system time\n"
336 " set-timezone ZONE Set system time zone\n"
337 " list-timezones Show known time zones\n"
338 " set-local-rtc BOOL Control whether RTC is in local time\n"
339 " set-ntp BOOL Enable or disable network time synchronization\n",
340 program_invocation_short_name);
341 }
342
343 static int parse_argv(int argc, char *argv[]) {
344
345 enum {
346 ARG_VERSION = 0x100,
347 ARG_NO_PAGER,
348 ARG_ADJUST_SYSTEM_CLOCK,
349 ARG_NO_ASK_PASSWORD
350 };
351
352 static const struct option options[] = {
353 { "help", no_argument, NULL, 'h' },
354 { "version", no_argument, NULL, ARG_VERSION },
355 { "no-pager", no_argument, NULL, ARG_NO_PAGER },
356 { "host", required_argument, NULL, 'H' },
357 { "machine", required_argument, NULL, 'M' },
358 { "no-ask-password", no_argument, NULL, ARG_NO_ASK_PASSWORD },
359 { "adjust-system-clock", no_argument, NULL, ARG_ADJUST_SYSTEM_CLOCK },
360 {}
361 };
362
363 int c;
364
365 assert(argc >= 0);
366 assert(argv);
367
368 while ((c = getopt_long(argc, argv, "hH:M:", options, NULL)) >= 0)
369
370 switch (c) {
371
372 case 'h':
373 help();
374 return 0;
375
376 case ARG_VERSION:
377 puts(PACKAGE_STRING);
378 puts(SYSTEMD_FEATURES);
379 return 0;
380
381 case 'H':
382 arg_transport = BUS_TRANSPORT_REMOTE;
383 arg_host = optarg;
384 break;
385
386 case 'M':
387 arg_transport = BUS_TRANSPORT_MACHINE;
388 arg_host = optarg;
389 break;
390
391 case ARG_NO_ASK_PASSWORD:
392 arg_ask_password = false;
393 break;
394
395 case ARG_ADJUST_SYSTEM_CLOCK:
396 arg_adjust_system_clock = true;
397 break;
398
399 case ARG_NO_PAGER:
400 arg_no_pager = true;
401 break;
402
403 case '?':
404 return -EINVAL;
405
406 default:
407 assert_not_reached("Unhandled option");
408 }
409
410 return 1;
411 }
412
413 static int timedatectl_main(sd_bus *bus, int argc, char *argv[]) {
414
415 static const struct {
416 const char* verb;
417 const enum {
418 MORE,
419 LESS,
420 EQUAL
421 } argc_cmp;
422 const int argc;
423 int (* const dispatch)(sd_bus *bus, char **args, unsigned n);
424 } verbs[] = {
425 { "status", LESS, 1, show_status },
426 { "set-time", EQUAL, 2, set_time },
427 { "set-timezone", EQUAL, 2, set_timezone },
428 { "list-timezones", EQUAL, 1, list_timezones },
429 { "set-local-rtc", EQUAL, 2, set_local_rtc },
430 { "set-ntp", EQUAL, 2, set_ntp, },
431 };
432
433 int left;
434 unsigned i;
435
436 assert(argc >= 0);
437 assert(argv);
438
439 left = argc - optind;
440
441 if (left <= 0)
442 /* Special rule: no arguments means "status" */
443 i = 0;
444 else {
445 if (streq(argv[optind], "help")) {
446 help();
447 return 0;
448 }
449
450 for (i = 0; i < ELEMENTSOF(verbs); i++)
451 if (streq(argv[optind], verbs[i].verb))
452 break;
453
454 if (i >= ELEMENTSOF(verbs)) {
455 log_error("Unknown operation %s", argv[optind]);
456 return -EINVAL;
457 }
458 }
459
460 switch (verbs[i].argc_cmp) {
461
462 case EQUAL:
463 if (left != verbs[i].argc) {
464 log_error("Invalid number of arguments.");
465 return -EINVAL;
466 }
467
468 break;
469
470 case MORE:
471 if (left < verbs[i].argc) {
472 log_error("Too few arguments.");
473 return -EINVAL;
474 }
475
476 break;
477
478 case LESS:
479 if (left > verbs[i].argc) {
480 log_error("Too many arguments.");
481 return -EINVAL;
482 }
483
484 break;
485
486 default:
487 assert_not_reached("Unknown comparison operator.");
488 }
489
490 return verbs[i].dispatch(bus, argv + optind, left);
491 }
492
493 int main(int argc, char *argv[]) {
494 _cleanup_bus_flush_close_unref_ sd_bus *bus = NULL;
495 int r;
496
497 setlocale(LC_ALL, "");
498 log_parse_environment();
499 log_open();
500
501 r = parse_argv(argc, argv);
502 if (r <= 0)
503 goto finish;
504
505 r = bus_open_transport(arg_transport, arg_host, false, &bus);
506 if (r < 0) {
507 log_error_errno(r, "Failed to create bus connection: %m");
508 goto finish;
509 }
510
511 r = timedatectl_main(bus, argc, argv);
512
513 finish:
514 pager_close();
515
516 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
517 }