]> git.ipfire.org Git - thirdparty/systemd.git/blame_incremental - src/machine/machine.h
machined: change check_gc to may_gc everywhere
[thirdparty/systemd.git] / src / machine / machine.h
... / ...
CommitLineData
1/* SPDX-License-Identifier: LGPL-2.1+ */
2#pragma once
3
4/***
5 This file is part of systemd.
6
7 Copyright 2013 Lennart Poettering
8
9 systemd is free software; you can redistribute it and/or modify it
10 under the terms of the GNU Lesser General Public License as published by
11 the Free Software Foundation; either version 2.1 of the License, or
12 (at your option) any later version.
13
14 systemd is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 Lesser General Public License for more details.
18
19 You should have received a copy of the GNU Lesser General Public License
20 along with systemd; If not, see <http://www.gnu.org/licenses/>.
21***/
22
23typedef struct Machine Machine;
24typedef enum KillWho KillWho;
25
26#include "list.h"
27#include "machined.h"
28#include "operation.h"
29
30typedef enum MachineState {
31 MACHINE_OPENING, /* Machine is being registered */
32 MACHINE_RUNNING, /* Machine is running */
33 MACHINE_CLOSING, /* Machine is terminating */
34 _MACHINE_STATE_MAX,
35 _MACHINE_STATE_INVALID = -1
36} MachineState;
37
38typedef enum MachineClass {
39 MACHINE_CONTAINER,
40 MACHINE_VM,
41 MACHINE_HOST,
42 _MACHINE_CLASS_MAX,
43 _MACHINE_CLASS_INVALID = -1
44} MachineClass;
45
46enum KillWho {
47 KILL_LEADER,
48 KILL_ALL,
49 _KILL_WHO_MAX,
50 _KILL_WHO_INVALID = -1
51};
52
53struct Machine {
54 Manager *manager;
55
56 char *name;
57 sd_id128_t id;
58
59 MachineClass class;
60
61 char *state_file;
62 char *service;
63 char *root_directory;
64
65 char *unit;
66 char *scope_job;
67
68 pid_t leader;
69
70 dual_timestamp timestamp;
71
72 bool in_gc_queue:1;
73 bool started:1;
74 bool stopping:1;
75
76 sd_bus_message *create_message;
77
78 int *netif;
79 unsigned n_netif;
80
81 LIST_HEAD(Operation, operations);
82
83 LIST_FIELDS(Machine, gc_queue);
84};
85
86Machine* machine_new(Manager *manager, MachineClass class, const char *name);
87void machine_free(Machine *m);
88bool machine_may_gc(Machine *m, bool drop_not_started);
89void machine_add_to_gc_queue(Machine *m);
90int machine_start(Machine *m, sd_bus_message *properties, sd_bus_error *error);
91int machine_stop(Machine *m);
92int machine_finalize(Machine *m);
93int machine_save(Machine *m);
94int machine_load(Machine *m);
95int machine_kill(Machine *m, KillWho who, int signo);
96
97void machine_release_unit(Machine *m);
98
99MachineState machine_get_state(Machine *u);
100
101const char* machine_class_to_string(MachineClass t) _const_;
102MachineClass machine_class_from_string(const char *s) _pure_;
103
104const char* machine_state_to_string(MachineState t) _const_;
105MachineState machine_state_from_string(const char *s) _pure_;
106
107const char *kill_who_to_string(KillWho k) _const_;
108KillWho kill_who_from_string(const char *s) _pure_;
109
110int machine_openpt(Machine *m, int flags);
111int machine_open_terminal(Machine *m, const char *path, int mode);
112
113int machine_get_uid_shift(Machine *m, uid_t *ret);