blob: 6be89838d8fcc6c43126fc9f75e63eeedf36f7f5 [file] [log] [blame]
Shad Ansari19249582018-04-30 04:31:00 +00001// Copyright (c) 2018 Open Networking Foundation
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at:
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15syntax = "proto3";
16package openolt;
17import "google/api/annotations.proto";
Girish Gowdruc8ed2ef2019-02-13 08:18:44 -080018import "tech_profile.proto";
Shad Ansari19249582018-04-30 04:31:00 +000019
20service Openolt {
21
Nicolas Palpacuere3fc0d22018-08-02 16:51:05 -040022 rpc DisableOlt(Empty) returns (Empty) {
23 option (google.api.http) = {
24 post: "/v1/Disable"
25 body: "*"
26 };
27 }
28
29 rpc ReenableOlt(Empty) returns (Empty) {
30 option (google.api.http) = {
31 post: "/v1/Reenable"
32 body: "*"
33 };
34 }
35
Shad Ansari19249582018-04-30 04:31:00 +000036 rpc ActivateOnu(Onu) returns (Empty) {
37 option (google.api.http) = {
38 post: "/v1/EnableOnu"
39 body: "*"
40 };
41 }
42
Jonathan Davis70c21812018-07-19 15:32:10 -040043 rpc DeactivateOnu(Onu) returns (Empty) {
44 option (google.api.http) = {
45 post: "/v1/DisableOnu"
46 body: "*"
47 };
48 }
49
50 rpc DeleteOnu(Onu) returns (Empty) {
51 option (google.api.http) = {
52 post: "/v1/DeleteOnu"
53 body: "*"
54 };
55 }
56
Shad Ansari19249582018-04-30 04:31:00 +000057 rpc OmciMsgOut(OmciMsg) returns (Empty) {
58 option (google.api.http) = {
59 post: "/v1/OmciMsgOut"
60 body: "*"
61 };
62 }
63
64 rpc OnuPacketOut(OnuPacket) returns (Empty) {
65 option (google.api.http) = {
66 post: "/v1/OnuPacketOut"
67 body: "*"
68 };
69 }
70
Nicolas Palpacuerb78def42018-06-07 12:55:26 -040071 rpc UplinkPacketOut(UplinkPacket) returns (Empty) {
72 option (google.api.http) = {
73 post: "/v1/UplinkPacketOut"
74 body: "*"
75 };
76 }
77
Shad Ansari19249582018-04-30 04:31:00 +000078 rpc FlowAdd(Flow) returns (Empty) {
79 option (google.api.http) = {
80 post: "/v1/FlowAdd"
81 body: "*"
82 };
83 }
84
Nicolas Palpacueredfaa0c2018-07-05 15:05:27 -040085 rpc FlowRemove(Flow) returns (Empty) {
86 option (google.api.http) = {
87 post: "/v1/FlowRemove"
88 body: "*"
89 };
90 }
91
nick7be062f2018-05-25 17:52:56 -040092 rpc HeartbeatCheck(Empty) returns (Heartbeat) {
93 option (google.api.http) = {
94 post: "/v1/HeartbeatCheck"
95 body: "*"
96 };
97 }
98
Nicolas Palpacuer05ea0ea2018-07-06 11:47:21 -040099 rpc EnablePonIf(Interface) returns (Empty) {
100 option (google.api.http) = {
101 post: "/v1/EnablePonIf"
102 body: "*"
103 };
104 }
105
Shad Ansaricb208782019-07-02 20:53:40 +0000106 rpc GetPonIf(Interface) returns (IntfIndication) {
107 option (google.api.http) = {
108 post: "/v1/GetPonIf"
109 body: "*"
110 };
111 }
112
Nicolas Palpacuer05ea0ea2018-07-06 11:47:21 -0400113 rpc DisablePonIf(Interface) returns (Empty) {
114 option (google.api.http) = {
115 post: "/v1/DisablePonIf"
116 body: "*"
117 };
118 }
Nicolas Palpacuer0f19b1a2018-06-07 17:29:31 -0400119
Nicolas Palpacuerdff96792018-09-06 14:59:32 -0400120 rpc GetDeviceInfo(Empty) returns (DeviceInfo) {
121 option (google.api.http) = {
122 post: "/v1/GetDeviceInfo"
123 body: "*"
124 };
125 }
126
Nicolas Palpacuer45180662018-08-02 14:01:51 -0400127 rpc Reboot(Empty) returns (Empty) {
128 option (google.api.http) = {
129 post: "/v1/Reboot"
130 body: "*"
131 };
132 }
133
Shad Ansari39739bc2018-09-13 21:38:37 +0000134 rpc CollectStatistics(Empty) returns (Empty) {
135 option (google.api.http) = {
136 post: "/v1/CollectStatistics"
137 body: "*"
138 };
139 }
140
Girish Gowdruc8ed2ef2019-02-13 08:18:44 -0800141 rpc CreateTrafficSchedulers(tech_profile.TrafficSchedulers) returns (Empty) {
Girish Gowdru7c4ec2d2018-10-25 00:29:54 -0700142 option (google.api.http) = {
Girish Gowdruc8ed2ef2019-02-13 08:18:44 -0800143 post: "/v1/CreateTrafficSchedulers"
Girish Gowdru7c4ec2d2018-10-25 00:29:54 -0700144 body: "*"
145 };
146 }
147
Girish Gowdruc8ed2ef2019-02-13 08:18:44 -0800148 rpc RemoveTrafficSchedulers(tech_profile.TrafficSchedulers) returns (Empty) {
Girish Gowdru7c4ec2d2018-10-25 00:29:54 -0700149 option (google.api.http) = {
Girish Gowdruc8ed2ef2019-02-13 08:18:44 -0800150 post: "/v1/RemoveTrafficSchedulers"
151 body: "*"
152 };
153 }
154
155 rpc CreateTrafficQueues(tech_profile.TrafficQueues) returns (Empty) {
156 option (google.api.http) = {
157 post: "/v1/CreateTrafficQueues"
158 body: "*"
159 };
160 }
161
162 rpc RemoveTrafficQueues(tech_profile.TrafficQueues) returns (Empty) {
163 option (google.api.http) = {
164 post: "/v1/RemoveTrafficQueues"
Girish Gowdru7c4ec2d2018-10-25 00:29:54 -0700165 body: "*"
166 };
167 }
168
Shad Ansari19249582018-04-30 04:31:00 +0000169 rpc EnableIndication(Empty) returns (stream Indication) {}
170}
171
172message Indication {
173 oneof data {
174 OltIndication olt_ind = 1;
175 IntfIndication intf_ind = 2;
176 IntfOperIndication intf_oper_ind = 3;
177 OnuDiscIndication onu_disc_ind = 4;
178 OnuIndication onu_ind = 5;
179 OmciIndication omci_ind = 6;
180 PacketIndication pkt_ind = 7;
Nicolas Palpacuer0f19b1a2018-06-07 17:29:31 -0400181 PortStatistics port_stats = 8;
182 FlowStatistics flow_stats = 9;
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -0400183 AlarmIndication alarm_ind= 10;
184 }
185}
186
187message AlarmIndication {
188 oneof data {
189 LosIndication los_ind = 1;
190 DyingGaspIndication dying_gasp_ind = 2;
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400191 OnuAlarmIndication onu_alarm_ind = 3;
192 OnuStartupFailureIndication onu_startup_fail_ind = 4;
193 OnuSignalDegradeIndication onu_signal_degrade_ind = 5;
194 OnuDriftOfWindowIndication onu_drift_of_window_ind = 6;
195 OnuLossOfOmciChannelIndication onu_loss_omci_ind = 7;
196 OnuSignalsFailureIndication onu_signals_fail_ind = 8;
197 OnuTransmissionInterferenceWarning onu_tiwi_ind = 9;
198 OnuActivationFailureIndication onu_activation_fail_ind = 10;
199 OnuProcessingErrorIndication onu_processing_error_ind = 11;
Shad Ansari19249582018-04-30 04:31:00 +0000200 }
201}
202
203message OltIndication {
204 string oper_state = 1; // up, down
Shad Ansari19249582018-04-30 04:31:00 +0000205}
206
207message IntfIndication {
208 fixed32 intf_id = 1;
209 string oper_state = 2; // up, down
210}
211
212message OnuDiscIndication {
213 fixed32 intf_id = 1;
214 SerialNumber serial_number = 2;
215}
216
217message OnuIndication {
218 fixed32 intf_id = 1;
219 fixed32 onu_id = 2;
220 string oper_state = 3; // up, down
Shad Ansarife9d9422018-05-22 23:25:02 +0000221 string admin_state = 5; // up, down
222 SerialNumber serial_number = 4;
Shad Ansari19249582018-04-30 04:31:00 +0000223}
224
225message IntfOperIndication {
226 string type = 1; // nni, pon
227 fixed32 intf_id = 2;
228 string oper_state = 3; // up, down
229}
230
231message OmciIndication {
232 fixed32 intf_id = 1;
233 fixed32 onu_id = 2;
234 bytes pkt = 3;
235}
236
237message PacketIndication {
Shad Ansariebc80362018-09-30 09:33:35 +0000238 string intf_type = 5; // nni, pon, unknown
Shad Ansari19249582018-04-30 04:31:00 +0000239 fixed32 intf_id = 1;
240 fixed32 gemport_id = 2;
241 fixed32 flow_id = 3;
Craig Lutgen967a1d02018-11-27 10:41:51 -0600242 fixed32 port_no = 6;
243 fixed64 cookie = 7;
Shad Ansari19249582018-04-30 04:31:00 +0000244 bytes pkt = 4;
245}
246
Nicolas Palpacuer05ea0ea2018-07-06 11:47:21 -0400247message Interface {
248 fixed32 intf_id = 1;
249}
250
nick7be062f2018-05-25 17:52:56 -0400251message Heartbeat {
252 fixed32 heartbeat_signature = 1;
253}
254
Shad Ansari19249582018-04-30 04:31:00 +0000255message Onu {
256 fixed32 intf_id = 1;
257 fixed32 onu_id = 2;
258 SerialNumber serial_number = 3;
Shad Ansari06101952018-07-25 00:22:09 +0000259 fixed32 pir = 4; // peak information rate assigned to onu
Shad Ansari19249582018-04-30 04:31:00 +0000260}
261
262message OmciMsg {
263 fixed32 intf_id = 1;
264 fixed32 onu_id = 2;
265 bytes pkt = 3;
266}
267
268message OnuPacket {
269 fixed32 intf_id = 1;
270 fixed32 onu_id = 2;
Craig Lutgenecd353a2018-12-12 22:33:17 -0600271 fixed32 port_no = 4;
Girish Gowdruc8ed2ef2019-02-13 08:18:44 -0800272 fixed32 gemport_id = 5;
Shad Ansari19249582018-04-30 04:31:00 +0000273 bytes pkt = 3;
274}
275
Nicolas Palpacuerb78def42018-06-07 12:55:26 -0400276message UplinkPacket {
277 fixed32 intf_id = 1;
278 bytes pkt = 2;
279}
280
Nicolas Palpacuerdff96792018-09-06 14:59:32 -0400281message DeviceInfo {
282 string vendor = 1;
283 string model = 2;
284 string hardware_version = 3;
285 string firmware_version = 4;
Craig Lutgen967a1d02018-11-27 10:41:51 -0600286 string device_id = 16;
287 string device_serial_number = 17;
Craig Lutgene4a202f2018-10-16 17:19:30 -0500288
289 // Total number of pon intf ports on the device
290 fixed32 pon_ports = 12;
291
292 // If using global per-device technology profile. To be deprecated
Nicolas Palpacuerdff96792018-09-06 14:59:32 -0400293 string technology = 5;
294 fixed32 onu_id_start = 6;
295 fixed32 onu_id_end = 7;
296 fixed32 alloc_id_start = 8;
297 fixed32 alloc_id_end = 9;
298 fixed32 gemport_id_start = 10;
299 fixed32 gemport_id_end = 11;
Craig Lutgene4a202f2018-10-16 17:19:30 -0500300 fixed32 flow_id_start = 13;
301 fixed32 flow_id_end = 14;
302
303 message DeviceResourceRanges {
304
305 // List of 0 or more intf_ids that use the same technology and pools.
306 // If 0 intf_ids supplied, it implies ALL interfaces
307 repeated fixed32 intf_ids = 1;
308
309 // Technology profile for this pool
310 string technology = 2;
311
312 message Pool {
313 enum PoolType {
314 ONU_ID = 0;
315 ALLOC_ID = 1;
316 GEMPORT_ID = 2;
317 FLOW_ID = 3;
318 }
319
320 enum SharingType {
321 DEDICATED_PER_INTF = 0;
Girish Gowdru7c4ec2d2018-10-25 00:29:54 -0700322 SHARED_BY_ALL_INTF_ALL_TECH = 1; // Shared across all interfaces in all technologies in all ranges
Craig Lutgenb2601f02018-10-23 13:04:31 -0500323 SHARED_BY_ALL_INTF_SAME_TECH = 2; // Shared across all interfaces of the same technology used in this range
Craig Lutgene4a202f2018-10-16 17:19:30 -0500324 }
325
326 PoolType type = 1;
327 SharingType sharing = 2;
328 fixed32 start = 3; // lower bound on IDs allocated from this pool
329 fixed32 end = 4; // upper bound on IDs allocated from this pool
330 }
Craig Lutgenb2601f02018-10-23 13:04:31 -0500331 repeated Pool pools = 3;
Craig Lutgene4a202f2018-10-16 17:19:30 -0500332 }
333 repeated DeviceResourceRanges ranges = 15;
Nicolas Palpacuerdff96792018-09-06 14:59:32 -0400334}
335
Shad Ansari19249582018-04-30 04:31:00 +0000336message Classifier {
337 fixed32 o_tpid = 1;
338 fixed32 o_vid = 2;
339 fixed32 i_tpid = 3;
340 fixed32 i_vid = 4;
341 fixed32 o_pbits = 5;
342 fixed32 i_pbits = 6;
343 fixed32 eth_type = 7;
344 bytes dst_mac = 8;
345 bytes src_mac = 9;
346 fixed32 ip_proto = 10;
347 fixed32 dst_ip = 11;
348 fixed32 src_ip = 12;
349 fixed32 src_port = 13;
350 fixed32 dst_port = 14;
351 string pkt_tag_type = 15; // untagged, single_tag, double_tag
352}
353
354message ActionCmd {
355 bool add_outer_tag = 1;
356 bool remove_outer_tag = 2;
357 bool trap_to_host = 3;
358}
359
360message Action {
361 ActionCmd cmd = 1;
362 fixed32 o_vid = 2;
363 fixed32 o_pbits = 3;
364 fixed32 o_tpid = 4;
365 fixed32 i_vid = 5;
366 fixed32 i_pbits = 6;
367 fixed32 i_tpid = 7;
368}
369
370message Flow {
Shad Ansari39739bc2018-09-13 21:38:37 +0000371 sfixed32 access_intf_id = 1;
372 sfixed32 onu_id = 2;
Craig Lutgen967a1d02018-11-27 10:41:51 -0600373 sfixed32 uni_id = 11;
Shad Ansari19249582018-04-30 04:31:00 +0000374 fixed32 flow_id = 3;
375 string flow_type = 4; // upstream, downstream, broadcast, multicast
Shad Ansari39739bc2018-09-13 21:38:37 +0000376 sfixed32 alloc_id = 10;
377 sfixed32 network_intf_id = 5;
378 sfixed32 gemport_id = 6;
Shad Ansari19249582018-04-30 04:31:00 +0000379 Classifier classifier = 7;
380 Action action = 8;
Shad Ansari39739bc2018-09-13 21:38:37 +0000381 sfixed32 priority = 9;
Craig Lutgen967a1d02018-11-27 10:41:51 -0600382 fixed64 cookie = 12; // must be provided for any flow with trap_to_host action. Returned in PacketIndication
383 fixed32 port_no = 13; // must be provided for any flow with trap_to_host action. Returned in PacketIndication
Shad Ansari19249582018-04-30 04:31:00 +0000384}
385
386message SerialNumber {
387 bytes vendor_id = 1;
388 bytes vendor_specific = 2;
389}
390
Nicolas Palpacuer0f19b1a2018-06-07 17:29:31 -0400391message PortStatistics {
392 fixed32 intf_id = 1;
393 fixed64 rx_bytes = 2;
394 fixed64 rx_packets = 3;
395 fixed64 rx_ucast_packets = 4;
396 fixed64 rx_mcast_packets = 5;
397 fixed64 rx_bcast_packets = 6;
398 fixed64 rx_error_packets = 7;
399 fixed64 tx_bytes = 8;
400 fixed64 tx_packets = 9;
401 fixed64 tx_ucast_packets = 10;
402 fixed64 tx_mcast_packets = 11;
403 fixed64 tx_bcast_packets = 12;
404 fixed64 tx_error_packets = 13;
405 fixed64 rx_crc_errors = 14;
406 fixed64 bip_errors = 15;
407 fixed32 timestamp = 16;
408}
409
410message FlowStatistics {
411 fixed32 flow_id = 1;
412 fixed64 rx_bytes = 2;
413 fixed64 rx_packets = 3;
414 fixed64 tx_bytes = 8;
415 fixed64 tx_packets = 9;
416 fixed32 timestamp = 16;
417}
418
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -0400419message LosIndication {
420 fixed32 intf_id = 1;
421 string status = 2;
422}
423
424message DyingGaspIndication {
425 fixed32 intf_id = 1;
426 fixed32 onu_id = 2;
427 string status = 3;
428}
429
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400430message OnuAlarmIndication {
431 fixed32 intf_id = 1;
432 fixed32 onu_id = 2;
433 string los_status = 3;
434 string lob_status = 4;
435 string lopc_miss_status = 5;
436 string lopc_mic_error_status = 6;
437}
438
439message OnuStartupFailureIndication {
440 fixed32 intf_id = 1;
441 fixed32 onu_id = 2;
442 string status = 3;
443}
444
445message OnuSignalDegradeIndication {
446 fixed32 intf_id = 1;
447 fixed32 onu_id = 2;
448 string status = 3;
449 fixed32 inverse_bit_error_rate = 4;
450}
451
452message OnuDriftOfWindowIndication {
453 fixed32 intf_id = 1;
454 fixed32 onu_id = 2;
455 string status = 3;
456 fixed32 drift = 4;
457 fixed32 new_eqd = 5;
458}
459
460message OnuLossOfOmciChannelIndication {
461 fixed32 intf_id = 1;
462 fixed32 onu_id = 2;
463 string status = 3;
464}
465
466message OnuSignalsFailureIndication {
467 fixed32 intf_id = 1;
468 fixed32 onu_id = 2;
469 string status = 3;
470 fixed32 inverse_bit_error_rate = 4;
471}
472
473message OnuTransmissionInterferenceWarning {
474 fixed32 intf_id = 1;
475 fixed32 onu_id = 2;
476 string status = 3;
477 fixed32 drift = 4;
478}
479
480message OnuActivationFailureIndication {
481 fixed32 intf_id = 1;
482 fixed32 onu_id = 2;
483}
484
485message OnuProcessingErrorIndication {
486 fixed32 intf_id = 1;
487 fixed32 onu_id = 2;
488}
489
Shad Ansari19249582018-04-30 04:31:00 +0000490message Empty {}
Girish Gowdruc8ed2ef2019-02-13 08:18:44 -0800491