blob: ab8baa568c6d85d05367f8fcc5f02df69f6ff00a [file] [log] [blame]
Radek Krejcid0d19522015-09-02 13:49:25 +02001/**
2 * \file netconf.h
3 * \author Radek Krejci <rkrejci@cesnet.cz>
4 * \brief libnetconf2's general public functions and structures definitions.
5 *
6 * Copyright (c) 2015 CESNET, z.s.p.o.
7 *
Radek Krejci9b81f5b2016-02-24 13:14:49 +01008 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
Michal Vaskoafd416b2016-02-25 14:51:46 +010011 *
Radek Krejci9b81f5b2016-02-24 13:14:49 +010012 * https://opensource.org/licenses/BSD-3-Clause
Radek Krejcid0d19522015-09-02 13:49:25 +020013 */
14
15#ifndef NC_NETCONF_H_
16#define NC_NETCONF_H_
17
18#include <time.h>
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
Radek Krejci206fcd62015-10-07 15:42:48 +020024#define NC_NS_BASE "urn:ietf:params:xml:ns:netconf:base:1.0"
25#define NC_NS_NOTIF "urn:ietf:params:xml:ns:netconf:notification:1.0"
26
Radek Krejciac6d3472015-10-22 15:47:18 +020027/** @brief Default NETCONF over SSH port */
Michal Vasko38a7c6c2015-12-04 12:29:20 +010028#define NC_PORT_SSH 830
29/** @brief Default NETCONF over SSH Call Home port */
30#define NC_PORT_CH_SSH 6666
31
Radek Krejciac6d3472015-10-22 15:47:18 +020032/** @brief Default NETCONF over TLS port */
Michal Vasko38a7c6c2015-12-04 12:29:20 +010033#define NC_PORT_TLS 6513
34/** @brief Default NETCONF over TLS Call Home port */
35#define NC_PORT_CH_TLS 6667
Radek Krejciac6d3472015-10-22 15:47:18 +020036
Michal Vasko086311b2016-01-08 09:53:11 +010037/** @brief Microseconds after which tasks are repeated until the full timeout elapses */
Michal Vasko38fff792016-02-02 15:50:17 +010038#define NC_TIMEOUT_STEP 100
Michal Vasko086311b2016-01-08 09:53:11 +010039
Radek Krejcid0d19522015-09-02 13:49:25 +020040/**
41 * @brief Enumeration of reasons of the NETCONF session termination as defined in RFC 6470.
42 */
43typedef enum NC_SESSION_TERM_REASON {
Michal Vasko428087d2016-01-14 16:04:28 +010044 NC_SESSION_TERM_NONE = 0, /**< session still running */
45 NC_SESSION_TERM_CLOSED, /**< closed by client in a normal fashion */
46 NC_SESSION_TERM_KILLED, /**< session was terminated by \<kill-session\> operation */
47 NC_SESSION_TERM_DROPPED, /**< transport layer connection was unexpectedly closed */
48 NC_SESSION_TERM_TIMEOUT, /**< terminated because of inactivity */
49 NC_SESSION_TERM_BADHELLO, /**< \<hello\> message was invalid */
50 NC_SESSION_TERM_OTHER /**< terminated for some other reason */
Radek Krejcid0d19522015-09-02 13:49:25 +020051} NC_SESSION_TERM_REASON;
52
53/**
Radek Krejci43390242015-10-08 15:34:04 +020054 * @brief Enumeration of NETCONF message types.
55 */
56typedef enum NC_MSG_TYPE {
57 NC_MSG_ERROR, /**< error return value */
58 NC_MSG_WOULDBLOCK, /**< timeout return value */
59 NC_MSG_NONE, /**< no message at input or message was processed internally */
60 NC_MSG_HELLO, /**< \<hello\> message */
61 NC_MSG_RPC, /**< \<rpc\> message */
62 NC_MSG_REPLY, /**< \<rpc-reply\> message */
Radek Krejci5686ff72015-10-09 13:33:56 +020063 NC_MSG_NOTIF /**< \<notification\> message */
Radek Krejci43390242015-10-08 15:34:04 +020064} NC_MSG_TYPE;
65
66/**
Radek Krejci695d4fa2015-10-22 13:23:54 +020067 * @brief Enumeration of the supported types of datastores defined by NETCONF
68 */
69typedef enum NC_DATASTORE_TYPE {
Michal Vasko7f1c78b2016-01-19 09:52:14 +010070 NC_DATASTORE_ERROR = 0, /**< error state of functions returning the datastore type */
71 NC_DATASTORE_CONFIG, /**< value describing that the datastore is set as config */
72 NC_DATASTORE_URL, /**< value describing that the datastore data should be given from the URL */
73 NC_DATASTORE_RUNNING, /**< base NETCONF's datastore containing the current device configuration */
74 NC_DATASTORE_STARTUP, /**< separated startup datastore as defined in Distinct Startup Capability */
75 NC_DATASTORE_CANDIDATE /**< separated working datastore as defined in Candidate Configuration Capability */
Radek Krejci695d4fa2015-10-22 13:23:54 +020076} NC_DATASTORE;
77
Michal Vasko1a38c862016-01-15 15:50:07 +010078/**
79 * @brief Enumeration of NETCONF with-defaults capability modes.
80 */
Michal Vasko7bcb48e2016-01-15 10:28:54 +010081typedef enum NC_WITHDEFAULTS_MODE {
Michal Vasko1a38c862016-01-15 15:50:07 +010082 NC_WD_UNKNOWN = 0, /**< invalid mode */
83 NC_WD_ALL = 0x01, /**< report-all mode */
84 NC_WD_ALL_TAG = 0x02, /**< report-all-tagged mode */
85 NC_WD_TRIM = 0x04, /**< trim mode */
86 NC_WD_EXPLICIT = 0x08 /**< explicit mode */
Michal Vasko7bcb48e2016-01-15 10:28:54 +010087} NC_WD_MODE;
88
Michal Vasko1a38c862016-01-15 15:50:07 +010089/**
90 * @brief Enumeration of NETCONF (both server and client) rpc-reply types.
91 */
Michal Vasko495c9462016-01-15 11:27:43 +010092typedef enum NC_REPLY {
Michal Vasko1a38c862016-01-15 15:50:07 +010093 NC_RPL_OK, /**< OK rpc-reply */
94 NC_RPL_DATA, /**< DATA rpc-reply */
95 NC_RPL_ERROR, /**< ERROR rpc-reply */
96 NC_RPL_NOTIF /**< notification (client-only) */
Michal Vasko495c9462016-01-15 11:27:43 +010097} NC_RPL;
98
Radek Krejci695d4fa2015-10-22 13:23:54 +020099/**
Michal Vasko1a38c862016-01-15 15:50:07 +0100100 * @brief Enumeration of function parameter treatments.
101 */
102typedef enum NC_PARAMTYPE {
103 NC_PARAMTYPE_CONST, /**< use the parameter directly, do not free */
104 NC_PARAMTYPE_FREE, /**< use the parameter directly, free afterwards */
105 NC_PARAMTYPE_DUP_AND_FREE /**< make a copy of the argument, free afterwards */
106} NC_PARAMTYPE;
107
Radek Krejci53691be2016-02-22 13:58:37 +0100108#if defined(NC_ENABLED_SSH) || defined(NC_ENABLED_TLS)
Michal Vasko5e228792016-02-03 15:30:24 +0100109
110/**
111 * @brief Free all the dynamically allocated thread-specific libssl/libcrypto
112 * resources.
113 *
Michal Vaskoa7b8ca52016-03-01 12:09:29 +0100114 * This function should be called only if init was called. Call it in every
Michal Vasko8f0c0282016-02-29 10:17:14 +0100115 * thread your application creates just before the thread exits. In the last thread
116 * (usually the main one) call only nc_destroy().
Michal Vasko5e228792016-02-03 15:30:24 +0100117 */
118void nc_thread_destroy(void);
119
Michal Vasko5e228792016-02-03 15:30:24 +0100120/**
Michal Vasko5e228792016-02-03 15:30:24 +0100121 * @brief Free all the dynamically allocated libssh and libssl/libcrypto resources.
122 *
123 * No libnetconf2 SSH/TLS, libssh, and libcrypto/libssl function should be
124 * called afterwards.
125 */
Michal Vasko8f0c0282016-02-29 10:17:14 +0100126void nc_destroy(void);
Michal Vasko5e228792016-02-03 15:30:24 +0100127
Michal Vasko8f0c0282016-02-29 10:17:14 +0100128#endif /* NC_ENABLED_SSH || NC_ENABLED_TLS */
Michal Vasko58f31552016-01-19 12:39:15 +0100129
Michal Vasko1a38c862016-01-15 15:50:07 +0100130/**
Radek Krejcid0d19522015-09-02 13:49:25 +0200131 * @brief Transform given time_t (seconds since the epoch) into the RFC 3339 format
132 * accepted by NETCONF functions.
133 *
134 * This is a reverse function to nc_datetime2time().
135 *
136 * @param[in] time time_t type value returned e.g. by time().
137 * @param[in] tz timezone name for the result. See tzselect(1) for list of
138 * correct values. If not specified (NULL), the result is provided in UTC (Zulu).
139 * @return Printed string in a format compliant to RFC 3339. It is up to the
140 * caller to free the returned string.
141 */
142char* nc_time2datetime(time_t time, const char* tz);
143
144/**
145 * @brief Transform given string in RFC 3339 compliant format to the time_t
146 * (seconds since the epoch) accepted by most Linux functions.
147 *
148 * This is a reverse function to nc_time2datetime().
149 *
150 * @param[in] datetime Time structure returned e.g. by localtime().
151 * @return time_t value of the given string.
152 */
153time_t nc_datetime2time(const char* datetime);
154
Radek Krejcid0d19522015-09-02 13:49:25 +0200155#ifdef __cplusplus
156}
157#endif
158
159#endif /* NC_NETCONF_H_ */