123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394 |
- #include <stdlib.h>
- #include <stdint.h>
- #include <stdio.h>
- #include <string.h>
- #include <assert.h>
- #include <syslog.h>
- #include <faux/faux.h>
- #include <faux/str.h>
- #include <faux/list.h>
- #include <faux/argv.h>
- #include <sysrepo.h>
- #include <sysrepo/xpath.h>
- #include <sysrepo/values.h>
- #include <libyang/tree_edit.h>
- #include "private.h"
- #include "pline.h"
- int klysc_key_compare(const void *first, const void *second)
- {
- const klysc_key_t *f = (const klysc_key_t *)first;
- const klysc_key_t *s = (const klysc_key_t *)second;
- return strcmp(f->node->name, s->node->name);
- }
- int klysc_key_kcompare(const void *key, const void *list_item)
- {
- const char *f = (const char *)key;
- const klysc_key_t *s = (const klysc_key_t *)list_item;
- return strcmp(f, s->node->name);
- }
- // Get extension by name from schema node
- static bool_t klysc_ext(const struct lysc_ext_instance *exts,
- const char *module, const char *name, const char **argument)
- {
- LY_ARRAY_COUNT_TYPE u = 0;
- if (!exts)
- return BOOL_FALSE;
- LY_ARRAY_FOR(exts, u) {
- const struct lysc_ext_instance *ext = &exts[u];
- //syslog(LOG_ERR, "mod: %s, ext: %s", ext->def->module->name, ext->def->name);
- if (faux_str_cmp(ext->def->module->name, module) != 0)
- continue;
- if (faux_str_cmp(ext->def->name, name) != 0)
- continue;
- if (argument)
- *argument = ext->argument;
- return BOOL_TRUE;
- }
- return BOOL_FALSE;
- }
- // Get extension by name
- bool_t klysc_node_ext(const struct lysc_node *node,
- const char *module, const char *name, const char **argument)
- {
- if (!node)
- return BOOL_FALSE;
- if (klysc_ext(node->exts, module, name, argument))
- return BOOL_TRUE;
- return BOOL_FALSE;
- }
- bool_t klysc_node_ext_is_password(const struct lysc_node *node)
- {
- return klysc_node_ext(node, "klish", "password", NULL);
- }
- const char *klysc_node_ext_completion(const struct lysc_node *node)
- {
- const char *xpath = NULL;
- klysc_node_ext(node, "klish", "completion", &xpath);
- return xpath;
- }
- const char *klysc_node_ext_default(const struct lysc_node *node)
- {
- const char *dflt = NULL;
- klysc_node_ext(node, "klish", "default", &dflt);
- return dflt;
- }
- // Get value from data lyd node
- char *klyd_node_value(const struct lyd_node *node)
- {
- const struct lysc_node *schema = NULL;
- const struct lysc_type *type = NULL;
- const char *origin_value = NULL;
- char *space = NULL;
- char *escaped = NULL;
- char *result = NULL;
- if (!node)
- return NULL;
- schema = node->schema;
- if (!(schema->nodetype & (LYS_LEAF | LYS_LEAFLIST)))
- return NULL;
- if (schema->nodetype & LYS_LEAF)
- type = ((const struct lysc_node_leaf *)schema)->type;
- else
- type = ((const struct lysc_node_leaflist *)schema)->type;
- if (type->basetype != LY_TYPE_IDENT) {
- origin_value = lyd_get_value(node);
- } else {
- // Identity
- const struct lyd_value *value = NULL;
- value = &((const struct lyd_node_term *)node)->value;
- origin_value = value->ident->name;
- }
- escaped = faux_str_c_esc(origin_value);
- // String with space must have quotes
- space = strchr(origin_value, ' ');
- if (space) {
- result = faux_str_sprintf("\"%s\"", escaped);
- faux_str_free(escaped);
- } else {
- result = escaped;
- }
- return result;
- }
- // Don't use standard lys_find_child() because it checks given module to be
- // equal to found node's module. So augmented nodes will not be found.
- const struct lysc_node *klysc_find_child(const struct lysc_node *node,
- const char *name)
- {
- const struct lysc_node *iter = NULL;
- if (!node)
- return NULL;
- LY_LIST_FOR(node, iter) {
- if (!(iter->nodetype & SRP_NODETYPE_CONF))
- continue;
- if (!(iter->flags & LYS_CONFIG_W))
- continue;
- // Special case. LYS_CHOICE and LYS_CASE must search for
- // specified name inside themselfs.
- if (iter->nodetype & (LYS_CHOICE | LYS_CASE)) {
- const struct lysc_node *node_in = NULL;
- node_in = klysc_find_child(lysc_node_child(iter), name);
- if (node_in)
- return node_in;
- continue;
- }
- if (!faux_str_cmp(iter->name, name))
- return iter;
- }
- return NULL;
- }
- static struct lysc_ident *klysc_find_ident(struct lysc_ident *ident, const char *name)
- {
- LY_ARRAY_COUNT_TYPE u = 0;
- if (!ident)
- return NULL;
- if (!ident->derived) {
- if (!faux_str_cmp(name, ident->name))
- return ident;
- return NULL;
- }
- LY_ARRAY_FOR(ident->derived, u) {
- struct lysc_ident *identity = klysc_find_ident(ident->derived[u], name);
- if (identity)
- return identity;
- }
- return NULL;
- }
- const char *klysc_identityref_prefix(struct lysc_type_identityref *type,
- const char *name)
- {
- LY_ARRAY_COUNT_TYPE u = 0;
- assert(type);
- LY_ARRAY_FOR(type->bases, u) {
- struct lysc_ident *identity = klysc_find_ident(type->bases[u], name);
- if (identity)
- return identity->module->name;
- }
- return NULL;
- }
- // Get module name by internal prefix. Sysrepo requests use module names but not
- // prefixes.
- static const char *module_by_prefix(const struct lysp_module *parsed, const char *prefix)
- {
- LY_ARRAY_COUNT_TYPE u = 0;
- if (!parsed)
- return NULL;
- if (!prefix)
- return NULL;
- // Try prefix of module itself
- if (faux_str_cmp(prefix, parsed->mod->prefix) == 0)
- return parsed->mod->name;
- // Try imported modules
- LY_ARRAY_FOR(parsed->imports, u) {
- const struct lysp_import *import = &parsed->imports[u];
- if (faux_str_cmp(prefix, import->prefix) == 0)
- return import->name;
- }
- return NULL;
- }
- static char *remap_xpath_prefixes(const char *orig_xpath, const struct lysp_module *parsed)
- {
- char *remaped = NULL;
- const char *pos = orig_xpath;
- const char *start = orig_xpath;
- char *cached_prefix = NULL;
- char *cached_module = NULL;
- if (!orig_xpath)
- return NULL;
- while (*pos != '\0') {
- if (*pos == '/') {
- faux_str_catn(&remaped, start, pos - start + 1);
- start = pos + 1;
- } else if (*pos == ':') {
- if (pos != start) {
- char *prefix = faux_str_dupn(start, pos - start);
- if (cached_prefix && (faux_str_cmp(prefix, cached_prefix) == 0)) {
- faux_str_cat(&remaped, cached_module);
- faux_str_free(prefix);
- } else {
- const char *module = module_by_prefix(parsed, prefix);
- if (module) {
- faux_str_cat(&remaped, module);
- faux_str_free(cached_prefix);
- faux_str_free(cached_module);
- cached_prefix = prefix;
- cached_module = faux_str_dup(module);
- } else {
- faux_str_cat(&remaped, prefix);
- faux_str_free(prefix);
- }
- }
- }
- faux_str_cat(&remaped, ":");
- start = pos + 1;
- }
- pos++;
- }
- if (start != pos)
- faux_str_catn(&remaped, start, pos - start);
- faux_str_free(cached_prefix);
- faux_str_free(cached_module);
- return remaped;
- }
- static const char *cut_front_ups(const char *orig_xpath, size_t *up_num)
- {
- const char *xpath = orig_xpath;
- const char *needle = "../";
- size_t needle_len = strlen(needle);
- size_t num = 0;
- if (!xpath)
- return NULL;
- while (faux_str_cmpn(xpath, needle, needle_len) == 0) {
- num++;
- xpath += needle_len;
- }
- if (up_num)
- *up_num = num;
- return xpath;
- }
- static char *cut_trailing_components(const char *orig_xpath, size_t up_num)
- {
- const char *xpath = NULL;
- char *res = NULL;
- size_t num = 0;
- if (!orig_xpath)
- return NULL;
- xpath = orig_xpath + strlen(orig_xpath);
- while (xpath >= orig_xpath) {
- if (*xpath == '/')
- num++;
- if (num == up_num) {
- res = faux_str_dupn(orig_xpath, xpath - orig_xpath + 1);
- break;
- }
- xpath--;
- }
- return res;
- }
- char *klysc_leafref_xpath(const struct lysc_node *node, const char *node_path)
- {
- char *compl_xpath = NULL;
- const struct lysc_type *type = NULL;
- const struct lysc_type_leafref *leafref = NULL;
- const char *orig_xpath = NULL;
- char *remaped_xpath = NULL;
- const char *tmp = NULL;
- size_t up_num = 0;
- if (!node)
- return NULL;
- if (!(node->nodetype & (LYS_LEAF | LYS_LEAFLIST)))
- return NULL;
- if (node->nodetype & LYS_LEAF)
- type = ((const struct lysc_node_leaf *)node)->type;
- else
- type = ((const struct lysc_node_leaflist *)node)->type;
- if (type->basetype != LY_TYPE_LEAFREF)
- return NULL;
- leafref = (const struct lysc_type_leafref *)type;
- orig_xpath = lyxp_get_expr(leafref->path);
- if (!orig_xpath)
- return NULL;
- remaped_xpath = remap_xpath_prefixes(orig_xpath, node->module->parsed);
- if (remaped_xpath[0] == '/') // Absolute path
- return remaped_xpath;
- // Relative path
- if (!node_path) {
- faux_str_free(remaped_xpath);
- return NULL;
- }
- tmp = cut_front_ups(remaped_xpath, &up_num);
- compl_xpath = cut_trailing_components(node_path, up_num);
- if (!compl_xpath) {
- faux_str_free(remaped_xpath);
- return NULL;
- }
- faux_str_cat(&compl_xpath, tmp);
- faux_str_free(remaped_xpath);
- return compl_xpath;
- }
|