]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/hostname/hostnamectl.c
Merge pull request #2495 from heftig/master
[thirdparty/systemd.git] / src / hostname / hostnamectl.c
1 /***
2 This file is part of systemd.
3
4 Copyright 2012 Lennart Poettering
5
6 systemd is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
10
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
18 ***/
19
20 #include <getopt.h>
21 #include <locale.h>
22 #include <stdbool.h>
23 #include <stdlib.h>
24 #include <string.h>
25
26 #include "sd-bus.h"
27 #include "sd-id128.h"
28
29 #include "alloc-util.h"
30 #include "architecture.h"
31 #include "bus-error.h"
32 #include "bus-util.h"
33 #include "hostname-util.h"
34 #include "spawn-polkit-agent.h"
35 #include "util.h"
36
37 static bool arg_ask_password = true;
38 static BusTransport arg_transport = BUS_TRANSPORT_LOCAL;
39 static char *arg_host = NULL;
40 static bool arg_transient = false;
41 static bool arg_pretty = false;
42 static bool arg_static = false;
43
44 static void polkit_agent_open_if_enabled(void) {
45
46 /* Open the polkit agent as a child process if necessary */
47 if (!arg_ask_password)
48 return;
49
50 if (arg_transport != BUS_TRANSPORT_LOCAL)
51 return;
52
53 polkit_agent_open();
54 }
55
56 typedef struct StatusInfo {
57 char *hostname;
58 char *static_hostname;
59 char *pretty_hostname;
60 char *icon_name;
61 char *chassis;
62 char *deployment;
63 char *location;
64 char *kernel_name;
65 char *kernel_release;
66 char *os_pretty_name;
67 char *os_cpe_name;
68 char *virtualization;
69 char *architecture;
70 } StatusInfo;
71
72 static void print_status_info(StatusInfo *i) {
73 sd_id128_t mid = {}, bid = {};
74 int r;
75
76 assert(i);
77
78 printf(" Static hostname: %s\n", strna(i->static_hostname));
79
80 if (!isempty(i->pretty_hostname) &&
81 !streq_ptr(i->pretty_hostname, i->static_hostname))
82 printf(" Pretty hostname: %s\n", i->pretty_hostname);
83
84 if (!isempty(i->hostname) &&
85 !streq_ptr(i->hostname, i->static_hostname))
86 printf("Transient hostname: %s\n", i->hostname);
87
88 if (!isempty(i->icon_name))
89 printf(" Icon name: %s\n",
90 strna(i->icon_name));
91
92 if (!isempty(i->chassis))
93 printf(" Chassis: %s\n",
94 strna(i->chassis));
95
96 if (!isempty(i->deployment))
97 printf(" Deployment: %s\n", i->deployment);
98
99 if (!isempty(i->location))
100 printf(" Location: %s\n", i->location);
101
102 r = sd_id128_get_machine(&mid);
103 if (r >= 0)
104 printf(" Machine ID: " SD_ID128_FORMAT_STR "\n", SD_ID128_FORMAT_VAL(mid));
105
106 r = sd_id128_get_boot(&bid);
107 if (r >= 0)
108 printf(" Boot ID: " SD_ID128_FORMAT_STR "\n", SD_ID128_FORMAT_VAL(bid));
109
110 if (!isempty(i->virtualization))
111 printf(" Virtualization: %s\n", i->virtualization);
112
113 if (!isempty(i->os_pretty_name))
114 printf(" Operating System: %s\n", i->os_pretty_name);
115
116 if (!isempty(i->os_cpe_name))
117 printf(" CPE OS Name: %s\n", i->os_cpe_name);
118
119 if (!isempty(i->kernel_name) && !isempty(i->kernel_release))
120 printf(" Kernel: %s %s\n", i->kernel_name, i->kernel_release);
121
122 if (!isempty(i->architecture))
123 printf(" Architecture: %s\n", i->architecture);
124
125 }
126
127 static int show_one_name(sd_bus *bus, const char* attr) {
128 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
129 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
130 const char *s;
131 int r;
132
133 r = sd_bus_get_property(
134 bus,
135 "org.freedesktop.hostname1",
136 "/org/freedesktop/hostname1",
137 "org.freedesktop.hostname1",
138 attr,
139 &error, &reply, "s");
140 if (r < 0) {
141 log_error("Could not get property: %s", bus_error_message(&error, -r));
142 return r;
143 }
144
145 r = sd_bus_message_read(reply, "s", &s);
146 if (r < 0)
147 return bus_log_parse_error(r);
148
149 printf("%s\n", s);
150
151 return 0;
152 }
153
154 static int show_all_names(sd_bus *bus) {
155 StatusInfo info = {};
156
157 static const struct bus_properties_map hostname_map[] = {
158 { "Hostname", "s", NULL, offsetof(StatusInfo, hostname) },
159 { "StaticHostname", "s", NULL, offsetof(StatusInfo, static_hostname) },
160 { "PrettyHostname", "s", NULL, offsetof(StatusInfo, pretty_hostname) },
161 { "IconName", "s", NULL, offsetof(StatusInfo, icon_name) },
162 { "Chassis", "s", NULL, offsetof(StatusInfo, chassis) },
163 { "Deployment", "s", NULL, offsetof(StatusInfo, deployment) },
164 { "Location", "s", NULL, offsetof(StatusInfo, location) },
165 { "KernelName", "s", NULL, offsetof(StatusInfo, kernel_name) },
166 { "KernelRelease", "s", NULL, offsetof(StatusInfo, kernel_release) },
167 { "OperatingSystemPrettyName", "s", NULL, offsetof(StatusInfo, os_pretty_name) },
168 { "OperatingSystemCPEName", "s", NULL, offsetof(StatusInfo, os_cpe_name) },
169 {}
170 };
171
172 static const struct bus_properties_map manager_map[] = {
173 { "Virtualization", "s", NULL, offsetof(StatusInfo, virtualization) },
174 { "Architecture", "s", NULL, offsetof(StatusInfo, architecture) },
175 {}
176 };
177
178 int r;
179
180 r = bus_map_all_properties(bus,
181 "org.freedesktop.hostname1",
182 "/org/freedesktop/hostname1",
183 hostname_map,
184 &info);
185 if (r < 0)
186 goto fail;
187
188 bus_map_all_properties(bus,
189 "org.freedesktop.systemd1",
190 "/org/freedesktop/systemd1",
191 manager_map,
192 &info);
193
194 print_status_info(&info);
195
196 fail:
197 free(info.hostname);
198 free(info.static_hostname);
199 free(info.pretty_hostname);
200 free(info.icon_name);
201 free(info.chassis);
202 free(info.deployment);
203 free(info.location);
204 free(info.kernel_name);
205 free(info.kernel_release);
206 free(info.os_pretty_name);
207 free(info.os_cpe_name);
208 free(info.virtualization);
209 free(info.architecture);
210
211 return r;
212 }
213
214 static int show_status(sd_bus *bus, char **args, unsigned n) {
215 assert(args);
216
217 if (arg_pretty || arg_static || arg_transient) {
218 const char *attr;
219
220 if (!!arg_static + !!arg_pretty + !!arg_transient > 1) {
221 log_error("Cannot query more than one name type at a time");
222 return -EINVAL;
223 }
224
225 attr = arg_pretty ? "PrettyHostname" :
226 arg_static ? "StaticHostname" : "Hostname";
227
228 return show_one_name(bus, attr);
229 } else
230 return show_all_names(bus);
231 }
232
233 static int set_simple_string(sd_bus *bus, const char *method, const char *value) {
234 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
235 int r = 0;
236
237 polkit_agent_open_if_enabled();
238
239 r = sd_bus_call_method(
240 bus,
241 "org.freedesktop.hostname1",
242 "/org/freedesktop/hostname1",
243 "org.freedesktop.hostname1",
244 method,
245 &error, NULL,
246 "sb", value, arg_ask_password);
247 if (r < 0)
248 log_error("Could not set property: %s", bus_error_message(&error, -r));
249 return r;
250 }
251
252 static int set_hostname(sd_bus *bus, char **args, unsigned n) {
253 _cleanup_free_ char *h = NULL;
254 char *hostname = args[1];
255 int r;
256
257 assert(args);
258 assert(n == 2);
259
260 if (!arg_pretty && !arg_static && !arg_transient)
261 arg_pretty = arg_static = arg_transient = true;
262
263 if (arg_pretty) {
264 const char *p;
265
266 /* If the passed hostname is already valid, then
267 * assume the user doesn't know anything about pretty
268 * hostnames, so let's unset the pretty hostname, and
269 * just set the passed hostname as static/dynamic
270 * hostname. */
271
272 if (arg_static && hostname_is_valid(hostname, true)) {
273 p = "";
274 /* maybe get rid of trailing dot */
275 hostname = hostname_cleanup(hostname);
276 } else {
277 p = h = strdup(hostname);
278 if (!p)
279 return log_oom();
280
281 hostname_cleanup(hostname);
282 }
283
284 r = set_simple_string(bus, "SetPrettyHostname", p);
285 if (r < 0)
286 return r;
287 }
288
289 if (arg_static) {
290 r = set_simple_string(bus, "SetStaticHostname", hostname);
291 if (r < 0)
292 return r;
293 }
294
295 if (arg_transient) {
296 r = set_simple_string(bus, "SetHostname", hostname);
297 if (r < 0)
298 return r;
299 }
300
301 return 0;
302 }
303
304 static int set_icon_name(sd_bus *bus, char **args, unsigned n) {
305 assert(args);
306 assert(n == 2);
307
308 return set_simple_string(bus, "SetIconName", args[1]);
309 }
310
311 static int set_chassis(sd_bus *bus, char **args, unsigned n) {
312 assert(args);
313 assert(n == 2);
314
315 return set_simple_string(bus, "SetChassis", args[1]);
316 }
317
318 static int set_deployment(sd_bus *bus, char **args, unsigned n) {
319 assert(args);
320 assert(n == 2);
321
322 return set_simple_string(bus, "SetDeployment", args[1]);
323 }
324
325 static int set_location(sd_bus *bus, char **args, unsigned n) {
326 assert(args);
327 assert(n == 2);
328
329 return set_simple_string(bus, "SetLocation", args[1]);
330 }
331
332 static void help(void) {
333 printf("%s [OPTIONS...] COMMAND ...\n\n"
334 "Query or change system hostname.\n\n"
335 " -h --help Show this help\n"
336 " --version Show package version\n"
337 " --no-ask-password Do not prompt for password\n"
338 " -H --host=[USER@]HOST Operate on remote host\n"
339 " -M --machine=CONTAINER Operate on local container\n"
340 " --transient Only set transient hostname\n"
341 " --static Only set static hostname\n"
342 " --pretty Only set pretty hostname\n\n"
343 "Commands:\n"
344 " status Show current hostname settings\n"
345 " set-hostname NAME Set system hostname\n"
346 " set-icon-name NAME Set icon name for host\n"
347 " set-chassis NAME Set chassis type for host\n"
348 " set-deployment NAME Set deployment environment for host\n"
349 " set-location NAME Set location for host\n"
350 , program_invocation_short_name);
351 }
352
353 static int parse_argv(int argc, char *argv[]) {
354
355 enum {
356 ARG_VERSION = 0x100,
357 ARG_NO_ASK_PASSWORD,
358 ARG_TRANSIENT,
359 ARG_STATIC,
360 ARG_PRETTY
361 };
362
363 static const struct option options[] = {
364 { "help", no_argument, NULL, 'h' },
365 { "version", no_argument, NULL, ARG_VERSION },
366 { "transient", no_argument, NULL, ARG_TRANSIENT },
367 { "static", no_argument, NULL, ARG_STATIC },
368 { "pretty", no_argument, NULL, ARG_PRETTY },
369 { "host", required_argument, NULL, 'H' },
370 { "machine", required_argument, NULL, 'M' },
371 { "no-ask-password", no_argument, NULL, ARG_NO_ASK_PASSWORD },
372 {}
373 };
374
375 int c;
376
377 assert(argc >= 0);
378 assert(argv);
379
380 while ((c = getopt_long(argc, argv, "hH:M:", options, NULL)) >= 0)
381
382 switch (c) {
383
384 case 'h':
385 help();
386 return 0;
387
388 case ARG_VERSION:
389 return version();
390
391 case 'H':
392 arg_transport = BUS_TRANSPORT_REMOTE;
393 arg_host = optarg;
394 break;
395
396 case 'M':
397 arg_transport = BUS_TRANSPORT_MACHINE;
398 arg_host = optarg;
399 break;
400
401 case ARG_TRANSIENT:
402 arg_transient = true;
403 break;
404
405 case ARG_PRETTY:
406 arg_pretty = true;
407 break;
408
409 case ARG_STATIC:
410 arg_static = true;
411 break;
412
413 case ARG_NO_ASK_PASSWORD:
414 arg_ask_password = false;
415 break;
416
417 case '?':
418 return -EINVAL;
419
420 default:
421 assert_not_reached("Unhandled option");
422 }
423
424 return 1;
425 }
426
427 static int hostnamectl_main(sd_bus *bus, int argc, char *argv[]) {
428
429 static const struct {
430 const char* verb;
431 const enum {
432 MORE,
433 LESS,
434 EQUAL
435 } argc_cmp;
436 const int argc;
437 int (* const dispatch)(sd_bus *bus, char **args, unsigned n);
438 } verbs[] = {
439 { "status", LESS, 1, show_status },
440 { "set-hostname", EQUAL, 2, set_hostname },
441 { "set-icon-name", EQUAL, 2, set_icon_name },
442 { "set-chassis", EQUAL, 2, set_chassis },
443 { "set-deployment", EQUAL, 2, set_deployment },
444 { "set-location", EQUAL, 2, set_location },
445 };
446
447 int left;
448 unsigned i;
449
450 assert(argc >= 0);
451 assert(argv);
452
453 left = argc - optind;
454
455 if (left <= 0)
456 /* Special rule: no arguments means "status" */
457 i = 0;
458 else {
459 if (streq(argv[optind], "help")) {
460 help();
461 return 0;
462 }
463
464 for (i = 0; i < ELEMENTSOF(verbs); i++)
465 if (streq(argv[optind], verbs[i].verb))
466 break;
467
468 if (i >= ELEMENTSOF(verbs)) {
469 log_error("Unknown operation %s", argv[optind]);
470 return -EINVAL;
471 }
472 }
473
474 switch (verbs[i].argc_cmp) {
475
476 case EQUAL:
477 if (left != verbs[i].argc) {
478 log_error("Invalid number of arguments.");
479 return -EINVAL;
480 }
481
482 break;
483
484 case MORE:
485 if (left < verbs[i].argc) {
486 log_error("Too few arguments.");
487 return -EINVAL;
488 }
489
490 break;
491
492 case LESS:
493 if (left > verbs[i].argc) {
494 log_error("Too many arguments.");
495 return -EINVAL;
496 }
497
498 break;
499
500 default:
501 assert_not_reached("Unknown comparison operator.");
502 }
503
504 return verbs[i].dispatch(bus, argv + optind, left);
505 }
506
507 int main(int argc, char *argv[]) {
508 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
509 int r;
510
511 setlocale(LC_ALL, "");
512 log_parse_environment();
513 log_open();
514
515 r = parse_argv(argc, argv);
516 if (r <= 0)
517 goto finish;
518
519 r = bus_connect_transport(arg_transport, arg_host, false, &bus);
520 if (r < 0) {
521 log_error_errno(r, "Failed to create bus connection: %m");
522 goto finish;
523 }
524
525 r = hostnamectl_main(bus, argc, argv);
526
527 finish:
528 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
529 }