]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/machine/machine.h
machined: refactor UID/GID machine translation
[thirdparty/systemd.git] / src / machine / machine.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 typedef struct Machine Machine;
5 typedef enum KillWho KillWho;
6
7 #include "list.h"
8 #include "machined.h"
9 #include "operation.h"
10 #include "time-util.h"
11
12 typedef enum MachineState {
13 MACHINE_OPENING, /* Machine is being registered */
14 MACHINE_RUNNING, /* Machine is running */
15 MACHINE_CLOSING, /* Machine is terminating */
16 _MACHINE_STATE_MAX,
17 _MACHINE_STATE_INVALID = -1
18 } MachineState;
19
20 typedef enum MachineClass {
21 MACHINE_CONTAINER,
22 MACHINE_VM,
23 MACHINE_HOST,
24 _MACHINE_CLASS_MAX,
25 _MACHINE_CLASS_INVALID = -1
26 } MachineClass;
27
28 enum KillWho {
29 KILL_LEADER,
30 KILL_ALL,
31 _KILL_WHO_MAX,
32 _KILL_WHO_INVALID = -1
33 };
34
35 struct Machine {
36 Manager *manager;
37
38 char *name;
39 sd_id128_t id;
40
41 MachineClass class;
42
43 char *state_file;
44 char *service;
45 char *root_directory;
46
47 char *unit;
48 char *scope_job;
49
50 pid_t leader;
51
52 dual_timestamp timestamp;
53
54 bool in_gc_queue:1;
55 bool started:1;
56 bool stopping:1;
57 bool referenced:1;
58
59 sd_bus_message *create_message;
60
61 int *netif;
62 size_t n_netif;
63
64 LIST_HEAD(Operation, operations);
65
66 LIST_FIELDS(Machine, gc_queue);
67 };
68
69 Machine* machine_new(Manager *manager, MachineClass class, const char *name);
70 Machine* machine_free(Machine *m);
71 bool machine_may_gc(Machine *m, bool drop_not_started);
72 void machine_add_to_gc_queue(Machine *m);
73 int machine_start(Machine *m, sd_bus_message *properties, sd_bus_error *error);
74 int machine_stop(Machine *m);
75 int machine_finalize(Machine *m);
76 int machine_save(Machine *m);
77 int machine_load(Machine *m);
78 int machine_kill(Machine *m, KillWho who, int signo);
79
80 void machine_release_unit(Machine *m);
81
82 MachineState machine_get_state(Machine *u);
83
84 const char* machine_class_to_string(MachineClass t) _const_;
85 MachineClass machine_class_from_string(const char *s) _pure_;
86
87 const char* machine_state_to_string(MachineState t) _const_;
88 MachineState machine_state_from_string(const char *s) _pure_;
89
90 const char *kill_who_to_string(KillWho k) _const_;
91 KillWho kill_who_from_string(const char *s) _pure_;
92
93 int machine_openpt(Machine *m, int flags, char **ret_slave);
94 int machine_open_terminal(Machine *m, const char *path, int mode);
95
96 int machine_get_uid_shift(Machine *m, uid_t *ret);
97
98 int machine_owns_uid(Machine *m, uid_t host_uid, uid_t *ret_internal_uid);
99 int machine_owns_gid(Machine *m, gid_t host_gid, gid_t *ret_internal_gid);
100
101 int machine_translate_uid(Machine *m, uid_t internal_uid, uid_t *ret_host_uid);
102 int machine_translate_gid(Machine *m, gid_t internal_gid, gid_t *ret_host_gid);