summaryrefslogtreecommitdiffstats
path: root/grpc/frr-northbound.proto
blob: b3b1dc465b92f8eedf0b2ae9dd88fef242d5b317 (plain)
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
415
416
417
418
419
420
421
422
423
// SPDX-License-Identifier: BSD-2-Clause
//
// Copyright 2019 FRRouting
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
// BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
// OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
// THE POSSIBILITY OF SUCH DAMAGE.
//

syntax = "proto3";

package frr;

// Service specification for the FRR northbound interface.
service Northbound {
  // Retrieve the capabilities supported by the target.
  rpc GetCapabilities(GetCapabilitiesRequest) returns (GetCapabilitiesResponse) {}

  // Retrieve configuration data, state data or both from the target.
  rpc Get(GetRequest) returns (stream GetResponse) {}

  // Create a new candidate configuration and return a reference to it. The
  // created candidate is a copy of the running configuration.
  rpc CreateCandidate(CreateCandidateRequest) returns (CreateCandidateResponse) {}

  // Delete a candidate configuration.
  rpc DeleteCandidate(DeleteCandidateRequest) returns (DeleteCandidateResponse) {}

  // Update a candidate configuration by rebasing the changes on top of the
  // latest running configuration. Resolve conflicts automatically by giving
  // preference to the changes done in the candidate configuration.
  rpc UpdateCandidate(UpdateCandidateRequest) returns (UpdateCandidateResponse) {}

  // Edit a candidate configuration. All changes are discarded if any error
  // happens.
  rpc EditCandidate(EditCandidateRequest) returns (EditCandidateResponse) {}

  // Load configuration data into a candidate configuration. Both merge and
  // replace semantics are supported.
  rpc LoadToCandidate(LoadToCandidateRequest) returns (LoadToCandidateResponse) {}

  // Create a new configuration transaction using a two-phase commit protocol.
  rpc Commit(CommitRequest) returns (CommitResponse) {}

  // List the metadata of all configuration transactions recorded in the
  // transactions database.
  rpc ListTransactions(ListTransactionsRequest) returns (stream ListTransactionsResponse) {}

  // Fetch a configuration (identified by its transaction ID) from the
  // transactions database.
  rpc GetTransaction(GetTransactionRequest) returns (GetTransactionResponse) {}

  // Lock the running configuration, preventing other users from changing it.
  rpc LockConfig(LockConfigRequest) returns (LockConfigResponse) {}

  // Unlock the running configuration.
  rpc UnlockConfig(UnlockConfigRequest) returns (UnlockConfigResponse) {}

  // Execute a YANG RPC.
  rpc Execute(ExecuteRequest) returns (ExecuteResponse) {}
}

// ----------------------- Parameters and return types -------------------------

//
// RPC: GetCapabilities()
//
message GetCapabilitiesRequest {
  // Empty.
}

message GetCapabilitiesResponse {
  // Return values:
  // - grpc::StatusCode::OK: Success.

  // FRR version.
  string frr_version = 1;

  // Indicates whether FRR was compiled with support for configuration
  // rollbacks or not (--enable-config-rollbacks).
  bool rollback_support = 2;

  // Supported schema modules.
  repeated ModuleData supported_modules = 3;

  // Supported encodings.
  repeated Encoding supported_encodings = 4;
}

//
// RPC: Get()
//
message GetRequest {
  // Type of elements within the data tree.
  enum DataType {
    // All data elements.
    ALL = 0;

    // Config elements.
    CONFIG = 1;

    // State elements.
    STATE = 2;
  }

  // The type of data being requested.
  DataType type = 1;

  // Encoding to be used.
  Encoding encoding = 2;

  // Include implicit default nodes.
  bool with_defaults = 3;

  // Paths requested by the client.
  repeated string path = 4;
}

message GetResponse {
  // Return values:
  // - grpc::StatusCode::OK: Success.
  // - grpc::StatusCode::INVALID_ARGUMENT: Invalid YANG data path.

  // Timestamp in nanoseconds since Epoch.
  int64 timestamp = 1;

  // The requested data.
  DataTree data = 2;
}

//
// RPC: CreateCandidate()
//
message CreateCandidateRequest {
  // Empty.
}

message CreateCandidateResponse {
  // Return values:
  // - grpc::StatusCode::OK: Success.
  // - grpc::StatusCode::RESOURCE_EXHAUSTED: can't create candidate
  //   configuration.

  // Handle to the new created candidate configuration.
  uint32 candidate_id = 1;
}

//
// RPC: DeleteCandidate()
//
message DeleteCandidateRequest {
  // Candidate configuration to delete.
  uint32 candidate_id = 1;
}

message DeleteCandidateResponse {
  // Return values:
  // - grpc::StatusCode::OK: Success.
  // - grpc::StatusCode::NOT_FOUND: Candidate wasn't found.
}

//
// RPC: UpdateCandidate()
//
message UpdateCandidateRequest {
  // Candidate configuration to update.
  uint32 candidate_id = 1;
}

message UpdateCandidateResponse {
  // Return values:
  // - grpc::StatusCode::OK: Success.
  // - grpc::StatusCode::NOT_FOUND: Candidate wasn't found.
}

