#define _GNU_SOURCE
#include <assert.h>
#include <ctype.h>
#include <stddef.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include "compat.h"
#include "context.h"
#include "dict.h"
#include "hash_table.h"
#include "in.h"
#include "in_internal.h"
#include "log.h"
#include "ly_common.h"
#include "parser_schema.h"
#include "path.h"
#include "schema_compile.h"
#include "schema_features.h"
#include "set.h"
#include "tree.h"
#include "tree_data_internal.h"
#include "tree_edit.h"
#include "tree_schema.h"
#include "tree_schema_internal.h"
LY_ERR
lysp_check_prefix(struct lysp_ctx *ctx, struct lysp_import *imports, const char *module_prefix, const char **value)
{
struct lysp_import *i;
if (module_prefix && (&module_prefix != value) && !strcmp(module_prefix, *value)) {
LOGVAL_PARSER(ctx, LYVE_REFERENCE, "Prefix \"%s\" already used as module prefix.", *value);
return LY_EEXIST;
}
LY_ARRAY_FOR(imports, struct lysp_import, i) {
if (i->prefix && (&i->prefix != value) && !strcmp(i->prefix, *value)) {
LOGVAL_PARSER(ctx, LYVE_REFERENCE, "Prefix \"%s\" already used to import \"%s\" module.", *value,
i->name);
return LY_EEXIST;
}
}
return LY_SUCCESS;
}
void
lysp_sort_revisions(struct lysp_revision *revs)
{
LY_ARRAY_COUNT_TYPE i, r;
struct lysp_revision rev;
for (i = 1, r = 0; i < LY_ARRAY_COUNT(revs); i++) {
if (strcmp(revs[i].date, revs[r].date) > 0) {
r = i;
}
}
if (r) {
memcpy(&rev, &revs[0], sizeof rev);
memcpy(&revs[0], &revs[r], sizeof rev);
memcpy(&revs[r], &rev, sizeof rev);
}
}
LY_ERR
lysp_check_enum_name(struct lysp_ctx *ctx, const char *name, size_t name_len)
{
if (!name_len) {
LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Enum name must not be zero-length.");
return LY_EVALID;
} else if (isspace(name[0]) || isspace(name[name_len - 1])) {
LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Enum name must not have any leading or trailing whitespaces (\"%.*s\").",
(int)name_len, name);
return LY_EVALID;
} else {
for (uint32_t u = 0; u < name_len; ++u) {
if (iscntrl(name[u])) {
LOGWRN(PARSER_CTX(ctx), "Control characters in enum name should be avoided "
"(\"%.*s\", character number %" PRIu32 ").", (int)name_len, name, u + 1);
break;
}
}
}
return LY_SUCCESS;
}
static LY_DATA_TYPE
lysp_type_str2builtin(const char *name, size_t len)
{
if (len >= 4) {
if (name[0] == 'b') {
if (name[1] == 'i') {
if ((len == 6) && !strncmp(&name[2], "nary", 4)) {
return LY_TYPE_BINARY;
} else if ((len == 4) && !strncmp(&name[2], "ts", 2)) {
return LY_TYPE_BITS;
}
} else if ((len == 7) && !strncmp(&name[1], "oolean", 6)) {
return LY_TYPE_BOOL;
}
} else if (name[0] == 'd') {
if ((len == 9) && !strncmp(&name[1], "ecimal64", 8)) {
return LY_TYPE_DEC64;
}
} else if (name[0] == 'e') {
if ((len == 5) && !strncmp(&name[1], "mpty", 4)) {
return LY_TYPE_EMPTY;
} else if ((len == 11) && !strncmp(&name[1], "numeration", 10)) {
return LY_TYPE_ENUM;
}
} else if (name[0] == 'i') {
if (name[1] == 'n') {
if ((len == 4) && !strncmp(&name[2], "t8", 2)) {
return LY_TYPE_INT8;
} else if (len == 5) {
if (!strncmp(&name[2], "t16", 3)) {
return LY_TYPE_INT16;
} else if (!strncmp(&name[2], "t32", 3)) {
return LY_TYPE_INT32;
} else if (!strncmp(&name[2], "t64", 3)) {
return LY_TYPE_INT64;
}
} else if ((len == 19) && !strncmp(&name[2], "stance-identifier", 17)) {
return LY_TYPE_INST;
}
} else if ((len == 11) && !strncmp(&name[1], "dentityref", 10)) {
return LY_TYPE_IDENT;
}
} else if (name[0] == 'l') {
if ((len == 7) && !strncmp(&name[1], "eafref", 6)) {
return LY_TYPE_LEAFREF;
}
} else if (name[0] == 's') {
if ((len == 6) && !strncmp(&name[1], "tring", 5)) {
return LY_TYPE_STRING;
}
} else if (name[0] == 'u') {
if (name[1] == 'n') {
if ((len == 5) && !strncmp(&name[2], "ion", 3)) {
return LY_TYPE_UNION;
}
} else if ((name[1] == 'i') && (name[2] == 'n') && (name[3] == 't')) {
if ((len == 5) && (name[4] == '8')) {
return LY_TYPE_UINT8;
} else if (len == 6) {
if (!strncmp(&name[4], "16", 2)) {
return LY_TYPE_UINT16;
} else if (!strncmp(&name[4], "32", 2)) {
return LY_TYPE_UINT32;
} else if (!strncmp(&name[4], "64", 2)) {
return LY_TYPE_UINT64;
}
}
}
}
}
return LY_TYPE_UNKNOWN;
}
static const struct lysp_tpdf *
lysp_typedef_match(const char *name, const struct lysp_tpdf *typedefs)
{
LY_ARRAY_COUNT_TYPE u;
LY_ARRAY_FOR(typedefs, u) {
if (!strcmp(name, typedefs[u].name)) {
return &typedefs[u];
}
}
return NULL;
}
LY_ERR
lysp_type_find(const char *id, struct lysp_node *start_node, const struct lysp_module *start_module,
const struct lysc_ext_instance *ext, LY_DATA_TYPE *type, const struct lysp_tpdf **tpdf, struct lysp_node **node)
{
const char *str, *name;
struct lysp_tpdf *typedefs;
const struct lysp_tpdf *ext_typedefs;
const struct lys_module *mod;
const struct lysp_module *local_module;
LY_ARRAY_COUNT_TYPE u, v;
assert(id);
assert(start_module);
assert(tpdf);
assert(node);
*node = NULL;
str = strchr(id, ':');
if (str) {
mod = ly_resolve_prefix(start_module->mod->ctx, id, str - id, LY_VALUE_SCHEMA, (void *)start_module);
local_module = mod ? mod->parsed : NULL;
name = str + 1;
*type = LY_TYPE_UNKNOWN;
} else {
local_module = start_module;
name = id;
*type = lysp_type_str2builtin(name, strlen(name));
if (*type) {
*tpdf = NULL;
return LY_SUCCESS;
}
}
LY_CHECK_RET(!local_module, LY_ENOTFOUND);
if (local_module == start_module) {
if (start_node) {
for (*node = start_node; *node; *node = (*node)->parent) {
*tpdf = lysp_typedef_match(name, lysp_node_typedefs(*node));
if (*tpdf) {
return LY_SUCCESS;
}
}
}
if (ext) {
lyplg_ext_parsed_get_storage(ext, LY_STMT_TYPEDEF, sizeof ext_typedefs, (const void **)&ext_typedefs);
if ((*tpdf = lysp_typedef_match(name, ext_typedefs))) {
return LY_SUCCESS;
}
}
}
local_module = local_module->mod->parsed;
if (local_module->typedefs) {
LY_ARRAY_FOR(local_module->typedefs, u) {
if (!strcmp(name, local_module->typedefs[u].name)) {
*tpdf = &local_module->typedefs[u];
return LY_SUCCESS;
}
}
}
LY_ARRAY_FOR(local_module->includes, u) {
typedefs = local_module->includes[u].submodule->typedefs;
LY_ARRAY_FOR(typedefs, v) {
if (!strcmp(name, typedefs[v].name)) {
*tpdf = &typedefs[v];
return LY_SUCCESS;
}
}
}
return LY_ENOTFOUND;
}
static LY_ERR
lysp_check_dup_ht_insert(struct lysp_ctx *ctx, struct ly_ht *ht, const char *name, const char *statement,
const char *err_detail)
{
LY_ERR ret;
uint32_t hash;
hash = lyht_hash(name, strlen(name));
ret = lyht_insert(ht, &name, hash, NULL);
if (ret == LY_EEXIST) {
if (err_detail) {
LOGVAL_PARSER(ctx, LY_VCODE_DUPIDENT2, name, statement, err_detail);
} else {
LOGVAL_PARSER(ctx, LY_VCODE_DUPIDENT, name, statement);
}
ret = LY_EVALID;
}
return ret;
}
static LY_ERR
lysp_check_dup_typedef(struct lysp_ctx *ctx, struct lysp_node *node, const struct lysp_tpdf *tpdf,
struct ly_ht *tpdfs_global)
{
struct lysp_node *parent;
uint32_t hash;
size_t name_len;
const char *name;
LY_ARRAY_COUNT_TYPE u;
const struct lysp_tpdf *typedefs;
assert(ctx);
assert(tpdf);
name = tpdf->name;
name_len = strlen(name);
if (lysp_type_str2builtin(name, name_len)) {
LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG,
"Duplicate identifier \"%s\" of typedef statement - name collision with a built-in type.", name);
return LY_EVALID;
}
if (node) {
typedefs = lysp_node_typedefs(node);
LY_ARRAY_FOR(typedefs, u) {
if (&typedefs[u] == tpdf) {
break;
}
if (!strcmp(name, typedefs[u].name)) {
LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG,
"Duplicate identifier \"%s\" of typedef statement - name collision with sibling type.", name);
return LY_EVALID;
}
}
for (parent = node->parent; parent; parent = parent->parent) {
if (lysp_typedef_match(name, lysp_node_typedefs(parent))) {
LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG,
"Duplicate identifier \"%s\" of typedef statement - name collision with another scoped type.", name);
return LY_EVALID;
}
}
}
if (node) {
hash = lyht_hash(name, name_len);
if (!lyht_find(tpdfs_global, &name, hash, NULL)) {
LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG,
"Duplicate identifier \"%s\" of typedef statement - scoped type collide with a top-level type.", name);
return LY_EVALID;
}
} else {
LY_CHECK_RET(lysp_check_dup_ht_insert(ctx, tpdfs_global, name, "typedef",
"name collision with another top-level type"));
}
return LY_SUCCESS;
}
static ly_bool
lysp_id_cmp(void *val1, void *val2, ly_bool UNUSED(mod), void *UNUSED(cb_data))
{
char *id1, *id2;
id1 = *(char **)val1;
id2 = *(char **)val2;
return strcmp(id1, id2) == 0 ? 1 : 0;
}
LY_ERR
lysp_check_dup_typedefs(struct lysp_ctx *ctx, struct lysp_module *mod)
{
struct ly_ht *ids_global;
const struct lysp_tpdf *typedefs;
LY_ARRAY_COUNT_TYPE u, v;
uint32_t i;
LY_ERR ret = LY_SUCCESS;
ids_global = lyht_new(LYHT_MIN_SIZE, sizeof(char *), lysp_id_cmp, NULL, 1);
LY_ARRAY_FOR(mod->typedefs, v) {
ret = lysp_check_dup_typedef(ctx, NULL, &mod->typedefs[v], ids_global);
LY_CHECK_GOTO(ret, cleanup);
}
LY_ARRAY_FOR(mod->includes, v) {
LY_ARRAY_FOR(mod->includes[v].submodule->typedefs, u) {
ret = lysp_check_dup_typedef(ctx, NULL, &mod->includes[v].submodule->typedefs[u], ids_global);
LY_CHECK_GOTO(ret, cleanup);
}
}
for (i = 0; i < ctx->tpdfs_nodes.count; ++i) {
typedefs = lysp_node_typedefs((struct lysp_node *)ctx->tpdfs_nodes.objs[i]);
LY_ARRAY_FOR(typedefs, u) {
ret = lysp_check_dup_typedef(ctx, (struct lysp_node *)ctx->tpdfs_nodes.objs[i], &typedefs[u], ids_global);
LY_CHECK_GOTO(ret, cleanup);
}
}
cleanup:
lyht_free(ids_global, NULL);
return ret;
}
static const struct lysp_node_grp *
lysp_grouping_match(const char *name, struct lysp_node *node)
{
const struct lysp_node_grp *groupings, *grp_iter;
groupings = lysp_node_groupings(node);
LY_LIST_FOR(groupings, grp_iter) {
if (!strcmp(name, grp_iter->name)) {
return grp_iter;
}
}
return NULL;
}
static LY_ERR
lysp_check_dup_grouping(struct lysp_ctx *ctx, struct lysp_node *node, const struct lysp_node_grp *grp,
struct ly_ht *grps_global)
{
struct lysp_node *parent;
uint32_t hash;
size_t name_len;
const char *name;
const struct lysp_node_grp *groupings, *grp_iter;
assert(ctx);
assert(grp);
name = grp->name;
name_len = strlen(name);
if (node) {
groupings = lysp_node_groupings(node);
LY_LIST_FOR(groupings, grp_iter) {
if (grp_iter == grp) {
break;
}
if (!strcmp(name, grp_iter->name)) {
LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG,
"Duplicate identifier \"%s\" of grouping statement - name collision with sibling grouping.", name);
return LY_EVALID;
}
}
for (parent = node->parent; parent; parent = parent->parent) {
if (lysp_grouping_match(name, parent)) {
LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG,
"Duplicate identifier \"%s\" of grouping statement - name collision with another scoped grouping.",
name);
return LY_EVALID;
}
}
}
if (node) {
hash = lyht_hash(name, name_len);
if (!lyht_find(grps_global, &name, hash, NULL)) {
LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG,
"Duplicate identifier \"%s\" of grouping statement - scoped grouping collide with a top-level grouping.",
name);
return LY_EVALID;
}
} else {
LY_CHECK_RET(lysp_check_dup_ht_insert(ctx, grps_global, name, "grouping",
"name collision with another top-level grouping"));
}
return LY_SUCCESS;
}
LY_ERR
lysp_check_dup_groupings(struct lysp_ctx *ctx, struct lysp_module *mod)
{
struct ly_ht *ids_global;
const struct lysp_node_grp *groupings, *grp_iter;
LY_ARRAY_COUNT_TYPE u;
uint32_t i;
LY_ERR ret = LY_SUCCESS;
ids_global = lyht_new(LYHT_MIN_SIZE, sizeof(char *), lysp_id_cmp, NULL, 1);
LY_LIST_FOR(mod->groupings, grp_iter) {
ret = lysp_check_dup_grouping(ctx, NULL, grp_iter, ids_global);
LY_CHECK_GOTO(ret, cleanup);
}
LY_ARRAY_FOR(mod->includes, u) {
LY_LIST_FOR(mod->includes[u].submodule->groupings, grp_iter) {
ret = lysp_check_dup_grouping(ctx, NULL, grp_iter, ids_global);
LY_CHECK_GOTO(ret, cleanup);
}
}
for (i = 0; i < ctx->grps_nodes.count; ++i) {
groupings = lysp_node_groupings((struct lysp_node *)ctx->grps_nodes.objs[i]);
LY_LIST_FOR(groupings, grp_iter) {
ret = lysp_check_dup_grouping(ctx, (struct lysp_node *)ctx->grps_nodes.objs[i], grp_iter, ids_global);
LY_CHECK_GOTO(ret, cleanup);
}
}
cleanup:
lyht_free(ids_global, NULL);
return ret;
}
static ly_bool
ly_ptrequal_cb(void *val1_p, void *val2_p, ly_bool UNUSED(mod), void *UNUSED(cb_data))
{
void *ptr1 = *((void **)val1_p), *ptr2 = *((void **)val2_p);
return ptr1 == ptr2 ? 1 : 0;
}
LY_ERR
lysp_check_dup_features(struct lysp_ctx *ctx, struct lysp_module *mod)
{
LY_ARRAY_COUNT_TYPE u;
struct ly_ht *ht;
struct lysp_feature *f;
LY_ERR ret = LY_SUCCESS;
ht = lyht_new(LYHT_MIN_SIZE, sizeof(void *), ly_ptrequal_cb, NULL, 1);
LY_CHECK_RET(!ht, LY_EMEM);
LY_ARRAY_FOR(mod->features, struct lysp_feature, f) {
ret = lysp_check_dup_ht_insert(ctx, ht, f->name, "feature",
"name collision with another top-level feature");
LY_CHECK_GOTO(ret, cleanup);
}
LY_ARRAY_FOR(mod->includes, u) {
LY_ARRAY_FOR(mod->includes[u].submodule->features, struct lysp_feature, f) {
ret = lysp_check_dup_ht_insert(ctx, ht, f->name, "feature",
"name collision with another top-level feature");
LY_CHECK_GOTO(ret, cleanup);
}
}
cleanup:
lyht_free(ht, NULL);
return ret;
}
LY_ERR
lysp_check_dup_identities(struct lysp_ctx *ctx, struct lysp_module *mod)
{
LY_ARRAY_COUNT_TYPE u;
struct ly_ht *ht;
struct lysp_ident *i;
LY_ERR ret = LY_SUCCESS;
ht = lyht_new(LYHT_MIN_SIZE, sizeof(void *), ly_ptrequal_cb, NULL, 1);
LY_CHECK_RET(!ht, LY_EMEM);
LY_ARRAY_FOR(mod->identities, struct lysp_ident, i) {
ret = lysp_check_dup_ht_insert(ctx, ht, i->name, "identity",
"name collision with another top-level identity");
LY_CHECK_GOTO(ret, cleanup);
}
LY_ARRAY_FOR(mod->includes, u) {
LY_ARRAY_FOR(mod->includes[u].submodule->identities, struct lysp_ident, i) {
ret = lysp_check_dup_ht_insert(ctx, ht, i->name, "identity",
"name collision with another top-level identity");
LY_CHECK_GOTO(ret, cleanup);
}
}
cleanup:
lyht_free(ht, NULL);
return ret;
}
LY_ERR
lys_check_date(const struct ly_ctx *ctx, const char *date, uint32_t date_len, const char *stmt)
{
struct tm tm, tm_;
uint8_t i;
char *r;
LY_CHECK_ARG_RET(ctx, date, LY_EINVAL);
if (date_len != LY_REV_SIZE - 1) {
if (ctx) {
LOGVAL(ctx, NULL, LYVE_SYNTAX_YANG, "Invalid length %" PRIu32 " of a %s.", date_len, stmt);
}
return LY_EINVAL;
}
for (i = 0; i < date_len; i++) {
if ((i == 4) || (i == 7)) {
if (date[i] != '-') {
goto error;
}
} else if (!isdigit(date[i])) {
goto error;
}
}
memset(&tm, 0, sizeof tm);
r = strptime(date, "%Y-%m-%d", &tm);
if (!r || (r != &date[LY_REV_SIZE - 1])) {
goto error;
}
memcpy(&tm_, &tm, sizeof tm);
tm_.tm_isdst = -1;
mktime(&tm_);
if (tm.tm_mday != tm_.tm_mday) {
goto error;
}
return LY_SUCCESS;
error:
if (ctx) {
LOGVAL(ctx, NULL, LY_VCODE_INVAL, (int)date_len, date, stmt);
}
return LY_EINVAL;
}
static LY_ERR
lys_parse_localfile(struct ly_ctx *ctx, const char *name, const char *revision, struct lysp_ctx *main_ctx,
const char *main_name, struct ly_set *new_mods, ly_bool *found, void **result)
{
struct ly_in *in;
char *filepath = NULL;
LYS_INFORMAT format = 0;
void *mod = NULL;
LY_ERR ret = LY_SUCCESS;
struct lysp_load_module_data mod_data = {0};
*found = 0;
*result = NULL;
LY_CHECK_RET(lys_search_localfile(ly_ctx_get_searchdirs(ctx), !(ctx->opts & LY_CTX_DISABLE_SEARCHDIR_CWD), name,
revision, &filepath, &format));
if (!filepath) {
LOGVRB("Module \"%s%s%s\" not found in local searchdirs.", name, revision ? "@" : "", revision ? revision : "");
goto cleanup;
}
LOGVRB("Loading schema from \"%s\" file.", filepath);
LY_CHECK_ERR_GOTO(ret = ly_in_new_filepath(filepath, 0, &in),
LOGERR(ctx, ret, "Unable to create input handler for filepath %s.", filepath), cleanup);
mod_data.name = name;
mod_data.revision = revision;
mod_data.path = filepath;
mod_data.submoduleof = main_name;
if (main_ctx) {
ret = lys_parse_submodule(ctx, in, format, main_ctx, &mod_data, 1, new_mods, (struct lysp_submodule **)&mod);
} else {
ret = lys_parse_in(ctx, in, format, &mod_data, new_mods, (struct lys_module **)&mod);
}
ly_in_free(in, 1);
LY_CHECK_GOTO(ret, cleanup);
*found = 1;
*result = mod;
cleanup:
free(filepath);
return ret;
}
static LY_ERR
lys_load_mod_from_clb_or_file(struct ly_ctx *ctx, const char *name, const char *revision,
struct lys_module *mod_latest, struct ly_set *new_mods, struct lys_module **mod)
{
LY_ERR r;
const char *module_data = NULL;
LYS_INFORMAT format = LYS_IN_UNKNOWN;
ly_bool clb_used, searchdirs_used, found = 0;
void (*module_data_free)(void *module_data, void *user_data) = NULL;
struct lysp_load_module_data mod_data = {0};
struct ly_in *in;
*mod = NULL;
if (!ctx->imp_clb) {
clb_used = 1;
} else if (mod_latest && (mod_latest->latest_revision & LYS_MOD_LATEST_IMPCLB)) {
clb_used = 1;
} else {
clb_used = 0;
}
if (ctx->opts & LY_CTX_DISABLE_SEARCHDIRS) {
searchdirs_used = 1;
} else if (mod_latest && (mod_latest->latest_revision & LYS_MOD_LATEST_SEARCHDIRS)) {
searchdirs_used = 1;
} else {
searchdirs_used = 0;
}
while (!found && (!clb_used || !searchdirs_used)) {
if ((!(ctx->opts & LY_CTX_PREFER_SEARCHDIRS) || searchdirs_used) && !clb_used) {
if (!ctx->imp_clb(name, revision, NULL, NULL, ctx->imp_clb_data, &format, &module_data, &module_data_free)) {
LY_CHECK_RET(ly_in_new_memory(module_data, &in));
mod_data.name = name;
mod_data.revision = revision;
r = lys_parse_in(ctx, in, format, &mod_data, new_mods, mod);
ly_in_free(in, 0);
if (module_data_free) {
module_data_free((void *)module_data, ctx->imp_clb_data);
}
LY_CHECK_RET(r);
found = 1;
}
clb_used = 1;
if (*mod && !revision) {
(*mod)->latest_revision |= LYS_MOD_LATEST_IMPCLB;
}
} else if (!searchdirs_used) {
LY_CHECK_RET(lys_parse_localfile(ctx, name, revision, NULL, NULL, new_mods, &found, (void **)mod));
searchdirs_used = 1;
if (*mod && !revision) {
(*mod)->latest_revision |= LYS_MOD_LATEST_SEARCHDIRS;
}
}
}
if (!*mod && !mod_latest) {
LOGVAL(ctx, NULL, LYVE_REFERENCE, "Loading \"%s\" module failed, not found.", name);
return LY_ENOTFOUND;
}
return LY_SUCCESS;
}
static struct lys_module *
lys_get_module_without_revision(struct ly_ctx *ctx, const char *name)
{
struct lys_module *mod, *mod_impl;
uint32_t index;
index = 0;
while ((mod = ly_ctx_get_module_iter(ctx, &index))) {
if (!strcmp(mod->name, name) && (mod->latest_revision & LYS_MOD_IMPORTED_REV)) {
break;
}
}
mod_impl = ly_ctx_get_module_implemented(ctx, name);
if (mod) {
if (mod_impl && (mod != mod_impl)) {
LOGVRB("Implemented module \"%s@%s\" is not used for import, revision \"%s\" is imported instead.",
mod_impl->name, mod_impl->revision, mod->revision);
}
return mod;
} else if (mod_impl) {
return mod_impl;
}
mod = ly_ctx_get_module_latest(ctx, name);
return mod;
}
static LY_ERR
lys_check_circular_dependency(struct ly_ctx *ctx, struct lys_module **mod)
{
if ((*mod) && (*mod)->parsed->parsing) {
LOGVAL(ctx, NULL, LYVE_REFERENCE, "A circular dependency (import) for module \"%s\".", (*mod)->name);
*mod = NULL;
return LY_EVALID;
}
return LY_SUCCESS;
}
LY_ERR
lys_parse_load(struct ly_ctx *ctx, const char *name, const char *revision, struct ly_set *new_mods,
struct lys_module **mod)
{
struct lys_module *mod_latest = NULL;
assert(mod && new_mods);
if (revision) {
*mod = ly_ctx_get_module(ctx, name, revision);
} else {
*mod = lys_get_module_without_revision(ctx, name);
if (*mod && !(*mod)->implemented && !((*mod)->latest_revision & LYS_MOD_IMPORTED_REV)) {
mod_latest = *mod;
*mod = NULL;
}
}
if (!*mod) {
LY_CHECK_RET(lys_load_mod_from_clb_or_file(ctx, name, revision, mod_latest, new_mods, mod));
if (!*mod) {
LOGVRB("Newer revision than \"%s@%s\" not found, using this as the latest revision.",
mod_latest->name, mod_latest->revision);
assert(mod_latest->latest_revision & LYS_MOD_LATEST_REV);
mod_latest->latest_revision |= LYS_MOD_LATEST_SEARCHDIRS;
*mod = mod_latest;
} else if (*mod && !revision && ((*mod)->latest_revision & LYS_MOD_LATEST_REV)) {
(*mod)->latest_revision |= LYS_MOD_LATEST_SEARCHDIRS;
}
}
LY_CHECK_RET(lys_check_circular_dependency(ctx, mod));
return LY_SUCCESS;
}
LY_ERR
lysp_check_stringchar(struct lysp_ctx *ctx, uint32_t c)
{
if (!is_yangutf8char(c)) {
LOGVAL_PARSER(ctx, LY_VCODE_INCHAR, (char)c);
return LY_EVALID;
}
return LY_SUCCESS;
}
LY_ERR
lysp_check_identifierchar(struct lysp_ctx *ctx, uint32_t c, ly_bool first, uint8_t *prefix)
{
if (first || (prefix && ((*prefix) == 1))) {
if (!is_yangidentstartchar(c)) {
if ((c < UCHAR_MAX) && isprint(c)) {
if (ctx) {
LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Invalid identifier first character '%c' (0x%04" PRIx32 ").",
(char)c, c);
}
} else {
if (ctx) {
LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Invalid identifier first character 0x%04" PRIx32 ".", c);
}
}
return LY_EVALID;
}
if (prefix) {
if (first) {
(*prefix) = 0;
} else {
(*prefix) = 2;
}
}
} else if ((c == ':') && prefix && ((*prefix) == 0)) {
(*prefix) = 1;
} else if (!is_yangidentchar(c)) {
if (ctx) {
LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Invalid identifier character '%c' (0x%04" PRIx32 ").", (char)c, c);
}
return LY_EVALID;
}
return LY_SUCCESS;
}
static LY_ERR
lysp_main_pmod_get_submodule(struct lysp_ctx *pctx, struct lysp_include *inc)
{
LY_ARRAY_COUNT_TYPE i;
struct lysp_module *main_pmod = PARSER_CUR_PMOD(pctx)->mod->parsed;
LY_ARRAY_FOR(main_pmod->includes, i) {
if (strcmp(main_pmod->includes[i].name, inc->name)) {
continue;
}
if (inc->rev[0] && strncmp(inc->rev, main_pmod->includes[i].rev, LY_REV_SIZE)) {
LOGVAL_PARSER(pctx, LYVE_REFERENCE,
"Submodule %s includes different revision (%s) of the submodule %s:%s included by the main module %s.",
((struct lysp_submodule *)PARSER_CUR_PMOD(pctx))->name, inc->rev,
main_pmod->includes[i].name, main_pmod->includes[i].rev, main_pmod->mod->name);
return LY_EVALID;
}
inc->submodule = main_pmod->includes[i].submodule;
return inc->submodule ? LY_SUCCESS : LY_ENOT;
}
if (main_pmod->version == LYS_VERSION_1_1) {
LOGVAL_PARSER(pctx, LYVE_REFERENCE,
"YANG 1.1 requires all submodules to be included from main module. "
"But submodule \"%s\" includes submodule \"%s\" which is not included by main module \"%s\".",
((struct lysp_submodule *)PARSER_CUR_PMOD(pctx))->name, inc->name, main_pmod->mod->name);
return LY_EVALID;
} else {
return LY_ENOT;
}
}
static LY_ERR
lysp_parsed_mods_get_submodule(struct lysp_ctx *pctx, struct lysp_include *inc)
{
uint32_t i;
struct lysp_submodule *submod;
for (i = 0; i < pctx->parsed_mods->count - 1; ++i) {
submod = pctx->parsed_mods->objs[i];
if (!submod->is_submod) {
continue;
}
if (strcmp(submod->name, inc->name)) {
continue;
}
if (inc->rev[0] && submod->revs && strncmp(inc->rev, submod->revs[0].date, LY_REV_SIZE)) {
LOGVAL_PARSER(pctx, LYVE_REFERENCE,
"Submodule %s includes different revision (%s) of the submodule %s:%s included by the main module %s.",
((struct lysp_submodule *)PARSER_CUR_PMOD(pctx))->name, inc->rev,
submod->name, submod->revs[0].date, PARSER_CUR_PMOD(pctx)->mod->name);
return LY_EVALID;
}
inc->submodule = submod;
return LY_SUCCESS;
}
return LY_ENOT;
}
static LY_ERR
lysp_inject_submodule(struct lysp_ctx *pctx, struct lysp_include *inc)
{
LY_ARRAY_COUNT_TYPE i;
struct lysp_include *inc_new, *inc_tofill = NULL;
struct lysp_module *main_pmod = PARSER_CUR_PMOD(pctx)->mod->parsed;
LY_ARRAY_FOR(main_pmod->includes, i) {
if (strcmp(main_pmod->includes[i].name, inc->name)) {
continue;
}
inc_tofill = &main_pmod->includes[i];
break;
}
if (inc_tofill) {
inc_tofill->submodule = inc->submodule;
} else {
LY_ARRAY_NEW_RET(PARSER_CTX(pctx), main_pmod->includes, inc_new, LY_EMEM);
inc_new->submodule = inc->submodule;
DUP_STRING_RET(PARSER_CTX(pctx), inc->name, inc_new->name);
DUP_STRING_RET(PARSER_CTX(pctx), inc->dsc, inc_new->dsc);
DUP_STRING_RET(PARSER_CTX(pctx), inc->ref, inc_new->ref);
memcpy(inc_new->rev, inc->rev, LY_REV_SIZE);
inc_new->injected = 1;
}
return LY_SUCCESS;
}
static LY_ERR
lysp_load_submod_from_clb_or_file(struct lysp_ctx *pctx, const char *name, const char *revision,
struct lysp_submodule *submod_latest, struct ly_set *new_mods, struct lysp_submodule **submod)
{
LY_ERR r;
struct ly_ctx *ctx = PARSER_CTX(pctx);
ly_bool clb_used, searchdirs_used, found = 0;
const char *submodule_data = NULL;
LYS_INFORMAT format = LYS_IN_UNKNOWN;
void (*submodule_data_free)(void *module_data, void *user_data) = NULL;
struct lysp_load_module_data mod_data = {0};
struct ly_in *in;
assert(!submod_latest || (submod_latest->latest_revision != 2));
*submod = NULL;
if (!ctx->imp_clb) {
clb_used = 1;
} else {
clb_used = 0;
}
if (ctx->opts & LY_CTX_DISABLE_SEARCHDIRS) {
searchdirs_used = 1;
} else {
searchdirs_used = 0;
}
while (!found && (!clb_used || !searchdirs_used)) {
if ((!(ctx->opts & LY_CTX_PREFER_SEARCHDIRS) || searchdirs_used) && !clb_used) {
if (!ctx->imp_clb(PARSER_CUR_PMOD(pctx)->mod->name, NULL, name, revision, ctx->imp_clb_data, &format,
&submodule_data, &submodule_data_free)) {
LY_CHECK_RET(ly_in_new_memory(submodule_data, &in));
mod_data.name = name;
mod_data.revision = revision;
mod_data.submoduleof = PARSER_CUR_PMOD(pctx)->mod->name;
r = lys_parse_submodule(ctx, in, format, pctx->main_ctx, &mod_data, 0, new_mods, submod);
ly_in_free(in, 0);
if (submodule_data_free) {
submodule_data_free((void *)submodule_data, ctx->imp_clb_data);
}
LY_CHECK_RET(r);
found = 1;
}
clb_used = 1;
} else if (!searchdirs_used) {
LY_CHECK_RET(lys_parse_localfile(ctx, name, revision, pctx->main_ctx,
PARSER_CUR_PMOD(pctx->main_ctx)->mod->name, new_mods, &found, (void **)submod));
searchdirs_used = 1;
}
}
if (!*submod && !submod_latest) {
LOGVAL(ctx, NULL, LYVE_REFERENCE, "Including \"%s\" submodule into \"%s\" failed, not found.", name,
PARSER_CUR_PMOD(pctx)->is_submod ? ((struct lysp_submodule *)PARSER_CUR_PMOD(pctx))->name :
PARSER_CUR_PMOD(pctx)->mod->name);
return LY_ENOTFOUND;
}
return LY_SUCCESS;
}
LY_ERR
lysp_load_submodules(struct lysp_ctx *pctx, struct lysp_module *pmod, struct ly_set *new_mods)
{
LY_ERR r;
struct lysp_submodule *submod;
struct lysp_include *inc;
LY_ARRAY_COUNT_TYPE u;
ly_bool submod_included;
LY_ARRAY_FOR(pmod->includes, u) {
inc = &pmod->includes[u];
if (inc->submodule) {
continue;
}
submod_included = 1;
if (pmod->is_submod) {
r = lysp_main_pmod_get_submodule(pctx, inc);
if (r == LY_ENOT) {
submod_included = 0;
} else if (r) {
return r;
} else if (inc->rev[0] || (inc->submodule->latest_revision == 2)) {
continue;
}
}
r = lysp_parsed_mods_get_submodule(pctx, inc);
if (r && (r != LY_ENOT)) {
return r;
} else if (!r && ((inc->submodule->latest_revision == 2) || inc->submodule->parsing)) {
continue;
}
LY_CHECK_RET(lysp_load_submod_from_clb_or_file(pctx, inc->name, inc->rev[0] ? inc->rev : NULL, inc->submodule,
new_mods, &submod));
if (submod) {
inc = &pmod->includes[u];
assert(!inc->submodule);
inc->submodule = submod;
if (!submod_included) {
LY_CHECK_RET(lysp_inject_submodule(pctx, inc));
}
}
}
return LY_SUCCESS;
}
LIBYANG_API_DEF const struct lysc_when *
lysc_has_when(const struct lysc_node *node)
{
struct lysc_when **when;
if (!node) {
return NULL;
}
do {
when = lysc_node_when(node);
if (when) {
return when[0];
}
node = node->parent;
} while (node && (node->nodetype & (LYS_CASE | LYS_CHOICE)));
return NULL;
}
LIBYANG_API_DEF const struct lys_module *
lysc_owner_module(const struct lysc_node *node)
{
if (!node) {
return NULL;
}
for ( ; node->parent; node = node->parent) {}
return node->module;
}
LIBYANG_API_DEF const char *
lys_nodetype2str(uint16_t nodetype)
{
switch (nodetype) {
case LYS_CONTAINER:
return "container";
case LYS_CHOICE:
return "choice";
case LYS_LEAF:
return "leaf";
case LYS_LEAFLIST:
return "leaf-list";
case LYS_LIST:
return "list";
case LYS_ANYXML:
return "anyxml";
case LYS_ANYDATA:
return "anydata";
case LYS_CASE:
return "case";
case LYS_RPC:
return "RPC";
case LYS_ACTION:
return "action";
case LYS_NOTIF:
return "notification";
case LYS_USES:
return "uses";
default:
return "unknown";
}
}
const char *
lys_datatype2str(LY_DATA_TYPE basetype)
{
switch (basetype) {
case LY_TYPE_BINARY:
return "binary";
case LY_TYPE_UINT8:
return "uint8";
case LY_TYPE_UINT16:
return "uint16";
case LY_TYPE_UINT32:
return "uint32";
case LY_TYPE_UINT64:
return "uint64";
case LY_TYPE_STRING:
return "string";
case LY_TYPE_BITS:
return "bits";
case LY_TYPE_BOOL:
return "boolean";
case LY_TYPE_DEC64:
return "decimal64";
case LY_TYPE_EMPTY:
return "empty";
case LY_TYPE_ENUM:
return "enumeration";
case LY_TYPE_IDENT:
return "identityref";
case LY_TYPE_INST:
return "instance-identifier";
case LY_TYPE_LEAFREF:
return "leafref";
case LY_TYPE_UNION:
return "union";
case LY_TYPE_INT8:
return "int8";
case LY_TYPE_INT16:
return "int16";
case LY_TYPE_INT32:
return "int32";
case LY_TYPE_INT64:
return "int64";
default:
return "unknown";
}
}
LIBYANG_API_DEF const struct lysp_tpdf *
lysp_node_typedefs(const struct lysp_node *node)
{
if (!node) {
return NULL;
}
switch (node->nodetype) {
case LYS_CONTAINER:
return ((struct lysp_node_container *)node)->typedefs;
case LYS_LIST:
return ((struct lysp_node_list *)node)->typedefs;
case LYS_GROUPING:
return ((struct lysp_node_grp *)node)->typedefs;
case LYS_RPC:
case LYS_ACTION:
return ((struct lysp_node_action *)node)->typedefs;
case LYS_INPUT:
case LYS_OUTPUT:
return ((struct lysp_node_action_inout *)node)->typedefs;
case LYS_NOTIF:
return ((struct lysp_node_notif *)node)->typedefs;
default:
return NULL;
}
}
LIBYANG_API_DEF const struct lysp_node_grp *
lysp_node_groupings(const struct lysp_node *node)
{
if (!node) {
return NULL;
}
switch (node->nodetype) {
case LYS_CONTAINER:
return ((struct lysp_node_container *)node)->groupings;
case LYS_LIST:
return ((struct lysp_node_list *)node)->groupings;
case LYS_GROUPING:
return ((struct lysp_node_grp *)node)->groupings;
case LYS_RPC:
case LYS_ACTION:
return ((struct lysp_node_action *)node)->groupings;
case LYS_INPUT:
case LYS_OUTPUT:
return ((struct lysp_node_action_inout *)node)->groupings;
case LYS_NOTIF:
return ((struct lysp_node_notif *)node)->groupings;
default:
return NULL;
}
}
struct lysp_node_action **
lysp_node_actions_p(struct lysp_node *node)
{
assert(node);
switch (node->nodetype) {
case LYS_CONTAINER:
return &((struct lysp_node_container *)node)->actions;
case LYS_LIST:
return &((struct lysp_node_list *)node)->actions;
case LYS_GROUPING:
return &((struct lysp_node_grp *)node)->actions;
case LYS_AUGMENT:
return &((struct lysp_node_augment *)node)->actions;
default:
return NULL;
}
}
LIBYANG_API_DEF const struct lysp_node_action *
lysp_node_actions(const struct lysp_node *node)
{
struct lysp_node_action **actions;
if (!node) {
return NULL;
}
actions = lysp_node_actions_p((struct lysp_node *)node);
if (actions) {
return *actions;
} else {
return NULL;
}
}
struct lysp_node_notif **
lysp_node_notifs_p(struct lysp_node *node)
{
assert(node);
switch (node->nodetype) {
case LYS_CONTAINER:
return &((struct lysp_node_container *)node)->notifs;
case LYS_LIST:
return &((struct lysp_node_list *)node)->notifs;
case LYS_GROUPING:
return &((struct lysp_node_grp *)node)->notifs;
case LYS_AUGMENT:
return &((struct lysp_node_augment *)node)->notifs;
default:
return NULL;
}
}
LIBYANG_API_DEF const struct lysp_node_notif *
lysp_node_notifs(const struct lysp_node *node)
{
struct lysp_node_notif **notifs;
if (!node) {
return NULL;
}
notifs = lysp_node_notifs_p((struct lysp_node *)node);
if (notifs) {
return *notifs;
} else {
return NULL;
}
}
struct lysp_node **
lysp_node_child_p(struct lysp_node *node)
{
assert(node);
switch (node->nodetype) {
case LYS_CONTAINER:
return &((struct lysp_node_container *)node)->child;
case LYS_CHOICE:
return &((struct lysp_node_choice *)node)->child;
case LYS_LIST:
return &((struct lysp_node_list *)node)->child;
case LYS_CASE:
return &((struct lysp_node_case *)node)->child;
case LYS_GROUPING:
return &((struct lysp_node_grp *)node)->child;
case LYS_AUGMENT:
return &((struct lysp_node_augment *)node)->child;
case LYS_INPUT:
case LYS_OUTPUT:
return &((struct lysp_node_action_inout *)node)->child;
case LYS_NOTIF:
return &((struct lysp_node_notif *)node)->child;
default:
return NULL;
}
}
LIBYANG_API_DEF const struct lysp_node *
lysp_node_child(const struct lysp_node *node)
{
struct lysp_node **child;
if (!node) {
return NULL;
}
child = lysp_node_child_p((struct lysp_node *)node);
if (child) {
return *child;
} else {
return NULL;
}
}
struct lysp_restr **
lysp_node_musts_p(const struct lysp_node *node)
{
if (!node) {
return NULL;
}
switch (node->nodetype) {
case LYS_CONTAINER:
return &((struct lysp_node_container *)node)->musts;
case LYS_LEAF:
return &((struct lysp_node_leaf *)node)->musts;
case LYS_LEAFLIST:
return &((struct lysp_node_leaflist *)node)->musts;
case LYS_LIST:
return &((struct lysp_node_list *)node)->musts;
case LYS_ANYXML:
case LYS_ANYDATA:
return &((struct lysp_node_anydata *)node)->musts;
case LYS_NOTIF:
return &((struct lysp_node_notif *)node)->musts;
case LYS_INPUT:
case LYS_OUTPUT:
return &((struct lysp_node_action_inout *)node)->musts;
default:
return NULL;
}
}
struct lysp_restr *
lysp_node_musts(const struct lysp_node *node)
{
struct lysp_restr **musts;
musts = lysp_node_musts_p(node);
if (musts) {
return *musts;
} else {
return NULL;
}
}
struct lysp_when **
lysp_node_when_p(const struct lysp_node *node)
{
if (!node) {
return NULL;
}
switch (node->nodetype) {
case LYS_CONTAINER:
return &((struct lysp_node_container *)node)->when;
case LYS_CHOICE:
return &((struct lysp_node_choice *)node)->when;
case LYS_LEAF:
return &((struct lysp_node_leaf *)node)->when;
case LYS_LEAFLIST:
return &((struct lysp_node_leaflist *)node)->when;
case LYS_LIST:
return &((struct lysp_node_list *)node)->when;
case LYS_ANYXML:
case LYS_ANYDATA:
return &((struct lysp_node_anydata *)node)->when;
case LYS_CASE:
return &((struct lysp_node_case *)node)->when;
case LYS_USES:
return &((struct lysp_node_uses *)node)->when;
case LYS_AUGMENT:
return &((struct lysp_node_augment *)node)->when;
default:
return NULL;
}
}
struct lysp_when *
lysp_node_when(const struct lysp_node *node)
{
struct lysp_when **when;
when = lysp_node_when_p(node);
if (when) {
return *when;
} else {
return NULL;
}
}
struct lysc_node_action **
lysc_node_actions_p(struct lysc_node *node)
{
assert(node);
switch (node->nodetype) {
case LYS_CONTAINER:
return &((struct lysc_node_container *)node)->actions;
case LYS_LIST:
return &((struct lysc_node_list *)node)->actions;
default:
return NULL;
}
}
LIBYANG_API_DEF const struct lysc_node_action *
lysc_node_actions(const struct lysc_node *node)
{
struct lysc_node_action **actions;
if (!node) {
return NULL;
}
actions = lysc_node_actions_p((struct lysc_node *)node);
if (actions) {
return *actions;
} else {
return NULL;
}
}
struct lysc_node_notif **
lysc_node_notifs_p(struct lysc_node *node)
{
assert(node);
switch (node->nodetype) {
case LYS_CONTAINER:
return &((struct lysc_node_container *)node)->notifs;
case LYS_LIST:
return &((struct lysc_node_list *)node)->notifs;
default:
return NULL;
}
}
LIBYANG_API_DEF const struct lysc_node_notif *
lysc_node_notifs(const struct lysc_node *node)
{
struct lysc_node_notif **notifs;
if (!node) {
return NULL;
}
notifs = lysc_node_notifs_p((struct lysc_node *)node);
if (notifs) {
return *notifs;
} else {
return NULL;
}
}
struct lysc_node **
lysc_node_child_p(const struct lysc_node *node)
{
assert(node && !(node->nodetype & (LYS_RPC | LYS_ACTION)));
switch (node->nodetype) {
case LYS_CONTAINER:
return &((struct lysc_node_container *)node)->child;
case LYS_CHOICE:
return (struct lysc_node **)&((struct lysc_node_choice *)node)->cases;
case LYS_CASE:
return &((struct lysc_node_case *)node)->child;
case LYS_LIST:
return &((struct lysc_node_list *)node)->child;
case LYS_INPUT:
case LYS_OUTPUT:
return &((struct lysc_node_action_inout *)node)->child;
case LYS_NOTIF:
return &((struct lysc_node_notif *)node)->child;
default:
return NULL;
}
}
LIBYANG_API_DEF const struct lysc_node *
lysc_node_child(const struct lysc_node *node)
{
struct lysc_node **child;
if (!node) {
return NULL;
}
if (node->nodetype & (LYS_RPC | LYS_ACTION)) {
return &((struct lysc_node_action *)node)->input.node;
} else {
child = lysc_node_child_p(node);
if (child) {
return *child;
}
}
return NULL;
}
struct lysc_must **
lysc_node_musts_p(const struct lysc_node *node)
{
if (!node) {
return NULL;
}
switch (node->nodetype) {
case LYS_CONTAINER:
return &((struct lysc_node_container *)node)->musts;
case LYS_LEAF:
return &((struct lysc_node_leaf *)node)->musts;
case LYS_LEAFLIST:
return &((struct lysc_node_leaflist *)node)->musts;
case LYS_LIST:
return &((struct lysc_node_list *)node)->musts;
case LYS_ANYXML:
case LYS_ANYDATA:
return &((struct lysc_node_anydata *)node)->musts;
case LYS_NOTIF:
return &((struct lysc_node_notif *)node)->musts;
case LYS_INPUT:
case LYS_OUTPUT:
return &((struct lysc_node_action_inout *)node)->musts;
default:
return NULL;
}
}
LIBYANG_API_DEF struct lysc_must *
lysc_node_musts(const struct lysc_node *node)
{
struct lysc_must **must_p;
if (!node) {
return NULL;
}
must_p = lysc_node_musts_p(node);
if (must_p) {
return *must_p;
} else {
return NULL;
}
}
struct lysc_when ***
lysc_node_when_p(const struct lysc_node *node)
{
if (!node) {
return NULL;
}
switch (node->nodetype) {
case LYS_CONTAINER:
return &((struct lysc_node_container *)node)->when;
case LYS_CHOICE:
return &((struct lysc_node_choice *)node)->when;
case LYS_LEAF:
return &((struct lysc_node_leaf *)node)->when;
case LYS_LEAFLIST:
return &((struct lysc_node_leaflist *)node)->when;
case LYS_LIST:
return &((struct lysc_node_list *)node)->when;
case LYS_ANYXML:
case LYS_ANYDATA:
return &((struct lysc_node_anydata *)node)->when;
case LYS_CASE:
return &((struct lysc_node_case *)node)->when;
case LYS_NOTIF:
return &((struct lysc_node_notif *)node)->when;
case LYS_RPC:
case LYS_ACTION:
return &((struct lysc_node_action *)node)->when;
default:
return NULL;
}
}
LIBYANG_API_DEF struct lysc_when **
lysc_node_when(const struct lysc_node *node)
{
struct lysc_when ***when_p;
if (!node) {
return NULL;
}
when_p = lysc_node_when_p(node);
if (when_p) {
return *when_p;
} else {
return NULL;
}
}
static const struct lysc_node *
lysc_type_lref_target(const struct lysc_node *node, const struct lysc_type *type)
{
struct lysc_type_leafref *lref;
struct ly_path *p;
const struct lysc_node *target;
assert(type->basetype == LY_TYPE_LEAFREF);
lref = (struct lysc_type_leafref *)type;
if (ly_path_compile_leafref(node->module->ctx, node, lref->path,
(node->flags & LYS_IS_OUTPUT) ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT, LY_PATH_TARGET_MANY,
LY_VALUE_SCHEMA_RESOLVED, lref->prefixes, &p)) {
return NULL;
}
target = p[LY_ARRAY_COUNT(p) - 1].node;
ly_path_free(p);
return target;
}
LIBYANG_API_DEF const struct lysc_node *
lysc_node_lref_target(const struct lysc_node *node)
{
if (!node || !(node->nodetype & LYD_NODE_TERM) || (((struct lysc_node_leaf *)node)->type->basetype != LY_TYPE_LEAFREF)) {
return NULL;
}
return lysc_type_lref_target(node, ((struct lysc_node_leaf *)node)->type);
}
LIBYANG_API_DEF LY_ERR
lysc_node_lref_targets(const struct lysc_node *node, struct ly_set **set)
{
LY_ERR rc = LY_SUCCESS;
struct lysc_type *type;
struct lysc_type_union *type_un;
const struct lysc_node *target;
LY_ARRAY_COUNT_TYPE u;
LY_CHECK_ARG_RET(NULL, node, (node->nodetype & LYD_NODE_TERM), LY_EINVAL);
LY_CHECK_RET(ly_set_new(set));
type = ((struct lysc_node_leaf *)node)->type;
if (type->basetype == LY_TYPE_UNION) {
type_un = (struct lysc_type_union *)type;
LY_ARRAY_FOR(type_un->types, u) {
if (type_un->types[u]->basetype != LY_TYPE_LEAFREF) {
continue;
}
target = lysc_type_lref_target(node, type_un->types[u]);
if (target) {
LY_CHECK_GOTO(rc = ly_set_add(*set, target, 1, NULL), cleanup);
}
}
} else if (type->basetype == LY_TYPE_LEAFREF) {
target = lysc_type_lref_target(node, type);
if (target) {
LY_CHECK_GOTO(rc = ly_set_add(*set, target, 1, NULL), cleanup);
}
}
cleanup:
if (rc) {
ly_set_free(*set, NULL);
*set = NULL;
}
return rc;
}
struct lysc_node_lref_backlings_arg {
const struct lysc_node *node;
ly_bool match_ancestors;
struct ly_set *set;
};
static LY_ERR
lysc_node_lref_backlinks_clb(struct lysc_node *node, void *data, ly_bool *dfs_continue)
{
LY_ERR rc = LY_SUCCESS;
struct lysc_node_lref_backlings_arg *arg = data;
struct ly_set *set = NULL;
const struct lysc_node *par;
uint32_t i;
(void)dfs_continue;
if (!(node->nodetype & LYD_NODE_TERM)) {
goto cleanup;
}
LY_CHECK_GOTO(rc = lysc_node_lref_targets(node, &set), cleanup);
if (!set->count) {
goto cleanup;
}
if (!arg->node) {
rc = ly_set_add(arg->set, node, 1, NULL);
goto cleanup;
}
for (i = 0; i < set->count; ++i) {
for (par = set->snodes[i]; par; par = par->parent) {
if (par == arg->node) {
break;
}
if (!arg->match_ancestors) {
par = NULL;
break;
}
}
if (par) {
LY_CHECK_GOTO(rc = ly_set_add(arg->set, node, 1, NULL), cleanup);
break;
}
}
cleanup:
ly_set_free(set, NULL);
return rc;
}
LIBYANG_API_DEF LY_ERR
lysc_node_lref_backlinks(const struct ly_ctx *ctx, const struct lysc_node *node, ly_bool match_ancestors,
struct ly_set **set)
{
LY_ERR rc = LY_SUCCESS;
struct lysc_node_lref_backlings_arg arg = {0};
uint32_t idx = 0;
const struct lys_module *mod;
LY_CHECK_ARG_RET(NULL, ctx || node, set, LY_EINVAL);
if (!ctx) {
ctx = node->module->ctx;
}
LY_CHECK_RET(ly_set_new(set));
arg.node = node;
arg.match_ancestors = match_ancestors;
arg.set = *set;
while ((mod = ly_ctx_get_module_iter(ctx, &idx))) {
if (!mod->compiled) {
continue;
}
LY_CHECK_GOTO(rc = lysc_module_dfs_full(mod, lysc_node_lref_backlinks_clb, &arg), cleanup);
}
cleanup:
if (rc) {
ly_set_free(*set, NULL);
*set = NULL;
}
return rc;
}
enum ly_stmt
lysp_match_kw(struct ly_in *in, uint64_t *indent)
{
#define MOVE_IN(COUNT) \
ly_in_skip(in, COUNT); \
if (indent) { \
(*indent)+=COUNT; \
}
#define IF_KW(STR, LEN, STMT) \
if (!strncmp(in->current, STR, LEN)) { \
MOVE_IN(LEN); \
(*kw)=STMT; \
}
#define IF_KW_PREFIX(STR, LEN) \
if (!strncmp(in->current, STR, LEN)) { \
MOVE_IN(LEN);
#define IF_KW_PREFIX_END \
}
const char *start = in->current;
enum ly_stmt result = LY_STMT_NONE;
enum ly_stmt *kw = &result;
switch (in->current[0]) {
case 'a':
MOVE_IN(1);
IF_KW("rgument", 7, LY_STMT_ARGUMENT)
else IF_KW("ugment", 6, LY_STMT_AUGMENT)
else IF_KW("ction", 5, LY_STMT_ACTION)
else IF_KW_PREFIX("ny", 2)
IF_KW("data", 4, LY_STMT_ANYDATA)
else IF_KW("xml", 3, LY_STMT_ANYXML)
IF_KW_PREFIX_END
break;
case 'b':
MOVE_IN(1);
IF_KW("ase", 3, LY_STMT_BASE)
else IF_KW("elongs-to", 9, LY_STMT_BELONGS_TO)
else IF_KW("it", 2, LY_STMT_BIT)
break;
case 'c':
MOVE_IN(1);
IF_KW("ase", 3, LY_STMT_CASE)
else IF_KW("hoice", 5, LY_STMT_CHOICE)
else IF_KW_PREFIX("on", 2)
IF_KW("fig", 3, LY_STMT_CONFIG)
else IF_KW_PREFIX("ta", 2)
IF_KW("ct", 2, LY_STMT_CONTACT)
else IF_KW("iner", 4, LY_STMT_CONTAINER)
IF_KW_PREFIX_END
IF_KW_PREFIX_END
break;
case 'd':
MOVE_IN(1);
IF_KW_PREFIX("e", 1)
IF_KW("fault", 5, LY_STMT_DEFAULT)
else IF_KW("scription", 9, LY_STMT_DESCRIPTION)
else IF_KW_PREFIX("viat", 4)
IF_KW("e", 1, LY_STMT_DEVIATE)
else IF_KW("ion", 3, LY_STMT_DEVIATION)
IF_KW_PREFIX_END
IF_KW_PREFIX_END
break;
case 'e':
MOVE_IN(1);
IF_KW("num", 3, LY_STMT_ENUM)
else IF_KW_PREFIX("rror-", 5)
IF_KW("app-tag", 7, LY_STMT_ERROR_APP_TAG)
else IF_KW("message", 7, LY_STMT_ERROR_MESSAGE)
IF_KW_PREFIX_END
else IF_KW("xtension", 8, LY_STMT_EXTENSION)
break;
case 'f':
MOVE_IN(1);
IF_KW("eature", 6, LY_STMT_FEATURE)
else IF_KW("raction-digits", 14, LY_STMT_FRACTION_DIGITS)
break;
case 'g':
MOVE_IN(1);
IF_KW("rouping", 7, LY_STMT_GROUPING)
break;
case 'i':
MOVE_IN(1);
IF_KW("dentity", 7, LY_STMT_IDENTITY)
else IF_KW("f-feature", 9, LY_STMT_IF_FEATURE)
else IF_KW("mport", 5, LY_STMT_IMPORT)
else IF_KW_PREFIX("n", 1)
IF_KW("clude", 5, LY_STMT_INCLUDE)
else IF_KW("put", 3, LY_STMT_INPUT)
IF_KW_PREFIX_END
break;
case 'k':
MOVE_IN(1);
IF_KW("ey", 2, LY_STMT_KEY)
break;
case 'l':
MOVE_IN(1);
IF_KW_PREFIX("e", 1)
IF_KW("af-list", 7, LY_STMT_LEAF_LIST)
else IF_KW("af", 2, LY_STMT_LEAF)
else IF_KW("ngth", 4, LY_STMT_LENGTH)
IF_KW_PREFIX_END
else IF_KW("ist", 3, LY_STMT_LIST)
break;
case 'm':
MOVE_IN(1);
IF_KW_PREFIX("a", 1)
IF_KW("ndatory", 7, LY_STMT_MANDATORY)
else IF_KW("x-elements", 10, LY_STMT_MAX_ELEMENTS)
IF_KW_PREFIX_END
else IF_KW("in-elements", 11, LY_STMT_MIN_ELEMENTS)
else IF_KW("ust", 3, LY_STMT_MUST)
else IF_KW_PREFIX("od", 2)
IF_KW("ule", 3, LY_STMT_MODULE)
else IF_KW("ifier", 5, LY_STMT_MODIFIER)
IF_KW_PREFIX_END
break;
case 'n':
MOVE_IN(1);
IF_KW("amespace", 8, LY_STMT_NAMESPACE)
else IF_KW("otification", 11, LY_STMT_NOTIFICATION)
break;
case 'o':
MOVE_IN(1);
IF_KW_PREFIX("r", 1)
IF_KW("dered-by", 8, LY_STMT_ORDERED_BY)
else IF_KW("ganization", 10, LY_STMT_ORGANIZATION)
IF_KW_PREFIX_END
else IF_KW("utput", 5, LY_STMT_OUTPUT)
break;
case 'p':
MOVE_IN(1);
IF_KW("ath", 3, LY_STMT_PATH)
else IF_KW("attern", 6, LY_STMT_PATTERN)
else IF_KW("osition", 7, LY_STMT_POSITION)
else IF_KW_PREFIX("re", 2)
IF_KW("fix", 3, LY_STMT_PREFIX)
else IF_KW("sence", 5, LY_STMT_PRESENCE)
IF_KW_PREFIX_END
break;
case 'r':
MOVE_IN(1);
IF_KW("ange", 4, LY_STMT_RANGE)
else IF_KW_PREFIX("e", 1)
IF_KW_PREFIX("f", 1)
IF_KW("erence", 6, LY_STMT_REFERENCE)
else IF_KW("ine", 3, LY_STMT_REFINE)
IF_KW_PREFIX_END
else IF_KW("quire-instance", 14, LY_STMT_REQUIRE_INSTANCE)
else IF_KW("vision-date", 11, LY_STMT_REVISION_DATE)
else IF_KW("vision", 6, LY_STMT_REVISION)
IF_KW_PREFIX_END
else IF_KW("pc", 2, LY_STMT_RPC)
break;
case 's':
MOVE_IN(1);
IF_KW("tatus", 5, LY_STMT_STATUS)
else IF_KW("ubmodule", 8, LY_STMT_SUBMODULE)
break;
case 't':
MOVE_IN(1);
IF_KW("ypedef", 6, LY_STMT_TYPEDEF)
else IF_KW("ype", 3, LY_STMT_TYPE)
break;
case 'u':
MOVE_IN(1);
IF_KW_PREFIX("ni", 2)
IF_KW("que", 3, LY_STMT_UNIQUE)
else IF_KW("ts", 2, LY_STMT_UNITS)
IF_KW_PREFIX_END
else IF_KW("ses", 3, LY_STMT_USES)
break;
case 'v':
MOVE_IN(1);
IF_KW("alue", 4, LY_STMT_VALUE)
break;
case 'w':
MOVE_IN(1);
IF_KW("hen", 3, LY_STMT_WHEN)
break;
case 'y':
MOVE_IN(1);
IF_KW("ang-version", 11, LY_STMT_YANG_VERSION)
else IF_KW("in-element", 10, LY_STMT_YIN_ELEMENT)
break;
default:
if (indent) {
if (in->current[0] == ';') {
MOVE_IN(1);
*kw = LY_STMT_SYNTAX_SEMICOLON;
} else if (in->current[0] == '{') {
MOVE_IN(1);
*kw = LY_STMT_SYNTAX_LEFT_BRACE;
} else if (in->current[0] == '}') {
MOVE_IN(1);
*kw = LY_STMT_SYNTAX_RIGHT_BRACE;
}
}
break;
}
if ((*kw < LY_STMT_SYNTAX_SEMICOLON) && isalnum(in->current[0])) {
*kw = LY_STMT_NONE;
in->current = start;
}
#undef IF_KW
#undef IF_KW_PREFIX
#undef IF_KW_PREFIX_END
#undef MOVE_IN
return result;
}
LY_ERR
lysp_ext_find_definition(const struct ly_ctx *ctx, const struct lysp_module *pmod, const struct lysp_ext_instance *ext,
const struct lys_module **ext_mod, struct lysp_ext **ext_def)
{
const char *tmp, *name, *prefix;
uint32_t pref_len, name_len;
LY_ARRAY_COUNT_TYPE u, v;
const struct lys_module *mod = NULL;
const struct lysp_submodule *submod;
char *path;
if (ext_def) {
*ext_def = NULL;
}
tmp = ext->name;
ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len);
mod = ly_resolve_prefix(ctx, prefix, pref_len, ext->format, ext->prefix_data);
if (!mod) {
LY_CHECK_RET(lysp_ext_instance_path(ctx, pmod, ext, &path));
ly_log_location(NULL, path, NULL);
LOGVAL(ctx, NULL, LYVE_REFERENCE, "Invalid prefix \"%.*s\" used for extension instance identifier.",
(int)pref_len, prefix);
ly_log_location_revert(0, 1, 0);
free(path);
return LY_EVALID;
}
if (ext_mod) {
*ext_mod = mod;
}
if (!ext_def) {
return LY_SUCCESS;
}
LY_ARRAY_FOR(mod->parsed->extensions, v) {
if (!strcmp(name, mod->parsed->extensions[v].name)) {
*ext_def = &mod->parsed->extensions[v];
break;
}
}
if (!*ext_def) {
LY_ARRAY_FOR(mod->parsed->includes, u) {
submod = mod->parsed->includes[u].submodule;
LY_ARRAY_FOR(submod->extensions, v) {
if (!strcmp(name, submod->extensions[v].name)) {
*ext_def = &submod->extensions[v];
break;
}
}
}
}
if (!*ext_def) {
LY_CHECK_RET(lysp_ext_instance_path(ctx, pmod, ext, &path));
ly_log_location(NULL, path, NULL);
LOGVAL(ctx, NULL, LYVE_REFERENCE, "Extension definition of extension instance \"%s\" not found.", ext->name);
ly_log_location_revert(0, 1, 0);
free(path);
return LY_EVALID;
}
return LY_SUCCESS;
}
LY_ERR
lysc_ext_find_definition(const struct ly_ctx *ctx, const struct lysp_ext_instance *ext, struct lysc_ext **ext_def)
{
const char *tmp, *name, *prefix;
uint32_t pref_len, name_len;
LY_ARRAY_COUNT_TYPE u;
const struct lys_module *mod = NULL;
*ext_def = NULL;
tmp = ext->name;
ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len);
mod = ly_resolve_prefix(ctx, prefix, pref_len, ext->format, ext->prefix_data);
if (!mod) {
LOGVAL(ctx, NULL, LYVE_REFERENCE, "Invalid prefix \"%.*s\" used for extension instance identifier.",
(int)pref_len, prefix);
return LY_EVALID;
}
LY_ARRAY_FOR(mod->extensions, u) {
if (!strcmp(name, mod->extensions[u].name)) {
*ext_def = &mod->extensions[u];
break;
}
}
if (!*ext_def) {
LOGVAL(ctx, NULL, LYVE_REFERENCE, "Extension definition of extension instance \"%s\" not found.", ext->name);
return LY_EVALID;
}
return LY_SUCCESS;
}
LY_ERR
lysp_ext_instance_resolve_argument(const struct ly_ctx *ctx, const struct lysp_ext *ext_def, struct lysp_ext_instance *ext_p)
{
const char *ext, *arg, *prefix_arg, *name_arg, *prefix_ext, *name_ext;
uint32_t prefix_arg_len, name_arg_len, prefix_ext_len, name_ext_len;
if (!ext_def->argname || ext_p->argument) {
return LY_SUCCESS;
}
if (ext_p->format == LY_VALUE_XML) {
struct lysp_stmt *stmt = NULL;
if (ext_def->flags & LYS_YINELEM_TRUE) {
for (stmt = ext_p->child; stmt && (stmt->flags & LYS_YIN_ATTR); stmt = stmt->next) {}
if (stmt) {
stmt = ext_p->child;
arg = stmt->stmt;
ly_parse_nodeid(&arg, &prefix_arg, &prefix_arg_len, &name_arg, &name_arg_len);
if (ly_strncmp(ext_def->argname, name_arg, name_arg_len)) {
LOGVAL(ctx, NULL, LYVE_SEMANTICS, "Extension instance \"%s\" expects argument element \"%s\" as its "
"first XML child, but \"%.*s\" element found.", ext_p->name, ext_def->argname,
(int)name_arg_len, name_arg);
return LY_EVALID;
}
ext = ext_p->name;
ly_parse_nodeid(&ext, &prefix_ext, &prefix_ext_len, &name_ext, &name_ext_len);
if (ly_resolve_prefix(ctx, prefix_ext, prefix_ext_len, ext_p->format, ext_p->prefix_data) !=
ly_resolve_prefix(ctx, prefix_arg, prefix_arg_len, stmt->format, stmt->prefix_data)) {
LOGVAL(ctx, NULL, LYVE_SEMANTICS, "Extension instance \"%s\" element and its argument element \"%s\" are "
"expected in the same namespace, but they differ.", ext_p->name, ext_def->argname);
return LY_EVALID;
}
}
} else {
for (stmt = ext_p->child; stmt && (stmt->flags & LYS_YIN_ATTR); stmt = stmt->next) {
if (!strcmp(stmt->stmt, ext_def->argname)) {
break;
}
}
}
if (stmt) {
LY_CHECK_RET(lysdict_insert(ctx, stmt->arg, 0, &ext_p->argument));
stmt->flags |= LYS_YIN_ARGUMENT;
}
}
if (!ext_p->argument) {
LOGVAL(ctx, NULL, LYVE_SEMANTICS, "Extension instance \"%s\" missing argument %s\"%s\".",
ext_p->name, (ext_def->flags & LYS_YINELEM_TRUE) ? "element " : "", ext_def->argname);
return LY_EVALID;
}
return LY_SUCCESS;
}
LY_ARRAY_COUNT_TYPE
lysp_ext_instance_iter(struct lysp_ext_instance *ext, LY_ARRAY_COUNT_TYPE index, enum ly_stmt substmt)
{
LY_CHECK_ARG_RET(NULL, ext, LY_EINVAL);
for ( ; index < LY_ARRAY_COUNT(ext); index++) {
if (ext[index].parent_stmt == substmt) {
return index;
}
}
return LY_ARRAY_COUNT(ext);
}
LIBYANG_API_DEF const struct lysc_node *
lysc_data_node(const struct lysc_node *schema)
{
const struct lysc_node *parent;
parent = schema;
while (parent && !(parent->nodetype & (LYS_CONTAINER | LYS_LEAF | LYS_LEAFLIST | LYS_LIST | LYS_ANYDATA | LYS_RPC |
LYS_ACTION | LYS_NOTIF))) {
parent = parent->parent;
}
return parent;
}
ly_bool
lys_has_recompiled(const struct lys_module *mod)
{
LY_ARRAY_COUNT_TYPE u;
if (LYSP_HAS_RECOMPILED(mod->parsed)) {
return 1;
}
LY_ARRAY_FOR(mod->parsed->includes, u) {
if (LYSP_HAS_RECOMPILED(mod->parsed->includes[u].submodule)) {
return 1;
}
}
return 0;
}
ly_bool
lys_has_compiled(const struct lys_module *mod)
{
LY_ARRAY_COUNT_TYPE u;
if (LYSP_HAS_COMPILED(mod->parsed)) {
return 1;
}
LY_ARRAY_FOR(mod->parsed->includes, u) {
if (LYSP_HAS_COMPILED(mod->parsed->includes[u].submodule)) {
return 1;
}
}
return 0;
}
ly_bool
lys_has_dep_mods(const struct lys_module *mod)
{
LY_ARRAY_COUNT_TYPE u;
if (mod->parsed->features) {
return 1;
}
if (mod->parsed->groupings) {
return 1;
}
LY_ARRAY_FOR(mod->parsed->includes, u) {
if (mod->parsed->includes[u].submodule->groupings) {
return 1;
}
}
if (mod->parsed->augments) {
return 1;
}
LY_ARRAY_FOR(mod->parsed->includes, u) {
if (mod->parsed->includes[u].submodule->augments) {
return 1;
}
}
return 0;
}
const char *
lys_stmt_str(enum ly_stmt stmt)
{
switch (stmt) {
case LY_STMT_NONE:
return NULL;
case LY_STMT_ACTION:
return "action";
case LY_STMT_ANYDATA:
return "anydata";
case LY_STMT_ANYXML:
return "anyxml";
case LY_STMT_ARGUMENT:
return "argument";
case LY_STMT_ARG_TEXT:
return "text";
case LY_STMT_ARG_VALUE:
return "value";
case LY_STMT_AUGMENT:
return "augment";
case LY_STMT_BASE:
return "base";
case LY_STMT_BELONGS_TO:
return "belongs-to";
case LY_STMT_BIT:
return "bit";
case LY_STMT_CASE:
return "case";
case LY_STMT_CHOICE:
return "choice";
case LY_STMT_CONFIG:
return "config";
case LY_STMT_CONTACT:
return "contact";
case LY_STMT_CONTAINER:
return "container";
case LY_STMT_DEFAULT:
return "default";
case LY_STMT_DESCRIPTION:
return "description";
case LY_STMT_DEVIATE:
return "deviate";
case LY_STMT_DEVIATION:
return "deviation";
case LY_STMT_ENUM:
return "enum";
case LY_STMT_ERROR_APP_TAG:
return "error-app-tag";
case LY_STMT_ERROR_MESSAGE:
return "error-message";
case LY_STMT_EXTENSION:
return "extension";
case LY_STMT_EXTENSION_INSTANCE:
return NULL;
case LY_STMT_FEATURE:
return "feature";
case LY_STMT_FRACTION_DIGITS:
return "fraction-digits";
case LY_STMT_GROUPING:
return "grouping";
case LY_STMT_IDENTITY:
return "identity";
case LY_STMT_IF_FEATURE:
return "if-feature";
case LY_STMT_IMPORT:
return "import";
case LY_STMT_INCLUDE:
return "include";
case LY_STMT_INPUT:
return "input";
case LY_STMT_KEY:
return "key";
case LY_STMT_LEAF:
return "leaf";
case LY_STMT_LEAF_LIST:
return "leaf-list";
case LY_STMT_LENGTH:
return "length";
case LY_STMT_LIST:
return "list";
case LY_STMT_MANDATORY:
return "mandatory";
case LY_STMT_MAX_ELEMENTS:
return "max-elements";
case LY_STMT_MIN_ELEMENTS:
return "min-elements";
case LY_STMT_MODIFIER:
return "modifier";
case LY_STMT_MODULE:
return "module";
case LY_STMT_MUST:
return "must";
case LY_STMT_NAMESPACE:
return "namespace";
case LY_STMT_NOTIFICATION:
return "notification";
case LY_STMT_ORDERED_BY:
return "ordered-by";
case LY_STMT_ORGANIZATION:
return "organization";
case LY_STMT_OUTPUT:
return "output";
case LY_STMT_PATH:
return "path";
case LY_STMT_PATTERN:
return "pattern";
case LY_STMT_POSITION:
return "position";
case LY_STMT_PREFIX:
return "prefix";
case LY_STMT_PRESENCE:
return "presence";
case LY_STMT_RANGE:
return "range";
case LY_STMT_REFERENCE:
return "reference";
case LY_STMT_REFINE:
return "refine";
case LY_STMT_REQUIRE_INSTANCE:
return "require-instance";
case LY_STMT_REVISION:
return "revision";
case LY_STMT_REVISION_DATE:
return "revision-date";
case LY_STMT_RPC:
return "rpc";
case LY_STMT_STATUS:
return "status";
case LY_STMT_SUBMODULE:
return "submodule";
case LY_STMT_SYNTAX_LEFT_BRACE:
return "{";
case LY_STMT_SYNTAX_RIGHT_BRACE:
return "}";
case LY_STMT_SYNTAX_SEMICOLON:
return ";";
case LY_STMT_TYPE:
return "type";
case LY_STMT_TYPEDEF:
return "typedef";
case LY_STMT_UNIQUE:
return "unique";
case LY_STMT_UNITS:
return "units";
case LY_STMT_USES:
return "uses";
case LY_STMT_VALUE:
return "value";
case LY_STMT_WHEN:
return "when";
case LY_STMT_YANG_VERSION:
return "yang-version";
case LY_STMT_YIN_ELEMENT:
return "yin-element";
}
return NULL;
}
const char *
lys_stmt_arg(enum ly_stmt stmt)
{
switch (stmt) {
case LY_STMT_NONE:
case LY_STMT_ARG_TEXT:
case LY_STMT_ARG_VALUE:
case LY_STMT_EXTENSION_INSTANCE:
case LY_STMT_INPUT:
case LY_STMT_OUTPUT:
case LY_STMT_SYNTAX_LEFT_BRACE:
case LY_STMT_SYNTAX_RIGHT_BRACE:
case LY_STMT_SYNTAX_SEMICOLON:
return NULL;
case LY_STMT_ACTION:
case LY_STMT_ANYDATA:
case LY_STMT_ANYXML:
case LY_STMT_ARGUMENT:
case LY_STMT_BASE:
case LY_STMT_BIT:
case LY_STMT_CASE:
case LY_STMT_CHOICE:
case LY_STMT_CONTAINER:
case LY_STMT_ENUM:
case LY_STMT_EXTENSION:
case LY_STMT_FEATURE:
case LY_STMT_GROUPING:
case LY_STMT_IDENTITY:
case LY_STMT_IF_FEATURE:
case LY_STMT_LEAF:
case LY_STMT_LEAF_LIST:
case LY_STMT_LIST:
case LY_STMT_MODULE:
case LY_STMT_NOTIFICATION:
case LY_STMT_RPC:
case LY_STMT_SUBMODULE:
case LY_STMT_TYPE:
case LY_STMT_TYPEDEF:
case LY_STMT_UNITS:
case LY_STMT_USES:
return "name";
case LY_STMT_AUGMENT:
case LY_STMT_DEVIATION:
case LY_STMT_REFINE:
return "target-node";
case LY_STMT_BELONGS_TO:
case LY_STMT_IMPORT:
case LY_STMT_INCLUDE:
return "module";
case LY_STMT_CONFIG:
case LY_STMT_DEFAULT:
case LY_STMT_DEVIATE:
case LY_STMT_ERROR_APP_TAG:
case LY_STMT_ERROR_MESSAGE:
case LY_STMT_FRACTION_DIGITS:
case LY_STMT_KEY:
case LY_STMT_LENGTH:
case LY_STMT_MANDATORY:
case LY_STMT_MAX_ELEMENTS:
case LY_STMT_MIN_ELEMENTS:
case LY_STMT_MODIFIER:
case LY_STMT_ORDERED_BY:
case LY_STMT_PATH:
case LY_STMT_PATTERN:
case LY_STMT_POSITION:
case LY_STMT_PREFIX:
case LY_STMT_PRESENCE:
case LY_STMT_RANGE:
case LY_STMT_REQUIRE_INSTANCE:
case LY_STMT_STATUS:
case LY_STMT_VALUE:
case LY_STMT_YANG_VERSION:
case LY_STMT_YIN_ELEMENT:
return "value";
case LY_STMT_CONTACT:
case LY_STMT_DESCRIPTION:
case LY_STMT_ORGANIZATION:
case LY_STMT_REFERENCE:
return "text";
case LY_STMT_MUST:
case LY_STMT_WHEN:
return "condition";
case LY_STMT_NAMESPACE:
return "uri";
case LY_STMT_REVISION:
case LY_STMT_REVISION_DATE:
return "date";
case LY_STMT_UNIQUE:
return "tag";
}
return NULL;
}
uint8_t
lys_stmt_flags(enum ly_stmt stmt)
{
switch (stmt) {
case LY_STMT_NONE:
case LY_STMT_ARG_TEXT:
case LY_STMT_ARG_VALUE:
case LY_STMT_DEFAULT:
case LY_STMT_ERROR_APP_TAG:
case LY_STMT_EXTENSION_INSTANCE:
case LY_STMT_IF_FEATURE:
case LY_STMT_INPUT:
case LY_STMT_KEY:
case LY_STMT_LENGTH:
case LY_STMT_MUST:
case LY_STMT_NAMESPACE:
case LY_STMT_OUTPUT:
case LY_STMT_PATH:
case LY_STMT_PATTERN:
case LY_STMT_PRESENCE:
case LY_STMT_RANGE:
case LY_STMT_SYNTAX_LEFT_BRACE:
case LY_STMT_SYNTAX_RIGHT_BRACE:
case LY_STMT_SYNTAX_SEMICOLON:
case LY_STMT_UNIQUE:
case LY_STMT_UNITS:
case LY_STMT_WHEN:
return 0;
case LY_STMT_ACTION:
case LY_STMT_ANYDATA:
case LY_STMT_ANYXML:
case LY_STMT_ARGUMENT:
case LY_STMT_AUGMENT:
case LY_STMT_BASE:
case LY_STMT_BELONGS_TO:
case LY_STMT_BIT:
case LY_STMT_CASE:
case LY_STMT_CHOICE:
case LY_STMT_CONFIG:
case LY_STMT_CONTAINER:
case LY_STMT_DEVIATE:
case LY_STMT_DEVIATION:
case LY_STMT_ENUM:
case LY_STMT_EXTENSION:
case LY_STMT_FEATURE:
case LY_STMT_FRACTION_DIGITS:
case LY_STMT_GROUPING:
case LY_STMT_IDENTITY:
case LY_STMT_IMPORT:
case LY_STMT_INCLUDE:
case LY_STMT_LEAF:
case LY_STMT_LEAF_LIST:
case LY_STMT_LIST:
case LY_STMT_MANDATORY:
case LY_STMT_MAX_ELEMENTS:
case LY_STMT_MIN_ELEMENTS:
case LY_STMT_MODIFIER:
case LY_STMT_MODULE:
case LY_STMT_NOTIFICATION:
case LY_STMT_ORDERED_BY:
case LY_STMT_POSITION:
case LY_STMT_PREFIX:
case LY_STMT_REFINE:
case LY_STMT_REQUIRE_INSTANCE:
case LY_STMT_REVISION:
case LY_STMT_REVISION_DATE:
case LY_STMT_RPC:
case LY_STMT_STATUS:
case LY_STMT_SUBMODULE:
case LY_STMT_TYPE:
case LY_STMT_TYPEDEF:
case LY_STMT_USES:
case LY_STMT_VALUE:
case LY_STMT_YANG_VERSION:
case LY_STMT_YIN_ELEMENT:
return LY_STMT_FLAG_ID;
case LY_STMT_CONTACT:
case LY_STMT_DESCRIPTION:
case LY_STMT_ERROR_MESSAGE:
case LY_STMT_ORGANIZATION:
case LY_STMT_REFERENCE:
return LY_STMT_FLAG_YIN;
}
return 0;
}
int
lysc_value_cmp(const struct lysc_node *schema, const struct lyd_node *ctx_node, const struct lysc_value *val,
const char *val2)
{
LY_ERR r;
int cmp;
const char *canon;
r = lyd_value_validate3(schema, val->str, strlen(val->str), LY_VALUE_SCHEMA_RESOLVED, val->prefixes,
LYD_HINT_SCHEMA, ctx_node, 1, NULL, &canon);
if (r && (r != LY_EINCOMPLETE)) {
return -1;
}
cmp = strcmp(canon, val2);
lydict_remove(schema->module->ctx, canon);
return cmp;
}