blob: 80cb19529370700f0a4466d1880c64e2f8d10c0e [file] [log] [blame]
Serge Bazanski6bd41592021-08-23 13:18:37 +02001syntax = "proto3";
2package metropolis.proto.api;
3option go_package = "source.monogon.dev/metropolis/proto/api";
4
Mateusz Zalega944cb532022-06-20 16:54:17 +02005import "google/protobuf/duration.proto";
Serge Bazanskib91938f2023-03-29 14:31:22 +02006import "google/protobuf/timestamp.proto";
Mateusz Zalega944cb532022-06-20 16:54:17 +02007
Serge Bazanskibc671d02021-10-05 17:53:32 +02008import "metropolis/proto/common/common.proto";
Serge Bazanski9ffa1f92021-09-01 15:42:23 +02009import "metropolis/proto/ext/authorization.proto";
10
Serge Bazanski56114472021-10-11 14:47:54 +020011// Management service available to Cluster Managers, allowing operational work
12// to be performed on the cluster (eg. adding nodes, retrieving information
13// about a running cluster, etc.).
Serge Bazanski6bd41592021-08-23 13:18:37 +020014service Management {
15 // GetRegisterTicket retrieves the current RegisterTicket which is required
16 // for new nodes to register into the cluster. Presenting this ticket on
17 // registration does not automatically grant access to arbitrary node
18 // registration. Instead, it is used to guard the API surface of the
19 // Register RPC from potential denial of service attacks, and can be
20 // regenerated at any time in case it leaks.
Serge Bazanski9ffa1f92021-09-01 15:42:23 +020021 rpc GetRegisterTicket(GetRegisterTicketRequest) returns (GetRegisterTicketResponse) {
22 option (metropolis.proto.ext.authorization) = {
23 need: PERMISSION_GET_REGISTER_TICKET
24 };
25 }
Serge Bazanski56114472021-10-11 14:47:54 +020026
Serge Bazanskibc671d02021-10-05 17:53:32 +020027 // GetClusterInfo retrieves publicly available summary information about
28 // this cluster, notably data required for nodes to register into a cluster
29 // or join it (other than the Register Ticket, which is gated by an
30 // additional permission).
31 rpc GetClusterInfo(GetClusterInfoRequest) returns (GetClusterInfoResponse) {
32 option (metropolis.proto.ext.authorization) = {
33 need: PERMISSION_READ_CLUSTER_STATUS
34 };
35 }
Serge Bazanski56114472021-10-11 14:47:54 +020036
37 // GetNodes retrieves information about nodes in the cluster. Currently,
38 // it returns all available data about all nodes.
39 rpc GetNodes(GetNodesRequest) returns (stream Node) {
40 option (metropolis.proto.ext.authorization) = {
41 need: PERMISSION_READ_CLUSTER_STATUS
42 };
43 }
Serge Bazanski1612d4b2021-11-12 13:54:15 +010044
45 // ApproveNode progresses a node's registration process by changing its state
46 // in the cluster from NEW to STANDBY, if not yet STANDBY. This is required
47 // for the node to fully become part of the cluster (ie. have an UP state),
48 // and is required to be called by a manager manually.
49 //
50 // Managers can find out what nodes require approval by performing
51 // a GetNodes call and filtering for nodes in the NEW state. This call is
52 // idempotent and can be executed multiple times, and is a no-op if the node
53 // is already in the STANDBY or even UP states.
54 //
55 // In the future, approval process will be governed by cluster policy, but
56 // currently any node can be approved by a manager, and the manager is
57 // responsible for performing an out-of-band attestation of the node being/
58 // approved (eg. by verifying that the node that is being approved has the
59 // same public key as what the registering node displays in its startup
60 // logs).
61 rpc ApproveNode(ApproveNodeRequest) returns (ApproveNodeResponse) {
62 option (metropolis.proto.ext.authorization) = {
63 need: PERMISSION_APPROVE_NODE
64 };
65 }
Mateusz Zalegabb2edbe2022-06-08 11:57:09 +020066
67 // UpdateNodeRoles updates a single node's roles.
68 rpc UpdateNodeRoles(UpdateNodeRolesRequest) returns (UpdateNodeRolesResponse) {
69 option (metropolis.proto.ext.authorization) = {
70 need: PERMISSION_UPDATE_NODE_ROLES
71 };
72 }
Serge Bazanski6bd41592021-08-23 13:18:37 +020073}
74
75message GetRegisterTicketRequest {
76}
77
78message GetRegisterTicketResponse {
79 // Opaque bytes that comprise the RegisterTicket.
80 bytes ticket = 1;
Serge Bazanski2893e982021-09-09 13:06:16 +020081}
Serge Bazanskibc671d02021-10-05 17:53:32 +020082
83message GetClusterInfoRequest {
84}
85
86message GetClusterInfoResponse {
87 // cluster_directory contains information about individual nodes in the
88 // cluster that can be used to dial the cluster's services.
89 metropolis.proto.common.ClusterDirectory cluster_directory = 1;
Serge Bazanski2f58ac02021-10-05 11:47:20 +020090
Serge Bazanskifbd38e22021-10-08 14:41:16 +020091 // ca_certificate is the x509 DER encoded CA certificate of the cluster.
92 bytes ca_certificate = 2;
Serge Bazanski5df62ba2023-03-22 17:56:46 +010093
94 metropolis.proto.common.ClusterConfiguration cluster_configuration = 3;
Serge Bazanskibc671d02021-10-05 17:53:32 +020095}
Serge Bazanski56114472021-10-11 14:47:54 +020096
97message GetNodesRequest {
Mateusz Zalega955e46e2022-05-27 18:00:50 +020098 // filter is a CEL expression used to limit the count of GetNodes results.
99 // Each processed node protobuf message is exposed to the filter as
100 // "node" variable, while related state and health enum constants are
101 // anchored in the root namespace, eg. NODE_STATE_UP, or HEARTBEAT_TIMEOUT.
102 // A node is returned each time the expression is evaluated as true. If
103 // empty, all nodes are returned.
104 string filter = 1;
Serge Bazanski56114472021-10-11 14:47:54 +0200105}
106
107// Node in a Metropolis cluster, streamed by Management.GetNodes. For each node
108// in the cluster, this message will be emitted and will contain information
109// about that node.
110//
111// The fields contained are node fields that PERMISSION_READ_CLUSTER_STATUS
112// allows access to, ie. 'non-private' fields, ones that might be internal to
113// the cluster and possibly considered sensitive information about the
114// infrastructure, but whose knowledge does not allow to escalate privileges
115// within the cluster.
116message Node {
117 // Raw Ed25519 public key of this node, which can be used to generate
118 // the node's ID. This is always set.
119 bytes pubkey = 1;
Serge Bazanski30fd1542023-03-29 14:19:02 +0200120 // Node ID calculated from pubkey, ie. 'metropolis-123456'.
121 string id = 7;
Serge Bazanski56114472021-10-11 14:47:54 +0200122 // State of the node from the point of view of the cluster. This is
123 // always set.
124 metropolis.proto.common.NodeState state = 2;
125 // Last reported status by the Node, absent if a node hasn't yet reported
126 // its status.
127 metropolis.proto.common.NodeStatus status = 3;
128 // Roles assigned by the cluster. This is always set.
129 metropolis.proto.common.NodeRoles roles = 4;
Serge Bazanski1612d4b2021-11-12 13:54:15 +0100130
Mateusz Zalega32b19292022-05-17 13:26:55 +0200131 // Health describes node's health as seen from the cluster perspective.
132 enum Health {
133 INVALID = 0;
134 // UNKNOWN is used whenever there were no heartbeats received from a
135 // given node AND too little time has passed since last Curator leader
136 // election to know whether the node is actually timing out. UNKNOWN
137 // is also returned for nodes which NodeState does not equal
138 // NODE_STATE_UP.
139 UNKNOWN = 1;
140 // HEALTHY describes nodes that have sent a heartbeat recently.
141 HEALTHY = 2;
142 // HEARTBEAT_TIMEOUT describes nodes that have not sent a heartbeat in
143 // the interval specified by curator.HeartbeatTimeout.
144 HEARTBEAT_TIMEOUT = 3;
145 }
146 Health health = 5;
Mateusz Zalega2175ec92022-06-13 09:29:09 +0200147 // time_since_heartbeat is the duration since the last of the node's
148 // heartbeats was received, expressed in nanoseconds. It is only valid with
149 // the health status of either HEALTHY or HEARTBEAT_TIMEOUT.
Mateusz Zalega944cb532022-06-20 16:54:17 +0200150 google.protobuf.Duration time_since_heartbeat = 6;
Serge Bazanskie4a4ce12023-03-22 18:29:54 +0100151
152 // tpm_usage describes whether this node has a TPM 2.0 and whether it is
153 // being actively used as part of its membership in the Metropolis cluster.
154 //
155 // Currently, the TPM 2.0 is only used to seal the local part of the disk
156 // encryption key and the early join credentials of the node. Depending on
157 // future cluster configuration settings, this might also indicate that the
158 // node has actually passed high assurance hardware attestation against the
159 // cluster.
160 metropolis.proto.common.NodeTPMUsage tpm_usage = 8;
Mateusz Zalega32b19292022-05-17 13:26:55 +0200161}
Serge Bazanski1612d4b2021-11-12 13:54:15 +0100162
163message ApproveNodeRequest {
164 // Raw public key of the node being approved, has to correspond to a node
165 // currently in the cluster.
166 bytes pubkey = 1;
167}
168
169message ApproveNodeResponse {
Mateusz Zalega32b19292022-05-17 13:26:55 +0200170}
Mateusz Zalegabb2edbe2022-06-08 11:57:09 +0200171
172// UpdateNodeRolesRequest updates roles of a single node matching pubkey. All
173// role fields are optional, and no change will result if they're either unset
174// or if their value matches existing state.
175message UpdateNodeRolesRequest {
Mateusz Zalega9c315f12022-08-11 16:31:22 +0200176 // node uniquely identifies the node subject to this request.
177 oneof node {
178 // pubkey is the Ed25519 public key of this node, which can be used to
179 // generate the node's ID.
180 bytes pubkey = 1;
181 // id is the human-readable identifier of the node, based on its public
182 // key.
183 string id = 4;
184 }
Mateusz Zalegabb2edbe2022-06-08 11:57:09 +0200185
Serge Bazanski15f7f632023-03-14 17:17:20 +0100186 // kubernetesController adjusts the appropriate role when set.
Mateusz Zalegabb2edbe2022-06-08 11:57:09 +0200187 optional bool kubernetesWorker = 2;
Serge Bazanski15f7f632023-03-14 17:17:20 +0100188 // kubernetesController adjusts the appropriate role when set. Nodes performing
189 // this role must also be consensus members.
190 optional bool kubernetesController = 5;
Mateusz Zalegabb2edbe2022-06-08 11:57:09 +0200191 optional bool consensusMember = 3;
192}
193
194message UpdateNodeRolesResponse {
195}
Serge Bazanskib40c0082023-03-29 14:28:04 +0200196
197// NodeManagement runs on every node of the cluster and providers management
198// and troubleshooting RPCs to operators. All requests must be authenticated.
199service NodeManagement {
Serge Bazanskida114862023-03-29 17:46:42 +0200200 // GetLogs Returns historical and/or streaming logs for a given DN with given
201 // filters from the system global LogTree.
202 //
203 // For more information about this API, see //metropolis/pkg/logtree. But, in
204 // summary:
205 // - All logging is performed to a DN (distinguished name), which is a
206 // dot-delimited string like foo.bar.baz.
207 // - Log entries can be either raw (coming from unstructured logging from
208 // an external service, like a running process) or leveled (emitted by
209 // Metropolis code with a source line, timestamp, and severity).
210 // - The DNs form a tree of logging nodes - and when requesting logs, a
211 // given subtree of DNs can be requested, instead of just a given DN.
212 // - All supervised processes live at `root.<supervisor DN>`. For more
213 // example paths, see the console logs of a running Metropolis node, or
214 // request all logs (at DN "").
215 //
Serge Bazanskib91938f2023-03-29 14:31:22 +0200216 rpc Logs(GetLogsRequest) returns (stream GetLogsResponse) {
217 option (metropolis.proto.ext.authorization) = {
218 need: PERMISSION_READ_NODE_LOGS
219 };
220 }
Lorenz Brun35fcf032023-06-29 04:15:58 +0200221 // UpdateNode updates the node operating system to a new version.
222 //
223 // Metropolis uses a side-by-side (A/B) update process. This method installs
224 // the OS from the given bundle into the inactive slot, activates that slot
225 // and then (optionally) reboots to activate it.
226 rpc UpdateNode(UpdateNodeRequest) returns (UpdateNodeResponse) {
227 option (metropolis.proto.ext.authorization) = {
228 need: PERMISSION_UPDATE_NODE
229 };
230 }
Serge Bazanskib91938f2023-03-29 14:31:22 +0200231}
232
Serge Bazanskib91938f2023-03-29 14:31:22 +0200233message GetLogsRequest {
234 // DN from which to request logs. All supervised runnables live at `root.`,
235 // the init code lives at `init.`.
236 string dn = 1;
237 // Filters to apply to returned data.
Serge Bazanskida114862023-03-29 17:46:42 +0200238 repeated metropolis.proto.common.LogFilter filters = 2;
Serge Bazanskib91938f2023-03-29 14:31:22 +0200239
240 enum BacklogMode {
241 BACKLOG_INVALID = 0;
242 // No historic data will be returned.
243 BACKLOG_DISABLE = 1;
244 // All available historic data will be returned.
245 BACKLOG_ALL = 2;
246 // At most backlog_count entries will be returned, if available.
247 BACKLOG_COUNT = 3;
248 }
249 BacklogMode backlog_mode = 3;
250 int64 backlog_count = 4;
251
252 enum StreamMode {
253 STREAM_INVALID = 0;
Serge Bazanskida114862023-03-29 17:46:42 +0200254 // No streaming entries, gRPC stream will be closed as soon as all backlog
255 // data is served.
Serge Bazanskib91938f2023-03-29 14:31:22 +0200256 STREAM_DISABLE = 1;
Serge Bazanskida114862023-03-29 17:46:42 +0200257 // Entries will be streamed as early as available right after all backlog
258 // data is served.
Serge Bazanskib91938f2023-03-29 14:31:22 +0200259 STREAM_UNBUFFERED = 2;
260 }
261 StreamMode stream_mode = 5;
262}
263
Serge Bazanskib91938f2023-03-29 14:31:22 +0200264message GetLogsResponse {
Serge Bazanskida114862023-03-29 17:46:42 +0200265 // Entries from the requested historical entries (via WithBackLog). They will
266 // all be served before the first stream_entries are served (if any).
267 repeated metropolis.proto.common.LogEntry backlog_entries = 1;
268 // Entries streamed as they arrive. Currently no server-side buffering is
269 // enabled, instead every line is served as early as it arrives. However, this
270 // might change in the future, so this behaviour cannot be depended upon.
271 repeated metropolis.proto.common.LogEntry stream_entries = 2;
Lorenz Brun35fcf032023-06-29 04:15:58 +0200272}
273
274message UpdateNodeRequest {
275 // An HTTPS URL to a Metropolis bundle containing the new OS to install.
276 string bundle_url = 1;
277
278 // If set, do not reboot the node after installation. This means the updated
279 // version will not be active until the node has been rebooted via another
280 // method.
281 bool no_reboot = 2;
282}
283
284message UpdateNodeResponse {}