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