Radek Krejci | d0d1952 | 2015-09-02 13:49:25 +0200 | [diff] [blame] | 1 | /** |
| 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 Krejci | 9b81f5b | 2016-02-24 13:14:49 +0100 | [diff] [blame] | 8 | * 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 Vasko | afd416b | 2016-02-25 14:51:46 +0100 | [diff] [blame] | 11 | * |
Radek Krejci | 9b81f5b | 2016-02-24 13:14:49 +0100 | [diff] [blame] | 12 | * https://opensource.org/licenses/BSD-3-Clause |
Radek Krejci | d0d1952 | 2015-09-02 13:49:25 +0200 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | #ifndef NC_NETCONF_H_ |
| 16 | #define NC_NETCONF_H_ |
| 17 | |
Radek Krejci | d0d1952 | 2015-09-02 13:49:25 +0200 | [diff] [blame] | 18 | #ifdef __cplusplus |
| 19 | extern "C" { |
| 20 | #endif |
| 21 | |
Michal Vasko | c09730e | 2019-01-17 10:07:26 +0100 | [diff] [blame] | 22 | #include <time.h> |
| 23 | |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 24 | /** |
| 25 | * @addtogroup misc |
| 26 | * @{ |
| 27 | */ |
| 28 | |
| 29 | /** @brief Base NETCONF namespace */ |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 30 | #define NC_NS_BASE "urn:ietf:params:xml:ns:netconf:base:1.0" |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 31 | /** @brief Notifications namespace */ |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 32 | #define NC_NS_NOTIF "urn:ietf:params:xml:ns:netconf:notification:1.0" |
| 33 | |
Radek Krejci | ac6d347 | 2015-10-22 15:47:18 +0200 | [diff] [blame] | 34 | /** @brief Default NETCONF over SSH port */ |
Michal Vasko | 38a7c6c | 2015-12-04 12:29:20 +0100 | [diff] [blame] | 35 | #define NC_PORT_SSH 830 |
| 36 | /** @brief Default NETCONF over SSH Call Home port */ |
Michal Vasko | 3b09029 | 2017-02-03 11:43:47 +0100 | [diff] [blame] | 37 | #define NC_PORT_CH_SSH 4334 |
Michal Vasko | 38a7c6c | 2015-12-04 12:29:20 +0100 | [diff] [blame] | 38 | |
Radek Krejci | ac6d347 | 2015-10-22 15:47:18 +0200 | [diff] [blame] | 39 | /** @brief Default NETCONF over TLS port */ |
Michal Vasko | 38a7c6c | 2015-12-04 12:29:20 +0100 | [diff] [blame] | 40 | #define NC_PORT_TLS 6513 |
| 41 | /** @brief Default NETCONF over TLS Call Home port */ |
Michal Vasko | 3b09029 | 2017-02-03 11:43:47 +0100 | [diff] [blame] | 42 | #define NC_PORT_CH_TLS 4335 |
Radek Krejci | ac6d347 | 2015-10-22 15:47:18 +0200 | [diff] [blame] | 43 | |
Radek Krejci | d0d1952 | 2015-09-02 13:49:25 +0200 | [diff] [blame] | 44 | /** |
Michal Vasko | 3a889fd | 2016-09-30 12:16:37 +0200 | [diff] [blame] | 45 | * @brief Set RPC callback to a schema node. |
| 46 | * |
Michal Vasko | 49eb3f4 | 2021-05-19 10:20:57 +0200 | [diff] [blame] | 47 | * @param[in] node const struct lysc_node *node |
Michal Vasko | 3a889fd | 2016-09-30 12:16:37 +0200 | [diff] [blame] | 48 | * @param[in] cb nc_rpc_clb cb |
| 49 | */ |
Michal Vasko | 49eb3f4 | 2021-05-19 10:20:57 +0200 | [diff] [blame] | 50 | #define nc_set_rpc_callback(node, cb) (node->priv = cb) |
Michal Vasko | 3a889fd | 2016-09-30 12:16:37 +0200 | [diff] [blame] | 51 | |
| 52 | /** |
Radek Krejci | d0d1952 | 2015-09-02 13:49:25 +0200 | [diff] [blame] | 53 | * @brief Enumeration of reasons of the NETCONF session termination as defined in RFC 6470. |
| 54 | */ |
| 55 | typedef enum NC_SESSION_TERM_REASON { |
Radek Krejci | 465308c | 2017-05-22 14:49:10 +0200 | [diff] [blame] | 56 | NC_SESSION_TERM_ERR = -1, /**< error return code for function getting the session termination reason */ |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 57 | NC_SESSION_TERM_NONE = 0, /**< session still running */ |
| 58 | NC_SESSION_TERM_CLOSED, /**< closed by client in a normal fashion */ |
| 59 | NC_SESSION_TERM_KILLED, /**< session was terminated by \<kill-session\> operation */ |
| 60 | NC_SESSION_TERM_DROPPED, /**< transport layer connection was unexpectedly closed */ |
| 61 | NC_SESSION_TERM_TIMEOUT, /**< terminated because of inactivity */ |
| 62 | NC_SESSION_TERM_BADHELLO, /**< \<hello\> message was invalid */ |
| 63 | NC_SESSION_TERM_OTHER /**< terminated for some other reason */ |
Radek Krejci | d0d1952 | 2015-09-02 13:49:25 +0200 | [diff] [blame] | 64 | } NC_SESSION_TERM_REASON; |
| 65 | |
| 66 | /** |
Radek Krejci | 4339024 | 2015-10-08 15:34:04 +0200 | [diff] [blame] | 67 | * @brief Enumeration of NETCONF message types. |
| 68 | */ |
| 69 | typedef enum NC_MSG_TYPE { |
Michal Vasko | 71ba2da | 2016-05-04 10:53:16 +0200 | [diff] [blame] | 70 | NC_MSG_ERROR, /**< error return value */ |
| 71 | NC_MSG_WOULDBLOCK, /**< timeout return value */ |
| 72 | NC_MSG_NONE, /**< no message at input or message was processed internally */ |
| 73 | NC_MSG_HELLO, /**< \<hello\> message */ |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 74 | NC_MSG_BAD_HELLO, /**< \<hello\> message parsing failed */ |
Michal Vasko | 71ba2da | 2016-05-04 10:53:16 +0200 | [diff] [blame] | 75 | NC_MSG_RPC, /**< \<rpc\> message */ |
| 76 | NC_MSG_REPLY, /**< \<rpc-reply\> message */ |
| 77 | NC_MSG_REPLY_ERR_MSGID, /**< \<rpc-reply\> message with missing or wrong message-id attribute value */ |
| 78 | NC_MSG_NOTIF /**< \<notification\> message */ |
Radek Krejci | 4339024 | 2015-10-08 15:34:04 +0200 | [diff] [blame] | 79 | } NC_MSG_TYPE; |
| 80 | |
| 81 | /** |
Michal Vasko | 8fe604c | 2020-02-10 15:25:04 +0100 | [diff] [blame] | 82 | * @brief Messages of NETCONF message type enum. |
| 83 | */ |
| 84 | extern const char *nc_msgtype2str[]; |
| 85 | |
| 86 | /** |
Radek Krejci | 695d4fa | 2015-10-22 13:23:54 +0200 | [diff] [blame] | 87 | * @brief Enumeration of the supported types of datastores defined by NETCONF |
| 88 | */ |
| 89 | typedef enum NC_DATASTORE_TYPE { |
Michal Vasko | 7f1c78b | 2016-01-19 09:52:14 +0100 | [diff] [blame] | 90 | NC_DATASTORE_ERROR = 0, /**< error state of functions returning the datastore type */ |
| 91 | NC_DATASTORE_CONFIG, /**< value describing that the datastore is set as config */ |
| 92 | NC_DATASTORE_URL, /**< value describing that the datastore data should be given from the URL */ |
| 93 | NC_DATASTORE_RUNNING, /**< base NETCONF's datastore containing the current device configuration */ |
| 94 | NC_DATASTORE_STARTUP, /**< separated startup datastore as defined in Distinct Startup Capability */ |
| 95 | NC_DATASTORE_CANDIDATE /**< separated working datastore as defined in Candidate Configuration Capability */ |
Radek Krejci | 695d4fa | 2015-10-22 13:23:54 +0200 | [diff] [blame] | 96 | } NC_DATASTORE; |
| 97 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 98 | /** |
| 99 | * @brief Enumeration of NETCONF with-defaults capability modes. |
| 100 | */ |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 101 | typedef enum NC_WITHDEFAULTS_MODE { |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 102 | NC_WD_UNKNOWN = 0, /**< invalid mode */ |
Radek Krejci | 36dfdb3 | 2016-09-01 16:56:35 +0200 | [diff] [blame] | 103 | NC_WD_ALL, /**< report-all mode */ |
| 104 | NC_WD_ALL_TAG, /**< report-all-tagged mode */ |
| 105 | NC_WD_TRIM, /**< trim mode */ |
| 106 | NC_WD_EXPLICIT /**< explicit mode */ |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 107 | } NC_WD_MODE; |
| 108 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 109 | /** |
| 110 | * @brief Enumeration of NETCONF (both server and client) rpc-reply types. |
| 111 | */ |
Michal Vasko | 495c946 | 2016-01-15 11:27:43 +0100 | [diff] [blame] | 112 | typedef enum NC_REPLY { |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 113 | NC_RPL_OK, /**< OK rpc-reply */ |
| 114 | NC_RPL_DATA, /**< DATA rpc-reply */ |
| 115 | NC_RPL_ERROR, /**< ERROR rpc-reply */ |
| 116 | NC_RPL_NOTIF /**< notification (client-only) */ |
Michal Vasko | 495c946 | 2016-01-15 11:27:43 +0100 | [diff] [blame] | 117 | } NC_RPL; |
| 118 | |
Radek Krejci | 695d4fa | 2015-10-22 13:23:54 +0200 | [diff] [blame] | 119 | /** |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 120 | * @brief Enumeration of function parameter treatments. |
| 121 | */ |
| 122 | typedef enum NC_PARAMTYPE { |
| 123 | NC_PARAMTYPE_CONST, /**< use the parameter directly, do not free */ |
| 124 | NC_PARAMTYPE_FREE, /**< use the parameter directly, free afterwards */ |
| 125 | NC_PARAMTYPE_DUP_AND_FREE /**< make a copy of the argument, free afterwards */ |
| 126 | } NC_PARAMTYPE; |
| 127 | |
Michal Vasko | 49eb3f4 | 2021-05-19 10:20:57 +0200 | [diff] [blame] | 128 | /** @} Miscellaneous */ |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 129 | |
Radek Krejci | d0d1952 | 2015-09-02 13:49:25 +0200 | [diff] [blame] | 130 | #ifdef __cplusplus |
| 131 | } |
| 132 | #endif |
| 133 | |
| 134 | #endif /* NC_NETCONF_H_ */ |