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