blob: f5e3ce4c0541aaf7ebbe6966ef51119ff5e890d0 [file] [log] [blame]
Radek Krejci0935f412019-08-20 16:15:18 +02001/**
2 * @file plugins_exts.c
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief Internally implemented YANG extensions.
5 *
6 * Copyright (c) 2019 CESNET, z.s.p.o.
7 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
Radek Krejci0935f412019-08-20 16:15:18 +020014
15#include "plugins_exts.h"
16
Radek Krejci535ea9f2020-05-29 16:01:05 +020017#include <string.h>
18
19#include "common.h"
Radek Krejcid6b76452019-09-03 17:03:03 +020020#include "plugins_exts_metadata.c"
Radek Krejci535ea9f2020-05-29 16:01:05 +020021#include "plugins_exts_nacm.c"
Radek Krejci0935f412019-08-20 16:15:18 +020022
23/**
24 * @brief list of all extension plugins implemented internally
25 */
Radek Krejcid6b76452019-09-03 17:03:03 +020026struct lyext_plugins_list lyext_plugins_internal[6] = {
Radek Krejci0935f412019-08-20 16:15:18 +020027 {"ietf-netconf-acm", "2012-02-22", "default-deny-write", &nacm_plugin},
28 {"ietf-netconf-acm", "2018-02-14", "default-deny-write", &nacm_plugin},
29 {"ietf-netconf-acm", "2012-02-22", "default-deny-all", &nacm_plugin},
30 {"ietf-netconf-acm", "2018-02-14", "default-deny-all", &nacm_plugin},
Radek Krejcid6b76452019-09-03 17:03:03 +020031 {"ietf-yang-metadata", "2016-08-05", "annotation", &metadata_plugin},
Radek Krejci0935f412019-08-20 16:15:18 +020032 {NULL, NULL, NULL, NULL} /* terminating item */
33};
34
35/* TODO support for external extension plugins */
36
37struct lyext_plugin *
38lyext_get_plugin(struct lysc_ext *ext)
39{
Radek Krejci1deb5be2020-08-26 16:43:36 +020040 for (uint8_t u = 0; lyext_plugins_internal[u].module; ++u) {
Radek Krejci0935f412019-08-20 16:15:18 +020041 if (!strcmp(ext->name, lyext_plugins_internal[u].name) &&
42 !strcmp(ext->module->name, lyext_plugins_internal[u].module) &&
43 (!lyext_plugins_internal[u].revision || !strcmp(ext->module->revision, lyext_plugins_internal[u].revision))) {
44 /* we have the match */
45 return lyext_plugins_internal[u].plugin;
46 }
47 }
48
49 return NULL;
50}
51
52API const char *
53lyext_parent2str(LYEXT_PARENT type)
54{
Michal Vaskod989ba02020-08-24 10:59:24 +020055 switch (type) {
Radek Krejci0935f412019-08-20 16:15:18 +020056 case LYEXT_PAR_MODULE:
57 return "module";
58 case LYEXT_PAR_NODE:
59 return "data node";
60 case LYEXT_PAR_INPUT:
61 return "input";
62 case LYEXT_PAR_OUTPUT:
63 return "output";
64 case LYEXT_PAR_TYPE:
65 return "type";
66 case LYEXT_PAR_TYPE_BIT:
67 return "bit";
68 case LYEXT_PAR_TYPE_ENUM:
69 return "enum";
Radek Krejci0935f412019-08-20 16:15:18 +020070 case LYEXT_PAR_MUST:
71 return "must";
72 case LYEXT_PAR_PATTERN:
73 return "pattern";
74 case LYEXT_PAR_LENGTH:
75 return "length";
76 case LYEXT_PAR_RANGE:
77 return "range";
78 case LYEXT_PAR_WHEN:
79 return "when";
80 case LYEXT_PAR_IDENT:
81 return "identity";
82 case LYEXT_PAR_EXT:
83 return "extension instance";
84 case LYEXT_PAR_IMPORT:
85 return "import";
Radek Krejci0f969882020-08-21 16:56:47 +020086 /* YANG allows extension instances inside the following statements,
87 * but they do not have any meaning in current libyang
88 case LYEXT_PAR_TPDF:
89 return "typedef";
90 case LYEXT_PAR_EXTINST:
91 return "extension";
92 case LYEXT_PAR_REFINE:
93 return "refine";
94 case LYEXT_PAR_DEVIATION:
95 return "deviation";
96 case LYEXT_PAR_DEVIATE:
97 return "deviate";
98 case LYEXT_PAR_INCLUDE:
99 return "include";
100 case LYEXT_PAR_REVISION:
101 return "revision";
102 */
Radek Krejci0935f412019-08-20 16:15:18 +0200103 default:
104 return "unknown";
105 }
106}