forked from ava-labs/avalanche-network-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rpc.proto
414 lines (335 loc) · 10.1 KB
/
rpc.proto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
syntax = "proto3";
option go_package = "github.com/ava-labs/avalanche-network-runner;rpcpb";
package rpcpb;
import "google/api/annotations.proto";
service PingService {
rpc Ping(PingRequest) returns (PingResponse) {
option (google.api.http) = {
post: "/v1/ping"
body: "*"
};
}
}
message PingRequest {}
message PingResponse {
int32 pid = 1;
}
service ControlService {
rpc Start(StartRequest) returns (StartResponse) {
option (google.api.http) = {
post: "/v1/control/start"
body: "*"
};
}
rpc CreateBlockchains(CreateBlockchainsRequest) returns (CreateBlockchainsResponse) {
option (google.api.http) = {
post: "/v1/control/createblockchains"
body: "*"
};
}
rpc CreateSubnets(CreateSubnetsRequest) returns (CreateSubnetsResponse) {
option (google.api.http) = {
post: "/v1/control/createsubnets"
body: "*"
};
}
rpc Health(HealthRequest) returns (HealthResponse) {
option (google.api.http) = {
post: "/v1/control/health"
body: "*"
};
}
rpc URIs(URIsRequest) returns (URIsResponse) {
option (google.api.http) = {
post: "/v1/control/uris"
body: "*"
};
}
rpc Status(StatusRequest) returns (StatusResponse) {
option (google.api.http) = {
post: "/v1/control/status"
body: "*"
};
}
rpc StreamStatus(StreamStatusRequest) returns (stream StreamStatusResponse) {
option (google.api.http) = {
post: "/v1/control/streamstatus"
body: "*"
};
}
rpc RemoveNode(RemoveNodeRequest) returns (RemoveNodeResponse) {
option (google.api.http) = {
post: "/v1/control/removenode"
body: "*"
};
}
rpc AddNode(AddNodeRequest) returns (AddNodeResponse) {
option (google.api.http) = {
post: "/v1/control/addnode"
body: "*"
};
}
rpc RestartNode(RestartNodeRequest) returns (RestartNodeResponse) {
option (google.api.http) = {
post: "/v1/control/restartnode"
body: "*"
};
}
rpc Stop(StopRequest) returns (StopResponse) {
option (google.api.http) = {
post: "/v1/control/stop"
body: "*"
};
}
rpc AttachPeer(AttachPeerRequest) returns (AttachPeerResponse) {
option (google.api.http) = {
post: "/v1/control/attachpeer"
body: "*"
};
}
rpc SendOutboundMessage(SendOutboundMessageRequest) returns (SendOutboundMessageResponse) {
option (google.api.http) = {
post: "/v1/control/sendoutboundmessage"
body: "*"
};
}
rpc SaveSnapshot(SaveSnapshotRequest) returns (SaveSnapshotResponse) {
option (google.api.http) = {
post: "/v1/control/savesnapshot"
body: "*"
};
}
rpc LoadSnapshot(LoadSnapshotRequest) returns (LoadSnapshotResponse) {
option (google.api.http) = {
post: "/v1/control/loadsnapshot"
body: "*"
};
}
rpc RemoveSnapshot(RemoveSnapshotRequest) returns (RemoveSnapshotResponse) {
option (google.api.http) = {
post: "/v1/control/removesnapshot"
body: "*"
};
}
rpc GetSnapshotNames(GetSnapshotNamesRequest) returns (GetSnapshotNamesResponse) {
option (google.api.http) = {
post: "/v1/control/getsnapshotnames"
body: "*"
};
}
}
message ClusterInfo {
repeated string node_names = 1;
map<string, NodeInfo> node_infos = 2;
int32 pid = 3;
string root_data_dir = 4;
bool healthy = 5;
// Maps from the node ID to its attached peer infos.
map<string, ListOfAttachedPeerInfo> attached_peer_infos = 6;
// Set to "true" once custom blockchains are ready.
bool custom_chains_healthy = 7;
// The map of blockchain IDs in "ids.ID" format to its blockchain information.
map<string, CustomChainInfo> custom_chains = 8;
repeated string subnets = 9;
}
message CustomChainInfo {
// Blockchain name given to the create blockchain TX
// Currently used to keep a record of the VM name,
// which is not saved anywhere and can't be recovered from VM ID
string chain_name = 1;
// VM ID in "ids.ID" format.
string vm_id = 2;
// Create subnet transaction ID -- subnet ID.
// The subnet ID must be whitelisted by the avalanche node.
string subnet_id = 3;
// Create blockchain transaction ID -- blockchain ID>
// The blockchain ID is used for RPC endpoints.
string chain_id = 4;
}
message NodeInfo {
string name = 1;
string exec_path = 2;
string uri = 3;
string id = 4;
string log_dir = 5;
string db_dir = 6;
string plugin_dir = 7;
string whitelisted_subnets = 8;
bytes config = 9;
}
message AttachedPeerInfo {
string id = 1;
}
message ListOfAttachedPeerInfo {
repeated AttachedPeerInfo peers = 1;
}
message StartRequest {
string exec_path = 1;
optional uint32 num_nodes = 2;
optional string whitelisted_subnets = 3;
optional string global_node_config = 4;
// Used for both database and log files.
optional string root_data_dir = 5;
// Build directory that contains the subdir 'plugins' from which to load all custom VM executables.
// If not specified, will be derived from the exec_path (its basedir)
optional string plugin_dir = 6;
// The list of custom chain's VM name, genesis file path, and (optional) subnet id to use.
//
// subnet id must be always nil when using StartRequest, as the network is empty and has no preloaded
// subnet ids available.
//
// The matching file with the name in "ids.ID" format must exist.
// e.g., ids.ToID(hashing.ComputeHash256("subnetevm")).String()
// e.g., subnet-cli create VMID subnetevm
//
// If this field is set to none (by default), the node/network-runner
// does not install the custom chain and does not create the subnet,
// even if the VM binary exists on the local plugins directory.
repeated BlockchainSpec blockchain_specs = 7;
map<string, string> custom_node_configs = 8;
// Map of chain name to config file contents.
// If specified, will create a file "chainname/config.json" with
// the contents provided here.
map<string, string> chain_configs = 9;
// Map of chain name to upgrade file contents.
// If specified, will create a file "chainname/upgrade.json" with
// the contents provided here.
map<string, string> upgrade_configs = 10;
// reassign given ports (currently if using custom_node_configs) if they are already taken
optional bool reassign_ports_if_used = 11;
}
message StartResponse {
ClusterInfo cluster_info = 1;
}
message BlockchainSpec {
string vm_name = 1;
string genesis = 2;
optional string subnet_id = 3;
}
message CreateBlockchainsRequest {
// The list of custom chain's VM name, genesis file path, and (optional) subnet id to use.
//
// The matching file with the name in "ids.ID" format must exist.
// e.g., ids.ToID(hashing.ComputeHash256("subnetevm")).String()
// e.g., subnet-cli create VMID subnetevm
//
// If this field is set to none (by default), the node/network-runner
// will return error
repeated BlockchainSpec blockchain_specs = 1;
}
message CreateBlockchainsResponse {
ClusterInfo cluster_info = 1;
}
message CreateSubnetsRequest {
optional uint32 num_subnets = 1;
}
message CreateSubnetsResponse {
ClusterInfo cluster_info = 1;
}
message HealthRequest {}
message HealthResponse {
ClusterInfo cluster_info = 1;
}
message URIsRequest {}
message URIsResponse {
repeated string uris = 1;
}
message StatusRequest {}
message StatusResponse {
ClusterInfo cluster_info = 1;
}
message StreamStatusRequest {
int64 push_interval = 1;
}
message StreamStatusResponse {
ClusterInfo cluster_info = 1;
}
message RestartNodeRequest {
// Must be a valid node name.
string name = 1;
// Optional fields are set to the previous values if empty.
optional string exec_path = 2;
optional string whitelisted_subnets = 3;
// Map of chain name to config file contents.
// If specified, will create a file "chainname/config.json" with
// the contents provided here.
map<string, string> chain_configs = 4;
// Map of chain name to config file contents.
// If specified, will create a file "chainname/upgrade.json" with
// the contents provided here.
map<string, string> upgrade_configs = 5;
}
message RestartNodeResponse {
ClusterInfo cluster_info = 1;
}
message RemoveNodeRequest {
string name = 1;
}
message RemoveNodeResponse {
ClusterInfo cluster_info = 1;
}
message AddNodeRequest {
string name = 1;
string exec_path = 2;
optional string node_config = 3;
// Map of chain name to config file contents.
// If specified, will create a file "chainname/config.json" with
// the contents provided here.
map<string, string> chain_configs = 4;
// Map of chain name to config file contents.
// If specified, will create a file "chainname/upgrade.json" with
// the contents provided here.
map<string, string> upgrade_configs = 5;
}
message AddNodeResponse {
ClusterInfo cluster_info = 1;
}
message StopRequest {}
message StopResponse {
ClusterInfo cluster_info = 1;
}
message AttachPeerRequest {
string node_name = 1;
}
message AttachPeerResponse {
ClusterInfo cluster_info = 1;
AttachedPeerInfo attached_peer_info = 2;
}
message SendOutboundMessageRequest {
string node_name = 1;
string peer_id = 2;
uint32 op = 3;
bytes bytes = 4;
}
message SendOutboundMessageResponse {
bool sent = 1;
}
message SaveSnapshotRequest {
string snapshot_name = 1;
}
message SaveSnapshotResponse {
string snapshot_path = 1;
}
message LoadSnapshotRequest {
string snapshot_name = 1;
optional string exec_path = 2;
optional string plugin_dir = 3;
optional string root_data_dir = 4;
map<string, string> chain_configs = 5;
map<string, string> upgrade_configs = 6;
optional string global_node_config = 7;
optional bool reassign_ports_if_used = 8;
}
message LoadSnapshotResponse {
ClusterInfo cluster_info = 1;
}
message RemoveSnapshotRequest {
string snapshot_name = 1;
}
message RemoveSnapshotResponse {
}
message GetSnapshotNamesRequest {
}
message GetSnapshotNamesResponse {
repeated string snapshot_names = 1;
}