Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 1 | /** |
| 2 | * \file session_server.h |
| 3 | * \author Michal Vasko <mvasko@cesnet.cz> |
| 4 | * \brief libnetconf2 session server 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 |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | #ifndef NC_SESSION_SERVER_H_ |
| 16 | #define NC_SESSION_SERVER_H_ |
| 17 | |
Michal Vasko | c09730e | 2019-01-17 10:07:26 +0100 | [diff] [blame] | 18 | #ifdef __cplusplus |
| 19 | extern "C" { |
| 20 | #endif |
| 21 | |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 22 | #include <stdint.h> |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 23 | #include <libyang/libyang.h> |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 24 | |
Michal Vasko | 709598e | 2016-11-28 14:48:32 +0100 | [diff] [blame] | 25 | #ifdef NC_ENABLED_TLS |
| 26 | # include <openssl/x509.h> |
| 27 | #endif |
| 28 | |
bhart | 3bc2f58 | 2018-06-05 12:40:32 -0500 | [diff] [blame] | 29 | #ifdef NC_ENABLED_SSH |
| 30 | # include <libssh/libssh.h> |
| 31 | # include <libssh/callbacks.h> |
| 32 | # include <libssh/server.h> |
| 33 | #endif |
| 34 | |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 35 | #include "session.h" |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 36 | #include "netconf.h" |
| 37 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 38 | /** |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 39 | * @defgroup server_session Server Session |
| 40 | * @ingroup server |
| 41 | * |
| 42 | * @brief Server-side NETCONF session manipulation. |
| 43 | * @{ |
| 44 | */ |
| 45 | |
| 46 | /** |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 47 | * @brief Prototype of callbacks that are called if some RPCs are received. |
| 48 | * |
| 49 | * If \p session termination reason is changed in the callback, one last reply |
| 50 | * is sent and then the session is considered invalid. |
| 51 | * |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 52 | * The callback is set via nc_set_global_rpc_clb(). |
| 53 | * |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 54 | * @param[in] rpc Parsed client RPC request. |
| 55 | * @param[in] session Session the RPC arrived on. |
| 56 | * @return Server reply. If NULL, an operation-failed error will be sent to the client. |
| 57 | */ |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 58 | typedef struct nc_server_reply *(*nc_rpc_clb)(struct lyd_node *rpc, struct nc_session *session); |
| 59 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 60 | /** |
Michal Vasko | 7b09624 | 2016-01-29 15:55:10 +0100 | [diff] [blame] | 61 | * @brief Set the termination reason for a session. Use only in #nc_rpc_clb callbacks. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 62 | * |
| 63 | * @param[in] session Session to modify. |
| 64 | * @param[in] reason Reason of termination. |
| 65 | */ |
| 66 | void nc_session_set_term_reason(struct nc_session *session, NC_SESSION_TERM_REASON reason); |
| 67 | |
| 68 | /** |
Michal Vasko | 142cfea | 2017-08-07 10:12:11 +0200 | [diff] [blame] | 69 | * @brief Set the session-id of the session responsible for this session's termination. |
| 70 | * |
| 71 | * @param[in] session Session to modify. Must have term_reason set to #NC_SESSION_TERM_KILLED. |
| 72 | * @param[in] sid SID of the killing session. |
| 73 | */ |
| 74 | void nc_session_set_killed_by(struct nc_session *session, uint32_t sid); |
| 75 | |
| 76 | /** |
| 77 | * @brief Set the status of a session. |
| 78 | * |
| 79 | * @param[in] session Session to modify. |
| 80 | * @param[in] status Status of the session. |
| 81 | */ |
| 82 | void nc_session_set_status(struct nc_session *session, NC_STATUS status); |
| 83 | |
| 84 | /** |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 85 | * @brief Set a global nc_rpc_clb that is called if the particular RPC request is |
| 86 | * received and the private field in the corresponding RPC schema node is NULL. |
| 87 | * |
| 88 | * @param[in] clb An user-defined nc_rpc_clb function callback, NULL to default. |
| 89 | */ |
| 90 | void nc_set_global_rpc_clb(nc_rpc_clb clb); |
| 91 | |
| 92 | /**@} Server Session */ |
| 93 | |
| 94 | /** |
| 95 | * @addtogroup server |
| 96 | * @{ |
| 97 | */ |
| 98 | |
| 99 | /** |
Michal Vasko | a7b8ca5 | 2016-03-01 12:09:29 +0100 | [diff] [blame] | 100 | * @brief Initialize libssh and/or libssl/libcrypto and the server using a libyang context. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 101 | * |
| 102 | * The context is not modified internally, only its dictionary is used for holding |
Michal Vasko | a43589b | 2016-02-17 13:24:59 +0100 | [diff] [blame] | 103 | * all the strings, which is thread-safe. Reading models is considered thread-safe |
| 104 | * as models cannot be removed and are rarely modified (augments or deviations). |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 105 | * |
Michal Vasko | 3a889fd | 2016-09-30 12:16:37 +0200 | [diff] [blame] | 106 | * If the RPC callbacks on schema nodes (mentioned in @ref howtoserver) are modified after |
Michal Vasko | 5494f51 | 2016-03-01 12:13:44 +0100 | [diff] [blame] | 107 | * server initialization with that particular context, they will be called (changes |
| 108 | * will take effect). However, there could be race conditions as the access to |
| 109 | * these callbacks is not thread-safe. |
| 110 | * |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 111 | * Server capabilities are generated based on its content. Changing the context |
| 112 | * in ways that result in changed capabilities (adding models, changing features) |
| 113 | * is discouraged after sessions are established as it is not possible to change |
| 114 | * capabilities of a session. |
| 115 | * |
| 116 | * This context can safely be destroyed only after calling the last libnetconf2 |
| 117 | * function in an application. |
| 118 | * |
Michal Vasko | 3a889fd | 2016-09-30 12:16:37 +0200 | [diff] [blame] | 119 | * Supported RPCs of models in the context are expected to have their callback |
| 120 | * in the corresponding RPC schema node set to a nc_rpc_clb function callback using nc_set_rpc_callback(). |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 121 | * This callback is called by nc_ps_poll() if the particular RPC request is |
| 122 | * received. Callbacks for ietf-netconf:get-schema (supporting YANG and YIN format |
| 123 | * only) and ietf-netconf:close-session are set internally if left unset. |
| 124 | * |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 125 | * @param[in] ctx Core NETCONF server context. |
| 126 | * @return 0 on success, -1 on error. |
| 127 | */ |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 128 | int nc_server_init(struct ly_ctx *ctx); |
| 129 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 130 | /** |
Michal Vasko | a7b8ca5 | 2016-03-01 12:09:29 +0100 | [diff] [blame] | 131 | * @brief Destroy any dynamically allocated libssh and/or libssl/libcrypto and |
| 132 | * server resources. |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 133 | */ |
| 134 | void nc_server_destroy(void); |
| 135 | |
| 136 | /** |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 137 | * @brief Set the with-defaults capability extra parameters. |
| 138 | * |
| 139 | * For the capability to be actually advertised, the server context must also |
| 140 | * include the ietf-netconf-with-defaults model. |
| 141 | * |
| 142 | * Changing this option has the same ill effects as changing capabilities while |
| 143 | * sessions are already established. |
| 144 | * |
| 145 | * @param[in] basic_mode basic-mode with-defaults parameter. |
| 146 | * @param[in] also_supported NC_WD_MODE bit array, also-supported with-defaults |
| 147 | * parameter. |
| 148 | * @return 0 on success, -1 on error. |
| 149 | */ |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 150 | int nc_server_set_capab_withdefaults(NC_WD_MODE basic_mode, int also_supported); |
| 151 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 152 | /** |
Michal Vasko | 55f0397 | 2016-04-13 08:56:01 +0200 | [diff] [blame] | 153 | * @brief Get with-defaults capability extra parameters. |
| 154 | * |
| 155 | * At least one argument must be non-NULL. |
| 156 | * |
| 157 | * @param[in,out] basic_mode basic-mode parameter. |
| 158 | * @param[in,out] also_supported also-supported parameter. |
| 159 | */ |
| 160 | void nc_server_get_capab_withdefaults(NC_WD_MODE *basic_mode, int *also_supported); |
| 161 | |
| 162 | /** |
Radek Krejci | 658782b | 2016-12-04 22:04:55 +0100 | [diff] [blame] | 163 | * @brief Set capability of the server. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 164 | * |
Radek Krejci | 658782b | 2016-12-04 22:04:55 +0100 | [diff] [blame] | 165 | * Capability can be used when some behavior or extension of the server is not defined |
| 166 | * as a YANG module. The provided value will be advertised in the server's \<hello\> |
| 167 | * messages. Note, that libnetconf only checks that the provided value is non-empty |
| 168 | * string. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 169 | * |
Michal Vasko | 50d2a5c | 2017-02-14 10:29:49 +0100 | [diff] [blame] | 170 | * @param[in] value Capability string to be advertised in server's \<hello\> messages. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 171 | */ |
Radek Krejci | 658782b | 2016-12-04 22:04:55 +0100 | [diff] [blame] | 172 | int nc_server_set_capability(const char *value); |
Michal Vasko | 55f0397 | 2016-04-13 08:56:01 +0200 | [diff] [blame] | 173 | |
| 174 | /** |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 175 | * @brief Set server timeout for receiving a hello message. |
| 176 | * |
| 177 | * @param[in] hello_timeout Hello message timeout. 0 for infinite waiting. |
| 178 | */ |
| 179 | void nc_server_set_hello_timeout(uint16_t hello_timeout); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 180 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 181 | /** |
Michal Vasko | 55f0397 | 2016-04-13 08:56:01 +0200 | [diff] [blame] | 182 | * @brief get server timeout for receiving a hello message. |
| 183 | * |
| 184 | * @return Hello message timeout, 0 is infinite. |
| 185 | */ |
| 186 | uint16_t nc_server_get_hello_timeout(void); |
| 187 | |
| 188 | /** |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 189 | * @brief Set server timeout for dropping an idle session. |
| 190 | * |
| 191 | * @param[in] idle_timeout Idle session timeout. 0 to never drop a session |
Michal Vasko | f0537d8 | 2016-01-29 14:42:38 +0100 | [diff] [blame] | 192 | * because of inactivity. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 193 | */ |
| 194 | void nc_server_set_idle_timeout(uint16_t idle_timeout); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 195 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 196 | /** |
Michal Vasko | 55f0397 | 2016-04-13 08:56:01 +0200 | [diff] [blame] | 197 | * @brief Get server timeout for dropping an idle session. |
| 198 | * |
| 199 | * @return Idle session timeout, 0 for for never dropping |
| 200 | * a session because of inactivity. |
| 201 | */ |
| 202 | uint16_t nc_server_get_idle_timeout(void); |
| 203 | |
| 204 | /** |
Radek Krejci | 24a1841 | 2018-05-16 15:09:10 +0200 | [diff] [blame] | 205 | * @brief Get all the server capabilities including all the schemas. |
Michal Vasko | 4ffa3b2 | 2016-05-24 16:36:25 +0200 | [diff] [blame] | 206 | * |
| 207 | * A few capabilities (with-defaults, interleave) depend on the current |
| 208 | * server options. |
| 209 | * |
| 210 | * @param[in] ctx Context to read most capabilities from. |
| 211 | * @return Array of capabilities stored in the \p ctx dictionary, NULL on error. |
| 212 | */ |
| 213 | const char **nc_server_get_cpblts(struct ly_ctx *ctx); |
| 214 | |
Radek Krejci | 24a1841 | 2018-05-16 15:09:10 +0200 | [diff] [blame] | 215 | /** |
| 216 | * @brief Get the server capabilities including the schemas with the specified YANG version. |
| 217 | * |
| 218 | * A few capabilities (with-defaults, interleave) depend on the current |
| 219 | * server options. |
| 220 | * |
| 221 | * @param[in] ctx Context to read most capabilities from. |
| 222 | * @param[in] version YANG version of the schemas to be included in result, with |
| 223 | * LYS_VERSION_UNDEF the result is the same as from nc_server_get_cpblts(). |
| 224 | * @return Array of capabilities stored in the \p ctx dictionary, NULL on error. |
| 225 | */ |
| 226 | const char **nc_server_get_cpblts_version(struct ly_ctx *ctx, LYS_VERSION version); |
| 227 | |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 228 | /**@} Server */ |
| 229 | |
| 230 | /** |
| 231 | * @addtogroup server_session |
| 232 | * @{ |
| 233 | */ |
| 234 | |
Michal Vasko | 4ffa3b2 | 2016-05-24 16:36:25 +0200 | [diff] [blame] | 235 | /** |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 236 | * @brief Accept a new session on a pre-established transport session. |
| 237 | * |
| 238 | * @param[in] fdin File descriptor to read (unencrypted) XML data from. |
| 239 | * @param[in] fdout File descriptor to write (unencrypted) XML data to. |
| 240 | * @param[in] username NETCONF username as provided by the transport protocol. |
| 241 | * @param[out] session New session on success. |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 242 | * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message |
| 243 | * parsing fail, NC_MSG_WOULDBLOCK on timeout, NC_MSG_ERROR on other errors. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 244 | */ |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 245 | NC_MSG_TYPE nc_accept_inout(int fdin, int fdout, const char *username, struct nc_session **session); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 246 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 247 | /** |
| 248 | * @brief Create an empty structure for polling sessions. |
| 249 | * |
| 250 | * @return Empty pollsession structure, NULL on error. |
| 251 | */ |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 252 | struct nc_pollsession *nc_ps_new(void); |
Michal Vasko | fb89d77 | 2016-01-08 12:25:35 +0100 | [diff] [blame] | 253 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 254 | /** |
| 255 | * @brief Free a pollsession structure. |
| 256 | * |
Michal Vasko | 01082bf | 2016-04-07 10:44:21 +0200 | [diff] [blame] | 257 | * !IMPORTANT! Make sure that \p ps is not accessible (is not used) |
| 258 | * by any thread before and after this call! |
| 259 | * |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 260 | * @param[in] ps Pollsession structure to free. |
| 261 | */ |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 262 | void nc_ps_free(struct nc_pollsession *ps); |
Michal Vasko | fb89d77 | 2016-01-08 12:25:35 +0100 | [diff] [blame] | 263 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 264 | /** |
| 265 | * @brief Add a session to a pollsession structure. |
| 266 | * |
| 267 | * @param[in] ps Pollsession structure to modify. |
| 268 | * @param[in] session Session to add to \p ps. |
| 269 | * @return 0 on success, -1 on error. |
| 270 | */ |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 271 | int nc_ps_add_session(struct nc_pollsession *ps, struct nc_session *session); |
Michal Vasko | fb89d77 | 2016-01-08 12:25:35 +0100 | [diff] [blame] | 272 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 273 | /** |
| 274 | * @brief Remove a session from a pollsession structure. |
| 275 | * |
| 276 | * @param[in] ps Pollsession structure to modify. |
| 277 | * @param[in] session Session to remove from \p ps. |
Michal Vasko | f0537d8 | 2016-01-29 14:42:38 +0100 | [diff] [blame] | 278 | * @return 0 on success, -1 on not found. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 279 | */ |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 280 | int nc_ps_del_session(struct nc_pollsession *ps, struct nc_session *session); |
| 281 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 282 | /** |
Michal Vasko | e1ee05b | 2017-03-21 10:10:18 +0100 | [diff] [blame] | 283 | * @brief Get a session from a pollsession structure matching the session ID. |
| 284 | * |
| 285 | * @param[in] ps Pollsession structure to read from. |
Michal Vasko | 4871c9d | 2017-10-09 14:48:39 +0200 | [diff] [blame] | 286 | * @param[in] idx Index of the session. |
| 287 | * @return Session on index, NULL if out-of-bounds. |
Michal Vasko | e1ee05b | 2017-03-21 10:10:18 +0100 | [diff] [blame] | 288 | */ |
Michal Vasko | 4871c9d | 2017-10-09 14:48:39 +0200 | [diff] [blame] | 289 | struct nc_session *nc_ps_get_session(const struct nc_pollsession *ps, uint16_t idx); |
Michal Vasko | e1ee05b | 2017-03-21 10:10:18 +0100 | [diff] [blame] | 290 | |
| 291 | /** |
Michal Vasko | 0fdb7ac | 2016-03-01 09:03:12 +0100 | [diff] [blame] | 292 | * @brief Learn the number of sessions in a pollsession structure. |
| 293 | * |
Michal Vasko | f4462fd | 2017-02-15 14:29:05 +0100 | [diff] [blame] | 294 | * Does not lock \p ps structure for efficiency. |
| 295 | * |
Michal Vasko | 0fdb7ac | 2016-03-01 09:03:12 +0100 | [diff] [blame] | 296 | * @param[in] ps Pollsession structure to check. |
Michal Vasko | c72d0e6 | 2016-07-26 11:36:11 +0200 | [diff] [blame] | 297 | * @return Number of sessions (even invalid ones) in \p ps, -1 on error. |
Michal Vasko | 0fdb7ac | 2016-03-01 09:03:12 +0100 | [diff] [blame] | 298 | */ |
| 299 | uint16_t nc_ps_session_count(struct nc_pollsession *ps); |
| 300 | |
Michal Vasko | 30a5d6b | 2017-02-15 14:29:39 +0100 | [diff] [blame] | 301 | #define NC_PSPOLL_NOSESSIONS 0x0001 /**< No sessions to poll. */ |
| 302 | #define NC_PSPOLL_TIMEOUT 0x0002 /**< Timeout elapsed. */ |
| 303 | #define NC_PSPOLL_RPC 0x0004 /**< RPC was correctly parsed and processed. */ |
| 304 | #define NC_PSPOLL_BAD_RPC 0x0008 /**< RPC was received, but failed to be parsed. */ |
| 305 | #define NC_PSPOLL_REPLY_ERROR 0x0010 /**< Response to the RPC was a \<rpc-reply\> of type error. */ |
| 306 | #define NC_PSPOLL_SESSION_TERM 0x0020 /**< Some session was terminated. */ |
| 307 | #define NC_PSPOLL_SESSION_ERROR 0x0040 /**< Some session was terminated incorrectly (not by a \<close-session\> or \<kill-session\> RPC). */ |
| 308 | #define NC_PSPOLL_ERROR 0x0080 /**< Other fatal errors (they are printed). */ |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 309 | |
| 310 | #ifdef NC_ENABLED_SSH |
Michal Vasko | e645de3 | 2017-05-26 14:02:50 +0200 | [diff] [blame] | 311 | # define NC_PSPOLL_SSH_MSG 0x00100 /**< SSH message received (and processed, if relevant, only with SSH support). */ |
| 312 | # define NC_PSPOLL_SSH_CHANNEL 0x0200 /**< New SSH channel opened on an existing session (only with SSH support). */ |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 313 | #endif |
| 314 | |
Michal Vasko | 0fdb7ac | 2016-03-01 09:03:12 +0100 | [diff] [blame] | 315 | /** |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 316 | * @brief Poll sessions and process any received RPCs. |
| 317 | * |
Michal Vasko | e4300a8 | 2017-05-24 10:35:42 +0200 | [diff] [blame] | 318 | * Only one event on one session is handled in one function call. If this event |
| 319 | * is a session termination (#NC_PSPOLL_SESSION_TERM returned), the session |
| 320 | * should be removed from \p ps. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 321 | * |
| 322 | * @param[in] ps Pollsession structure to use. |
Michal Vasko | 11d142a | 2016-01-19 15:58:24 +0100 | [diff] [blame] | 323 | * @param[in] timeout Poll timeout in milliseconds. 0 for non-blocking call, -1 for |
Michal Vasko | 96830e3 | 2016-02-01 10:54:18 +0100 | [diff] [blame] | 324 | * infinite waiting. |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 325 | * @param[in] session Session that was processed and that specific return bits concern. |
| 326 | * Can be NULL. |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 327 | * @return Bitfield of NC_PSPOLL_* macros. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 328 | */ |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 329 | int nc_ps_poll(struct nc_pollsession *ps, int timeout, struct nc_session **session); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 330 | |
Michal Vasko | 11d142a | 2016-01-19 15:58:24 +0100 | [diff] [blame] | 331 | /** |
Michal Vasko | cad3ac4 | 2016-03-01 09:06:01 +0100 | [diff] [blame] | 332 | * @brief Remove sessions from a pollsession structure and |
| 333 | * call nc_session_free() on them. |
Michal Vasko | d09eae6 | 2016-02-01 10:32:52 +0100 | [diff] [blame] | 334 | * |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 335 | * Calling this function with \p all false makes sense if nc_ps_poll() returned #NC_PSPOLL_SESSION_TERM. |
Michal Vasko | d09eae6 | 2016-02-01 10:32:52 +0100 | [diff] [blame] | 336 | * |
| 337 | * @param[in] ps Pollsession structure to clear. |
Michal Vasko | cad3ac4 | 2016-03-01 09:06:01 +0100 | [diff] [blame] | 338 | * @param[in] all Whether to free all sessions, or only the invalid ones. |
Michal Vasko | e1a64ec | 2016-03-01 12:21:58 +0100 | [diff] [blame] | 339 | * @param[in] data_free Session user data destructor. |
Michal Vasko | d09eae6 | 2016-02-01 10:32:52 +0100 | [diff] [blame] | 340 | */ |
Michal Vasko | e1a64ec | 2016-03-01 12:21:58 +0100 | [diff] [blame] | 341 | void nc_ps_clear(struct nc_pollsession *ps, int all, void (*data_free)(void *)); |
Michal Vasko | d09eae6 | 2016-02-01 10:32:52 +0100 | [diff] [blame] | 342 | |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 343 | #if defined(NC_ENABLED_SSH) || defined(NC_ENABLED_TLS) |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 344 | |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 345 | /**@} Server Session */ |
| 346 | |
| 347 | /** |
| 348 | * @addtogroup server |
| 349 | * @{ |
| 350 | */ |
| 351 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 352 | /** |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 353 | * @brief Add a new endpoint. |
| 354 | * |
| 355 | * Before the endpoint can accept any connections, its address and port must |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 356 | * be set via nc_server_endpt_set_address() and nc_server_endpt_set_port(). |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 357 | * |
| 358 | * @param[in] name Arbitrary unique endpoint name. |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 359 | * @param[in] ti Transport protocol to use. |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 360 | * @return 0 on success, -1 on error. |
| 361 | */ |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 362 | int nc_server_add_endpt(const char *name, NC_TRANSPORT_IMPL ti); |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 363 | |
| 364 | /** |
| 365 | * @brief Stop listening on and remove an endpoint. |
| 366 | * |
| 367 | * @param[in] name Endpoint name. NULL matches all endpoints. |
Michal Vasko | 5905037 | 2016-11-22 14:33:55 +0100 | [diff] [blame] | 368 | * @param[in] ti Endpoint transport protocol. NULL matches any protocol. |
| 369 | * Redundant to set if \p name is set, endpoint names are |
| 370 | * unique disregarding their protocol. |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 371 | * @return 0 on success, -1 on not finding any match. |
| 372 | */ |
Michal Vasko | 5905037 | 2016-11-22 14:33:55 +0100 | [diff] [blame] | 373 | int nc_server_del_endpt(const char *name, NC_TRANSPORT_IMPL ti); |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 374 | |
| 375 | /** |
Michal Vasko | e8e0770 | 2017-03-15 10:19:30 +0100 | [diff] [blame] | 376 | * @brief Get the number of currently configured listening endpoints. |
| 377 | * Note that an ednpoint without address and/or port will be included |
| 378 | * even though it is not, in fact, listening. |
| 379 | * |
| 380 | * @return Number of added listening endpoints. |
| 381 | */ |
| 382 | int nc_server_endpt_count(void); |
| 383 | |
| 384 | /** |
Michal Vasko | 1b5973e | 2020-01-30 16:05:46 +0100 | [diff] [blame] | 385 | * @brief Check if an endpoint exists. |
| 386 | * |
| 387 | * @param[in] name Endpoint name. |
| 388 | * @return 0 if does not exists, non-zero otherwise. |
| 389 | */ |
| 390 | int nc_server_is_endpt(const char *name); |
| 391 | |
| 392 | /** |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 393 | * @brief Change endpoint listening address. |
| 394 | * |
| 395 | * On error the previous listening socket (if any) is left untouched. |
| 396 | * |
| 397 | * @param[in] endpt_name Existing endpoint name. |
| 398 | * @param[in] address New listening address. |
| 399 | * @return 0 on success, -1 on error. |
| 400 | */ |
| 401 | int nc_server_endpt_set_address(const char *endpt_name, const char *address); |
| 402 | |
| 403 | /** |
| 404 | * @brief Change endpoint listening port. |
| 405 | * |
| 406 | * On error the previous listening socket (if any) is left untouched. |
| 407 | * |
| 408 | * @param[in] endpt_name Existing endpoint name. |
| 409 | * @param[in] port New listening port. |
| 410 | * @return 0 on success, -1 on error. |
| 411 | */ |
| 412 | int nc_server_endpt_set_port(const char *endpt_name, uint16_t port); |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 413 | |
Olivier Matz | ac7fa2f | 2018-10-11 10:02:04 +0200 | [diff] [blame] | 414 | /** |
| 415 | * @brief Change endpoint permissions. |
| 416 | * |
| 417 | * This is only valid on unix transport endpoint. |
| 418 | * On error the previous listening socket (if any) is left untouched. |
| 419 | * |
| 420 | * @param[in] endpt_name Existing endpoint name. |
| 421 | * @param[in] mode New mode, -1 to use default. |
| 422 | * @param[in] uid New uid, -1 to use default. |
| 423 | * @param[in] gid New gid, -1 to use default. |
| 424 | * @return 0 on success, -1 on error. |
| 425 | */ |
| 426 | int nc_server_endpt_set_perms(const char *endpt_name, mode_t mode, uid_t uid, gid_t gid); |
| 427 | |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 428 | /** |
| 429 | * @brief Change endpoint keepalives state. Affects only new connections. |
| 430 | * |
| 431 | * @param[in] endpt_name Existing endpoint name. |
| 432 | * @param[in] enable Whether to enable or disable keepalives. |
| 433 | * @return 0 on success, -1 on error. |
| 434 | */ |
| 435 | int nc_server_endpt_enable_keepalives(const char *endpt_name, int enable); |
| 436 | |
| 437 | /** |
| 438 | * @brief Change endpoint keepalives parameters. Affects only new connections. |
| 439 | * |
| 440 | * @param[in] endpt_name Existing endpoint name. |
| 441 | * @param[in] idle_time Keepalive idle time in seconds, 1 by default, -1 to keep previous value. |
| 442 | * @param[in] max_probes Keepalive max probes sent, 10 by default, -1 to keep previous value. |
| 443 | * @param[in] probe_interval Keepalive probe interval in seconds, 5 by default, -1 to keep previous value. |
| 444 | * @return 0 on success, -1 on error. |
| 445 | */ |
| 446 | int nc_server_endpt_set_keepalives(const char *endpt_name, int idle_time, int max_probes, int probe_interval); |
| 447 | |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 448 | /**@} Server */ |
| 449 | |
| 450 | /** |
| 451 | * @addtogroup server_session |
| 452 | */ |
| 453 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 454 | /** |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 455 | * @brief Accept new sessions on all the listening endpoints. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 456 | * |
Michal Vasko | b70c8b8 | 2017-03-17 09:09:29 +0100 | [diff] [blame] | 457 | * Once a new (TCP/IP) conection is established a different (quite long) timeout |
| 458 | * is used for waiting for transport-related data, which means this call can block |
| 459 | * for much longer that \p timeout, but only with slow/faulty/malicious clients. |
| 460 | * |
Michal Vasko | 11d142a | 2016-01-19 15:58:24 +0100 | [diff] [blame] | 461 | * @param[in] timeout Timeout for receiving a new connection in milliseconds, 0 for |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 462 | * non-blocking call, -1 for infinite waiting. |
Michal Vasko | 96164bf | 2016-01-21 15:41:58 +0100 | [diff] [blame] | 463 | * @param[out] session New session. |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 464 | * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message |
| 465 | * parsing fail, NC_MSG_WOULDBLOCK on timeout, NC_MSG_ERROR on other errors. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 466 | */ |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 467 | NC_MSG_TYPE nc_accept(int timeout, struct nc_session **session); |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 468 | |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 469 | #endif /* NC_ENABLED_SSH || NC_ENABLED_TLS */ |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 470 | |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 471 | #ifdef NC_ENABLED_SSH |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 472 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 473 | /** |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 474 | * @brief Accept a new NETCONF session on an SSH session of a running NETCONF \p orig_session. |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 475 | * Call this function only when nc_ps_poll() returns #NC_PSPOLL_SSH_CHANNEL on \p orig_session. |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 476 | * |
| 477 | * @param[in] orig_session Session that has a new SSH channel ready. |
| 478 | * @param[out] session New session. |
| 479 | * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message |
| 480 | * parsing fail, NC_MSG_WOULDBLOCK on timeout, NC_MSG_ERROR on other errors. |
| 481 | */ |
| 482 | NC_MSG_TYPE nc_session_accept_ssh_channel(struct nc_session *orig_session, struct nc_session **session); |
| 483 | |
| 484 | /** |
Michal Vasko | 96164bf | 2016-01-21 15:41:58 +0100 | [diff] [blame] | 485 | * @brief Accept a new NETCONF session on an SSH session of a running NETCONF session |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 486 | * that was polled in \p ps. Call this function only when nc_ps_poll() on \p ps returns #NC_PSPOLL_SSH_CHANNEL. |
Michal Vasko | c0fde01 | 2016-03-01 09:07:23 +0100 | [diff] [blame] | 487 | * The new session is only returned in \p session, it is not added to \p ps. |
Michal Vasko | 96164bf | 2016-01-21 15:41:58 +0100 | [diff] [blame] | 488 | * |
| 489 | * @param[in] ps Unmodified pollsession structure from the previous nc_ps_poll() call. |
| 490 | * @param[out] session New session. |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 491 | * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message |
| 492 | * parsing fail, NC_MSG_WOULDBLOCK on timeout, NC_MSG_ERROR on other errors. |
Michal Vasko | 96164bf | 2016-01-21 15:41:58 +0100 | [diff] [blame] | 493 | */ |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 494 | NC_MSG_TYPE nc_ps_accept_ssh_channel(struct nc_pollsession *ps, struct nc_session **session); |
Michal Vasko | 96164bf | 2016-01-21 15:41:58 +0100 | [diff] [blame] | 495 | |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 496 | /**@} Server Session */ |
| 497 | |
| 498 | /** |
| 499 | * @defgroup server_ssh Server SSH |
| 500 | * @ingroup server |
| 501 | * |
| 502 | * @brief Server-side settings for SSH connections. |
| 503 | * @{ |
| 504 | */ |
| 505 | |
Michal Vasko | 96164bf | 2016-01-21 15:41:58 +0100 | [diff] [blame] | 506 | /** |
Michal Vasko | 17dfda9 | 2016-12-01 14:06:16 +0100 | [diff] [blame] | 507 | * @brief Add an authorized client SSH public key. This public key can be used for |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 508 | * publickey authentication (for any SSH connection, even Call Home) afterwards. |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 509 | * |
Michal Vasko | 17dfda9 | 2016-12-01 14:06:16 +0100 | [diff] [blame] | 510 | * @param[in] pubkey_base64 Authorized public key binary content encoded in base64. |
| 511 | * @param[in] type Authorized public key SSH type. |
| 512 | * @param[in] username Username that the client with the public key must use. |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 513 | * @return 0 on success, -1 on error. |
| 514 | */ |
Michal Vasko | 17dfda9 | 2016-12-01 14:06:16 +0100 | [diff] [blame] | 515 | int nc_server_ssh_add_authkey(const char *pubkey_base64, NC_SSH_KEY_TYPE type, const char *username); |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 516 | |
| 517 | /** |
Michal Vasko | 17dfda9 | 2016-12-01 14:06:16 +0100 | [diff] [blame] | 518 | * @brief Add an authorized client SSH public key. This public key can be used for |
| 519 | * publickey authentication (for any SSH connection, even Call Home) afterwards. |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 520 | * |
Michal Vasko | 17dfda9 | 2016-12-01 14:06:16 +0100 | [diff] [blame] | 521 | * @param[in] pubkey_path Path to the public key. |
| 522 | * @param[in] username Username that the client with the public key must use. |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 523 | * @return 0 on success, -1 on error. |
| 524 | */ |
Michal Vasko | 17dfda9 | 2016-12-01 14:06:16 +0100 | [diff] [blame] | 525 | int nc_server_ssh_add_authkey_path(const char *pubkey_path, const char *username); |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 526 | |
| 527 | /** |
Michal Vasko | 17dfda9 | 2016-12-01 14:06:16 +0100 | [diff] [blame] | 528 | * @brief Remove an authorized client SSH public key. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 529 | * |
Michal Vasko | 17dfda9 | 2016-12-01 14:06:16 +0100 | [diff] [blame] | 530 | * @param[in] pubkey_path Path to an authorized public key. NULL matches all the keys. |
| 531 | * @param[in] pubkey_base64 Authorized public key content. NULL matches any key. |
| 532 | * @param[in] type Authorized public key type. 0 matches all types. |
| 533 | * @param[in] username Username for an authorized public key. NULL matches all the usernames. |
| 534 | * @return 0 on success, -1 on not finding any match. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 535 | */ |
Michal Vasko | 17dfda9 | 2016-12-01 14:06:16 +0100 | [diff] [blame] | 536 | int nc_server_ssh_del_authkey(const char *pubkey_path, const char *pubkey_base64, NC_SSH_KEY_TYPE type, |
| 537 | const char *username); |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 538 | |
| 539 | /** |
Michal Vasko | ebba760 | 2018-03-23 13:14:08 +0100 | [diff] [blame] | 540 | * @brief Set the callback for SSH password authentication. If none is set, local system users are used. |
| 541 | * |
| 542 | * @param[in] passwd_auth_clb Callback that should authenticate the user. Username can be directly obtained from \p session. |
| 543 | * Zero return indicates success, non-zero an error. |
| 544 | * @param[in] user_data Optional arbitrary user data that will be passed to \p passwd_auth_clb. |
| 545 | * @param[in] free_user_data Optional callback that will be called during cleanup to free any \p user_data. |
| 546 | */ |
| 547 | void nc_server_ssh_set_passwd_auth_clb(int (*passwd_auth_clb)(const struct nc_session *session, const char *password, |
| 548 | void *user_data), |
| 549 | void *user_data, void (*free_user_data)(void *user_data)); |
| 550 | |
| 551 | /** |
bhart | 3bc2f58 | 2018-06-05 12:40:32 -0500 | [diff] [blame] | 552 | * @brief Set the callback for SSH interactive authentication. If none is set, local system users are used. |
| 553 | * |
| 554 | * @param[in] interactive_auth_clb Callback that should authenticate the user. |
| 555 | * Zero return indicates success, non-zero an error. |
| 556 | * @param[in] user_data Optional arbitrary user data that will be passed to \p passwd_auth_clb. |
| 557 | * @param[in] free_user_data Optional callback that will be called during cleanup to free any \p user_data. |
| 558 | */ |
David Sedlák | 9d21a66 | 2018-08-23 10:57:55 +0200 | [diff] [blame] | 559 | void nc_server_ssh_set_interactive_auth_clb(int (*interactive_auth_clb)(const struct nc_session *session, const ssh_message msg, |
bhart | 3bc2f58 | 2018-06-05 12:40:32 -0500 | [diff] [blame] | 560 | void *user_data), |
| 561 | void *user_data, void (*free_user_data)(void *user_data)); |
| 562 | |
| 563 | /** |
| 564 | * @brief Set the callback for SSH public key authentication. If none is set, local system users are used. |
| 565 | * |
| 566 | * @param[in] pubkey_auth_clb Callback that should authenticate the user. |
| 567 | * Zero return indicates success, non-zero an error. |
| 568 | * @param[in] user_data Optional arbitrary user data that will be passed to \p passwd_auth_clb. |
| 569 | * @param[in] free_user_data Optional callback that will be called during cleanup to free any \p user_data. |
| 570 | */ |
David Sedlák | 9d21a66 | 2018-08-23 10:57:55 +0200 | [diff] [blame] | 571 | void nc_server_ssh_set_pubkey_auth_clb(int (*pubkey_auth_clb)(const struct nc_session *session, ssh_key key, void *user_data), |
bhart | 3bc2f58 | 2018-06-05 12:40:32 -0500 | [diff] [blame] | 572 | void *user_data, void (*free_user_data)(void *user_data)); |
| 573 | |
| 574 | /** |
Michal Vasko | 4c1fb49 | 2017-01-30 14:31:07 +0100 | [diff] [blame] | 575 | * @brief Set the callback for retrieving host keys. Any RSA, DSA, and ECDSA keys can be added. However, |
| 576 | * a maximum of one key of each type will be used during SSH authentication, later keys replacing |
| 577 | * the earlier ones. |
| 578 | * |
| 579 | * @param[in] hostkey_clb Callback that should return the key itself. Zero return indicates success, non-zero |
| 580 | * an error. On success exactly ONE of \p privkey_path or \p privkey_data is expected |
| 581 | * to be set. The one set will be freed. |
| 582 | * - \p privkey_path expects a PEM file, |
| 583 | * - \p privkey_data expects a base-64 encoded ANS.1 DER data, |
Michal Vasko | ddce121 | 2019-05-24 09:58:49 +0200 | [diff] [blame] | 584 | * - \p privkey_type type of the key in \p privkey_data. |
Michal Vasko | 4c1fb49 | 2017-01-30 14:31:07 +0100 | [diff] [blame] | 585 | * @param[in] user_data Optional arbitrary user data that will be passed to \p hostkey_clb. |
| 586 | * @param[in] free_user_data Optional callback that will be called during cleanup to free any \p user_data. |
| 587 | */ |
| 588 | void nc_server_ssh_set_hostkey_clb(int (*hostkey_clb)(const char *name, void *user_data, char **privkey_path, |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 589 | char **privkey_data, NC_SSH_KEY_TYPE *privkey_type), void *user_data, void (*free_user_data)(void *user_data)); |
Michal Vasko | 4c1fb49 | 2017-01-30 14:31:07 +0100 | [diff] [blame] | 590 | |
| 591 | /** |
Michal Vasko | ddce121 | 2019-05-24 09:58:49 +0200 | [diff] [blame] | 592 | * @brief Add endpoint SSH host keys the server will identify itself with. Only the name is set, the key itself |
| 593 | * wil be retrieved using a callback. |
| 594 | * |
| 595 | * @param[in] endpt_name Existing endpoint name. |
| 596 | * @param[in] name Arbitrary name of the host key. |
| 597 | * @param[in] idx Optional index where to add the key. -1 adds at the end. |
| 598 | * @return 0 on success, -1 on error. |
| 599 | */ |
| 600 | int nc_server_ssh_endpt_add_hostkey(const char *endpt_name, const char *name, int16_t idx); |
| 601 | |
| 602 | /** |
Michal Vasko | 4c1fb49 | 2017-01-30 14:31:07 +0100 | [diff] [blame] | 603 | * @brief Delete endpoint SSH host key. Their order is preserved. |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 604 | * |
| 605 | * @param[in] endpt_name Existing endpoint name. |
Michal Vasko | 7d25588 | 2017-02-09 13:35:08 +0100 | [diff] [blame] | 606 | * @param[in] name Name of the host key. NULL matches all the keys, but if \p idx != -1 then this must be NULL. |
| 607 | * @param[in] idx Index of the hostkey. -1 matches all indices, but if \p name != NULL then this must be -1. |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 608 | * @return 0 on success, -1 on error. |
| 609 | */ |
Michal Vasko | 7d25588 | 2017-02-09 13:35:08 +0100 | [diff] [blame] | 610 | int nc_server_ssh_endpt_del_hostkey(const char *endpt_name, const char *name, int16_t idx); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 611 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 612 | /** |
Michal Vasko | fbfe8b6 | 2017-02-14 10:22:30 +0100 | [diff] [blame] | 613 | * @brief Move endpoint SSH host key. |
| 614 | * |
| 615 | * @param[in] endpt_name Exisitng endpoint name. |
| 616 | * @param[in] key_mov Name of the host key that will be moved. |
| 617 | * @param[in] key_after Name of the key that will preceed \p key_mov. NULL if \p key_mov is to be moved at the beginning. |
| 618 | * @return 0 in success, -1 on error. |
| 619 | */ |
| 620 | int nc_server_ssh_endpt_mov_hostkey(const char *endpt_name, const char *key_mov, const char *key_after); |
| 621 | |
| 622 | /** |
| 623 | * @brief Modify endpoint SSH host key. |
| 624 | * |
| 625 | * @param[in] endpt_name Exisitng endpoint name. |
| 626 | * @param[in] name Name of an existing host key. |
| 627 | * @param[in] new_name New name of the host key \p name. |
| 628 | * @return 0 in success, -1 on error. |
| 629 | */ |
| 630 | int nc_server_ssh_endpt_mod_hostkey(const char *endpt_name, const char *name, const char *new_name); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 631 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 632 | /** |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 633 | * @brief Set endpoint accepted SSH authentication methods. All (publickey, password, interactive) |
Michal Vasko | f0537d8 | 2016-01-29 14:42:38 +0100 | [diff] [blame] | 634 | * are supported by default. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 635 | * |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 636 | * @param[in] endpt_name Existing endpoint name. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 637 | * @param[in] auth_methods Accepted authentication methods bit field of NC_SSH_AUTH_TYPE. |
| 638 | * @return 0 on success, -1 on error. |
| 639 | */ |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 640 | int nc_server_ssh_endpt_set_auth_methods(const char *endpt_name, int auth_methods); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 641 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 642 | /** |
Michal Vasko | ddce121 | 2019-05-24 09:58:49 +0200 | [diff] [blame] | 643 | * @brief Get endpoint accepted SSH authentication methods. |
| 644 | * |
| 645 | * @param[in] endpt_name Existing endpoint name. |
| 646 | * @return Accepted authentication methods bit field of NC_SSH_AUTH_TYPE. |
| 647 | */ |
| 648 | int nc_server_ssh_endpt_get_auth_methods(const char *endpt_name); |
| 649 | |
| 650 | /** |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 651 | * @brief Set endpoint SSH authentication attempts of every client. 3 by default. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 652 | * |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 653 | * @param[in] endpt_name Existing endpoint name. |
Michal Vasko | 5e6f4cc | 2016-01-20 13:27:44 +0100 | [diff] [blame] | 654 | * @param[in] auth_attempts Failed authentication attempts before a client is dropped. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 655 | * @return 0 on success, -1 on error. |
| 656 | */ |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 657 | int nc_server_ssh_endpt_set_auth_attempts(const char *endpt_name, uint16_t auth_attempts); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 658 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 659 | /** |
Michal Vasko | cbad4c5 | 2019-06-27 16:30:35 +0200 | [diff] [blame] | 660 | * @brief Set endpoint SSH authentication timeout. 30 seconds by default. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 661 | * |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 662 | * @param[in] endpt_name Existing endpoint name. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 663 | * @param[in] auth_timeout Number of seconds before an unauthenticated client is dropped. |
| 664 | * @return 0 on success, -1 on error. |
| 665 | */ |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 666 | int nc_server_ssh_endpt_set_auth_timeout(const char *endpt_name, uint16_t auth_timeout); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 667 | |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 668 | /**@} Server SSH */ |
| 669 | |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 670 | #endif /* NC_ENABLED_SSH */ |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 671 | |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 672 | #ifdef NC_ENABLED_TLS |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 673 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 674 | /** |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 675 | * @defgroup server_tls Server TLS |
| 676 | * @ingroup server |
| 677 | * |
| 678 | * @brief Server-side settings for TLS connections. |
| 679 | * @{ |
| 680 | */ |
| 681 | |
| 682 | /** |
Michal Vasko | 4c1fb49 | 2017-01-30 14:31:07 +0100 | [diff] [blame] | 683 | * @brief Set the server TLS certificate. Only the name is set, the certificate itself |
| 684 | * wil be retrieved using a callback. |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 685 | * |
| 686 | * @param[in] endpt_name Existing endpoint name. |
Michal Vasko | 4c1fb49 | 2017-01-30 14:31:07 +0100 | [diff] [blame] | 687 | * @param[in] name Arbitrary certificate name. |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 688 | * @return 0 on success, -1 on error. |
| 689 | */ |
Michal Vasko | 4c1fb49 | 2017-01-30 14:31:07 +0100 | [diff] [blame] | 690 | int nc_server_tls_endpt_set_server_cert(const char *endpt_name, const char *name); |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 691 | |
| 692 | /** |
Michal Vasko | 4c1fb49 | 2017-01-30 14:31:07 +0100 | [diff] [blame] | 693 | * @brief Set the callback for retrieving server certificate and matching private key. |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 694 | * |
Michal Vasko | 4c1fb49 | 2017-01-30 14:31:07 +0100 | [diff] [blame] | 695 | * @param[in] cert_clb Callback that should return the certificate and the key itself. Zero return indicates success, |
| 696 | * non-zero an error. On success exactly ONE of \p cert_path or \p cert_data and ONE of |
| 697 | * \p privkey_path and \p privkey_data is expected to be set. Those set will be freed. |
| 698 | * - \p cert_path expects a PEM file, |
| 699 | * - \p cert_data expects a base-64 encoded ASN.1 DER data, |
| 700 | * - \p privkey_path expects a PEM file, |
| 701 | * - \p privkey_data expects a base-64 encoded ANS.1 DER data, |
Michal Vasko | ddce121 | 2019-05-24 09:58:49 +0200 | [diff] [blame] | 702 | * - \p privkey_type type of the key in \p privkey_data. |
Michal Vasko | 4c1fb49 | 2017-01-30 14:31:07 +0100 | [diff] [blame] | 703 | * @param[in] user_data Optional arbitrary user data that will be passed to \p cert_clb. |
| 704 | * @param[in] free_user_data Optional callback that will be called during cleanup to free any \p user_data. |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 705 | */ |
Michal Vasko | 4c1fb49 | 2017-01-30 14:31:07 +0100 | [diff] [blame] | 706 | void nc_server_tls_set_server_cert_clb(int (*cert_clb)(const char *name, void *user_data, char **cert_path, char **cert_data, |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 707 | char **privkey_path, char **privkey_data, NC_SSH_KEY_TYPE *privkey_type), void *user_data, |
| 708 | void (*free_user_data)(void *user_data)); |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 709 | |
| 710 | /** |
Andrew Langefeld | 440b6c7 | 2018-08-27 16:26:20 -0500 | [diff] [blame] | 711 | * @brief Set the callback for retrieving server certificate chain |
| 712 | * |
| 713 | * @param[in] cert_chain_clb Callback that should return all the certificates of the chain. Zero return indicates success, |
| 714 | * non-zero an error. On success, \p cert_paths and \p cert_data are expected to be set or left |
| 715 | * NULL. Both will be (deeply) freed. |
| 716 | * - \p cert_paths expect an array of PEM files, |
| 717 | * - \p cert_path_count number of \p cert_paths array members, |
| 718 | * - \p cert_data expect an array of base-64 encoded ASN.1 DER cert data, |
| 719 | * - \p cert_data_count number of \p cert_data array members. |
| 720 | * @param[in] user_data Optional arbitrary user data that will be passed to \p cert_clb. |
| 721 | * @param[in] free_user_data Optional callback that will be called during cleanup to free any \p user_data. |
| 722 | */ |
| 723 | void nc_server_tls_set_server_cert_chain_clb(int (*cert_chain_clb)(const char *name, void *user_data, char ***cert_paths, |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 724 | int *cert_path_count, char ***cert_data, int *cert_data_count), void *user_data, void (*free_user_data)(void *user_data)); |
Andrew Langefeld | 440b6c7 | 2018-08-27 16:26:20 -0500 | [diff] [blame] | 725 | |
| 726 | /** |
Michal Vasko | 4c1fb49 | 2017-01-30 14:31:07 +0100 | [diff] [blame] | 727 | * @brief Add a trusted certificate list. Can be both a CA or a client one. Can be |
Michal Vasko | fdfd9dd | 2016-02-29 10:18:46 +0100 | [diff] [blame] | 728 | * safely used together with nc_server_tls_endpt_set_trusted_ca_paths(). |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 729 | * |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 730 | * @param[in] endpt_name Existing endpoint name. |
Michal Vasko | 4c1fb49 | 2017-01-30 14:31:07 +0100 | [diff] [blame] | 731 | * @param[in] name Arbitary name identifying this certificate list. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 732 | * @return 0 on success, -1 on error. |
| 733 | */ |
Michal Vasko | 4c1fb49 | 2017-01-30 14:31:07 +0100 | [diff] [blame] | 734 | int nc_server_tls_endpt_add_trusted_cert_list(const char *endpt_name, const char *name); |
Michal Vasko | 0457bb4 | 2016-01-08 15:49:13 +0100 | [diff] [blame] | 735 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 736 | /** |
Michal Vasko | 4c1fb49 | 2017-01-30 14:31:07 +0100 | [diff] [blame] | 737 | * @brief Set the callback for retrieving trusted certificates. |
| 738 | * |
| 739 | * @param[in] cert_list_clb Callback that should return all the certificates of a list. Zero return indicates success, |
| 740 | * non-zero an error. On success, \p cert_paths and \p cert_data are expected to be set or left |
| 741 | * NULL. Both will be (deeply) freed. |
| 742 | * - \p cert_paths expect an array of PEM files, |
| 743 | * - \p cert_path_count number of \p cert_paths array members, |
| 744 | * - \p cert_data expect an array of base-64 encoded ASN.1 DER cert data, |
| 745 | * - \p cert_data_count number of \p cert_data array members. |
| 746 | * @param[in] user_data Optional arbitrary user data that will be passed to \p cert_clb. |
| 747 | * @param[in] free_user_data Optional callback that will be called during cleanup to free any \p user_data. |
| 748 | */ |
| 749 | void nc_server_tls_set_trusted_cert_list_clb(int (*cert_list_clb)(const char *name, void *user_data, char ***cert_paths, |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 750 | int *cert_path_count, char ***cert_data, int *cert_data_count), void *user_data, void (*free_user_data)(void *user_data)); |
Michal Vasko | 4c1fb49 | 2017-01-30 14:31:07 +0100 | [diff] [blame] | 751 | |
| 752 | /** |
| 753 | * @brief Remove a trusted certificate. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 754 | * |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 755 | * @param[in] endpt_name Existing endpoint name. |
Michal Vasko | 4c1fb49 | 2017-01-30 14:31:07 +0100 | [diff] [blame] | 756 | * @param[in] name Name of the certificate list to delete. NULL deletes all the lists. |
| 757 | * @return 0 on success, -1 on not found. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 758 | */ |
Michal Vasko | 4c1fb49 | 2017-01-30 14:31:07 +0100 | [diff] [blame] | 759 | int nc_server_tls_endpt_del_trusted_cert_list(const char *endpt_name, const char *name); |
Michal Vasko | 0457bb4 | 2016-01-08 15:49:13 +0100 | [diff] [blame] | 760 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 761 | /** |
| 762 | * @brief Set trusted Certificate Authority certificate locations. There can only be |
Michal Vasko | 5d2ad08 | 2016-02-09 11:47:59 +0100 | [diff] [blame] | 763 | * one file and one directory, they are replaced if already set. Can be safely |
Michal Vasko | fdfd9dd | 2016-02-29 10:18:46 +0100 | [diff] [blame] | 764 | * used with nc_server_tls_endpt_add_trusted_cert() or its _path variant. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 765 | * |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 766 | * @param[in] endpt_name Existing endpoint name. |
Michal Vasko | 96830e3 | 2016-02-01 10:54:18 +0100 | [diff] [blame] | 767 | * @param[in] ca_file Path to a trusted CA cert store file in PEM format. Can be NULL. |
| 768 | * @param[in] ca_dir Path to a trusted CA cert store hashed directory (c_rehash utility |
| 769 | * can be used to create hashes) with PEM files. Can be NULL. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 770 | * @return 0 on success, -1 on error. |
| 771 | */ |
Michal Vasko | 96830e3 | 2016-02-01 10:54:18 +0100 | [diff] [blame] | 772 | int nc_server_tls_endpt_set_trusted_ca_paths(const char *endpt_name, const char *ca_file, const char *ca_dir); |
Michal Vasko | 0457bb4 | 2016-01-08 15:49:13 +0100 | [diff] [blame] | 773 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 774 | /** |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 775 | * @brief Set Certificate Revocation List locations. There can only be one file |
Michal Vasko | f0537d8 | 2016-01-29 14:42:38 +0100 | [diff] [blame] | 776 | * and one directory, they are replaced if already set. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 777 | * |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 778 | * @param[in] endpt_name Existing endpoint name. |
Michal Vasko | 96830e3 | 2016-02-01 10:54:18 +0100 | [diff] [blame] | 779 | * @param[in] crl_file Path to a CRL store file in PEM format. Can be NULL. |
| 780 | * @param[in] crl_dir Path to a CRL store hashed directory (c_rehash utility |
| 781 | * can be used to create hashes) with PEM files. Can be NULL. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 782 | * @return 0 on success, -1 on error. |
| 783 | */ |
Michal Vasko | 96830e3 | 2016-02-01 10:54:18 +0100 | [diff] [blame] | 784 | int nc_server_tls_endpt_set_crl_paths(const char *endpt_name, const char *crl_file, const char *crl_dir); |
Michal Vasko | 0457bb4 | 2016-01-08 15:49:13 +0100 | [diff] [blame] | 785 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 786 | /** |
Michal Vasko | 96830e3 | 2016-02-01 10:54:18 +0100 | [diff] [blame] | 787 | * @brief Destroy and clean CRLs. Certificates, private keys, and CTN entries are |
Michal Vasko | f0537d8 | 2016-01-29 14:42:38 +0100 | [diff] [blame] | 788 | * not affected. |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 789 | * |
| 790 | * @param[in] endpt_name Existing endpoint name. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 791 | */ |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 792 | void nc_server_tls_endpt_clear_crls(const char *endpt_name); |
Michal Vasko | 0457bb4 | 2016-01-08 15:49:13 +0100 | [diff] [blame] | 793 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 794 | /** |
Michal Vasko | 58c22a2 | 2016-11-23 13:49:53 +0100 | [diff] [blame] | 795 | * @brief Add a cert-to-name entry. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 796 | * |
Michal Vasko | 3cf4aaa | 2017-02-01 15:03:36 +0100 | [diff] [blame] | 797 | * It is possible to add an entry step-by-step, specifying first only \p ip and in later calls |
| 798 | * \p fingerprint, \p map_type, and optionally \p name spearately. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 799 | * |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 800 | * @param[in] endpt_name Existing endpoint name. |
Michal Vasko | 3cf4aaa | 2017-02-01 15:03:36 +0100 | [diff] [blame] | 801 | * @param[in] id Priority of the entry. It must be unique. If already exists, the entry with this id |
| 802 | * is modified. |
| 803 | * @param[in] fingerprint Matching certificate fingerprint. If NULL, kept temporarily unset. |
| 804 | * @param[in] map_type Type of username-certificate mapping. If 0, kept temporarily unset. |
| 805 | * @param[in] name Specific username used only if \p map_type == NC_TLS_CTN_SPECIFED. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 806 | * @return 0 on success, -1 on error. |
| 807 | */ |
Michal Vasko | 3a889fd | 2016-09-30 12:16:37 +0200 | [diff] [blame] | 808 | int nc_server_tls_endpt_add_ctn(const char *endpt_name, uint32_t id, const char *fingerprint, |
| 809 | NC_TLS_CTN_MAPTYPE map_type, const char *name); |
Michal Vasko | c14e3c8 | 2016-01-11 16:14:30 +0100 | [diff] [blame] | 810 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 811 | /** |
Michal Vasko | 58c22a2 | 2016-11-23 13:49:53 +0100 | [diff] [blame] | 812 | * @brief Remove a cert-to-name entry. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 813 | * |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 814 | * @param[in] endpt_name Existing endpoint name. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 815 | * @param[in] id Priority of the entry. -1 matches all the priorities. |
| 816 | * @param[in] fingerprint Fingerprint fo the entry. NULL matches all the fingerprints. |
| 817 | * @param[in] map_type Mapping type of the entry. 0 matches all the mapping types. |
| 818 | * @param[in] name Specific username for the entry. NULL matches all the usernames. |
| 819 | * @return 0 on success, -1 on not finding any match. |
| 820 | */ |
Michal Vasko | 3a889fd | 2016-09-30 12:16:37 +0200 | [diff] [blame] | 821 | int nc_server_tls_endpt_del_ctn(const char *endpt_name, int64_t id, const char *fingerprint, |
| 822 | NC_TLS_CTN_MAPTYPE map_type, const char *name); |
Michal Vasko | 0457bb4 | 2016-01-08 15:49:13 +0100 | [diff] [blame] | 823 | |
Michal Vasko | df5e6af | 2016-11-23 13:50:56 +0100 | [diff] [blame] | 824 | /** |
| 825 | * @brief Get a cert-to-name entry. |
| 826 | * |
| 827 | * If a parameter is NULL, it is ignored. If its dereferenced value is NULL, |
| 828 | * it is filled and returned. If the value is set, it is used as a filter. |
| 829 | * Returns first matching entry. |
| 830 | * |
| 831 | * @param[in] endpt_name Existing endpoint name. |
| 832 | * @param[in,out] id Priority of the entry. |
| 833 | * @param[in,out] fingerprint Fingerprint fo the entry. |
| 834 | * @param[in,out] map_type Mapping type of the entry. |
| 835 | * @param[in,out] name Specific username for the entry. |
| 836 | * @return 0 on success, -1 on not finding any match. |
| 837 | */ |
Michal Vasko | f585ac7 | 2016-11-25 15:16:38 +0100 | [diff] [blame] | 838 | int nc_server_tls_endpt_get_ctn(const char *endpt_name, uint32_t *id, char **fingerprint, NC_TLS_CTN_MAPTYPE *map_type, |
| 839 | char **name); |
Michal Vasko | df5e6af | 2016-11-23 13:50:56 +0100 | [diff] [blame] | 840 | |
Michal Vasko | 7060bcf | 2016-11-28 14:48:11 +0100 | [diff] [blame] | 841 | /** |
Michal Vasko | 709598e | 2016-11-28 14:48:32 +0100 | [diff] [blame] | 842 | * @brief Get client certificate. |
| 843 | * |
| 844 | * @param[in] session Session to get the information from. |
| 845 | * @return Const session client certificate. |
| 846 | */ |
| 847 | const X509 *nc_session_get_client_cert(const struct nc_session *session); |
| 848 | |
| 849 | /** |
Michal Vasko | 7060bcf | 2016-11-28 14:48:11 +0100 | [diff] [blame] | 850 | * @brief Set TLS authentication additional verify callback. |
| 851 | * |
| 852 | * Server will always perform cert-to-name based on its configuration. Only after it passes |
| 853 | * and this callback is set, it is also called. It should return exactly what OpenSSL |
| 854 | * verify callback meaning 1 for success, 0 to deny the user. |
| 855 | * |
| 856 | * @param[in] verify_clb Additional user verify callback. |
| 857 | */ |
| 858 | void nc_server_tls_set_verify_clb(int (*verify_clb)(const struct nc_session *session)); |
| 859 | |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 860 | /**@} Server TLS */ |
| 861 | |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 862 | #endif /* NC_ENABLED_TLS */ |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 863 | |
Michal Vasko | f835235 | 2016-05-24 09:11:36 +0200 | [diff] [blame] | 864 | /** |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 865 | * @addtogroup server_session |
| 866 | * @{ |
| 867 | */ |
| 868 | |
| 869 | /** |
Michal Vasko | c45ebd3 | 2016-05-25 11:17:36 +0200 | [diff] [blame] | 870 | * @brief Get session start time. |
Michal Vasko | f835235 | 2016-05-24 09:11:36 +0200 | [diff] [blame] | 871 | * |
| 872 | * @param[in] session Session to get the information from. |
Michal Vasko | c45ebd3 | 2016-05-25 11:17:36 +0200 | [diff] [blame] | 873 | * @return Session start time. |
Michal Vasko | f835235 | 2016-05-24 09:11:36 +0200 | [diff] [blame] | 874 | */ |
Michal Vasko | c45ebd3 | 2016-05-25 11:17:36 +0200 | [diff] [blame] | 875 | time_t nc_session_get_start_time(const struct nc_session *session); |
Michal Vasko | f835235 | 2016-05-24 09:11:36 +0200 | [diff] [blame] | 876 | |
Michal Vasko | 3486a7c | 2017-03-03 13:28:07 +0100 | [diff] [blame] | 877 | /** |
| 878 | * @brief Set session notification subscription flag. |
| 879 | * |
| 880 | * It is used only to ignore timeouts, because they are |
| 881 | * ignored for sessions with active subscriptions. |
| 882 | * |
| 883 | * @param[in] session Session to modify. |
| 884 | * @param[in] notif_status 0 for no active subscriptions, non-zero for an active subscription. |
| 885 | */ |
| 886 | void nc_session_set_notif_status(struct nc_session *session, int notif_status); |
| 887 | |
| 888 | /** |
| 889 | * @brief Get session notification subscription flag. |
| 890 | * |
| 891 | * @param[in] session Session to get the information from. |
| 892 | * @return 0 for no active subscription, non-zero for an active subscription. |
| 893 | */ |
| 894 | int nc_session_get_notif_status(const struct nc_session *session); |
| 895 | |
Michal Vasko | 8f43059 | 2019-02-26 08:32:54 +0100 | [diff] [blame] | 896 | /** |
| 897 | * @brief Learn whether a session was created using Call Home or not. |
| 898 | * Works only for server sessions. |
| 899 | * |
| 900 | * @param[in] session Session to get the information from. |
| 901 | * @return 0 if a standard session, non-zero if a Call Home session. |
| 902 | */ |
| 903 | int nc_session_is_callhome(const struct nc_session *session); |
| 904 | |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 905 | /**@} Server Session */ |
| 906 | |
Michal Vasko | c09730e | 2019-01-17 10:07:26 +0100 | [diff] [blame] | 907 | #ifdef __cplusplus |
| 908 | } |
| 909 | #endif |
| 910 | |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 911 | #endif /* NC_SESSION_SERVER_H_ */ |