]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/machine/machine.h
headers: remove unneeded includes from util.h
[thirdparty/systemd.git] / src / machine / machine.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
9444b1f2
LP
2#pragma once
3
9444b1f2 4typedef struct Machine Machine;
1ee306e1 5typedef enum KillWho KillWho;
9444b1f2
LP
6
7#include "list.h"
1ee306e1 8#include "machined.h"
795c5d31 9#include "operation.h"
ca78ad1d 10#include "time-util.h"
9444b1f2 11
fb6becb4
LP
12typedef 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
9444b1f2
LP
20typedef enum MachineClass {
21 MACHINE_CONTAINER,
22 MACHINE_VM,
fbe55073 23 MACHINE_HOST,
9444b1f2
LP
24 _MACHINE_CLASS_MAX,
25 _MACHINE_CLASS_INVALID = -1
26} MachineClass;
27
1ee306e1
LP
28enum KillWho {
29 KILL_LEADER,
30 KILL_ALL,
31 _KILL_WHO_MAX,
32 _KILL_WHO_INVALID = -1
33};
34
9444b1f2
LP
35struct 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;
9444b1f2
LP
45 char *root_directory;
46
89f7c846 47 char *unit;
fb6becb4
LP
48 char *scope_job;
49
9444b1f2
LP
50 pid_t leader;
51
52 dual_timestamp timestamp;
53
54 bool in_gc_queue:1;
55 bool started:1;
49f3fffd 56 bool stopping:1;
9444b1f2 57
c3350683 58 sd_bus_message *create_message;
fb6becb4 59
9b5ed6fe 60 int *netif;
68e16e9c 61 size_t n_netif;
9b5ed6fe 62
795c5d31 63 LIST_HEAD(Operation, operations);
0370612e 64
795c5d31 65 LIST_FIELDS(Machine, gc_queue);
9444b1f2
LP
66};
67
fbe55073 68Machine* machine_new(Manager *manager, MachineClass class, const char *name);
bb1a05d6 69Machine* machine_free(Machine *m);
554ce41f 70bool machine_may_gc(Machine *m, bool drop_not_started);
9444b1f2 71void machine_add_to_gc_queue(Machine *m);
c3350683 72int machine_start(Machine *m, sd_bus_message *properties, sd_bus_error *error);
9444b1f2 73int machine_stop(Machine *m);
49f3fffd 74int machine_finalize(Machine *m);
9444b1f2
LP
75int machine_save(Machine *m);
76int machine_load(Machine *m);
77int machine_kill(Machine *m, KillWho who, int signo);
78
9b420b3c
LP
79void machine_release_unit(Machine *m);
80
fb6becb4
LP
81MachineState machine_get_state(Machine *u);
82
9444b1f2
LP
83const char* machine_class_to_string(MachineClass t) _const_;
84MachineClass machine_class_from_string(const char *s) _pure_;
fb6becb4
LP
85
86const char* machine_state_to_string(MachineState t) _const_;
87MachineState machine_state_from_string(const char *s) _pure_;
1ee306e1
LP
88
89const char *kill_who_to_string(KillWho k) _const_;
90KillWho kill_who_from_string(const char *s) _pure_;
fbe55073
LP
91
92int machine_openpt(Machine *m, int flags);
40e1f4ea 93int machine_open_terminal(Machine *m, const char *path, int mode);
3401419b
LP
94
95int machine_get_uid_shift(Machine *m, uid_t *ret);