]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/machine/machined-dbus.c
Merge pull request #6941 from andir/use-in_set
[thirdparty/systemd.git] / src / machine / machined-dbus.c
CommitLineData
1ee306e1
LP
1/***
2 This file is part of systemd.
3
4 Copyright 2011 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 <errno.h>
21#include <string.h>
22#include <unistd.h>
1ee306e1 23
c3350683 24#include "sd-id128.h"
3ffd4af2 25
b5efdb8a 26#include "alloc-util.h"
3ffd4af2 27#include "btrfs-util.h"
96aad8d1 28#include "bus-common-errors.h"
3ffd4af2 29#include "bus-util.h"
23c80348 30#include "cgroup-util.h"
3ffd4af2 31#include "fd-util.h"
03c2b288 32#include "fileio.h"
f97b34a6 33#include "format-util.h"
25300b5a 34#include "hostname-util.h"
3ffd4af2 35#include "image-dbus.h"
a90fb858 36#include "io-util.h"
3ffd4af2 37#include "machine-dbus.h"
003dffde 38#include "machine-image.h"
4cee5eed 39#include "machine-pool.h"
c3350683 40#include "machined.h"
3ffd4af2
LP
41#include "path-util.h"
42#include "process-util.h"
15a5e950 43#include "stdio-util.h"
3ffd4af2
LP
44#include "strv.h"
45#include "unit-name.h"
b1d4f8e1 46#include "user-util.h"
1ee306e1 47
160e3793
LP
48static int property_get_pool_path(
49 sd_bus *bus,
50 const char *path,
51 const char *interface,
52 const char *property,
53 sd_bus_message *reply,
54 void *userdata,
55 sd_bus_error *error) {
56
57 assert(bus);
58 assert(reply);
59
60 return sd_bus_message_append(reply, "s", "/var/lib/machines");
61}
62
63static int property_get_pool_usage(
64 sd_bus *bus,
65 const char *path,
66 const char *interface,
67 const char *property,
68 sd_bus_message *reply,
69 void *userdata,
70 sd_bus_error *error) {
71
72 _cleanup_close_ int fd = -1;
73 uint64_t usage = (uint64_t) -1;
74 struct stat st;
75
76 assert(bus);
77 assert(reply);
78
79 /* We try to read the quota info from /var/lib/machines, as
80 * well as the usage of the loopback file
81 * /var/lib/machines.raw, and pick the larger value. */
82
83 fd = open("/var/lib/machines", O_RDONLY|O_CLOEXEC|O_DIRECTORY);
84 if (fd >= 0) {
85 BtrfsQuotaInfo q;
86
5bcd08db 87 if (btrfs_subvol_get_subtree_quota_fd(fd, 0, &q) >= 0)
cb81cd80 88 usage = q.referenced;
160e3793
LP
89 }
90
91 if (stat("/var/lib/machines.raw", &st) >= 0) {
92 if (usage == (uint64_t) -1 || st.st_blocks * 512ULL > usage)
93 usage = st.st_blocks * 512ULL;
94 }
95
96 return sd_bus_message_append(reply, "t", usage);
97}
98
99static int property_get_pool_limit(
100 sd_bus *bus,
101 const char *path,
102 const char *interface,
103 const char *property,
104 sd_bus_message *reply,
105 void *userdata,
106 sd_bus_error *error) {
107
108 _cleanup_close_ int fd = -1;
109 uint64_t size = (uint64_t) -1;
110 struct stat st;
111
112 assert(bus);
113 assert(reply);
114
115 /* We try to read the quota limit from /var/lib/machines, as
116 * well as the size of the loopback file
117 * /var/lib/machines.raw, and pick the smaller value. */
118
119 fd = open("/var/lib/machines", O_RDONLY|O_CLOEXEC|O_DIRECTORY);
120 if (fd >= 0) {
121 BtrfsQuotaInfo q;
122
5bcd08db 123 if (btrfs_subvol_get_subtree_quota_fd(fd, 0, &q) >= 0)
cb81cd80 124 size = q.referenced_max;
160e3793
LP
125 }
126
127 if (stat("/var/lib/machines.raw", &st) >= 0) {
128 if (size == (uint64_t) -1 || (uint64_t) st.st_size < size)
129 size = st.st_size;
130 }
131
132 return sd_bus_message_append(reply, "t", size);
133}
134
19070062 135static int method_get_machine(sd_bus_message *message, void *userdata, sd_bus_error *error) {
c3350683
LP
136 _cleanup_free_ char *p = NULL;
137 Manager *m = userdata;
138 Machine *machine;
139 const char *name;
140 int r;
141
c3350683
LP
142 assert(message);
143 assert(m);
144
145 r = sd_bus_message_read(message, "s", &name);
146 if (r < 0)
ebcf1f97 147 return r;
c3350683
LP
148
149 machine = hashmap_get(m->machines, name);
150 if (!machine)
ebcf1f97 151 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_MACHINE, "No machine '%s' known", name);
c3350683
LP
152
153 p = machine_bus_path(machine);
154 if (!p)
ebcf1f97 155 return -ENOMEM;
c3350683 156
df2d202e 157 return sd_bus_reply_method_return(message, "o", p);
c3350683
LP
158}
159
19070062 160static int method_get_image(sd_bus_message *message, void *userdata, sd_bus_error *error) {
c2ce6a3d
LP
161 _cleanup_free_ char *p = NULL;
162 Manager *m = userdata;
163 const char *name;
164 int r;
165
c2ce6a3d
LP
166 assert(message);
167 assert(m);
168
169 r = sd_bus_message_read(message, "s", &name);
170 if (r < 0)
171 return r;
172
173 r = image_find(name, NULL);
174 if (r == 0)
175 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_IMAGE, "No image '%s' known", name);
176 if (r < 0)
177 return r;
178
179 p = image_bus_path(name);
180 if (!p)
181 return -ENOMEM;
182
183 return sd_bus_reply_method_return(message, "o", p);
184}
185
19070062 186static int method_get_machine_by_pid(sd_bus_message *message, void *userdata, sd_bus_error *error) {
c3350683
LP
187 _cleanup_free_ char *p = NULL;
188 Manager *m = userdata;
189 Machine *machine = NULL;
4e724d9c 190 pid_t pid;
c3350683
LP
191 int r;
192
c3350683
LP
193 assert(message);
194 assert(m);
195
4e724d9c
LP
196 assert_cc(sizeof(pid_t) == sizeof(uint32_t));
197
c3350683
LP
198 r = sd_bus_message_read(message, "u", &pid);
199 if (r < 0)
ebcf1f97 200 return r;
c3350683 201
ee043777 202 if (!pid_is_valid((pid_t) pid))
06820eaf
LP
203 return -EINVAL;
204
4e724d9c 205 if (pid == 0) {
4afd3348 206 _cleanup_(sd_bus_creds_unrefp) sd_bus_creds *creds = NULL;
5b12334d
LP
207
208 r = sd_bus_query_sender_creds(message, SD_BUS_CREDS_PID, &creds);
209 if (r < 0)
210 return r;
211
212 r = sd_bus_creds_get_pid(creds, &pid);
4e724d9c 213 if (r < 0)
ebcf1f97 214 return r;
4e724d9c
LP
215 }
216
c3350683
LP
217 r = manager_get_machine_by_pid(m, pid, &machine);
218 if (r < 0)
ebcf1f97 219 return r;
c3350683 220 if (!machine)
de0671ee 221 return sd_bus_error_setf(error, BUS_ERROR_NO_MACHINE_FOR_PID, "PID "PID_FMT" does not belong to any known machine", pid);
c3350683
LP
222
223 p = machine_bus_path(machine);
224 if (!p)
ebcf1f97 225 return -ENOMEM;
c3350683 226
df2d202e 227 return sd_bus_reply_method_return(message, "o", p);
c3350683
LP
228}
229
19070062 230static int method_list_machines(sd_bus_message *message, void *userdata, sd_bus_error *error) {
4afd3348 231 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
c3350683
LP
232 Manager *m = userdata;
233 Machine *machine;
234 Iterator i;
235 int r;
236
c3350683
LP
237 assert(message);
238 assert(m);
239
df2d202e 240 r = sd_bus_message_new_method_return(message, &reply);
c3350683 241 if (r < 0)
ebcf1f97 242 return sd_bus_error_set_errno(error, r);
c3350683
LP
243
244 r = sd_bus_message_open_container(reply, 'a', "(ssso)");
245 if (r < 0)
ebcf1f97 246 return sd_bus_error_set_errno(error, r);
c3350683
LP
247
248 HASHMAP_FOREACH(machine, m->machines, i) {
249 _cleanup_free_ char *p = NULL;
250
251 p = machine_bus_path(machine);
252 if (!p)
ebcf1f97 253 return -ENOMEM;
c3350683
LP
254
255 r = sd_bus_message_append(reply, "(ssso)",
256 machine->name,
257 strempty(machine_class_to_string(machine->class)),
258 machine->service,
259 p);
260 if (r < 0)
ebcf1f97 261 return sd_bus_error_set_errno(error, r);
c3350683 262 }
1ee306e1 263
c3350683
LP
264 r = sd_bus_message_close_container(reply);
265 if (r < 0)
ebcf1f97 266 return sd_bus_error_set_errno(error, r);
c3350683 267
9030ca46 268 return sd_bus_send(NULL, reply, NULL);
c3350683
LP
269}
270
9b5ed6fe 271static int method_create_or_register_machine(Manager *manager, sd_bus_message *message, bool read_network, Machine **_m, sd_bus_error *error) {
8aec412f 272 const char *name, *service, *class, *root_directory;
9b5ed6fe 273 const int32_t *netif = NULL;
1ee306e1
LP
274 MachineClass c;
275 uint32_t leader;
276 sd_id128_t id;
c3350683 277 const void *v;
1ee306e1 278 Machine *m;
9b5ed6fe 279 size_t n, n_netif = 0;
c3350683 280 int r;
1ee306e1 281
c3350683 282 assert(manager);
89f7c846
LP
283 assert(message);
284 assert(_m);
1ee306e1 285
c3350683
LP
286 r = sd_bus_message_read(message, "s", &name);
287 if (r < 0)
ebcf1f97 288 return r;
7f0d207d 289 if (!machine_name_is_valid(name))
ebcf1f97 290 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid machine name");
1ee306e1 291
c3350683
LP
292 r = sd_bus_message_read_array(message, 'y', &v, &n);
293 if (r < 0)
ebcf1f97 294 return r;
1ee306e1
LP
295 if (n == 0)
296 id = SD_ID128_NULL;
297 else if (n == 16)
298 memcpy(&id, v, n);
299 else
ebcf1f97 300 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid machine ID parameter");
1ee306e1 301
c3350683
LP
302 r = sd_bus_message_read(message, "ssus", &service, &class, &leader, &root_directory);
303 if (r < 0)
ebcf1f97 304 return r;
1ee306e1 305
9b5ed6fe
LP
306 if (read_network) {
307 size_t i;
308
309 r = sd_bus_message_read_array(message, 'i', (const void**) &netif, &n_netif);
310 if (r < 0)
311 return r;
312
313 n_netif /= sizeof(int32_t);
314
315 for (i = 0; i < n_netif; i++) {
316 if (netif[i] <= 0)
317 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid network interface index %i", netif[i]);
318 }
319 }
320
1ee306e1
LP
321 if (isempty(class))
322 c = _MACHINE_CLASS_INVALID;
323 else {
324 c = machine_class_from_string(class);
325 if (c < 0)
ebcf1f97 326 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid machine class parameter");
1ee306e1
LP
327 }
328
c3350683 329 if (leader == 1)
ebcf1f97 330 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid leader PID");
1ee306e1 331
c3350683 332 if (!isempty(root_directory) && !path_is_absolute(root_directory))
ebcf1f97 333 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Root directory must be empty or an absolute path");
1ee306e1 334
c3350683 335 if (leader == 0) {
4afd3348 336 _cleanup_(sd_bus_creds_unrefp) sd_bus_creds *creds = NULL;
5b12334d
LP
337
338 r = sd_bus_query_sender_creds(message, SD_BUS_CREDS_PID, &creds);
339 if (r < 0)
340 return r;
341
c3350683 342 assert_cc(sizeof(uint32_t) == sizeof(pid_t));
554604b3 343
5b12334d 344 r = sd_bus_creds_get_pid(creds, (pid_t*) &leader);
c3350683 345 if (r < 0)
ebcf1f97 346 return r;
c3350683 347 }
554604b3 348
1ee306e1 349 if (hashmap_get(manager->machines, name))
ebcf1f97 350 return sd_bus_error_setf(error, BUS_ERROR_MACHINE_EXISTS, "Machine '%s' already exists", name);
1ee306e1
LP
351
352 r = manager_add_machine(manager, name, &m);
353 if (r < 0)
ebcf1f97 354 return r;
1ee306e1
LP
355
356 m->leader = leader;
357 m->class = c;
358 m->id = id;
359
360 if (!isempty(service)) {
361 m->service = strdup(service);
362 if (!m->service) {
ebcf1f97 363 r = -ENOMEM;
1ee306e1
LP
364 goto fail;
365 }
366 }
367
368 if (!isempty(root_directory)) {
369 m->root_directory = strdup(root_directory);
370 if (!m->root_directory) {
ebcf1f97 371 r = -ENOMEM;
1ee306e1
LP
372 goto fail;
373 }
374 }
375
9b5ed6fe
LP
376 if (n_netif > 0) {
377 assert_cc(sizeof(int32_t) == sizeof(int));
378 m->netif = memdup(netif, sizeof(int32_t) * n_netif);
379 if (!m->netif) {
380 r = -ENOMEM;
381 goto fail;
382 }
383
384 m->n_netif = n_netif;
385 }
386
89f7c846
LP
387 *_m = m;
388
389 return 1;
390
391fail:
392 machine_add_to_gc_queue(m);
393 return r;
394}
395
19070062 396static int method_create_machine_internal(sd_bus_message *message, bool read_network, void *userdata, sd_bus_error *error) {
89f7c846
LP
397 Manager *manager = userdata;
398 Machine *m = NULL;
399 int r;
400
19070062
LP
401 assert(message);
402 assert(manager);
403
9b5ed6fe 404 r = method_create_or_register_machine(manager, message, read_network, &m, error);
89f7c846
LP
405 if (r < 0)
406 return r;
407
408 r = sd_bus_message_enter_container(message, 'a', "(sv)");
409 if (r < 0)
410 goto fail;
411
ebcf1f97
LP
412 r = machine_start(m, message, error);
413 if (r < 0)
1ee306e1
LP
414 goto fail;
415
c3350683 416 m->create_message = sd_bus_message_ref(message);
c3350683 417 return 1;
1ee306e1
LP
418
419fail:
a3e7f417 420 machine_add_to_gc_queue(m);
89f7c846
LP
421 return r;
422}
1ee306e1 423
19070062
LP
424static int method_create_machine_with_network(sd_bus_message *message, void *userdata, sd_bus_error *error) {
425 return method_create_machine_internal(message, true, userdata, error);
9b5ed6fe
LP
426}
427
19070062
LP
428static int method_create_machine(sd_bus_message *message, void *userdata, sd_bus_error *error) {
429 return method_create_machine_internal(message, false, userdata, error);
9b5ed6fe
LP
430}
431
19070062 432static int method_register_machine_internal(sd_bus_message *message, bool read_network, void *userdata, sd_bus_error *error) {
89f7c846
LP
433 Manager *manager = userdata;
434 _cleanup_free_ char *p = NULL;
435 Machine *m = NULL;
436 int r;
437
19070062
LP
438 assert(message);
439 assert(manager);
440
9b5ed6fe 441 r = method_create_or_register_machine(manager, message, read_network, &m, error);
89f7c846
LP
442 if (r < 0)
443 return r;
444
445 r = cg_pid_get_unit(m->leader, &m->unit);
446 if (r < 0) {
048c386e
ZJS
447 r = sd_bus_error_set_errnof(error, r,
448 "Failed to determine unit of process "PID_FMT" : %m",
449 m->leader);
89f7c846
LP
450 goto fail;
451 }
452
453 r = machine_start(m, NULL, error);
454 if (r < 0)
455 goto fail;
456
457 p = machine_bus_path(m);
458 if (!p) {
459 r = -ENOMEM;
460 goto fail;
461 }
462
463 return sd_bus_reply_method_return(message, "o", p);
464
465fail:
466 machine_add_to_gc_queue(m);
1ee306e1
LP
467 return r;
468}
469
19070062
LP
470static int method_register_machine_with_network(sd_bus_message *message, void *userdata, sd_bus_error *error) {
471 return method_register_machine_internal(message, true, userdata, error);
9b5ed6fe
LP
472}
473
19070062
LP
474static int method_register_machine(sd_bus_message *message, void *userdata, sd_bus_error *error) {
475 return method_register_machine_internal(message, false, userdata, error);
9b5ed6fe
LP
476}
477
19070062 478static int method_terminate_machine(sd_bus_message *message, void *userdata, sd_bus_error *error) {
1ee306e1 479 Manager *m = userdata;
c3350683
LP
480 Machine *machine;
481 const char *name;
1ee306e1
LP
482 int r;
483
1ee306e1
LP
484 assert(message);
485 assert(m);
486
c3350683
LP
487 r = sd_bus_message_read(message, "s", &name);
488 if (r < 0)
ebcf1f97 489 return sd_bus_error_set_errno(error, r);
1ee306e1 490
c3350683
LP
491 machine = hashmap_get(m->machines, name);
492 if (!machine)
ebcf1f97 493 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_MACHINE, "No machine '%s' known", name);
1ee306e1 494
19070062 495 return bus_machine_method_terminate(message, machine, error);
c3350683 496}
1ee306e1 497
19070062 498static int method_kill_machine(sd_bus_message *message, void *userdata, sd_bus_error *error) {
c3350683
LP
499 Manager *m = userdata;
500 Machine *machine;
501 const char *name;
c3350683 502 int r;
1ee306e1 503
c3350683
LP
504 assert(message);
505 assert(m);
1ee306e1 506
878cd7e9 507 r = sd_bus_message_read(message, "s", &name);
c3350683 508 if (r < 0)
ebcf1f97 509 return sd_bus_error_set_errno(error, r);
1ee306e1 510
c3350683
LP
511 machine = hashmap_get(m->machines, name);
512 if (!machine)
ebcf1f97 513 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_MACHINE, "No machine '%s' known", name);
1ee306e1 514
19070062 515 return bus_machine_method_kill(message, machine, error);
878cd7e9
LP
516}
517
19070062 518static int method_get_machine_addresses(sd_bus_message *message, void *userdata, sd_bus_error *error) {
878cd7e9
LP
519 Manager *m = userdata;
520 Machine *machine;
521 const char *name;
522 int r;
523
878cd7e9
LP
524 assert(message);
525 assert(m);
526
527 r = sd_bus_message_read(message, "s", &name);
c3350683 528 if (r < 0)
ebcf1f97 529 return sd_bus_error_set_errno(error, r);
1ee306e1 530
878cd7e9
LP
531 machine = hashmap_get(m->machines, name);
532 if (!machine)
533 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_MACHINE, "No machine '%s' known", name);
534
19070062 535 return bus_machine_method_get_addresses(message, machine, error);
c3350683 536}
1ee306e1 537
19070062 538static int method_get_machine_os_release(sd_bus_message *message, void *userdata, sd_bus_error *error) {
717603e3
LP
539 Manager *m = userdata;
540 Machine *machine;
541 const char *name;
542 int r;
543
717603e3
LP
544 assert(message);
545 assert(m);
546
547 r = sd_bus_message_read(message, "s", &name);
548 if (r < 0)
549 return sd_bus_error_set_errno(error, r);
550
551 machine = hashmap_get(m->machines, name);
552 if (!machine)
553 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_MACHINE, "No machine '%s' known", name);
554
19070062 555 return bus_machine_method_get_os_release(message, machine, error);
717603e3
LP
556}
557
19070062 558static int method_list_images(sd_bus_message *message, void *userdata, sd_bus_error *error) {
4afd3348 559 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
cd61c3bf
LP
560 _cleanup_(image_hashmap_freep) Hashmap *images = NULL;
561 Manager *m = userdata;
562 Image *image;
563 Iterator i;
564 int r;
565
cd61c3bf
LP
566 assert(message);
567 assert(m);
568
569 images = hashmap_new(&string_hash_ops);
570 if (!images)
571 return -ENOMEM;
572
573 r = image_discover(images);
574 if (r < 0)
575 return r;
576
577 r = sd_bus_message_new_method_return(message, &reply);
578 if (r < 0)
579 return r;
580
b6b18498 581 r = sd_bus_message_open_container(reply, 'a', "(ssbttto)");
cd61c3bf
LP
582 if (r < 0)
583 return r;
584
585 HASHMAP_FOREACH(image, images, i) {
586 _cleanup_free_ char *p = NULL;
587
588 p = image_bus_path(image->name);
589 if (!p)
590 return -ENOMEM;
591
b6b18498 592 r = sd_bus_message_append(reply, "(ssbttto)",
cd61c3bf
LP
593 image->name,
594 image_type_to_string(image->type),
595 image->read_only,
10f9c755
LP
596 image->crtime,
597 image->mtime,
c19de711 598 image->usage,
cd61c3bf
LP
599 p);
600 if (r < 0)
601 return r;
602 }
603
604 r = sd_bus_message_close_container(reply);
605 if (r < 0)
606 return r;
607
9030ca46 608 return sd_bus_send(NULL, reply, NULL);
cd61c3bf
LP
609}
610
19070062 611static int method_open_machine_pty(sd_bus_message *message, void *userdata, sd_bus_error *error) {
40205d70
LP
612 Manager *m = userdata;
613 Machine *machine;
614 const char *name;
615 int r;
616
40205d70
LP
617 assert(message);
618 assert(m);
619
620 r = sd_bus_message_read(message, "s", &name);
621 if (r < 0)
622 return sd_bus_error_set_errno(error, r);
623
624 machine = hashmap_get(m->machines, name);
625 if (!machine)
626 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_MACHINE, "No machine '%s' known", name);
627
19070062 628 return bus_machine_method_open_pty(message, machine, error);
40205d70
LP
629}
630
19070062 631static int method_open_machine_login(sd_bus_message *message, void *userdata, sd_bus_error *error) {
5f8cc96a
LP
632 Manager *m = userdata;
633 Machine *machine;
634 const char *name;
635 int r;
636
5f8cc96a
LP
637 assert(message);
638 assert(m);
639
640 r = sd_bus_message_read(message, "s", &name);
641 if (r < 0)
08682124 642 return r;
5f8cc96a
LP
643
644 machine = hashmap_get(m->machines, name);
645 if (!machine)
646 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_MACHINE, "No machine '%s' known", name);
647
19070062 648 return bus_machine_method_open_login(message, machine, error);
5f8cc96a
LP
649}
650
49af9e13
LP
651static int method_open_machine_shell(sd_bus_message *message, void *userdata, sd_bus_error *error) {
652 Manager *m = userdata;
653 Machine *machine;
654 const char *name;
655
656 int r;
657
658 assert(message);
659 assert(m);
660
661 r = sd_bus_message_read(message, "s", &name);
662 if (r < 0)
663 return r;
664
665 machine = hashmap_get(m->machines, name);
666 if (!machine)
667 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_MACHINE, "No machine '%s' known", name);
668
669 return bus_machine_method_open_shell(message, machine, error);
670}
671
19070062 672static int method_bind_mount_machine(sd_bus_message *message, void *userdata, sd_bus_error *error) {
90adaa25
LP
673 Manager *m = userdata;
674 Machine *machine;
675 const char *name;
676 int r;
677
90adaa25
LP
678 assert(message);
679 assert(m);
680
681 r = sd_bus_message_read(message, "s", &name);
682 if (r < 0)
683 return r;
684
685 machine = hashmap_get(m->machines, name);
686 if (!machine)
687 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_MACHINE, "No machine '%s' known", name);
688
19070062 689 return bus_machine_method_bind_mount(message, machine, error);
90adaa25
LP
690}
691
19070062 692static int method_copy_machine(sd_bus_message *message, void *userdata, sd_bus_error *error) {
0370612e
LP
693 Manager *m = userdata;
694 Machine *machine;
695 const char *name;
696 int r;
697
0370612e
LP
698 assert(message);
699 assert(m);
700
701 r = sd_bus_message_read(message, "s", &name);
702 if (r < 0)
703 return r;
704
705 machine = hashmap_get(m->machines, name);
706 if (!machine)
707 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_MACHINE, "No machine '%s' known", name);
708
19070062 709 return bus_machine_method_copy(message, machine, error);
0370612e
LP
710}
711
ae203207
LP
712static int method_open_machine_root_directory(sd_bus_message *message, void *userdata, sd_bus_error *error) {
713 Manager *m = userdata;
714 Machine *machine;
715 const char *name;
716 int r;
717
718 assert(message);
719 assert(m);
720
721 r = sd_bus_message_read(message, "s", &name);
722 if (r < 0)
723 return r;
724
725 machine = hashmap_get(m->machines, name);
726 if (!machine)
727 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_MACHINE, "No machine '%s' known", name);
728
729 return bus_machine_method_open_root_directory(message, machine, error);
730}
731
3401419b
LP
732static int method_get_machine_uid_shift(sd_bus_message *message, void *userdata, sd_bus_error *error) {
733 Manager *m = userdata;
734 Machine *machine;
735 const char *name;
736 int r;
737
738 assert(message);
739 assert(m);
740
741 r = sd_bus_message_read(message, "s", &name);
742 if (r < 0)
743 return r;
744
745 machine = hashmap_get(m->machines, name);
746 if (!machine)
747 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_MACHINE, "No machine '%s' known", name);
748
749 return bus_machine_method_get_uid_shift(message, machine, error);
750}
751
19070062 752static int method_remove_image(sd_bus_message *message, void *userdata, sd_bus_error *error) {
08682124
LP
753 _cleanup_(image_unrefp) Image* i = NULL;
754 const char *name;
755 int r;
756
08682124
LP
757 assert(message);
758
759 r = sd_bus_message_read(message, "s", &name);
760 if (r < 0)
761 return r;
762
763 if (!image_name_is_valid(name))
764 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Image name '%s' is invalid.", name);
765
766 r = image_find(name, &i);
767 if (r < 0)
768 return r;
769 if (r == 0)
770 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_IMAGE, "No image '%s' known", name);
771
70244d1d 772 i->userdata = userdata;
19070062 773 return bus_image_method_remove(message, i, error);
08682124
LP
774}
775
19070062 776static int method_rename_image(sd_bus_message *message, void *userdata, sd_bus_error *error) {
ebd93cb6 777 _cleanup_(image_unrefp) Image* i = NULL;
1ddb263d 778 const char *old_name;
ebd93cb6
LP
779 int r;
780
ebd93cb6
LP
781 assert(message);
782
1ddb263d 783 r = sd_bus_message_read(message, "s", &old_name);
ebd93cb6
LP
784 if (r < 0)
785 return r;
786
787 if (!image_name_is_valid(old_name))
788 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Image name '%s' is invalid.", old_name);
ebd93cb6
LP
789
790 r = image_find(old_name, &i);
791 if (r < 0)
792 return r;
793 if (r == 0)
794 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_IMAGE, "No image '%s' known", old_name);
795
70244d1d 796 i->userdata = userdata;
19070062 797 return bus_image_method_rename(message, i, error);
ebd93cb6
LP
798}
799
19070062 800static int method_clone_image(sd_bus_message *message, void *userdata, sd_bus_error *error) {
ebd93cb6 801 _cleanup_(image_unrefp) Image *i = NULL;
1ddb263d
LP
802 const char *old_name;
803 int r;
ebd93cb6 804
19070062
LP
805 assert(message);
806
1ddb263d 807 r = sd_bus_message_read(message, "s", &old_name);
ebd93cb6
LP
808 if (r < 0)
809 return r;
810
811 if (!image_name_is_valid(old_name))
812 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Image name '%s' is invalid.", old_name);
ebd93cb6
LP
813
814 r = image_find(old_name, &i);
815 if (r < 0)
816 return r;
817 if (r == 0)
818 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_IMAGE, "No image '%s' known", old_name);
819
70244d1d 820 i->userdata = userdata;
19070062 821 return bus_image_method_clone(message, i, error);
ebd93cb6
LP
822}
823
19070062 824static int method_mark_image_read_only(sd_bus_message *message, void *userdata, sd_bus_error *error) {
ebd93cb6
LP
825 _cleanup_(image_unrefp) Image *i = NULL;
826 const char *name;
1ddb263d 827 int r;
ebd93cb6 828
19070062
LP
829 assert(message);
830
1ddb263d 831 r = sd_bus_message_read(message, "s", &name);
ebd93cb6
LP
832 if (r < 0)
833 return r;
834
835 if (!image_name_is_valid(name))
836 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Image name '%s' is invalid.", name);
837
838 r = image_find(name, &i);
839 if (r < 0)
840 return r;
841 if (r == 0)
842 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_IMAGE, "No image '%s' known", name);
843
70244d1d 844 i->userdata = userdata;
19070062 845 return bus_image_method_mark_read_only(message, i, error);
ebd93cb6
LP
846}
847
9153b02b
LP
848static int method_get_image_os_release(sd_bus_message *message, void *userdata, sd_bus_error *error) {
849 _cleanup_(image_unrefp) Image *i = NULL;
850 const char *name;
851 int r;
852
853 assert(message);
854
855 r = sd_bus_message_read(message, "s", &name);
856 if (r < 0)
857 return r;
858
859 if (!image_name_is_valid(name))
860 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Image name '%s' is invalid.", name);
861
862 r = image_find(name, &i);
863 if (r < 0)
864 return r;
865 if (r == 0)
866 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_IMAGE, "No image '%s' known", name);
867
868 i->userdata = userdata;
869 return bus_image_method_get_os_release(message, i, error);
870}
871
03c2b288
LP
872static int clean_pool_done(Operation *operation, int ret, sd_bus_error *error) {
873 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
874 _cleanup_fclose_ FILE *f = NULL;
875 bool success;
876 size_t n;
877 int r;
878
879 assert(operation);
880 assert(operation->extra_fd >= 0);
881
882 if (lseek(operation->extra_fd, 0, SEEK_SET) == (off_t) -1)
883 return -errno;
884
885 f = fdopen(operation->extra_fd, "re");
886 if (!f)
887 return -errno;
888
889 operation->extra_fd = -1;
890
891 /* The resulting temporary file starts with a boolean value that indicates success or not. */
892 errno = 0;
893 n = fread(&success, 1, sizeof(success), f);
894 if (n != sizeof(success))
895 return ret < 0 ? ret : (errno != 0 ? -errno : -EIO);
896
897 if (ret < 0) {
898 _cleanup_free_ char *name = NULL;
899
900 /* The clean-up operation failed. In this case the resulting temporary file should contain a boolean
901 * set to false followed by the name of the failed image. Let's try to read this and use it for the
902 * error message. If we can't read it, don't mind, and return the naked error. */
903
904 if (success) /* The resulting temporary file could not be updated, ignore it. */
905 return ret;
906
907 r = read_nul_string(f, &name);
908 if (r < 0 || isempty(name)) /* Same here... */
909 return ret;
910
911 return sd_bus_error_set_errnof(error, ret, "Failed to remove image %s: %m", name);
912 }
913
914 assert(success);
915
916 r = sd_bus_message_new_method_return(operation->message, &reply);
917 if (r < 0)
918 return r;
919
920 r = sd_bus_message_open_container(reply, 'a', "(st)");
921 if (r < 0)
922 return r;
923
924 /* On success the resulting temporary file will contain a list of image names that were removed followed by
925 * their size on disk. Let's read that and turn it into a bus message. */
926 for (;;) {
927 _cleanup_free_ char *name = NULL;
928 uint64_t size;
929
930 r = read_nul_string(f, &name);
931 if (r < 0)
932 return r;
933 if (isempty(name)) /* reached the end */
934 break;
935
936 errno = 0;
937 n = fread(&size, 1, sizeof(size), f);
938 if (n != sizeof(size))
939 return errno != 0 ? -errno : -EIO;
940
941 r = sd_bus_message_append(reply, "(st)", name, size);
942 if (r < 0)
943 return r;
944 }
945
946 r = sd_bus_message_close_container(reply);
947 if (r < 0)
948 return r;
949
950 return sd_bus_send(NULL, reply, NULL);
951}
952
d94c2b06
LP
953static int method_clean_pool(sd_bus_message *message, void *userdata, sd_bus_error *error) {
954 enum {
955 REMOVE_ALL,
956 REMOVE_HIDDEN,
957 } mode;
958
03c2b288
LP
959 _cleanup_close_pair_ int errno_pipe_fd[2] = { -1, -1 };
960 _cleanup_close_ int result_fd = -1;
d94c2b06 961 Manager *m = userdata;
03c2b288 962 Operation *operation;
d94c2b06 963 const char *mm;
03c2b288 964 pid_t child;
d94c2b06
LP
965 int r;
966
967 assert(message);
968
03c2b288
LP
969 if (m->n_operations >= OPERATIONS_MAX)
970 return sd_bus_error_setf(error, SD_BUS_ERROR_LIMITS_EXCEEDED, "Too many ongoing operations.");
971
d94c2b06
LP
972 r = sd_bus_message_read(message, "s", &mm);
973 if (r < 0)
974 return r;
975
976 if (streq(mm, "all"))
977 mode = REMOVE_ALL;
978 else if (streq(mm, "hidden"))
979 mode = REMOVE_HIDDEN;
980 else
981 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Unknown mode '%s'.", mm);
982
983 r = bus_verify_polkit_async(
984 message,
985 CAP_SYS_ADMIN,
986 "org.freedesktop.machine1.manage-machines",
987 NULL,
988 false,
989 UID_INVALID,
990 &m->polkit_registry,
991 error);
992 if (r < 0)
993 return r;
994 if (r == 0)
995 return 1; /* Will call us back */
996
03c2b288
LP
997 if (pipe2(errno_pipe_fd, O_CLOEXEC|O_NONBLOCK) < 0)
998 return sd_bus_error_set_errnof(error, errno, "Failed to create pipe: %m");
d94c2b06 999
03c2b288
LP
1000 /* Create a temporary file we can dump information about deleted images into. We use a temporary file for this
1001 * instead of a pipe or so, since this might grow quit large in theory and we don't want to process this
595bfe7d 1002 * continuously */
992e8f22 1003 result_fd = open_tmpfile_unlinkable(NULL, O_RDWR|O_CLOEXEC);
03c2b288
LP
1004 if (result_fd < 0)
1005 return -errno;
d94c2b06 1006
03c2b288
LP
1007 /* This might be a slow operation, run it asynchronously in a background process */
1008 child = fork();
1009 if (child < 0)
1010 return sd_bus_error_set_errnof(error, errno, "Failed to fork(): %m");
d94c2b06 1011
03c2b288
LP
1012 if (child == 0) {
1013 _cleanup_(image_hashmap_freep) Hashmap *images = NULL;
1014 bool success = true;
1015 Image *image;
1016 Iterator i;
1017 ssize_t l;
d94c2b06 1018
03c2b288 1019 errno_pipe_fd[0] = safe_close(errno_pipe_fd[0]);
d94c2b06 1020
03c2b288
LP
1021 images = hashmap_new(&string_hash_ops);
1022 if (!images) {
1023 r = -ENOMEM;
1024 goto child_fail;
1025 }
d94c2b06 1026
03c2b288
LP
1027 r = image_discover(images);
1028 if (r < 0)
1029 goto child_fail;
d94c2b06 1030
03c2b288
LP
1031 l = write(result_fd, &success, sizeof(success));
1032 if (l < 0) {
1033 r = -errno;
1034 goto child_fail;
1035 }
d94c2b06 1036
03c2b288
LP
1037 HASHMAP_FOREACH(image, images, i) {
1038
1039 /* We can't remove vendor images (i.e. those in /usr) */
1040 if (IMAGE_IS_VENDOR(image))
1041 continue;
1042
1043 if (IMAGE_IS_HOST(image))
1044 continue;
1045
1046 if (mode == REMOVE_HIDDEN && !IMAGE_IS_HIDDEN(image))
1047 continue;
1048
1049 r = image_remove(image);
1050 if (r == -EBUSY) /* keep images that are currently being used. */
1051 continue;
1052 if (r < 0) {
1053 /* If the operation failed, let's override everything we wrote, and instead write there at which image we failed. */
1054 success = false;
1055 (void) ftruncate(result_fd, 0);
1056 (void) lseek(result_fd, 0, SEEK_SET);
1057 (void) write(result_fd, &success, sizeof(success));
1058 (void) write(result_fd, image->name, strlen(image->name)+1);
1059 goto child_fail;
1060 }
1061
1062 l = write(result_fd, image->name, strlen(image->name)+1);
1063 if (l < 0) {
1064 r = -errno;
1065 goto child_fail;
1066 }
1067
1068 l = write(result_fd, &image->usage_exclusive, sizeof(image->usage_exclusive));
1069 if (l < 0) {
1070 r = -errno;
1071 goto child_fail;
1072 }
1073 }
d94c2b06 1074
03c2b288
LP
1075 result_fd = safe_close(result_fd);
1076 _exit(EXIT_SUCCESS);
1077
1078 child_fail:
1079 (void) write(errno_pipe_fd[1], &r, sizeof(r));
1080 _exit(EXIT_FAILURE);
d94c2b06
LP
1081 }
1082
03c2b288
LP
1083 errno_pipe_fd[1] = safe_close(errno_pipe_fd[1]);
1084
1085 /* The clean-up might take a while, hence install a watch on the child and return */
1086
1087 r = operation_new(m, NULL, child, message, errno_pipe_fd[0], &operation);
1088 if (r < 0) {
1089 (void) sigkill_wait(child);
d94c2b06 1090 return r;
03c2b288 1091 }
d94c2b06 1092
03c2b288
LP
1093 operation->extra_fd = result_fd;
1094 operation->done = clean_pool_done;
1095
1096 result_fd = -1;
1097 errno_pipe_fd[0] = -1;
1098
1099 return 1;
d94c2b06
LP
1100}
1101
19070062 1102static int method_set_pool_limit(sd_bus_message *message, void *userdata, sd_bus_error *error) {
d6ce17c7
LP
1103 Manager *m = userdata;
1104 uint64_t limit;
1105 int r;
1106
19070062
LP
1107 assert(message);
1108
d6ce17c7
LP
1109 r = sd_bus_message_read(message, "t", &limit);
1110 if (r < 0)
1111 return r;
a90fb858
LP
1112 if (!FILE_SIZE_VALID_OR_INFINITY(limit))
1113 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "New limit out of range");
d6ce17c7
LP
1114
1115 r = bus_verify_polkit_async(
1116 message,
1117 CAP_SYS_ADMIN,
1118 "org.freedesktop.machine1.manage-machines",
403ed0e5 1119 NULL,
d6ce17c7
LP
1120 false,
1121 UID_INVALID,
1122 &m->polkit_registry,
1123 error);
1124 if (r < 0)
1125 return r;
1126 if (r == 0)
1127 return 1; /* Will call us back */
1128
4cee5eed
LP
1129 /* Set up the machine directory if necessary */
1130 r = setup_machine_directory(limit, error);
1131 if (r < 0)
1132 return r;
1133
05e8f270
LP
1134 /* Resize the backing loopback device, if there is one, except if we asked to drop any limit */
1135 if (limit != (uint64_t) -1) {
1136 r = btrfs_resize_loopback("/var/lib/machines", limit, false);
1137 if (r == -ENOTTY)
1138 return sd_bus_error_setf(error, SD_BUS_ERROR_NOT_SUPPORTED, "Quota is only supported on btrfs.");
1139 if (r < 0 && r != -ENODEV) /* ignore ENODEV, as that's what is returned if the file system is not on loopback */
1140 return sd_bus_error_set_errnof(error, r, "Failed to adjust loopback limit: %m");
1141 }
efe02862 1142
5bcd08db
LP
1143 (void) btrfs_qgroup_set_limit("/var/lib/machines", 0, limit);
1144
1145 r = btrfs_subvol_set_subtree_quota_limit("/var/lib/machines", 0, limit);
d6ce17c7
LP
1146 if (r == -ENOTTY)
1147 return sd_bus_error_setf(error, SD_BUS_ERROR_NOT_SUPPORTED, "Quota is only supported on btrfs.");
26166c88 1148 if (r < 0)
d6ce17c7
LP
1149 return sd_bus_error_set_errnof(error, r, "Failed to adjust quota limit: %m");
1150
1151 return sd_bus_reply_method_return(message, NULL);
1152}
1153
19070062 1154static int method_set_image_limit(sd_bus_message *message, void *userdata, sd_bus_error *error) {
d6ce17c7
LP
1155 _cleanup_(image_unrefp) Image *i = NULL;
1156 const char *name;
1157 int r;
1158
19070062
LP
1159 assert(message);
1160
d6ce17c7
LP
1161 r = sd_bus_message_read(message, "s", &name);
1162 if (r < 0)
1163 return r;
1164
1165 if (!image_name_is_valid(name))
1166 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Image name '%s' is invalid.", name);
1167
1168 r = image_find(name, &i);
1169 if (r < 0)
1170 return r;
1171 if (r == 0)
1172 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_IMAGE, "No image '%s' known", name);
1173
1174 i->userdata = userdata;
19070062 1175 return bus_image_method_set_limit(message, i, error);
d6ce17c7
LP
1176}
1177
c01ff965
LP
1178static int method_map_from_machine_user(sd_bus_message *message, void *userdata, sd_bus_error *error) {
1179 _cleanup_fclose_ FILE *f = NULL;
1180 Manager *m = userdata;
1181 const char *name, *p;
1182 Machine *machine;
1183 uint32_t uid;
1184 int r;
1185
1186 r = sd_bus_message_read(message, "su", &name, &uid);
1187 if (r < 0)
1188 return r;
1189
c077529b 1190 if (!uid_is_valid(uid))
c01ff965
LP
1191 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid user ID " UID_FMT, uid);
1192
1193 machine = hashmap_get(m->machines, name);
1194 if (!machine)
1195 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_MACHINE, "No machine '%s' known", name);
1196
a79366e2
LP
1197 if (machine->class != MACHINE_CONTAINER)
1198 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Not supported for non-container machines.");
1199
c01ff965
LP
1200 p = procfs_file_alloca(machine->leader, "uid_map");
1201 f = fopen(p, "re");
1202 if (!f)
1203 return -errno;
1204
1205 for (;;) {
1206 uid_t uid_base, uid_shift, uid_range, converted;
1207 int k;
1208
1209 errno = 0;
1210 k = fscanf(f, UID_FMT " " UID_FMT " " UID_FMT, &uid_base, &uid_shift, &uid_range);
1211 if (k < 0 && feof(f))
1212 break;
1213 if (k != 3) {
b3267152 1214 if (ferror(f) && errno > 0)
c01ff965
LP
1215 return -errno;
1216
1217 return -EIO;
1218 }
1219
1220 if (uid < uid_base || uid >= uid_base + uid_range)
1221 continue;
1222
1223 converted = uid - uid_base + uid_shift;
c077529b 1224 if (!uid_is_valid(converted))
c01ff965
LP
1225 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid user ID " UID_FMT, uid);
1226
1227 return sd_bus_reply_method_return(message, "u", (uint32_t) converted);
1228 }
1229
1230 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_USER_MAPPING, "Machine '%s' has no matching user mappings.", name);
1231}
1232
1233static int method_map_to_machine_user(sd_bus_message *message, void *userdata, sd_bus_error *error) {
1234 Manager *m = userdata;
1235 Machine *machine;
1236 uid_t uid;
1237 Iterator i;
1238 int r;
1239
1240 r = sd_bus_message_read(message, "u", &uid);
1241 if (r < 0)
1242 return r;
c077529b 1243 if (!uid_is_valid(uid))
c01ff965
LP
1244 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid user ID " UID_FMT, uid);
1245 if (uid < 0x10000)
1246 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_USER_MAPPING, "User " UID_FMT " belongs to host UID range", uid);
1247
1248 HASHMAP_FOREACH(machine, m->machines, i) {
1249 _cleanup_fclose_ FILE *f = NULL;
1250 char p[strlen("/proc//uid_map") + DECIMAL_STR_MAX(pid_t) + 1];
1251
a79366e2
LP
1252 if (machine->class != MACHINE_CONTAINER)
1253 continue;
1254
c01ff965
LP
1255 xsprintf(p, "/proc/" UID_FMT "/uid_map", machine->leader);
1256 f = fopen(p, "re");
1257 if (!f) {
1258 log_warning_errno(errno, "Failed top open %s, ignoring,", p);
1259 continue;
1260 }
1261
1262 for (;;) {
1263 _cleanup_free_ char *o = NULL;
1264 uid_t uid_base, uid_shift, uid_range, converted;
1265 int k;
1266
1267 errno = 0;
1268 k = fscanf(f, UID_FMT " " UID_FMT " " UID_FMT, &uid_base, &uid_shift, &uid_range);
1269 if (k < 0 && feof(f))
1270 break;
1271 if (k != 3) {
b3267152 1272 if (ferror(f) && errno > 0)
c01ff965
LP
1273 return -errno;
1274
1275 return -EIO;
1276 }
1277
1278 if (uid < uid_shift || uid >= uid_shift + uid_range)
1279 continue;
1280
1281 converted = (uid - uid_shift + uid_base);
c077529b 1282 if (!uid_is_valid(converted))
c01ff965
LP
1283 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid user ID " UID_FMT, uid);
1284
1285 o = machine_bus_path(machine);
1286 if (!o)
1287 return -ENOMEM;
1288
1289 return sd_bus_reply_method_return(message, "sou", machine->name, o, (uint32_t) converted);
1290 }
1291 }
1292
1293 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_USER_MAPPING, "No matching user mapping for " UID_FMT ".", uid);
1294}
1295
1296static int method_map_from_machine_group(sd_bus_message *message, void *groupdata, sd_bus_error *error) {
1297 _cleanup_fclose_ FILE *f = NULL;
1298 Manager *m = groupdata;
1299 const char *name, *p;
1300 Machine *machine;
1301 uint32_t gid;
1302 int r;
1303
1304 r = sd_bus_message_read(message, "su", &name, &gid);
1305 if (r < 0)
1306 return r;
1307
c077529b 1308 if (!gid_is_valid(gid))
c01ff965
LP
1309 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid group ID " GID_FMT, gid);
1310
1311 machine = hashmap_get(m->machines, name);
1312 if (!machine)
1313 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_MACHINE, "No machine '%s' known", name);
1314
a79366e2
LP
1315 if (machine->class != MACHINE_CONTAINER)
1316 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Not supported for non-container machines.");
1317
c01ff965
LP
1318 p = procfs_file_alloca(machine->leader, "gid_map");
1319 f = fopen(p, "re");
1320 if (!f)
1321 return -errno;
1322
1323 for (;;) {
1324 gid_t gid_base, gid_shift, gid_range, converted;
1325 int k;
1326
1327 errno = 0;
1328 k = fscanf(f, GID_FMT " " GID_FMT " " GID_FMT, &gid_base, &gid_shift, &gid_range);
1329 if (k < 0 && feof(f))
1330 break;
1331 if (k != 3) {
b3267152 1332 if (ferror(f) && errno > 0)
c01ff965
LP
1333 return -errno;
1334
1335 return -EIO;
1336 }
1337
1338 if (gid < gid_base || gid >= gid_base + gid_range)
1339 continue;
1340
1341 converted = gid - gid_base + gid_shift;
c077529b 1342 if (!gid_is_valid(converted))
c01ff965
LP
1343 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid group ID " GID_FMT, gid);
1344
1345 return sd_bus_reply_method_return(message, "u", (uint32_t) converted);
1346 }
1347
1348 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_GROUP_MAPPING, "Machine '%s' has no matching group mappings.", name);
1349}
1350
1351static int method_map_to_machine_group(sd_bus_message *message, void *groupdata, sd_bus_error *error) {
1352 Manager *m = groupdata;
1353 Machine *machine;
1354 gid_t gid;
1355 Iterator i;
1356 int r;
1357
1358 r = sd_bus_message_read(message, "u", &gid);
1359 if (r < 0)
1360 return r;
c077529b 1361 if (!gid_is_valid(gid))
c01ff965
LP
1362 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid group ID " GID_FMT, gid);
1363 if (gid < 0x10000)
1364 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_GROUP_MAPPING, "Group " GID_FMT " belongs to host GID range", gid);
1365
1366 HASHMAP_FOREACH(machine, m->machines, i) {
1367 _cleanup_fclose_ FILE *f = NULL;
1368 char p[strlen("/proc//gid_map") + DECIMAL_STR_MAX(pid_t) + 1];
1369
a79366e2
LP
1370 if (machine->class != MACHINE_CONTAINER)
1371 continue;
1372
c01ff965
LP
1373 xsprintf(p, "/proc/" GID_FMT "/gid_map", machine->leader);
1374 f = fopen(p, "re");
1375 if (!f) {
1376 log_warning_errno(errno, "Failed top open %s, ignoring,", p);
1377 continue;
1378 }
1379
1380 for (;;) {
1381 _cleanup_free_ char *o = NULL;
1382 gid_t gid_base, gid_shift, gid_range, converted;
1383 int k;
1384
1385 errno = 0;
1386 k = fscanf(f, GID_FMT " " GID_FMT " " GID_FMT, &gid_base, &gid_shift, &gid_range);
1387 if (k < 0 && feof(f))
1388 break;
1389 if (k != 3) {
b3267152 1390 if (ferror(f) && errno > 0)
c01ff965
LP
1391 return -errno;
1392
1393 return -EIO;
1394 }
1395
1396 if (gid < gid_shift || gid >= gid_shift + gid_range)
1397 continue;
1398
1399 converted = (gid - gid_shift + gid_base);
c077529b 1400 if (!gid_is_valid(converted))
c01ff965
LP
1401 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid group ID " GID_FMT, gid);
1402
1403 o = machine_bus_path(machine);
1404 if (!o)
1405 return -ENOMEM;
1406
1407 return sd_bus_reply_method_return(message, "sou", machine->name, o, (uint32_t) converted);
1408 }
1409 }
1410
1411 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_GROUP_MAPPING, "No matching group mapping for " GID_FMT ".", gid);
1412}
1413
c3350683
LP
1414const sd_bus_vtable manager_vtable[] = {
1415 SD_BUS_VTABLE_START(0),
160e3793
LP
1416 SD_BUS_PROPERTY("PoolPath", "s", property_get_pool_path, 0, 0),
1417 SD_BUS_PROPERTY("PoolUsage", "t", property_get_pool_usage, 0, 0),
1418 SD_BUS_PROPERTY("PoolLimit", "t", property_get_pool_limit, 0, 0),
adacb957 1419 SD_BUS_METHOD("GetMachine", "s", "o", method_get_machine, SD_BUS_VTABLE_UNPRIVILEGED),
c2ce6a3d 1420 SD_BUS_METHOD("GetImage", "s", "o", method_get_image, SD_BUS_VTABLE_UNPRIVILEGED),
adacb957
LP
1421 SD_BUS_METHOD("GetMachineByPID", "u", "o", method_get_machine_by_pid, SD_BUS_VTABLE_UNPRIVILEGED),
1422 SD_BUS_METHOD("ListMachines", NULL, "a(ssso)", method_list_machines, SD_BUS_VTABLE_UNPRIVILEGED),
b6b18498 1423 SD_BUS_METHOD("ListImages", NULL, "a(ssbttto)", method_list_images, SD_BUS_VTABLE_UNPRIVILEGED),
c3350683 1424 SD_BUS_METHOD("CreateMachine", "sayssusa(sv)", "o", method_create_machine, 0),
9b5ed6fe 1425 SD_BUS_METHOD("CreateMachineWithNetwork", "sayssusaia(sv)", "o", method_create_machine_with_network, 0),
8d07a7c4 1426 SD_BUS_METHOD("RegisterMachine", "sayssus", "o", method_register_machine, 0),
9b5ed6fe 1427 SD_BUS_METHOD("RegisterMachineWithNetwork", "sayssusai", "o", method_register_machine_with_network, 0),
70244d1d
LP
1428 SD_BUS_METHOD("TerminateMachine", "s", NULL, method_terminate_machine, SD_BUS_VTABLE_UNPRIVILEGED),
1429 SD_BUS_METHOD("KillMachine", "ssi", NULL, method_kill_machine, SD_BUS_VTABLE_UNPRIVILEGED),
3a6fb33c 1430 SD_BUS_METHOD("GetMachineAddresses", "s", "a(iay)", method_get_machine_addresses, SD_BUS_VTABLE_UNPRIVILEGED),
717603e3 1431 SD_BUS_METHOD("GetMachineOSRelease", "s", "a{ss}", method_get_machine_os_release, SD_BUS_VTABLE_UNPRIVILEGED),
40205d70 1432 SD_BUS_METHOD("OpenMachinePTY", "s", "hs", method_open_machine_pty, 0),
d04c1fb8 1433 SD_BUS_METHOD("OpenMachineLogin", "s", "hs", method_open_machine_login, SD_BUS_VTABLE_UNPRIVILEGED),
49af9e13 1434 SD_BUS_METHOD("OpenMachineShell", "sssasas", "hs", method_open_machine_shell, SD_BUS_VTABLE_UNPRIVILEGED),
70244d1d
LP
1435 SD_BUS_METHOD("BindMountMachine", "sssbb", NULL, method_bind_mount_machine, SD_BUS_VTABLE_UNPRIVILEGED),
1436 SD_BUS_METHOD("CopyFromMachine", "sss", NULL, method_copy_machine, SD_BUS_VTABLE_UNPRIVILEGED),
1437 SD_BUS_METHOD("CopyToMachine", "sss", NULL, method_copy_machine, SD_BUS_VTABLE_UNPRIVILEGED),
ae203207 1438 SD_BUS_METHOD("OpenMachineRootDirectory", "s", "h", method_open_machine_root_directory, SD_BUS_VTABLE_UNPRIVILEGED),
3401419b 1439 SD_BUS_METHOD("GetMachineUIDShift", "s", "u", method_get_machine_uid_shift, SD_BUS_VTABLE_UNPRIVILEGED),
70244d1d
LP
1440 SD_BUS_METHOD("RemoveImage", "s", NULL, method_remove_image, SD_BUS_VTABLE_UNPRIVILEGED),
1441 SD_BUS_METHOD("RenameImage", "ss", NULL, method_rename_image, SD_BUS_VTABLE_UNPRIVILEGED),
1442 SD_BUS_METHOD("CloneImage", "ssb", NULL, method_clone_image, SD_BUS_VTABLE_UNPRIVILEGED),
1443 SD_BUS_METHOD("MarkImageReadOnly", "sb", NULL, method_mark_image_read_only, SD_BUS_VTABLE_UNPRIVILEGED),
9153b02b 1444 SD_BUS_METHOD("GetImageOSRelease", "s", "a{ss}", method_get_image_os_release, SD_BUS_VTABLE_UNPRIVILEGED),
d6ce17c7
LP
1445 SD_BUS_METHOD("SetPoolLimit", "t", NULL, method_set_pool_limit, SD_BUS_VTABLE_UNPRIVILEGED),
1446 SD_BUS_METHOD("SetImageLimit", "st", NULL, method_set_image_limit, SD_BUS_VTABLE_UNPRIVILEGED),
d94c2b06 1447 SD_BUS_METHOD("CleanPool", "s", "a(st)", method_clean_pool, SD_BUS_VTABLE_UNPRIVILEGED),
c01ff965
LP
1448 SD_BUS_METHOD("MapFromMachineUser", "su", "u", method_map_from_machine_user, SD_BUS_VTABLE_UNPRIVILEGED),
1449 SD_BUS_METHOD("MapToMachineUser", "u", "sou", method_map_to_machine_user, SD_BUS_VTABLE_UNPRIVILEGED),
1450 SD_BUS_METHOD("MapFromMachineGroup", "su", "u", method_map_from_machine_group, SD_BUS_VTABLE_UNPRIVILEGED),
1451 SD_BUS_METHOD("MapToMachineGroup", "u", "sou", method_map_to_machine_group, SD_BUS_VTABLE_UNPRIVILEGED),
c3350683
LP
1452 SD_BUS_SIGNAL("MachineNew", "so", 0),
1453 SD_BUS_SIGNAL("MachineRemoved", "so", 0),
1454 SD_BUS_VTABLE_END
1455};
1ee306e1 1456
19070062 1457int match_job_removed(sd_bus_message *message, void *userdata, sd_bus_error *error) {
c3350683 1458 const char *path, *result, *unit;
1ee306e1 1459 Manager *m = userdata;
c3350683
LP
1460 Machine *machine;
1461 uint32_t id;
1462 int r;
1ee306e1 1463
1ee306e1 1464 assert(message);
c3350683 1465 assert(m);
1ee306e1 1466
c3350683
LP
1467 r = sd_bus_message_read(message, "uoss", &id, &path, &unit, &result);
1468 if (r < 0) {
ebcf1f97 1469 bus_log_parse_error(r);
65d73cf0 1470 return 0;
c3350683 1471 }
6797c324 1472
c3350683
LP
1473 machine = hashmap_get(m->machine_units, unit);
1474 if (!machine)
1475 return 0;
6797c324 1476
c3350683 1477 if (streq_ptr(path, machine->scope_job)) {
491ac9f2 1478 machine->scope_job = mfree(machine->scope_job);
6797c324 1479
c3350683
LP
1480 if (machine->started) {
1481 if (streq(result, "done"))
1482 machine_send_create_reply(machine, NULL);
1483 else {
4afd3348 1484 _cleanup_(sd_bus_error_free) sd_bus_error e = SD_BUS_ERROR_NULL;
6797c324 1485
ebcf1f97 1486 sd_bus_error_setf(&e, BUS_ERROR_JOB_FAILED, "Start job for unit %s failed with '%s'", unit, result);
6797c324 1487
ebcf1f97 1488 machine_send_create_reply(machine, &e);
c3350683 1489 }
49f3fffd
LP
1490 }
1491
1492 machine_save(machine);
1ee306e1
LP
1493 }
1494
c3350683
LP
1495 machine_add_to_gc_queue(machine);
1496 return 0;
1ee306e1
LP
1497}
1498
19070062 1499int match_properties_changed(sd_bus_message *message, void *userdata, sd_bus_error *error) {
c3350683 1500 _cleanup_free_ char *unit = NULL;
49f3fffd 1501 const char *path;
c3350683
LP
1502 Manager *m = userdata;
1503 Machine *machine;
ebcf1f97 1504 int r;
554604b3 1505
c3350683
LP
1506 assert(message);
1507 assert(m);
554604b3 1508
c3350683
LP
1509 path = sd_bus_message_get_path(message);
1510 if (!path)
554604b3 1511 return 0;
554604b3 1512
ebcf1f97 1513 r = unit_name_from_dbus_path(path, &unit);
e5f5b5b9
LP
1514 if (r == -EINVAL) /* not for a unit */
1515 return 0;
9ed794a3 1516 if (r < 0) {
9b420b3c
LP
1517 log_oom();
1518 return 0;
1519 }
554604b3 1520
c3350683 1521 machine = hashmap_get(m->machine_units, unit);
9b420b3c
LP
1522 if (!machine)
1523 return 0;
1524
9b420b3c 1525 machine_add_to_gc_queue(machine);
c3350683
LP
1526 return 0;
1527}
554604b3 1528
19070062 1529int match_unit_removed(sd_bus_message *message, void *userdata, sd_bus_error *error) {
c3350683
LP
1530 const char *path, *unit;
1531 Manager *m = userdata;
1532 Machine *machine;
1533 int r;
554604b3 1534
c3350683
LP
1535 assert(message);
1536 assert(m);
554604b3 1537
c3350683
LP
1538 r = sd_bus_message_read(message, "so", &unit, &path);
1539 if (r < 0) {
ebcf1f97 1540 bus_log_parse_error(r);
9b420b3c 1541 return 0;
554604b3
LP
1542 }
1543
c3350683 1544 machine = hashmap_get(m->machine_units, unit);
9b420b3c
LP
1545 if (!machine)
1546 return 0;
1547
9b420b3c 1548 machine_add_to_gc_queue(machine);
c3350683
LP
1549 return 0;
1550}
554604b3 1551
19070062 1552int match_reloading(sd_bus_message *message, void *userdata, sd_bus_error *error) {
c3350683 1553 Manager *m = userdata;
a658cafa
LP
1554 Machine *machine;
1555 Iterator i;
c3350683 1556 int b, r;
554604b3 1557
19070062
LP
1558 assert(message);
1559 assert(m);
554604b3 1560
c3350683
LP
1561 r = sd_bus_message_read(message, "b", &b);
1562 if (r < 0) {
ebcf1f97 1563 bus_log_parse_error(r);
65d73cf0 1564 return 0;
554604b3 1565 }
a658cafa
LP
1566 if (b)
1567 return 0;
554604b3 1568
a658cafa
LP
1569 /* systemd finished reloading, let's recheck all our machines */
1570 log_debug("System manager has been reloaded, rechecking machines...");
554604b3 1571
a658cafa
LP
1572 HASHMAP_FOREACH(machine, m->machines, i)
1573 machine_add_to_gc_queue(machine);
554604b3
LP
1574
1575 return 0;
1576}
1577
1ee306e1
LP
1578int manager_start_scope(
1579 Manager *manager,
1580 const char *scope,
1581 pid_t pid,
1582 const char *slice,
1583 const char *description,
c3350683
LP
1584 sd_bus_message *more_properties,
1585 sd_bus_error *error,
1ee306e1
LP
1586 char **job) {
1587
4afd3348 1588 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL, *reply = NULL;
554604b3 1589 int r;
1ee306e1
LP
1590
1591 assert(manager);
1592 assert(scope);
1593 assert(pid > 1);
1594
c3350683
LP
1595 r = sd_bus_message_new_method_call(
1596 manager->bus,
151b9b96 1597 &m,
1ee306e1
LP
1598 "org.freedesktop.systemd1",
1599 "/org/freedesktop/systemd1",
1600 "org.freedesktop.systemd1.Manager",
151b9b96 1601 "StartTransientUnit");
c3350683
LP
1602 if (r < 0)
1603 return r;
1ee306e1 1604
a658cafa 1605 r = sd_bus_message_append(m, "ss", strempty(scope), "fail");
c3350683
LP
1606 if (r < 0)
1607 return r;
1ee306e1 1608
c3350683
LP
1609 r = sd_bus_message_open_container(m, 'a', "(sv)");
1610 if (r < 0)
1611 return r;
1ee306e1
LP
1612
1613 if (!isempty(slice)) {
c3350683
LP
1614 r = sd_bus_message_append(m, "(sv)", "Slice", "s", slice);
1615 if (r < 0)
1616 return r;
1ee306e1
LP
1617 }
1618
1619 if (!isempty(description)) {
c3350683
LP
1620 r = sd_bus_message_append(m, "(sv)", "Description", "s", description);
1621 if (r < 0)
1622 return r;
1ee306e1
LP
1623 }
1624
c3350683
LP
1625 r = sd_bus_message_append(m, "(sv)", "PIDs", "au", 1, pid);
1626 if (r < 0)
1627 return r;
554604b3 1628
a931ad47
LP
1629 r = sd_bus_message_append(m, "(sv)", "Delegate", "b", 1);
1630 if (r < 0)
1631 return r;
1632
cf7d1a30 1633 r = sd_bus_message_append(m, "(sv)", "TasksMax", "t", UINT64_C(16384));
b370fec2
AC
1634 if (r < 0)
1635 return bus_log_create_error(r);
1636
554604b3 1637 if (more_properties) {
c3350683 1638 r = sd_bus_message_copy(m, more_properties, true);
554604b3
LP
1639 if (r < 0)
1640 return r;
1641 }
1642
c3350683
LP
1643 r = sd_bus_message_close_container(m);
1644 if (r < 0)
1645 return r;
1ee306e1 1646
86b8d289
LP
1647 r = sd_bus_message_append(m, "a(sa(sv))", 0);
1648 if (r < 0)
1649 return r;
1650
c49b30a2 1651 r = sd_bus_call(manager->bus, m, 0, error, &reply);
c3350683
LP
1652 if (r < 0)
1653 return r;
1ee306e1
LP
1654
1655 if (job) {
1656 const char *j;
1657 char *copy;
1658
c3350683
LP
1659 r = sd_bus_message_read(reply, "o", &j);
1660 if (r < 0)
1661 return r;
1ee306e1
LP
1662
1663 copy = strdup(j);
1664 if (!copy)
1665 return -ENOMEM;
1666
1667 *job = copy;
1668 }
1669
c3350683 1670 return 1;
1ee306e1
LP
1671}
1672
c3350683 1673int manager_stop_unit(Manager *manager, const char *unit, sd_bus_error *error, char **job) {
4afd3348 1674 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
1ee306e1
LP
1675 int r;
1676
1677 assert(manager);
1678 assert(unit);
1679
c3350683 1680 r = sd_bus_call_method(
1ee306e1
LP
1681 manager->bus,
1682 "org.freedesktop.systemd1",
1683 "/org/freedesktop/systemd1",
1684 "org.freedesktop.systemd1.Manager",
1685 "StopUnit",
1ee306e1 1686 error,
c3350683
LP
1687 &reply,
1688 "ss", unit, "fail");
1ee306e1 1689 if (r < 0) {
c3350683
LP
1690 if (sd_bus_error_has_name(error, BUS_ERROR_NO_SUCH_UNIT) ||
1691 sd_bus_error_has_name(error, BUS_ERROR_LOAD_FAILED)) {
6797c324
LP
1692
1693 if (job)
1694 *job = NULL;
1695
c3350683 1696 sd_bus_error_free(error);
6797c324
LP
1697 return 0;
1698 }
1699
1ee306e1
LP
1700 return r;
1701 }
1702
1703 if (job) {
1704 const char *j;
1705 char *copy;
1706
c3350683
LP
1707 r = sd_bus_message_read(reply, "o", &j);
1708 if (r < 0)
1709 return r;
1ee306e1
LP
1710
1711 copy = strdup(j);
1712 if (!copy)
1713 return -ENOMEM;
1714
1715 *job = copy;
1716 }
1717
6797c324 1718 return 1;
1ee306e1
LP
1719}
1720
de58a50e 1721int manager_kill_unit(Manager *manager, const char *unit, int signo, sd_bus_error *error) {
1ee306e1
LP
1722 assert(manager);
1723 assert(unit);
1724
a658cafa 1725 return sd_bus_call_method(
1ee306e1
LP
1726 manager->bus,
1727 "org.freedesktop.systemd1",
1728 "/org/freedesktop/systemd1",
1729 "org.freedesktop.systemd1.Manager",
1730 "KillUnit",
1ee306e1 1731 error,
a658cafa 1732 NULL,
de58a50e 1733 "ssi", unit, "all", signo);
1ee306e1
LP
1734}
1735
1736int manager_unit_is_active(Manager *manager, const char *unit) {
4afd3348
LP
1737 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1738 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
1ee306e1 1739 _cleanup_free_ char *path = NULL;
1ee306e1 1740 const char *state;
1ee306e1
LP
1741 int r;
1742
1743 assert(manager);
1744 assert(unit);
1745
1ee306e1
LP
1746 path = unit_dbus_path_from_name(unit);
1747 if (!path)
1748 return -ENOMEM;
1749
c3350683 1750 r = sd_bus_get_property(
1ee306e1
LP
1751 manager->bus,
1752 "org.freedesktop.systemd1",
1753 path,
c3350683
LP
1754 "org.freedesktop.systemd1.Unit",
1755 "ActiveState",
1ee306e1 1756 &error,
c3350683
LP
1757 &reply,
1758 "s");
1ee306e1 1759 if (r < 0) {
c3350683
LP
1760 if (sd_bus_error_has_name(&error, SD_BUS_ERROR_NO_REPLY) ||
1761 sd_bus_error_has_name(&error, SD_BUS_ERROR_DISCONNECTED))
6797c324 1762 return true;
6797c324 1763
c3350683
LP
1764 if (sd_bus_error_has_name(&error, BUS_ERROR_NO_SUCH_UNIT) ||
1765 sd_bus_error_has_name(&error, BUS_ERROR_LOAD_FAILED))
6797c324 1766 return false;
6797c324 1767
1ee306e1
LP
1768 return r;
1769 }
1770
c3350683
LP
1771 r = sd_bus_message_read(reply, "s", &state);
1772 if (r < 0)
1ee306e1 1773 return -EINVAL;
1ee306e1 1774
9b420b3c 1775 return !STR_IN_SET(state, "inactive", "failed");
1ee306e1 1776}
bd16acf3 1777
c3350683 1778int manager_job_is_active(Manager *manager, const char *path) {
4afd3348
LP
1779 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1780 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
c3350683 1781 int r;
bd16acf3 1782
c3350683
LP
1783 assert(manager);
1784 assert(path);
bd16acf3 1785
c3350683
LP
1786 r = sd_bus_get_property(
1787 manager->bus,
1788 "org.freedesktop.systemd1",
1789 path,
1790 "org.freedesktop.systemd1.Job",
1791 "State",
1792 &error,
1793 &reply,
1794 "s");
1795 if (r < 0) {
1796 if (sd_bus_error_has_name(&error, SD_BUS_ERROR_NO_REPLY) ||
1797 sd_bus_error_has_name(&error, SD_BUS_ERROR_DISCONNECTED))
1798 return true;
bd16acf3 1799
c3350683
LP
1800 if (sd_bus_error_has_name(&error, SD_BUS_ERROR_UNKNOWN_OBJECT))
1801 return false;
bd16acf3 1802
bd16acf3 1803 return r;
c3350683 1804 }
bd16acf3 1805
c3350683
LP
1806 /* We don't actually care about the state really. The fact
1807 * that we could read the job state is enough for us */
bd16acf3 1808
c3350683 1809 return true;
bd16acf3 1810}
ab49725f
KS
1811
1812int manager_get_machine_by_pid(Manager *m, pid_t pid, Machine **machine) {
ab49725f
KS
1813 Machine *mm;
1814 int r;
1815
1816 assert(m);
1817 assert(pid >= 1);
1818 assert(machine);
1819
4a0b58c4 1820 mm = hashmap_get(m->machine_leaders, PID_TO_PTR(pid));
077c8c36
LP
1821 if (!mm) {
1822 _cleanup_free_ char *unit = NULL;
ab49725f 1823
077c8c36
LP
1824 r = cg_pid_get_unit(pid, &unit);
1825 if (r >= 0)
1826 mm = hashmap_get(m->machine_units, unit);
1827 }
ab49725f
KS
1828 if (!mm)
1829 return 0;
1830
1831 *machine = mm;
1832 return 1;
1833}
1834
1835int manager_add_machine(Manager *m, const char *name, Machine **_machine) {
1836 Machine *machine;
1837
1838 assert(m);
1839 assert(name);
1840
1841 machine = hashmap_get(m->machines, name);
1842 if (!machine) {
fbe55073 1843 machine = machine_new(m, _MACHINE_CLASS_INVALID, name);
ab49725f
KS
1844 if (!machine)
1845 return -ENOMEM;
1846 }
1847
1848 if (_machine)
1849 *_machine = machine;
1850
1851 return 0;
1852}
9153b02b
LP
1853
1854int bus_reply_pair_array(sd_bus_message *m, char **l) {
1855 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
1856 char **k, **v;
1857 int r;
1858
1859 r = sd_bus_message_new_method_return(m, &reply);
1860 if (r < 0)
1861 return r;
1862
1863 r = sd_bus_message_open_container(reply, 'a', "{ss}");
1864 if (r < 0)
1865 return r;
1866
1867 STRV_FOREACH_PAIR(k, v, l) {
1868 r = sd_bus_message_append(reply, "{ss}", *k, *v);
1869 if (r < 0)
1870 return r;
1871 }
1872
1873 r = sd_bus_message_close_container(reply);
1874 if (r < 0)
1875 return r;
1876
1877 return sd_bus_send(NULL, reply, NULL);
1878
1879}