Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 1 | /** |
| 2 | * \file session_p.h |
| 3 | * \author Radek Krejci <rkrejci@cesnet.cz> |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 4 | * \author Michal Vasko <mvasko@cesnet.cz> |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 5 | * \brief libnetconf2 session manipulation |
| 6 | * |
Michal Vasko | 4c1fb49 | 2017-01-30 14:31:07 +0100 | [diff] [blame] | 7 | * Copyright (c) 2017 CESNET, z.s.p.o. |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 8 | * |
Radek Krejci | 9b81f5b | 2016-02-24 13:14:49 +0100 | [diff] [blame] | 9 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 10 | * You may not use this file except in compliance with the License. |
| 11 | * You may obtain a copy of the License at |
Michal Vasko | afd416b | 2016-02-25 14:51:46 +0100 | [diff] [blame] | 12 | * |
Radek Krejci | 9b81f5b | 2016-02-24 13:14:49 +0100 | [diff] [blame] | 13 | * https://opensource.org/licenses/BSD-3-Clause |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 14 | */ |
| 15 | |
| 16 | #ifndef NC_SESSION_PRIVATE_H_ |
| 17 | #define NC_SESSION_PRIVATE_H_ |
| 18 | |
Radek Krejci | fe0b347 | 2015-10-12 13:43:42 +0200 | [diff] [blame] | 19 | #include <stdint.h> |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 20 | #include <pthread.h> |
| 21 | |
Michal Vasko | 4ef1493 | 2015-12-04 11:09:10 +0100 | [diff] [blame] | 22 | #include <libyang/libyang.h> |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 23 | |
Michal Vasko | 4ef1493 | 2015-12-04 11:09:10 +0100 | [diff] [blame] | 24 | #include "libnetconf.h" |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 25 | #include "netconf.h" |
Michal Vasko | 4ef1493 | 2015-12-04 11:09:10 +0100 | [diff] [blame] | 26 | #include "session.h" |
Michal Vasko | a8ad448 | 2016-01-28 14:25:54 +0100 | [diff] [blame] | 27 | #include "messages_client.h" |
Michal Vasko | 4ef1493 | 2015-12-04 11:09:10 +0100 | [diff] [blame] | 28 | |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 29 | #ifdef NC_ENABLED_SSH |
Michal Vasko | 4ef1493 | 2015-12-04 11:09:10 +0100 | [diff] [blame] | 30 | |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 31 | # include <libssh/libssh.h> |
| 32 | # include <libssh/callbacks.h> |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 33 | # include <libssh/server.h> |
Michal Vasko | 7b62fed | 2015-10-26 15:39:46 +0100 | [diff] [blame] | 34 | |
| 35 | /* seconds */ |
Michal Vasko | c111ac5 | 2015-12-08 14:36:36 +0100 | [diff] [blame] | 36 | # define NC_SSH_TIMEOUT 10 |
Michal Vasko | 5c2f795 | 2016-01-22 13:16:31 +0100 | [diff] [blame] | 37 | /* number of all supported authentication methods */ |
Michal Vasko | c111ac5 | 2015-12-08 14:36:36 +0100 | [diff] [blame] | 38 | # define NC_SSH_AUTH_COUNT 3 |
Michal Vasko | 7b62fed | 2015-10-26 15:39:46 +0100 | [diff] [blame] | 39 | |
Michal Vasko | 7227f35 | 2016-02-01 12:11:40 +0100 | [diff] [blame] | 40 | /* ACCESS unlocked */ |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 41 | struct nc_client_ssh_opts { |
Michal Vasko | 7b62fed | 2015-10-26 15:39:46 +0100 | [diff] [blame] | 42 | /* SSH authentication method preferences */ |
| 43 | struct { |
| 44 | NC_SSH_AUTH_TYPE type; |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 45 | int16_t value; |
Michal Vasko | c111ac5 | 2015-12-08 14:36:36 +0100 | [diff] [blame] | 46 | } auth_pref[NC_SSH_AUTH_COUNT]; |
Michal Vasko | 7b62fed | 2015-10-26 15:39:46 +0100 | [diff] [blame] | 47 | |
| 48 | /* SSH key pairs */ |
| 49 | struct { |
| 50 | char *pubkey_path; |
| 51 | char *privkey_path; |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 52 | int8_t privkey_crypt; |
Michal Vasko | 7b62fed | 2015-10-26 15:39:46 +0100 | [diff] [blame] | 53 | } *keys; |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 54 | uint16_t key_count; |
| 55 | |
Michal Vasko | 30e2c87 | 2016-02-18 10:03:21 +0100 | [diff] [blame] | 56 | /* SSH authentication callbacks */ |
Michal Vasko | ef112d7 | 2016-02-18 13:28:25 +0100 | [diff] [blame] | 57 | int (*auth_hostkey_check)(const char *hostname, ssh_session session); |
Michal Vasko | 30e2c87 | 2016-02-18 10:03:21 +0100 | [diff] [blame] | 58 | char *(*auth_password)(const char *, const char *); |
| 59 | char *(*auth_interactive)(const char *, const char *, const char *, int); |
| 60 | char *(*auth_privkey_passphrase)(const char *); |
| 61 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 62 | char *username; |
Michal Vasko | 7b62fed | 2015-10-26 15:39:46 +0100 | [diff] [blame] | 63 | }; |
| 64 | |
Michal Vasko | 7227f35 | 2016-02-01 12:11:40 +0100 | [diff] [blame] | 65 | /* ACCESS locked, separate locks */ |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 66 | struct nc_server_ssh_opts { |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 67 | /* SSH bind options */ |
| 68 | const char **hostkeys; |
| 69 | uint8_t hostkey_count; |
| 70 | const char *banner; |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 71 | |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 72 | int auth_methods; |
| 73 | uint16_t auth_attempts; |
| 74 | uint16_t auth_timeout; |
| 75 | }; |
| 76 | |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 77 | #endif /* NC_ENABLED_SSH */ |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 78 | |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 79 | #ifdef NC_ENABLED_TLS |
Michal Vasko | 4ef1493 | 2015-12-04 11:09:10 +0100 | [diff] [blame] | 80 | |
Michal Vasko | c111ac5 | 2015-12-08 14:36:36 +0100 | [diff] [blame] | 81 | # include <openssl/bio.h> |
| 82 | # include <openssl/ssl.h> |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 83 | |
Michal Vasko | 7227f35 | 2016-02-01 12:11:40 +0100 | [diff] [blame] | 84 | /* ACCESS unlocked */ |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 85 | struct nc_client_tls_opts { |
| 86 | char *cert_path; |
| 87 | char *key_path; |
| 88 | char *ca_file; |
| 89 | char *ca_dir; |
| 90 | int8_t tls_ctx_change; |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 91 | SSL_CTX *tls_ctx; |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 92 | |
| 93 | char *crl_file; |
| 94 | char *crl_dir; |
| 95 | int8_t crl_store_change; |
| 96 | X509_STORE *crl_store; |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 97 | }; |
| 98 | |
Michal Vasko | 7227f35 | 2016-02-01 12:11:40 +0100 | [diff] [blame] | 99 | /* ACCESS locked, separate locks */ |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 100 | struct nc_server_tls_opts { |
Michal Vasko | 4c1fb49 | 2017-01-30 14:31:07 +0100 | [diff] [blame] | 101 | const char *server_cert; |
| 102 | const char **trusted_cert_lists; |
| 103 | uint16_t trusted_cert_list_count; |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 104 | const char *trusted_ca_file; |
| 105 | const char *trusted_ca_dir; |
Michal Vasko | 0457bb4 | 2016-01-08 15:49:13 +0100 | [diff] [blame] | 106 | X509_STORE *crl_store; |
| 107 | |
Michal Vasko | 5e3f339 | 2016-01-20 11:13:01 +0100 | [diff] [blame] | 108 | struct nc_ctn { |
Michal Vasko | 0457bb4 | 2016-01-08 15:49:13 +0100 | [diff] [blame] | 109 | uint32_t id; |
| 110 | const char *fingerprint; |
Michal Vasko | c14e3c8 | 2016-01-11 16:14:30 +0100 | [diff] [blame] | 111 | NC_TLS_CTN_MAPTYPE map_type; |
Michal Vasko | 0457bb4 | 2016-01-08 15:49:13 +0100 | [diff] [blame] | 112 | const char *name; |
Michal Vasko | 5e3f339 | 2016-01-20 11:13:01 +0100 | [diff] [blame] | 113 | struct nc_ctn *next; |
Michal Vasko | 0457bb4 | 2016-01-08 15:49:13 +0100 | [diff] [blame] | 114 | } *ctn; |
Michal Vasko | 0457bb4 | 2016-01-08 15:49:13 +0100 | [diff] [blame] | 115 | }; |
| 116 | |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 117 | #endif /* NC_ENABLED_TLS */ |
Radek Krejci | 4339024 | 2015-10-08 15:34:04 +0200 | [diff] [blame] | 118 | |
Michal Vasko | 7227f35 | 2016-02-01 12:11:40 +0100 | [diff] [blame] | 119 | /* ACCESS unlocked */ |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 120 | struct nc_client_opts { |
| 121 | char *schema_searchpath; |
| 122 | |
| 123 | struct nc_bind { |
| 124 | const char *address; |
| 125 | uint16_t port; |
| 126 | int sock; |
Michal Vasko | 0a3f375 | 2016-10-13 14:58:38 +0200 | [diff] [blame] | 127 | int pollin; |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 128 | } *ch_binds; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 129 | NC_TRANSPORT_IMPL *ch_bind_ti; |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 130 | uint16_t ch_bind_count; |
| 131 | }; |
| 132 | |
Michal Vasko | 0457bb4 | 2016-01-08 15:49:13 +0100 | [diff] [blame] | 133 | struct nc_server_opts { |
Michal Vasko | a43589b | 2016-02-17 13:24:59 +0100 | [diff] [blame] | 134 | /* ACCESS unlocked (dictionary locked internally in libyang) */ |
Michal Vasko | 0457bb4 | 2016-01-08 15:49:13 +0100 | [diff] [blame] | 135 | struct ly_ctx *ctx; |
| 136 | |
Michal Vasko | 7227f35 | 2016-02-01 12:11:40 +0100 | [diff] [blame] | 137 | /* ACCESS unlocked */ |
Michal Vasko | 0457bb4 | 2016-01-08 15:49:13 +0100 | [diff] [blame] | 138 | NC_WD_MODE wd_basic_mode; |
| 139 | int wd_also_supported; |
Radek Krejci | 658782b | 2016-12-04 22:04:55 +0100 | [diff] [blame] | 140 | unsigned int capabilities_count; |
| 141 | const char **capabilities; |
Michal Vasko | 0457bb4 | 2016-01-08 15:49:13 +0100 | [diff] [blame] | 142 | |
Michal Vasko | 7227f35 | 2016-02-01 12:11:40 +0100 | [diff] [blame] | 143 | /* ACCESS unlocked */ |
Michal Vasko | 0457bb4 | 2016-01-08 15:49:13 +0100 | [diff] [blame] | 144 | uint16_t hello_timeout; |
| 145 | uint16_t idle_timeout; |
Michal Vasko | 7060bcf | 2016-11-28 14:48:11 +0100 | [diff] [blame] | 146 | #ifdef NC_ENABLED_TLS |
| 147 | int (*user_verify_clb)(const struct nc_session *session); |
Michal Vasko | 4c1fb49 | 2017-01-30 14:31:07 +0100 | [diff] [blame] | 148 | |
| 149 | int (*server_cert_clb)(const char *name, void *user_data, char **cert_path, char **cert_data,char **privkey_path, |
| 150 | char **privkey_data, int *privkey_data_rsa); |
| 151 | void *server_cert_data; |
| 152 | void (*server_cert_data_free)(void *data); |
| 153 | |
| 154 | int (*trusted_cert_list_clb)(const char *name, void *user_data, char ***cert_paths, int *cert_path_count, |
| 155 | char ***cert_data, int *cert_data_count); |
| 156 | void *trusted_cert_list_data; |
| 157 | void (*trusted_cert_list_data_free)(void *data); |
Michal Vasko | 7060bcf | 2016-11-28 14:48:11 +0100 | [diff] [blame] | 158 | #endif |
Michal Vasko | 0457bb4 | 2016-01-08 15:49:13 +0100 | [diff] [blame] | 159 | |
Michal Vasko | 17dfda9 | 2016-12-01 14:06:16 +0100 | [diff] [blame] | 160 | #ifdef NC_ENABLED_SSH |
| 161 | /* ACCESS locked with authkey_lock */ |
| 162 | struct { |
| 163 | const char *path; |
| 164 | const char *base64; |
| 165 | NC_SSH_KEY_TYPE type; |
| 166 | const char *username; |
| 167 | } *authkeys; |
| 168 | uint16_t authkey_count; |
| 169 | pthread_mutex_t authkey_lock; |
Michal Vasko | 4c1fb49 | 2017-01-30 14:31:07 +0100 | [diff] [blame] | 170 | |
| 171 | int (*hostkey_clb)(const char *name, void *user_data, char **privkey_path, char **privkey_data, int *privkey_data_rsa); |
| 172 | void *hostkey_data; |
| 173 | void (*hostkey_data_free)(void *data); |
Michal Vasko | 17dfda9 | 2016-12-01 14:06:16 +0100 | [diff] [blame] | 174 | #endif |
| 175 | |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 176 | /* ACCESS locked, add/remove endpts/binds - bind_lock + WRITE endpt_lock (strict order!) |
| 177 | * modify endpts - WRITE endpt_lock |
| 178 | * access endpts - READ endpt_lock |
| 179 | * modify/poll binds - bind_lock */ |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 180 | struct nc_bind *binds; |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 181 | pthread_mutex_t bind_lock; |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 182 | struct nc_endpt { |
| 183 | const char *name; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 184 | NC_TRANSPORT_IMPL ti; |
| 185 | union { |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 186 | #ifdef NC_ENABLED_SSH |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 187 | struct nc_server_ssh_opts *ssh; |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 188 | #endif |
Michal Vasko | 6b15106 | 2016-08-22 16:20:47 +0200 | [diff] [blame] | 189 | #ifdef NC_ENABLED_TLS |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 190 | struct nc_server_tls_opts *tls; |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 191 | #endif |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 192 | } opts; |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 193 | } *endpts; |
| 194 | uint16_t endpt_count; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 195 | pthread_rwlock_t endpt_lock; |
| 196 | |
| 197 | /* ACCESS locked, add/remove CH clients - WRITE lock ch_client_lock |
| 198 | * modify CH clients - READ lock ch_client_lock + ch_client_lock */ |
| 199 | struct nc_ch_client { |
| 200 | const char *name; |
| 201 | NC_TRANSPORT_IMPL ti; |
| 202 | struct nc_ch_endpt { |
| 203 | const char *name; |
| 204 | const char *address; |
| 205 | uint16_t port; |
| 206 | } *ch_endpts; |
| 207 | uint16_t ch_endpt_count; |
| 208 | union { |
| 209 | #ifdef NC_ENABLED_SSH |
| 210 | struct nc_server_ssh_opts *ssh; |
| 211 | #endif |
| 212 | #ifdef NC_ENABLED_TLS |
| 213 | struct nc_server_tls_opts *tls; |
| 214 | #endif |
| 215 | } opts; |
| 216 | NC_CH_CONN_TYPE conn_type; |
| 217 | union { |
| 218 | struct { |
| 219 | uint32_t idle_timeout; |
| 220 | uint16_t ka_max_wait; |
| 221 | uint8_t ka_max_attempts; |
| 222 | } persist; |
| 223 | struct { |
| 224 | uint16_t idle_timeout; |
| 225 | uint16_t reconnect_timeout; |
| 226 | } period; |
| 227 | } conn; |
| 228 | NC_CH_START_WITH start_with; |
| 229 | uint8_t max_attempts; |
| 230 | pthread_mutex_t lock; |
| 231 | } *ch_clients; |
| 232 | uint16_t ch_client_count; |
| 233 | pthread_rwlock_t ch_client_lock; |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 234 | |
Michal Vasko | 7227f35 | 2016-02-01 12:11:40 +0100 | [diff] [blame] | 235 | /* ACCESS locked with sid_lock */ |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 236 | uint32_t new_session_id; |
| 237 | pthread_spinlock_t sid_lock; |
Michal Vasko | 0457bb4 | 2016-01-08 15:49:13 +0100 | [diff] [blame] | 238 | }; |
| 239 | |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 240 | /** |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 241 | * Sleep time in msec to wait between nc_recv_notif() calls. |
Michal Vasko | a8ad448 | 2016-01-28 14:25:54 +0100 | [diff] [blame] | 242 | */ |
| 243 | #define NC_CLIENT_NOTIF_THREAD_SLEEP 10000 |
| 244 | |
| 245 | /** |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 246 | * Timeout in msec for transport-related data to arrive (ssh_handle_key_exchange(), SSL_accept(), SSL_connect()). |
Michal Vasko | 36c7be8 | 2017-02-22 13:37:59 +0100 | [diff] [blame] | 247 | * It can be quite a lot on slow machines (waiting for TLS cert-to-name resolution, ...). |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 248 | */ |
Michal Vasko | 23edb63 | 2017-02-23 15:15:52 +0100 | [diff] [blame] | 249 | #define NC_TRANSPORT_TIMEOUT 10000 |
Michal Vasko | 36c7be8 | 2017-02-22 13:37:59 +0100 | [diff] [blame] | 250 | |
| 251 | /** |
| 252 | * Timeout in msec for acquiring a lock of a session (used with a condition, so higher numbers could be required |
| 253 | * only in case of extreme concurrency). |
| 254 | */ |
| 255 | #define NC_SESSION_LOCK_TIMEOUT 500 |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 256 | |
| 257 | /** |
Michal Vasko | f471fa0 | 2017-02-15 10:48:12 +0100 | [diff] [blame] | 258 | * Timeout in msec for acquiring a lock of a session that is supposed to be freed. |
| 259 | */ |
Michal Vasko | 36c7be8 | 2017-02-22 13:37:59 +0100 | [diff] [blame] | 260 | #define NC_SESSION_FREE_LOCK_TIMEOUT 1000 |
Michal Vasko | f471fa0 | 2017-02-15 10:48:12 +0100 | [diff] [blame] | 261 | |
| 262 | /** |
| 263 | * Timeout in msec for acquiring a lock of a pollsession structure. |
| 264 | */ |
| 265 | #define NC_PS_LOCK_TIMEOUT 500 |
| 266 | |
| 267 | /** |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 268 | * Time slept in msec if no endpoint is created for a running Call Home client. |
| 269 | */ |
| 270 | #define NC_CH_NO_ENDPT_WAIT 1000 |
| 271 | |
| 272 | /** |
| 273 | * Time slept in msec if no endpoint is suitable to use for connecting for a running Call Home client. |
| 274 | */ |
| 275 | #define NC_CH_ENDPT_FAIL_WAIT 1000 |
| 276 | |
| 277 | /** |
Michal Vasko | 80cad7f | 2015-12-08 14:42:27 +0100 | [diff] [blame] | 278 | * Number of sockets kept waiting to be accepted. |
| 279 | */ |
Michal Vasko | 0a3f375 | 2016-10-13 14:58:38 +0200 | [diff] [blame] | 280 | #define NC_REVERSE_QUEUE 5 |
Michal Vasko | 80cad7f | 2015-12-08 14:42:27 +0100 | [diff] [blame] | 281 | |
| 282 | /** |
Michal Vasko | 5c2f795 | 2016-01-22 13:16:31 +0100 | [diff] [blame] | 283 | * @brief Type of the session |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 284 | */ |
| 285 | typedef enum { |
Radek Krejci | 695d4fa | 2015-10-22 13:23:54 +0200 | [diff] [blame] | 286 | NC_CLIENT, /**< client side */ |
| 287 | NC_SERVER /**< server side */ |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 288 | } NC_SIDE; |
| 289 | |
| 290 | /** |
| 291 | * @brief Enumeration of the supported NETCONF protocol versions |
| 292 | */ |
| 293 | typedef enum { |
Michal Vasko | 5c2f795 | 2016-01-22 13:16:31 +0100 | [diff] [blame] | 294 | NC_VERSION_10 = 0, /**< NETCONF 1.0 - RFC 4741, 4742 */ |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 295 | NC_VERSION_11 = 1 /**< NETCONF 1.1 - RFC 6241, 6242 */ |
| 296 | } NC_VERSION; |
| 297 | |
| 298 | #define NC_VERSION_10_ENDTAG "]]>]]>" |
| 299 | #define NC_VERSION_10_ENDTAG_LEN 6 |
| 300 | |
| 301 | /** |
Michal Vasko | ad61170 | 2015-12-03 13:41:51 +0100 | [diff] [blame] | 302 | * @brief Container to serialize PRC messages |
Radek Krejci | 5686ff7 | 2015-10-09 13:33:56 +0200 | [diff] [blame] | 303 | */ |
Michal Vasko | ad61170 | 2015-12-03 13:41:51 +0100 | [diff] [blame] | 304 | struct nc_msg_cont { |
| 305 | struct lyxml_elem *msg; |
| 306 | struct nc_msg_cont *next; |
Radek Krejci | 5686ff7 | 2015-10-09 13:33:56 +0200 | [diff] [blame] | 307 | }; |
| 308 | |
| 309 | /** |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 310 | * @brief NETCONF session structure |
| 311 | */ |
| 312 | struct nc_session { |
Radek Krejci | 695d4fa | 2015-10-22 13:23:54 +0200 | [diff] [blame] | 313 | NC_STATUS status; /**< status of the session */ |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 314 | NC_SESSION_TERM_REASON term_reason; /**< reason of termination, if status is NC_STATUS_INVALID */ |
Radek Krejci | 695d4fa | 2015-10-22 13:23:54 +0200 | [diff] [blame] | 315 | NC_SIDE side; /**< side of the session: client or server */ |
Radek Krejci | 5686ff7 | 2015-10-09 13:33:56 +0200 | [diff] [blame] | 316 | |
| 317 | /* NETCONF data */ |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 318 | uint32_t id; /**< NETCONF session ID (session-id-type) */ |
| 319 | NC_VERSION version; /**< NETCONF protocol version */ |
Radek Krejci | 5686ff7 | 2015-10-09 13:33:56 +0200 | [diff] [blame] | 320 | |
| 321 | /* Transport implementation */ |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 322 | NC_TRANSPORT_IMPL ti_type; /**< transport implementation type to select items from ti union */ |
Radek Krejci | 695d4fa | 2015-10-22 13:23:54 +0200 | [diff] [blame] | 323 | pthread_mutex_t *ti_lock; /**< lock to access ti. Note that in case of libssh TI, it can be shared with other |
Michal Vasko | b7ea243 | 2015-10-26 15:38:40 +0100 | [diff] [blame] | 324 | NETCONF sessions on the same SSH session (but different SSH channel) */ |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 325 | pthread_cond_t *ti_cond; /**< ti_inuse condition */ |
| 326 | volatile int *ti_inuse; /**< variable indicating whether TI is being communicated on or not, protected by |
| 327 | ti_cond and ti_lock */ |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 328 | union { |
| 329 | struct { |
| 330 | int in; /**< input file descriptor */ |
| 331 | int out; /**< output file descriptor */ |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 332 | } fd; /**< NC_TI_FD transport implementation structure */ |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 333 | #ifdef NC_ENABLED_SSH |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 334 | struct { |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 335 | ssh_channel channel; |
Radek Krejci | 695d4fa | 2015-10-22 13:23:54 +0200 | [diff] [blame] | 336 | ssh_session session; |
| 337 | struct nc_session *next; /**< pointer to the next NETCONF session on the same |
| 338 | SSH session, but different SSH channel. If no such session exists, it is NULL. |
| 339 | otherwise there is a ring list of the NETCONF sessions */ |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 340 | } libssh; |
| 341 | #endif |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 342 | #ifdef NC_ENABLED_TLS |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 343 | SSL *tls; |
| 344 | #endif |
Radek Krejci | 5686ff7 | 2015-10-09 13:33:56 +0200 | [diff] [blame] | 345 | } ti; /**< transport implementation data */ |
Radek Krejci | ac6d347 | 2015-10-22 15:47:18 +0200 | [diff] [blame] | 346 | const char *username; |
| 347 | const char *host; |
Michal Vasko | 38a7c6c | 2015-12-04 12:29:20 +0100 | [diff] [blame] | 348 | uint16_t port; |
Radek Krejci | 5686ff7 | 2015-10-09 13:33:56 +0200 | [diff] [blame] | 349 | |
| 350 | /* other */ |
| 351 | struct ly_ctx *ctx; /**< libyang context of the session */ |
Michal Vasko | 2cc4c68 | 2016-03-01 09:16:48 +0100 | [diff] [blame] | 352 | void *data; /**< arbitrary user data */ |
Radek Krejci | 695d4fa | 2015-10-22 13:23:54 +0200 | [diff] [blame] | 353 | uint8_t flags; /**< various flags of the session - TODO combine with status and/or side */ |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 354 | #define NC_SESSION_SHAREDCTX 0x01 |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 355 | #define NC_SESSION_CALLHOME 0x02 |
Radek Krejci | 5686ff7 | 2015-10-09 13:33:56 +0200 | [diff] [blame] | 356 | |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 357 | union { |
| 358 | struct { |
Radek Krejci | f637ba8 | 2016-10-18 14:18:14 +0200 | [diff] [blame] | 359 | /* client side only data */ |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 360 | uint64_t msgid; |
| 361 | const char **cpblts; /**< list of server's capabilities on client side */ |
| 362 | struct nc_msg_cont *replies; /**< queue for RPC replies received instead of notifications */ |
| 363 | struct nc_msg_cont *notifs; /**< queue for notifications received instead of RPC reply */ |
Radek Krejci | f637ba8 | 2016-10-18 14:18:14 +0200 | [diff] [blame] | 364 | volatile pthread_t *ntf_tid; /**< running notifications receiving thread */ |
Michal Vasko | eee9941 | 2016-11-21 10:19:43 +0100 | [diff] [blame] | 365 | |
| 366 | /* client flags */ |
| 367 | /* some server modules failed to load so the data from them will be ignored - not use strict flag for parsing */ |
| 368 | # define NC_SESSION_CLIENT_NOT_STRICT 0x40 |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 369 | } client; |
| 370 | struct { |
Radek Krejci | f637ba8 | 2016-10-18 14:18:14 +0200 | [diff] [blame] | 371 | /* server side only data */ |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 372 | time_t session_start; /**< time the session was created */ |
| 373 | time_t last_rpc; /**< time the last RPC was received on this session */ |
Michal Vasko | 3486a7c | 2017-03-03 13:28:07 +0100 | [diff] [blame^] | 374 | int ntf_status; /**< flag whether the session is subscribed to any stream */ |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 375 | pthread_mutex_t *ch_lock; /**< Call Home thread lock */ |
| 376 | pthread_cond_t *ch_cond; /**< Call Home thread condition */ |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 377 | |
Michal Vasko | eee9941 | 2016-11-21 10:19:43 +0100 | [diff] [blame] | 378 | /* server flags */ |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 379 | #ifdef NC_ENABLED_SSH |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 380 | /* SSH session authenticated */ |
| 381 | # define NC_SESSION_SSH_AUTHENTICATED 0x04 |
| 382 | /* netconf subsystem requested */ |
| 383 | # define NC_SESSION_SSH_SUBSYS_NETCONF 0x08 |
| 384 | /* new SSH message arrived */ |
| 385 | # define NC_SESSION_SSH_NEW_MSG 0x10 |
| 386 | /* this session is passed to nc_sshcb_msg() */ |
| 387 | # define NC_SESSION_SSH_MSG_CB 0x20 |
Michal Vasko | 06e2243 | 2016-01-15 10:30:06 +0100 | [diff] [blame] | 388 | |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 389 | uint16_t ssh_auth_attempts; /**< number of failed SSH authentication attempts */ |
Michal Vasko | c14e3c8 | 2016-01-11 16:14:30 +0100 | [diff] [blame] | 390 | #endif |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 391 | #ifdef NC_ENABLED_TLS |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 392 | X509 *client_cert; /**< TLS client certificate if used for authentication */ |
Michal Vasko | c14e3c8 | 2016-01-11 16:14:30 +0100 | [diff] [blame] | 393 | #endif |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 394 | } server; |
| 395 | } opts; |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 396 | }; |
| 397 | |
Michal Vasko | 48a63ed | 2016-03-01 09:48:21 +0100 | [diff] [blame] | 398 | /* ACCESS locked */ |
Michal Vasko | fb89d77 | 2016-01-08 12:25:35 +0100 | [diff] [blame] | 399 | struct nc_pollsession { |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 400 | struct nc_session **sessions; |
Michal Vasko | fb89d77 | 2016-01-08 12:25:35 +0100 | [diff] [blame] | 401 | uint16_t session_count; |
Michal Vasko | 99f251b | 2017-01-11 11:31:46 +0100 | [diff] [blame] | 402 | uint16_t last_event_session; |
Michal Vasko | be86fe3 | 2016-04-07 10:43:03 +0200 | [diff] [blame] | 403 | |
| 404 | pthread_cond_t cond; |
Michal Vasko | 48a63ed | 2016-03-01 09:48:21 +0100 | [diff] [blame] | 405 | pthread_mutex_t lock; |
Michal Vasko | be86fe3 | 2016-04-07 10:43:03 +0200 | [diff] [blame] | 406 | uint8_t queue[NC_PS_QUEUE_SIZE]; /**< round buffer, queue is empty when queue_len == 0 */ |
| 407 | uint8_t queue_begin; /**< queue starts on queue[queue_begin] */ |
| 408 | uint8_t queue_len; /**< queue ends on queue[queue_begin + queue_len - 1] */ |
Michal Vasko | fb89d77 | 2016-01-08 12:25:35 +0100 | [diff] [blame] | 409 | }; |
| 410 | |
Michal Vasko | a8ad448 | 2016-01-28 14:25:54 +0100 | [diff] [blame] | 411 | struct nc_ntf_thread_arg { |
| 412 | struct nc_session *session; |
| 413 | void (*notif_clb)(struct nc_session *session, const struct nc_notif *notif); |
| 414 | }; |
| 415 | |
Michal Vasko | 4eb3c31 | 2016-03-01 14:09:37 +0100 | [diff] [blame] | 416 | void *nc_realloc(void *ptr, size_t size); |
| 417 | |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 418 | NC_MSG_TYPE nc_send_msg(struct nc_session *session, struct lyd_node *op); |
| 419 | |
Radek Krejci | 2847292 | 2016-07-15 11:51:16 +0200 | [diff] [blame] | 420 | #ifndef HAVE_PTHREAD_MUTEX_TIMEDLOCK |
| 421 | int pthread_mutex_timedlock(pthread_mutex_t *mutex, const struct timespec *abstime); |
| 422 | #endif |
| 423 | |
Radek Krejci | 7ac1605 | 2016-07-15 11:48:18 +0200 | [diff] [blame] | 424 | int nc_gettimespec(struct timespec *ts); |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 425 | |
Michal Vasko | 36c7be8 | 2017-02-22 13:37:59 +0100 | [diff] [blame] | 426 | int32_t nc_difftimespec(struct timespec *ts1, struct timespec *ts2); |
| 427 | |
| 428 | void nc_addtimespec(struct timespec *ts, uint32_t msec); |
Michal Vasko | 99f251b | 2017-01-11 11:31:46 +0100 | [diff] [blame] | 429 | |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 430 | struct nc_session *nc_new_session(int not_allocate_ti); |
| 431 | |
| 432 | int nc_session_lock(struct nc_session *session, int timeout, const char *func); |
| 433 | |
| 434 | int nc_session_unlock(struct nc_session *session, int timeout, const char *func); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 435 | |
Michal Vasko | 227f8ff | 2016-07-26 14:08:59 +0200 | [diff] [blame] | 436 | int nc_ps_lock(struct nc_pollsession *ps, uint8_t *id, const char *func); |
Michal Vasko | f04a52a | 2016-04-07 10:52:10 +0200 | [diff] [blame] | 437 | |
Michal Vasko | 227f8ff | 2016-07-26 14:08:59 +0200 | [diff] [blame] | 438 | int nc_ps_unlock(struct nc_pollsession *ps, uint8_t id, const char *func); |
Michal Vasko | f04a52a | 2016-04-07 10:52:10 +0200 | [diff] [blame] | 439 | |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 440 | /** |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 441 | * @brief Fill libyang context in \p session. Context models are based on the stored session |
| 442 | * capabilities. If the server does not support \<get-schema\>, the models are searched |
Radek Krejci | c9a6d25 | 2016-03-04 14:50:34 +0100 | [diff] [blame] | 443 | * for in the directory set using nc_client_schema_searchpath(). |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 444 | * |
| 445 | * @param[in] session Session to create the context for. |
Michal Vasko | ef57833 | 2016-01-25 13:20:09 +0100 | [diff] [blame] | 446 | * @return 0 on success, 1 on some missing schemas, -1 on error. |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 447 | */ |
Michal Vasko | 57eb940 | 2015-12-08 14:38:12 +0100 | [diff] [blame] | 448 | int nc_ctx_check_and_fill(struct nc_session *session); |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 449 | |
| 450 | /** |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 451 | * @brief Perform NETCONF handshake on \p session. |
| 452 | * |
| 453 | * @param[in] session NETCONF session to use. |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 454 | * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message parsing fail |
| 455 | * (server-side only), NC_MSG_WOULDBLOCK on timeout, NC_MSG_ERROR on other error. |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 456 | */ |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 457 | NC_MSG_TYPE nc_handshake(struct nc_session *session); |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 458 | |
| 459 | /** |
Michal Vasko | f05562c | 2016-01-20 12:06:43 +0100 | [diff] [blame] | 460 | * @brief Create a socket connection. |
| 461 | * |
| 462 | * @param[in] host Hostname to connect to. |
| 463 | * @param[in] port Port to connect on. |
| 464 | * @return Connected socket or -1 on error. |
| 465 | */ |
| 466 | int nc_sock_connect(const char *host, uint16_t port); |
| 467 | |
| 468 | /** |
| 469 | * @brief Accept a new socket connection. |
Michal Vasko | 80cad7f | 2015-12-08 14:42:27 +0100 | [diff] [blame] | 470 | * |
Michal Vasko | c61c449 | 2016-01-25 11:13:34 +0100 | [diff] [blame] | 471 | * @param[in] sock Listening socket. |
Michal Vasko | f05562c | 2016-01-20 12:06:43 +0100 | [diff] [blame] | 472 | * @param[in] timeout Timeout in milliseconds. |
| 473 | * @param[out] peer_host Host the new connection was initiated from. Can be NULL. |
| 474 | * @param[out] peer_port Port the new connection is connected on. Can be NULL. |
Michal Vasko | 80cad7f | 2015-12-08 14:42:27 +0100 | [diff] [blame] | 475 | * @return Connected socket with the new connection, -1 on error. |
| 476 | */ |
Michal Vasko | c61c449 | 2016-01-25 11:13:34 +0100 | [diff] [blame] | 477 | int nc_sock_accept(int sock, int timeout, char **peer_host, uint16_t *peer_port); |
Michal Vasko | 80cad7f | 2015-12-08 14:42:27 +0100 | [diff] [blame] | 478 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 479 | /** |
| 480 | * @brief Create a listening socket. |
| 481 | * |
| 482 | * @param[in] address IP address to listen on. |
| 483 | * @param[in] port Port to listen on. |
| 484 | * @return Listening socket, -1 on error. |
| 485 | */ |
Michal Vasko | f05562c | 2016-01-20 12:06:43 +0100 | [diff] [blame] | 486 | int nc_sock_listen(const char *address, uint16_t port); |
Michal Vasko | fb89d77 | 2016-01-08 12:25:35 +0100 | [diff] [blame] | 487 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 488 | /** |
| 489 | * @brief Accept a new connection on a listening socket. |
| 490 | * |
| 491 | * @param[in] binds Structure with the listening sockets. |
| 492 | * @param[in] bind_count Number of \p binds. |
| 493 | * @param[in] timeout Timeout for accepting. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 494 | * @param[out] host Host of the remote peer. Can be NULL. |
| 495 | * @param[out] port Port of the new connection. Can be NULL. |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 496 | * @param[out] idx Index of the bind that was accepted. Can be NULL. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 497 | * @return Accepted socket of the new connection, -1 on error. |
| 498 | */ |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 499 | int nc_sock_accept_binds(struct nc_bind *binds, uint16_t bind_count, int timeout, char **host, uint16_t *port, uint16_t *idx); |
| 500 | |
| 501 | /** |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 502 | * @brief Lock endpoint structures for reading and the specific endpoint. |
| 503 | * |
| 504 | * @param[in] name Name of the endpoint. |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 505 | * @param[in] ti Expected transport. |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 506 | * @param[out] idx Index of the endpoint. Optional. |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 507 | * @return Endpoint structure. |
| 508 | */ |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 509 | struct nc_endpt *nc_server_endpt_lock_get(const char *name, NC_TRANSPORT_IMPL ti, uint16_t *idx); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 510 | |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 511 | /** |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 512 | * @brief Lock CH client structures for reading and the specific client. |
| 513 | * |
| 514 | * @param[in] name Name of the CH client. |
| 515 | * @param[in] ti Expected transport. |
| 516 | * @param[out] idx Index of the client. Optional. |
| 517 | * @return CH client structure. |
| 518 | */ |
| 519 | struct nc_ch_client *nc_server_ch_client_lock(const char *name, NC_TRANSPORT_IMPL ti, uint16_t *idx); |
| 520 | |
| 521 | /** |
| 522 | * @brief Unlock CH client strcutures and the specific client. |
| 523 | * |
| 524 | * @param[in] endpt Locked CH client structure. |
| 525 | */ |
| 526 | void nc_server_ch_client_unlock(struct nc_ch_client *client); |
| 527 | |
| 528 | /** |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 529 | * @brief Add a client Call Home bind, listen on it. |
| 530 | * |
| 531 | * @param[in] address Address to bind to. |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 532 | * @param[in] port Port to bind to. |
| 533 | * @param[in] ti Transport to use. |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 534 | * @return 0 on success, -1 on error. |
| 535 | */ |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 536 | int nc_client_ch_add_bind_listen(const char *address, uint16_t port, NC_TRANSPORT_IMPL ti); |
| 537 | |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 538 | /** |
| 539 | * @brief Remove a client Call Home bind, stop listening on it. |
| 540 | * |
| 541 | * @param[in] address Address of the bind. NULL matches any address. |
| 542 | * @param[in] port Port of the bind. 0 matches all ports. |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 543 | * @param[in] ti Transport of the bind. 0 matches all transports. |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 544 | * @return 0 on success, -1 on no matches found. |
| 545 | */ |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 546 | int nc_client_ch_del_bind(const char *address, uint16_t port, NC_TRANSPORT_IMPL ti); |
| 547 | |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 548 | /** |
| 549 | * @brief Connect to a listening NETCONF client using Call Home. |
| 550 | * |
| 551 | * @param[in] host Hostname to connect to. |
| 552 | * @param[in] port Port to connect to. |
| 553 | * @param[in] ti Transport fo the connection. |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 554 | * @param[out] session New Call Home session. |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 555 | * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message |
| 556 | * parsing fail, NC_MSG_WOULDBLOCK on timeout, NC_MSG_ERROR on other errors. |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 557 | */ |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 558 | NC_MSG_TYPE nc_connect_callhome(const char *host, uint16_t port, NC_TRANSPORT_IMPL ti, struct nc_session **session); |
Michal Vasko | fb89d77 | 2016-01-08 12:25:35 +0100 | [diff] [blame] | 559 | |
Michal Vasko | a7b8ca5 | 2016-03-01 12:09:29 +0100 | [diff] [blame] | 560 | void nc_init(void); |
| 561 | |
| 562 | void nc_destroy(void); |
| 563 | |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 564 | #ifdef NC_ENABLED_SSH |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 565 | |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 566 | /** |
| 567 | * @brief Accept a server Call Home connection on a socket. |
| 568 | * |
| 569 | * @param[in] sock Socket with a new connection. |
| 570 | * @param[in] host Hostname of the server. |
| 571 | * @param[in] port Port of the server. |
| 572 | * @param[in] ctx Context for the session. Can be NULL. |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 573 | * @param[in] timeout Transport operations timeout in msec. |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 574 | * @return New session, NULL on error. |
| 575 | */ |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 576 | struct nc_session *nc_accept_callhome_ssh_sock(int sock, const char *host, uint16_t port, struct ly_ctx *ctx, int timeout); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 577 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 578 | /** |
| 579 | * @brief Establish SSH transport on a socket. |
| 580 | * |
| 581 | * @param[in] session Session structure of the new connection. |
| 582 | * @param[in] sock Socket of the new connection. |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 583 | * @param[in] timeout Transport operations timeout in msec (not SSH authentication one). |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 584 | * @return 1 on success, 0 on timeout, -1 on error. |
| 585 | */ |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 586 | int nc_accept_ssh_session(struct nc_session *session, int sock, int timeout); |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 587 | |
Michal Vasko | 96164bf | 2016-01-21 15:41:58 +0100 | [diff] [blame] | 588 | /** |
| 589 | * @brief Callback called when a new SSH message is received. |
| 590 | * |
| 591 | * @param[in] sshsession SSH session the message arrived on. |
| 592 | * @param[in] msg SSH message itself. |
| 593 | * @param[in] data NETCONF session running on \p sshsession. |
| 594 | * @return 0 if the message was handled, 1 if it is left up to libssh. |
| 595 | */ |
| 596 | int nc_sshcb_msg(ssh_session sshsession, ssh_message msg, void *data); |
| 597 | |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 598 | void nc_server_ssh_clear_opts(struct nc_server_ssh_opts *opts); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 599 | |
Michal Vasko | b7558c5 | 2016-02-26 15:04:19 +0100 | [diff] [blame] | 600 | void nc_client_ssh_destroy_opts(void); |
| 601 | |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 602 | #endif /* NC_ENABLED_SSH */ |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 603 | |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 604 | #ifdef NC_ENABLED_TLS |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 605 | |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 606 | struct nc_session *nc_accept_callhome_tls_sock(int sock, const char *host, uint16_t port, struct ly_ctx *ctx, int timeout); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 607 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 608 | /** |
| 609 | * @brief Establish TLS transport on a socket. |
| 610 | * |
| 611 | * @param[in] session Session structure of the new connection. |
| 612 | * @param[in] sock Socket of the new connection. |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 613 | * @param[in] timeout Transport operations timeout in msec. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 614 | * @return 1 on success, 0 on timeout, -1 on error. |
| 615 | */ |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 616 | int nc_accept_tls_session(struct nc_session *session, int sock, int timeout); |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 617 | |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 618 | void nc_server_tls_clear_opts(struct nc_server_tls_opts *opts); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 619 | |
Michal Vasko | b7558c5 | 2016-02-26 15:04:19 +0100 | [diff] [blame] | 620 | void nc_client_tls_destroy_opts(void); |
| 621 | |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 622 | #endif /* NC_ENABLED_TLS */ |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 623 | |
Michal Vasko | 80cad7f | 2015-12-08 14:42:27 +0100 | [diff] [blame] | 624 | /** |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 625 | * Functions |
| 626 | * - io.c |
| 627 | */ |
| 628 | |
| 629 | /** |
| 630 | * @brief Read message from the wire. |
| 631 | * |
| 632 | * Accepts hello, rpc, rpc-reply and notification. Received string is transformed into |
| 633 | * libyang XML tree and the message type is detected from the top level element. |
| 634 | * |
| 635 | * @param[in] session NETCONF session from which the message is being read. |
| 636 | * @param[in] timeout Timeout in milliseconds. Negative value means infinite timeout, |
| 637 | * zero value causes to return immediately. |
| 638 | * @param[out] data XML tree built from the read data. |
| 639 | * @return Type of the read message. #NC_MSG_WOULDBLOCK is returned if timeout is positive |
Radek Krejci | 5686ff7 | 2015-10-09 13:33:56 +0200 | [diff] [blame] | 640 | * (or zero) value and it passed out without any data on the wire. #NC_MSG_ERROR is |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 641 | * returned on error and #NC_MSG_NONE is never returned by this function. |
| 642 | */ |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 643 | NC_MSG_TYPE nc_read_msg_poll(struct nc_session* session, int timeout, struct lyxml_elem **data); |
| 644 | |
| 645 | /** |
| 646 | * @brief Read message from the wire. |
| 647 | * |
| 648 | * Accepts hello, rpc, rpc-reply and notification. Received string is transformed into |
| 649 | * libyang XML tree and the message type is detected from the top level element. |
| 650 | * |
| 651 | * @param[in] session NETCONF session from which the message is being read. |
| 652 | * @param[out] data XML tree built from the read data. |
| 653 | * @return Type of the read message. #NC_MSG_WOULDBLOCK is returned if timeout is positive |
| 654 | * (or zero) value and it passed out without any data on the wire. #NC_MSG_ERROR is |
| 655 | * returned on error and #NC_MSG_NONE is never returned by this function. |
| 656 | */ |
| 657 | NC_MSG_TYPE nc_read_msg(struct nc_session* session, struct lyxml_elem **data); |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 658 | |
Radek Krejci | fe0b347 | 2015-10-12 13:43:42 +0200 | [diff] [blame] | 659 | /** |
| 660 | * @brief Write message into wire. |
| 661 | * |
| 662 | * @param[in] session NETCONF session to which the message will be written. |
Radek Krejci | 127f895 | 2016-10-12 14:57:16 +0200 | [diff] [blame] | 663 | * @param[in] type The type of the message to write, specified as #NC_MSG_TYPE value. According to the type, the |
Radek Krejci | fe0b347 | 2015-10-12 13:43:42 +0200 | [diff] [blame] | 664 | * specific additional parameters are required or accepted: |
| 665 | * - #NC_MSG_RPC |
| 666 | * - `struct lyd_node *op;` - operation (content of the \<rpc/\> to be sent. Required parameter. |
| 667 | * - `const char *attrs;` - additional attributes to be added into the \<rpc/\> element. |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 668 | * Required parameter. |
| 669 | * `message-id` attribute is added automatically and default namespace is set to #NC_NS_BASE. |
| 670 | * Optional parameter. |
Radek Krejci | fe0b347 | 2015-10-12 13:43:42 +0200 | [diff] [blame] | 671 | * - #NC_MSG_REPLY |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 672 | * - `struct lyxml_node *rpc_elem;` - root of the RPC object to reply to. Required parameter. |
| 673 | * - `struct nc_server_reply *reply;` - RPC reply. Required parameter. |
Radek Krejci | fe0b347 | 2015-10-12 13:43:42 +0200 | [diff] [blame] | 674 | * - #NC_MSG_NOTIF |
| 675 | * - TODO: content |
| 676 | * @return 0 on success |
| 677 | */ |
Radek Krejci | 127f895 | 2016-10-12 14:57:16 +0200 | [diff] [blame] | 678 | int nc_write_msg(struct nc_session *session, int type, ...); |
Radek Krejci | fe0b347 | 2015-10-12 13:43:42 +0200 | [diff] [blame] | 679 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 680 | /** |
| 681 | * @brief Check whether a session is still connected (on transport layer). |
| 682 | * |
| 683 | * @param[in] session Session to check. |
| 684 | * @return 1 if connected, 0 if not. |
| 685 | */ |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 686 | int nc_session_is_connected(struct nc_session *session); |
| 687 | |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 688 | #endif /* NC_SESSION_PRIVATE_H_ */ |