]> git.proxmox.com Git - mirror_frr.git/blob - lib/northbound.h
Merge pull request #8665 from volta-networks/fix_pathd_coverity
[mirror_frr.git] / lib / northbound.h
1 /*
2 * Copyright (C) 2018 NetDEF, Inc.
3 * Renato Westphal
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the Free
7 * Software Foundation; either version 2 of the License, or (at your option)
8 * any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; see the file COPYING; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20 #ifndef _FRR_NORTHBOUND_H_
21 #define _FRR_NORTHBOUND_H_
22
23 #include "thread.h"
24 #include "hook.h"
25 #include "linklist.h"
26 #include "openbsd-tree.h"
27 #include "yang.h"
28 #include "yang_translator.h"
29
30 #ifdef __cplusplus
31 extern "C" {
32 #endif
33
34 /* Forward declaration(s). */
35 struct vty;
36 struct debug;
37
38 /* Northbound events. */
39 enum nb_event {
40 /*
41 * The configuration callback is supposed to verify that the changes are
42 * valid and can be applied.
43 */
44 NB_EV_VALIDATE,
45
46 /*
47 * The configuration callback is supposed to prepare all resources
48 * required to apply the changes.
49 */
50 NB_EV_PREPARE,
51
52 /*
53 * Transaction has failed, the configuration callback needs to release
54 * all resources previously allocated.
55 */
56 NB_EV_ABORT,
57
58 /*
59 * The configuration changes need to be applied. The changes can't be
60 * rejected at this point (errors are logged and ignored).
61 */
62 NB_EV_APPLY,
63 };
64
65 /*
66 * Northbound operations.
67 *
68 * Refer to the documentation comments of nb_callbacks for more details.
69 */
70 enum nb_operation {
71 NB_OP_CREATE,
72 NB_OP_MODIFY,
73 NB_OP_DESTROY,
74 NB_OP_MOVE,
75 NB_OP_PRE_VALIDATE,
76 NB_OP_APPLY_FINISH,
77 NB_OP_GET_ELEM,
78 NB_OP_GET_NEXT,
79 NB_OP_GET_KEYS,
80 NB_OP_LOOKUP_ENTRY,
81 NB_OP_RPC,
82 };
83
84 union nb_resource {
85 int fd;
86 void *ptr;
87 };
88
89 /*
90 * Northbound callbacks parameters.
91 */
92
93 struct nb_cb_create_args {
94 /* Context of the configuration transaction. */
95 struct nb_context *context;
96
97 /*
98 * The transaction phase. Refer to the documentation comments of
99 * nb_event for more details.
100 */
101 enum nb_event event;
102
103 /* libyang data node that is being created. */
104 const struct lyd_node *dnode;
105
106 /*
107 * Pointer to store resource(s) allocated during the NB_EV_PREPARE
108 * phase. The same pointer can be used during the NB_EV_ABORT and
109 * NB_EV_APPLY phases to either release or make use of the allocated
110 * resource(s). It's set to NULL when the event is NB_EV_VALIDATE.
111 */
112 union nb_resource *resource;
113
114 /* Buffer to store human-readable error message in case of error. */
115 char *errmsg;
116
117 /* Size of errmsg. */
118 size_t errmsg_len;
119 };
120
121 struct nb_cb_modify_args {
122 /* Context of the configuration transaction. */
123 struct nb_context *context;
124
125 /*
126 * The transaction phase. Refer to the documentation comments of
127 * nb_event for more details.
128 */
129 enum nb_event event;
130
131 /* libyang data node that is being modified. */
132 const struct lyd_node *dnode;
133
134 /*
135 * Pointer to store resource(s) allocated during the NB_EV_PREPARE
136 * phase. The same pointer can be used during the NB_EV_ABORT and
137 * NB_EV_APPLY phases to either release or make use of the allocated
138 * resource(s). It's set to NULL when the event is NB_EV_VALIDATE.
139 */
140 union nb_resource *resource;
141
142 /* Buffer to store human-readable error message in case of error. */
143 char *errmsg;
144
145 /* Size of errmsg. */
146 size_t errmsg_len;
147 };
148
149 struct nb_cb_destroy_args {
150 /* Context of the configuration transaction. */
151 struct nb_context *context;
152
153 /*
154 * The transaction phase. Refer to the documentation comments of
155 * nb_event for more details.
156 */
157 enum nb_event event;
158
159 /* libyang data node that is being deleted. */
160 const struct lyd_node *dnode;
161
162 /* Buffer to store human-readable error message in case of error. */
163 char *errmsg;
164
165 /* Size of errmsg. */
166 size_t errmsg_len;
167 };
168
169 struct nb_cb_move_args {
170 /* Context of the configuration transaction. */
171 struct nb_context *context;
172
173 /*
174 * The transaction phase. Refer to the documentation comments of
175 * nb_event for more details.
176 */
177 enum nb_event event;
178
179 /* libyang data node that is being moved. */
180 const struct lyd_node *dnode;
181
182 /* Buffer to store human-readable error message in case of error. */
183 char *errmsg;
184
185 /* Size of errmsg. */
186 size_t errmsg_len;
187 };
188
189 struct nb_cb_pre_validate_args {
190 /* Context of the configuration transaction. */
191 struct nb_context *context;
192
193 /* libyang data node associated with the 'pre_validate' callback. */
194 const struct lyd_node *dnode;
195
196 /* Buffer to store human-readable error message in case of error. */
197 char *errmsg;
198
199 /* Size of errmsg. */
200 size_t errmsg_len;
201 };
202
203 struct nb_cb_apply_finish_args {
204 /* Context of the configuration transaction. */
205 struct nb_context *context;
206
207 /* libyang data node associated with the 'apply_finish' callback. */
208 const struct lyd_node *dnode;
209
210 /* Buffer to store human-readable error message in case of error. */
211 char *errmsg;
212
213 /* Size of errmsg. */
214 size_t errmsg_len;
215 };
216
217 struct nb_cb_get_elem_args {
218 /* YANG data path of the data we want to get. */
219 const char *xpath;
220
221 /* Pointer to list entry (might be NULL). */
222 const void *list_entry;
223 };
224
225 struct nb_cb_get_next_args {
226 /* Pointer to parent list entry. */
227 const void *parent_list_entry;
228
229 /* Pointer to (leaf-)list entry. */
230 const void *list_entry;
231 };
232
233 struct nb_cb_get_keys_args {
234 /* Pointer to list entry. */
235 const void *list_entry;
236
237 /*
238 * Structure to be filled based on the attributes of the provided list
239 * entry.
240 */
241 struct yang_list_keys *keys;
242 };
243
244 struct nb_cb_lookup_entry_args {
245 /* Pointer to parent list entry. */
246 const void *parent_list_entry;
247
248 /* Structure containing the keys of the list entry. */
249 const struct yang_list_keys *keys;
250 };
251
252 struct nb_cb_rpc_args {
253 /* XPath of the YANG RPC or action. */
254 const char *xpath;
255
256 /* Read-only list of input parameters. */
257 const struct list *input;
258
259 /* List of output parameters to be populated by the callback. */
260 struct list *output;
261
262 /* Buffer to store human-readable error message in case of error. */
263 char *errmsg;
264
265 /* Size of errmsg. */
266 size_t errmsg_len;
267 };
268
269 /*
270 * Set of configuration callbacks that can be associated to a northbound node.
271 */
272 struct nb_callbacks {
273 /*
274 * Configuration callback.
275 *
276 * A presence container, list entry, leaf-list entry or leaf of type
277 * empty has been created.
278 *
279 * For presence-containers and list entries, the callback is supposed to
280 * initialize the default values of its children (if any) from the YANG
281 * models.
282 *
283 * args
284 * Refer to the documentation comments of nb_cb_create_args for
285 * details.
286 *
287 * Returns:
288 * - NB_OK on success.
289 * - NB_ERR_VALIDATION when a validation error occurred.
290 * - NB_ERR_RESOURCE when the callback failed to allocate a resource.
291 * - NB_ERR_INCONSISTENCY when an inconsistency was detected.
292 * - NB_ERR for other errors.
293 */
294 int (*create)(struct nb_cb_create_args *args);
295
296 /*
297 * Configuration callback.
298 *
299 * The value of a leaf has been modified.
300 *
301 * List keys don't need to implement this callback. When a list key is
302 * modified, the northbound treats this as if the list was deleted and a
303 * new one created with the updated key value.
304 *
305 * args
306 * Refer to the documentation comments of nb_cb_modify_args for
307 * details.
308 *
309 * Returns:
310 * - NB_OK on success.
311 * - NB_ERR_VALIDATION when a validation error occurred.
312 * - NB_ERR_RESOURCE when the callback failed to allocate a resource.
313 * - NB_ERR_INCONSISTENCY when an inconsistency was detected.
314 * - NB_ERR for other errors.
315 */
316 int (*modify)(struct nb_cb_modify_args *args);
317
318 /*
319 * Configuration callback.
320 *
321 * A presence container, list entry, leaf-list entry or optional leaf
322 * has been deleted.
323 *
324 * The callback is supposed to delete the entire configuration object,
325 * including its children when they exist.
326 *
327 * args
328 * Refer to the documentation comments of nb_cb_destroy_args for
329 * details.
330 *
331 * Returns:
332 * - NB_OK on success.
333 * - NB_ERR_VALIDATION when a validation error occurred.
334 * - NB_ERR_INCONSISTENCY when an inconsistency was detected.
335 * - NB_ERR for other errors.
336 */
337 int (*destroy)(struct nb_cb_destroy_args *args);
338
339 /*
340 * Configuration callback.
341 *
342 * A list entry or leaf-list entry has been moved. Only applicable when
343 * the "ordered-by user" statement is present.
344 *
345 * args
346 * Refer to the documentation comments of nb_cb_move_args for
347 * details.
348 *
349 * Returns:
350 * - NB_OK on success.
351 * - NB_ERR_VALIDATION when a validation error occurred.
352 * - NB_ERR_INCONSISTENCY when an inconsistency was detected.
353 * - NB_ERR for other errors.
354 */
355 int (*move)(struct nb_cb_move_args *args);
356
357 /*
358 * Optional configuration callback.
359 *
360 * This callback can be used to validate subsections of the
361 * configuration being committed before validating the configuration
362 * changes themselves. It's useful to perform more complex validations
363 * that depend on the relationship between multiple nodes.
364 *
365 * args
366 * Refer to the documentation comments of nb_cb_pre_validate_args for
367 * details.
368 *
369 * Returns:
370 * - NB_OK on success.
371 * - NB_ERR_VALIDATION when a validation error occurred.
372 */
373 int (*pre_validate)(struct nb_cb_pre_validate_args *args);
374
375 /*
376 * Optional configuration callback.
377 *
378 * The 'apply_finish' callbacks are called after all other callbacks
379 * during the apply phase (NB_EV_APPLY). These callbacks are called only
380 * under one of the following two cases:
381 * - The data node has been created or modified (but not deleted);
382 * - Any change was made within the descendants of the data node (e.g. a
383 * child leaf was modified, created or deleted).
384 *
385 * In the second case above, the 'apply_finish' callback is called only
386 * once even if multiple changes occurred within the descendants of the
387 * data node.
388 *
389 * args
390 * Refer to the documentation comments of nb_cb_apply_finish_args for
391 * details.
392 */
393 void (*apply_finish)(struct nb_cb_apply_finish_args *args);
394
395 /*
396 * Operational data callback.
397 *
398 * The callback function should return the value of a specific leaf,
399 * leaf-list entry or inform if a typeless value (presence containers or
400 * leafs of type empty) exists or not.
401 *
402 * args
403 * Refer to the documentation comments of nb_cb_get_elem_args for
404 * details.
405 *
406 * Returns:
407 * Pointer to newly created yang_data structure, or NULL to indicate
408 * the absence of data.
409 */
410 struct yang_data *(*get_elem)(struct nb_cb_get_elem_args *args);
411
412 /*
413 * Operational data callback for YANG lists and leaf-lists.
414 *
415 * The callback function should return the next entry in the list or
416 * leaf-list. The 'list_entry' parameter will be NULL on the first
417 * invocation.
418 *
419 * args
420 * Refer to the documentation comments of nb_cb_get_next_args for
421 * details.
422 *
423 * Returns:
424 * Pointer to the next entry in the (leaf-)list, or NULL to signal
425 * that the end of the (leaf-)list was reached.
426 */
427 const void *(*get_next)(struct nb_cb_get_next_args *args);
428
429 /*
430 * Operational data callback for YANG lists.
431 *
432 * The callback function should fill the 'keys' parameter based on the
433 * given list_entry. Keyless lists don't need to implement this
434 * callback.
435 *
436 * args
437 * Refer to the documentation comments of nb_cb_get_keys_args for
438 * details.
439 *
440 * Returns:
441 * NB_OK on success, NB_ERR otherwise.
442 */
443 int (*get_keys)(struct nb_cb_get_keys_args *args);
444
445 /*
446 * Operational data callback for YANG lists.
447 *
448 * The callback function should return a list entry based on the list
449 * keys given as a parameter. Keyless lists don't need to implement this
450 * callback.
451 *
452 * args
453 * Refer to the documentation comments of nb_cb_lookup_entry_args for
454 * details.
455 *
456 * Returns:
457 * Pointer to the list entry if found, or NULL if not found.
458 */
459 const void *(*lookup_entry)(struct nb_cb_lookup_entry_args *args);
460
461 /*
462 * RPC and action callback.
463 *
464 * Both 'input' and 'output' are lists of 'yang_data' structures. The
465 * callback should fetch all the input parameters from the 'input' list,
466 * and add output parameters to the 'output' list if necessary.
467 *
468 * args
469 * Refer to the documentation comments of nb_cb_rpc_args for details.
470 *
471 * Returns:
472 * NB_OK on success, NB_ERR otherwise.
473 */
474 int (*rpc)(struct nb_cb_rpc_args *args);
475
476 /*
477 * Optional callback to compare the data nodes when printing
478 * the CLI commands associated with them.
479 *
480 * dnode1
481 * The first data node to compare.
482 *
483 * dnode2
484 * The second data node to compare.
485 *
486 * Returns:
487 * <0 when the CLI command for the dnode1 should be printed first
488 * >0 when the CLI command for the dnode2 should be printed first
489 * 0 when there is no difference
490 */
491 int (*cli_cmp)(struct lyd_node *dnode1, struct lyd_node *dnode2);
492
493 /*
494 * Optional callback to show the CLI command associated to the given
495 * YANG data node.
496 *
497 * vty
498 * The vty terminal to dump the configuration to.
499 *
500 * dnode
501 * libyang data node that should be shown in the form of a CLI
502 * command.
503 *
504 * show_defaults
505 * Specify whether to display default configuration values or not.
506 * This parameter can be ignored most of the time since the
507 * northbound doesn't call this callback for default leaves or
508 * non-presence containers that contain only default child nodes.
509 * The exception are commands associated to multiple configuration
510 * nodes, in which case it might be desirable to hide one or more
511 * parts of the command when this parameter is set to false.
512 */
513 void (*cli_show)(struct vty *vty, struct lyd_node *dnode,
514 bool show_defaults);
515
516 /*
517 * Optional callback to show the CLI node end for lists or containers.
518 *
519 * vty
520 * The vty terminal to dump the configuration to.
521 *
522 * dnode
523 * libyang data node that should be shown in the form of a CLI
524 * command.
525 */
526 void (*cli_show_end)(struct vty *vty, struct lyd_node *dnode);
527 };
528
529 struct nb_dependency_callbacks {
530 void (*get_dependant_xpath)(const struct lyd_node *dnode, char *xpath);
531 void (*get_dependency_xpath)(const struct lyd_node *dnode, char *xpath);
532 };
533
534 /*
535 * Northbound-specific data that is allocated for each schema node of the native
536 * YANG modules.
537 */
538 struct nb_node {
539 /* Back pointer to the libyang schema node. */
540 const struct lysc_node *snode;
541
542 /* Data path of this YANG node. */
543 char xpath[XPATH_MAXLEN];
544
545 /* Priority - lower priorities are processed first. */
546 uint32_t priority;
547
548 struct nb_dependency_callbacks dep_cbs;
549
550 /* Callbacks implemented for this node. */
551 struct nb_callbacks cbs;
552
553 /*
554 * Pointer to the parent node (disconsidering non-presence containers).
555 */
556 struct nb_node *parent;
557
558 /* Pointer to the nearest parent list, if any. */
559 struct nb_node *parent_list;
560
561 /* Flags. */
562 uint8_t flags;
563
564 #ifdef HAVE_CONFD
565 /* ConfD hash value corresponding to this YANG path. */
566 int confd_hash;
567 #endif
568 };
569 /* The YANG container or list contains only config data. */
570 #define F_NB_NODE_CONFIG_ONLY 0x01
571 /* The YANG list doesn't contain key leafs. */
572 #define F_NB_NODE_KEYLESS_LIST 0x02
573
574 /*
575 * HACK: old gcc versions (< 5.x) have a bug that prevents C99 flexible arrays
576 * from working properly on shared libraries. For those compilers, use a fixed
577 * size array to work around the problem.
578 */
579 #define YANG_MODULE_MAX_NODES 2000
580
581 struct frr_yang_module_info {
582 /* YANG module name. */
583 const char *name;
584
585 /* Northbound callbacks. */
586 const struct {
587 /* Data path of this YANG node. */
588 const char *xpath;
589
590 /* Callbacks implemented for this node. */
591 struct nb_callbacks cbs;
592
593 /* Priority - lower priorities are processed first. */
594 uint32_t priority;
595 #if defined(__GNUC__) && ((__GNUC__ - 0) < 5) && !defined(__clang__)
596 } nodes[YANG_MODULE_MAX_NODES + 1];
597 #else
598 } nodes[];
599 #endif
600 };
601
602 /* Northbound error codes. */
603 enum nb_error {
604 NB_OK = 0,
605 NB_ERR,
606 NB_ERR_NO_CHANGES,
607 NB_ERR_NOT_FOUND,
608 NB_ERR_LOCKED,
609 NB_ERR_VALIDATION,
610 NB_ERR_RESOURCE,
611 NB_ERR_INCONSISTENCY,
612 };
613
614 /* Default priority. */
615 #define NB_DFLT_PRIORITY (UINT32_MAX / 2)
616
617 /* Default maximum of configuration rollbacks to store. */
618 #define NB_DLFT_MAX_CONFIG_ROLLBACKS 20
619
620 /* Northbound clients. */
621 enum nb_client {
622 NB_CLIENT_NONE = 0,
623 NB_CLIENT_CLI,
624 NB_CLIENT_CONFD,
625 NB_CLIENT_SYSREPO,
626 NB_CLIENT_GRPC,
627 NB_CLIENT_PCEP,
628 };
629
630 /* Northbound context. */
631 struct nb_context {
632 /* Northbound client. */
633 enum nb_client client;
634
635 /* Northbound user (can be NULL). */
636 const void *user;
637
638 /* Client-specific data. */
639 #if 0
640 union {
641 struct {
642 } cli;
643 struct {
644 } confd;
645 struct {
646 } sysrepo;
647 struct {
648 } grpc;
649 struct {
650 } pcep;
651 } client_data;
652 #endif
653 };
654
655 /* Northbound configuration. */
656 struct nb_config {
657 struct lyd_node *dnode;
658 uint32_t version;
659 };
660
661 /* Northbound configuration callback. */
662 struct nb_config_cb {
663 RB_ENTRY(nb_config_cb) entry;
664 enum nb_operation operation;
665 uint32_t seq;
666 const struct nb_node *nb_node;
667 const struct lyd_node *dnode;
668 };
669 RB_HEAD(nb_config_cbs, nb_config_cb);
670 RB_PROTOTYPE(nb_config_cbs, nb_config_cb, entry, nb_config_cb_compare);
671
672 /* Northbound configuration change. */
673 struct nb_config_change {
674 struct nb_config_cb cb;
675 union nb_resource resource;
676 bool prepare_ok;
677 };
678
679 /* Northbound configuration transaction. */
680 struct nb_transaction {
681 struct nb_context *context;
682 char comment[80];
683 struct nb_config *config;
684 struct nb_config_cbs changes;
685 };
686
687 /* Callback function used by nb_oper_data_iterate(). */
688 typedef int (*nb_oper_data_cb)(const struct lysc_node *snode,
689 struct yang_translator *translator,
690 struct yang_data *data, void *arg);
691
692 /* Iterate over direct child nodes only. */
693 #define NB_OPER_DATA_ITER_NORECURSE 0x0001
694
695 /* Hooks. */
696 DECLARE_HOOK(nb_notification_send, (const char *xpath, struct list *arguments),
697 (xpath, arguments));
698 DECLARE_HOOK(nb_client_debug_config_write, (struct vty *vty), (vty));
699 DECLARE_HOOK(nb_client_debug_set_all, (uint32_t flags, bool set), (flags, set));
700
701 /* Northbound debugging records */
702 extern struct debug nb_dbg_cbs_config;
703 extern struct debug nb_dbg_cbs_state;
704 extern struct debug nb_dbg_cbs_rpc;
705 extern struct debug nb_dbg_notif;
706 extern struct debug nb_dbg_events;
707
708 /* Global running configuration. */
709 extern struct nb_config *running_config;
710
711 /* Wrappers for the northbound callbacks. */
712 extern struct yang_data *nb_callback_get_elem(const struct nb_node *nb_node,
713 const char *xpath,
714 const void *list_entry);
715 extern const void *nb_callback_get_next(const struct nb_node *nb_node,
716 const void *parent_list_entry,
717 const void *list_entry);
718 extern int nb_callback_get_keys(const struct nb_node *nb_node,
719 const void *list_entry,
720 struct yang_list_keys *keys);
721 extern const void *nb_callback_lookup_entry(const struct nb_node *nb_node,
722 const void *parent_list_entry,
723 const struct yang_list_keys *keys);
724 extern int nb_callback_rpc(const struct nb_node *nb_node, const char *xpath,
725 const struct list *input, struct list *output,
726 char *errmsg, size_t errmsg_len);
727
728 /*
729 * Create a northbound node for all YANG schema nodes.
730 */
731 void nb_nodes_create(void);
732
733 /*
734 * Delete all northbound nodes from all YANG schema nodes.
735 */
736 void nb_nodes_delete(void);
737
738 /*
739 * Find the northbound node corresponding to a YANG data path.
740 *
741 * xpath
742 * XPath to search for (with or without predicates).
743 *
744 * Returns:
745 * Pointer to northbound node if found, NULL otherwise.
746 */
747 extern struct nb_node *nb_node_find(const char *xpath);
748
749 extern void nb_node_set_dependency_cbs(const char *dependency_xpath,
750 const char *dependant_xpath,
751 struct nb_dependency_callbacks *cbs);
752
753 bool nb_node_has_dependency(struct nb_node *node);
754
755 /*
756 * Create a new northbound configuration.
757 *
758 * dnode
759 * Pointer to a libyang data node containing the configuration data. If NULL
760 * is given, an empty configuration will be created.
761 *
762 * Returns:
763 * Pointer to newly created northbound configuration.
764 */
765 extern struct nb_config *nb_config_new(struct lyd_node *dnode);
766
767 /*
768 * Delete a northbound configuration.
769 *
770 * config
771 * Pointer to the config that is going to be deleted.
772 */
773 extern void nb_config_free(struct nb_config *config);
774
775 /*
776 * Duplicate a northbound configuration.
777 *
778 * config
779 * Northbound configuration to duplicate.
780 *
781 * Returns:
782 * Pointer to duplicated configuration.
783 */
784 extern struct nb_config *nb_config_dup(const struct nb_config *config);
785
786 /*
787 * Merge one configuration into another.
788 *
789 * config_dst
790 * Configuration to merge to.
791 *
792 * config_src
793 * Configuration to merge config_dst with.
794 *
795 * preserve_source
796 * Specify whether config_src should be deleted or not after the merge
797 * operation.
798 *
799 * Returns:
800 * NB_OK on success, NB_ERR otherwise.
801 */
802 extern int nb_config_merge(struct nb_config *config_dst,
803 struct nb_config *config_src, bool preserve_source);
804
805 /*
806 * Replace one configuration by another.
807 *
808 * config_dst
809 * Configuration to be replaced.
810 *
811 * config_src
812 * Configuration to replace config_dst.
813 *
814 * preserve_source
815 * Specify whether config_src should be deleted or not after the replace
816 * operation.
817 */
818 extern void nb_config_replace(struct nb_config *config_dst,
819 struct nb_config *config_src,
820 bool preserve_source);
821
822 /*
823 * Edit a candidate configuration.
824 *
825 * candidate
826 * Candidate configuration to edit.
827 *
828 * nb_node
829 * Northbound node associated to the configuration being edited.
830 *
831 * operation
832 * Operation to apply.
833 *
834 * xpath
835 * XPath of the configuration node being edited.
836 *
837 * previous
838 * Previous value of the configuration node. Should be used only when the
839 * operation is NB_OP_MOVE, otherwise this parameter is ignored.
840 *
841 * data
842 * New value of the configuration node.
843 *
844 * Returns:
845 * - NB_OK on success.
846 * - NB_ERR_NOT_FOUND when the element to be deleted was not found.
847 * - NB_ERR for other errors.
848 */
849 extern int nb_candidate_edit(struct nb_config *candidate,
850 const struct nb_node *nb_node,
851 enum nb_operation operation, const char *xpath,
852 const struct yang_data *previous,
853 const struct yang_data *data);
854
855 /*
856 * Check if a candidate configuration is outdated and needs to be updated.
857 *
858 * candidate
859 * Candidate configuration to check.
860 *
861 * Returns:
862 * true if the candidate is outdated, false otherwise.
863 */
864 extern bool nb_candidate_needs_update(const struct nb_config *candidate);
865
866 /*
867 * Update a candidate configuration by rebasing the changes on top of the latest
868 * running configuration. Resolve conflicts automatically by giving preference
869 * to the changes done in the candidate configuration.
870 *
871 * candidate
872 * Candidate configuration to update.
873 *
874 * Returns:
875 * NB_OK on success, NB_ERR otherwise.
876 */
877 extern int nb_candidate_update(struct nb_config *candidate);
878
879 /*
880 * Validate a candidate configuration. Perform both YANG syntactic/semantic
881 * validation and code-level validation using the northbound callbacks.
882 *
883 * WARNING: the candidate can be modified as part of the validation process
884 * (e.g. add default nodes).
885 *
886 * context
887 * Context of the northbound transaction.
888 *
889 * candidate
890 * Candidate configuration to validate.
891 *
892 * errmsg
893 * Buffer to store human-readable error message in case of error.
894 *
895 * errmsg_len
896 * Size of errmsg.
897 *
898 * Returns:
899 * NB_OK on success, NB_ERR_VALIDATION otherwise.
900 */
901 extern int nb_candidate_validate(struct nb_context *context,
902 struct nb_config *candidate, char *errmsg,
903 size_t errmsg_len);
904
905 /*
906 * Create a new configuration transaction but do not commit it yet. Only
907 * validate the candidate and prepare all resources required to apply the
908 * configuration changes.
909 *
910 * context
911 * Context of the northbound transaction.
912 *
913 * candidate
914 * Candidate configuration to commit.
915 *
916 * comment
917 * Optional comment describing the commit.
918 *
919 * transaction
920 * Output parameter providing the created transaction when one is created
921 * successfully. In this case, it must be either aborted using
922 * nb_candidate_commit_abort() or committed using
923 * nb_candidate_commit_apply().
924 *
925 * errmsg
926 * Buffer to store human-readable error message in case of error.
927 *
928 * errmsg_len
929 * Size of errmsg.
930 *
931 * Returns:
932 * - NB_OK on success.
933 * - NB_ERR_NO_CHANGES when the candidate is identical to the running
934 * configuration.
935 * - NB_ERR_LOCKED when there's already another transaction in progress.
936 * - NB_ERR_VALIDATION when the candidate fails the validation checks.
937 * - NB_ERR_RESOURCE when the system fails to allocate resources to apply
938 * the candidate configuration.
939 * - NB_ERR for other errors.
940 */
941 extern int nb_candidate_commit_prepare(struct nb_context *context,
942 struct nb_config *candidate,
943 const char *comment,
944 struct nb_transaction **transaction,
945 char *errmsg, size_t errmsg_len);
946
947 /*
948 * Abort a previously created configuration transaction, releasing all resources
949 * allocated during the preparation phase.
950 *
951 * transaction
952 * Candidate configuration to abort. It's consumed by this function.
953 *
954 * errmsg
955 * Buffer to store human-readable error message in case of error.
956 *
957 * errmsg_len
958 * Size of errmsg.
959 */
960 extern void nb_candidate_commit_abort(struct nb_transaction *transaction,
961 char *errmsg, size_t errmsg_len);
962
963 /*
964 * Commit a previously created configuration transaction.
965 *
966 * transaction
967 * Configuration transaction to commit. It's consumed by this function.
968 *
969 * save_transaction
970 * Specify whether the transaction should be recorded in the transactions log
971 * or not.
972 *
973 * transaction_id
974 * Optional output parameter providing the ID of the committed transaction.
975 *
976 * errmsg
977 * Buffer to store human-readable error message in case of error.
978 *
979 * errmsg_len
980 * Size of errmsg.
981 */
982 extern void nb_candidate_commit_apply(struct nb_transaction *transaction,
983 bool save_transaction,
984 uint32_t *transaction_id, char *errmsg,
985 size_t errmsg_len);
986
987 /*
988 * Create a new transaction to commit a candidate configuration. This is a
989 * convenience function that performs the two-phase commit protocol
990 * transparently to the user. The cost is reduced flexibility, since
991 * network-wide and multi-daemon transactions require the network manager to
992 * take into account the results of the preparation phase of multiple managed
993 * entities.
994 *
995 * context
996 * Context of the northbound transaction.
997 *
998 * candidate
999 * Candidate configuration to commit. It's preserved regardless if the commit
1000 * operation fails or not.
1001 *
1002 * save_transaction
1003 * Specify whether the transaction should be recorded in the transactions log
1004 * or not.
1005 *
1006 * comment
1007 * Optional comment describing the commit.
1008 *
1009 * transaction_id
1010 * Optional output parameter providing the ID of the committed transaction.
1011 *
1012 * errmsg
1013 * Buffer to store human-readable error message in case of error.
1014 *
1015 * errmsg_len
1016 * Size of errmsg.
1017 *
1018 * Returns:
1019 * - NB_OK on success.
1020 * - NB_ERR_NO_CHANGES when the candidate is identical to the running
1021 * configuration.
1022 * - NB_ERR_LOCKED when there's already another transaction in progress.
1023 * - NB_ERR_VALIDATION when the candidate fails the validation checks.
1024 * - NB_ERR_RESOURCE when the system fails to allocate resources to apply
1025 * the candidate configuration.
1026 * - NB_ERR for other errors.
1027 */
1028 extern int nb_candidate_commit(struct nb_context *context,
1029 struct nb_config *candidate,
1030 bool save_transaction, const char *comment,
1031 uint32_t *transaction_id, char *errmsg,
1032 size_t errmsg_len);
1033
1034 /*
1035 * Lock the running configuration.
1036 *
1037 * client
1038 * Northbound client.
1039 *
1040 * user
1041 * Northbound user (can be NULL).
1042 *
1043 * Returns:
1044 * 0 on success, -1 when the running configuration is already locked.
1045 */
1046 extern int nb_running_lock(enum nb_client client, const void *user);
1047
1048 /*
1049 * Unlock the running configuration.
1050 *
1051 * client
1052 * Northbound client.
1053 *
1054 * user
1055 * Northbound user (can be NULL).
1056 *
1057 * Returns:
1058 * 0 on success, -1 when the running configuration is already unlocked or
1059 * locked by another client/user.
1060 */
1061 extern int nb_running_unlock(enum nb_client client, const void *user);
1062
1063 /*
1064 * Check if the running configuration is locked or not for the given
1065 * client/user.
1066 *
1067 * client
1068 * Northbound client.
1069 *
1070 * user
1071 * Northbound user (can be NULL).
1072 *
1073 * Returns:
1074 * 0 if the running configuration is unlocked or if the client/user owns the
1075 * lock, -1 otherwise.
1076 */
1077 extern int nb_running_lock_check(enum nb_client client, const void *user);
1078
1079 /*
1080 * Iterate over operational data.
1081 *
1082 * xpath
1083 * Data path of the YANG data we want to iterate over.
1084 *
1085 * translator
1086 * YANG module translator (might be NULL).
1087 *
1088 * flags
1089 * NB_OPER_DATA_ITER_ flags to control how the iteration is performed.
1090 *
1091 * cb
1092 * Function to call with each data node.
1093 *
1094 * arg
1095 * Arbitrary argument passed as the fourth parameter in each call to 'cb'.
1096 *
1097 * Returns:
1098 * NB_OK on success, NB_ERR otherwise.
1099 */
1100 extern int nb_oper_data_iterate(const char *xpath,
1101 struct yang_translator *translator,
1102 uint32_t flags, nb_oper_data_cb cb, void *arg);
1103
1104 /*
1105 * Validate if the northbound operation is valid for the given node.
1106 *
1107 * operation
1108 * Operation we want to check.
1109 *
1110 * snode
1111 * libyang schema node we want to check.
1112 *
1113 * Returns:
1114 * true if the operation is valid, false otherwise.
1115 */
1116 extern bool nb_operation_is_valid(enum nb_operation operation,
1117 const struct lysc_node *snode);
1118
1119 /*
1120 * Send a YANG notification. This is a no-op unless the 'nb_notification_send'
1121 * hook was registered by a northbound plugin.
1122 *
1123 * xpath
1124 * XPath of the YANG notification.
1125 *
1126 * arguments
1127 * Linked list containing the arguments that should be sent. This list is
1128 * deleted after being used.
1129 *
1130 * Returns:
1131 * NB_OK on success, NB_ERR otherwise.
1132 */
1133 extern int nb_notification_send(const char *xpath, struct list *arguments);
1134
1135 /*
1136 * Associate a user pointer to a configuration node.
1137 *
1138 * This should be called by northbound 'create' callbacks in the NB_EV_APPLY
1139 * phase only.
1140 *
1141 * dnode
1142 * libyang data node - only its XPath is used.
1143 *
1144 * entry
1145 * Arbitrary user-specified pointer.
1146 */
1147 extern void nb_running_set_entry(const struct lyd_node *dnode, void *entry);
1148
1149 /*
1150 * Move an entire tree of user pointer nodes.
1151 *
1152 * Suppose we have xpath A/B/C/D, with user pointers associated to C and D. We
1153 * need to move B to be under Z, so the new xpath is Z/B/C/D. Because user
1154 * pointers are indexed with their absolute path, We need to move all user
1155 * pointers at and below B to their new absolute paths; this function does
1156 * that.
1157 *
1158 * xpath_from
1159 * base xpath of tree to move (A/B)
1160 *
1161 * xpath_to
1162 * base xpath of new location of tree (Z/B)
1163 */
1164 extern void nb_running_move_tree(const char *xpath_from, const char *xpath_to);
1165
1166 /*
1167 * Unset the user pointer associated to a configuration node.
1168 *
1169 * This should be called by northbound 'destroy' callbacks in the NB_EV_APPLY
1170 * phase only.
1171 *
1172 * dnode
1173 * libyang data node - only its XPath is used.
1174 *
1175 * Returns:
1176 * The user pointer that was unset.
1177 */
1178 extern void *nb_running_unset_entry(const struct lyd_node *dnode);
1179
1180 /*
1181 * Find the user pointer (if any) associated to a configuration node.
1182 *
1183 * The XPath associated to the configuration node can be provided directly or
1184 * indirectly through a libyang data node.
1185 *
1186 * If an user point is not found, this function follows the parent nodes in the
1187 * running configuration until an user pointer is found or until the root node
1188 * is reached.
1189 *
1190 * dnode
1191 * libyang data node - only its XPath is used (can be NULL if 'xpath' is
1192 * provided).
1193 *
1194 * xpath
1195 * XPath of the configuration node (can be NULL if 'dnode' is provided).
1196 *
1197 * abort_if_not_found
1198 * When set to true, abort the program if no user pointer is found.
1199 *
1200 * As a rule of thumb, this parameter should be set to true in the following
1201 * scenarios:
1202 * - Calling this function from any northbound configuration callback during
1203 * the NB_EV_APPLY phase.
1204 * - Calling this function from a 'delete' northbound configuration callback
1205 * during any phase.
1206 *
1207 * In both the above cases, the given configuration node should contain an
1208 * user pointer except when there's a bug in the code, in which case it's
1209 * better to abort the program right away and eliminate the need for
1210 * unnecessary NULL checks.
1211 *
1212 * In all other cases, this parameter should be set to false and the caller
1213 * should check if the function returned NULL or not.
1214 *
1215 * Returns:
1216 * User pointer if found, NULL otherwise.
1217 */
1218 extern void *nb_running_get_entry(const struct lyd_node *dnode,
1219 const char *xpath, bool abort_if_not_found);
1220
1221 /*
1222 * Same as 'nb_running_get_entry', but doesn't search within parent nodes
1223 * recursively if an user point is not found.
1224 */
1225 extern void *nb_running_get_entry_non_rec(const struct lyd_node *dnode,
1226 const char *xpath,
1227 bool abort_if_not_found);
1228
1229 /*
1230 * Return a human-readable string representing a northbound event.
1231 *
1232 * event
1233 * Northbound event.
1234 *
1235 * Returns:
1236 * String representation of the given northbound event.
1237 */
1238 extern const char *nb_event_name(enum nb_event event);
1239
1240 /*
1241 * Return a human-readable string representing a northbound operation.
1242 *
1243 * operation
1244 * Northbound operation.
1245 *
1246 * Returns:
1247 * String representation of the given northbound operation.
1248 */
1249 extern const char *nb_operation_name(enum nb_operation operation);
1250
1251 /*
1252 * Return a human-readable string representing a northbound error.
1253 *
1254 * error
1255 * Northbound error.
1256 *
1257 * Returns:
1258 * String representation of the given northbound error.
1259 */
1260 extern const char *nb_err_name(enum nb_error error);
1261
1262 /*
1263 * Return a human-readable string representing a northbound client.
1264 *
1265 * client
1266 * Northbound client.
1267 *
1268 * Returns:
1269 * String representation of the given northbound client.
1270 */
1271 extern const char *nb_client_name(enum nb_client client);
1272
1273 /*
1274 * Validate all northbound callbacks.
1275 *
1276 * Some errors, like missing callbacks or invalid priorities, are fatal and
1277 * can't be recovered from. Other errors, like unneeded callbacks, are logged
1278 * but otherwise ignored.
1279 *
1280 * Whenever a YANG module is loaded after startup, *all* northbound callbacks
1281 * need to be validated and not only the callbacks from the newly loaded module.
1282 * This is because augmentations can change the properties of the augmented
1283 * module, making mandatory the implementation of additional callbacks.
1284 */
1285 void nb_validate_callbacks(void);
1286
1287 /*
1288 * Initialize the northbound layer. Should be called only once during the
1289 * daemon initialization process.
1290 *
1291 * modules
1292 * Array of YANG modules to parse and initialize.
1293 *
1294 * nmodules
1295 * Size of the modules array.
1296 *
1297 * db_enabled
1298 * Set this to record the transactions in the transaction log.
1299 */
1300 extern void nb_init(struct thread_master *tm,
1301 const struct frr_yang_module_info *const modules[],
1302 size_t nmodules, bool db_enabled);
1303
1304 /*
1305 * Finish the northbound layer gracefully. Should be called only when the daemon
1306 * is exiting.
1307 */
1308 extern void nb_terminate(void);
1309
1310 #ifdef __cplusplus
1311 }
1312 #endif
1313
1314 #endif /* _FRR_NORTHBOUND_H_ */