blob: e8144803a8732fae0e14c3c9e1ad6df087b05228 [file] [log] [blame]
Nathan Skrzypczakd4a70642021-10-08 14:01:27 +02001VPP API Language
2================
3
4The VPP binary API is a message passing API. The VPP API language is
5used to define a RPC interface between VPP and its control plane. The
6API messages supports shared memory transport and Unix domain sockets
7(SOCK_STREAM).
8
9The wire format is essentially that of a network formatted (big-endian)
10packed C struct.
11
12The VPP API compiler is located in *src/tools/vppapigen* and can
13currently compile to JSON or C (used by the VPP binary itself).
14
15Language definition
16-------------------
17
18Defining a messages
19~~~~~~~~~~~~~~~~~~~
20
21There are 3 types of message exchanges:
22
23- Request/Reply The client sends a request message and the server
24 replies with a single reply message. The convention is that the reply
25 message is named as method_name + \_reply.
26
27- Dump/Detail The client sends a bulk request message to the server,
28 and the server replies with a set of detail messages. These messages
29 may be of different type. A dump/detail call must be enclosed in a
30 control ping block (Otherwise the client will not know the end of the
31 bulk transmission). The method name must end with method + \_dump”,
32 the reply message should be named method + \_details”. The exception
33 here is for the methods that return multiple message types
34 (e.g. sw_interface_dump). The Dump/Detail methods are typically used
35 for acquiring bulk information, like the complete FIB table.
36
37- Events The client can register for getting asynchronous notifications
38 from the server. This is useful for getting interface state changes,
39 and so on. The method name for requesting notifications is
40 conventionally prefixed with want\_”. E.g. want_interface_events”.
41 Which notification types results from an event registration is
42 defined in the service definition.
43
44A message from a client must include the client_index’, an opaque
45cookie identifying the sender, and a context field to let the client
46match request with reply.
47
48An example of a message definition. The client sends the show_version
49request, the server replies with the show_version_reply.
50
51The *client_index* and *context* fields are required in all requests.
52The *context* is returned by the server and is used by the client to
53match up request and reply messages.
54
55.. code-block:: c
56
57 define show_version
58 {
59 u32 client_index;
60 u32 context;
61 };
62 define show_version_reply
63 {
64 u32 context;
65 i32 retval;
66 string program [32];
67 string version [32];
68 string build_date [32];
69 /* The final field can be a variable length argument */
70 string build_directory [];
71 };
72
73The flags are not used by the clients, but have special meaning for some
74of the tracing and debugging of the API. The *autoreply* flag is a
75shorthand for a reply message with just a *retval* field.
76
77.. code-block:: c
78
79 define : DEFINE ID '{' block_statements_opt '}' ';'
80 define : flist DEFINE ID '{' block_statements_opt '}' ';'
81 flist : flag
82 | flist flag
83 flag : MANUAL_PRINT
84 | MANUAL_ENDIAN
85 | DONT_TRACE
86 | AUTOREPLY
87
88 block_statements_opt : block_statements
89 block_statements : block_statement
90 | block_statements block_statement
91 block_statement : declaration
92 | option
93 declaration : type_specifier ID ';'
94 | type_specifier ID '[' ID '=' assignee ']' ';'
95 declaration : type_specifier ID '[' NUM ']' ';'
96 | type_specifier ID '[' ID ']' ';'
97 type_specifier : U8
98 | U16
99 | U32
100 | U64
101 | I8
102 | I16
103 | I32
104 | I64
105 | F64
106 | BOOL
107 | STRING
108 type_specifier : ID
109
110Options
111~~~~~~~
112
113The *option* word is used to specify meta information. The only current
114use is to specify a semantic version of the .api file itself.
115
116Example:
117
118.. code-block:: c
119
120 option version = "1.0.0";
121
122.. code-block:: c
123
124
125 option : OPTION ID '=' assignee ';'
126 assignee : NUM
127 | TRUE
128 | FALSE
129 | STRING_LITERAL
130
131Defining new types
132~~~~~~~~~~~~~~~~~~
133
134New user defined types are defined just like messages. A typedef has two
135forms. It can either define an alias for a different type (or array).
136
137Example:
138
139.. code-block:: c
140
141 typedef u8 ip4_address[4];
142 typedef u8 ip6_address[16];
143
144Where the above defines two new types *vl_api_ip4_address_t* and
145*vl_api_ip6_address_t*. These are aliases for the underlying u8 array.
146
147In the other form, it is used to specify an abstract data type.
148
149.. code-block:: c
150
151 enum address_family {
152 ADDRESS_IP4 = 0,
153 ADDRESS_IP6,
154 };
155
156 union address_union {
157 vl_api_ip4_address_t ip4;
158 vl_api_ip6_address_t ip6;
159 };
160
161 typedef address {
162 vl_api_address_family_t af;
163 vl_api_address_union_t un;
164 };
165
166Where the new type *vl_api_address_t*
167
168.. code-block:: c
169
170 typedef : TYPEDEF ID '{' block_statements_opt '}' ';'
171 typedef : TYPEDEF declaration
172
173Importing Definitions
174~~~~~~~~~~~~~~~~~~~~~
175
176You can use definitions from other .api files by importing them. To
177import another .apis definitions, you add an import statement to the
178top of your file:
179
180import vnet/ip/ip_types.api”;
181
182By default you can only use definitions from directly imported .api
183files.
184
185The API compiler searches for imported files in a set of directories
186specified on the API compiler command line using the includedir flag.
187
188.. code-block:: c
189
190 import : IMPORT STRING_LITERAL ';'
191
192Comments
193~~~~~~~~
194
195The API language uses C style comments.
196
197.. code-block:: c
198
199 /* */
200 //
201
202Enumerations
203~~~~~~~~~~~~
204
205Enums are similar to enums in C.
206
207Every enum definition must contain a constant that maps to zero as its
208first element. This is because:
209
210There must be a zero value, so that we can use 0 as a numeric default
211value. The zero value needs to be the first element.
212
213As in C, enums can be used as flags or just as numbers. The on-wire, and
214in memory representation size of an enum can be specified. Not all
215language bindings will support that. The default size is 4 (u32).
216
217Example
218
219.. code-block:: c
220
221 enum ip_neighbor_flags
222 {
223 IP_API_NEIGHBOR_FLAG_NONE = 0,
224 IP_API_NEIGHBOR_FLAG_STATIC = 0x1,
225 IP_API_NEIGHBOR_FLAG_NO_FIB_ENTRY = 0x2,
226 };
227
228Which generates the vl_api_ip_neighbor_flags_t in the C binding. In
229Python that is represented as an IntFlag object
230VppEnum.vl_api_ip_neighbor_flags_t.
231
232.. code-block:: c
233
234 enum : ENUM ID '{' enum_statements '}' ';'
235 enum : ENUM ID ':' enum_size '{' enum_statements '}' ';'
236 enum_size : U8
237 | U16
238 | U32
239 enum_statements : enum_statement
240 | enum_statements enum_statement
241 enum_statement : ID '=' NUM ','
242 | ID ','
243
244Services
245~~~~~~~~
246
247The service statement defines the relationship between messages. For
248request/response and dump/details messages it ties the request with the
249reply. For events, it specifies which events that can be received for a
250given ``want_*`` call.
251
252Example:
253
254.. code-block:: c
255
256 service {
257 rpc want_interface_events returns want_interface_events_reply
258 events sw_interface_event;
259 };
260
261Which states that the request want_interface_events returns a
262want_interface_events_reply and if enabled the client will receive
263sw_interface_event messages whenever interface states changes.
264
265.. code-block:: c
266
267 service : SERVICE '{' service_statements '}' ';'
268 service_statements : service_statement
269 | service_statements service_statement
270 service_statement : RPC ID RETURNS NULL ';'
271 | RPC ID RETURNS ID ';'
272 | RPC ID RETURNS STREAM ID ';'
273 | RPC ID RETURNS ID EVENTS event_list ';'
274 event_list : events
275 | event_list events
276 events : ID
277 | ID ','
278
279Types
280-----
281
282Scalar Value Types
283~~~~~~~~~~~~~~~~~~
284
285========= ======== =============== ===========
286.api type size C type Python type
287========= ======== =============== ===========
288i8 1 i8 int
289u8 1 u8 int
290i16 2 i16 int
291u16 2 u16 int
292i32 4 i32 int
293u32 4 u32 int
294i64 8 i64 int
295u64 8 u64 int
296f64 8 f64 float
297bool 1 bool boolean
298string variable vl_api_string_t str
299========= ======== =============== ===========
300
301User Defined Types
302~~~~~~~~~~~~~~~~~~
303
304vnet/ip/ip_types.api
305^^^^^^^^^^^^^^^^^^^^
306
307+--------------------+--------+-------------+-------------------------+
308| .api type | size | C type | Python type |
309+====================+========+=============+=========================+
310| vl_api_address_t | 20 | vl_ap | ` |
311| | | i_address_t | `<class 'ipaddress.IPv4 |
312| | | | Address'> or <class 'ip |
313| | | | address.IPv6Address'>`` |
314+--------------------+--------+-------------+-------------------------+
315| vl | 4 | vl_api_ip | ``<class 'ip |
316| _api_ip4_address_t | | 4_address_t | address.IPv4Address'>`` |
317+--------------------+--------+-------------+-------------------------+
318| vl | 16 | vl_api_ip | ``<class 'ip |
319| _api_ip6_address_t | | 6_address_t | address.IPv6Address'>`` |
320+--------------------+--------+-------------+-------------------------+
321| vl_api_prefix_t | 21 | vl_a | ` |
322| | | pi_prefix_t | `<class 'ipaddress.IPv4 |
323| | | | Network'> or <class 'ip |
324| | | | address.IPv6Network'>`` |
325+--------------------+--------+-------------+-------------------------+
326| v | 5 | vl_api_i | ``<class 'ip |
327| l_api_ip4_prefix_t | | p4_prefix_t | address.IPv4Network'>`` |
328+--------------------+--------+-------------+-------------------------+
329| v | 17 | vl_api_i | ``<class 'ip |
330| l_api_ip6_prefix_t | | p6_prefix_t | address.IPv6Network'>`` |
331+--------------------+--------+-------------+-------------------------+
332| vl_api_ip4_add | 5 | vl_api_ip4 | ``<class 'ipad |
333| ress_with_prefix_t | | _address_wi | dress.IPv4Interface'>`` |
334| | | th_prefix_t | |
335+--------------------+--------+-------------+-------------------------+
336| vl_api_ip6_add | 17 | vl_api_ip6 | ``<class 'ipad |
337| ress_with_prefix_t | | _address_wi | dress.IPv6Interface'>`` |
338| | | th_prefix_t | |
339+--------------------+--------+-------------+-------------------------+
340
341vnet/ethernet/ethernet_types.api
342^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
343
344+---------------------+------+---------------------+-------------------+
345| .api type | size | C type | Python type |
346+=====================+======+=====================+===================+
347| ``vl_ | 6 | ``vl_ | ``class 'vpp_pa |
348| api_mac_address_t`` | | api_mac_address_t`` | pi.MACAddress'>`` |
349+---------------------+------+---------------------+-------------------+
350
351vnet/interface_types.api
352^^^^^^^^^^^^^^^^^^^^^^^^
353
354======================== ==== ======================== ===========
355.api type size C type Python type
356======================== ==== ======================== ===========
357vl_api_interface_index_t 4 vl_api_interface_index_t int
358======================== ==== ======================== ===========
359
360New explicit types
361~~~~~~~~~~~~~~~~~~
362
363String versus bytes
364^^^^^^^^^^^^^^^^^^^
365
366A byte string with a maximum length of 64:
367
368.. code-block:: c
369
370 u8 name[64];
371
372Before the string type was added, text string were defined like this.
373The implications of that was the user would have to know if the field
374represented a \\0 ended C-string or a fixed length byte string. The wire
375format of the string type is a u32 length
376
377An IPv4 or IPv6 address was previously defined like:
378
379.. code-block:: c
380
381 u8 is_ip6;
382 u8 address[16];
383
384Which made it hard for language bindings to represent the address as
385anything but a byte string. The new explicit address types are shown
386above.
387
388Language generators
389-------------------
390
391The VPP API compiler currently has two output modules. One generating
392JSON and one generating C header files that are directly used by the VPP
393infrastructure and plugins.
394
395The C/C++, Python, Go Lua, and Java language bindings are generated
396based on the JSON files.
397
398Future considerations
399~~~~~~~~~~~~~~~~~~~~~
400
401- Generate C/C++ (vapi) client code directly from vppapigen
402- Embed JSON definitions into the API server, so dynamic languages
403 can download them directly without going via the filesystem and JSON
404 files.
Dave Wallacef72a32a2023-07-06 16:38:49 -0400405
406API Change Process
407------------------
408
409Purpose
410~~~~~~~
411
412To minimize the disruptions to the consumers of the VPP API, while permitting
413the innovation for the VPP itself.
414
415Historically, API changes in VPP master branch were allowed at any point in time
416outside of a small window between the API freeze milestone and RC1 milestone.
417The API changes on the throttle branches were not permitted at all. This model
418proved workable, however all the production use cases ended up on throttle
419branches, with a lot of forklift activity when it is the time to upgrade to the
420next branch.
421
422This formally structured API change process harmonizes the behavior across all
423the VPP branches, and allows more flexibility for the consumer, while permitting
424the innovation in the VPP itself.
425
426The Core Promise
427~~~~~~~~~~~~~~~~
428
429"If a user is running a VPP version N and does not use any deprecated APIs, they
430should be able to simply upgrade the VPP to version N+1 and there should be no
431API breakage".
432
433In-Progress, Production and Deprecated APIs
434~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
435
436This proposal adds a classification of stability of an API call:
437
438- "In-Progress": APIs in the process of the development, experimentation, and
439 limited testing.
440
441- "Production": tested as part of the "make test", considered stable for general
442 usage.
443
444- "Deprecated": used as a flag on Production APIs which are slated to be
445 deprecated in the future release.
446
447The "In-Progress" APIs or the APIs with the semantic version of 0.x.y are not
448subject to any stability checks, thus the developers are free to introduce them,
449modify their signatures, and as well remove them completely at will. The users
450should not use the in-progress APIs without the interactions with its
451maintainers, nor base the production code on those APIs. The goal of
452"in-progress" APIs to allow rapid iteration and modifications to ensure the API
453signature and function is stabilized. These API calls may be used for testing or
454experimentation and prototyping.
455
456When the maintainer is satisfied with the quality of the APIs, and ensures that
457they are tested as part of the "Make test" runs, they can transition their
458status to "Production".
459
460The "Production" APIs can *NOT* be changed in any way that modifies their
461representation on the wire and the signature (thus CRC). The only change that
462they may incur is to be marked as "Deprecated". These are the APIs that the
463downstream users can use for production purposes. They exist to fulfill a core
464promise of this process: The "Deprecated" APIs are the "Production" APIs that
465are about to be deleted. To ensure the above core promise is maintained, if the
466API call was marked as deprecated at any point between RC1 of release N and RC1
467of release N+1, it MUST NOT be deleted until the RC1 milestone of the
468release N+2. The deprecated API SHOULD specify a replacement API - which MUST
469be a Production API, so as not to decrease the level of stability.
470
471
472The time interval between a commit that marks an API as deprecated and a commit
473that deletes that API MUST be at least equal the time between the two subsequent
474releases (currently 4 months).
475
476
477Doing so allows a for a good heads-up to those who are using the
478"one free upgrade" property to proactively catch and test the transition from
479the deprecated APIs using the master.
480
481
482Marking an API as deprecated just 1 day before RC1 branch pull and then deleting
483that API one day after does *technically* satisfy "one free upgrade" promise,
484but is rather hostile to the users that are proactively tracking it.
485
486Semantic API Versioning
487~~~~~~~~~~~~~~~~~~~~~~~
488
489VPP APIs use semantic versioning according to semver.org, with the compatibility
490logic being applied at the moment the messages are marked as deprecated.
491
492To discuss: i.e. if message_2 is being introduced which deprecates the
493message_1, then that same commit should increase the major version of the API.
494
495The 0.x.x API versions, by virtue of being in-progress, are exempt from this
496treatment.
497
498Tooling
499~~~~~~~
500
501See https://gerrit.fd.io/r/c/vpp/+/26881:
502
503crcchecker.py is a tool to enforce the policy, with a few other bonus uses:
504
505extras/scripts/crcchecker.py --check-patchset # returns -1 if backwards incompatible extras/scripts/crcchecker.py --dump-manifest extras/scripts/crcchecker.py --git-revision v20.01 <files> extras/scripts/crcchecker.py -- diff <oldfile> <newfile>
506
507Notice that you can use this tool to get the list of API changes since a given past release.
508
509The policy:
510
511.. highlight:: none
512
513.. code-block::
514
515 1. Production APIs should never change.
516 The definition of a "production API" is if the major version in
517 the API file is > 0 that is not marked as "in-progress".
518 2. APIs that are experimental / not released are not checked.
519 An API message can be individually marked as in progress,
520 by adding the following in the API definition:
521 option in_progress;
522 3. An API can be deprecated in three-to-six steps (the steps
523 with letters can be combined or split, depending on situation):
524 Step 1a: A new "in-progress" API new_api_2 is added that
525 is deemed to be a replacement.
526 Step 1b: The existing API is marked as "replaced_by" this new API:
527 option replaced_by="new_api_2";
528 Step 2a: The new_api_2 is marked as production by deleting its in-progress status,
529 provided that this API does have sufficient test coverage to deem it well tested.
530 Step 2b: the existing API is marked as "deprecated":
531 option deprecated="optional short message to humans reading it";
532 Step 3: the deprecated API is deleted.
533
534There is a time constraint that the minimum interval between the steps 2 and 3
535must be at least 4 months. The proposal is to have step 2 around a couple of
536weeks before the F0 milestone for a release, as triggered by the release manager
537(and in the future by an automated means).
538
539Use Cases
540~~~~~~~~~
541
542Adding A New Field To A Production API
543^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
544
545The simplest way to add a new field to a Production API message *foo_message* is
546to create a new In-Progress message *foo_message_v2*, and add the field to that
547one. Typically it will be an extension - so the API message handlers are
548trivially chained. If there are changes/adjustments that are needed, this new
549message can be freely altered without bothering the users of the Production API.
550
551When the maintainer is happy with the quality of the implementation, and the
552foo_message_v2 is tested in "make test" to the same extent as the foo_message,
553they can make two commits: one, removing the in-progress status for
554foo_message_v2, and the second one - deprecating foo_message and pointing the
555foo_message_v2 as the replacement. Technically after the next throttle pull,
556they can delete the foo_message - the deprecation and the replacement will be
557already in the corresponding branch.
558
559Rapid Experimentation For A New Feature
560^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
561
562Add a message that is in-progress, and keep iterating with this message. This
563message is not subject to the change control process.
564
565An In-progress API Accidentally Marked As "production"
566^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
567
568This is expected to mainly apply during the initial period of 20.05->20.09, the
569proposal is to have it active for 4 weeks from Jun 17 till July 15th, with the
570following process.
571
572If a developer finds that a given API or a set of APIs is not ready for
573production due to lack of tests and/or the general API stability, then they:
574
575- Create a new gerrit change with *just* the marking of the API as
576 in_progress, subject being: "api: <feature> api message downgrade" and
577 a comment identifying which APIs are being downgraded and why.
578
579- Add ayourtch@gmail.com or the current Release Manager as a reviewer --
580 for help in guiding the process and to ensure that the gerrit change is not
581 forgotten.
582
583- Send an email to vpp-dev mailing list with the subject being the same as the
584 one-liner commit message, reference to the gerrit change, and the reasoning.
585
586- Wait for the timeout period of two weeks for the feedback.
587
588- If no feedback received, assume the community agreement and commit the
589 change to master branch.
590
591This needs to be highlighted that this process is an *exception* - normally the
592transition is always in_progress => production => deprecated.
593
594API Change Examples
595~~~~~~~~~~~~~~~~~~~
596
597https://gerrit.fd.io/r/q/+is:merged+message:%2522%255Eapi:.*%2524%2522