-
Notifications
You must be signed in to change notification settings - Fork 328
Expand file tree
/
Copy pathcontext.c
More file actions
1576 lines (1307 loc) · 48.6 KB
/
context.c
File metadata and controls
1576 lines (1307 loc) · 48.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* @file context.c
* @author Radek Krejci <rkrejci@cesnet.cz>
* @author Michal Vasko <mvasko@cesnet.cz>
* @brief Context implementations
*
* Copyright (c) 2015 - 2025 CESNET, z.s.p.o.
*
* This source code is licensed under BSD 3-Clause License (the "License").
* You may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://opensource.org/licenses/BSD-3-Clause
*/
#define _GNU_SOURCE /* asprintf, strdup */
#if defined (__NetBSD__) || defined (__OpenBSD__)
/* realpath */
#define _XOPEN_SOURCE 1
#define _XOPEN_SOURCE_EXTENDED 1
#endif
#include "context.h"
#include <assert.h>
#include <errno.h>
#include <pthread.h>
#include <stdarg.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <unistd.h>
#include "compat.h"
#include "hash_table.h"
#include "in.h"
#include "ly_common.h"
#include "lyb.h"
#include "parser_data.h"
#include "plugins_internal.h"
#include "plugins_types.h"
#include "schema_compile.h"
#include "set.h"
#include "tree.h"
#include "tree_data.h"
#include "tree_data_internal.h"
#include "tree_schema.h"
#include "tree_schema_free.h"
#include "tree_schema_internal.h"
#include "../modules/default@2025-06-18.h"
#include "../modules/ietf-datastores@2018-02-14.h"
#include "../modules/ietf-inet-types@2025-12-22.h"
#include "../modules/ietf-yang-library@2019-01-04.h"
#include "../modules/ietf-yang-metadata@2016-08-05.h"
#include "../modules/ietf-yang-schema-mount@2019-01-14.h"
#include "../modules/ietf-yang-structure-ext@2020-06-17.h"
#include "../modules/ietf-yang-types@2025-12-22.h"
#include "../modules/yang@2025-01-29.h"
#define IETF_YANG_LIB_REV "2019-01-04"
static struct internal_modules_s {
const char *name;
const char *revision;
const char *data;
ly_bool implemented;
LYS_INFORMAT format;
} internal_modules[] = {
{"ietf-inet-types", "2025-12-22", ietf_inet_types_2025_12_22_yang, 0, LYS_IN_YANG},
{"ietf-yang-types", "2025-12-22", ietf_yang_types_2025_12_22_yang, 0, LYS_IN_YANG},
{"ietf-yang-metadata", "2016-08-05", ietf_yang_metadata_2016_08_05_yang, 1, LYS_IN_YANG},
{"yang", "2025-01-29", yang_2025_01_29_yang, 1, LYS_IN_YANG},
{"default", "2025-06-18", default_2025_06_18_yang, 1, LYS_IN_YANG},
{"ietf-yang-schema-mount", "2019-01-14", ietf_yang_schema_mount_2019_01_14_yang, 1, LYS_IN_YANG},
{"ietf-yang-structure-ext", "2020-06-17", ietf_yang_structure_ext_2020_06_17_yang, 0, LYS_IN_YANG},
/* ietf-datastores and ietf-yang-library must be right here at the end of the list! */
{"ietf-datastores", "2018-02-14", ietf_datastores_2018_02_14_yang, 1, LYS_IN_YANG},
{"ietf-yang-library", IETF_YANG_LIB_REV, ietf_yang_library_2019_01_04_yang, 1, LYS_IN_YANG}
};
#define LY_INTERNAL_MODS_COUNT sizeof(internal_modules) / sizeof(struct internal_modules_s)
LIBYANG_API_DEF LY_ERR
ly_ctx_set_searchdir(struct ly_ctx *ctx, const char *search_dir)
{
int rc = LY_SUCCESS;
struct stat st;
char *new_dir = NULL;
uint32_t i;
LY_ARRAY_COUNT_TYPE u;
struct lys_module *mod;
LY_CHECK_ARG_RET(ctx, ctx, !(ctx->opts & LY_CTX_INT_IMMUTABLE), LY_EINVAL);
if (!search_dir) {
/* fine, ignore */
goto cleanup;
}
new_dir = realpath(search_dir, NULL);
if (!new_dir) {
LOGERR(ctx, LY_ESYS, "Unable to use search directory \"%s\" (%s).", search_dir, strerror(errno)),
rc = LY_EINVAL;
goto cleanup;
}
if (strcmp(search_dir, new_dir)) {
LOGVRB("Search directory string \"%s\" canonized to \"%s\".", search_dir, new_dir);
}
if (access(new_dir, R_OK | X_OK)) {
LOGERR(ctx, LY_ESYS, "Unable to fully access search directory \"%s\" (%s).", new_dir, strerror(errno));
rc = LY_EINVAL;
goto cleanup;
}
if (stat(new_dir, &st)) {
LOGERR(ctx, LY_ESYS, "stat() failed for \"%s\" (%s).", new_dir, strerror(errno));
rc = LY_ESYS;
goto cleanup;
}
if (!S_ISDIR(st.st_mode)) {
LOGERR(ctx, LY_ESYS, "Given search directory \"%s\" is not a directory.", new_dir);
rc = LY_EINVAL;
goto cleanup;
}
/* avoid path duplication */
for (i = 0; i < ctx->search_paths.count; ++i) {
if (!strcmp(new_dir, ctx->search_paths.objs[i])) {
rc = LY_EEXIST;
goto cleanup;
}
}
if (ly_set_add(&ctx->search_paths, new_dir, 1, NULL)) {
rc = LY_EMEM;
goto cleanup;
}
/* new searchdir - reset latests flags (possibly new revisions available) */
for (i = 0; i < ctx->modules.count; ++i) {
mod = ctx->modules.objs[i];
mod->latest_revision &= ~LYS_MOD_LATEST_SEARCHDIRS;
if (mod->parsed && mod->parsed->includes) {
for (u = 0; u < LY_ARRAY_COUNT(mod->parsed->includes); ++u) {
mod->parsed->includes[u].submodule->latest_revision &= ~LYS_MOD_LATEST_SEARCHDIRS;
}
}
}
cleanup:
if (rc) {
free(new_dir);
}
return rc;
}
LIBYANG_API_DEF const char * const *
ly_ctx_get_searchdirs(const struct ly_ctx *ctx)
{
#define LY_CTX_SEARCHDIRS_SIZE_STEP 8
void **new;
LY_CHECK_ARG_RET(ctx, ctx, NULL);
if (ctx->search_paths.count == ctx->search_paths.size) {
/* not enough space for terminating NULL byte */
new = realloc(((struct ly_ctx *)ctx)->search_paths.objs,
(ctx->search_paths.size + LY_CTX_SEARCHDIRS_SIZE_STEP) * sizeof *ctx->search_paths.objs);
LY_CHECK_ERR_RET(!new, LOGMEM(NULL), NULL);
((struct ly_ctx *)ctx)->search_paths.size += LY_CTX_SEARCHDIRS_SIZE_STEP;
((struct ly_ctx *)ctx)->search_paths.objs = new;
}
/* set terminating NULL byte to the strings list */
ctx->search_paths.objs[ctx->search_paths.count] = NULL;
return (const char * const *)ctx->search_paths.objs;
}
LIBYANG_API_DEF LY_ERR
ly_ctx_unset_searchdir(struct ly_ctx *ctx, const char *search_dir)
{
LY_ERR rc = LY_SUCCESS;
uint32_t index;
char *search_dir_real = NULL;
LY_CHECK_ARG_RET(ctx, ctx, !(ctx->opts & LY_CTX_INT_IMMUTABLE), LY_EINVAL);
if (!ctx->search_paths.count) {
return LY_SUCCESS;
}
if (search_dir) {
search_dir_real = realpath(search_dir, NULL);
if (!search_dir_real) {
LOGERR(ctx, LY_EINVAL, "Unable to normalize search directory \"%s\" (%s).", search_dir, strerror(errno));
rc = LY_EINVAL;
goto cleanup;
}
/* remove specific search directory */
for (index = 0; index < ctx->search_paths.count; ++index) {
if (!strcmp(search_dir_real, ctx->search_paths.objs[index])) {
break;
}
}
if (index == ctx->search_paths.count) {
LOGARG(ctx, search_dir_real);
rc = LY_EINVAL;
goto cleanup;
} else {
rc = ly_set_rm_index(&ctx->search_paths, index, free);
goto cleanup;
}
} else {
/* remove them all */
ly_set_erase(&ctx->search_paths, free);
memset(&ctx->search_paths, 0, sizeof ctx->search_paths);
}
cleanup:
free(search_dir_real);
return rc;
}
LIBYANG_API_DEF LY_ERR
ly_ctx_unset_searchdir_last(struct ly_ctx *ctx, uint32_t count)
{
LY_CHECK_ARG_RET(ctx, ctx, !(ctx->opts & LY_CTX_INT_IMMUTABLE), LY_EINVAL);
for ( ; count > 0 && ctx->search_paths.count; --count) {
LY_CHECK_RET(ly_set_rm_index(&ctx->search_paths, ctx->search_paths.count - 1, free))
}
return LY_SUCCESS;
}
LIBYANG_API_DEF struct lys_module *
ly_ctx_load_module(struct ly_ctx *ctx, const char *name, const char *revision, const char **features)
{
struct lys_module *mod = NULL;
LY_ERR ret = LY_SUCCESS;
LY_CHECK_ARG_RET(ctx, ctx, !(ctx->opts & LY_CTX_INT_IMMUTABLE), name, NULL);
/* load and parse */
ret = lys_parse_load(ctx, name, revision, &ctx->unres.creating, &mod);
LY_CHECK_GOTO(ret, cleanup);
/* implement */
ret = _lys_set_implemented(mod, features, &ctx->unres);
LY_CHECK_GOTO(ret, cleanup);
if (!(ctx->opts & LY_CTX_EXPLICIT_COMPILE)) {
/* create dep set for the module and mark all the modules that will be (re)compiled */
LY_CHECK_GOTO(ret = lys_unres_dep_sets_create(ctx, &ctx->unres.dep_sets, mod), cleanup);
/* (re)compile the whole dep set (other dep sets will have no modules marked for compilation) */
LY_CHECK_GOTO(ret = lys_compile_depset_all(ctx, &ctx->unres), cleanup);
/* unres resolved */
lys_unres_glob_erase(&ctx->unres);
/* new context state */
ly_ctx_new_change(ctx);
}
cleanup:
if (ret) {
lys_unres_glob_revert(ctx, &ctx->unres);
lys_unres_glob_erase(&ctx->unres);
mod = NULL;
}
return mod;
}
LIBYANG_API_DEF LY_ERR
ly_ctx_new(const char *search_dir, uint32_t options, struct ly_ctx **new_ctx)
{
struct ly_ctx *ctx = NULL;
struct lys_module *module;
char *search_dir_list, *sep, *dir;
const char **imp_f, *all_f[] = {"*", NULL};
uint32_t i;
struct ly_in *in = NULL;
LY_ERR rc = LY_SUCCESS;
struct lys_glob_unres unres = {0};
ly_bool builtin_plugins_only, static_plugins_only;
LY_CHECK_ARG_RET(NULL, new_ctx, LY_EINVAL);
ctx = calloc(1, sizeof *ctx);
LY_CHECK_ERR_GOTO(!ctx, LOGMEM(NULL); rc = LY_EMEM, cleanup);
/* dictionary */
lydict_init(&ctx->dict);
/* plugins */
builtin_plugins_only = (options & LY_CTX_BUILTIN_PLUGINS_ONLY) ? 1 : 0;
static_plugins_only = (options & LY_CTX_STATIC_PLUGINS_ONLY) ? 1 : 0;
LY_CHECK_GOTO(rc = lyplg_init(builtin_plugins_only, static_plugins_only), cleanup);
/* options */
ctx->opts = options;
/* ctx data */
rc = ly_ctx_data_add(ctx);
LY_CHECK_GOTO(rc, cleanup);
/* modules list */
if (search_dir) {
search_dir_list = strdup(search_dir);
LY_CHECK_ERR_GOTO(!search_dir_list, LOGMEM(NULL); rc = LY_EMEM, cleanup);
for (dir = search_dir_list; (sep = strchr(dir, PATH_SEPARATOR[0])) != NULL && rc == LY_SUCCESS; dir = sep + 1) {
*sep = 0;
rc = ly_ctx_set_searchdir(ctx, dir);
if (rc == LY_EEXIST) {
/* ignore duplication */
rc = LY_SUCCESS;
}
}
if (*dir && (rc == LY_SUCCESS)) {
rc = ly_ctx_set_searchdir(ctx, dir);
if (rc == LY_EEXIST) {
/* ignore duplication */
rc = LY_SUCCESS;
}
}
free(search_dir_list);
/* If ly_ctx_set_searchdir() failed, the error is already logged. Just exit */
LY_CHECK_GOTO(rc, cleanup);
}
ctx->change_count = 1;
if (!(options & LY_CTX_EXPLICIT_COMPILE)) {
/* use it for creating the initial context */
ctx->opts |= LY_CTX_EXPLICIT_COMPILE;
}
/* create dummy in */
rc = ly_in_new_memory(internal_modules[0].data, &in);
LY_CHECK_GOTO(rc, cleanup);
/* load internal modules */
for (i = 0; i < ((options & LY_CTX_NO_YANGLIBRARY) ? (LY_INTERNAL_MODS_COUNT - 2) : LY_INTERNAL_MODS_COUNT); i++) {
ly_in_memory(in, internal_modules[i].data);
LY_CHECK_GOTO(rc = lys_parse_in(ctx, in, internal_modules[i].format, NULL, &unres.creating, &module), cleanup);
if (internal_modules[i].implemented || (ctx->opts & LY_CTX_ALL_IMPLEMENTED)) {
imp_f = (ctx->opts & LY_CTX_ENABLE_IMP_FEATURES) ? all_f : NULL;
LY_CHECK_GOTO(rc = lys_implement(module, imp_f, &unres), cleanup);
}
}
if (!(options & LY_CTX_EXPLICIT_COMPILE)) {
/* compile now */
LY_CHECK_GOTO(rc = ly_ctx_compile(ctx), cleanup);
ctx->opts &= ~LY_CTX_EXPLICIT_COMPILE;
}
cleanup:
ly_in_free(in, 0);
lys_unres_glob_erase(&unres);
if (rc) {
ly_ctx_destroy(ctx);
} else {
*new_ctx = ctx;
}
return rc;
}
static LY_ERR
ly_ctx_new_yl_legacy(struct ly_ctx *ctx, const struct lyd_node *yltree)
{
struct lyd_node *module, *node;
struct ly_set *set;
const char **feature_arr = NULL;
const char *name = NULL, *revision = NULL;
struct ly_set features = {0};
ly_bool imported = 0;
const struct lys_module *mod;
LY_ERR ret = LY_SUCCESS;
uint32_t i, j;
LY_CHECK_RET(ret = lyd_find_xpath(yltree, "/ietf-yang-library:modules-state/module", &set));
if (!set->count) {
ret = LY_ENOTFOUND;
goto cleanup;
}
/* process the data tree */
for (i = 0; i < set->count; ++i) {
module = set->dnodes[i];
/* initiate */
revision = NULL;
name = NULL;
imported = 0;
LY_LIST_FOR(lyd_child(module), node) {
if (!strcmp(node->schema->name, "name")) {
name = lyd_get_value(node);
} else if (!strcmp(node->schema->name, "revision")) {
revision = lyd_get_value(node);
} else if (!strcmp(node->schema->name, "feature")) {
LY_CHECK_GOTO(ret = ly_set_add(&features, node, 0, NULL), cleanup);
} else if (!strcmp(node->schema->name, "conformance-type") &&
!strcmp(lyd_get_value(node), "import")) {
/* imported module - skip it, it will be loaded as a side effect
* of loading another module */
imported = 1;
break;
}
}
if (imported) {
continue;
}
feature_arr = malloc((features.count + 1) * sizeof *feature_arr);
LY_CHECK_ERR_GOTO(!feature_arr, ret = LY_EMEM, cleanup);
/* Parse features into an array of strings */
for (j = 0; j < features.count; ++j) {
feature_arr[j] = lyd_get_value(features.dnodes[j]);
}
feature_arr[features.count] = NULL;
ly_set_clean(&features, free);
/* use the gathered data to load the module */
mod = ly_ctx_load_module(ctx, name, revision, feature_arr);
free(feature_arr);
if (!mod) {
LOGERR(ctx, LY_EINVAL, "Unable to load module specified by yang library data.");
ly_set_free(set, free);
return LY_EINVAL;
}
}
cleanup:
ly_set_clean(&features, free);
ly_set_free(set, free);
return ret;
}
LIBYANG_API_DEF LY_ERR
ly_ctx_new_ylpath(const char *search_dir, const char *path, LYD_FORMAT format, int options, struct ly_ctx **ctx)
{
LY_ERR ret = LY_SUCCESS;
struct ly_ctx *ctx_yl = NULL;
struct lyd_node *data_yl = NULL;
LY_CHECK_ARG_RET(NULL, path, ctx, LY_EINVAL);
/* create a seperate context for the data */
LY_CHECK_GOTO(ret = ly_ctx_new(search_dir, 0, &ctx_yl), cleanup);
/* parse yang library data tree */
LY_CHECK_GOTO(ret = lyd_parse_data_path(ctx_yl, path, format, 0, LYD_VALIDATE_PRESENT, &data_yl), cleanup);
/* create the new context */
ret = ly_ctx_new_yldata(search_dir, data_yl, options, ctx);
cleanup:
lyd_free_all(data_yl);
ly_ctx_destroy(ctx_yl);
return ret;
}
LIBYANG_API_DEF LY_ERR
ly_ctx_new_ylmem(const char *search_dir, const char *data, LYD_FORMAT format, int options, struct ly_ctx **ctx)
{
LY_ERR ret = LY_SUCCESS;
struct ly_ctx *ctx_yl = NULL;
struct lyd_node *data_yl = NULL;
LY_CHECK_ARG_RET(NULL, data, ctx, LY_EINVAL);
/* create a seperate context for the data */
LY_CHECK_GOTO(ret = ly_ctx_new(search_dir, 0, &ctx_yl), cleanup);
/* parse yang library data tree */
LY_CHECK_GOTO(ret = lyd_parse_data_mem(ctx_yl, data, format, 0, LYD_VALIDATE_PRESENT, &data_yl), cleanup);
/* create the new context */
ret = ly_ctx_new_yldata(search_dir, data_yl, options, ctx);
cleanup:
lyd_free_all(data_yl);
ly_ctx_destroy(ctx_yl);
return ret;
}
LIBYANG_API_DEF LY_ERR
ly_ctx_new_yldata(const char *search_dir, const struct lyd_node *tree, int options, struct ly_ctx **ctx)
{
const char *name = NULL, *revision = NULL;
struct lyd_node *module, *node;
struct ly_set *set = NULL;
const char **feature_arr = NULL;
struct ly_set features = {0};
LY_ERR ret = LY_SUCCESS;
const struct lys_module *mod;
struct ly_ctx *ctx_new = NULL;
ly_bool no_expl_compile = 0;
uint32_t i, j;
LY_CHECK_ARG_RET(NULL, tree, !strcmp(LYD_NAME(tree), "yang-library"), ctx, LY_EINVAL);
/* create a new context */
if (*ctx == NULL) {
LY_CHECK_GOTO(ret = ly_ctx_new(search_dir, options, &ctx_new), cleanup);
} else {
ctx_new = *ctx;
}
/* redundant to compile modules one-by-one */
if (!(options & LY_CTX_EXPLICIT_COMPILE)) {
ctx_new->opts |= LY_CTX_EXPLICIT_COMPILE;
no_expl_compile = 1;
}
LY_CHECK_GOTO(ret = lyd_find_xpath(tree, "module-set[1]/module", &set), cleanup);
if (set->count == 0) {
/* perhaps a legacy data tree? */
LY_CHECK_GOTO(ret = ly_ctx_new_yl_legacy(ctx_new, tree), cleanup);
} else {
/* process the data tree */
for (i = 0; i < set->count; ++i) {
module = set->dnodes[i];
/* initiate */
name = NULL;
revision = NULL;
/* iterate over data */
LY_LIST_FOR(lyd_child(module), node) {
if (!strcmp(node->schema->name, "name")) {
name = lyd_get_value(node);
} else if (!strcmp(node->schema->name, "revision")) {
revision = lyd_get_value(node);
} else if (!strcmp(node->schema->name, "feature")) {
LY_CHECK_GOTO(ret = ly_set_add(&features, node, 0, NULL), cleanup);
}
}
feature_arr = malloc((features.count + 1) * sizeof *feature_arr);
LY_CHECK_ERR_GOTO(!feature_arr, ret = LY_EMEM, cleanup);
/* parse features into an array of strings */
for (j = 0; j < features.count; ++j) {
feature_arr[j] = lyd_get_value(features.dnodes[j]);
}
feature_arr[features.count] = NULL;
ly_set_clean(&features, NULL);
/* use the gathered data to load the module */
mod = ly_ctx_load_module(ctx_new, name, revision, feature_arr);
free(feature_arr);
if (!mod) {
LOGERR(*ctx ? *ctx : LYD_CTX(tree), LY_EINVAL, "Unable to load module %s@%s specified by yang library data.",
name, revision ? revision : "<none>");
ret = LY_EINVAL;
goto cleanup;
}
}
}
/* compile */
LY_CHECK_GOTO(ret = ly_ctx_compile(ctx_new), cleanup);
if (no_expl_compile) {
/* unset flag */
ctx_new->opts &= ~LY_CTX_EXPLICIT_COMPILE;
}
cleanup:
ly_set_free(set, NULL);
ly_set_erase(&features, NULL);
if (*ctx == NULL) {
*ctx = ctx_new;
if (ret) {
ly_ctx_destroy(*ctx);
*ctx = NULL;
}
}
return ret;
}
LIBYANG_API_DEF LY_ERR
ly_ctx_compile(struct ly_ctx *ctx)
{
LY_ERR ret = LY_SUCCESS;
LY_CHECK_ARG_RET(NULL, ctx, !(ctx->opts & LY_CTX_INT_IMMUTABLE), LY_EINVAL);
/* create dep sets and mark all the modules that will be (re)compiled */
LY_CHECK_GOTO(ret = lys_unres_dep_sets_create(ctx, &ctx->unres.dep_sets, NULL), cleanup);
/* (re)compile all the dep sets */
LY_CHECK_GOTO(ret = lys_compile_depset_all(ctx, &ctx->unres), cleanup);
/* new context state */
ly_ctx_new_change(ctx);
cleanup:
if (ret) {
/* revert changes of modules */
lys_unres_glob_revert(ctx, &ctx->unres);
}
lys_unres_glob_erase(&ctx->unres);
return ret;
}
LIBYANG_API_DEF uint32_t
ly_ctx_get_options(const struct ly_ctx *ctx)
{
LY_CHECK_ARG_RET(ctx, ctx, 0);
return ctx->opts;
}
LIBYANG_API_DEF LY_ERR
ly_ctx_set_options(struct ly_ctx *ctx, uint32_t option)
{
LY_ERR lyrc = LY_SUCCESS;
struct ly_ctx_shared_data *ctx_data;
struct lys_module *mod;
uint32_t i;
LY_CHECK_ARG_RET(ctx, ctx, !(ctx->opts & LY_CTX_INT_IMMUTABLE), LY_EINVAL);
LY_CHECK_ERR_RET((option & LY_CTX_NO_YANGLIBRARY) && !(ctx->opts & LY_CTX_NO_YANGLIBRARY),
LOGARG(ctx, option), LY_EINVAL);
if (!(ctx->opts & LY_CTX_BUILTIN_PLUGINS_ONLY) && (option & LY_CTX_BUILTIN_PLUGINS_ONLY)) {
LOGERR(ctx, LY_EINVAL,
"Invalid argument %s (LY_CTX_BUILTIN_PLUGINS_ONLY can be set only when creating a new context) (%s()).",
"option", __func__);
return LY_EINVAL;
}
if (!(ctx->opts & LY_CTX_STATIC_PLUGINS_ONLY) && (option & LY_CTX_STATIC_PLUGINS_ONLY)) {
LOGERR(ctx, LY_EINVAL,
"Invalid argument %s (LY_CTX_STATIC_PLUGINS_ONLY can be set only when creating a new context) (%s()).",
"option", __func__);
return LY_EINVAL;
}
if (!(ctx->opts & LY_CTX_LEAFREF_LINKING) && (option & LY_CTX_LEAFREF_LINKING)) {
/* context is not printed (ctx data cant be shared with any other ctx), so no need to hold a lock */
ctx_data = ly_ctx_shared_data_get(ctx);
ctx_data->leafref_links_ht = lyht_new(1, sizeof(struct lyd_leafref_links_rec *), ly_ctx_ht_leafref_links_equal_cb, NULL, 1);
LY_CHECK_ERR_RET(!ctx_data->leafref_links_ht, LOGARG(ctx, option), LY_EMEM);
}
if (!(ctx->opts & LY_CTX_LYB_HASHES) && (option & LY_CTX_LYB_HASHES)) {
for (i = 0; i < ctx->modules.count; ++i) {
mod = ctx->modules.objs[i];
if (!mod->implemented) {
continue;
}
/* store all cached hashes for all the nodes */
lysc_module_dfs_full(mod, lyb_cache_node_hash_cb, NULL);
/* cache hashes in nodes in extensions */
lyb_cache_ext_node_hash(mod);
}
}
if (!(ctx->opts & LY_CTX_SET_PRIV_PARSED) && (option & LY_CTX_SET_PRIV_PARSED)) {
ctx->opts |= LY_CTX_SET_PRIV_PARSED;
/* recompile the whole context to set the priv pointers */
for (i = 0; i < ctx->modules.count; ++i) {
mod = ctx->modules.objs[i];
if (mod->implemented) {
mod->to_compile = 1;
}
}
lyrc = ly_ctx_compile(ctx);
if (lyrc) {
ly_ctx_unset_options(ctx, LY_CTX_SET_PRIV_PARSED);
}
}
/* set the option(s) */
if (!lyrc) {
ctx->opts |= option;
}
return lyrc;
}
static LY_ERR
lysc_node_clear_priv_dfs_cb(struct lysc_node *node, void *UNUSED(data), ly_bool *UNUSED(dfs_continue))
{
node->priv = NULL;
return LY_SUCCESS;
}
LIBYANG_API_DEF LY_ERR
ly_ctx_unset_options(struct ly_ctx *ctx, uint32_t option)
{
LY_ARRAY_COUNT_TYPE u, v;
const struct lysc_ext_instance *ext;
struct lysc_node *root;
struct ly_ctx_shared_data *ctx_data;
LY_CHECK_ARG_RET(ctx, ctx, !(ctx->opts & LY_CTX_INT_IMMUTABLE), LY_EINVAL);
LY_CHECK_ERR_RET(option & LY_CTX_NO_YANGLIBRARY, LOGARG(ctx, option), LY_EINVAL);
if ((ctx->opts & LY_CTX_LEAFREF_LINKING) && (option & LY_CTX_LEAFREF_LINKING)) {
/* context is not printed (ctx data cant be shared with any other ctx), so no need to hold a lock */
ctx_data = ly_ctx_shared_data_get(ctx);
lyht_free(ctx_data->leafref_links_ht, ly_ctx_ht_leafref_links_rec_free);
ctx_data->leafref_links_ht = NULL;
}
if ((ctx->opts & LY_CTX_SET_PRIV_PARSED) && (option & LY_CTX_SET_PRIV_PARSED)) {
struct lys_module *mod;
uint32_t index;
index = 0;
while ((mod = ly_ctx_get_module_iter(ctx, &index))) {
if (!mod->compiled) {
continue;
}
/* set NULL for all ::lysc_node.priv pointers in module */
lysc_module_dfs_full(mod, lysc_node_clear_priv_dfs_cb, NULL);
/* set NULL for all ::lysc_node.priv pointers in compiled extension instances */
LY_ARRAY_FOR(mod->compiled->exts, u) {
ext = &mod->compiled->exts[u];
LY_ARRAY_FOR(ext->substmts, v) {
if (ext->substmts[v].stmt & LY_STMT_DATA_NODE_MASK) {
LY_LIST_FOR(*ext->substmts[v].storage_p, root) {
lysc_tree_dfs_full(root, lysc_node_clear_priv_dfs_cb, NULL);
}
}
}
}
}
}
/* unset the option(s) */
ctx->opts &= ~option;
return LY_SUCCESS;
}
LIBYANG_API_DEF uint16_t
ly_ctx_get_change_count(const struct ly_ctx *ctx)
{
LY_CHECK_ARG_RET(ctx, ctx, 0);
return ctx->change_count;
}
LIBYANG_API_DEF uint32_t
ly_ctx_get_modules_hash(const struct ly_ctx *ctx)
{
LY_CHECK_ARG_RET(ctx, ctx, 0);
return ctx->mod_hash;
}
void
ly_ctx_new_change(struct ly_ctx *ctx)
{
const struct lys_module *mod;
uint32_t i = ly_ctx_internal_modules_count(ctx), hash = 0;
LY_ARRAY_COUNT_TYPE u;
/* change counter */
ctx->change_count++;
/* module hash */
while ((mod = ly_ctx_get_module_iter(ctx, &i))) {
/* name */
hash = lyht_hash_multi(hash, mod->name, strlen(mod->name));
/* revision */
if (mod->revision) {
hash = lyht_hash_multi(hash, mod->revision, strlen(mod->revision));
}
/* enabled features */
if (mod->implemented) {
LY_ARRAY_FOR(mod->compiled->features, u) {
hash = lyht_hash_multi(hash, mod->compiled->features[u], strlen(mod->compiled->features[u]));
}
}
/* imported/implemented */
hash = lyht_hash_multi(hash, (char *)&mod->implemented, sizeof mod->implemented);
}
ctx->mod_hash = lyht_hash_multi(hash, NULL, 0);
}
LIBYANG_API_DEF ly_module_imp_clb
ly_ctx_get_module_imp_clb(const struct ly_ctx *ctx, void **user_data)
{
LY_CHECK_ARG_RET(ctx, ctx, NULL);
if (user_data) {
*user_data = ctx->imp_clb_data;
}
return ctx->imp_clb;
}
LIBYANG_API_DEF void
ly_ctx_set_module_imp_clb(struct ly_ctx *ctx, ly_module_imp_clb clb, void *user_data)
{
LY_CHECK_ARG_RET(ctx, ctx, !(ctx->opts & LY_CTX_INT_IMMUTABLE), );
ctx->imp_clb = clb;
ctx->imp_clb_data = user_data;
/* new import callback - reset latests flags (possibly new revisions available) */
for (uint32_t v = 0; v < ctx->modules.count; ++v) {
struct lys_module *mod = ctx->modules.objs[v];
mod->latest_revision &= ~LYS_MOD_LATEST_IMPCLB;
if (mod->parsed && mod->parsed->includes) {
for (LY_ARRAY_COUNT_TYPE u = 0; u < LY_ARRAY_COUNT(mod->parsed->includes); ++u) {
mod->parsed->includes[u].submodule->latest_revision &= ~LYS_MOD_LATEST_IMPCLB;
}
}
}
}
LIBYANG_API_DEF ly_ext_data_clb
ly_ctx_set_ext_data_clb(const struct ly_ctx *ctx, ly_ext_data_clb clb, void *user_data)
{
struct ly_ctx_shared_data *ctx_data;
ly_ext_data_clb prev;
LY_CHECK_ARG_RET(ctx, ctx, NULL);
ctx_data = ly_ctx_shared_data_get(ctx);
/* EXT CLB LOCK */
pthread_mutex_lock(&ctx_data->ext_clb_lock);
prev = ctx_data->ext_clb;
ctx_data->ext_clb = clb;
ctx_data->ext_clb_data = user_data;
/* EXT CLB UNLOCK */
pthread_mutex_unlock(&ctx_data->ext_clb_lock);
return prev;
}
LIBYANG_API_DEF struct lys_module *
ly_ctx_get_module_iter(const struct ly_ctx *ctx, uint32_t *index)
{
LY_CHECK_ARG_RET(ctx, ctx, index, NULL);
if (*index < ctx->modules.count) {
return ctx->modules.objs[(*index)++];
} else {
return NULL;
}
}
/**
* @brief Iterate over the modules in the given context. Returned modules must match the given key at the offset of
* lysp_module and lysc_module structures (they are supposed to be placed at the same offset in both structures).
*
* @param[in] ctx Context where to iterate.
* @param[in] key Key value to search for.
* @param[in] key_size Optional length of the @p key. If zero, NULL-terminated key is expected.
* @param[in] key_offset Key's offset in struct lys_module to get value from the context's modules to match with the key.
* @param[in,out] Iterator to pass between the function calls. On the first call, the variable is supposed to be
* initiated to 0. After each call returning a module, the value is greater by 1 than the index of the returned
* module in the context.
* @return Module matching the given key, NULL if no such module found.
*/
static struct lys_module *
ly_ctx_get_module_by_iter(const struct ly_ctx *ctx, const char *key, size_t key_size, size_t key_offset, uint32_t *index)
{
struct lys_module *mod;
const char *value;
for ( ; *index < ctx->modules.count; ++(*index)) {
mod = ctx->modules.objs[*index];
value = *(const char **)(((int8_t *)(mod)) + key_offset);
if ((!key_size && !strcmp(key, value)) || (key_size && !strncmp(key, value, key_size) && (value[key_size] == '\0'))) {
/* increment index for the next run */
++(*index);
return mod;
}
}
/* done */
return NULL;
}
/**
* @brief Unifying function for ly_ctx_get_module() and ly_ctx_get_module_ns()
* @param[in] ctx Context where to search.
* @param[in] key Name or Namespace as a search key.
* @param[in] key_offset Key's offset in struct lys_module to get value from the context's modules to match with the key.
* @param[in] revision Revision date to match. If NULL, the matching module must have no revision. To search for the latest
* revision module, use ly_ctx_get_module_latest_by().
* @return Matching module if any.
*/
static struct lys_module *
ly_ctx_get_module_by(const struct ly_ctx *ctx, const char *key, size_t key_offset, const char *revision)
{
struct lys_module *mod;
uint32_t index = 0;
while ((mod = ly_ctx_get_module_by_iter(ctx, key, 0, key_offset, &index))) {
if (!revision) {
if (!mod->revision) {
/* found requested module without revision */
return mod;
}
} else {
if (mod->revision && !strcmp(mod->revision, revision)) {
/* found requested module of the specific revision */
return mod;
}
}
}
return NULL;
}
LIBYANG_API_DEF struct lys_module *
ly_ctx_get_module_ns(const struct ly_ctx *ctx, const char *ns, const char *revision)
{
LY_CHECK_ARG_RET(ctx, ctx, ns, NULL);
return ly_ctx_get_module_by(ctx, ns, offsetof(struct lys_module, ns), revision);
}
LIBYANG_API_DEF struct lys_module *
ly_ctx_get_module(const struct ly_ctx *ctx, const char *name, const char *revision)
{
LY_CHECK_ARG_RET(ctx, ctx, name, NULL);
return ly_ctx_get_module_by(ctx, name, offsetof(struct lys_module, name), revision);
}
/**
* @brief Unifying function for ly_ctx_get_module_latest() and ly_ctx_get_module_latest_ns()
* @param[in] ctx Context where to search.
* @param[in] key Name or Namespace as a search key.
* @param[in] key_offset Key's offset in struct lys_module to get value from the context's modules to match with the key.
* @return Matching module if any.
*/
static struct lys_module *
ly_ctx_get_module_latest_by(const struct ly_ctx *ctx, const char *key, size_t key_offset)
{
struct lys_module *mod;
uint32_t index = 0;
while ((mod = ly_ctx_get_module_by_iter(ctx, key, 0, key_offset, &index))) {
if (mod->latest_revision & LYS_MOD_LATEST_REV) {
return mod;
}
}
return NULL;
}
LIBYANG_API_DEF struct lys_module *
ly_ctx_get_module_latest(const struct ly_ctx *ctx, const char *name)
{
LY_CHECK_ARG_RET(ctx, ctx, name, NULL);
return ly_ctx_get_module_latest_by(ctx, name, offsetof(struct lys_module, name));
}
LIBYANG_API_DEF struct lys_module *
ly_ctx_get_module_latest_ns(const struct ly_ctx *ctx, const char *ns)
{
LY_CHECK_ARG_RET(ctx, ctx, ns, NULL);
return ly_ctx_get_module_latest_by(ctx, ns, offsetof(struct lys_module, ns));
}
/**
* @brief Unifying function for ly_ctx_get_module_implemented() and ly_ctx_get_module_implemented_ns()
* @param[in] ctx Context where to search.
* @param[in] key Name or Namespace as a search key.
* @param[in] key_size Optional length of the @p key. If zero, NULL-terminated key is expected.
* @param[in] key_offset Key's offset in struct lys_module to get value from the context's modules to match with the key.
* @return Matching module if any.
*/
static struct lys_module *
ly_ctx_get_module_implemented_by(const struct ly_ctx *ctx, const char *key, size_t key_size, size_t key_offset)
{
struct lys_module *mod;
uint32_t index = 0;
while ((mod = ly_ctx_get_module_by_iter(ctx, key, key_size, key_offset, &index))) {
if (mod->implemented) {