blob: 559dc6c7dd1d5a478f3f9bf4059412b7f63aa8d1 [file] [log] [blame]
Michal Vasko086311b2016-01-08 09:53:11 +01001/**
2 * \file session_client.h
3 * \author Michal Vasko <mvasko@cesnet.cz>
4 * \brief libnetconf2 session client manipulation
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
Michal Vasko086311b2016-01-08 09:53:11 +010013 */
14
15#ifndef NC_SESSION_CLIENT_H_
16#define NC_SESSION_CLIENT_H_
17
18#include <libyang/libyang.h>
19
Radek Krejci53691be2016-02-22 13:58:37 +010020#ifdef NC_ENABLED_SSH
Michal Vasko086311b2016-01-08 09:53:11 +010021
22#include <libssh/libssh.h>
23
24#endif
25
Radek Krejci53691be2016-02-22 13:58:37 +010026#ifdef NC_ENABLED_TLS
Michal Vasko086311b2016-01-08 09:53:11 +010027
28#include <openssl/ssl.h>
29
30#endif
31
32#include "session.h"
33#include "netconf.h"
Michal Vasko7bcb48e2016-01-15 10:28:54 +010034#include "messages_client.h"
Michal Vasko086311b2016-01-08 09:53:11 +010035
36/**
Radek Krejci6799a052017-05-19 14:23:23 +020037 * @addtogroup client
38 * @{
39 */
40
41/**
Michal Vasko086311b2016-01-08 09:53:11 +010042 * @brief Set location where libnetconf tries to search for YANG/YIN schemas.
43 *
Michal Vasko7f1c0ef2016-03-11 11:13:06 +010044 * The location is searched when connecting to a NETCONF server and building
Michal Vasko086311b2016-01-08 09:53:11 +010045 * YANG context for further processing of the NETCONF messages and data.
46 *
Radek Krejcifd5b6682017-06-13 15:52:53 +020047 * The searchpath is also used to store schemas retreived via \<get-schema\>
48 * operation - if the schema is not found in searchpath neither via schema
49 * callback provided via nc_client_set_schema_callback() and server supports
50 * the NETCONF \<get-schema\> operation, the schema is retrieved this way and
51 * stored into the searchpath (if specified).
52 *
Michal Vasko086311b2016-01-08 09:53:11 +010053 * @param[in] path Directory where to search for YANG/YIN schemas.
54 * @return 0 on success, 1 on (memory allocation) failure.
55 */
Michal Vasko7f1c0ef2016-03-11 11:13:06 +010056int nc_client_set_schema_searchpath(const char *path);
57
58/**
59 * @brief Get schema searchpath that was set by nc_client_set_schema_searchpath().
60 *
61 * @return Schema searchpath directory, NULL if not set.
62 */
63const char *nc_client_get_schema_searchpath(void);
Michal Vasko086311b2016-01-08 09:53:11 +010064
65/**
Radek Krejcifd5b6682017-06-13 15:52:53 +020066 * @brief Set callback function to get missing schemas.
67 *
68 * @param[in] clb Callback responsible for returning the missing model.
69 * @param[in] user_data Arbitrary data that will always be passed to the callback \p clb.
70 * @return 0 on success, 1 on (memory allocation) failure.
71 */
72int nc_client_set_schema_callback(ly_module_imp_clb clb, void *user_data);
73
74/**
75 * @brief Get callback function used to get missing schemas.
76 *
77 * @param[out] user_data Optionally return the private data set with the callback.
78 * Note that the caller is responsible for freeing the private data, so before
79 * changing the callback, private data used for the previous callback should be
80 * freed.
81 * @return Pointer to the set callback, NULL if no such callback was set.
82 */
83ly_module_imp_clb nc_client_get_schema_callback(void **user_data);
84
85/**
Radek Krejci5cebc6b2017-05-26 13:24:38 +020086 * @brief Use the provided thread-specific client's context in the current thread.
87 *
88 * Note that from this point the context is shared with the thread from which the context was taken and any
89 * nc_client_*set* functions and functions creating connection in these threads should be protected from the
90 * concurrent execution.
91 *
Radek Krejcifd5b6682017-06-13 15:52:53 +020092 * Context contains schema searchpath/callback, call home binds, TLS and SSH authentication data (username, keys,
Radek Krejci5cebc6b2017-05-26 13:24:38 +020093 * various certificates and callbacks).
94 *
95 * @param[in] context Client's thread-specific context provided by nc_client_get_thread_context().
96 */
97void nc_client_set_thread_context(void *context);
98
99/**
100 * @brief Get thread-specific client context for sharing with some other thread using
101 * nc_client_set_thread_context().
102 *
103 * @return Pointer to the client's context of the current thread.
104 */
105void *nc_client_get_thread_context(void);
106
107/**
Michal Vaskoa7b8ca52016-03-01 12:09:29 +0100108 * @brief Initialize libssh and/or libssl/libcrypto for use in the client.
109 */
110void nc_client_init(void);
111
112/**
113 * @brief Destroy all libssh and/or libssl/libcrypto dynamic memory and
114 * the client options, for both SSH and TLS, and for Call Home too.
Michal Vaskob7558c52016-02-26 15:04:19 +0100115 */
116void nc_client_destroy(void);
117
Radek Krejci6799a052017-05-19 14:23:23 +0200118/**@} Client */
119
120/**
121 * @defgroup client_session Client Session
122 * @ingroup client
123 *
124 * @brief Client-side NETCONF session manipulation.
125 * @{
126 */
127
Michal Vaskob7558c52016-02-26 15:04:19 +0100128/**
Michal Vasko086311b2016-01-08 09:53:11 +0100129 * @brief Connect to the NETCONF server via proviaded input/output file descriptors.
130 *
131 * Transport layer is supposed to be already set. Function do not cover authentication
132 * or any other manipulation with the transport layer, it only establish NETCONF session
133 * by sending and processing NETCONF \<hello\> messages.
134 *
Michal Vasko086311b2016-01-08 09:53:11 +0100135 * @param[in] fdin Input file descriptor for reading (clear) data from NETCONF server.
136 * @param[in] fdout Output file descriptor for writing (clear) data for NETCONF server.
137 * @param[in] ctx Optional parameter. If set, provides strict YANG context for the session
138 * (ignoring what is actually supported by the server side). If not set,
139 * YANG context is created for the session using \<get-schema\> (if supported
140 * by the server side) or/and by searching for YANG schemas in the searchpath
Radek Krejcic9a6d252016-03-04 14:50:34 +0100141 * (see nc_client_schema_searchpath()). In every case except not providing context
Michal Vasko086311b2016-01-08 09:53:11 +0100142 * to connect to a server supporting \<get-schema\> it is possible that
143 * the session context will not include all the models supported by the server.
144 * @return Created NETCONF session object or NULL in case of error.
145 */
146struct nc_session *nc_connect_inout(int fdin, int fdout, struct ly_ctx *ctx);
147
Radek Krejci6799a052017-05-19 14:23:23 +0200148/**@} Client Session */
149
Radek Krejci53691be2016-02-22 13:58:37 +0100150#ifdef NC_ENABLED_SSH
Michal Vasko086311b2016-01-08 09:53:11 +0100151
152/**
Radek Krejci6799a052017-05-19 14:23:23 +0200153 * @defgroup client_ssh Client SSH
154 * @ingroup client
155 *
156 * @brief Client-side settings for SSH connections.
157 * @{
158 */
159
160/**
Michal Vaskoef112d72016-02-18 13:28:25 +0100161 * @brief Set SSH authentication hostkey check (knownhosts) callback.
162 *
Radek Krejci90a84a22017-05-25 13:53:00 +0200163 * Repetitive calling causes replacing of the previous callback and its private data. Caller is responsible for
164 * freeing the private data when necessary (the private data can be obtained by
165 * nc_client_ssh_get_auth_hostkey_check_clb()).
166 *
Michal Vaskoef112d72016-02-18 13:28:25 +0100167 * @param[in] auth_hostkey_check Function to call, returns 0 on success, non-zero in error.
168 * If NULL, the default callback is set.
Radek Krejci90a84a22017-05-25 13:53:00 +0200169 * @param[in] priv Optional private data to be passed to the callback function.
Michal Vaskoef112d72016-02-18 13:28:25 +0100170 */
Radek Krejci90a84a22017-05-25 13:53:00 +0200171void nc_client_ssh_set_auth_hostkey_check_clb(int (*auth_hostkey_check)(const char *hostname, ssh_session session, void *priv),
172 void *priv);
173
174/**
175 * @brief Get currently set SSH authentication hostkey check (knownhosts) callback and its private data previously set
176 * by nc_client_ssh_set_auth_hostkey_check_clb().
177 *
178 * @param[out] auth_hostkey_check Currently set callback, NULL in case of the default callback.
179 * @param[out] priv Currently set (optional) private data to be passed to the callback function.
180 */
181void nc_client_ssh_get_auth_hostkey_check_clb(int (**auth_hostkey_check)(const char *hostname, ssh_session session, void *priv),
182 void **priv);
Michal Vaskoef112d72016-02-18 13:28:25 +0100183
184/**
Michal Vasko30e2c872016-02-18 10:03:21 +0100185 * @brief Set SSH password authentication callback.
186 *
Radek Krejci90a84a22017-05-25 13:53:00 +0200187 * Repetitive calling causes replacing of the previous callback and its private data. Caller is responsible for
188 * freeing the private data when necessary (the private data can be obtained by
189 * nc_client_ssh_get_auth_password_clb()).
190 *
Michal Vaskofdfd9dd2016-02-29 10:18:46 +0100191 * @param[in] auth_password Function to call, returns the password for username\@hostname.
Michal Vasko30e2c872016-02-18 10:03:21 +0100192 * If NULL, the default callback is set.
Radek Krejci90a84a22017-05-25 13:53:00 +0200193 * @param[in] priv Optional private data to be passed to the callback function.
Michal Vasko30e2c872016-02-18 10:03:21 +0100194 */
Radek Krejci90a84a22017-05-25 13:53:00 +0200195void nc_client_ssh_set_auth_password_clb(char *(*auth_password)(const char *username, const char *hostname, void *priv),
196 void *priv);
197
198/**
199 * @brief Get currently set SSH password authentication callback and its private data previously set
200 * by nc_client_ssh_set_auth_password_clb().
201 *
202 * @param[out] auth_password Currently set callback, NULL in case of the default callback.
203 * @param[out] priv Currently set (optional) private data to be passed to the callback function.
204 */
205void nc_client_ssh_get_auth_password_clb(char *(**auth_password)(const char *username, const char *hostname, void *priv),
206 void **priv);
Michal Vasko30e2c872016-02-18 10:03:21 +0100207
208/**
209 * @brief Set SSH interactive authentication callback.
210 *
Radek Krejci90a84a22017-05-25 13:53:00 +0200211 * Repetitive calling causes replacing of the previous callback and its private data. Caller is responsible for
212 * freeing the private data when necessary (the private data can be obtained by
213 * nc_client_ssh_get_auth_interactive_clb()).
214 *
Michal Vasko30e2c872016-02-18 10:03:21 +0100215 * @param[in] auth_interactive Function to call for every question, returns the answer for
216 * authentication name with instruction and echoing prompt.
217 * If NULL, the default callback is set.
Radek Krejci90a84a22017-05-25 13:53:00 +0200218 * @param[in] priv Optional private data to be passed to the callback function.
Michal Vasko30e2c872016-02-18 10:03:21 +0100219 */
220void nc_client_ssh_set_auth_interactive_clb(char *(*auth_interactive)(const char *auth_name, const char *instruction,
Radek Krejci90a84a22017-05-25 13:53:00 +0200221 const char *prompt, int echo, void *priv),
222 void *priv);
223
224/**
225 * @brief Get currently set SSH interactive authentication callback and its private data previously set
226 * by nc_client_ssh_set_auth_interactive_clb().
227 *
228 * @param[out] auth_interactive Currently set callback, NULL in case of the default callback.
229 * @param[out] priv Currently set (optional) private data to be passed to the callback function.
230 */
231void nc_client_ssh_get_auth_interactive_clb(char *(**auth_interactive)(const char *auth_name, const char *instruction,
232 const char *prompt, int echo, void *priv),
233 void **priv);
Michal Vasko30e2c872016-02-18 10:03:21 +0100234
235/**
236 * @brief Set SSH publickey authentication encrypted private key passphrase callback.
237 *
Radek Krejci90a84a22017-05-25 13:53:00 +0200238 * Repetitive calling causes replacing of the previous callback and its private data. Caller is responsible for
239 * freeing the private data when necessary (the private data can be obtained by
240 * nc_client_ssh_get_auth_privkey_passphrase_clb()).
241 *
Michal Vasko30e2c872016-02-18 10:03:21 +0100242 * @param[in] auth_privkey_passphrase Function to call for every question, returns
243 * the passphrase for the specific private key.
Radek Krejci90a84a22017-05-25 13:53:00 +0200244 * @param[in] priv Optional private data to be passed to the callback function.
Michal Vasko30e2c872016-02-18 10:03:21 +0100245 */
Radek Krejci90a84a22017-05-25 13:53:00 +0200246void nc_client_ssh_set_auth_privkey_passphrase_clb(char *(*auth_privkey_passphrase)(const char *privkey_path, void *priv),
247 void *priv);
248
249/**
250 * @brief Get currently set SSH publickey authentication encrypted private key passphrase callback and its private data
251 * previously set by nc_client_ssh_set_auth_privkey_passphrase_clb().
252 *
253 * @param[out] auth_privkey_passphrase Currently set callback, NULL in case of the default callback.
254 * @param[out] priv Currently set (optional) private data to be passed to the callback function.
255 */
256void nc_client_ssh_get_auth_privkey_passphrase_clb(char *(**auth_privkey_passphrase)(const char *privkey_path, void *priv),
257 void **priv);
Michal Vasko30e2c872016-02-18 10:03:21 +0100258
259/**
Michal Vasko3031aae2016-01-27 16:07:18 +0100260 * @brief Add an SSH public and private key pair to be used for client authentication.
261 *
262 * Private key can be encrypted, the passphrase will be asked for before using it.
263 *
Michal Vasko3031aae2016-01-27 16:07:18 +0100264 * @param[in] pub_key Path to the public key.
265 * @param[in] priv_key Path to the private key.
Michal Vaskof0537d82016-01-29 14:42:38 +0100266 * @return 0 on success, -1 on error.
Michal Vasko3031aae2016-01-27 16:07:18 +0100267 */
268int nc_client_ssh_add_keypair(const char *pub_key, const char *priv_key);
269
270/**
271 * @brief Remove an SSH public and private key pair that was used for client authentication.
272 *
Michal Vasko3031aae2016-01-27 16:07:18 +0100273 * @param[in] idx Index of the keypair starting with 0.
Michal Vasko3031aae2016-01-27 16:07:18 +0100274 * @return 0 on success, -1 on error.
275 */
276int nc_client_ssh_del_keypair(int idx);
277
278/**
279 * @brief Get the number of public an private key pairs set to be used for client authentication.
280 *
281 * @return Keypair count.
282 */
283int nc_client_ssh_get_keypair_count(void);
284
285/**
286 * @brief Get a specific keypair set to be used for client authentication.
287 *
288 * @param[in] idx Index of the specific keypair.
289 * @param[out] pub_key Path to the public key.
290 * @param[out] priv_key Path to the private key.
Michal Vasko3031aae2016-01-27 16:07:18 +0100291 * @return 0 on success, -1 on error.
292 */
293int nc_client_ssh_get_keypair(int idx, const char **pub_key, const char **priv_key);
294
295/**
296 * @brief Set SSH authentication method preference.
297 *
Radek Krejci62aa0642017-05-25 16:33:49 +0200298 * The default preference is as follows:
299 * - interactive authentication (3)
300 * - password authentication (2)
301 * - public key authentication (1)
302 *
303 * @param[in] auth_type Authentication method to modify the preference of.
304 * @param[in] pref Preference of \p auth_type. Higher number increases priority, negative values disable the method.
Michal Vasko3031aae2016-01-27 16:07:18 +0100305 */
306void nc_client_ssh_set_auth_pref(NC_SSH_AUTH_TYPE auth_type, int16_t pref);
307
308/**
309 * @brief Get SSH authentication method preference.
310 *
Michal Vasko3031aae2016-01-27 16:07:18 +0100311 * @param[in] auth_type Authentication method to retrieve the prefrence of.
Michal Vasko3031aae2016-01-27 16:07:18 +0100312 * @return Preference of the \p auth_type.
313 */
314int16_t nc_client_ssh_get_auth_pref(NC_SSH_AUTH_TYPE auth_type);
315
316/**
317 * @brief Set client SSH username used for authentication.
318 *
319 * @param[in] username Username to use.
320 * @return 0 on success, -1 on error.
321 */
322int nc_client_ssh_set_username(const char *username);
323
Michal Vasko3031aae2016-01-27 16:07:18 +0100324/**
Michal Vaskoe22c6732016-01-29 11:03:02 +0100325 * @brief Get client SSH username used for authentication.
326 *
327 * @return Username used.
328 */
329const char *nc_client_ssh_get_username(void);
330
331/**
Michal Vasko086311b2016-01-08 09:53:11 +0100332 * @brief Connect to the NETCONF server using SSH transport (via libssh).
333 *
334 * SSH session is created with default options. If the caller needs to use specific SSH session properties,
335 * they are supposed to use nc_connect_libssh().
336 *
Michal Vasko086311b2016-01-08 09:53:11 +0100337 * @param[in] host Hostname or address (both Ipv4 and IPv6 are accepted) of the target server.
338 * 'localhost' is used by default if NULL is specified.
339 * @param[in] port Port number of the target server. Default value 830 is used if 0 is specified.
Michal Vasko086311b2016-01-08 09:53:11 +0100340 * @param[in] ctx Optional parameter. If set, provides strict YANG context for the session
341 * (ignoring what is actually supported by the server side). If not set,
342 * YANG context is created for the session using \<get-schema\> (if supported
343 * by the server side) or/and by searching for YANG schemas in the searchpath
Radek Krejcic9a6d252016-03-04 14:50:34 +0100344 * (see nc_client_schema_searchpath()). In every case except not providing context
Michal Vasko086311b2016-01-08 09:53:11 +0100345 * to connect to a server supporting \<get-schema\> it is possible that
346 * the session context will not include all the models supported by the server.
347 * @return Created NETCONF session object or NULL on error.
348 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100349struct nc_session *nc_connect_ssh(const char *host, uint16_t port, struct ly_ctx *ctx);
Michal Vasko086311b2016-01-08 09:53:11 +0100350
351/**
352 * @brief Connect to the NETCONF server using the provided SSH (libssh) session.
353 *
354 * SSH session can have any options set, they will not be modified. If no options were set,
355 * host 'localhost', port 22, and the username detected from the EUID is used. If socket is
356 * set and connected only the host and the username must be set/is detected. Or the \p ssh_session
357 * can already be authenticated in which case it is used directly.
358 *
Michal Vasko086311b2016-01-08 09:53:11 +0100359 * @param[in] ssh_session libssh structure representing SSH session object. After passing it
360 * to libnetconf2 this way, it is fully managed by it (including freeing!).
361 * @param[in] ctx Optional parameter. If set, provides strict YANG context for the session
362 * (ignoring what is actually supported by the server side). If not set,
363 * YANG context is created for the session using \<get-schema\> (if supported
364 * by the server side) or/and by searching for YANG schemas in the searchpath
Radek Krejcic9a6d252016-03-04 14:50:34 +0100365 * (see nc_client_schema_searchpath()). In every case except not providing context
Michal Vasko086311b2016-01-08 09:53:11 +0100366 * to connect to a server supporting \<get-schema\> it is possible that
367 * the session context will not include all the models supported by the server.
368 * @return Created NETCONF session object or NULL on error.
369 */
370struct nc_session *nc_connect_libssh(ssh_session ssh_session, struct ly_ctx *ctx);
371
372/**
373 * @brief Create another NETCONF session on existing SSH session using separated SSH channel.
374 *
Michal Vasko086311b2016-01-08 09:53:11 +0100375 * @param[in] session Existing NETCONF session. The session has to be created on SSH transport layer using libssh -
376 * it has to be created by nc_connect_ssh(), nc_connect_libssh() or nc_connect_ssh_channel().
377 * @param[in] ctx Optional parameter. If set, provides strict YANG context for the session
378 * (ignoring what is actually supported by the server side). If not set,
379 * YANG context is created for the session using \<get-schema\> (if supported
380 * by the server side) or/and by searching for YANG schemas in the searchpath
Radek Krejcic9a6d252016-03-04 14:50:34 +0100381 * (see nc_client_schema_searchpath()). In every case except not providing context
Michal Vasko086311b2016-01-08 09:53:11 +0100382 * to connect to a server supporting \<get-schema\> it is possible that
383 * the session context will not include all the models supported by the server.
384 * @return Created NETCONF session object or NULL on error.
385 */
386struct nc_session *nc_connect_ssh_channel(struct nc_session *session, struct ly_ctx *ctx);
387
Radek Krejci6799a052017-05-19 14:23:23 +0200388/**@} Client SSH */
389
Radek Krejci53691be2016-02-22 13:58:37 +0100390#endif /* NC_ENABLED_SSH */
Michal Vasko086311b2016-01-08 09:53:11 +0100391
Radek Krejci53691be2016-02-22 13:58:37 +0100392#ifdef NC_ENABLED_TLS
Michal Vasko086311b2016-01-08 09:53:11 +0100393
394/**
Radek Krejci6799a052017-05-19 14:23:23 +0200395 * @defgroup client_tls Client TLS
396 * @ingroup client
397 *
398 * @brief Client-side settings for TLS connections.
399 * @{
400 */
401
402/**
Michal Vasko3031aae2016-01-27 16:07:18 +0100403 * @brief Set client authentication identity - a certificate and a private key.
Michal Vasko086311b2016-01-08 09:53:11 +0100404 *
Michal Vaskoe22c6732016-01-29 11:03:02 +0100405 * @param[in] client_cert Path to the file containing the client certificate.
Michal Vasko086311b2016-01-08 09:53:11 +0100406 * @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 Vasko3031aae2016-01-27 16:07:18 +0100408 * @return 0 on success, -1 on error.
409 */
Michal Vaskoe22c6732016-01-29 11:03:02 +0100410int nc_client_tls_set_cert_key_paths(const char *client_cert, const char *client_key);
Michal Vasko3031aae2016-01-27 16:07:18 +0100411
412/**
Michal Vaskoe22c6732016-01-29 11:03:02 +0100413 * @brief Get client authentication identity - a certificate and a private key.
414 *
Michal Vaskoe22c6732016-01-29 11:03:02 +0100415 * @param[out] client_cert Path to the file containing the client certificate. Can be NULL.
416 * @param[out] client_key Path to the file containing the private key for the \p client_cert. Can be NULL.
417 */
418void 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 Vasko3031aae2016-01-27 16:07:18 +0100422 *
Michal Vasko086311b2016-01-08 09:53:11 +0100423 * @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 Vasko3031aae2016-01-27 16:07:18 +0100427 * @return 0 on success, -1 on error.
428 */
Michal Vaskoe22c6732016-01-29 11:03:02 +0100429int nc_client_tls_set_trusted_ca_paths(const char *ca_file, const char *ca_dir);
Michal Vasko3031aae2016-01-27 16:07:18 +0100430
431/**
Michal Vaskoe22c6732016-01-29 11:03:02 +0100432 * @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 */
439void 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 Vasko3031aae2016-01-27 16:07:18 +0100443 *
Michal Vasko086311b2016-01-08 09:53:11 +0100444 * @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 Vasko3031aae2016-01-27 16:07:18 +0100446 * @return 0 on success, -1 on error.
447 */
Michal Vaskoe22c6732016-01-29 11:03:02 +0100448int 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 */
456void nc_client_tls_get_crl_paths(const char **crl_file, const char **crl_dir);
Michal Vasko3031aae2016-01-27 16:07:18 +0100457
Michal Vasko3031aae2016-01-27 16:07:18 +0100458/**
Michal Vasko086311b2016-01-08 09:53:11 +0100459 * @brief Connect to the NETCONF server using TLS transport (via libssl)
460 *
Michal Vaskofdfd9dd2016-02-29 10:18:46 +0100461 * TLS session is created with the certificates set using nc_client_tls_* functions, which must be called beforehand!
Michal Vasko086311b2016-01-08 09:53:11 +0100462 * If the caller needs to use specific TLS session properties, they are supposed to use nc_connect_libssl().
463 *
Michal Vasko086311b2016-01-08 09:53:11 +0100464 * @param[in] host Hostname or address (both Ipv4 and IPv6 are accepted) of the target server.
465 * 'localhost' is used by default if NULL is specified.
466 * @param[in] port Port number of the target server. Default value 6513 is used if 0 is specified.
467 * @param[in] ctx Optional parameter. If set, provides strict YANG context for the session
468 * (ignoring what is actually supported by the server side). If not set,
469 * YANG context is created for the session using \<get-schema\> (if supported
470 * by the server side) or/and by searching for YANG schemas in the searchpath
Radek Krejcic9a6d252016-03-04 14:50:34 +0100471 * (see nc_client_schema_searchpath()). In every case except not providing context
Michal Vasko086311b2016-01-08 09:53:11 +0100472 * to connect to a server supporting \<get-schema\> it is possible that
473 * the session context will not include all the models supported by the server.
474 * @return Created NETCONF session object or NULL on error.
475 */
476struct nc_session *nc_connect_tls(const char *host, uint16_t port, struct ly_ctx *ctx);
477
478/**
479 * @brief Connect to the NETCONF server using the provided TLS (libssl) session.
480 *
481 * The TLS session supplied is expected to be fully connected and authenticated!
482 *
Michal Vasko086311b2016-01-08 09:53:11 +0100483 * @param[in] tls libssl structure representing the TLS session object.
484 * @param[in] ctx Optional parameter. If set, provides strict YANG context for the session
485 * (ignoring what is actually supported by the server side). If not set,
486 * YANG context is created for the session using \<get-schema\> (if supported
487 * by the server side) or/and by searching for YANG schemas in the searchpath
Radek Krejcic9a6d252016-03-04 14:50:34 +0100488 * (see nc_client_schema_searchpath()). In every case except not providing context
Michal Vasko086311b2016-01-08 09:53:11 +0100489 * to connect to a server supporting \<get-schema\> it is possible that
490 * the session context will not include all the models supported by the server.
491 * @return Created NETCONF session object or NULL on error.
492 */
493struct nc_session *nc_connect_libssl(SSL *tls, struct ly_ctx *ctx);
494
Radek Krejci6799a052017-05-19 14:23:23 +0200495/**@} Client TLS */
496
Radek Krejci53691be2016-02-22 13:58:37 +0100497#endif /* NC_ENABLED_TLS */
Michal Vasko086311b2016-01-08 09:53:11 +0100498
499/**
Radek Krejci6799a052017-05-19 14:23:23 +0200500 * @addtogroup client_session
501 * @{
502 */
503
504/**
Michal Vaskobdfb5242016-05-24 09:11:01 +0200505 * @brief Get session capabilities.
506 *
507 * @param[in] session Session to get the information from.
Radek Krejci82da7812017-05-25 13:52:04 +0200508 * @return NULL-terminated array of the \p session capabilities.
Michal Vaskobdfb5242016-05-24 09:11:01 +0200509 */
Michal Vasko1b2ddc92017-05-24 08:59:49 +0200510const char * const *nc_session_get_cpblts(const struct nc_session *session);
Michal Vaskobdfb5242016-05-24 09:11:01 +0200511
512/**
513 * @brief Check capability presence in a session.
514 *
515 * @param[in] session Session to check.
516 * @param[in] capab Capability to look for, capability with any additional suffix will match.
517 * @return Matching capability, NULL if none found.
518 */
519const char *nc_session_cpblt(const struct nc_session *session, const char *capab);
520
521/**
Michal Vasko9cd26a82016-05-31 08:58:48 +0200522 * @brief Check whether the session has a notification thread running.
523 *
524 * @param[in] session Session to check.
525 * @return 1 if notfication thread is running, 0 otherwise.
526 */
527int nc_session_ntf_thread_running(const struct nc_session *session);
528
529/**
Michal Vasko086311b2016-01-08 09:53:11 +0100530 * @brief Receive NETCONF RPC reply.
531 *
Michal Vasko12257e92016-11-22 09:30:37 +0100532 * Be careful, normally there is a whole RPC reply (output) of an RPC in the \p reply.
533 * However, if a reply to \<get\> or \<get-config\> RPC is received, the \p reply is
534 * actually the configuration (with either state data or not). This means, for example,
Michal Vasko50d2a5c2017-02-14 10:29:49 +0100535 * that the reply data in these cases should not be validated with \b LYD_OPT_RPCREPLY,
536 * but \b LYD_OPT_GET and \b LYD_OPT_GETCONFIG, respectively.
Michal Vasko086311b2016-01-08 09:53:11 +0100537 *
538 * @param[in] session NETCONF session from which the function gets data. It must be the
539 * client side session object.
540 * @param[in] rpc Original RPC this should be the reply to.
541 * @param[in] msgid Expected message ID of the reply.
542 * @param[in] timeout Timeout for reading in milliseconds. Use negative value for infinite
Michal Vasko71ba2da2016-05-04 10:53:16 +0200543 * waiting and 0 for immediate return if data are not available on the wire.
Michal Vaskoeb7080e2016-02-18 13:27:05 +0100544 * @param[in] parseroptions libyang parseroptions flags, do not set the data type, it is set
Michal Vasko50d2a5c2017-02-14 10:29:49 +0100545 * internally. \b LYD_OPT_DESTRUCT and \b LYD_OPT_NOSIBLINGS is ignored.
Michal Vasko086311b2016-01-08 09:53:11 +0100546 * @param[out] reply Resulting object of NETCONF RPC reply.
Michal Vasko71ba2da2016-05-04 10:53:16 +0200547 * @return #NC_MSG_REPLY for success,
548 * #NC_MSG_WOULDBLOCK if \p timeout has elapsed,
549 * #NC_MSG_ERROR if reading has failed,
550 * #NC_MSG_NOTIF if a notification was read instead (call this function again to get the reply), and
551 * #NC_MSG_REPLY_ERR_MSGID if a reply with missing or wrong message-id was received.
Michal Vasko086311b2016-01-08 09:53:11 +0100552 */
Michal Vaskod083db62016-01-19 10:31:29 +0100553NC_MSG_TYPE nc_recv_reply(struct nc_session *session, struct nc_rpc *rpc, uint64_t msgid, int timeout,
Michal Vaskoeb7080e2016-02-18 13:27:05 +0100554 int parseroptions, struct nc_reply **reply);
Michal Vasko086311b2016-01-08 09:53:11 +0100555
556/**
557 * @brief Receive NETCONF Notification.
558 *
559 * @param[in] session NETCONF session from which the function gets data. It must be the
560 * client side session object.
561 * @param[in] timeout Timeout for reading in milliseconds. Use negative value for infinite
Michal Vasko71ba2da2016-05-04 10:53:16 +0200562 * waiting and 0 for immediate return if data are not available on the wire.
Michal Vasko086311b2016-01-08 09:53:11 +0100563 * @param[out] notif Resulting object of NETCONF Notification.
Michal Vasko71ba2da2016-05-04 10:53:16 +0200564 * @return #NC_MSG_NOTIF for success,
565 * #NC_MSG_WOULDBLOCK if \p timeout has elapsed,
566 * #NC_MSG_ERROR if reading has failed, and
567 * #NC_MSG_REPLY if a reply was read instead (call this function again to get a notification).
Michal Vasko086311b2016-01-08 09:53:11 +0100568 */
Michal Vaskod083db62016-01-19 10:31:29 +0100569NC_MSG_TYPE nc_recv_notif(struct nc_session* session, int timeout, struct nc_notif **notif);
Michal Vasko086311b2016-01-08 09:53:11 +0100570
571/**
Michal Vaskoa8ad4482016-01-28 14:25:54 +0100572 * @brief Receive NETCONF Notifications in a separate thread until the session is terminated
573 * or \<notificationComplete\> is received.
574 *
575 * @param[in] session Netconf session to read notifications from.
576 * @param[in] notif_clb Function that is called for every received notification (including
577 * \<notificationComplete\>). Parameters are the session the notification was received on
578 * and the notification itself.
579 * @return 0 if the thread was successfully created, -1 on error.
580 */
581int nc_recv_notif_dispatch(struct nc_session *session,
582 void (*notif_clb)(struct nc_session *session, const struct nc_notif *notif));
583
584/**
Michal Vasko086311b2016-01-08 09:53:11 +0100585 * @brief Send NETCONF RPC message via the session.
586 *
587 * @param[in] session NETCONF session where the RPC will be written.
588 * @param[in] rpc NETCOFN RPC object to send via specified session. Object can be created by
589 * nc_rpc_lock(), nc_rpc_unlock() and nc_rpc_generic() functions.
590 * @param[in] timeout Timeout for writing in milliseconds. Use negative value for infinite
591 * waiting and 0 for return if data cannot be sent immediately.
592 * @param[out] msgid If RPC was successfully sent, this is it's message ID.
Michal Vasko71ba2da2016-05-04 10:53:16 +0200593 * @return #NC_MSG_RPC on success,
594 * #NC_MSG_WOULDBLOCK in case of a busy session, and
595 * #NC_MSG_ERROR on error.
Michal Vasko086311b2016-01-08 09:53:11 +0100596 */
Michal Vaskod083db62016-01-19 10:31:29 +0100597NC_MSG_TYPE nc_send_rpc(struct nc_session *session, struct nc_rpc *rpc, int timeout, uint64_t *msgid);
Michal Vasko086311b2016-01-08 09:53:11 +0100598
Michal Vaskode2946c2017-01-12 12:19:26 +0100599/**
600 * @brief Make a session not strict when sending RPCs and receiving RPC replies. In other words,
601 * it will silently skip unknown nodes without an error.
602 *
603 * Generally, no such data should be worked with, so use this function only when you know what you
604 * are doing and you understand the consequences.
605 *
606 * @param[in] session NETCONF client session.
607 */
608void nc_client_session_set_not_strict(struct nc_session *session);
609
Radek Krejci6799a052017-05-19 14:23:23 +0200610/**@} Client Session */
611
Michal Vasko086311b2016-01-08 09:53:11 +0100612#endif /* NC_SESSION_CLIENT_H_ */