• Stars
    star
    350
  • Rank 117,385 (Top 3 %)
  • Language
    C
  • License
    BSD 3-Clause "New...
  • Created about 9 years ago
  • Updated 25 days ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

YANG data modeling language library

libyang

BSD license Build Docs Coverity Scan Build Status codecov.io Fuzzing Status Ohloh Project Status

libyang is a YANG data modelling language parser and toolkit written (and providing API) in C. The library is used e.g. in libnetconf2, Netopeer2 or sysrepo projects.

If you are interested in future plans announcements, please subscribe to the Future Plans issue.

Branches

The project uses 2 main branches master and devel. Other branches should not be cloned. In master there are files of the last official release. Any latest improvements and changes, which were tested at least briefly are found in devel. On every new release, devel is merged into master.

This means that when only stable official releases are to be used, either master can be used or specific releases downloaded. If all the latest bugfixes should be applied, devel branch is the one to be used. Note that whenever a new issue is created and it occurs on the master branch, the first response will likely be to use devel before any further provided support.

Migration from libyang version 1 or older

Look into the documentation and the section Transition Manual. That should help with basic migration and the ability to compile a project. But to actually make use of the new features, it is required to read through the whole documentation and the API.

Provided Features

  • Parsing (and validating) schemas in YANG format.
  • Parsing (and validating) schemas in YIN format.
  • Parsing, validating and printing instance data in XML format.
  • Parsing, validating and printing instance data in JSON format (RFC 7951).
  • Manipulation with the instance data.
  • Support for default values in the instance data (RFC 6243).
  • Support for YANG extensions.
  • Support for YANG Metadata (RFC 7952).
  • Support for YANG Schema Mount (RFC 8528).
  • Support for YANG Structure (RFC 8791).
  • yanglint - feature-rich YANG tool.

Current implementation covers YANG 1.0 (RFC 6020) as well as YANG 1.1 (RFC 7950).

Packages

Binary RPM or DEB packages of the latest release can be built locally using apkg, look into README in the distro directory.

Requirements

