blob: 37212f89d1356de0990f8dbac97c0c9b28f03982 [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 */
Michal Vasko71090fc2016-05-24 16:37:28 +020063 NC_MSG_BAD_HELLO, /**< \<hello\> message parsing failed */
Michal Vasko71ba2da2016-05-04 10:53:16 +020064 NC_MSG_RPC, /**< \<rpc\> message */
65 NC_MSG_REPLY, /**< \<rpc-reply\> message */
66 NC_MSG_REPLY_ERR_MSGID, /**< \<rpc-reply\> message with missing or wrong message-id attribute value */
67 NC_MSG_NOTIF /**< \<notification\> message */
Radek Krejci43390242015-10-08 15:34:04 +020068} NC_MSG_TYPE;
69
70/**
Radek Krejci695d4fa2015-10-22 13:23:54 +020071 * @brief Enumeration of the supported types of datastores defined by NETCONF
72 */
73typedef enum NC_DATASTORE_TYPE {
Michal Vasko7f1c78b2016-01-19 09:52:14 +010074 NC_DATASTORE_ERROR = 0, /**< error state of functions returning the datastore type */
75 NC_DATASTORE_CONFIG, /**< value describing that the datastore is set as config */
76 NC_DATASTORE_URL, /**< value describing that the datastore data should be given from the URL */
77 NC_DATASTORE_RUNNING, /**< base NETCONF's datastore containing the current device configuration */
78 NC_DATASTORE_STARTUP, /**< separated startup datastore as defined in Distinct Startup Capability */
79 NC_DATASTORE_CANDIDATE /**< separated working datastore as defined in Candidate Configuration Capability */
Radek Krejci695d4fa2015-10-22 13:23:54 +020080} NC_DATASTORE;
81
Michal Vasko1a38c862016-01-15 15:50:07 +010082/**
83 * @brief Enumeration of NETCONF with-defaults capability modes.
84 */
Michal Vasko7bcb48e2016-01-15 10:28:54 +010085typedef enum NC_WITHDEFAULTS_MODE {
Michal Vasko1a38c862016-01-15 15:50:07 +010086 NC_WD_UNKNOWN = 0, /**< invalid mode */
87 NC_WD_ALL = 0x01, /**< report-all mode */
88 NC_WD_ALL_TAG = 0x02, /**< report-all-tagged mode */
89 NC_WD_TRIM = 0x04, /**< trim mode */
90 NC_WD_EXPLICIT = 0x08 /**< explicit mode */
Michal Vasko7bcb48e2016-01-15 10:28:54 +010091} NC_WD_MODE;
92
Michal Vasko1a38c862016-01-15 15:50:07 +010093/**
94 * @brief Enumeration of NETCONF (both server and client) rpc-reply types.
95 */
Michal Vasko495c9462016-01-15 11:27:43 +010096typedef enum NC_REPLY {
Michal Vasko1a38c862016-01-15 15:50:07 +010097 NC_RPL_OK, /**< OK rpc-reply */
98 NC_RPL_DATA, /**< DATA rpc-reply */
99 NC_RPL_ERROR, /**< ERROR rpc-reply */
100 NC_RPL_NOTIF /**< notification (client-only) */
Michal Vasko495c9462016-01-15 11:27:43 +0100101} NC_RPL;
102
Radek Krejci695d4fa2015-10-22 13:23:54 +0200103/**
Michal Vasko1a38c862016-01-15 15:50:07 +0100104 * @brief Enumeration of function parameter treatments.
105 */
106typedef enum NC_PARAMTYPE {
107 NC_PARAMTYPE_CONST, /**< use the parameter directly, do not free */
108 NC_PARAMTYPE_FREE, /**< use the parameter directly, free afterwards */
109 NC_PARAMTYPE_DUP_AND_FREE /**< make a copy of the argument, free afterwards */
110} NC_PARAMTYPE;
111
Radek Krejci53691be2016-02-22 13:58:37 +0100112#if defined(NC_ENABLED_SSH) || defined(NC_ENABLED_TLS)
Michal Vasko5e228792016-02-03 15:30:24 +0100113
114/**
115 * @brief Free all the dynamically allocated thread-specific libssl/libcrypto
116 * resources.
117 *
Michal Vaskoa7b8ca52016-03-01 12:09:29 +0100118 * This function should be called only if init was called. Call it in every
Michal Vasko8f0c0282016-02-29 10:17:14 +0100119 * thread your application creates just before the thread exits. In the last thread
120 * (usually the main one) call only nc_destroy().
Michal Vasko5e228792016-02-03 15:30:24 +0100121 */
122void nc_thread_destroy(void);
123
Michal Vasko8f0c0282016-02-29 10:17:14 +0100124#endif /* NC_ENABLED_SSH || NC_ENABLED_TLS */
Michal Vasko58f31552016-01-19 12:39:15 +0100125
Michal Vasko1a38c862016-01-15 15:50:07 +0100126/**
Radek Krejcid0d19522015-09-02 13:49:25 +0200127 * @brief Transform given time_t (seconds since the epoch) into the RFC 3339 format
128 * accepted by NETCONF functions.
129 *
130 * This is a reverse function to nc_datetime2time().
131 *
Michal Vasko8c1bfab2016-05-25 11:17:02 +0200132 * @param[in] time Time to convert.
133 * @param[in] tz Timezone name for the result. See tzselect(1) for list of
Radek Krejciebe263f2016-05-31 15:59:07 +0200134 * correct values. If not specified (NULL) or unknown/invalid, the result is provided in UTC (Zulu).
Michal Vasko8c1bfab2016-05-25 11:17:02 +0200135 * @param[in] buf Optional buffer to print the datetime into, should be at least 26 characters long!
136 * @return Printed string in a format compliant to RFC 3339 stored in \p buf if provided,
Radek Krejciebe263f2016-05-31 15:59:07 +0200137 * otherwise it is up to the caller to free the returned string. NULL on error.
Radek Krejcid0d19522015-09-02 13:49:25 +0200138 */
Michal Vasko8c1bfab2016-05-25 11:17:02 +0200139char* nc_time2datetime(time_t time, const char* tz, char *buf);
Radek Krejcid0d19522015-09-02 13:49:25 +0200140
141/**
142 * @brief Transform given string in RFC 3339 compliant format to the time_t
143 * (seconds since the epoch) accepted by most Linux functions.
144 *
145 * This is a reverse function to nc_time2datetime().
146 *
147 * @param[in] datetime Time structure returned e.g. by localtime().
Radek Krejciebe263f2016-05-31 15:59:07 +0200148 * @return time_t value of the given string, -1 on error.
Radek Krejcid0d19522015-09-02 13:49:25 +0200149 */
150time_t nc_datetime2time(const char* datetime);
151
Radek Krejcid0d19522015-09-02 13:49:25 +0200152#ifdef __cplusplus
153}
154#endif
155
156#endif /* NC_NETCONF_H_ */