//
// RPC: EditCandidate()
//
message EditCandidateRequest {
  // Candidate configuration that is going to be edited.
  uint32 candidate_id = 1;

  // Data elements to be created or updated.
  repeated PathValue update = 2;

  // Paths to be deleted from the data tree.
  repeated PathValue delete = 3;
}

message EditCandidateResponse {
  // Return values:
  // - grpc::StatusCode::OK: Success.
  // - grpc::StatusCode::NOT_FOUND: Candidate wasn't found.
  // - grpc::StatusCode::INVALID_ARGUMENT: An error occurred while editing the
  //   candidate configuration.
}

//
// RPC: LoadToCandidate()
//
message LoadToCandidateRequest {
  enum LoadType {
    // Merge the data tree into the candidate configuration.
    MERGE = 0;

    // Replace the candidate configuration by the provided data tree.
    REPLACE = 1;
  }

  // Candidate configuration that is going to be edited.
  uint32 candidate_id = 1;

  // Load operation to apply.
  LoadType type = 2;

  // Configuration data.
  DataTree config = 3;
}

message LoadToCandidateResponse {
  // Return values:
  // - grpc::StatusCode::OK: Success.
  // - grpc::StatusCode::INVALID_ARGUMENT: An error occurred while performing
  //   the load operation.
}

//
// RPC: Commit()
//
message CommitRequest {
  enum Phase {
    // Validate if the configuration changes are valid (phase 0).
    VALIDATE = 0;

    // Prepare resources to apply the configuration changes (phase 1).
    PREPARE = 1;

    // Release previously allocated resources (phase 2).
    ABORT = 2;

    // Apply the configuration changes (phase 2).
    APPLY = 3;

    // All of the above (VALIDATE + PREPARE + ABORT/APPLY).
    //
    // This option can't be used to implement network-wide transactions,
    // since they require the manager entity to take into account the results
    // of the preparation phase of multiple managed devices.
    ALL = 4;
  }

  // Candidate configuration that is going to be committed.
  uint32 candidate_id = 1;

  // Transaction phase.
  Phase phase = 2;

  // Assign a comment to this commit.
  string comment = 3;
}

message CommitResponse {
  // Return values:
  // - grpc::StatusCode::OK: Success.
  // - grpc::StatusCode::FAILED_PRECONDITION: misuse of the two-phase commit
  //   protocol.
  // - grpc::StatusCode::INVALID_ARGUMENT: Validation error.
  // - grpc::StatusCode::RESOURCE_EXHAUSTED: Failure to allocate resource.

  // ID of the created configuration transaction (when the phase is APPLY
  // or ALL).
  uint32 transaction_id = 1;

  // Human-readable error or warning message(s).
  string error_message = 2;
}

//
// RPC: ListTransactions()
//
message ListTransactionsRequest {
  // Empty.
}

message ListTransactionsResponse {
  // Return values:
  // - grpc::StatusCode::OK: Success.

  // Transaction ID.
  uint32 id = 1;

  // Client that committed the transaction.
  string client = 2;

  // Date and time the transaction was committed.
  string date = 3;

  // Comment assigned to the transaction.
  string comment = 4;
}

//
// RPC: GetTransaction()
//
message GetTransactionRequest {
  // Transaction to retrieve.
  uint32 transaction_id = 1;

  // Encoding to be used.
  Encoding encoding = 2;

  // Include implicit default nodes.
  bool with_defaults = 3;
}

message GetTransactionResponse {
  // Return values:
  // - grpc::StatusCode::OK: Success.
  // - grpc::StatusCode::NOT_FOUND: Transaction wasn't found in the transactions
  //   database.

  DataTree config = 1;
}

//
// RPC: LockConfig()
//
message LockConfigRequest {
  // Empty.
}

message LockConfigResponse {
  // Return values:
  // - grpc::StatusCode::OK: Success.
  // - grpc::StatusCode::FAILED_PRECONDITION: Running configuration is
  //   locked already.
}

//
// RPC: UnlockConfig()
//
message UnlockConfigRequest {
  // Empty.
}

message UnlockConfigResponse {
  // Return values:
  // - grpc::StatusCode::OK: Success.
  // - grpc::StatusCode::FAILED_PRECONDITION: Running configuration isn't
  //   locked.
}

//
// RPC: Execute()
//
message ExecuteRequest {
  // Path of the YANG RPC or YANG Action.
  string path = 1;

  // Input parameters.
  repeated PathValue input = 2;
}

message ExecuteResponse {
  // Return values:
  // - grpc::StatusCode::OK: Success.

  // Output parameters.
  repeated PathValue output = 1;
}

// -------------------------------- Definitions --------------------------------

// YANG module.
message ModuleData {
  // Name of the YANG module;
  string name = 1;

  // Organization publishing the module.
  string organization = 2;

  // Latest revision of the module;
  string revision = 3;
}

// Supported encodings for YANG instance data.
enum Encoding {
  JSON = 0;
  XML = 1;
}

// Path-value pair representing a data element.
message PathValue {
  // YANG data path.
  string path = 1;

  // Data value.
  string value = 2;
}

// YANG instance data.
message DataTree {
  Encoding encoding = 1;
  string data = 2;
}