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