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 | * |
| 7 | * Copyright (c) 2015 CESNET, z.s.p.o. |
| 8 | * |
| 9 | * Redistribution and use in source and binary forms, with or without |
| 10 | * modification, are permitted provided that the following conditions |
| 11 | * are met: |
| 12 | * 1. Redistributions of source code must retain the above copyright |
| 13 | * notice, this list of conditions and the following disclaimer. |
| 14 | * 2. Redistributions in binary form must reproduce the above copyright |
| 15 | * notice, this list of conditions and the following disclaimer in |
| 16 | * the documentation and/or other materials provided with the |
| 17 | * distribution. |
| 18 | * 3. Neither the name of the Company nor the names of its contributors |
| 19 | * may be used to endorse or promote products derived from this |
| 20 | * software without specific prior written permission. |
| 21 | * |
| 22 | */ |
| 23 | |
| 24 | #ifndef NC_SESSION_PRIVATE_H_ |
| 25 | #define NC_SESSION_PRIVATE_H_ |
| 26 | |
Radek Krejci | fe0b347 | 2015-10-12 13:43:42 +0200 | [diff] [blame] | 27 | #include <stdint.h> |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 28 | #include <pthread.h> |
| 29 | |
Michal Vasko | 4ef1493 | 2015-12-04 11:09:10 +0100 | [diff] [blame] | 30 | #include <libyang/libyang.h> |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 31 | |
Michal Vasko | 4ef1493 | 2015-12-04 11:09:10 +0100 | [diff] [blame] | 32 | #include "libnetconf.h" |
Michal Vasko | 7bcb48e | 2016-01-15 10:28:54 +0100 | [diff] [blame] | 33 | #include "netconf.h" |
Michal Vasko | 4ef1493 | 2015-12-04 11:09:10 +0100 | [diff] [blame] | 34 | #include "session.h" |
Michal Vasko | a8ad448 | 2016-01-28 14:25:54 +0100 | [diff] [blame] | 35 | #include "messages_client.h" |
Michal Vasko | 4ef1493 | 2015-12-04 11:09:10 +0100 | [diff] [blame] | 36 | |
Michal Vasko | fb2fb76 | 2015-10-27 11:44:32 +0100 | [diff] [blame] | 37 | #ifdef ENABLE_SSH |
Michal Vasko | 4ef1493 | 2015-12-04 11:09:10 +0100 | [diff] [blame] | 38 | |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 39 | # include <libssh/libssh.h> |
| 40 | # include <libssh/callbacks.h> |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 41 | # include <libssh/server.h> |
Michal Vasko | 7b62fed | 2015-10-26 15:39:46 +0100 | [diff] [blame] | 42 | |
| 43 | /* seconds */ |
Michal Vasko | c111ac5 | 2015-12-08 14:36:36 +0100 | [diff] [blame] | 44 | # define NC_SSH_TIMEOUT 10 |
Michal Vasko | 5c2f795 | 2016-01-22 13:16:31 +0100 | [diff] [blame] | 45 | /* number of all supported authentication methods */ |
Michal Vasko | c111ac5 | 2015-12-08 14:36:36 +0100 | [diff] [blame] | 46 | # define NC_SSH_AUTH_COUNT 3 |
Michal Vasko | 7b62fed | 2015-10-26 15:39:46 +0100 | [diff] [blame] | 47 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 48 | struct nc_client_ssh_opts { |
Michal Vasko | 7b62fed | 2015-10-26 15:39:46 +0100 | [diff] [blame] | 49 | /* SSH authentication method preferences */ |
| 50 | struct { |
| 51 | NC_SSH_AUTH_TYPE type; |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 52 | int16_t value; |
Michal Vasko | c111ac5 | 2015-12-08 14:36:36 +0100 | [diff] [blame] | 53 | } auth_pref[NC_SSH_AUTH_COUNT]; |
Michal Vasko | 7b62fed | 2015-10-26 15:39:46 +0100 | [diff] [blame] | 54 | |
| 55 | /* SSH key pairs */ |
| 56 | struct { |
| 57 | char *pubkey_path; |
| 58 | char *privkey_path; |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 59 | int8_t privkey_crypt; |
Michal Vasko | 7b62fed | 2015-10-26 15:39:46 +0100 | [diff] [blame] | 60 | } *keys; |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 61 | uint16_t key_count; |
| 62 | |
| 63 | char *username; |
Michal Vasko | 7b62fed | 2015-10-26 15:39:46 +0100 | [diff] [blame] | 64 | }; |
| 65 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 66 | struct nc_server_ssh_opts { |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 67 | ssh_bind sshbind; |
| 68 | |
| 69 | struct { |
Michal Vasko | 76e3a35 | 2016-01-18 09:07:00 +0100 | [diff] [blame] | 70 | const char *path; |
| 71 | const char *username; |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 72 | } *authkeys; |
| 73 | uint16_t authkey_count; |
| 74 | |
| 75 | int auth_methods; |
| 76 | uint16_t auth_attempts; |
| 77 | uint16_t auth_timeout; |
| 78 | }; |
| 79 | |
Michal Vasko | 4ef1493 | 2015-12-04 11:09:10 +0100 | [diff] [blame] | 80 | #endif /* ENABLE_SSH */ |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 81 | |
| 82 | #ifdef ENABLE_TLS |
Michal Vasko | 4ef1493 | 2015-12-04 11:09:10 +0100 | [diff] [blame] | 83 | |
Michal Vasko | c111ac5 | 2015-12-08 14:36:36 +0100 | [diff] [blame] | 84 | # include <openssl/bio.h> |
| 85 | # include <openssl/ssl.h> |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 86 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 87 | struct nc_client_tls_opts { |
| 88 | char *cert_path; |
| 89 | char *key_path; |
| 90 | char *ca_file; |
| 91 | char *ca_dir; |
| 92 | int8_t tls_ctx_change; |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 93 | SSL_CTX *tls_ctx; |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 94 | |
| 95 | char *crl_file; |
| 96 | char *crl_dir; |
| 97 | int8_t crl_store_change; |
| 98 | X509_STORE *crl_store; |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 99 | }; |
| 100 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 101 | struct nc_server_tls_opts { |
Michal Vasko | 0457bb4 | 2016-01-08 15:49:13 +0100 | [diff] [blame] | 102 | SSL_CTX *tls_ctx; |
| 103 | X509_STORE *crl_store; |
| 104 | |
Michal Vasko | 5e3f339 | 2016-01-20 11:13:01 +0100 | [diff] [blame] | 105 | struct nc_ctn { |
Michal Vasko | 0457bb4 | 2016-01-08 15:49:13 +0100 | [diff] [blame] | 106 | uint32_t id; |
| 107 | const char *fingerprint; |
Michal Vasko | c14e3c8 | 2016-01-11 16:14:30 +0100 | [diff] [blame] | 108 | NC_TLS_CTN_MAPTYPE map_type; |
Michal Vasko | 0457bb4 | 2016-01-08 15:49:13 +0100 | [diff] [blame] | 109 | const char *name; |
Michal Vasko | 5e3f339 | 2016-01-20 11:13:01 +0100 | [diff] [blame] | 110 | struct nc_ctn *next; |
Michal Vasko | 0457bb4 | 2016-01-08 15:49:13 +0100 | [diff] [blame] | 111 | } *ctn; |
Michal Vasko | 0457bb4 | 2016-01-08 15:49:13 +0100 | [diff] [blame] | 112 | }; |
| 113 | |
Michal Vasko | 4ef1493 | 2015-12-04 11:09:10 +0100 | [diff] [blame] | 114 | #endif /* ENABLE_TLS */ |
Radek Krejci | 4339024 | 2015-10-08 15:34:04 +0200 | [diff] [blame] | 115 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 116 | struct nc_client_opts { |
| 117 | char *schema_searchpath; |
| 118 | |
| 119 | struct nc_bind { |
| 120 | const char *address; |
| 121 | uint16_t port; |
| 122 | int sock; |
| 123 | NC_TRANSPORT_IMPL ti; |
| 124 | } *ch_binds; |
| 125 | uint16_t ch_bind_count; |
| 126 | }; |
| 127 | |
Michal Vasko | 0457bb4 | 2016-01-08 15:49:13 +0100 | [diff] [blame] | 128 | struct nc_server_opts { |
| 129 | struct ly_ctx *ctx; |
Michal Vasko | 11d142a | 2016-01-19 15:58:24 +0100 | [diff] [blame] | 130 | pthread_mutex_t ctx_lock; |
Michal Vasko | 0457bb4 | 2016-01-08 15:49:13 +0100 | [diff] [blame] | 131 | |
| 132 | NC_WD_MODE wd_basic_mode; |
| 133 | int wd_also_supported; |
| 134 | int interleave_capab; |
| 135 | |
| 136 | uint16_t hello_timeout; |
| 137 | uint16_t idle_timeout; |
Michal Vasko | 0457bb4 | 2016-01-08 15:49:13 +0100 | [diff] [blame] | 138 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 139 | struct nc_bind *binds; |
| 140 | struct nc_endpt { |
| 141 | const char *name; |
| 142 | void *ti_opts; |
| 143 | pthread_mutex_t endpt_lock; |
| 144 | } *endpts; |
| 145 | uint16_t endpt_count; |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 146 | /* WRITE - working with binds/endpoints, READ - reading/modifying a specific bind/endpoint, holding that endpt_lock too */ |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 147 | pthread_rwlock_t endpt_array_lock; |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 148 | |
| 149 | uint32_t new_session_id; |
| 150 | pthread_spinlock_t sid_lock; |
Michal Vasko | 0457bb4 | 2016-01-08 15:49:13 +0100 | [diff] [blame] | 151 | }; |
| 152 | |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 153 | /** |
Michal Vasko | c111ac5 | 2015-12-08 14:36:36 +0100 | [diff] [blame] | 154 | * Sleep time in microseconds to wait between unsuccessful reading due to EAGAIN or EWOULDBLOCK. |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 155 | */ |
| 156 | #define NC_READ_SLEEP 100 |
| 157 | |
| 158 | /** |
Michal Vasko | a8ad448 | 2016-01-28 14:25:54 +0100 | [diff] [blame] | 159 | * Sleep time in microseconds to wait between nc_recv_notif() calls. |
| 160 | */ |
| 161 | #define NC_CLIENT_NOTIF_THREAD_SLEEP 10000 |
| 162 | |
| 163 | /** |
Michal Vasko | 80cad7f | 2015-12-08 14:42:27 +0100 | [diff] [blame] | 164 | * Number of sockets kept waiting to be accepted. |
| 165 | */ |
| 166 | #define NC_REVERSE_QUEUE 1 |
| 167 | |
| 168 | /** |
Michal Vasko | 5c2f795 | 2016-01-22 13:16:31 +0100 | [diff] [blame] | 169 | * @brief Type of the session |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 170 | */ |
| 171 | typedef enum { |
Radek Krejci | 695d4fa | 2015-10-22 13:23:54 +0200 | [diff] [blame] | 172 | NC_CLIENT, /**< client side */ |
| 173 | NC_SERVER /**< server side */ |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 174 | } NC_SIDE; |
| 175 | |
| 176 | /** |
| 177 | * @brief Enumeration of the supported NETCONF protocol versions |
| 178 | */ |
| 179 | typedef enum { |
Michal Vasko | 5c2f795 | 2016-01-22 13:16:31 +0100 | [diff] [blame] | 180 | NC_VERSION_10 = 0, /**< NETCONF 1.0 - RFC 4741, 4742 */ |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 181 | NC_VERSION_11 = 1 /**< NETCONF 1.1 - RFC 6241, 6242 */ |
| 182 | } NC_VERSION; |
| 183 | |
| 184 | #define NC_VERSION_10_ENDTAG "]]>]]>" |
| 185 | #define NC_VERSION_10_ENDTAG_LEN 6 |
| 186 | |
| 187 | /** |
Michal Vasko | ad61170 | 2015-12-03 13:41:51 +0100 | [diff] [blame] | 188 | * @brief Container to serialize PRC messages |
Radek Krejci | 5686ff7 | 2015-10-09 13:33:56 +0200 | [diff] [blame] | 189 | */ |
Michal Vasko | ad61170 | 2015-12-03 13:41:51 +0100 | [diff] [blame] | 190 | struct nc_msg_cont { |
| 191 | struct lyxml_elem *msg; |
| 192 | struct nc_msg_cont *next; |
Radek Krejci | 5686ff7 | 2015-10-09 13:33:56 +0200 | [diff] [blame] | 193 | }; |
| 194 | |
| 195 | /** |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 196 | * @brief NETCONF session structure |
| 197 | */ |
| 198 | struct nc_session { |
Radek Krejci | 695d4fa | 2015-10-22 13:23:54 +0200 | [diff] [blame] | 199 | NC_STATUS status; /**< status of the session */ |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 200 | 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] | 201 | NC_SIDE side; /**< side of the session: client or server */ |
Radek Krejci | 5686ff7 | 2015-10-09 13:33:56 +0200 | [diff] [blame] | 202 | |
| 203 | /* NETCONF data */ |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 204 | uint32_t id; /**< NETCONF session ID (session-id-type) */ |
| 205 | NC_VERSION version; /**< NETCONF protocol version */ |
Michal Vasko | a8ad448 | 2016-01-28 14:25:54 +0100 | [diff] [blame] | 206 | volatile pthread_t *ntf_tid; /**< running notifications thread - TODO client-side only for now */ |
Radek Krejci | 5686ff7 | 2015-10-09 13:33:56 +0200 | [diff] [blame] | 207 | |
| 208 | /* Transport implementation */ |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 209 | 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] | 210 | 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] | 211 | NETCONF sessions on the same SSH session (but different SSH channel) */ |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 212 | union { |
| 213 | struct { |
| 214 | int in; /**< input file descriptor */ |
| 215 | int out; /**< output file descriptor */ |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 216 | } fd; /**< NC_TI_FD transport implementation structure */ |
Michal Vasko | fb2fb76 | 2015-10-27 11:44:32 +0100 | [diff] [blame] | 217 | #ifdef ENABLE_SSH |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 218 | struct { |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 219 | ssh_channel channel; |
Radek Krejci | 695d4fa | 2015-10-22 13:23:54 +0200 | [diff] [blame] | 220 | ssh_session session; |
| 221 | struct nc_session *next; /**< pointer to the next NETCONF session on the same |
| 222 | SSH session, but different SSH channel. If no such session exists, it is NULL. |
| 223 | otherwise there is a ring list of the NETCONF sessions */ |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 224 | } libssh; |
| 225 | #endif |
| 226 | #ifdef ENABLE_TLS |
| 227 | SSL *tls; |
| 228 | #endif |
Radek Krejci | 5686ff7 | 2015-10-09 13:33:56 +0200 | [diff] [blame] | 229 | } ti; /**< transport implementation data */ |
Radek Krejci | ac6d347 | 2015-10-22 15:47:18 +0200 | [diff] [blame] | 230 | const char *username; |
| 231 | const char *host; |
Michal Vasko | 38a7c6c | 2015-12-04 12:29:20 +0100 | [diff] [blame] | 232 | uint16_t port; |
Radek Krejci | 5686ff7 | 2015-10-09 13:33:56 +0200 | [diff] [blame] | 233 | |
| 234 | /* other */ |
| 235 | struct ly_ctx *ctx; /**< libyang context of the session */ |
Radek Krejci | 695d4fa | 2015-10-22 13:23:54 +0200 | [diff] [blame] | 236 | 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] | 237 | #define NC_SESSION_SHAREDCTX 0x01 |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 238 | #define NC_SESSION_CALLHOME 0x02 |
Radek Krejci | 5686ff7 | 2015-10-09 13:33:56 +0200 | [diff] [blame] | 239 | |
| 240 | /* client side only data */ |
Radek Krejci | fe0b347 | 2015-10-12 13:43:42 +0200 | [diff] [blame] | 241 | uint64_t msgid; |
Radek Krejci | 695d4fa | 2015-10-22 13:23:54 +0200 | [diff] [blame] | 242 | const char **cpblts; /**< list of server's capabilities on client side */ |
Michal Vasko | ad61170 | 2015-12-03 13:41:51 +0100 | [diff] [blame] | 243 | struct nc_msg_cont *replies; /**< queue for RPC replies received instead of notifications */ |
| 244 | struct nc_msg_cont *notifs; /**< queue for notifications received instead of RPC reply */ |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 245 | |
| 246 | /* server side only data */ |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 247 | void *ti_opts; |
Michal Vasko | 5c2f795 | 2016-01-22 13:16:31 +0100 | [diff] [blame] | 248 | time_t last_rpc; /**< time the last RPC was received on this session */ |
Michal Vasko | c14e3c8 | 2016-01-11 16:14:30 +0100 | [diff] [blame] | 249 | #ifdef ENABLE_SSH |
Michal Vasko | 96164bf | 2016-01-21 15:41:58 +0100 | [diff] [blame] | 250 | /* SSH session authenticated */ |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 251 | # define NC_SESSION_SSH_AUTHENTICATED 0x04 |
Michal Vasko | 96164bf | 2016-01-21 15:41:58 +0100 | [diff] [blame] | 252 | /* netconf subsystem requested */ |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 253 | # define NC_SESSION_SSH_SUBSYS_NETCONF 0x08 |
Michal Vasko | 96164bf | 2016-01-21 15:41:58 +0100 | [diff] [blame] | 254 | /* new SSH message arrived */ |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 255 | # define NC_SESSION_SSH_NEW_MSG 0x10 |
Michal Vasko | 96164bf | 2016-01-21 15:41:58 +0100 | [diff] [blame] | 256 | /* this session is passed to nc_sshcb_msg() */ |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 257 | # define NC_SESSION_SSH_MSG_CB 0x20 |
Michal Vasko | 06e2243 | 2016-01-15 10:30:06 +0100 | [diff] [blame] | 258 | |
Michal Vasko | 5c2f795 | 2016-01-22 13:16:31 +0100 | [diff] [blame] | 259 | uint16_t ssh_auth_attempts; /**< number of failed SSH authentication attempts */ |
Michal Vasko | c14e3c8 | 2016-01-11 16:14:30 +0100 | [diff] [blame] | 260 | #endif |
| 261 | #ifdef ENABLE_TLS |
Michal Vasko | 5c2f795 | 2016-01-22 13:16:31 +0100 | [diff] [blame] | 262 | X509 *tls_cert; /**< TLS client certificate it used for authentication */ |
Michal Vasko | c14e3c8 | 2016-01-11 16:14:30 +0100 | [diff] [blame] | 263 | #endif |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 264 | }; |
| 265 | |
Michal Vasko | fb89d77 | 2016-01-08 12:25:35 +0100 | [diff] [blame] | 266 | struct nc_pollsession { |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 267 | struct pollfd *pfds; |
| 268 | struct nc_session **sessions; |
Michal Vasko | fb89d77 | 2016-01-08 12:25:35 +0100 | [diff] [blame] | 269 | uint16_t session_count; |
| 270 | }; |
| 271 | |
Michal Vasko | a8ad448 | 2016-01-28 14:25:54 +0100 | [diff] [blame] | 272 | struct nc_ntf_thread_arg { |
| 273 | struct nc_session *session; |
| 274 | void (*notif_clb)(struct nc_session *session, const struct nc_notif *notif); |
| 275 | }; |
| 276 | |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 277 | NC_MSG_TYPE nc_send_msg(struct nc_session *session, struct lyd_node *op); |
| 278 | |
Michal Vasko | 7f1c78b | 2016-01-19 09:52:14 +0100 | [diff] [blame] | 279 | int nc_timedlock(pthread_mutex_t *lock, int timeout, int *elapsed); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 280 | |
Michal Vasko | 96164bf | 2016-01-21 15:41:58 +0100 | [diff] [blame] | 281 | void nc_subtract_elapsed(int *timeout, struct timespec *old_ts); |
| 282 | |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 283 | /** |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 284 | * @brief Fill libyang context in \p session. Context models are based on the stored session |
| 285 | * capabilities. If the server does not support \<get-schema\>, the models are searched |
| 286 | * for in the directory set using nc_schema_searchpath(). |
| 287 | * |
| 288 | * @param[in] session Session to create the context for. |
Michal Vasko | ef57833 | 2016-01-25 13:20:09 +0100 | [diff] [blame] | 289 | * @return 0 on success, 1 on some missing schemas, -1 on error. |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 290 | */ |
Michal Vasko | 57eb940 | 2015-12-08 14:38:12 +0100 | [diff] [blame] | 291 | int nc_ctx_check_and_fill(struct nc_session *session); |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 292 | |
| 293 | /** |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 294 | * @brief Perform NETCONF handshake on \p session. |
| 295 | * |
| 296 | * @param[in] session NETCONF session to use. |
| 297 | * @return 0 on success, non-zero on failure. |
| 298 | */ |
| 299 | int nc_handshake(struct nc_session *session); |
| 300 | |
| 301 | /** |
Michal Vasko | f05562c | 2016-01-20 12:06:43 +0100 | [diff] [blame] | 302 | * @brief Create a socket connection. |
| 303 | * |
| 304 | * @param[in] host Hostname to connect to. |
| 305 | * @param[in] port Port to connect on. |
| 306 | * @return Connected socket or -1 on error. |
| 307 | */ |
| 308 | int nc_sock_connect(const char *host, uint16_t port); |
| 309 | |
| 310 | /** |
| 311 | * @brief Accept a new socket connection. |
Michal Vasko | 80cad7f | 2015-12-08 14:42:27 +0100 | [diff] [blame] | 312 | * |
Michal Vasko | c61c449 | 2016-01-25 11:13:34 +0100 | [diff] [blame] | 313 | * @param[in] sock Listening socket. |
Michal Vasko | f05562c | 2016-01-20 12:06:43 +0100 | [diff] [blame] | 314 | * @param[in] timeout Timeout in milliseconds. |
| 315 | * @param[out] peer_host Host the new connection was initiated from. Can be NULL. |
| 316 | * @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] | 317 | * @return Connected socket with the new connection, -1 on error. |
| 318 | */ |
Michal Vasko | c61c449 | 2016-01-25 11:13:34 +0100 | [diff] [blame] | 319 | 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] | 320 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 321 | /** |
| 322 | * @brief Create a listening socket. |
| 323 | * |
| 324 | * @param[in] address IP address to listen on. |
| 325 | * @param[in] port Port to listen on. |
| 326 | * @return Listening socket, -1 on error. |
| 327 | */ |
Michal Vasko | f05562c | 2016-01-20 12:06:43 +0100 | [diff] [blame] | 328 | int nc_sock_listen(const char *address, uint16_t port); |
Michal Vasko | fb89d77 | 2016-01-08 12:25:35 +0100 | [diff] [blame] | 329 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 330 | /** |
| 331 | * @brief Accept a new connection on a listening socket. |
| 332 | * |
| 333 | * @param[in] binds Structure with the listening sockets. |
| 334 | * @param[in] bind_count Number of \p binds. |
| 335 | * @param[in] timeout Timeout for accepting. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 336 | * @param[out] host Host of the remote peer. Can be NULL. |
| 337 | * @param[out] port Port of the new connection. Can be NULL. |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 338 | * @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] | 339 | * @return Accepted socket of the new connection, -1 on error. |
| 340 | */ |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 341 | int nc_sock_accept_binds(struct nc_bind *binds, uint16_t bind_count, int timeout, char **host, uint16_t *port, uint16_t *idx); |
| 342 | |
| 343 | /** |
| 344 | * @brief Add a new endpoint and start listening on it. |
| 345 | * |
| 346 | * @param[in] name Unique arbitrary name. |
| 347 | * @param[in] address IP address to bind to. |
| 348 | * @param[in] port Port to bind to. |
| 349 | * @param[in] ti Expected transport protocol of incoming connections. |
| 350 | * @return 0 on success, -1 on error. |
| 351 | */ |
| 352 | int nc_server_add_endpt_listen(const char *name, const char *address, uint16_t port, NC_TRANSPORT_IMPL ti); |
| 353 | |
| 354 | /** |
| 355 | * @brief Stop listening on and remove an endpoint. |
| 356 | * |
| 357 | * @param[in] address Name of the endpoint. NULL matches all the names. |
| 358 | * @param[in] ti Expected transport. 0 matches all. |
| 359 | * @return 0 on success, -1 on not finding any match. |
| 360 | */ |
| 361 | int nc_server_del_endpt(const char *name, NC_TRANSPORT_IMPL ti); |
| 362 | |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 363 | /* TODO */ |
| 364 | struct nc_endpt *nc_server_endpt_lock(const char *name, NC_TRANSPORT_IMPL ti); |
| 365 | |
| 366 | /* TODO */ |
| 367 | void nc_server_endpt_unlock(struct nc_endpt *endpt); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 368 | |
| 369 | /* TODO */ |
| 370 | int nc_client_ch_add_bind_listen(const char *address, uint16_t port, NC_TRANSPORT_IMPL ti); |
| 371 | |
| 372 | /* TODO */ |
| 373 | int nc_client_ch_del_bind(const char *address, uint16_t port, NC_TRANSPORT_IMPL ti); |
| 374 | |
| 375 | /* TODO */ |
| 376 | int nc_connect_callhome(const char *host, uint16_t port, NC_TRANSPORT_IMPL ti, int timeout, struct nc_session **session); |
Michal Vasko | fb89d77 | 2016-01-08 12:25:35 +0100 | [diff] [blame] | 377 | |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 378 | #ifdef ENABLE_SSH |
| 379 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 380 | /* TODO */ |
Michal Vasko | af58cd9 | 2016-01-28 11:56:02 +0100 | [diff] [blame] | 381 | struct nc_session *nc_accept_callhome_ssh_sock(int sock, const char *host, uint16_t port, struct ly_ctx *ctx); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 382 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 383 | /** |
| 384 | * @brief Establish SSH transport on a socket. |
| 385 | * |
| 386 | * @param[in] session Session structure of the new connection. |
| 387 | * @param[in] sock Socket of the new connection. |
| 388 | * @param[in] timeout Timeout for all the related tasks. |
Michal Vasko | c61c449 | 2016-01-25 11:13:34 +0100 | [diff] [blame] | 389 | * @param[in] ch Whether to accept a Call Home session or a standard one. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 390 | * @return 1 on success, 0 on timeout, -1 on error. |
| 391 | */ |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 392 | 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] | 393 | |
Michal Vasko | 96164bf | 2016-01-21 15:41:58 +0100 | [diff] [blame] | 394 | /** |
| 395 | * @brief Callback called when a new SSH message is received. |
| 396 | * |
| 397 | * @param[in] sshsession SSH session the message arrived on. |
| 398 | * @param[in] msg SSH message itself. |
| 399 | * @param[in] data NETCONF session running on \p sshsession. |
| 400 | * @return 0 if the message was handled, 1 if it is left up to libssh. |
| 401 | */ |
| 402 | int nc_sshcb_msg(ssh_session sshsession, ssh_message msg, void *data); |
| 403 | |
| 404 | /** |
| 405 | * @brief Inspect what exactly happened if a SSH session socket poll |
| 406 | * returned POLLIN. |
| 407 | * |
| 408 | * @param[in] session NETCONF session communicating on the socket. |
| 409 | * @param[in,out] timeout Timeout for locking ti_lock, gets updated. |
| 410 | * @return 0 - timeout, |
| 411 | * 1 if \p session channel has data, |
| 412 | * 2 if some other channel has data, |
| 413 | * 3 on \p session status change, |
| 414 | * 4 on new SSH message, |
| 415 | * 5 on new NETCONF SSH channel, |
| 416 | * -1 on error. |
| 417 | */ |
| 418 | int nc_ssh_pollin(struct nc_session *session, int *timeout); |
| 419 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 420 | /* TODO */ |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 421 | void nc_server_ssh_clear_opts(struct nc_server_ssh_opts *opts); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 422 | |
| 423 | #endif /* ENABLE_SSH */ |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 424 | |
| 425 | #ifdef ENABLE_TLS |
| 426 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 427 | /* TODO */ |
Michal Vasko | af58cd9 | 2016-01-28 11:56:02 +0100 | [diff] [blame] | 428 | struct nc_session *nc_accept_callhome_tls_sock(int sock, const char *host, uint16_t port, struct ly_ctx *ctx); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 429 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 430 | /** |
| 431 | * @brief Establish TLS transport on a socket. |
| 432 | * |
| 433 | * @param[in] session Session structure of the new connection. |
| 434 | * @param[in] sock Socket of the new connection. |
| 435 | * @param[in] timeout Timeout for all the related tasks. |
Michal Vasko | c61c449 | 2016-01-25 11:13:34 +0100 | [diff] [blame] | 436 | * @param[in] ch Whether to accept a Call Home session or a standard one. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 437 | * @return 1 on success, 0 on timeout, -1 on error. |
| 438 | */ |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 439 | 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] | 440 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 441 | /* TODO */ |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 442 | void nc_server_tls_clear_opts(struct nc_server_tls_opts *opts); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 443 | |
| 444 | #endif /* ENABLE_TLS */ |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 445 | |
Michal Vasko | 80cad7f | 2015-12-08 14:42:27 +0100 | [diff] [blame] | 446 | /** |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 447 | * Functions |
| 448 | * - io.c |
| 449 | */ |
| 450 | |
| 451 | /** |
| 452 | * @brief Read message from the wire. |
| 453 | * |
| 454 | * Accepts hello, rpc, rpc-reply and notification. Received string is transformed into |
| 455 | * libyang XML tree and the message type is detected from the top level element. |
| 456 | * |
| 457 | * @param[in] session NETCONF session from which the message is being read. |
| 458 | * @param[in] timeout Timeout in milliseconds. Negative value means infinite timeout, |
| 459 | * zero value causes to return immediately. |
| 460 | * @param[out] data XML tree built from the read data. |
| 461 | * @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] | 462 | * (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] | 463 | * returned on error and #NC_MSG_NONE is never returned by this function. |
| 464 | */ |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 465 | NC_MSG_TYPE nc_read_msg_poll(struct nc_session* session, int timeout, struct lyxml_elem **data); |
| 466 | |
| 467 | /** |
| 468 | * @brief Read message from the wire. |
| 469 | * |
| 470 | * Accepts hello, rpc, rpc-reply and notification. Received string is transformed into |
| 471 | * libyang XML tree and the message type is detected from the top level element. |
| 472 | * |
| 473 | * @param[in] session NETCONF session from which the message is being read. |
| 474 | * @param[out] data XML tree built from the read data. |
| 475 | * @return Type of the read message. #NC_MSG_WOULDBLOCK is returned if timeout is positive |
| 476 | * (or zero) value and it passed out without any data on the wire. #NC_MSG_ERROR is |
| 477 | * returned on error and #NC_MSG_NONE is never returned by this function. |
| 478 | */ |
| 479 | 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] | 480 | |
Radek Krejci | fe0b347 | 2015-10-12 13:43:42 +0200 | [diff] [blame] | 481 | /** |
| 482 | * @brief Write message into wire. |
| 483 | * |
| 484 | * @param[in] session NETCONF session to which the message will be written. |
| 485 | * @param[in] type Type of the message to write. According to the type, the |
| 486 | * specific additional parameters are required or accepted: |
| 487 | * - #NC_MSG_RPC |
| 488 | * - `struct lyd_node *op;` - operation (content of the \<rpc/\> to be sent. Required parameter. |
| 489 | * - `const char *attrs;` - additional attributes to be added into the \<rpc/\> element. |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 490 | * Required parameter. |
| 491 | * `message-id` attribute is added automatically and default namespace is set to #NC_NS_BASE. |
| 492 | * Optional parameter. |
Radek Krejci | fe0b347 | 2015-10-12 13:43:42 +0200 | [diff] [blame] | 493 | * - #NC_MSG_REPLY |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 494 | * - `struct lyxml_node *rpc_elem;` - root of the RPC object to reply to. Required parameter. |
| 495 | * - `struct nc_server_reply *reply;` - RPC reply. Required parameter. |
Radek Krejci | fe0b347 | 2015-10-12 13:43:42 +0200 | [diff] [blame] | 496 | * - #NC_MSG_NOTIF |
| 497 | * - TODO: content |
| 498 | * @return 0 on success |
| 499 | */ |
| 500 | int nc_write_msg(struct nc_session *session, NC_MSG_TYPE type, ...); |
| 501 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 502 | /** |
| 503 | * @brief Check whether a session is still connected (on transport layer). |
| 504 | * |
| 505 | * @param[in] session Session to check. |
| 506 | * @return 1 if connected, 0 if not. |
| 507 | */ |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 508 | int nc_session_is_connected(struct nc_session *session); |
| 509 | |
Radek Krejci | 206fcd6 | 2015-10-07 15:42:48 +0200 | [diff] [blame] | 510 | #endif /* NC_SESSION_PRIVATE_H_ */ |