blob: 1b12733093316035953093c66f439d7b85729ed1 [file] [log] [blame]
Radek Krejci206fcd62015-10-07 15:42:48 +02001/**
Michal Vaskoc446a382021-06-18 08:54:05 +02002 * @file session_p.h
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @author Michal Vasko <mvasko@cesnet.cz>
5 * @brief libnetconf2 session manipulation
Radek Krejci206fcd62015-10-07 15:42:48 +02006 *
Michal Vasko95ea9ff2021-11-09 12:29:14 +01007 * @copyright
Michal Vasko3341d1d2023-03-24 11:33:09 +01008 * Copyright (c) 2017 - 2023 CESNET, z.s.p.o.
Radek Krejci206fcd62015-10-07 15:42:48 +02009 *
Radek Krejci9b81f5b2016-02-24 13:14:49 +010010 * This source code is licensed under BSD 3-Clause License (the "License").
11 * You may not use this file except in compliance with the License.
12 * You may obtain a copy of the License at
Michal Vaskoafd416b2016-02-25 14:51:46 +010013 *
Radek Krejci9b81f5b2016-02-24 13:14:49 +010014 * https://opensource.org/licenses/BSD-3-Clause
Radek Krejci206fcd62015-10-07 15:42:48 +020015 */
16
17#ifndef NC_SESSION_PRIVATE_H_
18#define NC_SESSION_PRIVATE_H_
19
Michal Vasko3341d1d2023-03-24 11:33:09 +010020#define _GNU_SOURCE
21
Radek Krejci206fcd62015-10-07 15:42:48 +020022#include <pthread.h>
Michal Vaskob83a3fa2021-05-26 09:53:42 +020023#include <stdint.h>
Michal Vasko69a3ff62018-11-09 09:31:48 +010024
Michal Vasko4ef14932015-12-04 11:09:10 +010025#include <libyang/libyang.h>
Michal Vasko7bcb48e2016-01-15 10:28:54 +010026
Michal Vasko5bd4a3f2021-06-17 16:40:10 +020027#include "compat.h"
roman3f9b65c2023-06-05 14:26:58 +020028#include "config.h"
Michal Vaskoffb35e92022-10-20 09:07:25 +020029#include "session_client.h"
Michal Vasko4ef14932015-12-04 11:09:10 +010030
romanc1d2b092023-02-02 08:58:27 +010031/**
32 * Enumeration of diff operation types.
33 */
34typedef enum {
romanf9906b42023-05-22 14:04:29 +020035 NC_OP_UNKNOWN = 0,
romanc1d2b092023-02-02 08:58:27 +010036 NC_OP_NONE,
37 NC_OP_CREATE,
38 NC_OP_DELETE,
39 NC_OP_REPLACE
40} NC_OPERATION;
41
42/**
43 * Enumeration of key or certificate store type.
44 */
45typedef enum {
46 NC_STORE_LOCAL, /**< key/certificate is stored locally in the ietf-netconf-server YANG data */
47 NC_STORE_KEYSTORE, /**< key/certificate is stored externally in a keystore module YANG data */
48 NC_STORE_TRUSTSTORE /**< key/certificate is stored externally in a truststore module YANG data */
49} NC_STORE_TYPE;
50
roman2eab4742023-06-06 10:00:26 +020051#ifdef NC_ENABLED_SSH_TLS
52
roman2eab4742023-06-06 10:00:26 +020053#include <libssh/libssh.h>
roman7fdc84d2023-06-06 13:14:53 +020054#include <openssl/ssl.h>
roman2eab4742023-06-06 10:00:26 +020055
56/* seconds */
57#define NC_SSH_TIMEOUT 10
58
59/* number of all supported authentication methods */
60#define NC_SSH_AUTH_COUNT 3
61
romanc1d2b092023-02-02 08:58:27 +010062/**
roman3f9b65c2023-06-05 14:26:58 +020063 * Enumeration of SSH public key formats.
romanc1d2b092023-02-02 08:58:27 +010064 */
65typedef enum {
roman13145912023-08-17 15:36:54 +020066 NC_PUBKEY_FORMAT_SSH, /**< see RFC 4253, section 6.6 */
67 NC_PUBKEY_FORMAT_X509 /**< see RFC 5280 sec. 4.1.2.7 */
roman3f9b65c2023-06-05 14:26:58 +020068} NC_PUBKEY_FORMAT;
romanc1d2b092023-02-02 08:58:27 +010069
roman8edee342023-03-31 13:25:48 +020070/**
roman466719d2023-05-05 16:14:37 +020071 * Enumeration of private key file formats.
72 */
73typedef enum {
74 NC_PRIVKEY_FORMAT_RSA, /**< PKCS1 RSA format */
75 NC_PRIVKEY_FORMAT_EC, /**< SEC1 EC format */
roman3f9b65c2023-06-05 14:26:58 +020076 NC_PRIVKEY_FORMAT_X509, /**< X509 (PKCS8) format */
77 NC_PRIVKEY_FORMAT_OPENSSH, /**< OpenSSH format */
78 NC_PRIVKEY_FORMAT_UNKNOWN /**< Unknown format */
roman466719d2023-05-05 16:14:37 +020079} NC_PRIVKEY_FORMAT;
80
81/**
roman8edee342023-03-31 13:25:48 +020082 * @brief A basic certificate.
83 */
romanc1d2b092023-02-02 08:58:27 +010084struct nc_certificate {
roman3f9b65c2023-06-05 14:26:58 +020085 char *name; /**< Arbitrary name of the certificate. */
86 char *data; /**< Base-64 encoded certificate. */
romanc1d2b092023-02-02 08:58:27 +010087};
88
romand57b3722023-04-05 11:26:25 +020089struct nc_certificate_bag {
90 char *name;
91 struct nc_certificate *certs;
92 uint16_t cert_count;
93};
94
roman8edee342023-03-31 13:25:48 +020095/**
96 * @brief An asymmetric key.
97 */
98struct nc_asymmetric_key {
99 char *name; /**< Arbitrary name of the key. */
100
roman3f9b65c2023-06-05 14:26:58 +0200101 NC_PUBKEY_FORMAT pubkey_type; /**< Type of the public key. */
102 char *pubkey_data; /**< Base-64 encoded public key. */
103 NC_PRIVKEY_FORMAT privkey_type; /**< Type of the private key. */
104 char *privkey_data; /**< Base-64 encoded private key. */
roman8edee342023-03-31 13:25:48 +0200105
106 struct nc_certificate *certs; /**< The certificates associated with this key. */
107 uint16_t cert_count; /**< Number of certificates associated with this key. */
108};
109
110/**
111 * @brief A symmetric key.
112 */
113struct nc_symmetric_key {
roman3f9b65c2023-06-05 14:26:58 +0200114 char *name; /**< Arbitrary name of the key. */
115 char *data; /**< Base-64 encoded key. */
roman8edee342023-03-31 13:25:48 +0200116};
117
118/**
119 * @brief A public key.
120 */
121struct nc_public_key {
roman3f9b65c2023-06-05 14:26:58 +0200122 char *name; /**< Arbitrary name of the public key. */
123 NC_PUBKEY_FORMAT type; /**< Type of the public key. */
124 char *data; /**< Base-64 encoded public key. */
roman8edee342023-03-31 13:25:48 +0200125};
126
romand57b3722023-04-05 11:26:25 +0200127struct nc_public_key_bag {
128 char *name;
129 struct nc_public_key *pubkeys;
130 uint16_t pubkey_count;
131};
132
133struct nc_truststore {
134 struct nc_certificate_bag *cert_bags;
135 uint16_t cert_bag_count;
136
137 struct nc_public_key_bag *pub_bags;
138 uint16_t pub_bag_count;
139};
140
roman8edee342023-03-31 13:25:48 +0200141/**
142 * @brief Keystore YANG module representation.
143 */
romanc1d2b092023-02-02 08:58:27 +0100144struct nc_keystore {
roman8edee342023-03-31 13:25:48 +0200145 struct nc_asymmetric_key *asym_keys; /**< Stored asymmetric keys. */
146 uint16_t asym_key_count; /**< Count of stored asymmetric keys. */
romanc1d2b092023-02-02 08:58:27 +0100147
roman8edee342023-03-31 13:25:48 +0200148 struct nc_symmetric_key *sym_keys; /**< Stored symmetric keys. */
149 uint16_t sym_key_count; /**< Count of stored symmetric keys. */
romanc1d2b092023-02-02 08:58:27 +0100150};
151
roman8edee342023-03-31 13:25:48 +0200152/**
153 * @brief Tracks the state of a client's authentication.
154 */
romand745f752023-03-24 15:53:12 +0100155struct nc_auth_state {
roman8edee342023-03-31 13:25:48 +0200156 int auth_method_count; /**< The number of auth. methods that the user supports. */
157 int auth_success_count; /**< The number of auth. methods that ended successfully. */
romand745f752023-03-24 15:53:12 +0100158};
159
roman8edee342023-03-31 13:25:48 +0200160/**
161 * @brief A server's authorized client.
162 */
romanc1d2b092023-02-02 08:58:27 +0100163struct nc_client_auth {
roman8edee342023-03-31 13:25:48 +0200164 char *username; /**< Arbitrary username. */
romanc1d2b092023-02-02 08:58:27 +0100165
roman874fed12023-05-25 10:20:01 +0200166 NC_STORE_TYPE store; /**< Specifies how/where the client's public key is stored. */
romanc1d2b092023-02-02 08:58:27 +0100167 union {
168 struct {
roman8edee342023-03-31 13:25:48 +0200169 struct nc_public_key *pubkeys; /**< The client's public keys. */
170 uint16_t pubkey_count; /**< The number of client's public keys. */
romanc1d2b092023-02-02 08:58:27 +0100171 };
romand57b3722023-04-05 11:26:25 +0200172 struct nc_public_key_bag *ts_ref; /**< Reference to a truststore. */
romanc1d2b092023-02-02 08:58:27 +0100173 };
174
roman8edee342023-03-31 13:25:48 +0200175 char *password; /**< Client's password */
176 char *pam_config_name; /**< Client's PAM configuration file name. */
177 char *pam_config_dir; /**< Client's PAM configuration file directory. */
178 int supports_none; /**< Implies that the client supports the none authentication method. */
romanc1d2b092023-02-02 08:58:27 +0100179};
180
roman8edee342023-03-31 13:25:48 +0200181/**
182 * @brief The server's hostkey.
183 */
romanc1d2b092023-02-02 08:58:27 +0100184struct nc_hostkey {
roman8edee342023-03-31 13:25:48 +0200185 char *name; /**< Arbitrary name of the host key. */
romanc1d2b092023-02-02 08:58:27 +0100186
roman874fed12023-05-25 10:20:01 +0200187 NC_STORE_TYPE store; /**< Specifies how/where the key is stored. */
romanc1d2b092023-02-02 08:58:27 +0100188 union {
roman8edee342023-03-31 13:25:48 +0200189 struct nc_asymmetric_key key; /**< The server's hostkey. */
190 struct nc_asymmetric_key *ks_ref; /**< Reference to a key-store. */
romanc1d2b092023-02-02 08:58:27 +0100191 };
192};
193
roman8edee342023-03-31 13:25:48 +0200194/**
195 * @brief Server options for configuring the SSH transport protocol.
196 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100197struct nc_server_ssh_opts {
roman8edee342023-03-31 13:25:48 +0200198 struct nc_hostkey *hostkeys; /**< Server's hostkeys. */
199 uint16_t hostkey_count; /**< Number of server's hostkeys. */
Michal Vasko086311b2016-01-08 09:53:11 +0100200
roman8edee342023-03-31 13:25:48 +0200201 struct nc_client_auth *auth_clients; /**< Server's authorized clients. */
202 uint16_t client_count; /**< Number of server's authorized clients. */
romanc1d2b092023-02-02 08:58:27 +0100203
roman0bbc19c2023-05-26 09:59:09 +0200204 struct nc_endpt *endpt_client_ref; /**< Reference to another endpoint (used for client authentication). */
205
roman8edee342023-03-31 13:25:48 +0200206 char *hostkey_algs; /**< Hostkey algorithms supported by the server. */
207 char *encryption_algs; /**< Encryption algorithms supported by the server. */
208 char *kex_algs; /**< Key exchange algorithms supported by the server. */
209 char *mac_algs; /**< MAC algorithms supported by the server. */
romanc1d2b092023-02-02 08:58:27 +0100210
roman8edee342023-03-31 13:25:48 +0200211 uint16_t auth_attempts; /**< Number of allowed authentication attempts. */
212 uint16_t auth_timeout; /**< Authentication timeout. */
Michal Vasko086311b2016-01-08 09:53:11 +0100213};
214
roman3f9b65c2023-06-05 14:26:58 +0200215/**
216 * @brief Certificate grouping (either local-definition or truststore reference).
217 */
218struct nc_cert_grouping {
219 NC_STORE_TYPE store; /**< Specifies how/where the certificates are stored. */
220 union {
221 struct {
222 struct nc_certificate *certs; /**< Local-defined certificates */
223 uint16_t cert_count; /**< Certificate count */
224 };
225 struct nc_certificate_bag *ts_ref; /**< Referenced trustore certificate bag */
226 };
227};
Michal Vasko0457bb42016-01-08 15:49:13 +0100228
roman3f9b65c2023-06-05 14:26:58 +0200229/**
romanfaecc582023-06-15 16:13:31 +0200230 * @brief Storing downloaded data via CURL.
231 */
232struct nc_curl_data {
233 unsigned char *data; /**< Downloaded data */
234 size_t size; /**< Size of downloaded data */
235};
236
237/**
roman3f9b65c2023-06-05 14:26:58 +0200238 * @brief Cert-to-name entries.
239 */
240struct nc_ctn {
241 uint32_t id; /**< ID of the entry, the lower the higher priority */
242 char *fingerprint; /**< Fingerprint of the entry */
243 NC_TLS_CTN_MAPTYPE map_type; /**< Specifies how to get the username from the certificate */
244 char *name; /**< Username for this entry */
245 struct nc_ctn *next; /**< Linked-list reference to the next entry */
246};
247
248/**
249 * @brief Server options for configuring the TLS transport protocol.
250 */
251struct nc_server_tls_opts {
252 NC_STORE_TYPE store; /**< Specifies how/where the server identity is stored. */
253 union {
254 struct {
255 NC_PUBKEY_FORMAT pubkey_type; /**< Server public key type */
256 char *pubkey_data; /**< Server's public key */
257
258 NC_PRIVKEY_FORMAT privkey_type; /**< Server private key type */
259 char *privkey_data; /**< Server's private key */
260
261 char *cert_data; /**< Server's certificate */
262 };
263
264 struct {
265 struct nc_asymmetric_key *key_ref; /**< Reference to the server's key */
266 struct nc_certificate *cert_ref; /**< Reference to the concrete server's certificate */
267 };
268 };
269
270 struct nc_cert_grouping ca_certs; /**< Client certificate authorities */
271 struct nc_cert_grouping ee_certs; /**< Client end-entity certificates */
romanfaecc582023-06-15 16:13:31 +0200272 char *crl_url; /**< URI to download the CRL from */
273 char *crl_path; /**< Path to a CRL file */
274 int crl_cert_ext; /**< Indicates to use CA's distribution points to obtain CRLs */
275 X509_STORE *crl_store; /**< Stores all the CRLs */
roman3f9b65c2023-06-05 14:26:58 +0200276
roman2e797ef2023-06-19 10:47:49 +0200277 struct nc_endpt *endpt_client_ref; /**< Reference to another endpoint (used for client authentication). */
278
roman12644fe2023-06-08 11:06:42 +0200279 unsigned int tls_versions; /**< TLS versions */
280 char *ciphers; /**< TLS ciphers */
281
roman3f9b65c2023-06-05 14:26:58 +0200282 struct nc_ctn *ctn; /**< Cert-to-name entries */
Michal Vasko0457bb42016-01-08 15:49:13 +0100283};
284
roman2eab4742023-06-06 10:00:26 +0200285#endif /* NC_ENABLED_SSH_TLS */
Radek Krejci43390242015-10-08 15:34:04 +0200286
roman8edee342023-03-31 13:25:48 +0200287/**
288 * @brief Keepalives configuration data.
289 */
Michal Vasko5f352c52019-07-10 16:12:06 +0200290struct nc_keepalives {
roman8edee342023-03-31 13:25:48 +0200291 int enabled; /**< Indicates that keepalives are enabled. */
292 uint16_t idle_time; /**< Idle timeout. */
293 uint16_t max_probes; /**< Maximum number of probes. */
294 uint16_t probe_interval; /**< Probe interval. */
Michal Vasko5f352c52019-07-10 16:12:06 +0200295};
296
roman8edee342023-03-31 13:25:48 +0200297/**
298 * @brief UNIX socket connection configuration.
299 */
Olivier Matzac7fa2f2018-10-11 10:02:04 +0200300struct nc_server_unix_opts {
roman8edee342023-03-31 13:25:48 +0200301 char *address; /**< Address of the socket. */
302 mode_t mode; /**< Socket's mode. */
303 uid_t uid; /**< Socket's uid. */
304 gid_t gid; /**< Socket's gid. */
Olivier Matzac7fa2f2018-10-11 10:02:04 +0200305};
306
roman8edee342023-03-31 13:25:48 +0200307/**
308 * @brief Stores information about a bind.
309 */
romanc1d2b092023-02-02 08:58:27 +0100310struct nc_bind {
roman8edee342023-03-31 13:25:48 +0200311 char *address; /**< Bind's address. */
312 uint16_t port; /**< Bind's port. */
313 int sock; /**< Bind's socket. */
314 int pollin; /**< Specifies, which sockets to poll on. */
romanc1d2b092023-02-02 08:58:27 +0100315};
316
roman2eab4742023-06-06 10:00:26 +0200317#ifdef NC_ENABLED_SSH_TLS
roman456f92d2023-04-28 10:28:12 +0200318
romanf6e32012023-04-24 15:51:26 +0200319struct nc_client_ssh_opts {
320 char *knownhosts_path; /**< path to known_hosts file */
roman456f92d2023-04-28 10:28:12 +0200321 NC_SSH_KNOWNHOSTS_MODE knownhosts_mode; /**< implies whether to check known_hosts or not */
romanf6e32012023-04-24 15:51:26 +0200322
323 /* SSH authentication method preferences */
324 struct {
325 NC_SSH_AUTH_TYPE type;
326 int16_t value;
327 } auth_pref[NC_SSH_AUTH_COUNT];
328
329 /* SSH key pairs */
330 struct {
331 char *pubkey_path;
332 char *privkey_path;
333 int8_t privkey_crypt;
334 } *keys;
335 uint16_t key_count;
336
337 /* SSH authentication callbacks */
338 char *(*auth_password)(const char *, const char *, void *);
339 char *(*auth_interactive)(const char *, const char *, const char *, int, void *);
340 char *(*auth_privkey_passphrase)(const char *, void *);
341
342 /* private data for the callbacks */
343 void *auth_password_priv;
344 void *auth_interactive_priv;
345 void *auth_privkey_passphrase_priv;
346
347 char *username;
348};
349
roman2eab4742023-06-06 10:00:26 +0200350struct nc_client_tls_opts {
351 char *cert_path;
352 char *key_path;
353 char *ca_file;
354 char *ca_dir;
355 int8_t tls_ctx_change;
356 SSL_CTX *tls_ctx;
357
358 char *crl_file;
359 char *crl_dir;
360 int8_t crl_store_change;
361 X509_STORE *crl_store;
362};
363
364#endif /* NC_ENABLED_SSH_TLS */
roman456f92d2023-04-28 10:28:12 +0200365
romanf6e32012023-04-24 15:51:26 +0200366/* ACCESS unlocked */
Michal Vasko3031aae2016-01-27 16:07:18 +0100367struct nc_client_opts {
368 char *schema_searchpath;
Michal Vaskoa272e092023-07-10 14:34:03 +0200369 int auto_context_fill_disabled;
Radek Krejcifd5b6682017-06-13 15:52:53 +0200370 ly_module_imp_clb schema_clb;
371 void *schema_clb_data;
Michal Vaskoe49a15f2019-05-27 14:18:36 +0200372 struct nc_keepalives ka;
Michal Vasko3031aae2016-01-27 16:07:18 +0100373
romanc1d2b092023-02-02 08:58:27 +0100374 struct nc_bind *ch_binds;
Michal Vaskob163b022022-09-07 11:55:46 +0200375
Michal Vasko9d4cca52022-09-07 11:19:57 +0200376 struct {
377 NC_TRANSPORT_IMPL ti;
378 char *hostname;
379 } *ch_binds_aux;
Michal Vasko3031aae2016-01-27 16:07:18 +0100380 uint16_t ch_bind_count;
381};
382
Radek Krejci62aa0642017-05-25 16:33:49 +0200383/* ACCESS unlocked */
384struct nc_client_context {
Radek Krejci5cebc6b2017-05-26 13:24:38 +0200385 unsigned int refcount;
Radek Krejci62aa0642017-05-25 16:33:49 +0200386 struct nc_client_opts opts;
Michal Vasko6ce8e822022-08-02 15:09:17 +0200387
roman2eab4742023-06-06 10:00:26 +0200388#ifdef NC_ENABLED_SSH_TLS
Radek Krejci62aa0642017-05-25 16:33:49 +0200389 struct nc_client_ssh_opts ssh_opts;
390 struct nc_client_ssh_opts ssh_ch_opts;
roman2eab4742023-06-06 10:00:26 +0200391
Radek Krejci62aa0642017-05-25 16:33:49 +0200392 struct nc_client_tls_opts tls_opts;
393 struct nc_client_tls_opts tls_ch_opts;
roman2eab4742023-06-06 10:00:26 +0200394#endif /* NC_ENABLED_SSH_TLS */
Radek Krejci62aa0642017-05-25 16:33:49 +0200395};
396
romanba93eac2023-07-18 14:36:48 +0200397/**
398 * @brief Call Home client thread data.
399 */
400struct nc_ch_client_thread_arg {
401 char *client_name;
402
403 const struct ly_ctx *(*acquire_ctx_cb)(void *cb_data); /**< acquiring libyang context cb */
404 void (*release_ctx_cb)(void *cb_data); /**< releasing libyang context cb */
405 void *ctx_cb_data; /**< acq/rel cb data */
406 int (*new_session_cb)(const char *client_name, struct nc_session *new_session, void *user_data); /**< creating new session cb */
407 void *new_session_cb_data; /**< new session cb data */
408
409 int thread_running; /**< A boolean value that is truthy while the underlying Call Home thread is running */
410 pthread_mutex_t cond_lock; /**< Condition's lock used for signalling the thread to terminate */
411 pthread_cond_t cond; /**< Condition used for signalling the thread to terminate */
412};
413
Michal Vasko0457bb42016-01-08 15:49:13 +0100414struct nc_server_opts {
Michal Vasko7227f352016-02-01 12:11:40 +0100415 /* ACCESS unlocked */
romanc1d2b092023-02-02 08:58:27 +0100416 ATOMIC_T wd_basic_mode;
417 ATOMIC_T wd_also_supported;
Michal Vasko1440a742021-03-31 11:11:03 +0200418 uint32_t capabilities_count;
Michal Vasko93224072021-11-09 12:14:28 +0100419 char **capabilities;
Michal Vasko6ce8e822022-08-02 15:09:17 +0200420
Michal Vasko1440a742021-03-31 11:11:03 +0200421 char *(*content_id_clb)(void *user_data);
422 void *content_id_data;
Michal Vasko6ce8e822022-08-02 15:09:17 +0200423
Michal Vasko1440a742021-03-31 11:11:03 +0200424 void (*content_id_data_free)(void *data);
Michal Vasko0457bb42016-01-08 15:49:13 +0100425
Michal Vasko7227f352016-02-01 12:11:40 +0100426 /* ACCESS unlocked */
romanc1d2b092023-02-02 08:58:27 +0100427 ATOMIC_T hello_timeout;
428 ATOMIC_T idle_timeout;
Michal Vasko6ce8e822022-08-02 15:09:17 +0200429
roman2eab4742023-06-06 10:00:26 +0200430#ifdef NC_ENABLED_SSH_TLS
Michal Vaskoebba7602018-03-23 13:14:08 +0100431 int (*passwd_auth_clb)(const struct nc_session *session, const char *password, void *user_data);
432 void *passwd_auth_data;
433 void (*passwd_auth_data_free)(void *data);
bhart3bc2f582018-06-05 12:40:32 -0500434
435 int (*pubkey_auth_clb)(const struct nc_session *session, ssh_key key, void *user_data);
436 void *pubkey_auth_data;
437 void (*pubkey_auth_data_free)(void *data);
438
Michal Vasko1c2d2652023-10-17 08:53:36 +0200439 int (*interactive_auth_sess_clb)(const struct nc_session *session, ssh_session ssh_sess, ssh_message msg, void *user_data);
440 void *interactive_auth_sess_data;
441 void (*interactive_auth_sess_data_free)(void *data);
442
bhart1bb7cdb2018-07-02 15:03:30 -0500443 int (*interactive_auth_clb)(const struct nc_session *session, ssh_message msg, void *user_data);
bhart3bc2f582018-06-05 12:40:32 -0500444 void *interactive_auth_data;
445 void (*interactive_auth_data_free)(void *data);
roman2eab4742023-06-06 10:00:26 +0200446
Michal Vasko7060bcf2016-11-28 14:48:11 +0100447 int (*user_verify_clb)(const struct nc_session *session);
roman2eab4742023-06-06 10:00:26 +0200448#endif /* NC_ENABLED_SSH_TLS */
Michal Vasko0457bb42016-01-08 15:49:13 +0100449
romanc1d2b092023-02-02 08:58:27 +0100450 pthread_rwlock_t config_lock;
roman456f92d2023-04-28 10:28:12 +0200451
roman2eab4742023-06-06 10:00:26 +0200452#ifdef NC_ENABLED_SSH_TLS
453 struct nc_keystore keystore; /**< store for server's keys/certificates */
romand57b3722023-04-05 11:26:25 +0200454 struct nc_truststore truststore; /**< store for server client's keys/certificates */
roman2eab4742023-06-06 10:00:26 +0200455#endif /* NC_ENABLED_SSH_TLS */
Michal Vasko4c1fb492017-01-30 14:31:07 +0100456
Michal Vasko3031aae2016-01-27 16:07:18 +0100457 struct nc_bind *binds;
458 struct nc_endpt {
Michal Vasko93224072021-11-09 12:14:28 +0100459 char *name;
roman2eab4742023-06-06 10:00:26 +0200460#ifdef NC_ENABLED_SSH_TLS
roman0bbc19c2023-05-26 09:59:09 +0200461 char *referenced_endpt_name;
roman2eab4742023-06-06 10:00:26 +0200462#endif /* NC_ENABLED_SSH_TLS */
Michal Vasko2e6defd2016-10-07 15:48:15 +0200463 NC_TRANSPORT_IMPL ti;
Michal Vaskoe49a15f2019-05-27 14:18:36 +0200464 struct nc_keepalives ka;
Michal Vasko6ce8e822022-08-02 15:09:17 +0200465
Michal Vasko2e6defd2016-10-07 15:48:15 +0200466 union {
roman2eab4742023-06-06 10:00:26 +0200467#ifdef NC_ENABLED_SSH_TLS
Michal Vasko2e6defd2016-10-07 15:48:15 +0200468 struct nc_server_ssh_opts *ssh;
roman2eab4742023-06-06 10:00:26 +0200469
Michal Vasko2e6defd2016-10-07 15:48:15 +0200470 struct nc_server_tls_opts *tls;
roman2eab4742023-06-06 10:00:26 +0200471#endif /* NC_ENABLED_SSH_TLS */
Olivier Matzac7fa2f2018-10-11 10:02:04 +0200472 struct nc_server_unix_opts *unixsock;
Michal Vasko2e6defd2016-10-07 15:48:15 +0200473 } opts;
Michal Vasko3031aae2016-01-27 16:07:18 +0100474 } *endpts;
475 uint16_t endpt_count;
Michal Vasko2e6defd2016-10-07 15:48:15 +0200476
477 /* ACCESS locked, add/remove CH clients - WRITE lock ch_client_lock
478 * modify CH clients - READ lock ch_client_lock + ch_client_lock */
479 struct nc_ch_client {
Michal Vasko93224072021-11-09 12:14:28 +0100480 char *name;
roman5cbb6532023-06-22 12:53:17 +0200481
romanba93eac2023-07-18 14:36:48 +0200482 pthread_t tid; /**< Call Home client's thread ID */
483 struct nc_ch_client_thread_arg *thread_data; /**< Data of the Call Home client's thread */
484
Michal Vasko2e6defd2016-10-07 15:48:15 +0200485 struct nc_ch_endpt {
Michal Vasko93224072021-11-09 12:14:28 +0100486 char *name;
Michal Vaskoadf30f02019-06-24 09:34:47 +0200487 NC_TRANSPORT_IMPL ti;
Michal Vasko93224072021-11-09 12:14:28 +0100488 char *address;
Michal Vasko2e6defd2016-10-07 15:48:15 +0200489 uint16_t port;
Frank Rimpler9f838b02018-07-25 06:44:03 +0000490 int sock_pending;
Michal Vaskoe49a15f2019-05-27 14:18:36 +0200491 struct nc_keepalives ka;
Michal Vasko6ce8e822022-08-02 15:09:17 +0200492
Michal Vaskoadf30f02019-06-24 09:34:47 +0200493 union {
roman2eab4742023-06-06 10:00:26 +0200494#ifdef NC_ENABLED_SSH_TLS
Michal Vaskoadf30f02019-06-24 09:34:47 +0200495 struct nc_server_ssh_opts *ssh;
roman2eab4742023-06-06 10:00:26 +0200496
Michal Vaskoadf30f02019-06-24 09:34:47 +0200497 struct nc_server_tls_opts *tls;
roman2eab4742023-06-06 10:00:26 +0200498#endif /* NC_ENABLED_SSH_TLS */
Michal Vaskoadf30f02019-06-24 09:34:47 +0200499 } opts;
500 } *ch_endpts;
501 uint16_t ch_endpt_count;
Michal Vasko6ce8e822022-08-02 15:09:17 +0200502
romanb6f44032023-06-30 15:07:56 +0200503 NC_CH_CONN_TYPE conn_type;
504 struct {
505 uint16_t period;
506 time_t anchor_time;
507 uint16_t idle_timeout;
508 };
509
Michal Vasko2e6defd2016-10-07 15:48:15 +0200510 NC_CH_START_WITH start_with;
511 uint8_t max_attempts;
romanb6f44032023-06-30 15:07:56 +0200512 uint16_t max_wait;
Andrew Langefeld6ed922d2018-09-12 14:08:32 -0500513 uint32_t id;
Michal Vasko2e6defd2016-10-07 15:48:15 +0200514 pthread_mutex_t lock;
515 } *ch_clients;
516 uint16_t ch_client_count;
517 pthread_rwlock_t ch_client_lock;
Michal Vaskob48aa812016-01-18 14:13:09 +0100518
Andrew Langefeld6ed922d2018-09-12 14:08:32 -0500519 /* Atomic IDs */
Michal Vasko5bd4a3f2021-06-17 16:40:10 +0200520 ATOMIC_T new_session_id;
521 ATOMIC_T new_client_id;
Michal Vasko0457bb42016-01-08 15:49:13 +0100522};
523
Radek Krejci206fcd62015-10-07 15:42:48 +0200524/**
Michal Vasko5bd4a3f2021-06-17 16:40:10 +0200525 * Sleep time in usec to wait between nc_recv_notif() calls.
Michal Vaskoa8ad4482016-01-28 14:25:54 +0100526 */
527#define NC_CLIENT_NOTIF_THREAD_SLEEP 10000
528
529/**
Michal Vasko0190bc32016-03-02 15:47:49 +0100530 * Timeout in msec for transport-related data to arrive (ssh_handle_key_exchange(), SSL_accept(), SSL_connect()).
Michal Vasko36c7be82017-02-22 13:37:59 +0100531 * It can be quite a lot on slow machines (waiting for TLS cert-to-name resolution, ...).
Michal Vasko0190bc32016-03-02 15:47:49 +0100532 */
Michal Vasko23edb632017-02-23 15:15:52 +0100533#define NC_TRANSPORT_TIMEOUT 10000
Michal Vasko36c7be82017-02-22 13:37:59 +0100534
535/**
536 * Timeout in msec for acquiring a lock of a session (used with a condition, so higher numbers could be required
537 * only in case of extreme concurrency).
538 */
539#define NC_SESSION_LOCK_TIMEOUT 500
Michal Vasko0190bc32016-03-02 15:47:49 +0100540
541/**
Michal Vaskof471fa02017-02-15 10:48:12 +0100542 * Timeout in msec for acquiring a lock of a session that is supposed to be freed.
543 */
Michal Vasko36c7be82017-02-22 13:37:59 +0100544#define NC_SESSION_FREE_LOCK_TIMEOUT 1000
Michal Vaskof471fa02017-02-15 10:48:12 +0100545
546/**
Michal Vasko2b768092018-02-12 16:37:12 +0100547 * Timeout in msec for a thread to wait for its turn to work with a pollsession structure.
Michal Vasko2b768092018-02-12 16:37:12 +0100548 */
Michal Vasko98a78032019-10-03 15:01:11 +0200549#define NC_PS_QUEUE_TIMEOUT 5000
Michal Vaskof471fa02017-02-15 10:48:12 +0100550
551/**
Michal Vasko1a22db42017-03-17 09:09:15 +0100552 * Time slept in msec if no endpoint was created for a running Call Home client.
Michal Vaskoade892d2017-02-22 13:40:35 +0100553 */
554#define NC_CH_NO_ENDPT_WAIT 1000
555
556/**
romanba93eac2023-07-18 14:36:48 +0200557 * Time slept in msec between Call Home thread session idle timeout checks.
558 */
559#define NC_CH_THREAD_IDLE_TIMEOUT_SLEEP 1000
560
561/**
Michal Vasko056f53c2022-10-21 13:38:15 +0200562 * Timeout in msec for a Call Home socket to establish its connection.
563 */
564#define NC_CH_CONNECT_TIMEOUT 500
565
566/**
Michal Vasko80cad7f2015-12-08 14:42:27 +0100567 * Number of sockets kept waiting to be accepted.
568 */
Michal Vasko0a3f3752016-10-13 14:58:38 +0200569#define NC_REVERSE_QUEUE 5
Michal Vasko80cad7f2015-12-08 14:42:27 +0100570
571/**
Michal Vasko5c2f7952016-01-22 13:16:31 +0100572 * @brief Type of the session
Radek Krejci206fcd62015-10-07 15:42:48 +0200573 */
574typedef enum {
Radek Krejci695d4fa2015-10-22 13:23:54 +0200575 NC_CLIENT, /**< client side */
576 NC_SERVER /**< server side */
Radek Krejci206fcd62015-10-07 15:42:48 +0200577} NC_SIDE;
578
579/**
580 * @brief Enumeration of the supported NETCONF protocol versions
581 */
582typedef enum {
Michal Vasko5c2f7952016-01-22 13:16:31 +0100583 NC_VERSION_10 = 0, /**< NETCONF 1.0 - RFC 4741, 4742 */
Radek Krejci206fcd62015-10-07 15:42:48 +0200584 NC_VERSION_11 = 1 /**< NETCONF 1.1 - RFC 6241, 6242 */
585} NC_VERSION;
586
587#define NC_VERSION_10_ENDTAG "]]>]]>"
588#define NC_VERSION_10_ENDTAG_LEN 6
589
590/**
tadeas-vintrlik54f142a2021-08-23 10:36:18 +0200591 * @brief Container to serialize RPC messages
Radek Krejci5686ff72015-10-09 13:33:56 +0200592 */
Michal Vaskoad611702015-12-03 13:41:51 +0100593struct nc_msg_cont {
Michal Vasko77367452021-02-16 16:32:18 +0100594 struct ly_in *msg;
tadeas-vintrlik54f142a2021-08-23 10:36:18 +0200595 NC_MSG_TYPE type; /**< can be either NC_MSG_REPLY or NC_MSG_NOTIF */
Michal Vaskoad611702015-12-03 13:41:51 +0100596 struct nc_msg_cont *next;
Radek Krejci5686ff72015-10-09 13:33:56 +0200597};
598
599/**
Radek Krejci206fcd62015-10-07 15:42:48 +0200600 * @brief NETCONF session structure
601 */
602struct nc_session {
Radek Krejci695d4fa2015-10-22 13:23:54 +0200603 NC_STATUS status; /**< status of the session */
Michal Vasko428087d2016-01-14 16:04:28 +0100604 NC_SESSION_TERM_REASON term_reason; /**< reason of termination, if status is NC_STATUS_INVALID */
Michal Vasko142cfea2017-08-07 10:12:11 +0200605 uint32_t killed_by; /**< session responsible for termination, if term_reason is NC_SESSION_TERM_KILLED */
Radek Krejci695d4fa2015-10-22 13:23:54 +0200606 NC_SIDE side; /**< side of the session: client or server */
Radek Krejci5686ff72015-10-09 13:33:56 +0200607
608 /* NETCONF data */
Radek Krejci206fcd62015-10-07 15:42:48 +0200609 uint32_t id; /**< NETCONF session ID (session-id-type) */
610 NC_VERSION version; /**< NETCONF protocol version */
Radek Krejci5686ff72015-10-09 13:33:56 +0200611
612 /* Transport implementation */
Radek Krejci206fcd62015-10-07 15:42:48 +0200613 NC_TRANSPORT_IMPL ti_type; /**< transport implementation type to select items from ti union */
tadeas-vintrlik54f142a2021-08-23 10:36:18 +0200614 pthread_mutex_t *io_lock; /**< input/output lock, note that in case of libssh TI, it will be shared with
615 other NETCONF sessions on the same SSH session (but different SSH channel) */
Michal Vasko131120a2018-05-29 15:44:02 +0200616
Radek Krejci206fcd62015-10-07 15:42:48 +0200617 union {
618 struct {
619 int in; /**< input file descriptor */
620 int out; /**< output file descriptor */
Radek Krejci206fcd62015-10-07 15:42:48 +0200621 } fd; /**< NC_TI_FD transport implementation structure */
Olivier Matzac7fa2f2018-10-11 10:02:04 +0200622 struct {
623 int sock; /**< socket file descriptor */
624 } unixsock; /**< NC_TI_UNIX transport implementation structure */
roman2eab4742023-06-06 10:00:26 +0200625#ifdef NC_ENABLED_SSH_TLS
Radek Krejci206fcd62015-10-07 15:42:48 +0200626 struct {
Radek Krejci206fcd62015-10-07 15:42:48 +0200627 ssh_channel channel;
Radek Krejci695d4fa2015-10-22 13:23:54 +0200628 ssh_session session;
629 struct nc_session *next; /**< pointer to the next NETCONF session on the same
630 SSH session, but different SSH channel. If no such session exists, it is NULL.
631 otherwise there is a ring list of the NETCONF sessions */
Radek Krejci206fcd62015-10-07 15:42:48 +0200632 } libssh;
roman2eab4742023-06-06 10:00:26 +0200633
Radek Krejci206fcd62015-10-07 15:42:48 +0200634 SSL *tls;
roman2eab4742023-06-06 10:00:26 +0200635#endif /* NC_ENABLED_SSH_TLS */
Radek Krejci5686ff72015-10-09 13:33:56 +0200636 } ti; /**< transport implementation data */
Michal Vasko93224072021-11-09 12:14:28 +0100637 char *username;
638 char *host;
Michal Vasko38a7c6c2015-12-04 12:29:20 +0100639 uint16_t port;
Michal Vasko93224072021-11-09 12:14:28 +0100640 char *path; /**< socket path in case of unix socket */
Radek Krejci5686ff72015-10-09 13:33:56 +0200641
642 /* other */
643 struct ly_ctx *ctx; /**< libyang context of the session */
Michal Vasko2cc4c682016-03-01 09:16:48 +0100644 void *data; /**< arbitrary user data */
Michal Vaskoe49a15f2019-05-27 14:18:36 +0200645 uint8_t flags; /**< various flags of the session */
Michal Vasko086311b2016-01-08 09:53:11 +0100646#define NC_SESSION_SHAREDCTX 0x01
Michal Vaskofeccb312022-03-24 15:24:59 +0100647#define NC_SESSION_CALLHOME 0x02 /**< session is Call Home and ch_lock is initialized */
648#define NC_SESSION_CH_THREAD 0x04 /**< protected by ch_lock */
Radek Krejci5686ff72015-10-09 13:33:56 +0200649
Michal Vasko2e6defd2016-10-07 15:48:15 +0200650 union {
651 struct {
Radek Krejcif637ba82016-10-18 14:18:14 +0200652 /* client side only data */
Michal Vasko2e6defd2016-10-07 15:48:15 +0200653 uint64_t msgid;
Michal Vasko2cb24b42017-05-23 14:59:11 +0200654 char **cpblts; /**< list of server's capabilities on client side */
tadeas-vintrlik54f142a2021-08-23 10:36:18 +0200655 pthread_mutex_t msgs_lock; /**< lock for the msgs buffer */
656 struct nc_msg_cont *msgs; /**< queue for messages received of different type than expected */
Michal Vaskoa8ec54b2022-10-20 09:59:07 +0200657 ATOMIC_T ntf_thread_count; /**< number of running notification threads */
658 ATOMIC_T ntf_thread_running; /**< flag whether there are notification threads for this session running or not */
Michal Vasko78939072022-12-12 07:43:18 +0100659 struct lyd_node *ext_data; /**< LY ext data used in the context callback */
Michal Vaskoeee99412016-11-21 10:19:43 +0100660
661 /* client flags */
662 /* some server modules failed to load so the data from them will be ignored - not use strict flag for parsing */
Michal Vaskofeccb312022-03-24 15:24:59 +0100663# define NC_SESSION_CLIENT_NOT_STRICT 0x08
Michal Vasko2e6defd2016-10-07 15:48:15 +0200664 } client;
665 struct {
Radek Krejcif637ba82016-10-18 14:18:14 +0200666 /* server side only data */
Michal Vasko9f6275e2017-10-05 13:50:05 +0200667 time_t session_start; /**< real time the session was created */
668 time_t last_rpc; /**< monotonic time (seconds) the last RPC was received on this session */
Michal Vaskodf68e7e2022-04-21 11:04:00 +0200669
670 pthread_mutex_t ntf_status_lock; /**< lock for ntf_status */
671 uint32_t ntf_status; /**< flag (count) whether the session is subscribed to notifications */
Michal Vasko131120a2018-05-29 15:44:02 +0200672
Michal Vaskoacf98472021-02-04 15:33:57 +0100673 pthread_mutex_t rpc_lock; /**< lock indicating RPC processing, this lock is always locked before io_lock!! */
674 pthread_cond_t rpc_cond; /**< RPC condition (tied with rpc_lock and rpc_inuse) */
675 int rpc_inuse; /**< variable indicating whether there is RPC being processed or not (tied with
Michal Vasko131120a2018-05-29 15:44:02 +0200676 rpc_cond and rpc_lock) */
677
Michal Vaskoacf98472021-02-04 15:33:57 +0100678 pthread_mutex_t ch_lock; /**< Call Home thread lock */
679 pthread_cond_t ch_cond; /**< Call Home thread condition */
Michal Vasko086311b2016-01-08 09:53:11 +0100680
Michal Vaskoeee99412016-11-21 10:19:43 +0100681 /* server flags */
roman2eab4742023-06-06 10:00:26 +0200682#ifdef NC_ENABLED_SSH_TLS
Michal Vasko2e6defd2016-10-07 15:48:15 +0200683 /* SSH session authenticated */
Michal Vaskofeccb312022-03-24 15:24:59 +0100684# define NC_SESSION_SSH_AUTHENTICATED 0x10
Michal Vasko2e6defd2016-10-07 15:48:15 +0200685 /* netconf subsystem requested */
Michal Vaskofeccb312022-03-24 15:24:59 +0100686# define NC_SESSION_SSH_SUBSYS_NETCONF 0x20
Michal Vasko2e6defd2016-10-07 15:48:15 +0200687 uint16_t ssh_auth_attempts; /**< number of failed SSH authentication attempts */
roman2eab4742023-06-06 10:00:26 +0200688
Michal Vasko2e6defd2016-10-07 15:48:15 +0200689 X509 *client_cert; /**< TLS client certificate if used for authentication */
roman2eab4742023-06-06 10:00:26 +0200690#endif /* NC_ENABLED_SSH_TLS */
Michal Vasko2e6defd2016-10-07 15:48:15 +0200691 } server;
692 } opts;
Radek Krejci206fcd62015-10-07 15:42:48 +0200693};
694
Michal Vaskoe4300a82017-05-24 10:35:42 +0200695enum nc_ps_session_state {
696 NC_PS_STATE_NONE = 0, /**< session is not being worked with */
697 NC_PS_STATE_BUSY, /**< session is being polled or communicated on (and locked) */
698 NC_PS_STATE_INVALID /**< session is invalid and was already returned by another poll */
699};
700
fanchanghu3d4e7212017-08-09 09:42:30 +0800701struct nc_ps_session {
702 struct nc_session *session;
703 enum nc_ps_session_state state;
704};
705
Michal Vasko48a63ed2016-03-01 09:48:21 +0100706/* ACCESS locked */
Michal Vaskofb89d772016-01-08 12:25:35 +0100707struct nc_pollsession {
fanchanghu3d4e7212017-08-09 09:42:30 +0800708 struct nc_ps_session **sessions;
Michal Vaskofb89d772016-01-08 12:25:35 +0100709 uint16_t session_count;
Michal Vasko99f251b2017-01-11 11:31:46 +0100710 uint16_t last_event_session;
Michal Vaskobe86fe32016-04-07 10:43:03 +0200711
712 pthread_cond_t cond;
Michal Vasko48a63ed2016-03-01 09:48:21 +0100713 pthread_mutex_t lock;
Michal Vaskobe86fe32016-04-07 10:43:03 +0200714 uint8_t queue[NC_PS_QUEUE_SIZE]; /**< round buffer, queue is empty when queue_len == 0 */
715 uint8_t queue_begin; /**< queue starts on queue[queue_begin] */
Michal Vasko74c345f2018-02-07 10:37:11 +0100716 uint8_t queue_len; /**< queue ends on queue[(queue_begin + queue_len - 1) % NC_PS_QUEUE_SIZE] */
Michal Vaskofb89d772016-01-08 12:25:35 +0100717};
718
Michal Vaskoa8ad4482016-01-28 14:25:54 +0100719struct nc_ntf_thread_arg {
720 struct nc_session *session;
Michal Vaskoffb35e92022-10-20 09:07:25 +0200721 nc_notif_dispatch_clb notif_clb;
722 void *user_data;
Michal Vasko743ff9f2022-10-20 10:03:13 +0200723
Michal Vaskoffb35e92022-10-20 09:07:25 +0200724 void (*free_data)(void *);
Michal Vaskoa8ad4482016-01-28 14:25:54 +0100725};
726
roman2eab4742023-06-06 10:00:26 +0200727#ifdef NC_ENABLED_SSH_TLS
roman41a11e42022-06-22 09:27:08 +0200728
729/**
730 * @brief PAM callback arguments.
731 */
732struct nc_pam_thread_arg {
733 ssh_message msg; /**< libssh message */
734 struct nc_session *session; /**< NETCONF session */
romanc1d2b092023-02-02 08:58:27 +0100735 struct nc_server_ssh_opts *opts; /**< SSH server opts */
roman41a11e42022-06-22 09:27:08 +0200736};
737
roman2eab4742023-06-06 10:00:26 +0200738/**
739 * @brief Converts private key format to a string.
740 * This string is the same, as in a PKCS#1 Private key format, meaning
741 * ---- BEGIN (string) PRIVATE KEY ----. The string can be empty for some types.
742 *
743 * @param[in] format Private key format.
744 * @return String representing the private key or NULL.
745 */
746const char *nc_privkey_format_to_str(NC_PRIVKEY_FORMAT format);
747
roman13145912023-08-17 15:36:54 +0200748/**
749 * @brief Decodes base64 to binary.
750 *
751 * @param[in] base64 Base64 string.
752 * @param[out] bin Binary result, memory managed by the caller.
753 * @return Length of the binary data on success, -1 on error.
754 */
755int nc_base64_to_bin(const char *base64, char **bin);
756
roman2eab4742023-06-06 10:00:26 +0200757#endif /* NC_ENABLED_SSH_TLS */
roman41a11e42022-06-22 09:27:08 +0200758
Michal Vasko4eb3c312016-03-01 14:09:37 +0100759void *nc_realloc(void *ptr, size_t size);
760
romanf6e32012023-04-24 15:51:26 +0200761struct passwd *nc_getpw(uid_t uid, const char *username, struct passwd *pwd_buf, char **buf, size_t *buf_size);
Jan Kundrát6aa0eeb2021-10-08 21:10:05 +0200762
Michal Vasko131120a2018-05-29 15:44:02 +0200763NC_MSG_TYPE nc_send_msg_io(struct nc_session *session, int io_timeout, struct lyd_node *op);
Michal Vasko086311b2016-01-08 09:53:11 +0100764
roman6ece9c52022-06-22 09:29:17 +0200765/**
Michal Vaskod8a74192023-02-06 15:51:50 +0100766 * @brief Get current clock (uses COMPAT_CLOCK_ID) time with an offset.
roman6ece9c52022-06-22 09:29:17 +0200767 *
Michal Vaskod8a74192023-02-06 15:51:50 +0100768 * @param[out] ts Current time offset by @p add_ms.
769 * @param[in] add_ms Number of milliseconds to add.
roman6ece9c52022-06-22 09:29:17 +0200770 */
Michal Vaskod8a74192023-02-06 15:51:50 +0100771void nc_timeouttime_get(struct timespec *ts, uint32_t add_ms);
Michal Vaskoe852c8b2017-10-05 10:02:20 +0200772
roman6ece9c52022-06-22 09:29:17 +0200773/**
Michal Vaskod8a74192023-02-06 15:51:50 +0100774 * @brief Get time difference based on the current time (uses COMPAT_CLOCK_ID).
roman6ece9c52022-06-22 09:29:17 +0200775 *
Michal Vasko60d8ffb2022-07-21 11:08:34 +0200776 * @param[in] ts Timespec structure holding real time from which the current time is going to be subtracted.
roman6ece9c52022-06-22 09:29:17 +0200777 * @return Time difference in milliseconds.
778 */
Michal Vaskod8a74192023-02-06 15:51:50 +0100779int32_t nc_timeouttime_cur_diff(const struct timespec *ts);
Michal Vasko60d8ffb2022-07-21 11:08:34 +0200780
781/**
Michal Vaskod8a74192023-02-06 15:51:50 +0100782 * @brief Get current CLOCK_REALTIME time.
Michal Vasko60d8ffb2022-07-21 11:08:34 +0200783 *
Michal Vaskod8a74192023-02-06 15:51:50 +0100784 * @param[out] ts Current real time.
Michal Vasko60d8ffb2022-07-21 11:08:34 +0200785 */
Michal Vaskod8a74192023-02-06 15:51:50 +0100786void nc_realtime_get(struct timespec *ts);
Michal Vasko99f251b2017-01-11 11:31:46 +0100787
romanc1d2b092023-02-02 08:58:27 +0100788int nc_sock_configure_keepalive(int sock, struct nc_keepalives *ka);
Michal Vaskobe52dc22018-10-17 09:28:17 +0200789
Michal Vasko131120a2018-05-29 15:44:02 +0200790struct nc_session *nc_new_session(NC_SIDE side, int shared_ti);
Michal Vaskoade892d2017-02-22 13:40:35 +0100791
Michal Vasko131120a2018-05-29 15:44:02 +0200792int nc_session_rpc_lock(struct nc_session *session, int timeout, const char *func);
Michal Vaskoade892d2017-02-22 13:40:35 +0100793
Michal Vasko131120a2018-05-29 15:44:02 +0200794int nc_session_rpc_unlock(struct nc_session *session, int timeout, const char *func);
795
Michal Vasko01130bd2021-08-26 11:47:38 +0200796/**
797 * @brief Lock IO lock on a session.
798 *
799 * @param[in] session Session to lock.
800 * @param[in] timeout Timeout in msec to use.
801 * @param[in] func Caller function for logging.
802 * @return 1 on success;
803 * @return 0 on timeout;
804 * @return -1 on error.
805 */
Michal Vasko131120a2018-05-29 15:44:02 +0200806int nc_session_io_lock(struct nc_session *session, int timeout, const char *func);
807
Michal Vasko01130bd2021-08-26 11:47:38 +0200808/**
809 * @brief Unlock IO lock on a session.
810 *
811 * @param[in] session Session to unlock.
812 * @param[in] func Caller function for logging.
813 * @return 1 on success;
814 * @return -1 on error.
815 */
Michal Vasko131120a2018-05-29 15:44:02 +0200816int nc_session_io_unlock(struct nc_session *session, const char *func);
Michal Vasko086311b2016-01-08 09:53:11 +0100817
Michal Vasko01130bd2021-08-26 11:47:38 +0200818/**
819 * @brief Lock MSGS lock on a session.
820 *
821 * @param[in] session Session to lock.
822 * @param[in,out] timeout Timeout in msec to use. If positive and on successful lock, is updated based on what was elapsed.
823 * @param[in] func Caller function for logging.
824 * @return 1 on success;
825 * @return 0 on timeout;
826 * @return -1 on error.
827 */
828int nc_session_client_msgs_lock(struct nc_session *session, int *timeout, const char *func);
829
830/**
831 * @brief Unlock MSGS lock on a session.
832 *
833 * @param[in] session Session to unlock.
834 * @param[in] func Caller function for logging.
835 * @return 1 on success;
836 * @return -1 on error.
837 */
838int nc_session_client_msgs_unlock(struct nc_session *session, const char *func);
839
Michal Vasko227f8ff2016-07-26 14:08:59 +0200840int nc_ps_lock(struct nc_pollsession *ps, uint8_t *id, const char *func);
Michal Vaskof04a52a2016-04-07 10:52:10 +0200841
Michal Vasko227f8ff2016-07-26 14:08:59 +0200842int nc_ps_unlock(struct nc_pollsession *ps, uint8_t id, const char *func);
Michal Vaskof04a52a2016-04-07 10:52:10 +0200843
Michal Vasko78939072022-12-12 07:43:18 +0100844int nc_client_session_new_ctx(struct nc_session *session, struct ly_ctx *ctx);
845
Radek Krejci206fcd62015-10-07 15:42:48 +0200846/**
Michal Vaskoc446a382021-06-18 08:54:05 +0200847 * @brief Fill libyang context in @p session. Context models are based on the stored session
Michal Vasko9e2d3a32015-11-10 13:09:18 +0100848 * capabilities. If the server does not support \<get-schema\>, the models are searched
Radek Krejcic9a6d252016-03-04 14:50:34 +0100849 * for in the directory set using nc_client_schema_searchpath().
Michal Vasko9e2d3a32015-11-10 13:09:18 +0100850 *
851 * @param[in] session Session to create the context for.
Michal Vaskoef578332016-01-25 13:20:09 +0100852 * @return 0 on success, 1 on some missing schemas, -1 on error.
Michal Vasko9e2d3a32015-11-10 13:09:18 +0100853 */
Michal Vasko57eb9402015-12-08 14:38:12 +0100854int nc_ctx_check_and_fill(struct nc_session *session);
Michal Vasko9e2d3a32015-11-10 13:09:18 +0100855
856/**
Michal Vaskoc446a382021-06-18 08:54:05 +0200857 * @brief Perform NETCONF handshake on @p session.
Michal Vasko9e2d3a32015-11-10 13:09:18 +0100858 *
859 * @param[in] session NETCONF session to use.
Michal Vasko71090fc2016-05-24 16:37:28 +0200860 * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message parsing fail
861 * (server-side only), NC_MSG_WOULDBLOCK on timeout, NC_MSG_ERROR on other error.
Michal Vasko9e2d3a32015-11-10 13:09:18 +0100862 */
Michal Vasko131120a2018-05-29 15:44:02 +0200863NC_MSG_TYPE nc_handshake_io(struct nc_session *session);
Michal Vasko9e2d3a32015-11-10 13:09:18 +0100864
865/**
Michal Vaskof05562c2016-01-20 12:06:43 +0100866 * @brief Create a socket connection.
867 *
868 * @param[in] host Hostname to connect to.
869 * @param[in] port Port to connect on.
Michal Vasko056f53c2022-10-21 13:38:15 +0200870 * @param[in] timeout_ms Timeout in ms for blocking the connect + select call (-1 for infinite).
Michal Vaskoe49a15f2019-05-27 14:18:36 +0200871 * @param[in] ka Keepalives parameters.
Michal Vasko056f53c2022-10-21 13:38:15 +0200872 * @param[in,out] sock_pending Previous pending socket. If set, equal to -1, and the connection is still in progress
873 * after @p timeout, it is set to the pending socket but -1 is returned. If NULL, the socket is closed on timeout.
Michal Vasko66032bc2019-01-22 15:03:12 +0100874 * @param[out] ip_host Optional parameter with string IP address of the connected host.
Michal Vaskof05562c2016-01-20 12:06:43 +0100875 * @return Connected socket or -1 on error.
876 */
Michal Vasko056f53c2022-10-21 13:38:15 +0200877int nc_sock_connect(const char *host, uint16_t port, int timeout_ms, struct nc_keepalives *ka, int *sock_pending,
878 char **ip_host);
Michal Vaskof05562c2016-01-20 12:06:43 +0100879
880/**
881 * @brief Accept a new socket connection.
Michal Vasko80cad7f2015-12-08 14:42:27 +0100882 *
Michal Vaskoc61c4492016-01-25 11:13:34 +0100883 * @param[in] sock Listening socket.
Michal Vaskof05562c2016-01-20 12:06:43 +0100884 * @param[in] timeout Timeout in milliseconds.
885 * @param[out] peer_host Host the new connection was initiated from. Can be NULL.
886 * @param[out] peer_port Port the new connection is connected on. Can be NULL.
Michal Vasko80cad7f2015-12-08 14:42:27 +0100887 * @return Connected socket with the new connection, -1 on error.
888 */
Michal Vaskoc61c4492016-01-25 11:13:34 +0100889int nc_sock_accept(int sock, int timeout, char **peer_host, uint16_t *peer_port);
Michal Vasko80cad7f2015-12-08 14:42:27 +0100890
Michal Vasko1a38c862016-01-15 15:50:07 +0100891/**
Olivier Matzac7fa2f2018-10-11 10:02:04 +0200892 * @brief Create a listening socket (AF_INET or AF_INET6).
Michal Vasko1a38c862016-01-15 15:50:07 +0100893 *
894 * @param[in] address IP address to listen on.
895 * @param[in] port Port to listen on.
Michal Vaskoe49a15f2019-05-27 14:18:36 +0200896 * @param[in] ka Keepalives parameters.
Michal Vasko1a38c862016-01-15 15:50:07 +0100897 * @return Listening socket, -1 on error.
898 */
Michal Vaskoe49a15f2019-05-27 14:18:36 +0200899int nc_sock_listen_inet(const char *address, uint16_t port, struct nc_keepalives *ka);
Olivier Matzac7fa2f2018-10-11 10:02:04 +0200900
901/**
902 * @brief Create a listening socket (AF_UNIX).
903 *
roman83683fb2023-02-24 09:15:23 +0100904 * @param[in] opts The server options (unix permissions and address of the socket).
Olivier Matzac7fa2f2018-10-11 10:02:04 +0200905 * @return Listening socket, -1 on error.
906 */
roman83683fb2023-02-24 09:15:23 +0100907int nc_sock_listen_unix(const struct nc_server_unix_opts *opts);
Michal Vaskofb89d772016-01-08 12:25:35 +0100908
Michal Vasko1a38c862016-01-15 15:50:07 +0100909/**
910 * @brief Accept a new connection on a listening socket.
911 *
912 * @param[in] binds Structure with the listening sockets.
Michal Vaskoc446a382021-06-18 08:54:05 +0200913 * @param[in] bind_count Number of @p binds.
Michal Vasko1a38c862016-01-15 15:50:07 +0100914 * @param[in] timeout Timeout for accepting.
Michal Vasko1a38c862016-01-15 15:50:07 +0100915 * @param[out] host Host of the remote peer. Can be NULL.
916 * @param[out] port Port of the new connection. Can be NULL.
Michal Vasko3031aae2016-01-27 16:07:18 +0100917 * @param[out] idx Index of the bind that was accepted. Can be NULL.
Michal Vasko1a38c862016-01-15 15:50:07 +0100918 * @return Accepted socket of the new connection, -1 on error.
919 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100920int nc_sock_accept_binds(struct nc_bind *binds, uint16_t bind_count, int timeout, char **host, uint16_t *port, uint16_t *idx);
921
922/**
Michal Vaskoda514772016-02-01 11:32:01 +0100923 * @brief Lock endpoint structures for reading and the specific endpoint.
924 *
925 * @param[in] name Name of the endpoint.
Michal Vasko2e6defd2016-10-07 15:48:15 +0200926 * @param[in] ti Expected transport.
Michal Vaskoe2713da2016-08-22 16:06:40 +0200927 * @param[out] idx Index of the endpoint. Optional.
Michal Vaskoda514772016-02-01 11:32:01 +0100928 * @return Endpoint structure.
929 */
Michal Vaskoade892d2017-02-22 13:40:35 +0100930struct nc_endpt *nc_server_endpt_lock_get(const char *name, NC_TRANSPORT_IMPL ti, uint16_t *idx);
Michal Vasko3031aae2016-01-27 16:07:18 +0100931
Michal Vaskoda514772016-02-01 11:32:01 +0100932/**
Michal Vaskoadf30f02019-06-24 09:34:47 +0200933 * @brief Lock CH client structures for reading and lock the specific client.
Michal Vasko2e6defd2016-10-07 15:48:15 +0200934 *
935 * @param[in] name Name of the CH client.
Michal Vaskoadf30f02019-06-24 09:34:47 +0200936 * @param[in] endpt_name Endpoint of the CH client.
Michal Vasko2e6defd2016-10-07 15:48:15 +0200937 * @param[in] ti Expected transport.
Michal Vaskoadf30f02019-06-24 09:34:47 +0200938 * @param[out] client_p Pointer to the CH client.
939 * @return CH endpoint structure.
Michal Vasko2e6defd2016-10-07 15:48:15 +0200940 */
Michal Vaskoadf30f02019-06-24 09:34:47 +0200941struct nc_ch_endpt *nc_server_ch_client_lock(const char *name, const char *endpt_name, NC_TRANSPORT_IMPL ti,
942 struct nc_ch_client **client_p);
Michal Vasko2e6defd2016-10-07 15:48:15 +0200943
944/**
945 * @brief Unlock CH client strcutures and the specific client.
946 *
947 * @param[in] endpt Locked CH client structure.
948 */
949void nc_server_ch_client_unlock(struct nc_ch_client *client);
950
951/**
Michal Vaskoda514772016-02-01 11:32:01 +0100952 * @brief Add a client Call Home bind, listen on it.
953 *
954 * @param[in] address Address to bind to.
Michal Vasko2e6defd2016-10-07 15:48:15 +0200955 * @param[in] port Port to bind to.
Michal Vasko9d4cca52022-09-07 11:19:57 +0200956 * @param[in] hostname Expected server hostname, may be NULL.
Michal Vasko2e6defd2016-10-07 15:48:15 +0200957 * @param[in] ti Transport to use.
Michal Vaskoda514772016-02-01 11:32:01 +0100958 * @return 0 on success, -1 on error.
959 */
Michal Vasko9d4cca52022-09-07 11:19:57 +0200960int nc_client_ch_add_bind_listen(const char *address, uint16_t port, const char *hostname, NC_TRANSPORT_IMPL ti);
Michal Vasko3031aae2016-01-27 16:07:18 +0100961
Michal Vaskoda514772016-02-01 11:32:01 +0100962/**
963 * @brief Remove a client Call Home bind, stop listening on it.
964 *
965 * @param[in] address Address of the bind. NULL matches any address.
966 * @param[in] port Port of the bind. 0 matches all ports.
Michal Vasko2e6defd2016-10-07 15:48:15 +0200967 * @param[in] ti Transport of the bind. 0 matches all transports.
Michal Vaskoda514772016-02-01 11:32:01 +0100968 * @return 0 on success, -1 on no matches found.
969 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100970int nc_client_ch_del_bind(const char *address, uint16_t port, NC_TRANSPORT_IMPL ti);
971
Michal Vaskoda514772016-02-01 11:32:01 +0100972/**
973 * @brief Connect to a listening NETCONF client using Call Home.
974 *
975 * @param[in] host Hostname to connect to.
976 * @param[in] port Port to connect to.
977 * @param[in] ti Transport fo the connection.
Michal Vaskoda514772016-02-01 11:32:01 +0100978 * @param[out] session New Call Home session.
Michal Vasko71090fc2016-05-24 16:37:28 +0200979 * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message
980 * parsing fail, NC_MSG_WOULDBLOCK on timeout, NC_MSG_ERROR on other errors.
Michal Vaskoda514772016-02-01 11:32:01 +0100981 */
Michal Vasko71090fc2016-05-24 16:37:28 +0200982NC_MSG_TYPE nc_connect_callhome(const char *host, uint16_t port, NC_TRANSPORT_IMPL ti, struct nc_session **session);
Michal Vaskofb89d772016-01-08 12:25:35 +0100983
roman2eab4742023-06-06 10:00:26 +0200984#ifdef NC_ENABLED_SSH_TLS
Michal Vasko9e036d52016-01-08 10:49:26 +0100985
Michal Vaskoda514772016-02-01 11:32:01 +0100986/**
987 * @brief Accept a server Call Home connection on a socket.
988 *
989 * @param[in] sock Socket with a new connection.
990 * @param[in] host Hostname of the server.
991 * @param[in] port Port of the server.
992 * @param[in] ctx Context for the session. Can be NULL.
Michal Vasko0190bc32016-03-02 15:47:49 +0100993 * @param[in] timeout Transport operations timeout in msec.
Michal Vaskoda514772016-02-01 11:32:01 +0100994 * @return New session, NULL on error.
995 */
Michal Vasko0190bc32016-03-02 15:47:49 +0100996struct nc_session *nc_accept_callhome_ssh_sock(int sock, const char *host, uint16_t port, struct ly_ctx *ctx, int timeout);
Michal Vasko3031aae2016-01-27 16:07:18 +0100997
Michal Vasko1a38c862016-01-15 15:50:07 +0100998/**
999 * @brief Establish SSH transport on a socket.
1000 *
1001 * @param[in] session Session structure of the new connection.
1002 * @param[in] sock Socket of the new connection.
Michal Vasko0190bc32016-03-02 15:47:49 +01001003 * @param[in] timeout Transport operations timeout in msec (not SSH authentication one).
Michal Vasko1a38c862016-01-15 15:50:07 +01001004 * @return 1 on success, 0 on timeout, -1 on error.
1005 */
romanc1d2b092023-02-02 08:58:27 +01001006int nc_accept_ssh_session(struct nc_session *session, struct nc_server_ssh_opts *opts, int sock, int timeout);
Michal Vasko9e036d52016-01-08 10:49:26 +01001007
Michal Vasko96164bf2016-01-21 15:41:58 +01001008/**
romanc1d2b092023-02-02 08:58:27 +01001009 * @brief Process a SSH message.
Michal Vasko96164bf2016-01-21 15:41:58 +01001010 *
romanc1d2b092023-02-02 08:58:27 +01001011 * @param[in] session Session structure of the connection.
1012 * @param[in] opts Endpoint SSH options on which the session was created.
Michal Vasko96164bf2016-01-21 15:41:58 +01001013 * @param[in] msg SSH message itself.
romand745f752023-03-24 15:53:12 +01001014 * @param[in] state State of the authentication.
Michal Vasko96164bf2016-01-21 15:41:58 +01001015 * @return 0 if the message was handled, 1 if it is left up to libssh.
1016 */
romand745f752023-03-24 15:53:12 +01001017int nc_session_ssh_msg(struct nc_session *session, struct nc_server_ssh_opts *opts, ssh_message msg, struct nc_auth_state *state);
Michal Vasko96164bf2016-01-21 15:41:58 +01001018
Michal Vaskoc6b9c7b2016-01-28 11:10:08 +01001019void nc_server_ssh_clear_opts(struct nc_server_ssh_opts *opts);
Michal Vasko3031aae2016-01-27 16:07:18 +01001020
Michal Vaskob7558c52016-02-26 15:04:19 +01001021void nc_client_ssh_destroy_opts(void);
Kevin Barrettd37d2fb2019-08-28 14:25:34 -04001022void _nc_client_ssh_destroy_opts(struct nc_client_ssh_opts *opts);
Michal Vaskob7558c52016-02-26 15:04:19 +01001023
Michal Vasko9d4cca52022-09-07 11:19:57 +02001024struct nc_session *nc_accept_callhome_tls_sock(int sock, const char *host, uint16_t port, struct ly_ctx *ctx,
1025 int timeout, const char *peername);
Michal Vasko3031aae2016-01-27 16:07:18 +01001026
Michal Vasko1a38c862016-01-15 15:50:07 +01001027/**
1028 * @brief Establish TLS transport on a socket.
1029 *
1030 * @param[in] session Session structure of the new connection.
1031 * @param[in] sock Socket of the new connection.
Michal Vasko0190bc32016-03-02 15:47:49 +01001032 * @param[in] timeout Transport operations timeout in msec.
Michal Vasko1a38c862016-01-15 15:50:07 +01001033 * @return 1 on success, 0 on timeout, -1 on error.
1034 */
roman3f9b65c2023-06-05 14:26:58 +02001035int nc_accept_tls_session(struct nc_session *session, struct nc_server_tls_opts *opts, int sock, int timeout);
Michal Vasko9e036d52016-01-08 10:49:26 +01001036
Michal Vaskoc6b9c7b2016-01-28 11:10:08 +01001037void nc_server_tls_clear_opts(struct nc_server_tls_opts *opts);
Michal Vasko3031aae2016-01-27 16:07:18 +01001038
Michal Vaskob7558c52016-02-26 15:04:19 +01001039void nc_client_tls_destroy_opts(void);
Kevin Barrettd37d2fb2019-08-28 14:25:34 -04001040void _nc_client_tls_destroy_opts(struct nc_client_tls_opts *opts);
Michal Vaskob7558c52016-02-26 15:04:19 +01001041
roman2eab4742023-06-06 10:00:26 +02001042#endif /* NC_ENABLED_SSH_TLS */
Michal Vasko9e036d52016-01-08 10:49:26 +01001043
Michal Vasko80cad7f2015-12-08 14:42:27 +01001044/**
Radek Krejci206fcd62015-10-07 15:42:48 +02001045 * Functions
1046 * - io.c
1047 */
1048
1049/**
1050 * @brief Read message from the wire.
1051 *
1052 * Accepts hello, rpc, rpc-reply and notification. Received string is transformed into
1053 * libyang XML tree and the message type is detected from the top level element.
1054 *
1055 * @param[in] session NETCONF session from which the message is being read.
Michal Vasko131120a2018-05-29 15:44:02 +02001056 * @param[in] io_timeout Timeout in milliseconds. Negative value means infinite timeout,
Radek Krejci206fcd62015-10-07 15:42:48 +02001057 * zero value causes to return immediately.
Michal Vasko77367452021-02-16 16:32:18 +01001058 * @param[out] msg Input handled with the NETCONF message (application layer data).
1059 * @return 1 on success.
1060 * @return 0 on timeout.
1061 * @return -1 on error.
1062 * @return -2 on malformed message error.
Radek Krejci206fcd62015-10-07 15:42:48 +02001063 */
Michal Vaskob83a3fa2021-05-26 09:53:42 +02001064int nc_read_msg_poll_io(struct nc_session *session, int io_timeout, struct ly_in **msg);
Michal Vasko05ba9df2016-01-13 14:40:27 +01001065
1066/**
Michal Vasko77367452021-02-16 16:32:18 +01001067 * @brief Read a message from the wire.
Michal Vasko05ba9df2016-01-13 14:40:27 +01001068 *
1069 * @param[in] session NETCONF session from which the message is being read.
Michal Vasko131120a2018-05-29 15:44:02 +02001070 * @param[in] io_timeout Timeout in milliseconds. Negative value means infinite timeout,
1071 * zero value causes to return immediately.
Michal Vasko77367452021-02-16 16:32:18 +01001072 * @param[out] msg Input handled with the NETCONF message (application layer data).
Michal Vaskoc446a382021-06-18 08:54:05 +02001073 * @param[in] passing_io_lock True if @p session IO lock is already held. This function always unlocks
Michal Vasko131120a2018-05-29 15:44:02 +02001074 * it before returning!
Michal Vasko77367452021-02-16 16:32:18 +01001075 * @return 1 on success.
1076 * @return 0 on timeout.
1077 * @return -1 on error.
1078 * @return -2 on malformed message error.
Michal Vasko05ba9df2016-01-13 14:40:27 +01001079 */
Michal Vaskob83a3fa2021-05-26 09:53:42 +02001080int nc_read_msg_io(struct nc_session *session, int io_timeout, struct ly_in **msg, int passing_io_lock);
Radek Krejci206fcd62015-10-07 15:42:48 +02001081
Radek Krejcife0b3472015-10-12 13:43:42 +02001082/**
1083 * @brief Write message into wire.
1084 *
1085 * @param[in] session NETCONF session to which the message will be written.
Michal Vasko131120a2018-05-29 15:44:02 +02001086 * @param[in] io_timeout Timeout in milliseconds. Negative value means infinite timeout,
1087 * zero value causes to return immediately.
Radek Krejci127f8952016-10-12 14:57:16 +02001088 * @param[in] type The type of the message to write, specified as #NC_MSG_TYPE value. According to the type, the
Radek Krejcife0b3472015-10-12 13:43:42 +02001089 * specific additional parameters are required or accepted:
1090 * - #NC_MSG_RPC
1091 * - `struct lyd_node *op;` - operation (content of the \<rpc/\> to be sent. Required parameter.
Michal Vasko77367452021-02-16 16:32:18 +01001092 * - `const char *attrs;` - additional attributes to be added into the \<rpc/\> element. Required parameter.
Radek Krejcife0b3472015-10-12 13:43:42 +02001093 * - #NC_MSG_REPLY
Michal Vasko77367452021-02-16 16:32:18 +01001094 * - `struct lyd_node_opaq *rpc_envp;` - parsed envelopes of the RPC to reply to. Required parameter.
Michal Vasko05ba9df2016-01-13 14:40:27 +01001095 * - `struct nc_server_reply *reply;` - RPC reply. Required parameter.
Radek Krejcife0b3472015-10-12 13:43:42 +02001096 * - #NC_MSG_NOTIF
Michal Vasko131120a2018-05-29 15:44:02 +02001097 * - `struct nc_server_notif *notif;` - notification object. Required parameter.
1098 * - #NC_MSG_HELLO
1099 * - `const char **capabs;` - capabilities array ended with NULL. Required parameter.
1100 * - `uint32_t *sid;` - session ID to be included in the hello message. Optional parameter.
1101 *
1102 * @return Type of the written message. #NC_MSG_WOULDBLOCK is returned if timeout is positive
1103 * (or zero) value and IO lock could not be acquired in that time. #NC_MSG_ERROR is
1104 * returned on error and #NC_MSG_NONE is never returned by this function.
Radek Krejcife0b3472015-10-12 13:43:42 +02001105 */
Michal Vasko131120a2018-05-29 15:44:02 +02001106NC_MSG_TYPE nc_write_msg_io(struct nc_session *session, int io_timeout, int type, ...);
Radek Krejcife0b3472015-10-12 13:43:42 +02001107
Michal Vasko1a38c862016-01-15 15:50:07 +01001108/**
1109 * @brief Check whether a session is still connected (on transport layer).
1110 *
1111 * @param[in] session Session to check.
1112 * @return 1 if connected, 0 if not.
1113 */
Michal Vasko428087d2016-01-14 16:04:28 +01001114int nc_session_is_connected(struct nc_session *session);
1115
Radek Krejci206fcd62015-10-07 15:42:48 +02001116#endif /* NC_SESSION_PRIVATE_H_ */