Radek Krejci | 4339024 | 2015-10-08 15:34:04 +0200 | [diff] [blame] | 1 | /** |
| 2 | * \file session.h |
| 3 | * \author Radek Krejci <rkrejci@cesnet.cz> |
| 4 | * \brief libnetconf2 session manipulation |
| 5 | * |
| 6 | * Copyright (c) 2015 CESNET, z.s.p.o. |
| 7 | * |
Radek Krejci | 9b81f5b | 2016-02-24 13:14:49 +0100 | [diff] [blame] | 8 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 9 | * You may not use this file except in compliance with the License. |
| 10 | * You may obtain a copy of the License at |
Michal Vasko | afd416b | 2016-02-25 14:51:46 +0100 | [diff] [blame] | 11 | * |
Radek Krejci | 9b81f5b | 2016-02-24 13:14:49 +0100 | [diff] [blame] | 12 | * https://opensource.org/licenses/BSD-3-Clause |
Radek Krejci | 4339024 | 2015-10-08 15:34:04 +0200 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | #ifndef NC_SESSION_H_ |
| 16 | #define NC_SESSION_H_ |
| 17 | |
Radek Krejci | 6e36bfb | 2016-12-01 21:40:16 +0100 | [diff] [blame] | 18 | #include "netconf.h" |
| 19 | |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 20 | #ifdef NC_ENABLED_SSH |
Michal Vasko | 4ef1493 | 2015-12-04 11:09:10 +0100 | [diff] [blame] | 21 | |
Michal Vasko | f0537d8 | 2016-01-29 14:42:38 +0100 | [diff] [blame] | 22 | /** |
| 23 | * @brief Enumeration of NETCONF SSH authentication methods |
| 24 | */ |
Michal Vasko | 4ef1493 | 2015-12-04 11:09:10 +0100 | [diff] [blame] | 25 | typedef enum { |
Michal Vasko | f0537d8 | 2016-01-29 14:42:38 +0100 | [diff] [blame] | 26 | NC_SSH_AUTH_PUBLICKEY = 0x01, /**< publickey SSH authentication */ |
| 27 | NC_SSH_AUTH_PASSWORD = 0x02, /**< password SSH authentication */ |
| 28 | NC_SSH_AUTH_INTERACTIVE = 0x04 /**< interactive SSH authentication */ |
Michal Vasko | 4ef1493 | 2015-12-04 11:09:10 +0100 | [diff] [blame] | 29 | } NC_SSH_AUTH_TYPE; |
| 30 | |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 31 | #endif /* NC_ENABLED_SSH */ |
Radek Krejci | 695d4fa | 2015-10-22 13:23:54 +0200 | [diff] [blame] | 32 | |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 33 | #ifdef NC_ENABLED_TLS |
Michal Vasko | c14e3c8 | 2016-01-11 16:14:30 +0100 | [diff] [blame] | 34 | |
Michal Vasko | f0537d8 | 2016-01-29 14:42:38 +0100 | [diff] [blame] | 35 | /** |
| 36 | * @brief Enumeration of cert-to-name mapping types |
| 37 | */ |
Michal Vasko | c14e3c8 | 2016-01-11 16:14:30 +0100 | [diff] [blame] | 38 | typedef enum { |
Michal Vasko | f0537d8 | 2016-01-29 14:42:38 +0100 | [diff] [blame] | 39 | NC_TLS_CTN_UNKNOWN = 0, /**< unknown mapping */ |
| 40 | NC_TLS_CTN_SPECIFIED, /**< username explicitly specified */ |
| 41 | NC_TLS_CTN_SAN_RFC822_NAME, /**< email address as username */ |
| 42 | NC_TLS_CTN_SAN_DNS_NAME, /**< DNS name as username */ |
| 43 | NC_TLS_CTN_SAN_IP_ADDRESS, /**< IP address as username */ |
| 44 | NC_TLS_CTN_SAN_ANY, /**< any certificate Subject Alternative Name as username */ |
| 45 | NC_TLS_CTN_COMMON_NAME /**< common name as username */ |
Michal Vasko | c14e3c8 | 2016-01-11 16:14:30 +0100 | [diff] [blame] | 46 | } NC_TLS_CTN_MAPTYPE; |
| 47 | |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 48 | #endif /* NC_ENABLED_TLS */ |
Michal Vasko | c14e3c8 | 2016-01-11 16:14:30 +0100 | [diff] [blame] | 49 | |
Radek Krejci | 4339024 | 2015-10-08 15:34:04 +0200 | [diff] [blame] | 50 | /** |
Radek Krejci | 695d4fa | 2015-10-22 13:23:54 +0200 | [diff] [blame] | 51 | * @brief Enumeration of possible session statuses |
| 52 | */ |
| 53 | typedef enum { |
Radek Krejci | 465308c | 2017-05-22 14:49:10 +0200 | [diff] [blame] | 54 | NC_STATUS_ERR = -1, /**< error return code for function getting the session status */ |
Michal Vasko | 38a7c6c | 2015-12-04 12:29:20 +0100 | [diff] [blame] | 55 | NC_STATUS_STARTING = 0, /**< session is not yet fully initiated */ |
| 56 | NC_STATUS_CLOSING, /**< session is being closed */ |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 57 | NC_STATUS_INVALID, /**< session is not running and is supposed to be closed (nc_session_free()) */ |
Michal Vasko | 38a7c6c | 2015-12-04 12:29:20 +0100 | [diff] [blame] | 58 | NC_STATUS_RUNNING /**< up and running */ |
Radek Krejci | 695d4fa | 2015-10-22 13:23:54 +0200 | [diff] [blame] | 59 | } NC_STATUS; |
| 60 | |
| 61 | /** |
Michal Vasko | 38a7c6c | 2015-12-04 12:29:20 +0100 | [diff] [blame] | 62 | * @brief Enumeration of transport implementations (ways how libnetconf implements NETCONF transport protocol) |
| 63 | */ |
| 64 | typedef enum { |
| 65 | NC_TI_NONE = 0, /**< none - session is not connected yet */ |
| 66 | NC_TI_FD, /**< file descriptors - use standard input/output, transport protocol is implemented |
| 67 | outside the current application */ |
Olivier Matz | ac7fa2f | 2018-10-11 10:02:04 +0200 | [diff] [blame^] | 68 | NC_TI_UNIX, /**< unix socket */ |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 69 | #ifdef NC_ENABLED_SSH |
Michal Vasko | 38a7c6c | 2015-12-04 12:29:20 +0100 | [diff] [blame] | 70 | NC_TI_LIBSSH, /**< libssh - use libssh library, only for NETCONF over SSH transport */ |
| 71 | #endif |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 72 | #ifdef NC_ENABLED_TLS |
Michal Vasko | 38a7c6c | 2015-12-04 12:29:20 +0100 | [diff] [blame] | 73 | NC_TI_OPENSSL /**< OpenSSL - use OpenSSL library, only for NETCONF over TLS transport */ |
| 74 | #endif |
| 75 | } NC_TRANSPORT_IMPL; |
| 76 | |
| 77 | /** |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 78 | * @brief Enumeration of Call Home connection types. |
| 79 | */ |
| 80 | typedef enum { |
| 81 | NC_CH_CT_NOT_SET = 0, |
| 82 | NC_CH_PERSIST, |
| 83 | NC_CH_PERIOD |
| 84 | } NC_CH_CONN_TYPE; |
| 85 | |
| 86 | /** |
| 87 | * @brief Enumeration of Call Home client priority policy. |
| 88 | */ |
| 89 | typedef enum { |
| 90 | NC_CH_FIRST_LISTED = 0, //default |
| 91 | NC_CH_LAST_CONNECTED |
| 92 | } NC_CH_START_WITH; |
| 93 | |
| 94 | /** |
Michal Vasko | 17dfda9 | 2016-12-01 14:06:16 +0100 | [diff] [blame] | 95 | * @brief Enumeration of SSH key types. |
| 96 | */ |
| 97 | typedef enum { |
| 98 | NC_SSH_KEY_UNKNOWN = 0, |
| 99 | NC_SSH_KEY_DSA, |
| 100 | NC_SSH_KEY_RSA, |
| 101 | NC_SSH_KEY_ECDSA |
| 102 | } NC_SSH_KEY_TYPE; |
| 103 | |
| 104 | /** |
Radek Krejci | 4339024 | 2015-10-08 15:34:04 +0200 | [diff] [blame] | 105 | * @brief NETCONF session object |
| 106 | */ |
| 107 | struct nc_session; |
| 108 | |
Radek Krejci | 695d4fa | 2015-10-22 13:23:54 +0200 | [diff] [blame] | 109 | /** |
Michal Vasko | 8dadf78 | 2016-01-15 10:29:36 +0100 | [diff] [blame] | 110 | * @brief Get session status. |
| 111 | * |
| 112 | * @param[in] session Session to get the information from. |
Michal Vasko | 8dadf78 | 2016-01-15 10:29:36 +0100 | [diff] [blame] | 113 | * @return Session status. |
| 114 | */ |
| 115 | NC_STATUS nc_session_get_status(const struct nc_session *session); |
| 116 | |
| 117 | /** |
Radek Krejci | 6e36bfb | 2016-12-01 21:40:16 +0100 | [diff] [blame] | 118 | * @brief Get session termination reason. |
| 119 | * |
| 120 | * @param[in] session Session to get the information from. |
| 121 | * @return Session termination reason enum value. |
| 122 | */ |
Michal Vasko | 142cfea | 2017-08-07 10:12:11 +0200 | [diff] [blame] | 123 | NC_SESSION_TERM_REASON nc_session_get_term_reason(const struct nc_session *session); |
| 124 | |
| 125 | /** |
| 126 | * @brief Get session killer session ID. |
| 127 | * |
| 128 | * @param[in] session Session to get the information from. |
| 129 | * @return Session killer ID. |
| 130 | */ |
| 131 | uint32_t nc_session_get_killed_by(const struct nc_session *session); |
Radek Krejci | 6e36bfb | 2016-12-01 21:40:16 +0100 | [diff] [blame] | 132 | |
| 133 | /** |
Michal Vasko | 8dadf78 | 2016-01-15 10:29:36 +0100 | [diff] [blame] | 134 | * @brief Get session ID. |
| 135 | * |
| 136 | * @param[in] session Session to get the information from. |
Michal Vasko | 8dadf78 | 2016-01-15 10:29:36 +0100 | [diff] [blame] | 137 | * @return Session ID. |
| 138 | */ |
| 139 | uint32_t nc_session_get_id(const struct nc_session *session); |
| 140 | |
| 141 | /** |
Michal Vasko | 174fe8e | 2016-02-17 15:38:09 +0100 | [diff] [blame] | 142 | * @brief Get session NETCONF version. |
| 143 | * |
| 144 | * @param[in] session Session to get the information from. |
| 145 | * @return 0 for version 1.0, non-zero for version 1.1. |
| 146 | */ |
| 147 | int nc_session_get_version(const struct nc_session *session); |
| 148 | |
| 149 | /** |
Michal Vasko | 8dadf78 | 2016-01-15 10:29:36 +0100 | [diff] [blame] | 150 | * @brief Get session transport used. |
| 151 | * |
| 152 | * @param[in] session Session to get the information from. |
Michal Vasko | 8dadf78 | 2016-01-15 10:29:36 +0100 | [diff] [blame] | 153 | * @return Session transport. |
| 154 | */ |
| 155 | NC_TRANSPORT_IMPL nc_session_get_ti(const struct nc_session *session); |
| 156 | |
| 157 | /** |
| 158 | * @brief Get session username. |
| 159 | * |
| 160 | * @param[in] session Session to get the information from. |
Michal Vasko | 8dadf78 | 2016-01-15 10:29:36 +0100 | [diff] [blame] | 161 | * @return Session username. |
| 162 | */ |
| 163 | const char *nc_session_get_username(const struct nc_session *session); |
| 164 | |
| 165 | /** |
| 166 | * @brief Get session host. |
| 167 | * |
| 168 | * @param[in] session Session to get the information from. |
Michal Vasko | 8dadf78 | 2016-01-15 10:29:36 +0100 | [diff] [blame] | 169 | * @return Session host. |
| 170 | */ |
| 171 | const char *nc_session_get_host(const struct nc_session *session); |
| 172 | |
| 173 | /** |
| 174 | * @brief Get session port. |
| 175 | * |
| 176 | * @param[in] session Session to get the information from. |
Michal Vasko | 8dadf78 | 2016-01-15 10:29:36 +0100 | [diff] [blame] | 177 | * @return Session port. |
| 178 | */ |
| 179 | uint16_t nc_session_get_port(const struct nc_session *session); |
| 180 | |
| 181 | /** |
Olivier Matz | ac7fa2f | 2018-10-11 10:02:04 +0200 | [diff] [blame^] | 182 | * @brief Get session path (unix socket only). |
| 183 | * |
| 184 | * @param[in] session Session to get the information from. |
| 185 | * @return Session unix socket path. |
| 186 | */ |
| 187 | const char *nc_session_get_path(const struct nc_session *session); |
| 188 | |
| 189 | /** |
Michal Vasko | 9a25e93 | 2016-02-01 10:36:42 +0100 | [diff] [blame] | 190 | * @brief Get session context. |
| 191 | * |
| 192 | * @param[in] session Session to get the information from. |
| 193 | * @return Session context. |
| 194 | */ |
| 195 | struct ly_ctx *nc_session_get_ctx(const struct nc_session *session); |
| 196 | |
| 197 | /** |
Michal Vasko | 2cc4c68 | 2016-03-01 09:16:48 +0100 | [diff] [blame] | 198 | * @brief Assign arbitrary data to a session. |
| 199 | * |
| 200 | * @param[in] session Session to modify. |
| 201 | * @param[in] data Data to be stored in the session. |
| 202 | */ |
| 203 | void nc_session_set_data(struct nc_session *session, void *data); |
| 204 | |
| 205 | /** |
| 206 | * @brief Get the data assigned to a session. |
| 207 | * |
| 208 | * @param[in] session Session to get the data from. |
| 209 | * @return Session-specific data. |
| 210 | */ |
| 211 | void *nc_session_get_data(const struct nc_session *session); |
| 212 | |
| 213 | /** |
Radek Krejci | 695d4fa | 2015-10-22 13:23:54 +0200 | [diff] [blame] | 214 | * @brief Free the NETCONF session object. |
| 215 | * |
| 216 | * @param[in] session Object to free. |
Michal Vasko | e1a64ec | 2016-03-01 12:21:58 +0100 | [diff] [blame] | 217 | * @param[in] data_free Session user data destructor. |
Radek Krejci | 695d4fa | 2015-10-22 13:23:54 +0200 | [diff] [blame] | 218 | */ |
Michal Vasko | e1a64ec | 2016-03-01 12:21:58 +0100 | [diff] [blame] | 219 | void nc_session_free(struct nc_session *session, void (*data_free)(void *)); |
Radek Krejci | 695d4fa | 2015-10-22 13:23:54 +0200 | [diff] [blame] | 220 | |
Radek Krejci | 62aa064 | 2017-05-25 16:33:49 +0200 | [diff] [blame] | 221 | #if defined(NC_ENABLED_SSH) || defined(NC_ENABLED_TLS) |
| 222 | |
| 223 | /** |
| 224 | * @brief Free all the dynamically allocated thread-specific libssl/libcrypto |
| 225 | * resources. |
| 226 | * |
| 227 | * This function should be called only if init (nc_client_init(), respectively nc_server_init()) was called. |
| 228 | * Call it in every thread your application creates just before the thread exits. In the last thread |
| 229 | * (usually the main one) call nc_client_destroy(), respectively nc_server_destroy(). |
| 230 | */ |
| 231 | void nc_thread_destroy(void); |
| 232 | |
| 233 | #endif /* NC_ENABLED_SSH || NC_ENABLED_TLS */ |
| 234 | |
Radek Krejci | 4339024 | 2015-10-08 15:34:04 +0200 | [diff] [blame] | 235 | #endif /* NC_SESSION_H_ */ |