Unix Build Requirements

  • C compiler
  • cmake >= 2.8.12
  • libpcre2 >= 10.21 (including devel package)
    • note, that PCRE is supposed to be compiled with unicode support (configure's options --enable-utf and --enable-unicode-properties)

Optional

  • doxygen (for generating documentation)
  • cmocka >= 1.0.1 (for tests)
  • valgrind (for enhanced testing)
  • gcov (for code coverage)
  • lcov (for code coverage)
  • genhtml (for code coverage)

Unix Runtime Requirements

  • libpcre2 >= 10.21

Windows Build Requirements

The Windows version does not support plugins, and the yanglint works in a non-interactive mode only. On Windows, all YANG date-and-time values are first converted to UTC (if TZ offset was specified), and then returned with "unspecified timezone".

Building

$ mkdir build; cd build
$ cmake ..
$ make
# make install

Useful CMake Options

Changing Compiler

Set CC variable:

$ CC=/usr/bin/clang cmake ..

Changing Install Path

To change the prefix where the library, headers and any other files are installed, set CMAKE_INSTALL_PREFIX variable:

$ cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr ..

Default prefix is /usr/local.

Build Modes

There are two build modes:

  • Release. This generates library for the production use without any debug information.
  • Debug. This generates library with the debug information and disables optimization of the code.

The Debug mode is currently used as the default one. to switch to the Release mode, enter at the command line:

$ cmake -D CMAKE_BUILD_TYPE:String="Release" ..

Changing Extensions Plugins Directory

As for YANG extensions, libyang allows loading extension plugins. By default, the directory to store the plugins is LIBDIR/libyang. To change it, use the following cmake option with the value specifying the desired directory:

$ cmake -DPLUGINS_DIR:PATH=`pwd`"/src/extensions/" ..

The directory path can be also changed runtime via environment variable, e.g.:

$ LIBYANG_EXTENSIONS_PLUGINS_DIR=`pwd`/my/relative/path yanglint

Note that plugins are not available on Windows.

Optimizations

Whenever the latest revision of a schema is supposed to be loaded (import without specific revision), it is performed in the standard way, the first time. By default, every other time when the latest revision of the same schema is needed, the one initially loaded is reused. If you know this can cause problems meaning the latest available revision of a schema can change during operation, you can force libyang to always search for the schema anew by:

$ cmake -DENABLE_LATEST_REVISIONS=OFF ..

CMake Notes

Note that, with CMake, if you want to change the compiler or its options after you already ran CMake, you need to clear its cache first - the most simple way to do it is to remove all content from the 'build' directory.

Usage

All libyang functions are available via the main header:

#include <libyang/libyang.h>

To compile your program with libyang, it is necessary to link it with libyang using the following linker parameters:

-lyang

Note, that it may be necessary to call ldconfig(8) after library installation and if the library was installed into a non-standard path, the path to libyang must be specified to the linker. To help with setting all the compiler's options, there is libyang.pc file for pkg-config(1) available in the source tree. The file is installed with the library.

If you are using cmake in you project, it is also possible to use the provided FindLibYANG.cmake file to detect presence of the libyang library in the system.

Bindings

There are no bindings for other languages directly in this project but they are available separately.

yanglint

libyang project includes a feature-rich tool called yanglint(1) for validation and conversion of the schemas and YANG modeled data. The source codes are located at /tools/lint and can be used to explore how an application is supposed to use the libyang library. yanglint(1) binary as well as its man page are installed together with the library itself.

There is also README describing some examples of using yanglint.

Tests

libyang includes several tests built with cmocka. The tests can be found in tests subdirectory and they are designed for checking library functionality after code changes. Additional regression tests done with a corpus of fuzzing inputs that previously caused crashes are done. Those are available in tests/fuzz and are built automatically with the cmocka unit tests.

The tests are by default built in the Debug build mode by running

$ make

In case of the Release mode, the tests are not built by default (it requires additional dependency), but they can be enabled via cmake option:

$ cmake -DENABLE_TESTS=ON ..

Note that if the necessary cmocka headers are not present in the system include paths, tests are not available despite the build mode or cmake's options.

Tests can be run by the make's test target:

$ make test

Perf

There is a performance measurement tool included that prints information about the time required to execute common use-cases of working with YANG instance data.

To enable this test, use an option and to get representative results, enable Release build type:

$ cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_PERF_TESTS=ON ..

and to run the test with seeing its output run:

$ make
$ ctest -V -R ly_perf

Code Coverage

Based on the tests run, it is possible to generate code coverage report. But it must be enabled and these commands are needed to generate the report:

$ cmake -DENABLE_COVERAGE=ON ..
$ make
$ make coverage

Fuzzing

Multiple YANG fuzzing targets and fuzzing instructions are available in the tests/fuzz directory.

All of the targets can be fuzzed with LLVM's LibFuzzer and AFL, and new targets can easily be added. Asciinema examples which describe the fuzzing setup for both AFL (https://asciinema.org/a/311060) and LibFuzzer (https://asciinema.org/a/311035) are available.

More Repositories

1

UltraGrid

UltraGrid low-latency audio and video network transmission system
C
468
star
2

netopeer2

NETCONF toolset
C
285
star
3

GPUJPEG

JPEG encoder and decoder library and console application for NVIDIA GPUs from CESNET and SITOLA of Faculty of Informatics at Masaryk University.
C
223
star
4

libnetconf2

C NETCONF library
C
197
star
5

netopeer

NETCONF Protocol Toolset
Shell
116
star
6

ipfixcol2

High-performance NetFlow v5/v9 and IPFIX collector (RFC7011)
C
115
star
7

libnetconf

C NETCONF library
C
110
star
8

Nemea

System for network traffic analysis and anomaly detection.
Shell
79
star
9

ipfixcol

IPFIXcol is an implementation of an IPFIX (RFC 7011) collector
C++
64
star
10

libyang-python

Python bindings for the libyang library
Python
60
star
11

perun

Perun Identity and Access Management System
Java
57
star
12

pakiti-server

Pakiti provides a monitoring mechanism to check the patching status of Linux systems.
PHP
49
star
13

Netopeer-GUI

Graphical user interface for NETCONF client
PHP
35
star
14

NERD

Network Entity Reputation Database
Python
31
star
15

ipfixprobe

C++
30
star
16

FlowTest

Testbed for testing NetFlow/IPFIX network monitoring probes. Includes tools for PCAP generation and replay of 1/10/100G network traffic.
C++
28
star
17

Netopeer2GUI

Web-based NETCONF management center
TypeScript
25
star
18

ndk-app-minimal

Minimal Application based on Network Development Kit (NDK) for FPGA cards
VHDL
23
star
19

ofm

Open FPGA Modules
VHDL
22
star
20

Nemea-Detectors

Detection modules of the Nemea system.
C++
21
star
21

sphinx-vhdl

Python
19
star
22

fake-oidc-server

A simple OpenID Connect Authorization Server that provides a single user
Java
15
star
23

netconf-cli

A NETCONF-talking CLI
C++
15
star
24

rad_eap_test

Nagios compatible shell script used for testing RADIUS servers by EAP
Shell
14
star
25

Nemea-Modules

Base modules of the Nemea system. This repository contains modules for export, replay, filtering, merging etc.
C++
14
star
26

cesnet-datazoo

CESNET DataZoo: A toolset for large network traffic datasets
Python
13
star
27

secant

Security Cloud Assessment Tool
Shell
12
star
28

torque

MetaCentrum fork of Torque batch system used on the Czech National Grid
C
11
star
29

Nemea-Framework

Nemea framework is the heart of the Nemea system. It contains implementation of common communication interfaces, UniRec data format and useful datastructures and algorithms.
C
10
star
30

libyang-cpp

C++ bindings for the libyang library
C++
9
star
31

perun-services

Scripts used by Perun to (de)provision services with authorization data
Perl
9
star
32

velia

YANG System management for embedded devices running Linux
C++
9
star
33

libfds

Flow Data Storage library
C++
9
star
34

pbspro.hooks

Python
8
star
35

ALF

Active Learning Framework
Python
8
star
36

rousette

An almost-RESTCONF server
C++
7
star
37

wayf

The CESNET WAYF service
JavaScript
7
star
38

cesnet-models

CESNET Models: Neural networks for network traffic classification
Python
7
star
39

TorqueFastSched

High performance scheduler for Torque resource manager. Optimized for highly heterogeneous environments.
C++
6
star
40

liberouter-gui

Python
6
star
41

pOCCI

OCCI Compliance Tests
Python
6
star
42

libfastbit

Clone of FastBit repository
C++
6
star
43

NEMEA-SIoT

NEMEA modules for securing IoT networks.
C
6
star
44

eduroam-icinga

new ermon (eduroam monitoring)
Shell
6
star
45

exafs

ExaFS is a tool for creation, validation, and execution of ExaBGP messages.
Python
6
star
46

ansible-freeradius

Ansible role to install FreeRADIUS v3 for eduroam.cz
Shell
6
star
47

cesnet-tcexamples

Jupyter notebooks with traffic classification examples using CESNET DataZoo and CESNET Models packages
Jupyter Notebook
6
star
48

etlog

eduroam traffic log analysis
JavaScript
5
star
49

gridsite

Grid Security for the Web.
C
5
star
50

php-perun-ws

PHP
5
star
51

lighterwall

LighterWall is an iptables/ip6tables wrapper to ease writing of corresponding IPv4/IPv6 firewalls
Shell
5
star
52

connector-kerberos

Native MIT Kerberos Polygon+ConnId connector
Java
4
star
53

ndk-core

Common CORE of Network Development Kit (NDK)
VHDL
4
star
54

eInfra-docs

Python
4
star
55

perun-ansible

Ansible scripts for Perun installation
4
star
56

LiST

Security Tools as a Service
Python
4
star
57

389ds-plugin-ssm

Server Side Modification plugin
C
4
star
58

perun-ansible-roles

repo with git submodules for Ansible roles
4
star
59

Nemea-OpenWRT

The NEMEA packages feed
Makefile
4
star
60

dp3

Dynamic Profile Processing Platform (DP³), the base platform for ADiCT project
Python
4
star
61

ndk-sw

Linux driver and SW tools for Network Development Kit (NDK)
C
4
star
62

libnetconf2-cpp

C++ bindings for the libnetconf2 library
C++
4
star
63

satosa-module-webauthn

WebAuthn module for SaToSa
Python
3
star
64

metacentrum-accounting

Accounting for MetaCentrum
Java
3
star
65

lgbm2vhdl

LGBM2VHDL: Tool for converting LightGBM models into VHDL implementation.
Python
3
star
66

ndk-cards-open

FPGA cards files for the NDK
VHDL
3
star
67

IndigoVR

Virtual Router Appliance for virtual networks
3
star
68

occi-schemas

OCCI (Open Cloud Computing Interface) Rendering Schemas
Makefile
3
star
69

perun-mitreid

OpenID Connect Provider for Perun
Java
3
star
70

shongo-authn-server

Authentication server for the Shongo project
PHP
3
star
71

php-authz-ws

Authorization web service
PHP
3
star
72

canl-c

Common Authentication library - bindings for C.
C
3
star
73

pakiti-client

Client for Pakiti patching status monitoring system
Perl
3
star
74

glite-lb

gLite Logging and Bookkeeping.
C
3
star
75

fdistdump

Tool for distributed quering of flow data.
C
3
star
76

sysrepo-ietf-alarms

Alarm management (ietf-alarms) YANG module for sysrepo
C++
3
star
77

ansible-role-yubikeys

Ansible Galaxy role cesnet.yubikeys
2
star
78

simplesamlphp-module-authswitcher

PHP
2
star
79

theme-cesnet

Custom CESNET theme for ownCloud
PHP
2
star
80

user_openidc

ownCloud user backend app providing OpenID Connect authentication
PHP
2
star
81

ansible-role-apache-tls

Ansible Galaxy role cesnet.apache_tls
2
star
82

shongo

Shongo Resource Management System
Java
2
star
83

DHuSTools

Small tools developed to accompany ESA DHuS instances
Shell
2
star
84

perun-simplesamlphp-module

Module which allows simpleSAMLphp to get data from Perun
PHP
2
star
85

proxyrenewal

Proxyrenewal renews existing proxy certificates for grid users.
C
2
star
86

netopeerguid

Netopeer-GUI backend
C
2
star
87

NOW

Component to extend OpenNebula network orchestration capabilities
Ruby
2
star
88

eduroam-db

tools for management of eduroam database data
JavaScript
2
star
89

Nemea-Supervisor

Management and monitoring module for the Nemea system.
Shell
2
star
90

glite-testsuites

Testsuites for gLite middleware and EMI products - canl-c, L&B, Proxyrenewal and Gridsite.
Shell
2
star
91

metaman-helpers

Client-side and server-side Git hooks along with other possible helpers for MetaMan.
Shell
2
star
92

eduroam-live

live demonstration of eduroam service in action
JavaScript
2
star
93

Phishingator

Phishingator – Phishing Training System (Systém pro rozesílání cvičných phishingových zpráv)
PHP
2
star
94

lbr-testsuite

Python
2
star
95

google-group-connector

Tool for provisioning users and groups in your domain in G Suite
Java
2
star
96

shibboleth-sp-access-control

Shibboleth service provider access control
PHP
2
star
97

PerQoDA

1
star
98

satosa-microservice-webauthn

WebAuthn microservice for SaToSa
Python
1
star
99

ansible-role-postgresql

Ansible Galaxy role cesnet.postgresql
1
star
100

metacentrum-hands-on

Repository for MetaCentrum hands-on courses
1
star