blob: 62349c853d86cae6c6e82da20293c06dd375b7f0 [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 Vasko0190bc32016-03-02 15:47:49 +010037/** @brief Microseconds after which tasks are repeated until the full timeout elapses.
38 * A second (1000 000) should be divisible by this number without remain.
39 */
40#define NC_TIMEOUT_STEP 20
Michal Vasko086311b2016-01-08 09:53:11 +010041
Radek Krejcid0d19522015-09-02 13:49:25 +020042/**
43 * @brief Enumeration of reasons of the NETCONF session termination as defined in RFC 6470.
44 */
45typedef enum NC_SESSION_TERM_REASON {
Michal Vasko428087d2016-01-14 16:04:28 +010046 NC_SESSION_TERM_NONE = 0, /**< session still running */
47 NC_SESSION_TERM_CLOSED, /**< closed by client in a normal fashion */
48 NC_SESSION_TERM_KILLED, /**< session was terminated by \<kill-session\> operation */
49 NC_SESSION_TERM_DROPPED, /**< transport layer connection was unexpectedly closed */
50 NC_SESSION_TERM_TIMEOUT, /**< terminated because of inactivity */
51 NC_SESSION_TERM_BADHELLO, /**< \<hello\> message was invalid */
52 NC_SESSION_TERM_OTHER /**< terminated for some other reason */
Radek Krejcid0d19522015-09-02 13:49:25 +020053} NC_SESSION_TERM_REASON;
54
55/**
Radek Krejci43390242015-10-08 15:34:04 +020056 * @brief Enumeration of NETCONF message types.
57 */
58typedef enum NC_MSG_TYPE {
59 NC_MSG_ERROR, /**< error return value */
60 NC_MSG_WOULDBLOCK, /**< timeout return value */
61 NC_MSG_NONE, /**< no message at input or message was processed internally */
62 NC_MSG_HELLO, /**< \<hello\> message */
63 NC_MSG_RPC, /**< \<rpc\> message */
64 NC_MSG_REPLY, /**< \<rpc-reply\> message */
Radek Krejci5686ff72015-10-09 13:33:56 +020065 NC_MSG_NOTIF /**< \<notification\> message */
Radek Krejci43390242015-10-08 15:34:04 +020066} NC_MSG_TYPE;
67
68/**
Radek Krejci695d4fa2015-10-22 13:23:54 +020069 * @brief Enumeration of the supported types of datastores defined by NETCONF
70 */
71typedef enum NC_DATASTORE_TYPE {
Michal Vasko7f1c78b2016-01-19 09:52:14 +010072 NC_DATASTORE_ERROR = 0, /**< error state of functions returning the datastore type */
73 NC_DATASTORE_CONFIG, /**< value describing that the datastore is set as config */
74 NC_DATASTORE_URL, /**< value describing that the datastore data should be given from the URL */
75 NC_DATASTORE_RUNNING, /**< base NETCONF's datastore containing the current device configuration */
76 NC_DATASTORE_STARTUP, /**< separated startup datastore as defined in Distinct Startup Capability */
77 NC_DATASTORE_CANDIDATE /**< separated working datastore as defined in Candidate Configuration Capability */
Radek Krejci695d4fa2015-10-22 13:23:54 +020078} NC_DATASTORE;
79
Michal Vasko1a38c862016-01-15 15:50:07 +010080/**
81 * @brief Enumeration of NETCONF with-defaults capability modes.
82 */
Michal Vasko7bcb48e2016-01-15 10:28:54 +010083typedef enum NC_WITHDEFAULTS_MODE {
Michal Vasko1a38c862016-01-15 15:50:07 +010084 NC_WD_UNKNOWN = 0, /**< invalid mode */
85 NC_WD_ALL = 0x01, /**< report-all mode */
86 NC_WD_ALL_TAG = 0x02, /**< report-all-tagged mode */
87 NC_WD_TRIM = 0x04, /**< trim mode */
88 NC_WD_EXPLICIT = 0x08 /**< explicit mode */
Michal Vasko7bcb48e2016-01-15 10:28:54 +010089} NC_WD_MODE;
90
Michal Vasko1a38c862016-01-15 15:50:07 +010091/**
92 * @brief Enumeration of NETCONF (both server and client) rpc-reply types.
93 */
Michal Vasko495c9462016-01-15 11:27:43 +010094typedef enum NC_REPLY {
Michal Vasko1a38c862016-01-15 15:50:07 +010095 NC_RPL_OK, /**< OK rpc-reply */
96 NC_RPL_DATA, /**< DATA rpc-reply */
97 NC_RPL_ERROR, /**< ERROR rpc-reply */
98 NC_RPL_NOTIF /**< notification (client-only) */
Michal Vasko495c9462016-01-15 11:27:43 +010099} NC_RPL;
100
Radek Krejci695d4fa2015-10-22 13:23:54 +0200101/**
Michal Vasko1a38c862016-01-15 15:50:07 +0100102 * @brief Enumeration of function parameter treatments.
103 */
104typedef enum NC_PARAMTYPE {
105 NC_PARAMTYPE_CONST, /**< use the parameter directly, do not free */
106 NC_PARAMTYPE_FREE, /**< use the parameter directly, free afterwards */
107 NC_PARAMTYPE_DUP_AND_FREE /**< make a copy of the argument, free afterwards */
108} NC_PARAMTYPE;
109
Radek Krejci53691be2016-02-22 13:58:37 +0100110#if defined(NC_ENABLED_SSH) || defined(NC_ENABLED_TLS)
Michal Vasko5e228792016-02-03 15:30:24 +0100111
112/**
113 * @brief Free all the dynamically allocated thread-specific libssl/libcrypto
114 * resources.
115 *
Michal Vaskoa7b8ca52016-03-01 12:09:29 +0100116 * This function should be called only if init was called. Call it in every
Michal Vasko8f0c0282016-02-29 10:17:14 +0100117 * thread your application creates just before the thread exits. In the last thread
118 * (usually the main one) call only nc_destroy().
Michal Vasko5e228792016-02-03 15:30:24 +0100119 */
120void nc_thread_destroy(void);
121
Michal Vasko8f0c0282016-02-29 10:17:14 +0100122#endif /* NC_ENABLED_SSH || NC_ENABLED_TLS */
Michal Vasko58f31552016-01-19 12:39:15 +0100123
Michal Vasko1a38c862016-01-15 15:50:07 +0100124/**
Radek Krejcid0d19522015-09-02 13:49:25 +0200125 * @brief Transform given time_t (seconds since the epoch) into the RFC 3339 format
126 * accepted by NETCONF functions.
127 *
128 * This is a reverse function to nc_datetime2time().
129 *
130 * @param[in] time time_t type value returned e.g. by time().
131 * @param[in] tz timezone name for the result. See tzselect(1) for list of
132 * correct values. If not specified (NULL), the result is provided in UTC (Zulu).
133 * @return Printed string in a format compliant to RFC 3339. It is up to the
134 * caller to free the returned string.
135 */
136char* nc_time2datetime(time_t time, const char* tz);
137
138/**
139 * @brief Transform given string in RFC 3339 compliant format to the time_t
140 * (seconds since the epoch) accepted by most Linux functions.
141 *
142 * This is a reverse function to nc_time2datetime().
143 *
144 * @param[in] datetime Time structure returned e.g. by localtime().
145 * @return time_t value of the given string.
146 */
147time_t nc_datetime2time(const char* datetime);
148
Radek Krejcid0d19522015-09-02 13:49:25 +0200149#ifdef __cplusplus
150}
151#endif
152
153#endif /* NC_NETCONF_H_ */