summaryrefslogtreecommitdiffstats
path: root/doc/user/mgmtd.rst
blob: aa7ccaac3a65fbe19109267c6f9ee6671a36b060 (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
.. _mgmtd:

*************************
MGMTd (Management Daemon)
*************************

The FRR Management Daemon (from now on referred to as MGMTd) is a new
centralized entity representing the FRR Management Plane which can take
management requests from any kind of UI/Frontend entity (e.g. CLI, Netconf,
Restconf, Grpc etc.) over a new unified and common Frontend interface and
can help maintain configurational data or retrieve operational data from
any number of FRR managed entities/components that have been integrated
with the new FRR Centralised Management Framework.

For organizing the management data to be owned by the FRR Management plane,
management data is stored in YANG in compliance with a pre-defined set
of YANG based schema. Data shall also be stored/retrieved in YANG format only.

The MGMTd also acts as a separate computational entity for offloading much
of the management related computational overload involved in maintaining of
management data and processing of management requests, from individual
component daemons (which can otherwise be a signficant burden on the individual
components, affecting performance of its other functionalities).

Lastly, the MGMTd works in-tandem with one (or more) MGMT Frontend
Clients and a bunch of MGMT Backend Clients to realize the entirety
of the FRR Management plane. Some of the advanatages of this new framework
are:

 1. Consolidation and management of all Management data by a single entity.
 2. Better control over configuration validation, commit and rollback.
 3. Faster collection of configuration data (without needing to involve
    individual component daemons).
 4. Offload computational burden of YANG data parsing and validations
    of new configuration data being provisoned away from individual
    component daemons
 5. Improve performance of individual component daemons while loading
    huge configuration or retrieving huge operational dataset.

The new FRR Management Daemon consists of the following sub-components:
 - MGMT Frontend Interface
 - MGMT Backend Interface
 - MGMT Transaction Engine

.. _mgmt_fe:

MGMT Frontend Interface
=======================

The MGMT Frontend Interface is a bunch of message-based APIs that lets
any UI/Frontend client to interact with the MGMT daemon to requests a
set of management operations on a specific datastore/database.
Following is a list of databases/datastores supported by the MGMT
Frontend Interface and MGMTd:

 - Candidate Database:

  - Consists of configuration data items only.
  - Data can be edited anytime using SET_CONFIG API.
  - Data can be retrieved anytime using GET_CONFIG/GET_DATA API.

 - Running Database:

  - Consists of configuration data items only.
  - Data cannot be edited using SET_CONFIG API.
  - Data can only be modified using COMMIT_CONFIG API after which un-committed
    data from Candidate database will be first validated and applied to
    individualBackend component(s). Only on successful validation and apply on
    all individual components will the new data be copied over to the Running
    database.
  - Data can be retrieved anytime using GET_CONFIG/GET_DATA API.

 - Operational Database:

  - Consists of non-configurational data items.
  - Data is not stored on MGMT daemon. Rather it will be need to be fetched
    in real-time from the corresponding Backend component (if present).
  - Data can be retrieved anytime using GET_DATA API.

Frontend Clients connected to MGMTd via Frontend Interface can themselves have
multiple connections from one (or more) of its own remote clients. The MGMT
Frontend Interface supports reresenting each of the remote clients for a given
Frontend client(e.g. Netconf clients on a single Netconf server) as individual
Frontend Client Sessions. So a single connection from a single Frontend Client
can create more than one Frontend Client sessions.

Following are some of the management operations supported:
 - INIT_SESSION/CLOSE_SESSION: Create/Destroy a session. Rest of all the
   operations are supported only in the context of a specific session.
 - LOCK_DB/UNLOCK_DB: Lock/Unlock Management datastores/databases.
 - GET_CONFIG/GET_DATA: Retrieve configurational/operational data from a
   specific datastore/database.
 - SET_CONFIG/DELETE_CONFIG: Add/Modify/Delete specific data in a specific
   datastore/database.
 - COMMIT_CONFIG: Validate and/or apply the uncommited set of configurations
   from one configuration database to another.
 - Currently committing configurations from Candidate to Running database
   is only allowed, and not vice versa.

The exact set of message-based APIs are represented as Google Protobuf
messages and can be found in the following file distributed with FRR codebase.

.. code-block:: frr

   lib/mgmt.proto

The MGMT daemon implements a MGMT Frontend Server that opens a UNIX
socket-based IPC channel on the following path to listen for incoming
connections from all possible Frontend clients:

.. code-block:: frr

   /var/run/frr/mgmtd_fe.sock

Each connection received from a Frontend client is managed and tracked
as a MGMT Frontend adapter by the MGMT Frontend Adapter sub-component
implemented by MGMTd.

To facilitate faster development/integration of Frontend clients with
MGMT Frontend Interface, a C-based library has been developed. The API
specification of this library can be found at:

.. code-block:: frr

   lib/mgmt_fe_client.h

Following is a list of message types supported on the MGMT Frontend Interface:
 - SESSION_REQ<Client-Connection-Id, Destroy>
 - SESSION_REPLY<Client-Connection-Id, Destroy, Session-Id>
 - LOCK_DB_REQ <Session-Id, Database-Id>
 - LOCK_DB_REPLY <Session-Id, Database-Id>
 - UNLOCK_DB_REQ <Session-Id, Database-Id>
 - UNLOCK_DB_REPLY <Session-Id, Database-Id>
 - GET_CONFIG_REQ <Session-Id, Database-Id, Base-Yang-Xpath>
 - GET_CONFIG_REPLY <Session-Id, Database-Id, Base-Yang-Xpath, Yang-Data-Set>
 - SET_CONFIG_REQ <Session-Id, Database-Id, Base-Yang-Xpath, Delete, ...>
 - SET_CONFIG_REPLY <Session-Id, Database-id, Base-Yang-Xpath, ..., Status>
 - COMMIT_CONFIG_REQ <Session-Id, Source-Db-Id, Dest-Db-Id>
 - COMMIT_CONFIG_REPLY <Session-Id, Source-Db-id, Dest-Db-Id, Status>
 - GET_DATA_REQ <Session-Id, Database-Id, Base-Yang-Xpath>
 - GET_DATA_REPLY <Session-Id, Database-id, Base-Yang-Xpath, Yang-Data-Set>
 - REGISTER_NOTIFY_REQ <Session-Id, Database-Id, Base-Yang-Xpath>
 - DATA_NOTIFY_REQ <Database-Id, Base-Yang-Xpath, Yang-Data-Set>

Please refer to the MGMT Frontend Client Developers Reference and Guide
(coming soon) for more details.

MGMTD Backend Interface
=======================
The MGMT Backend Interface is a bunch of message-based APIs that can be
used by individual component daemons like BGPd, Staticd, Zebra to connect
with MGMTd and utilize the new FRR Management Framework to let any Frontend
clients to retrieve any operational data or manipulate any configuration data
owned by the individual daemon component.

Like the MGMT Frontend Interface, the MGMT Backend Interface is is also
comprised of the following:

 - MGMT Backend Server (running on MGMT daemon)
 - MGMT Backend Adapter (running on MGMT daemon)
 - MGMT Backend client (running on Backend component daemons)

The MGMT Backend Client and MGMT Backend Adapter sub-component communicates
using a specific set of message-based APIs.

The exact set of message-based APIs are represented as Google Protobuf
messages and can be found in the following file distributed with FRR codebase.

.. code-block:: frr

   lib/mgmt.proto

The MGMT daemon implements a MGMT Backend Server that opens a UNIX
socket-based IPC channel on the following path to listen for incoming
connections from all possible Backend clients:

.. code-block:: frr

   /var/run/frr/mgmtd_be.sock

Each connection received from a Backend client is managed and tracked
as a MGMT Backend adapter by the MGMT Backend Adapter sub-component
implemented by MGMTd.

To facilitate faster development/integration of Backend clients with
MGMTd, a C-based library has been developed. The API specification
of this library can be found at:

.. code-block:: frr

   lib/mgmt_be_client.h

Following is a list of message types supported on the MGMT Backend Interface:

 - SUBSCRIBE_REQ <Req-Id, Base-Yang-Xpath, Filter-Type>
 - SUBSCRIBE_REPLY <Req-Id, Status>
 - TXN_REQ <Txn-Id, Create>
 - TXN_REPLY <Txn-Id, Status>
 - CREATE_CFGDATA_REQ <Txn-Id, Req-Id, Batch-Id, ConfigDataContents>
 - CREATE_CFGDATA_ERROR <Txn-Id, Req-Id, Batch-Id, Status>
 - VALIDATE_CFGDATA_REQ <Txn-Id, Batch-Id>
 - VALIDATE_CFGDATA_REPLY <Txn-Id, Batch-Id, Status, ErrorInfo>
 - APPLY_CFGDATA_REQ <Txn-Id, Batch-Id>
 - APPLY_CFGDATA_REPLY <Txn-Id, Batch-Id, Status, ErrorInfo>
 - GET_OPERDATA_REQ <Txn-Id, Base-Yang-Xpath, Filter-Type>
 - GET_OPERDATA_REPLY <Txn-Id, OperDataContents>

Please refer to the MGMT Backend Client Developers Reference and Guide
(coming soon) for more details.

MGMTD Transaction Engine
========================

The MGMT Transaction sub-component is the main brain of the MGMT daemon that
takes management requests from one (or more) Frontend Client translates
them into transactions and drives them to completion in co-oridination with
one (or more) Backend client daemons involved in the request.

A transaction can be seen as a set of management procedures executed over
the Backend Interface with one (or more) individual Backend component
daemons, as a result of some management request initiated from a specific
Frontend client session. These group of operations on the Backend Interface
with one (or more) individual components involved should be executed without
taking any further management requests from other Frontend client sessions.
To maintain this kind of atomic behavior a lock needs to be acquired
(sometimes implicitly if not explicitly) by the corresponding Frontend client
session, on the various datastores/databases involved in the management request
being executed. The same datastores/databases need to be unlocked when all
the procedures have been executed and the transaction is being closed.

Following are some of the transaction types supported by MGMT:

 - Configuration Transactions

  - Used to execute management operations like SET_CONFIG and COMMIT_CONFIG
    that involve writing/over-writing the contents of Candidate and Running
    databases.
  - One (and only) can be created and be in-progress at any given time.
  - Once initiated by a specific Frontend Client session and is still
    in-progress, all subsequent SET_CONFIG and COMMIT_CONFIG operations
    from other Frontend Client sessions will be rejected and responded
    with failure.
  - Requires acquiring write-lock on Candidate (and later Running) databases.

 - Show Transactions

  - Used to execute management operations like GET_CONFIG and GET_DATA
    that involve only reading the contents of Candidate and Running
    databases (and sometimes real-time retrieval of operational data
    from individual component daemons).
  - Multiple instance of this transaction type can be created and be
    in-progress at any given time.
  - However, when a configuration transaction is currently in-progress
    show transaction can be initiated by any Frontend Client session.
  - Requires acquiring read-lock on Candidate and/or Running databases.
  - NOTE: Currently GET_DATA on Operational database is NOT supported. To
    be added in a future time soon.

MGMTD Configuration Rollback and Commit History
===============================================

The MGMT daemon maintains upto 10 last configuration commit buffers
and can rollback the contents of the Running Database to any of the
commit-ids maintained in the commit buffers.

Once the number of commit buffers exceeds 10, the oldest commit
buffer is deleted to make space for the latest commit. Also on
rollback to a specific commit-id, buffer of all the later commits
are deleted from commit record.

Configuration rollback is only allowed via VTYSH shell as of today
and is not possible through the MGMT Frontend interface.

MGMT Configuration commands
===========================

.. clicmd:: mgmt set-config XPATH VALUE

    This command uses a SET_CONFIG request over the MGMT Frontend Interface
    for the specified xpath with specific value. This command is used for
    testing purpose only. But can be used to set configuration data from CLI
    using SET_CONFIG operations.

.. clicmd:: mgmt delete-config XPATH

    This command uses a SET_CONFIG request (with delete option) over the
    MGMT Frontend Interface o delete the YANG data node at the given
    xpath unless it is a key-leaf node(in which case it is not deleted).

.. clicmd:: mgmt load-config FILE <merge|replace>

    This command loads configuration in JSON format from the filepath specified,
    and merges or replaces the Candidate DB as per the option specified.

.. clicmd:: mgmt save-config <candidate|running> FILE

    This command dumps the DB specified in the db-name into the file in JSON
    format. This command in not supported for the Operational DB.

.. clicmd:: mgmt commit abort

    This command will abort any configuration present on the Candidate but not
    been applied to the Running DB.

.. clicmd:: mgmt commit apply

    This command commits any uncommited changes in the Candidate DB to the
    Running DB.

.. clicmd:: mgmt commit check

    This command validates the configuration but does not apply them to the
    Running DB.

.. clicmd:: mgmt rollback commit-id WORD

    This command rolls back the Running Database contents to the state
    corresponding to the commit-id specified.

.. clicmd:: mgmt rollback last WORD

    This command rolls back the last specified number of recent commits.


MGMT Show commands
==================

.. clicmd:: show mgmt backend-adapter all

    This command shows the backend adapter information and the clients/daemons
    connected to the adapters.

.. clicmd:: show mgmt backend-yang-xpath-registry

    This command shows which Backend adapters are registered for which YANG
    data subtree(s).

.. clicmd:: show mgmt frontend-adapter all [detail]

    This command shows the frontend adapter information and the clients
    connected to the adapters.

.. clicmd:: show mgmt transaction all

    Shows the list of transaction and bunch of information about the transaction.

.. clicmd:: show mgmt get-config [candidate|running] XPATH

    This command uses the GET_CONFIG operation over the MGMT Frontend interface and
    returns the xpaths and values of the nodes of the subtree pointed by the <xpath>.

.. clicmd:: show mgmt get-data [candidate|operation|running] XPATH

    This command uses the GET_DATA operation over the MGMT Frontend interface and
    returns the xpaths and values of the nodes of the subtree pointed by the <xpath>.
    Currenlty supported values for 'candidate' and 'running' only
    ('operational' shall be supported in future soon).

.. clicmd:: show mgmt datastore-contents [candidate|operation|running] [xpath WORD] [file WORD] json|xml

    This command dumps the subtree pointed by the xpath in JSON or XML format. If filepath is
    not present then the tree will be printed on the shell.

.. clicmd:: show mgmt commit-history

    This command dumps details of upto last 10 commits handled by MGMTd.


MGMT Daemon debug commands
==========================

The following debug commands enable debugging within the management daemon:

.. clicmd:: debug mgmt backend

   Enable[/Disable] debugging messages related to backend operations within the
   management daemon.

.. clicmd:: debug mgmt datastore

   Enable[/Disable] debugging messages related to YANG datastore operations
   within the management daemon.

.. clicmd:: debug mgmt frontend

   Enable[/Disable] debugging messages related to frontend operations within the
   management daemon.

.. clicmd:: debug mgmt transaction

   Enable[/Disable] debugging messages related to transactions within the
   management daemon.


MGMT Client debug commands
==========================

The following debug commands enable debugging within the management front and
backend clients:

.. clicmd:: debug mgmt client backend

   Enable[/Disable] debugging messages related to backend operations inside the
   backend mgmtd clients.

.. clicmd:: debug mgmt client frontend

   Enable[/Disable] debugging messages related to frontend operations inside the
   frontend mgmtd clients.