blob: 201dc56ad02914802857b518d3266c86cdbd8b9e [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 {
Michal Vasko71ba2da2016-05-04 10:53:16 +020059 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 */
65 NC_MSG_REPLY_ERR_MSGID, /**< \<rpc-reply\> message with missing or wrong message-id attribute value */
66 NC_MSG_NOTIF /**< \<notification\> message */
Radek Krejci43390242015-10-08 15:34:04 +020067} NC_MSG_TYPE;
68
69/**
Radek Krejci695d4fa2015-10-22 13:23:54 +020070 * @brief Enumeration of the supported types of datastores defined by NETCONF
71 */
72typedef enum NC_DATASTORE_TYPE {
Michal Vasko7f1c78b2016-01-19 09:52:14 +010073 NC_DATASTORE_ERROR = 0, /**< error state of functions returning the datastore type */
74 NC_DATASTORE_CONFIG, /**< value describing that the datastore is set as config */
75 NC_DATASTORE_URL, /**< value describing that the datastore data should be given from the URL */
76 NC_DATASTORE_RUNNING, /**< base NETCONF's datastore containing the current device configuration */
77 NC_DATASTORE_STARTUP, /**< separated startup datastore as defined in Distinct Startup Capability */
78 NC_DATASTORE_CANDIDATE /**< separated working datastore as defined in Candidate Configuration Capability */
Radek Krejci695d4fa2015-10-22 13:23:54 +020079} NC_DATASTORE;
80
Michal Vasko1a38c862016-01-15 15:50:07 +010081/**
82 * @brief Enumeration of NETCONF with-defaults capability modes.
83 */
Michal Vasko7bcb48e2016-01-15 10:28:54 +010084typedef enum NC_WITHDEFAULTS_MODE {
Michal Vasko1a38c862016-01-15 15:50:07 +010085 NC_WD_UNKNOWN = 0, /**< invalid mode */
86 NC_WD_ALL = 0x01, /**< report-all mode */
87 NC_WD_ALL_TAG = 0x02, /**< report-all-tagged mode */
88 NC_WD_TRIM = 0x04, /**< trim mode */
89 NC_WD_EXPLICIT = 0x08 /**< explicit mode */
Michal Vasko7bcb48e2016-01-15 10:28:54 +010090} NC_WD_MODE;
91
Michal Vasko1a38c862016-01-15 15:50:07 +010092/**
93 * @brief Enumeration of NETCONF (both server and client) rpc-reply types.
94 */
Michal Vasko495c9462016-01-15 11:27:43 +010095typedef enum NC_REPLY {
Michal Vasko1a38c862016-01-15 15:50:07 +010096 NC_RPL_OK, /**< OK rpc-reply */
97 NC_RPL_DATA, /**< DATA rpc-reply */
98 NC_RPL_ERROR, /**< ERROR rpc-reply */
99 NC_RPL_NOTIF /**< notification (client-only) */
Michal Vasko495c9462016-01-15 11:27:43 +0100100} NC_RPL;
101
Radek Krejci695d4fa2015-10-22 13:23:54 +0200102/**
Michal Vasko1a38c862016-01-15 15:50:07 +0100103 * @brief Enumeration of function parameter treatments.
104 */
105typedef enum NC_PARAMTYPE {
106 NC_PARAMTYPE_CONST, /**< use the parameter directly, do not free */
107 NC_PARAMTYPE_FREE, /**< use the parameter directly, free afterwards */
108 NC_PARAMTYPE_DUP_AND_FREE /**< make a copy of the argument, free afterwards */
109} NC_PARAMTYPE;
110
Radek Krejci53691be2016-02-22 13:58:37 +0100111#if defined(NC_ENABLED_SSH) || defined(NC_ENABLED_TLS)
Michal Vasko5e228792016-02-03 15:30:24 +0100112
113/**
114 * @brief Free all the dynamically allocated thread-specific libssl/libcrypto
115 * resources.
116 *
Michal Vaskoa7b8ca52016-03-01 12:09:29 +0100117 * This function should be called only if init was called. Call it in every
Michal Vasko8f0c0282016-02-29 10:17:14 +0100118 * thread your application creates just before the thread exits. In the last thread
119 * (usually the main one) call only nc_destroy().
Michal Vasko5e228792016-02-03 15:30:24 +0100120 */
121void nc_thread_destroy(void);
122
Michal Vasko8f0c0282016-02-29 10:17:14 +0100123#endif /* NC_ENABLED_SSH || NC_ENABLED_TLS */
Michal Vasko58f31552016-01-19 12:39:15 +0100124
Michal Vasko1a38c862016-01-15 15:50:07 +0100125/**
Radek Krejcid0d19522015-09-02 13:49:25 +0200126 * @brief Transform given time_t (seconds since the epoch) into the RFC 3339 format
127 * accepted by NETCONF functions.
128 *
129 * This is a reverse function to nc_datetime2time().
130 *
131 * @param[in] time time_t type value returned e.g. by time().
132 * @param[in] tz timezone name for the result. See tzselect(1) for list of
133 * correct values. If not specified (NULL), the result is provided in UTC (Zulu).
134 * @return Printed string in a format compliant to RFC 3339. It is up to the
135 * caller to free the returned string.
136 */
137char* nc_time2datetime(time_t time, const char* tz);
138
139/**
140 * @brief Transform given string in RFC 3339 compliant format to the time_t
141 * (seconds since the epoch) accepted by most Linux functions.
142 *
143 * This is a reverse function to nc_time2datetime().
144 *
145 * @param[in] datetime Time structure returned e.g. by localtime().
146 * @return time_t value of the given string.
147 */
148time_t nc_datetime2time(const char* datetime);
149
Radek Krejcid0d19522015-09-02 13:49:25 +0200150#ifdef __cplusplus
151}
152#endif
153
154#endif /* NC_NETCONF_H_ */