]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/hostname/hostnamectl.c
tree-wide: remove Emacs lines from all files
[thirdparty/systemd.git] / src / hostname / hostnamectl.c
CommitLineData
dbc4fbae
LP
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
dbc4fbae 20#include <getopt.h>
a9cdc94f 21#include <locale.h>
3f6fd1ba
LP
22#include <stdbool.h>
23#include <stdlib.h>
dbc4fbae 24#include <string.h>
dbc4fbae 25
b028f3e4 26#include "sd-bus.h"
958b66ea 27#include "sd-id128.h"
3f6fd1ba 28
b5efdb8a 29#include "alloc-util.h"
3f6fd1ba 30#include "architecture.h"
b028f3e4 31#include "bus-error.h"
3f6fd1ba
LP
32#include "bus-util.h"
33#include "hostname-util.h"
dbc4fbae 34#include "spawn-polkit-agent.h"
3f6fd1ba 35#include "util.h"
dbc4fbae 36
dbc4fbae 37static bool arg_ask_password = true;
b028f3e4 38static BusTransport arg_transport = BUS_TRANSPORT_LOCAL;
7085053a 39static char *arg_host = NULL;
960787ae
ZJS
40static bool arg_transient = false;
41static bool arg_pretty = false;
42static bool arg_static = false;
dbc4fbae 43
46e65dcc
LP
44static 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
dbc4fbae 56typedef struct StatusInfo {
b028f3e4
SP
57 char *hostname;
58 char *static_hostname;
59 char *pretty_hostname;
60 char *icon_name;
61 char *chassis;
799298d6 62 char *deployment;
41414fed 63 char *location;
fa4f8f9b
DH
64 char *kernel_name;
65 char *kernel_release;
3448456b
DH
66 char *os_pretty_name;
67 char *os_cpe_name;
e9a2e453
LP
68 char *virtualization;
69 char *architecture;
dbc4fbae
LP
70} StatusInfo;
71
72static void print_status_info(StatusInfo *i) {
39883f62 73 sd_id128_t mid = {}, bid = {};
dbc4fbae 74 int r;
dbc4fbae
LP
75
76 assert(i);
77
e9a2e453 78 printf(" Static hostname: %s\n", strna(i->static_hostname));
dbc4fbae 79
c0b21b96
LP
80 if (!isempty(i->pretty_hostname) &&
81 !streq_ptr(i->pretty_hostname, i->static_hostname))
e9a2e453 82 printf(" Pretty hostname: %s\n", i->pretty_hostname);
c0b21b96
LP
83
84 if (!isempty(i->hostname) &&
85 !streq_ptr(i->hostname, i->static_hostname))
e9a2e453 86 printf("Transient hostname: %s\n", i->hostname);
dbc4fbae 87
41414fed
LP
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);
dbc4fbae
LP
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
e9a2e453
LP
110 if (!isempty(i->virtualization))
111 printf(" Virtualization: %s\n", i->virtualization);
fe29f9d2 112
3448456b
DH
113 if (!isempty(i->os_pretty_name))
114 printf(" Operating System: %s\n", i->os_pretty_name);
fe29f9d2 115
3448456b
DH
116 if (!isempty(i->os_cpe_name))
117 printf(" CPE OS Name: %s\n", i->os_cpe_name);
fe29f9d2 118
fa4f8f9b
DH
119 if (!isempty(i->kernel_name) && !isempty(i->kernel_release))
120 printf(" Kernel: %s %s\n", i->kernel_name, i->kernel_release);
e9a2e453
LP
121
122 if (!isempty(i->architecture))
123 printf(" Architecture: %s\n", i->architecture);
fe29f9d2 124
dbc4fbae
LP
125}
126
b028f3e4 127static int show_one_name(sd_bus *bus, const char* attr) {
4afd3348
LP
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;
b028f3e4 130 const char *s;
960787ae
ZJS
131 int r;
132
b028f3e4 133 r = sd_bus_get_property(
960787ae
ZJS
134 bus,
135 "org.freedesktop.hostname1",
136 "/org/freedesktop/hostname1",
b028f3e4
SP
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));
960787ae 142 return r;
960787ae
ZJS
143 }
144
b028f3e4
SP
145 r = sd_bus_message_read(reply, "s", &s);
146 if (r < 0)
5b30bef8 147 return bus_log_parse_error(r);
960787ae 148
960787ae
ZJS
149 printf("%s\n", s);
150
151 return 0;
152}
153
b028f3e4 154static int show_all_names(sd_bus *bus) {
b92bea5d 155 StatusInfo info = {};
e9a2e453
LP
156
157 static const struct bus_properties_map hostname_map[] = {
41414fed
LP
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) },
b028f3e4
SP
169 {}
170 };
e9a2e453
LP
171
172 static const struct bus_properties_map manager_map[] = {
41414fed
LP
173 { "Virtualization", "s", NULL, offsetof(StatusInfo, virtualization) },
174 { "Architecture", "s", NULL, offsetof(StatusInfo, architecture) },
e9a2e453
LP
175 {}
176 };
177
b028f3e4 178 int r;
dbc4fbae 179
b028f3e4
SP
180 r = bus_map_all_properties(bus,
181 "org.freedesktop.hostname1",
182 "/org/freedesktop/hostname1",
e9a2e453 183 hostname_map,
9f6eb1cd 184 &info);
dbc4fbae 185 if (r < 0)
b028f3e4 186 goto fail;
dbc4fbae 187
e9a2e453
LP
188 bus_map_all_properties(bus,
189 "org.freedesktop.systemd1",
190 "/org/freedesktop/systemd1",
191 manager_map,
192 &info);
193
dbc4fbae 194 print_status_info(&info);
b028f3e4
SP
195
196fail:
197 free(info.hostname);
198 free(info.static_hostname);
199 free(info.pretty_hostname);
200 free(info.icon_name);
201 free(info.chassis);
799298d6 202 free(info.deployment);
41414fed 203 free(info.location);
fa4f8f9b
DH
204 free(info.kernel_name);
205 free(info.kernel_release);
3448456b
DH
206 free(info.os_pretty_name);
207 free(info.os_cpe_name);
e9a2e453
LP
208 free(info.virtualization);
209 free(info.architecture);
210
211 return r;
dbc4fbae
LP
212}
213
b028f3e4 214static int show_status(sd_bus *bus, char **args, unsigned n) {
960787ae
ZJS
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
b028f3e4 233static int set_simple_string(sd_bus *bus, const char *method, const char *value) {
4afd3348 234 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
b028f3e4
SP
235 int r = 0;
236
46e65dcc 237 polkit_agent_open_if_enabled();
b028f3e4
SP
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
252static int set_hostname(sd_bus *bus, char **args, unsigned n) {
dbc4fbae 253 _cleanup_free_ char *h = NULL;
17eb9a9d 254 char *hostname = args[1];
dbc4fbae
LP
255 int r;
256
257 assert(args);
258 assert(n == 2);
259
960787ae
ZJS
260 if (!arg_pretty && !arg_static && !arg_transient)
261 arg_pretty = arg_static = arg_transient = true;
262
263 if (arg_pretty) {
fda2c5d2
LP
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
17eb9a9d 272 if (arg_static && hostname_is_valid(hostname, true)) {
fda2c5d2 273 p = "";
17eb9a9d 274 /* maybe get rid of trailing dot */
ae691c1d 275 hostname = hostname_cleanup(hostname);
17eb9a9d
ZJS
276 } else {
277 p = h = strdup(hostname);
278 if (!p)
279 return log_oom();
280
ae691c1d 281 hostname_cleanup(hostname);
fda2c5d2
LP
282 }
283
b028f3e4 284 r = set_simple_string(bus, "SetPrettyHostname", p);
dbc4fbae
LP
285 if (r < 0)
286 return r;
dbc4fbae
LP
287 }
288
960787ae 289 if (arg_static) {
b028f3e4 290 r = set_simple_string(bus, "SetStaticHostname", hostname);
dbc4fbae
LP
291 if (r < 0)
292 return r;
293 }
294
960787ae 295 if (arg_transient) {
b028f3e4 296 r = set_simple_string(bus, "SetHostname", hostname);
dbc4fbae
LP
297 if (r < 0)
298 return r;
299 }
300
301 return 0;
302}
303
b028f3e4 304static int set_icon_name(sd_bus *bus, char **args, unsigned n) {
dbc4fbae
LP
305 assert(args);
306 assert(n == 2);
307
b028f3e4 308 return set_simple_string(bus, "SetIconName", args[1]);
dbc4fbae
LP
309}
310
b028f3e4 311static int set_chassis(sd_bus *bus, char **args, unsigned n) {
7871c8e9
LP
312 assert(args);
313 assert(n == 2);
314
f20c84c1 315 return set_simple_string(bus, "SetChassis", args[1]);
7871c8e9
LP
316}
317
799298d6
JG
318static 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
41414fed
LP
325static 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
601185b4 332static void help(void) {
7591abd4
LP
333 printf("%s [OPTIONS...] COMMAND ...\n\n"
334 "Query or change system hostname.\n\n"
dbc4fbae
LP
335 " -h --help Show this help\n"
336 " --version Show package version\n"
7591abd4 337 " --no-ask-password Do not prompt for password\n"
b028f3e4 338 " -H --host=[USER@]HOST Operate on remote host\n"
a86a47ce
LP
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"
dbc4fbae 343 "Commands:\n"
7591abd4
LP
344 " status Show current hostname settings\n"
345 " set-hostname NAME Set system hostname\n"
7871c8e9 346 " set-icon-name NAME Set icon name for host\n"
799298d6 347 " set-chassis NAME Set chassis type for host\n"
601185b4 348 " set-deployment NAME Set deployment environment for host\n"
41414fed 349 " set-location NAME Set location for host\n"
601185b4 350 , program_invocation_short_name);
dbc4fbae
LP
351}
352
353static int parse_argv(int argc, char *argv[]) {
354
355 enum {
356 ARG_VERSION = 0x100,
357 ARG_NO_ASK_PASSWORD,
960787ae
ZJS
358 ARG_TRANSIENT,
359 ARG_STATIC,
360 ARG_PRETTY
dbc4fbae
LP
361 };
362
363 static const struct option options[] = {
364 { "help", no_argument, NULL, 'h' },
365 { "version", no_argument, NULL, ARG_VERSION },
eb9da376
LP
366 { "transient", no_argument, NULL, ARG_TRANSIENT },
367 { "static", no_argument, NULL, ARG_STATIC },
368 { "pretty", no_argument, NULL, ARG_PRETTY },
dbc4fbae 369 { "host", required_argument, NULL, 'H' },
b028f3e4 370 { "machine", required_argument, NULL, 'M' },
dbc4fbae 371 { "no-ask-password", no_argument, NULL, ARG_NO_ASK_PASSWORD },
eb9da376 372 {}
dbc4fbae
LP
373 };
374
375 int c;
376
377 assert(argc >= 0);
378 assert(argv);
379
601185b4 380 while ((c = getopt_long(argc, argv, "hH:M:", options, NULL)) >= 0)
dbc4fbae
LP
381
382 switch (c) {
383
384 case 'h':
601185b4
ZJS
385 help();
386 return 0;
dbc4fbae
LP
387
388 case ARG_VERSION:
3f6fd1ba 389 return version();
dbc4fbae 390
b028f3e4
SP
391 case 'H':
392 arg_transport = BUS_TRANSPORT_REMOTE;
393 arg_host = optarg;
dbc4fbae
LP
394 break;
395
b028f3e4 396 case 'M':
de33fc62 397 arg_transport = BUS_TRANSPORT_MACHINE;
b028f3e4 398 arg_host = optarg;
dbc4fbae
LP
399 break;
400
960787ae
ZJS
401 case ARG_TRANSIENT:
402 arg_transient = true;
dbc4fbae
LP
403 break;
404
960787ae
ZJS
405 case ARG_PRETTY:
406 arg_pretty = true;
dbc4fbae
LP
407 break;
408
960787ae
ZJS
409 case ARG_STATIC:
410 arg_static = true;
dbc4fbae
LP
411 break;
412
59f432ea
LP
413 case ARG_NO_ASK_PASSWORD:
414 arg_ask_password = false;
415 break;
416
dbc4fbae
LP
417 case '?':
418 return -EINVAL;
419
420 default:
eb9da376 421 assert_not_reached("Unhandled option");
dbc4fbae 422 }
dbc4fbae 423
dbc4fbae
LP
424 return 1;
425}
426
b028f3e4 427static int hostnamectl_main(sd_bus *bus, int argc, char *argv[]) {
dbc4fbae
LP
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;
b028f3e4 437 int (* const dispatch)(sd_bus *bus, char **args, unsigned n);
dbc4fbae 438 } verbs[] = {
41414fed
LP
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 },
dbc4fbae
LP
445 };
446
447 int left;
448 unsigned i;
449
450 assert(argc >= 0);
451 assert(argv);
dbc4fbae
LP
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
dbc4fbae
LP
504 return verbs[i].dispatch(bus, argv + optind, left);
505}
506
507int main(int argc, char *argv[]) {
4afd3348 508 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
84f6181c 509 int r;
dbc4fbae 510
a9cdc94f 511 setlocale(LC_ALL, "");
dbc4fbae
LP
512 log_parse_environment();
513 log_open();
514
515 r = parse_argv(argc, argv);
b028f3e4 516 if (r <= 0)
dbc4fbae 517 goto finish;
b028f3e4 518
266f3e26 519 r = bus_connect_transport(arg_transport, arg_host, false, &bus);
b028f3e4 520 if (r < 0) {
da927ba9 521 log_error_errno(r, "Failed to create bus connection: %m");
dbc4fbae
LP
522 goto finish;
523 }
524
b028f3e4 525 r = hostnamectl_main(bus, argc, argv);
dbc4fbae
LP
526
527finish:
5567fafb 528 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
dbc4fbae 529}