Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 1 | /** |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 2 | * @file session_client.h |
| 3 | * @author Michal Vasko <mvasko@cesnet.cz> |
| 4 | * @brief libnetconf2 session client manipulation |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 5 | * |
Michal Vasko | 95ea9ff | 2021-11-09 12:29:14 +0100 | [diff] [blame] | 6 | * @copyright |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 7 | * Copyright (c) 2015 - 2021 CESNET, z.s.p.o. |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 8 | * |
Radek Krejci | 9b81f5b | 2016-02-24 13:14:49 +0100 | [diff] [blame] | 9 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 10 | * You may not use this file except in compliance with the License. |
| 11 | * You may obtain a copy of the License at |
Michal Vasko | afd416b | 2016-02-25 14:51:46 +0100 | [diff] [blame] | 12 | * |
Radek Krejci | 9b81f5b | 2016-02-24 13:14:49 +0100 | [diff] [blame] | 13 | * https://opensource.org/licenses/BSD-3-Clause |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 14 | */ |
| 15 | |
| 16 | #ifndef NC_SESSION_CLIENT_H_ |
| 17 | #define NC_SESSION_CLIENT_H_ |
| 18 | |
Michal Vasko | c09730e | 2019-01-17 10:07:26 +0100 | [diff] [blame] | 19 | #ifdef __cplusplus |
| 20 | extern "C" { |
| 21 | #endif |
| 22 | |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 23 | #include <libyang/libyang.h> |
| 24 | |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 25 | #ifdef NC_ENABLED_SSH |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 26 | # include <libssh/libssh.h> |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 27 | #endif |
| 28 | |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 29 | #ifdef NC_ENABLED_TLS |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 30 | # include <openssl/ssl.h> |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 31 | #endif |
| 32 | |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 33 | #include "messages_client.h" |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 34 | #include "netconf.h" |
| 35 | #include "session.h" |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 36 | |
| 37 | /** |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 38 | * @addtogroup client |
| 39 | * @{ |
| 40 | */ |
| 41 | |
| 42 | /** |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 43 | * @brief Set location where libnetconf tries to search for YANG/YIN schemas. |
| 44 | * |
Michal Vasko | 7f1c0ef | 2016-03-11 11:13:06 +0100 | [diff] [blame] | 45 | * The location is searched when connecting to a NETCONF server and building |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 46 | * YANG context for further processing of the NETCONF messages and data. |
| 47 | * |
Radek Krejci | fd5b668 | 2017-06-13 15:52:53 +0200 | [diff] [blame] | 48 | * The searchpath is also used to store schemas retreived via \<get-schema\> |
| 49 | * operation - if the schema is not found in searchpath neither via schema |
| 50 | * callback provided via nc_client_set_schema_callback() and server supports |
| 51 | * the NETCONF \<get-schema\> operation, the schema is retrieved this way and |
| 52 | * stored into the searchpath (if specified). |
| 53 | * |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 54 | * @param[in] path Directory where to search for YANG/YIN schemas. |
| 55 | * @return 0 on success, 1 on (memory allocation) failure. |
| 56 | */ |
Michal Vasko | 7f1c0ef | 2016-03-11 11:13:06 +0100 | [diff] [blame] | 57 | int nc_client_set_schema_searchpath(const char *path); |
| 58 | |
| 59 | /** |
| 60 | * @brief Get schema searchpath that was set by nc_client_set_schema_searchpath(). |
| 61 | * |
| 62 | * @return Schema searchpath directory, NULL if not set. |
| 63 | */ |
| 64 | const char *nc_client_get_schema_searchpath(void); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 65 | |
| 66 | /** |
Radek Krejci | fd5b668 | 2017-06-13 15:52:53 +0200 | [diff] [blame] | 67 | * @brief Set callback function to get missing schemas. |
| 68 | * |
| 69 | * @param[in] clb Callback responsible for returning the missing model. |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 70 | * @param[in] user_data Arbitrary data that will always be passed to the callback @p clb. |
Radek Krejci | fd5b668 | 2017-06-13 15:52:53 +0200 | [diff] [blame] | 71 | * @return 0 on success, 1 on (memory allocation) failure. |
| 72 | */ |
| 73 | int nc_client_set_schema_callback(ly_module_imp_clb clb, void *user_data); |
| 74 | |
| 75 | /** |
| 76 | * @brief Get callback function used to get missing schemas. |
| 77 | * |
| 78 | * @param[out] user_data Optionally return the private data set with the callback. |
| 79 | * Note that the caller is responsible for freeing the private data, so before |
| 80 | * changing the callback, private data used for the previous callback should be |
| 81 | * freed. |
| 82 | * @return Pointer to the set callback, NULL if no such callback was set. |
| 83 | */ |
| 84 | ly_module_imp_clb nc_client_get_schema_callback(void **user_data); |
| 85 | |
| 86 | /** |
Radek Krejci | 5cebc6b | 2017-05-26 13:24:38 +0200 | [diff] [blame] | 87 | * @brief Use the provided thread-specific client's context in the current thread. |
| 88 | * |
| 89 | * Note that from this point the context is shared with the thread from which the context was taken and any |
| 90 | * nc_client_*set* functions and functions creating connection in these threads should be protected from the |
| 91 | * concurrent execution. |
| 92 | * |
Radek Krejci | fd5b668 | 2017-06-13 15:52:53 +0200 | [diff] [blame] | 93 | * Context contains schema searchpath/callback, call home binds, TLS and SSH authentication data (username, keys, |
Radek Krejci | 5cebc6b | 2017-05-26 13:24:38 +0200 | [diff] [blame] | 94 | * various certificates and callbacks). |
| 95 | * |
| 96 | * @param[in] context Client's thread-specific context provided by nc_client_get_thread_context(). |
| 97 | */ |
| 98 | void nc_client_set_thread_context(void *context); |
| 99 | |
| 100 | /** |
| 101 | * @brief Get thread-specific client context for sharing with some other thread using |
| 102 | * nc_client_set_thread_context(). |
| 103 | * |
| 104 | * @return Pointer to the client's context of the current thread. |
| 105 | */ |
| 106 | void *nc_client_get_thread_context(void); |
| 107 | |
| 108 | /** |
Michal Vasko | a7b8ca5 | 2016-03-01 12:09:29 +0100 | [diff] [blame] | 109 | * @brief Initialize libssh and/or libssl/libcrypto for use in the client. |
| 110 | */ |
| 111 | void nc_client_init(void); |
| 112 | |
| 113 | /** |
| 114 | * @brief Destroy all libssh and/or libssl/libcrypto dynamic memory and |
Michal Vasko | df0fa45 | 2022-03-02 11:06:01 +0100 | [diff] [blame] | 115 | * the client options, for both SSH and TLS, and for Call Home too. |
Michal Vasko | b7558c5 | 2016-02-26 15:04:19 +0100 | [diff] [blame] | 116 | */ |
| 117 | void nc_client_destroy(void); |
| 118 | |
Michal Vasko | 4e6d324 | 2021-05-26 09:13:24 +0200 | [diff] [blame] | 119 | /** @} Client */ |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 120 | |
| 121 | /** |
| 122 | * @defgroup client_session Client Session |
| 123 | * @ingroup client |
| 124 | * |
| 125 | * @brief Client-side NETCONF session manipulation. |
| 126 | * @{ |
| 127 | */ |
| 128 | |
Michal Vasko | b7558c5 | 2016-02-26 15:04:19 +0100 | [diff] [blame] | 129 | /** |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 130 | * @brief Connect to the NETCONF server via proviaded input/output file descriptors. |
| 131 | * |
| 132 | * Transport layer is supposed to be already set. Function do not cover authentication |
| 133 | * or any other manipulation with the transport layer, it only establish NETCONF session |
| 134 | * by sending and processing NETCONF \<hello\> messages. |
| 135 | * |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 136 | * @param[in] fdin Input file descriptor for reading (clear) data from NETCONF server. |
| 137 | * @param[in] fdout Output file descriptor for writing (clear) data for NETCONF server. |
Michal Vasko | df0fa45 | 2022-03-02 11:06:01 +0100 | [diff] [blame] | 138 | * @param[in] ctx Optional custom context to use for the session. Disregarding whether set or not, any YANG modules |
| 139 | * not present and supported by the server are attempted to be loaded using \<get-schema\> (if supported) and/or by |
| 140 | * searching the searchpath (see ::nc_client_set_schema_searchpath()). |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 141 | * @return Created NETCONF session object or NULL in case of error. |
| 142 | */ |
| 143 | struct nc_session *nc_connect_inout(int fdin, int fdout, struct ly_ctx *ctx); |
| 144 | |
Olivier Matz | ac7fa2f | 2018-10-11 10:02:04 +0200 | [diff] [blame] | 145 | /** |
| 146 | * @brief Connect to the NETCONF server via unix socket. |
| 147 | * |
| 148 | * Connect to netconf server via an unix socket. Function do not cover authentication |
| 149 | * or any other manipulation with the transport layer, it only establish NETCONF session |
| 150 | * by sending and processing NETCONF \<hello\> messages. |
| 151 | * |
| 152 | * @param[in] address Path to the unix socket. |
Michal Vasko | df0fa45 | 2022-03-02 11:06:01 +0100 | [diff] [blame] | 153 | * @param[in] ctx Optional custom context to use for the session. Disregarding whether set or not, any YANG modules |
| 154 | * not present and supported by the server are attempted to be loaded using \<get-schema\> (if supported) and/or by |
| 155 | * searching the searchpath (see ::nc_client_set_schema_searchpath()). |
Olivier Matz | ac7fa2f | 2018-10-11 10:02:04 +0200 | [diff] [blame] | 156 | * @return Created NETCONF session object or NULL in case of error. |
| 157 | */ |
| 158 | struct nc_session *nc_connect_unix(const char *address, struct ly_ctx *ctx); |
| 159 | |
Michal Vasko | 4e6d324 | 2021-05-26 09:13:24 +0200 | [diff] [blame] | 160 | /** @} Client Session */ |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 161 | |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 162 | #ifdef NC_ENABLED_SSH |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 163 | |
| 164 | /** |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 165 | * @defgroup client_ssh Client SSH |
| 166 | * @ingroup client |
| 167 | * |
| 168 | * @brief Client-side settings for SSH connections. |
| 169 | * @{ |
| 170 | */ |
| 171 | |
| 172 | /** |
Michal Vasko | ef112d7 | 2016-02-18 13:28:25 +0100 | [diff] [blame] | 173 | * @brief Set SSH authentication hostkey check (knownhosts) callback. |
| 174 | * |
Radek Krejci | 90a84a2 | 2017-05-25 13:53:00 +0200 | [diff] [blame] | 175 | * Repetitive calling causes replacing of the previous callback and its private data. Caller is responsible for |
| 176 | * freeing the private data when necessary (the private data can be obtained by |
| 177 | * nc_client_ssh_get_auth_hostkey_check_clb()). |
| 178 | * |
Michal Vasko | ef112d7 | 2016-02-18 13:28:25 +0100 | [diff] [blame] | 179 | * @param[in] auth_hostkey_check Function to call, returns 0 on success, non-zero in error. |
| 180 | * If NULL, the default callback is set. |
Radek Krejci | 90a84a2 | 2017-05-25 13:53:00 +0200 | [diff] [blame] | 181 | * @param[in] priv Optional private data to be passed to the callback function. |
Michal Vasko | ef112d7 | 2016-02-18 13:28:25 +0100 | [diff] [blame] | 182 | */ |
Radek Krejci | 90a84a2 | 2017-05-25 13:53:00 +0200 | [diff] [blame] | 183 | void nc_client_ssh_set_auth_hostkey_check_clb(int (*auth_hostkey_check)(const char *hostname, ssh_session session, void *priv), |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 184 | void *priv); |
Radek Krejci | 90a84a2 | 2017-05-25 13:53:00 +0200 | [diff] [blame] | 185 | |
| 186 | /** |
| 187 | * @brief Get currently set SSH authentication hostkey check (knownhosts) callback and its private data previously set |
| 188 | * by nc_client_ssh_set_auth_hostkey_check_clb(). |
| 189 | * |
| 190 | * @param[out] auth_hostkey_check Currently set callback, NULL in case of the default callback. |
| 191 | * @param[out] priv Currently set (optional) private data to be passed to the callback function. |
| 192 | */ |
| 193 | void nc_client_ssh_get_auth_hostkey_check_clb(int (**auth_hostkey_check)(const char *hostname, ssh_session session, void *priv), |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 194 | void **priv); |
Michal Vasko | ef112d7 | 2016-02-18 13:28:25 +0100 | [diff] [blame] | 195 | |
| 196 | /** |
Michal Vasko | 30e2c87 | 2016-02-18 10:03:21 +0100 | [diff] [blame] | 197 | * @brief Set SSH password authentication callback. |
| 198 | * |
Radek Krejci | 90a84a2 | 2017-05-25 13:53:00 +0200 | [diff] [blame] | 199 | * Repetitive calling causes replacing of the previous callback and its private data. Caller is responsible for |
| 200 | * freeing the private data when necessary (the private data can be obtained by |
| 201 | * nc_client_ssh_get_auth_password_clb()). |
| 202 | * |
Michal Vasko | fdfd9dd | 2016-02-29 10:18:46 +0100 | [diff] [blame] | 203 | * @param[in] auth_password Function to call, returns the password for username\@hostname. |
Michal Vasko | 30e2c87 | 2016-02-18 10:03:21 +0100 | [diff] [blame] | 204 | * If NULL, the default callback is set. |
Radek Krejci | 90a84a2 | 2017-05-25 13:53:00 +0200 | [diff] [blame] | 205 | * @param[in] priv Optional private data to be passed to the callback function. |
Michal Vasko | 30e2c87 | 2016-02-18 10:03:21 +0100 | [diff] [blame] | 206 | */ |
Radek Krejci | 90a84a2 | 2017-05-25 13:53:00 +0200 | [diff] [blame] | 207 | void nc_client_ssh_set_auth_password_clb(char *(*auth_password)(const char *username, const char *hostname, void *priv), |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 208 | void *priv); |
Radek Krejci | 90a84a2 | 2017-05-25 13:53:00 +0200 | [diff] [blame] | 209 | |
| 210 | /** |
| 211 | * @brief Get currently set SSH password authentication callback and its private data previously set |
| 212 | * by nc_client_ssh_set_auth_password_clb(). |
| 213 | * |
| 214 | * @param[out] auth_password Currently set callback, NULL in case of the default callback. |
| 215 | * @param[out] priv Currently set (optional) private data to be passed to the callback function. |
| 216 | */ |
| 217 | void nc_client_ssh_get_auth_password_clb(char *(**auth_password)(const char *username, const char *hostname, void *priv), |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 218 | void **priv); |
Michal Vasko | 30e2c87 | 2016-02-18 10:03:21 +0100 | [diff] [blame] | 219 | |
| 220 | /** |
| 221 | * @brief Set SSH interactive authentication callback. |
| 222 | * |
Radek Krejci | 90a84a2 | 2017-05-25 13:53:00 +0200 | [diff] [blame] | 223 | * Repetitive calling causes replacing of the previous callback and its private data. Caller is responsible for |
| 224 | * freeing the private data when necessary (the private data can be obtained by |
| 225 | * nc_client_ssh_get_auth_interactive_clb()). |
| 226 | * |
Michal Vasko | 30e2c87 | 2016-02-18 10:03:21 +0100 | [diff] [blame] | 227 | * @param[in] auth_interactive Function to call for every question, returns the answer for |
| 228 | * authentication name with instruction and echoing prompt. |
| 229 | * If NULL, the default callback is set. |
Radek Krejci | 90a84a2 | 2017-05-25 13:53:00 +0200 | [diff] [blame] | 230 | * @param[in] priv Optional private data to be passed to the callback function. |
Michal Vasko | 30e2c87 | 2016-02-18 10:03:21 +0100 | [diff] [blame] | 231 | */ |
| 232 | void nc_client_ssh_set_auth_interactive_clb(char *(*auth_interactive)(const char *auth_name, const char *instruction, |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 233 | const char *prompt, int echo, void *priv), |
| 234 | void *priv); |
Radek Krejci | 90a84a2 | 2017-05-25 13:53:00 +0200 | [diff] [blame] | 235 | |
| 236 | /** |
| 237 | * @brief Get currently set SSH interactive authentication callback and its private data previously set |
| 238 | * by nc_client_ssh_set_auth_interactive_clb(). |
| 239 | * |
| 240 | * @param[out] auth_interactive Currently set callback, NULL in case of the default callback. |
| 241 | * @param[out] priv Currently set (optional) private data to be passed to the callback function. |
| 242 | */ |
| 243 | void nc_client_ssh_get_auth_interactive_clb(char *(**auth_interactive)(const char *auth_name, const char *instruction, |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 244 | const char *prompt, int echo, void *priv), |
| 245 | void **priv); |
Michal Vasko | 30e2c87 | 2016-02-18 10:03:21 +0100 | [diff] [blame] | 246 | |
| 247 | /** |
| 248 | * @brief Set SSH publickey authentication encrypted private key passphrase callback. |
| 249 | * |
Radek Krejci | 90a84a2 | 2017-05-25 13:53:00 +0200 | [diff] [blame] | 250 | * Repetitive calling causes replacing of the previous callback and its private data. Caller is responsible for |
| 251 | * freeing the private data when necessary (the private data can be obtained by |
| 252 | * nc_client_ssh_get_auth_privkey_passphrase_clb()). |
| 253 | * |
Michal Vasko | 30e2c87 | 2016-02-18 10:03:21 +0100 | [diff] [blame] | 254 | * @param[in] auth_privkey_passphrase Function to call for every question, returns |
| 255 | * the passphrase for the specific private key. |
Radek Krejci | 90a84a2 | 2017-05-25 13:53:00 +0200 | [diff] [blame] | 256 | * @param[in] priv Optional private data to be passed to the callback function. |
Michal Vasko | 30e2c87 | 2016-02-18 10:03:21 +0100 | [diff] [blame] | 257 | */ |
Radek Krejci | 90a84a2 | 2017-05-25 13:53:00 +0200 | [diff] [blame] | 258 | void nc_client_ssh_set_auth_privkey_passphrase_clb(char *(*auth_privkey_passphrase)(const char *privkey_path, void *priv), |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 259 | void *priv); |
Radek Krejci | 90a84a2 | 2017-05-25 13:53:00 +0200 | [diff] [blame] | 260 | |
| 261 | /** |
| 262 | * @brief Get currently set SSH publickey authentication encrypted private key passphrase callback and its private data |
| 263 | * previously set by nc_client_ssh_set_auth_privkey_passphrase_clb(). |
| 264 | * |
| 265 | * @param[out] auth_privkey_passphrase Currently set callback, NULL in case of the default callback. |
| 266 | * @param[out] priv Currently set (optional) private data to be passed to the callback function. |
| 267 | */ |
| 268 | void nc_client_ssh_get_auth_privkey_passphrase_clb(char *(**auth_privkey_passphrase)(const char *privkey_path, void *priv), |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 269 | void **priv); |
Michal Vasko | 30e2c87 | 2016-02-18 10:03:21 +0100 | [diff] [blame] | 270 | |
| 271 | /** |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 272 | * @brief Add an SSH public and private key pair to be used for client authentication. |
| 273 | * |
| 274 | * Private key can be encrypted, the passphrase will be asked for before using it. |
| 275 | * |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 276 | * @param[in] pub_key Path to the public key. |
| 277 | * @param[in] priv_key Path to the private key. |
Michal Vasko | f0537d8 | 2016-01-29 14:42:38 +0100 | [diff] [blame] | 278 | * @return 0 on success, -1 on error. |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 279 | */ |
| 280 | int nc_client_ssh_add_keypair(const char *pub_key, const char *priv_key); |
| 281 | |
| 282 | /** |
| 283 | * @brief Remove an SSH public and private key pair that was used for client authentication. |
| 284 | * |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 285 | * @param[in] idx Index of the keypair starting with 0. |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 286 | * @return 0 on success, -1 on error. |
| 287 | */ |
| 288 | int nc_client_ssh_del_keypair(int idx); |
| 289 | |
| 290 | /** |
| 291 | * @brief Get the number of public an private key pairs set to be used for client authentication. |
| 292 | * |
| 293 | * @return Keypair count. |
| 294 | */ |
| 295 | int nc_client_ssh_get_keypair_count(void); |
| 296 | |
| 297 | /** |
| 298 | * @brief Get a specific keypair set to be used for client authentication. |
| 299 | * |
| 300 | * @param[in] idx Index of the specific keypair. |
| 301 | * @param[out] pub_key Path to the public key. |
| 302 | * @param[out] priv_key Path to the private key. |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 303 | * @return 0 on success, -1 on error. |
| 304 | */ |
| 305 | int nc_client_ssh_get_keypair(int idx, const char **pub_key, const char **priv_key); |
| 306 | |
| 307 | /** |
| 308 | * @brief Set SSH authentication method preference. |
| 309 | * |
Radek Krejci | 62aa064 | 2017-05-25 16:33:49 +0200 | [diff] [blame] | 310 | * The default preference is as follows: |
| 311 | * - interactive authentication (3) |
| 312 | * - password authentication (2) |
| 313 | * - public key authentication (1) |
| 314 | * |
| 315 | * @param[in] auth_type Authentication method to modify the preference of. |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 316 | * @param[in] pref Preference of @p auth_type. Higher number increases priority, negative values disable the method. |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 317 | */ |
| 318 | void nc_client_ssh_set_auth_pref(NC_SSH_AUTH_TYPE auth_type, int16_t pref); |
| 319 | |
| 320 | /** |
| 321 | * @brief Get SSH authentication method preference. |
| 322 | * |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 323 | * @param[in] auth_type Authentication method to retrieve the prefrence of. |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 324 | * @return Preference of the @p auth_type. |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 325 | */ |
| 326 | int16_t nc_client_ssh_get_auth_pref(NC_SSH_AUTH_TYPE auth_type); |
| 327 | |
| 328 | /** |
| 329 | * @brief Set client SSH username used for authentication. |
| 330 | * |
| 331 | * @param[in] username Username to use. |
| 332 | * @return 0 on success, -1 on error. |
| 333 | */ |
| 334 | int nc_client_ssh_set_username(const char *username); |
| 335 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 336 | /** |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 337 | * @brief Get client SSH username used for authentication. |
| 338 | * |
| 339 | * @return Username used. |
| 340 | */ |
| 341 | const char *nc_client_ssh_get_username(void); |
| 342 | |
| 343 | /** |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 344 | * @brief Connect to the NETCONF server using SSH transport (via libssh). |
| 345 | * |
| 346 | * SSH session is created with default options. If the caller needs to use specific SSH session properties, |
| 347 | * they are supposed to use nc_connect_libssh(). |
| 348 | * |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 349 | * @param[in] host Hostname or address (both Ipv4 and IPv6 are accepted) of the target server. |
Michal Vasko | df0fa45 | 2022-03-02 11:06:01 +0100 | [diff] [blame] | 350 | * 'localhost' is used by default if NULL is specified. |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 351 | * @param[in] port Port number of the target server. Default value 830 is used if 0 is specified. |
Michal Vasko | df0fa45 | 2022-03-02 11:06:01 +0100 | [diff] [blame] | 352 | * @param[in] ctx Optional custom context to use for the session. Disregarding whether set or not, any YANG modules |
| 353 | * not present and supported by the server are attempted to be loaded using \<get-schema\> (if supported) and/or by |
| 354 | * searching the searchpath (see ::nc_client_set_schema_searchpath()). |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 355 | * @return Created NETCONF session object or NULL on error. |
| 356 | */ |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 357 | struct nc_session *nc_connect_ssh(const char *host, uint16_t port, struct ly_ctx *ctx); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 358 | |
| 359 | /** |
| 360 | * @brief Connect to the NETCONF server using the provided SSH (libssh) session. |
| 361 | * |
| 362 | * SSH session can have any options set, they will not be modified. If no options were set, |
| 363 | * host 'localhost', port 22, and the username detected from the EUID is used. If socket is |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 364 | * set and connected only the host and the username must be set/is detected. Or the @p ssh_session |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 365 | * can already be authenticated in which case it is used directly. |
| 366 | * |
Michal Vasko | df0fa45 | 2022-03-02 11:06:01 +0100 | [diff] [blame] | 367 | * @param[in] ssh_session libssh structure representing SSH session object. It is fully managed by the created session |
| 368 | * including freeing it. |
| 369 | * @param[in] ctx Optional custom context to use for the session. Disregarding whether set or not, any YANG modules |
| 370 | * not present and supported by the server are attempted to be loaded using \<get-schema\> (if supported) and/or by |
| 371 | * searching the searchpath (see ::nc_client_set_schema_searchpath()). |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 372 | * @return Created NETCONF session object or NULL on error. |
| 373 | */ |
| 374 | struct nc_session *nc_connect_libssh(ssh_session ssh_session, struct ly_ctx *ctx); |
| 375 | |
| 376 | /** |
| 377 | * @brief Create another NETCONF session on existing SSH session using separated SSH channel. |
| 378 | * |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 379 | * @param[in] session Existing NETCONF session. The session has to be created on SSH transport layer using libssh - |
Michal Vasko | df0fa45 | 2022-03-02 11:06:01 +0100 | [diff] [blame] | 380 | * it has to be created by nc_connect_ssh(), nc_connect_libssh() or nc_connect_ssh_channel(). |
| 381 | * @param[in] ctx Optional custom context to use for the session. Disregarding whether set or not, any YANG modules |
| 382 | * not present and supported by the server are attempted to be loaded using \<get-schema\> (if supported) and/or by |
| 383 | * searching the searchpath (see ::nc_client_set_schema_searchpath()). |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 384 | * @return Created NETCONF session object or NULL on error. |
| 385 | */ |
| 386 | struct nc_session *nc_connect_ssh_channel(struct nc_session *session, struct ly_ctx *ctx); |
| 387 | |
Michal Vasko | 4e6d324 | 2021-05-26 09:13:24 +0200 | [diff] [blame] | 388 | /** @} Client SSH */ |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 389 | |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 390 | #endif /* NC_ENABLED_SSH */ |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 391 | |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 392 | #ifdef NC_ENABLED_TLS |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 393 | |
| 394 | /** |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 395 | * @defgroup client_tls Client TLS |
| 396 | * @ingroup client |
| 397 | * |
| 398 | * @brief Client-side settings for TLS connections. |
| 399 | * @{ |
| 400 | */ |
| 401 | |
| 402 | /** |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 403 | * @brief Set client authentication identity - a certificate and a private key. |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 404 | * |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 405 | * @param[in] client_cert Path to the file containing the client certificate. |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 406 | * @param[in] client_key Path to the file containing the private key for the @p client_cert. |
| 407 | * If NULL, key is expected to be stored with @p client_cert. |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 408 | * @return 0 on success, -1 on error. |
| 409 | */ |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 410 | int nc_client_tls_set_cert_key_paths(const char *client_cert, const char *client_key); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 411 | |
| 412 | /** |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 413 | * @brief Get client authentication identity - a certificate and a private key. |
| 414 | * |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 415 | * @param[out] client_cert Path to the file containing the client certificate. Can be NULL. |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 416 | * @param[out] client_key Path to the file containing the private key for the @p client_cert. Can be NULL. |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 417 | */ |
| 418 | void nc_client_tls_get_cert_key_paths(const char **client_cert, const char **client_key); |
| 419 | |
| 420 | /** |
| 421 | * @brief Set client trusted CA certificates paths. |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 422 | * |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 423 | * @param[in] ca_file Location of the CA certificate file used to verify server certificates. |
| 424 | * For more info, see the documentation for SSL_CTX_load_verify_locations() from OpenSSL. |
| 425 | * @param[in] ca_dir Location of the CA certificates directory used to verify the server certificates. |
| 426 | * For more info, see the documentation for SSL_CTX_load_verify_locations() from OpenSSL. |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 427 | * @return 0 on success, -1 on error. |
| 428 | */ |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 429 | int nc_client_tls_set_trusted_ca_paths(const char *ca_file, const char *ca_dir); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 430 | |
| 431 | /** |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 432 | * @brief Get client trusted CA certificates paths. |
| 433 | * |
| 434 | * @param[out] ca_file Location of the CA certificate file used to verify server certificates. |
| 435 | * Can be NULL. |
| 436 | * @param[out] ca_dir Location of the CA certificates directory used to verify the server certificates. |
| 437 | * Can be NULL. |
| 438 | */ |
| 439 | void nc_client_tls_get_trusted_ca_paths(const char **ca_file, const char **ca_dir); |
| 440 | |
| 441 | /** |
| 442 | * @brief Set client Certificate Revocation List paths. |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 443 | * |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 444 | * @param[in] crl_file Location of the CRL certificate file used to check for revocated certificates. |
| 445 | * @param[in] crl_dir Location of the CRL certificate directory used to check for revocated certificates. |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 446 | * @return 0 on success, -1 on error. |
| 447 | */ |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 448 | int nc_client_tls_set_crl_paths(const char *crl_file, const char *crl_dir); |
| 449 | |
| 450 | /** |
| 451 | * @brief Get client Certificate Revocation List paths. |
| 452 | * |
| 453 | * @param[out] crl_file Location of the CRL certificate file used to check for revocated certificates. |
| 454 | * @param[out] crl_dir Location of the CRL certificate directory used to check for revocated certificates. |
| 455 | */ |
| 456 | void nc_client_tls_get_crl_paths(const char **crl_file, const char **crl_dir); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 457 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 458 | /** |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 459 | * @brief Connect to the NETCONF server using TLS transport (via libssl) |
| 460 | * |
Michal Vasko | fdfd9dd | 2016-02-29 10:18:46 +0100 | [diff] [blame] | 461 | * TLS session is created with the certificates set using nc_client_tls_* functions, which must be called beforehand! |
Michal Vasko | df0fa45 | 2022-03-02 11:06:01 +0100 | [diff] [blame] | 462 | * If the caller needs to use specific TLS session properties, they are supposed to use ::nc_connect_libssl(). |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 463 | * |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 464 | * @param[in] host Hostname or address (both Ipv4 and IPv6 are accepted) of the target server. |
Michal Vasko | df0fa45 | 2022-03-02 11:06:01 +0100 | [diff] [blame] | 465 | * 'localhost' is used by default if NULL is specified. |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 466 | * @param[in] port Port number of the target server. Default value 6513 is used if 0 is specified. |
Michal Vasko | df0fa45 | 2022-03-02 11:06:01 +0100 | [diff] [blame] | 467 | * @param[in] ctx Optional custom context to use for the session. Disregarding whether set or not, any YANG modules |
| 468 | * not present and supported by the server are attempted to be loaded using \<get-schema\> (if supported) and/or by |
| 469 | * searching the searchpath (see ::nc_client_set_schema_searchpath()). |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 470 | * @return Created NETCONF session object or NULL on error. |
| 471 | */ |
| 472 | struct nc_session *nc_connect_tls(const char *host, uint16_t port, struct ly_ctx *ctx); |
| 473 | |
| 474 | /** |
| 475 | * @brief Connect to the NETCONF server using the provided TLS (libssl) session. |
| 476 | * |
| 477 | * The TLS session supplied is expected to be fully connected and authenticated! |
| 478 | * |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 479 | * @param[in] tls libssl structure representing the TLS session object. |
Michal Vasko | df0fa45 | 2022-03-02 11:06:01 +0100 | [diff] [blame] | 480 | * @param[in] ctx Optional custom context to use for the session. Disregarding whether set or not, any YANG modules |
| 481 | * not present and supported by the server are attempted to be loaded using \<get-schema\> (if supported) and/or by |
| 482 | * searching the searchpath (see ::nc_client_set_schema_searchpath()). |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 483 | * @return Created NETCONF session object or NULL on error. |
| 484 | */ |
| 485 | struct nc_session *nc_connect_libssl(SSL *tls, struct ly_ctx *ctx); |
| 486 | |
Michal Vasko | 4e6d324 | 2021-05-26 09:13:24 +0200 | [diff] [blame] | 487 | /** @} Client TLS */ |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 488 | |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 489 | #endif /* NC_ENABLED_TLS */ |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 490 | |
| 491 | /** |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 492 | * @addtogroup client_session |
| 493 | * @{ |
| 494 | */ |
| 495 | |
| 496 | /** |
Michal Vasko | bdfb524 | 2016-05-24 09:11:01 +0200 | [diff] [blame] | 497 | * @brief Get session capabilities. |
| 498 | * |
| 499 | * @param[in] session Session to get the information from. |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 500 | * @return NULL-terminated array of the @p session capabilities. |
Michal Vasko | bdfb524 | 2016-05-24 09:11:01 +0200 | [diff] [blame] | 501 | */ |
Michal Vasko | 1b2ddc9 | 2017-05-24 08:59:49 +0200 | [diff] [blame] | 502 | const char * const *nc_session_get_cpblts(const struct nc_session *session); |
Michal Vasko | bdfb524 | 2016-05-24 09:11:01 +0200 | [diff] [blame] | 503 | |
| 504 | /** |
| 505 | * @brief Check capability presence in a session. |
| 506 | * |
| 507 | * @param[in] session Session to check. |
| 508 | * @param[in] capab Capability to look for, capability with any additional suffix will match. |
| 509 | * @return Matching capability, NULL if none found. |
| 510 | */ |
| 511 | const char *nc_session_cpblt(const struct nc_session *session, const char *capab); |
| 512 | |
| 513 | /** |
Michal Vasko | 9cd26a8 | 2016-05-31 08:58:48 +0200 | [diff] [blame] | 514 | * @brief Check whether the session has a notification thread running. |
| 515 | * |
| 516 | * @param[in] session Session to check. |
| 517 | * @return 1 if notfication thread is running, 0 otherwise. |
| 518 | */ |
| 519 | int nc_session_ntf_thread_running(const struct nc_session *session); |
| 520 | |
| 521 | /** |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 522 | * @brief Receive NETCONF RPC reply. |
| 523 | * |
tadeas-vintrlik | 399af30 | 2021-08-25 10:32:21 +0200 | [diff] [blame] | 524 | * @note This function can be called in a single thread only. |
| 525 | * |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 526 | * @param[in] session NETCONF session from which the function gets data. It must be the |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 527 | * client side session object. |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 528 | * @param[in] rpc Original RPC this should be the reply to. |
| 529 | * @param[in] msgid Expected message ID of the reply. |
| 530 | * @param[in] timeout Timeout for reading in milliseconds. Use negative value for infinite |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 531 | * waiting and 0 for immediate return if data are not available on the wire. |
| 532 | * @param[out] envp NETCONF rpc-reply XML envelopes. |
| 533 | * @param[out] op Parsed NETCONF reply data, if any (none for \<ok\> or error replies). Set only on #NC_MSG_REPLY |
| 534 | * and #NC_MSG_REPLY_ERR_MSGID return. |
Michal Vasko | 71ba2da | 2016-05-04 10:53:16 +0200 | [diff] [blame] | 535 | * @return #NC_MSG_REPLY for success, |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 536 | * #NC_MSG_WOULDBLOCK if @p timeout has elapsed, |
Michal Vasko | 71ba2da | 2016-05-04 10:53:16 +0200 | [diff] [blame] | 537 | * #NC_MSG_ERROR if reading has failed, |
| 538 | * #NC_MSG_NOTIF if a notification was read instead (call this function again to get the reply), and |
| 539 | * #NC_MSG_REPLY_ERR_MSGID if a reply with missing or wrong message-id was received. |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 540 | */ |
Michal Vasko | d083db6 | 2016-01-19 10:31:29 +0100 | [diff] [blame] | 541 | NC_MSG_TYPE nc_recv_reply(struct nc_session *session, struct nc_rpc *rpc, uint64_t msgid, int timeout, |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 542 | struct lyd_node **envp, struct lyd_node **op); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 543 | |
| 544 | /** |
| 545 | * @brief Receive NETCONF Notification. |
| 546 | * |
| 547 | * @param[in] session NETCONF session from which the function gets data. It must be the |
| 548 | * client side session object. |
| 549 | * @param[in] timeout Timeout for reading in milliseconds. Use negative value for infinite |
Michal Vasko | 71ba2da | 2016-05-04 10:53:16 +0200 | [diff] [blame] | 550 | * waiting and 0 for immediate return if data are not available on the wire. |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 551 | * @param[out] envp NETCONF notification XML envelopes. |
| 552 | * @param[out] op Parsed NETCONF notification data. |
Michal Vasko | 71ba2da | 2016-05-04 10:53:16 +0200 | [diff] [blame] | 553 | * @return #NC_MSG_NOTIF for success, |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 554 | * #NC_MSG_WOULDBLOCK if @p timeout has elapsed, |
Michal Vasko | 71ba2da | 2016-05-04 10:53:16 +0200 | [diff] [blame] | 555 | * #NC_MSG_ERROR if reading has failed, and |
| 556 | * #NC_MSG_REPLY if a reply was read instead (call this function again to get a notification). |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 557 | */ |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 558 | NC_MSG_TYPE nc_recv_notif(struct nc_session *session, int timeout, struct lyd_node **envp, struct lyd_node **op); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 559 | |
| 560 | /** |
Michal Vasko | a8ad448 | 2016-01-28 14:25:54 +0100 | [diff] [blame] | 561 | * @brief Receive NETCONF Notifications in a separate thread until the session is terminated |
| 562 | * or \<notificationComplete\> is received. |
| 563 | * |
| 564 | * @param[in] session Netconf session to read notifications from. |
| 565 | * @param[in] notif_clb Function that is called for every received notification (including |
| 566 | * \<notificationComplete\>). Parameters are the session the notification was received on |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 567 | * and the notification data. |
Michal Vasko | a8ad448 | 2016-01-28 14:25:54 +0100 | [diff] [blame] | 568 | * @return 0 if the thread was successfully created, -1 on error. |
| 569 | */ |
| 570 | int nc_recv_notif_dispatch(struct nc_session *session, |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 571 | void (*notif_clb)(struct nc_session *session, const struct lyd_node *envp, const struct lyd_node *op)); |
Michal Vasko | a8ad448 | 2016-01-28 14:25:54 +0100 | [diff] [blame] | 572 | |
| 573 | /** |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 574 | * @brief Send NETCONF RPC message via the session. |
| 575 | * |
| 576 | * @param[in] session NETCONF session where the RPC will be written. |
Michal Vasko | 66fa9b9 | 2021-10-26 10:48:13 +0200 | [diff] [blame] | 577 | * @param[in] rpc NETCONF RPC object to send via the specified session. |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 578 | * @param[in] timeout Timeout for writing in milliseconds. Use negative value for infinite |
| 579 | * waiting and 0 for return if data cannot be sent immediately. |
| 580 | * @param[out] msgid If RPC was successfully sent, this is it's message ID. |
Michal Vasko | 71ba2da | 2016-05-04 10:53:16 +0200 | [diff] [blame] | 581 | * @return #NC_MSG_RPC on success, |
| 582 | * #NC_MSG_WOULDBLOCK in case of a busy session, and |
| 583 | * #NC_MSG_ERROR on error. |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 584 | */ |
Michal Vasko | d083db6 | 2016-01-19 10:31:29 +0100 | [diff] [blame] | 585 | NC_MSG_TYPE nc_send_rpc(struct nc_session *session, struct nc_rpc *rpc, int timeout, uint64_t *msgid); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 586 | |
Michal Vasko | de2946c | 2017-01-12 12:19:26 +0100 | [diff] [blame] | 587 | /** |
| 588 | * @brief Make a session not strict when sending RPCs and receiving RPC replies. In other words, |
| 589 | * it will silently skip unknown nodes without an error. |
| 590 | * |
| 591 | * Generally, no such data should be worked with, so use this function only when you know what you |
| 592 | * are doing and you understand the consequences. |
| 593 | * |
| 594 | * @param[in] session NETCONF client session. |
| 595 | */ |
| 596 | void nc_client_session_set_not_strict(struct nc_session *session); |
| 597 | |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 598 | /** @} Client Session */ |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 599 | |
Michal Vasko | c09730e | 2019-01-17 10:07:26 +0100 | [diff] [blame] | 600 | #ifdef __cplusplus |
| 601 | } |
| 602 | #endif |
| 603 | |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 604 | #endif /* NC_SESSION_CLIENT_H_ */ |