Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 1 | /** |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 2 | * @file session_server.h |
| 3 | * @author Michal Vasko <mvasko@cesnet.cz> |
| 4 | * @brief libnetconf2 session server manipulation |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 5 | * |
Michal Vasko | 95ea9ff | 2021-11-09 12:29:14 +0100 | [diff] [blame] | 6 | * @copyright |
Michal Vasko | 1440a74 | 2021-03-31 11:11:03 +0200 | [diff] [blame] | 7 | * Copyright (c) 2015 - 2021 CESNET, z.s.p.o. |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 8 | * |
Radek Krejci | 9b81f5b | 2016-02-24 13:14:49 +0100 | [diff] [blame] | 9 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 10 | * You may not use this file except in compliance with the License. |
| 11 | * You may obtain a copy of the License at |
Michal Vasko | afd416b | 2016-02-25 14:51:46 +0100 | [diff] [blame] | 12 | * |
Radek Krejci | 9b81f5b | 2016-02-24 13:14:49 +0100 | [diff] [blame] | 13 | * https://opensource.org/licenses/BSD-3-Clause |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 14 | */ |
| 15 | |
| 16 | #ifndef NC_SESSION_SERVER_H_ |
| 17 | #define NC_SESSION_SERVER_H_ |
| 18 | |
Michal Vasko | c09730e | 2019-01-17 10:07:26 +0100 | [diff] [blame] | 19 | #ifdef __cplusplus |
| 20 | extern "C" { |
| 21 | #endif |
| 22 | |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 23 | #include <libyang/libyang.h> |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 24 | #include <stdint.h> |
Michal Vasko | cca9ba6 | 2021-11-25 13:26:17 +0100 | [diff] [blame] | 25 | #include <sys/types.h> |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 26 | |
roman | 9225e91 | 2024-04-05 12:33:09 +0200 | [diff] [blame] | 27 | #include "netconf.h" |
| 28 | #include "session.h" |
| 29 | |
| 30 | #ifdef NC_ENABLED_SSH_TLS |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 31 | # include <libssh/callbacks.h> |
| 32 | # include <libssh/libssh.h> |
| 33 | # include <libssh/server.h> |
roman | 2eab474 | 2023-06-06 10:00:26 +0200 | [diff] [blame] | 34 | #endif /* NC_ENABLED_SSH_TLS */ |
bhart | 3bc2f58 | 2018-06-05 12:40:32 -0500 | [diff] [blame] | 35 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 36 | /** |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 37 | * @defgroup server_session Server Session |
| 38 | * @ingroup server |
| 39 | * |
| 40 | * @brief Server-side NETCONF session manipulation. |
| 41 | * @{ |
| 42 | */ |
| 43 | |
| 44 | /** |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 45 | * @brief Prototype of callbacks that are called if some RPCs are received. |
| 46 | * |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 47 | * If @p session termination reason is changed in the callback, one last reply |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 48 | * is sent and then the session is considered invalid. |
| 49 | * |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 50 | * The callback is set via nc_set_global_rpc_clb(). |
| 51 | * |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 52 | * @param[in] rpc Parsed client RPC request. |
| 53 | * @param[in] session Session the RPC arrived on. |
| 54 | * @return Server reply. If NULL, an operation-failed error will be sent to the client. |
| 55 | */ |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 56 | typedef struct nc_server_reply *(*nc_rpc_clb)(struct lyd_node *rpc, struct nc_session *session); |
| 57 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 58 | /** |
Michal Vasko | 7b09624 | 2016-01-29 15:55:10 +0100 | [diff] [blame] | 59 | * @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] | 60 | * |
| 61 | * @param[in] session Session to modify. |
| 62 | * @param[in] reason Reason of termination. |
| 63 | */ |
| 64 | void nc_session_set_term_reason(struct nc_session *session, NC_SESSION_TERM_REASON reason); |
| 65 | |
| 66 | /** |
Michal Vasko | 142cfea | 2017-08-07 10:12:11 +0200 | [diff] [blame] | 67 | * @brief Set the session-id of the session responsible for this session's termination. |
| 68 | * |
| 69 | * @param[in] session Session to modify. Must have term_reason set to #NC_SESSION_TERM_KILLED. |
| 70 | * @param[in] sid SID of the killing session. |
| 71 | */ |
| 72 | void nc_session_set_killed_by(struct nc_session *session, uint32_t sid); |
| 73 | |
| 74 | /** |
| 75 | * @brief Set the status of a session. |
| 76 | * |
| 77 | * @param[in] session Session to modify. |
| 78 | * @param[in] status Status of the session. |
| 79 | */ |
| 80 | void nc_session_set_status(struct nc_session *session, NC_STATUS status); |
| 81 | |
| 82 | /** |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 83 | * @brief Set a global nc_rpc_clb that is called if the particular RPC request is |
| 84 | * received and the private field in the corresponding RPC schema node is NULL. |
| 85 | * |
Michal Vasko | 238b6c1 | 2021-12-14 15:14:09 +0100 | [diff] [blame] | 86 | * If this callback is set, the default callbacks for "get-schema" and "close-session" are not used. |
| 87 | * |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 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 | |
Michal Vasko | 238b6c1 | 2021-12-14 15:14:09 +0100 | [diff] [blame] | 92 | /** |
| 93 | * @brief Default RPC callback used for "ietf-netconf-monitoring:get-schema" RPC if no other specific |
| 94 | * or global callback is set. |
| 95 | * |
| 96 | * @param[in] rpc Received RPC. |
| 97 | * @param[in] session NC session @p rpc was received on. |
| 98 | * @return Server reply. |
| 99 | */ |
| 100 | struct nc_server_reply *nc_clb_default_get_schema(struct lyd_node *rpc, struct nc_session *session); |
| 101 | |
| 102 | /** |
| 103 | * @brief Default RPC callback used for "ietf-netconf:close-session" RPC if no other specific |
| 104 | * or global callback is set. |
| 105 | * |
| 106 | * @param[in] rpc Received RPC. |
| 107 | * @param[in] session NC session @p rpc was received on. |
| 108 | * @return Server reply. |
| 109 | */ |
| 110 | struct nc_server_reply *nc_clb_default_close_session(struct lyd_node *rpc, struct nc_session *session); |
| 111 | |
Michal Vasko | 4e6d324 | 2021-05-26 09:13:24 +0200 | [diff] [blame] | 112 | /** @} Server Session */ |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 113 | |
| 114 | /** |
roman | f578cd5 | 2023-10-19 09:47:40 +0200 | [diff] [blame] | 115 | * @defgroup server_functions Server Functions |
| 116 | * @ingroup server |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 117 | * @{ |
| 118 | */ |
| 119 | |
| 120 | /** |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 121 | * @brief Initialize libssh and/or libssl/libcrypto and the server. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 122 | * |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 123 | * Must be called before other nc_server* functions. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 124 | * |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 125 | * @return 0 on success, -1 on error. |
| 126 | */ |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 127 | int nc_server_init(void); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 128 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 129 | /** |
Michal Vasko | a7b8ca5 | 2016-03-01 12:09:29 +0100 | [diff] [blame] | 130 | * @brief Destroy any dynamically allocated libssh and/or libssl/libcrypto and |
| 131 | * server resources. |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 132 | */ |
| 133 | void nc_server_destroy(void); |
| 134 | |
| 135 | /** |
roman | f578cd5 | 2023-10-19 09:47:40 +0200 | [diff] [blame] | 136 | * @brief Initialize a context which can serve as a default server context. |
| 137 | * |
| 138 | * Loads the default modules ietf-netconf and ietf-netconf-monitoring and their enabled features - ietf-netconf |
| 139 | * enabled features are : writable-running, candidate, rollback-on-error, validate, startup, url, xpath, confirmed-commit and |
| 140 | * ietf-netconf-monitoring has no features. |
| 141 | * |
| 142 | * If ctx is : |
| 143 | * - NULL: a new context will be created and if the call is successful you have to free it, |
| 144 | * - non NULL: context will be searched for the two modules and their features |
| 145 | * and if anything is missing, it will be implemented. |
| 146 | * |
| 147 | * @param[in,out] ctx Optional context in which the modules will be loaded. Created if ctx is null. |
| 148 | * @return 0 on success, -1 on error. |
| 149 | */ |
| 150 | int nc_server_init_ctx(struct ly_ctx **ctx); |
| 151 | |
| 152 | /** |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 153 | * @brief Set the with-defaults capability extra parameters. |
| 154 | * |
| 155 | * For the capability to be actually advertised, the server context must also |
| 156 | * include the ietf-netconf-with-defaults model. |
| 157 | * |
| 158 | * Changing this option has the same ill effects as changing capabilities while |
| 159 | * sessions are already established. |
| 160 | * |
| 161 | * @param[in] basic_mode basic-mode with-defaults parameter. |
| 162 | * @param[in] also_supported NC_WD_MODE bit array, also-supported with-defaults |
| 163 | * parameter. |
| 164 | * @return 0 on success, -1 on error. |
| 165 | */ |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 166 | int nc_server_set_capab_withdefaults(NC_WD_MODE basic_mode, int also_supported); |
| 167 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 168 | /** |
Michal Vasko | 55f0397 | 2016-04-13 08:56:01 +0200 | [diff] [blame] | 169 | * @brief Get with-defaults capability extra parameters. |
| 170 | * |
| 171 | * At least one argument must be non-NULL. |
| 172 | * |
roman | f578cd5 | 2023-10-19 09:47:40 +0200 | [diff] [blame] | 173 | * @param[out] basic_mode basic-mode parameter. |
| 174 | * @param[out] also_supported also-supported parameter. |
Michal Vasko | 55f0397 | 2016-04-13 08:56:01 +0200 | [diff] [blame] | 175 | */ |
| 176 | void nc_server_get_capab_withdefaults(NC_WD_MODE *basic_mode, int *also_supported); |
| 177 | |
| 178 | /** |
Radek Krejci | 658782b | 2016-12-04 22:04:55 +0100 | [diff] [blame] | 179 | * @brief Set capability of the server. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 180 | * |
Radek Krejci | 658782b | 2016-12-04 22:04:55 +0100 | [diff] [blame] | 181 | * Capability can be used when some behavior or extension of the server is not defined |
| 182 | * as a YANG module. The provided value will be advertised in the server's \<hello\> |
| 183 | * messages. Note, that libnetconf only checks that the provided value is non-empty |
| 184 | * string. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 185 | * |
Michal Vasko | 50d2a5c | 2017-02-14 10:29:49 +0100 | [diff] [blame] | 186 | * @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] | 187 | */ |
Radek Krejci | 658782b | 2016-12-04 22:04:55 +0100 | [diff] [blame] | 188 | int nc_server_set_capability(const char *value); |
Michal Vasko | 55f0397 | 2016-04-13 08:56:01 +0200 | [diff] [blame] | 189 | |
| 190 | /** |
Michal Vasko | 1440a74 | 2021-03-31 11:11:03 +0200 | [diff] [blame] | 191 | * @brief Set the callback for getting yang-library capability identifier. If none is set, libyang context change count is used. |
| 192 | * |
| 193 | * @param[in] content_id_clb Callback that should return the yang-library content identifier. |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 194 | * @param[in] user_data Optional arbitrary user data that will be passed to @p content_id_clb. |
| 195 | * @param[in] free_user_data Optional callback that will be called during cleanup to free any @p user_data. |
Michal Vasko | 1440a74 | 2021-03-31 11:11:03 +0200 | [diff] [blame] | 196 | */ |
| 197 | void nc_server_set_content_id_clb(char *(*content_id_clb)(void *user_data), void *user_data, |
| 198 | void (*free_user_data)(void *user_data)); |
| 199 | |
| 200 | /** |
Radek Krejci | 24a1841 | 2018-05-16 15:09:10 +0200 | [diff] [blame] | 201 | * @brief Get all the server capabilities including all the schemas. |
Michal Vasko | 4ffa3b2 | 2016-05-24 16:36:25 +0200 | [diff] [blame] | 202 | * |
| 203 | * A few capabilities (with-defaults, interleave) depend on the current |
| 204 | * server options. |
| 205 | * |
| 206 | * @param[in] ctx Context to read most capabilities from. |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 207 | * @return Array of capabilities, NULL on error. |
Michal Vasko | 4ffa3b2 | 2016-05-24 16:36:25 +0200 | [diff] [blame] | 208 | */ |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 209 | char **nc_server_get_cpblts(const struct ly_ctx *ctx); |
Michal Vasko | 4ffa3b2 | 2016-05-24 16:36:25 +0200 | [diff] [blame] | 210 | |
Radek Krejci | 24a1841 | 2018-05-16 15:09:10 +0200 | [diff] [blame] | 211 | /** |
| 212 | * @brief Get the server capabilities including the schemas with the specified YANG version. |
| 213 | * |
| 214 | * A few capabilities (with-defaults, interleave) depend on the current |
| 215 | * server options. |
| 216 | * |
| 217 | * @param[in] ctx Context to read most capabilities from. |
| 218 | * @param[in] version YANG version of the schemas to be included in result, with |
| 219 | * LYS_VERSION_UNDEF the result is the same as from nc_server_get_cpblts(). |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 220 | * @return Array of capabilities, NULL on error. |
Radek Krejci | 24a1841 | 2018-05-16 15:09:10 +0200 | [diff] [blame] | 221 | */ |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 222 | char **nc_server_get_cpblts_version(const struct ly_ctx *ctx, LYS_VERSION version); |
Radek Krejci | 24a1841 | 2018-05-16 15:09:10 +0200 | [diff] [blame] | 223 | |
roman | f578cd5 | 2023-10-19 09:47:40 +0200 | [diff] [blame] | 224 | /** @} Server Functions */ |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 225 | |
| 226 | /** |
| 227 | * @addtogroup server_session |
| 228 | * @{ |
| 229 | */ |
| 230 | |
Michal Vasko | 4ffa3b2 | 2016-05-24 16:36:25 +0200 | [diff] [blame] | 231 | /** |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 232 | * @brief Accept a new session on a pre-established transport session. |
| 233 | * |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 234 | * For detailed description, look at ::nc_accept(). |
| 235 | * |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 236 | * @param[in] fdin File descriptor to read (unencrypted) XML data from. |
| 237 | * @param[in] fdout File descriptor to write (unencrypted) XML data to. |
| 238 | * @param[in] username NETCONF username as provided by the transport protocol. |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 239 | * @param[in] ctx Context for the session to use. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 240 | * @param[out] session New session on success. |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 241 | * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message |
| 242 | * 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] | 243 | */ |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 244 | NC_MSG_TYPE nc_accept_inout(int fdin, int fdout, const char *username, const struct ly_ctx *ctx, |
| 245 | 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 | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 257 | * !IMPORTANT! Make sure that @p ps is not accessible (is not used) |
Michal Vasko | 01082bf | 2016-04-07 10:44:21 +0200 | [diff] [blame] | 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. |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 268 | * @param[in] session Session to add to @p ps. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 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. |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 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 | 3ec3b11 | 2022-07-21 12:32:33 +0200 | [diff] [blame] | 292 | * @brief Callback for finding a session in a pollsession structure. |
| 293 | * |
| 294 | * @param[in] session Considered NETCONF session. |
| 295 | * @param[in] cb_data User data. |
| 296 | * @return 0 if the session does not match. |
| 297 | * @return non-zero if the session matches and should be returned. |
| 298 | */ |
| 299 | typedef int (*nc_ps_session_match_cb)(struct nc_session *session, void *cb_data); |
| 300 | |
| 301 | /** |
| 302 | * @brief Find a session in a pollsession structure using a matching callback. |
| 303 | * |
| 304 | * @param[in] ps Pollsession structure to read from. |
| 305 | * @param[in] match_cb Matching callback to use. |
| 306 | * @param[in] cb_data User data passed to @p cb. |
| 307 | * @return Found session, NULL if none matched. |
| 308 | */ |
| 309 | struct nc_session *nc_ps_find_session(const struct nc_pollsession *ps, nc_ps_session_match_cb match_cb, void *cb_data); |
| 310 | |
| 311 | /** |
Michal Vasko | 0fdb7ac | 2016-03-01 09:03:12 +0100 | [diff] [blame] | 312 | * @brief Learn the number of sessions in a pollsession structure. |
| 313 | * |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 314 | * Does not lock @p ps structure for efficiency. |
Michal Vasko | f4462fd | 2017-02-15 14:29:05 +0100 | [diff] [blame] | 315 | * |
Michal Vasko | 0fdb7ac | 2016-03-01 09:03:12 +0100 | [diff] [blame] | 316 | * @param[in] ps Pollsession structure to check. |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 317 | * @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] | 318 | */ |
| 319 | uint16_t nc_ps_session_count(struct nc_pollsession *ps); |
| 320 | |
Michal Vasko | 30a5d6b | 2017-02-15 14:29:39 +0100 | [diff] [blame] | 321 | #define NC_PSPOLL_NOSESSIONS 0x0001 /**< No sessions to poll. */ |
| 322 | #define NC_PSPOLL_TIMEOUT 0x0002 /**< Timeout elapsed. */ |
| 323 | #define NC_PSPOLL_RPC 0x0004 /**< RPC was correctly parsed and processed. */ |
| 324 | #define NC_PSPOLL_BAD_RPC 0x0008 /**< RPC was received, but failed to be parsed. */ |
| 325 | #define NC_PSPOLL_REPLY_ERROR 0x0010 /**< Response to the RPC was a \<rpc-reply\> of type error. */ |
| 326 | #define NC_PSPOLL_SESSION_TERM 0x0020 /**< Some session was terminated. */ |
| 327 | #define NC_PSPOLL_SESSION_ERROR 0x0040 /**< Some session was terminated incorrectly (not by a \<close-session\> or \<kill-session\> RPC). */ |
| 328 | #define NC_PSPOLL_ERROR 0x0080 /**< Other fatal errors (they are printed). */ |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 329 | |
roman | 2eab474 | 2023-06-06 10:00:26 +0200 | [diff] [blame] | 330 | #ifdef NC_ENABLED_SSH_TLS |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 331 | # define NC_PSPOLL_SSH_MSG 0x00100 /**< SSH message received (and processed, if relevant, only with SSH support). */ |
| 332 | # define NC_PSPOLL_SSH_CHANNEL 0x0200 /**< New SSH channel opened on an existing session (only with SSH support). */ |
roman | 2eab474 | 2023-06-06 10:00:26 +0200 | [diff] [blame] | 333 | #endif /* NC_ENABLED_SSH_TLS */ |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 334 | |
Michal Vasko | 0fdb7ac | 2016-03-01 09:03:12 +0100 | [diff] [blame] | 335 | /** |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 336 | * @brief Poll sessions and process any received RPCs. |
| 337 | * |
Michal Vasko | e4300a8 | 2017-05-24 10:35:42 +0200 | [diff] [blame] | 338 | * Only one event on one session is handled in one function call. If this event |
| 339 | * is a session termination (#NC_PSPOLL_SESSION_TERM returned), the session |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 340 | * should be removed from @p ps. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 341 | * |
| 342 | * @param[in] ps Pollsession structure to use. |
Michal Vasko | 11d142a | 2016-01-19 15:58:24 +0100 | [diff] [blame] | 343 | * @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] | 344 | * infinite waiting. |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 345 | * @param[in] session Session that was processed and that specific return bits concern. |
| 346 | * Can be NULL. |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 347 | * @return Bitfield of NC_PSPOLL_* macros. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 348 | */ |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 349 | 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] | 350 | |
Michal Vasko | 11d142a | 2016-01-19 15:58:24 +0100 | [diff] [blame] | 351 | /** |
Michal Vasko | cad3ac4 | 2016-03-01 09:06:01 +0100 | [diff] [blame] | 352 | * @brief Remove sessions from a pollsession structure and |
| 353 | * call nc_session_free() on them. |
Michal Vasko | d09eae6 | 2016-02-01 10:32:52 +0100 | [diff] [blame] | 354 | * |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 355 | * 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] | 356 | * |
| 357 | * @param[in] ps Pollsession structure to clear. |
Michal Vasko | cad3ac4 | 2016-03-01 09:06:01 +0100 | [diff] [blame] | 358 | * @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] | 359 | * @param[in] data_free Session user data destructor. |
Michal Vasko | d09eae6 | 2016-02-01 10:32:52 +0100 | [diff] [blame] | 360 | */ |
Michal Vasko | e1a64ec | 2016-03-01 12:21:58 +0100 | [diff] [blame] | 361 | 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] | 362 | |
Michal Vasko | 1440a74 | 2021-03-31 11:11:03 +0200 | [diff] [blame] | 363 | /** @} Server Session */ |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 364 | |
| 365 | /** |
roman | f578cd5 | 2023-10-19 09:47:40 +0200 | [diff] [blame] | 366 | * @addtogroup server_functions |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 367 | * @{ |
| 368 | */ |
| 369 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 370 | /** |
Michal Vasko | e8e0770 | 2017-03-15 10:19:30 +0100 | [diff] [blame] | 371 | * @brief Get the number of currently configured listening endpoints. |
| 372 | * Note that an ednpoint without address and/or port will be included |
| 373 | * even though it is not, in fact, listening. |
| 374 | * |
| 375 | * @return Number of added listening endpoints. |
| 376 | */ |
| 377 | int nc_server_endpt_count(void); |
| 378 | |
roman | fb3f7cf | 2023-11-30 16:10:09 +0100 | [diff] [blame] | 379 | /** |
| 380 | * @brief Create a new UNIX socket endpoint and start listening. |
| 381 | * |
| 382 | * @param[in] endpt_name Arbitrary unique identifier of the endpoint. |
| 383 | * @param[in] unix_socket_path Path to the listening socket. |
| 384 | * @param[in] mode New mode, -1 to use default. |
| 385 | * @param[in] uid New uid, -1 to use default. |
| 386 | * @param[in] gid New gid, -1 to use default. |
| 387 | * |
| 388 | * @return 0 on success, 1 on error. |
| 389 | */ |
| 390 | int nc_server_add_endpt_unix_socket_listen(const char *endpt_name, const char *unix_socket_path, mode_t mode, uid_t uid, gid_t gid); |
| 391 | |
| 392 | /** |
| 393 | * @brief Deletes a UNIX socket endpoint. |
| 394 | * |
| 395 | * @param[in] endpt_name Identifier of the endpoint. |
| 396 | * Has no effect if the endpoint doesn't exist or if its transport is not UNIX socket. |
| 397 | */ |
| 398 | void nc_server_del_endpt_unix_socket(const char *endpt_name); |
| 399 | |
roman | f578cd5 | 2023-10-19 09:47:40 +0200 | [diff] [blame] | 400 | /** @} */ |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 401 | |
| 402 | /** |
| 403 | * @addtogroup server_session |
Michal Vasko | 4e6d324 | 2021-05-26 09:13:24 +0200 | [diff] [blame] | 404 | * @{ |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 405 | */ |
| 406 | |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 407 | /** |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 408 | * @brief Accept new sessions on all the listening endpoints. |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 409 | * |
Michal Vasko | b70c8b8 | 2017-03-17 09:09:29 +0100 | [diff] [blame] | 410 | * Once a new (TCP/IP) conection is established a different (quite long) timeout |
| 411 | * is used for waiting for transport-related data, which means this call can block |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 412 | * for much longer that @p timeout, but only with slow/faulty/malicious clients. |
Michal Vasko | b70c8b8 | 2017-03-17 09:09:29 +0100 | [diff] [blame] | 413 | * |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 414 | * Server capabilities are generated based on the content of @p ctx. The context must |
roman | f578cd5 | 2023-10-19 09:47:40 +0200 | [diff] [blame] | 415 | * not be destroyed before the accepted NETCONF session is freed. Basic usable context may |
| 416 | * be created by calling ::nc_server_init_ctx(). |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 417 | * |
| 418 | * Supported RPCs of models in the context are expected to have their callback |
| 419 | * in the corresponding RPC schema node set to a nc_rpc_clb function callback using ::nc_set_rpc_callback(). |
| 420 | * This callback is called by ::nc_ps_poll() if the particular RPC request is |
| 421 | * received. Callbacks for ietf-netconf:get-schema (supporting YANG and YIN format |
| 422 | * only) and ietf-netconf:close-session are set internally if left unset. |
| 423 | * |
Michal Vasko | 11d142a | 2016-01-19 15:58:24 +0100 | [diff] [blame] | 424 | * @param[in] timeout Timeout for receiving a new connection in milliseconds, 0 for |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 425 | * non-blocking call, -1 for infinite waiting. |
| 426 | * @param[in] ctx Context for the session to use. |
Michal Vasko | 96164bf | 2016-01-21 15:41:58 +0100 | [diff] [blame] | 427 | * @param[out] session New session. |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 428 | * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message |
| 429 | * 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] | 430 | */ |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 431 | NC_MSG_TYPE nc_accept(int timeout, const struct ly_ctx *ctx, struct nc_session **session); |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 432 | |
roman | 2eab474 | 2023-06-06 10:00:26 +0200 | [diff] [blame] | 433 | #ifdef NC_ENABLED_SSH_TLS |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 434 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 435 | /** |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 436 | * @brief Accept a new NETCONF session on an SSH session of a running NETCONF @p orig_session. |
| 437 | * 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] | 438 | * |
| 439 | * @param[in] orig_session Session that has a new SSH channel ready. |
| 440 | * @param[out] session New session. |
| 441 | * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message |
| 442 | * parsing fail, NC_MSG_WOULDBLOCK on timeout, NC_MSG_ERROR on other errors. |
| 443 | */ |
| 444 | NC_MSG_TYPE nc_session_accept_ssh_channel(struct nc_session *orig_session, struct nc_session **session); |
| 445 | |
| 446 | /** |
Michal Vasko | 96164bf | 2016-01-21 15:41:58 +0100 | [diff] [blame] | 447 | * @brief Accept a new NETCONF session on an SSH session of a running NETCONF session |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 448 | * that was polled in @p ps. Call this function only when nc_ps_poll() on @p ps returns #NC_PSPOLL_SSH_CHANNEL. |
| 449 | * 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] | 450 | * |
| 451 | * @param[in] ps Unmodified pollsession structure from the previous nc_ps_poll() call. |
| 452 | * @param[out] session New session. |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 453 | * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message |
| 454 | * 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] | 455 | */ |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 456 | 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] | 457 | |
Michal Vasko | 1440a74 | 2021-03-31 11:11:03 +0200 | [diff] [blame] | 458 | /** @} Server Session */ |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 459 | |
| 460 | /** |
| 461 | * @defgroup server_ssh Server SSH |
| 462 | * @ingroup server |
| 463 | * |
| 464 | * @brief Server-side settings for SSH connections. |
| 465 | * @{ |
| 466 | */ |
| 467 | |
Michal Vasko | 96164bf | 2016-01-21 15:41:58 +0100 | [diff] [blame] | 468 | /** |
roman | a9ec336 | 2023-12-21 10:59:57 +0100 | [diff] [blame] | 469 | * @brief Set the format of the path to authorized_keys files. |
| 470 | * |
| 471 | * This path format will be set globally for all clients wishing to authenticate via the |
| 472 | * SSH Public Key system authentication. |
| 473 | * |
| 474 | * @param[in] path Path to authorized_keys files. The path may contain the following tokens: |
| 475 | * - %u - replaced by the username of the user trying to authenticate, |
| 476 | * - %h - replaced by the home directory of the user trying to authenticate, |
| 477 | * - %U - replaced by the UID of the user trying to authenticate, |
| 478 | * - %% - a literal '%'. |
| 479 | * @return 0 on success, 1 on error. |
| 480 | */ |
| 481 | int nc_server_ssh_set_authkey_path_format(const char *path); |
| 482 | |
| 483 | /** |
roman | e5675b1 | 2024-03-05 14:26:23 +0100 | [diff] [blame] | 484 | * @brief Keyboard interactive authentication callback. |
bhart | 3bc2f58 | 2018-06-05 12:40:32 -0500 | [diff] [blame] | 485 | * |
roman | e5675b1 | 2024-03-05 14:26:23 +0100 | [diff] [blame] | 486 | * The callback has to handle sending interactive challenges and receiving responses by itself. |
| 487 | * An example callback may fit the following description: |
| 488 | * Prepare all prompts for the user and send them via `ssh_message_auth_interactive_request()`. |
| 489 | * Get the answers either by calling `ssh_message_get()` or `nc_server_ssh_kbdint_get_nanswers()`. |
| 490 | * Return value based on your authentication logic and user answers retrieved by |
| 491 | * calling `ssh_userauth_kbdint_getanswer()`. |
| 492 | * |
| 493 | * @param[in] session NETCONF session. |
| 494 | * @param[in] ssh_sess libssh session. |
| 495 | * @param[in] msg SSH message that contains the interactive request and which expects a reply with prompts. |
| 496 | * @param[in] user_data Arbitrary user data. |
| 497 | * @return 0 for successful authentication, non-zero to deny the user. |
| 498 | */ |
| 499 | typedef int (*nc_server_ssh_interactive_auth_clb)(const struct nc_session *session, |
| 500 | ssh_session ssh_sess, ssh_message msg, void *user_data); |
| 501 | |
| 502 | /** |
| 503 | * @brief Set the callback for SSH interactive authentication. |
| 504 | * |
| 505 | * @param[in] auth_clb Keyboard interactive authentication callback. This callback is only called once per authentication. |
roman | f578cd5 | 2023-10-19 09:47:40 +0200 | [diff] [blame] | 506 | * @param[in] user_data Optional arbitrary user data that will be passed to @p interactive_auth_clb. |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 507 | * @param[in] free_user_data Optional callback that will be called during cleanup to free any @p user_data. |
bhart | 3bc2f58 | 2018-06-05 12:40:32 -0500 | [diff] [blame] | 508 | */ |
roman | e5675b1 | 2024-03-05 14:26:23 +0100 | [diff] [blame] | 509 | void nc_server_ssh_set_interactive_auth_clb(nc_server_ssh_interactive_auth_clb auth_clb, void *user_data, void (*free_user_data)(void *user_data)); |
| 510 | |
| 511 | /** |
| 512 | * @brief Get the number of answers to Keyboard interactive authentication prompts. |
| 513 | * |
| 514 | * The actual answers can later be retrieved by calling `ssh_userauth_kbdint_getanswer()` on |
| 515 | * the @p libssh_session. |
| 516 | * |
| 517 | * @param[in] session NETCONF session. |
| 518 | * @param[in] libssh_session libssh session. |
| 519 | * |
| 520 | * @return Non-negative number of answers on success, -1 on configurable authentication timeout, |
| 521 | * disconnect or other error. |
| 522 | */ |
| 523 | int nc_server_ssh_kbdint_get_nanswers(const struct nc_session *session, ssh_session libssh_session); |
roman | 41a11e4 | 2022-06-22 09:27:08 +0200 | [diff] [blame] | 524 | |
roman | 808f3f6 | 2023-11-23 16:01:04 +0100 | [diff] [blame] | 525 | /** |
| 526 | * @brief Set the name of the PAM configuration file. |
| 527 | * |
| 528 | * This filename will be set globally for all clients wishing to authenticate via the |
| 529 | * SSH Keyboard Interactive authentication method. |
| 530 | * |
| 531 | * @param[in] filename Name of the PAM configuration file. The file needs to be located in |
| 532 | * the default PAM directory (usually /etc/pam.d/). |
| 533 | * |
| 534 | * @return 0 on success, 1 on error. |
| 535 | */ |
| 536 | int nc_server_ssh_set_pam_conf_filename(const char *filename); |
| 537 | |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 538 | /** @} Server SSH */ |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 539 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 540 | /** |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 541 | * @defgroup server_tls Server TLS |
| 542 | * @ingroup server |
| 543 | * |
| 544 | * @brief Server-side settings for TLS connections. |
| 545 | * @{ |
| 546 | */ |
| 547 | |
| 548 | /** |
Michal Vasko | 709598e | 2016-11-28 14:48:32 +0100 | [diff] [blame] | 549 | * @brief Get client certificate. |
| 550 | * |
| 551 | * @param[in] session Session to get the information from. |
| 552 | * @return Const session client certificate. |
| 553 | */ |
roman | 9225e91 | 2024-04-05 12:33:09 +0200 | [diff] [blame] | 554 | const void *nc_session_get_client_cert(const struct nc_session *session); |
Michal Vasko | 709598e | 2016-11-28 14:48:32 +0100 | [diff] [blame] | 555 | |
| 556 | /** |
Michal Vasko | 7060bcf | 2016-11-28 14:48:11 +0100 | [diff] [blame] | 557 | * @brief Set TLS authentication additional verify callback. |
| 558 | * |
| 559 | * Server will always perform cert-to-name based on its configuration. Only after it passes |
roman | ce43511 | 2024-04-23 15:12:09 +0200 | [diff] [blame] | 560 | * and this callback is set, it is also called. It should return non-zero for success, 0 to deny the user. |
Michal Vasko | 7060bcf | 2016-11-28 14:48:11 +0100 | [diff] [blame] | 561 | * |
| 562 | * @param[in] verify_clb Additional user verify callback. |
| 563 | */ |
| 564 | void nc_server_tls_set_verify_clb(int (*verify_clb)(const struct nc_session *session)); |
| 565 | |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 566 | /** @} Server TLS */ |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 567 | |
roman | 2eab474 | 2023-06-06 10:00:26 +0200 | [diff] [blame] | 568 | #endif /* NC_ENABLED_SSH_TLS */ |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 569 | |
Michal Vasko | f835235 | 2016-05-24 09:11:36 +0200 | [diff] [blame] | 570 | /** |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 571 | * @addtogroup server_session |
| 572 | * @{ |
| 573 | */ |
| 574 | |
| 575 | /** |
Michal Vasko | c45ebd3 | 2016-05-25 11:17:36 +0200 | [diff] [blame] | 576 | * @brief Get session start time. |
Michal Vasko | f835235 | 2016-05-24 09:11:36 +0200 | [diff] [blame] | 577 | * |
| 578 | * @param[in] session Session to get the information from. |
Michal Vasko | c45ebd3 | 2016-05-25 11:17:36 +0200 | [diff] [blame] | 579 | * @return Session start time. |
Michal Vasko | f835235 | 2016-05-24 09:11:36 +0200 | [diff] [blame] | 580 | */ |
roman | 44efa32 | 2023-11-03 13:57:25 +0100 | [diff] [blame] | 581 | struct timespec nc_session_get_start_time(const struct nc_session *session); |
Michal Vasko | f835235 | 2016-05-24 09:11:36 +0200 | [diff] [blame] | 582 | |
Michal Vasko | 3486a7c | 2017-03-03 13:28:07 +0100 | [diff] [blame] | 583 | /** |
Michal Vasko | 71dbd77 | 2021-03-23 14:08:37 +0100 | [diff] [blame] | 584 | * @brief Increase session notification subscription flag count. |
| 585 | * Supports multiple subscriptions on one session. |
Michal Vasko | 3486a7c | 2017-03-03 13:28:07 +0100 | [diff] [blame] | 586 | * |
| 587 | * It is used only to ignore timeouts, because they are |
| 588 | * ignored for sessions with active subscriptions. |
| 589 | * |
| 590 | * @param[in] session Session to modify. |
Michal Vasko | 3486a7c | 2017-03-03 13:28:07 +0100 | [diff] [blame] | 591 | */ |
Michal Vasko | 71dbd77 | 2021-03-23 14:08:37 +0100 | [diff] [blame] | 592 | void nc_session_inc_notif_status(struct nc_session *session); |
| 593 | |
| 594 | /** |
| 595 | * @brief Decrease session notification subscription flag count. |
| 596 | * Supports multiple subscriptions on one session. |
| 597 | * |
| 598 | * @param[in] session Session to modify. |
| 599 | */ |
| 600 | void nc_session_dec_notif_status(struct nc_session *session); |
Michal Vasko | 3486a7c | 2017-03-03 13:28:07 +0100 | [diff] [blame] | 601 | |
| 602 | /** |
| 603 | * @brief Get session notification subscription flag. |
| 604 | * |
| 605 | * @param[in] session Session to get the information from. |
| 606 | * @return 0 for no active subscription, non-zero for an active subscription. |
| 607 | */ |
| 608 | int nc_session_get_notif_status(const struct nc_session *session); |
| 609 | |
Michal Vasko | c446a38 | 2021-06-18 08:54:05 +0200 | [diff] [blame] | 610 | /** @} Server Session */ |
Radek Krejci | 6799a05 | 2017-05-19 14:23:23 +0200 | [diff] [blame] | 611 | |
Michal Vasko | c09730e | 2019-01-17 10:07:26 +0100 | [diff] [blame] | 612 | #ifdef __cplusplus |
| 613 | } |
| 614 | #endif |
| 615 | |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 616 | #endif /* NC_SESSION_SERVER_H_ */ |