blob: a28fb2114d92549001a42c03cfc4f4b7567c1b18 [file] [log] [blame]
Michal Vasko086311b2016-01-08 09:53:11 +01001/**
2 * \file session_server.h
3 * \author Michal Vasko <mvasko@cesnet.cz>
4 * \brief libnetconf2 session server manipulation
5 *
Michal Vasko1440a742021-03-31 11:11:03 +02006 * Copyright (c) 2015 - 2021 CESNET, z.s.p.o.
Michal Vasko086311b2016-01-08 09:53:11 +01007 *
Radek Krejci9b81f5b2016-02-24 13:14:49 +01008 * 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 Vaskoafd416b2016-02-25 14:51:46 +010011 *
Radek Krejci9b81f5b2016-02-24 13:14:49 +010012 * https://opensource.org/licenses/BSD-3-Clause
Michal Vasko086311b2016-01-08 09:53:11 +010013 */
14
15#ifndef NC_SESSION_SERVER_H_
16#define NC_SESSION_SERVER_H_
17
Michal Vaskoc09730e2019-01-17 10:07:26 +010018#ifdef __cplusplus
19extern "C" {
20#endif
21
Michal Vasko05ba9df2016-01-13 14:40:27 +010022#include <libyang/libyang.h>
Michal Vaskob83a3fa2021-05-26 09:53:42 +020023#include <stdint.h>
Michal Vasko086311b2016-01-08 09:53:11 +010024
Michal Vasko709598e2016-11-28 14:48:32 +010025#ifdef NC_ENABLED_TLS
26# include <openssl/x509.h>
27#endif
28
bhart3bc2f582018-06-05 12:40:32 -050029#ifdef NC_ENABLED_SSH
bhart3bc2f582018-06-05 12:40:32 -050030# include <libssh/callbacks.h>
Michal Vaskob83a3fa2021-05-26 09:53:42 +020031# include <libssh/libssh.h>
bhart3bc2f582018-06-05 12:40:32 -050032# include <libssh/server.h>
33#endif
34
Michal Vasko086311b2016-01-08 09:53:11 +010035#include "netconf.h"
Michal Vaskob83a3fa2021-05-26 09:53:42 +020036#include "session.h"
Michal Vasko086311b2016-01-08 09:53:11 +010037
Michal Vasko1a38c862016-01-15 15:50:07 +010038/**
Radek Krejci6799a052017-05-19 14:23:23 +020039 * @defgroup server_session Server Session
40 * @ingroup server
41 *
42 * @brief Server-side NETCONF session manipulation.
43 * @{
44 */
45
46/**
Michal Vasko1a38c862016-01-15 15:50:07 +010047 * @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 Krejci6799a052017-05-19 14:23:23 +020052 * The callback is set via nc_set_global_rpc_clb().
53 *
Michal Vasko1a38c862016-01-15 15:50:07 +010054 * @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 Vasko05ba9df2016-01-13 14:40:27 +010058typedef struct nc_server_reply *(*nc_rpc_clb)(struct lyd_node *rpc, struct nc_session *session);
59
Michal Vasko1a38c862016-01-15 15:50:07 +010060/**
Michal Vasko7b096242016-01-29 15:55:10 +010061 * @brief Set the termination reason for a session. Use only in #nc_rpc_clb callbacks.
Michal Vasko1a38c862016-01-15 15:50:07 +010062 *
63 * @param[in] session Session to modify.
64 * @param[in] reason Reason of termination.
65 */
66void nc_session_set_term_reason(struct nc_session *session, NC_SESSION_TERM_REASON reason);
67
68/**
Michal Vasko142cfea2017-08-07 10:12:11 +020069 * @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 */
74void 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 */
82void nc_session_set_status(struct nc_session *session, NC_STATUS status);
83
84/**
Radek Krejci6799a052017-05-19 14:23:23 +020085 * @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 */
90void nc_set_global_rpc_clb(nc_rpc_clb clb);
91
Michal Vasko4e6d3242021-05-26 09:13:24 +020092/** @} Server Session */
Radek Krejci6799a052017-05-19 14:23:23 +020093
94/**
95 * @addtogroup server
96 * @{
97 */
98
99/**
Michal Vaskoa7b8ca52016-03-01 12:09:29 +0100100 * @brief Initialize libssh and/or libssl/libcrypto and the server using a libyang context.
Michal Vasko1a38c862016-01-15 15:50:07 +0100101 *
102 * The context is not modified internally, only its dictionary is used for holding
Michal Vaskoa43589b2016-02-17 13:24:59 +0100103 * 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 Vasko1a38c862016-01-15 15:50:07 +0100105 *
Michal Vasko3a889fd2016-09-30 12:16:37 +0200106 * If the RPC callbacks on schema nodes (mentioned in @ref howtoserver) are modified after
Michal Vasko5494f512016-03-01 12:13:44 +0100107 * 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 Vasko1a38c862016-01-15 15:50:07 +0100111 * 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 Vasko3a889fd2016-09-30 12:16:37 +0200119 * 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 Vasko1a38c862016-01-15 15:50:07 +0100121 * 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 Vasko1a38c862016-01-15 15:50:07 +0100125 * @param[in] ctx Core NETCONF server context.
126 * @return 0 on success, -1 on error.
127 */
Michal Vasko086311b2016-01-08 09:53:11 +0100128int nc_server_init(struct ly_ctx *ctx);
129
Michal Vasko1a38c862016-01-15 15:50:07 +0100130/**
Michal Vaskoa7b8ca52016-03-01 12:09:29 +0100131 * @brief Destroy any dynamically allocated libssh and/or libssl/libcrypto and
132 * server resources.
Michal Vaskob48aa812016-01-18 14:13:09 +0100133 */
134void nc_server_destroy(void);
135
136/**
Michal Vasko1a38c862016-01-15 15:50:07 +0100137 * @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 Vasko086311b2016-01-08 09:53:11 +0100150int nc_server_set_capab_withdefaults(NC_WD_MODE basic_mode, int also_supported);
151
Michal Vasko1a38c862016-01-15 15:50:07 +0100152/**
Michal Vasko55f03972016-04-13 08:56:01 +0200153 * @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 */
160void nc_server_get_capab_withdefaults(NC_WD_MODE *basic_mode, int *also_supported);
161
162/**
Radek Krejci658782b2016-12-04 22:04:55 +0100163 * @brief Set capability of the server.
Michal Vasko1a38c862016-01-15 15:50:07 +0100164 *
Radek Krejci658782b2016-12-04 22:04:55 +0100165 * 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 Vasko1a38c862016-01-15 15:50:07 +0100169 *
Michal Vasko50d2a5c2017-02-14 10:29:49 +0100170 * @param[in] value Capability string to be advertised in server's \<hello\> messages.
Michal Vasko1a38c862016-01-15 15:50:07 +0100171 */
Radek Krejci658782b2016-12-04 22:04:55 +0100172int nc_server_set_capability(const char *value);
Michal Vasko55f03972016-04-13 08:56:01 +0200173
174/**
Michal Vasko1440a742021-03-31 11:11:03 +0200175 * @brief Set the callback for getting yang-library capability identifier. If none is set, libyang context change count is used.
176 *
177 * @param[in] content_id_clb Callback that should return the yang-library content identifier.
178 * @param[in] user_data Optional arbitrary user data that will be passed to \p content_id_clb.
179 * @param[in] free_user_data Optional callback that will be called during cleanup to free any \p user_data.
180 */
181void nc_server_set_content_id_clb(char *(*content_id_clb)(void *user_data), void *user_data,
182 void (*free_user_data)(void *user_data));
183
184/**
Michal Vasko1a38c862016-01-15 15:50:07 +0100185 * @brief Set server timeout for receiving a hello message.
186 *
187 * @param[in] hello_timeout Hello message timeout. 0 for infinite waiting.
188 */
189void nc_server_set_hello_timeout(uint16_t hello_timeout);
Michal Vasko086311b2016-01-08 09:53:11 +0100190
Michal Vasko1a38c862016-01-15 15:50:07 +0100191/**
Michal Vasko55f03972016-04-13 08:56:01 +0200192 * @brief get server timeout for receiving a hello message.
193 *
194 * @return Hello message timeout, 0 is infinite.
195 */
196uint16_t nc_server_get_hello_timeout(void);
197
198/**
Michal Vasko1a38c862016-01-15 15:50:07 +0100199 * @brief Set server timeout for dropping an idle session.
200 *
201 * @param[in] idle_timeout Idle session timeout. 0 to never drop a session
Michal Vaskof0537d82016-01-29 14:42:38 +0100202 * because of inactivity.
Michal Vasko1a38c862016-01-15 15:50:07 +0100203 */
204void nc_server_set_idle_timeout(uint16_t idle_timeout);
Michal Vasko086311b2016-01-08 09:53:11 +0100205
Michal Vasko1a38c862016-01-15 15:50:07 +0100206/**
Michal Vasko55f03972016-04-13 08:56:01 +0200207 * @brief Get server timeout for dropping an idle session.
208 *
209 * @return Idle session timeout, 0 for for never dropping
210 * a session because of inactivity.
211 */
212uint16_t nc_server_get_idle_timeout(void);
213
214/**
Radek Krejci24a18412018-05-16 15:09:10 +0200215 * @brief Get all the server capabilities including all the schemas.
Michal Vasko4ffa3b22016-05-24 16:36:25 +0200216 *
217 * A few capabilities (with-defaults, interleave) depend on the current
218 * server options.
219 *
220 * @param[in] ctx Context to read most capabilities from.
221 * @return Array of capabilities stored in the \p ctx dictionary, NULL on error.
222 */
223const char **nc_server_get_cpblts(struct ly_ctx *ctx);
224
Radek Krejci24a18412018-05-16 15:09:10 +0200225/**
226 * @brief Get the server capabilities including the schemas with the specified YANG version.
227 *
228 * A few capabilities (with-defaults, interleave) depend on the current
229 * server options.
230 *
231 * @param[in] ctx Context to read most capabilities from.
232 * @param[in] version YANG version of the schemas to be included in result, with
233 * LYS_VERSION_UNDEF the result is the same as from nc_server_get_cpblts().
234 * @return Array of capabilities stored in the \p ctx dictionary, NULL on error.
235 */
236const char **nc_server_get_cpblts_version(struct ly_ctx *ctx, LYS_VERSION version);
237
Michal Vasko1440a742021-03-31 11:11:03 +0200238/** @} Server */
Radek Krejci6799a052017-05-19 14:23:23 +0200239
240/**
241 * @addtogroup server_session
242 * @{
243 */
244
Michal Vasko4ffa3b22016-05-24 16:36:25 +0200245/**
Michal Vasko1a38c862016-01-15 15:50:07 +0100246 * @brief Accept a new session on a pre-established transport session.
247 *
248 * @param[in] fdin File descriptor to read (unencrypted) XML data from.
249 * @param[in] fdout File descriptor to write (unencrypted) XML data to.
250 * @param[in] username NETCONF username as provided by the transport protocol.
251 * @param[out] session New session on success.
Michal Vasko71090fc2016-05-24 16:37:28 +0200252 * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message
253 * parsing fail, NC_MSG_WOULDBLOCK on timeout, NC_MSG_ERROR on other errors.
Michal Vasko1a38c862016-01-15 15:50:07 +0100254 */
Michal Vasko71090fc2016-05-24 16:37:28 +0200255NC_MSG_TYPE nc_accept_inout(int fdin, int fdout, const char *username, struct nc_session **session);
Michal Vasko086311b2016-01-08 09:53:11 +0100256
Michal Vasko1a38c862016-01-15 15:50:07 +0100257/**
258 * @brief Create an empty structure for polling sessions.
259 *
260 * @return Empty pollsession structure, NULL on error.
261 */
Michal Vasko05ba9df2016-01-13 14:40:27 +0100262struct nc_pollsession *nc_ps_new(void);
Michal Vaskofb89d772016-01-08 12:25:35 +0100263
Michal Vasko1a38c862016-01-15 15:50:07 +0100264/**
265 * @brief Free a pollsession structure.
266 *
Michal Vasko01082bf2016-04-07 10:44:21 +0200267 * !IMPORTANT! Make sure that \p ps is not accessible (is not used)
268 * by any thread before and after this call!
269 *
Michal Vasko1a38c862016-01-15 15:50:07 +0100270 * @param[in] ps Pollsession structure to free.
271 */
Michal Vasko05ba9df2016-01-13 14:40:27 +0100272void nc_ps_free(struct nc_pollsession *ps);
Michal Vaskofb89d772016-01-08 12:25:35 +0100273
Michal Vasko1a38c862016-01-15 15:50:07 +0100274/**
275 * @brief Add a session to a pollsession structure.
276 *
277 * @param[in] ps Pollsession structure to modify.
278 * @param[in] session Session to add to \p ps.
279 * @return 0 on success, -1 on error.
280 */
Michal Vasko05ba9df2016-01-13 14:40:27 +0100281int nc_ps_add_session(struct nc_pollsession *ps, struct nc_session *session);
Michal Vaskofb89d772016-01-08 12:25:35 +0100282
Michal Vasko1a38c862016-01-15 15:50:07 +0100283/**
284 * @brief Remove a session from a pollsession structure.
285 *
286 * @param[in] ps Pollsession structure to modify.
287 * @param[in] session Session to remove from \p ps.
Michal Vaskof0537d82016-01-29 14:42:38 +0100288 * @return 0 on success, -1 on not found.
Michal Vasko1a38c862016-01-15 15:50:07 +0100289 */
Michal Vasko05ba9df2016-01-13 14:40:27 +0100290int nc_ps_del_session(struct nc_pollsession *ps, struct nc_session *session);
291
Michal Vasko1a38c862016-01-15 15:50:07 +0100292/**
Michal Vaskoe1ee05b2017-03-21 10:10:18 +0100293 * @brief Get a session from a pollsession structure matching the session ID.
294 *
295 * @param[in] ps Pollsession structure to read from.
Michal Vasko4871c9d2017-10-09 14:48:39 +0200296 * @param[in] idx Index of the session.
297 * @return Session on index, NULL if out-of-bounds.
Michal Vaskoe1ee05b2017-03-21 10:10:18 +0100298 */
Michal Vasko4871c9d2017-10-09 14:48:39 +0200299struct nc_session *nc_ps_get_session(const struct nc_pollsession *ps, uint16_t idx);
Michal Vaskoe1ee05b2017-03-21 10:10:18 +0100300
301/**
Michal Vasko0fdb7ac2016-03-01 09:03:12 +0100302 * @brief Learn the number of sessions in a pollsession structure.
303 *
Michal Vaskof4462fd2017-02-15 14:29:05 +0100304 * Does not lock \p ps structure for efficiency.
305 *
Michal Vasko0fdb7ac2016-03-01 09:03:12 +0100306 * @param[in] ps Pollsession structure to check.
Michal Vaskoc72d0e62016-07-26 11:36:11 +0200307 * @return Number of sessions (even invalid ones) in \p ps, -1 on error.
Michal Vasko0fdb7ac2016-03-01 09:03:12 +0100308 */
309uint16_t nc_ps_session_count(struct nc_pollsession *ps);
310
Michal Vasko30a5d6b2017-02-15 14:29:39 +0100311#define NC_PSPOLL_NOSESSIONS 0x0001 /**< No sessions to poll. */
312#define NC_PSPOLL_TIMEOUT 0x0002 /**< Timeout elapsed. */
313#define NC_PSPOLL_RPC 0x0004 /**< RPC was correctly parsed and processed. */
314#define NC_PSPOLL_BAD_RPC 0x0008 /**< RPC was received, but failed to be parsed. */
315#define NC_PSPOLL_REPLY_ERROR 0x0010 /**< Response to the RPC was a \<rpc-reply\> of type error. */
316#define NC_PSPOLL_SESSION_TERM 0x0020 /**< Some session was terminated. */
317#define NC_PSPOLL_SESSION_ERROR 0x0040 /**< Some session was terminated incorrectly (not by a \<close-session\> or \<kill-session\> RPC). */
318#define NC_PSPOLL_ERROR 0x0080 /**< Other fatal errors (they are printed). */
Michal Vasko71090fc2016-05-24 16:37:28 +0200319
320#ifdef NC_ENABLED_SSH
Michal Vaskoe645de32017-05-26 14:02:50 +0200321# define NC_PSPOLL_SSH_MSG 0x00100 /**< SSH message received (and processed, if relevant, only with SSH support). */
322# define NC_PSPOLL_SSH_CHANNEL 0x0200 /**< New SSH channel opened on an existing session (only with SSH support). */
Michal Vasko71090fc2016-05-24 16:37:28 +0200323#endif
324
Michal Vasko0fdb7ac2016-03-01 09:03:12 +0100325/**
Michal Vasko1a38c862016-01-15 15:50:07 +0100326 * @brief Poll sessions and process any received RPCs.
327 *
Michal Vaskoe4300a82017-05-24 10:35:42 +0200328 * Only one event on one session is handled in one function call. If this event
329 * is a session termination (#NC_PSPOLL_SESSION_TERM returned), the session
330 * should be removed from \p ps.
Michal Vasko1a38c862016-01-15 15:50:07 +0100331 *
332 * @param[in] ps Pollsession structure to use.
Michal Vasko11d142a2016-01-19 15:58:24 +0100333 * @param[in] timeout Poll timeout in milliseconds. 0 for non-blocking call, -1 for
Michal Vasko96830e32016-02-01 10:54:18 +0100334 * infinite waiting.
Michal Vasko71090fc2016-05-24 16:37:28 +0200335 * @param[in] session Session that was processed and that specific return bits concern.
336 * Can be NULL.
Michal Vaskoade892d2017-02-22 13:40:35 +0100337 * @return Bitfield of NC_PSPOLL_* macros.
Michal Vasko1a38c862016-01-15 15:50:07 +0100338 */
Michal Vasko71090fc2016-05-24 16:37:28 +0200339int nc_ps_poll(struct nc_pollsession *ps, int timeout, struct nc_session **session);
Michal Vasko086311b2016-01-08 09:53:11 +0100340
Michal Vasko11d142a2016-01-19 15:58:24 +0100341/**
Michal Vaskocad3ac42016-03-01 09:06:01 +0100342 * @brief Remove sessions from a pollsession structure and
343 * call nc_session_free() on them.
Michal Vaskod09eae62016-02-01 10:32:52 +0100344 *
Michal Vaskoade892d2017-02-22 13:40:35 +0100345 * Calling this function with \p all false makes sense if nc_ps_poll() returned #NC_PSPOLL_SESSION_TERM.
Michal Vaskod09eae62016-02-01 10:32:52 +0100346 *
347 * @param[in] ps Pollsession structure to clear.
Michal Vaskocad3ac42016-03-01 09:06:01 +0100348 * @param[in] all Whether to free all sessions, or only the invalid ones.
Michal Vaskoe1a64ec2016-03-01 12:21:58 +0100349 * @param[in] data_free Session user data destructor.
Michal Vaskod09eae62016-02-01 10:32:52 +0100350 */
Michal Vaskoe1a64ec2016-03-01 12:21:58 +0100351void nc_ps_clear(struct nc_pollsession *ps, int all, void (*data_free)(void *));
Michal Vaskod09eae62016-02-01 10:32:52 +0100352
Michal Vasko1440a742021-03-31 11:11:03 +0200353/** @} Server Session */
Radek Krejci6799a052017-05-19 14:23:23 +0200354
355/**
356 * @addtogroup server
357 * @{
358 */
359
Michal Vasko1a38c862016-01-15 15:50:07 +0100360/**
Michal Vaskoe2713da2016-08-22 16:06:40 +0200361 * @brief Add a new endpoint.
362 *
363 * Before the endpoint can accept any connections, its address and port must
Radek Krejci6799a052017-05-19 14:23:23 +0200364 * be set via nc_server_endpt_set_address() and nc_server_endpt_set_port().
Michal Vaskoe2713da2016-08-22 16:06:40 +0200365 *
366 * @param[in] name Arbitrary unique endpoint name.
Michal Vasko2e6defd2016-10-07 15:48:15 +0200367 * @param[in] ti Transport protocol to use.
Michal Vaskoe2713da2016-08-22 16:06:40 +0200368 * @return 0 on success, -1 on error.
369 */
Michal Vasko2e6defd2016-10-07 15:48:15 +0200370int nc_server_add_endpt(const char *name, NC_TRANSPORT_IMPL ti);
Michal Vaskoe2713da2016-08-22 16:06:40 +0200371
372/**
373 * @brief Stop listening on and remove an endpoint.
374 *
375 * @param[in] name Endpoint name. NULL matches all endpoints.
Michal Vasko59050372016-11-22 14:33:55 +0100376 * @param[in] ti Endpoint transport protocol. NULL matches any protocol.
377 * Redundant to set if \p name is set, endpoint names are
378 * unique disregarding their protocol.
Michal Vaskoe2713da2016-08-22 16:06:40 +0200379 * @return 0 on success, -1 on not finding any match.
380 */
Michal Vasko59050372016-11-22 14:33:55 +0100381int nc_server_del_endpt(const char *name, NC_TRANSPORT_IMPL ti);
Michal Vaskoe2713da2016-08-22 16:06:40 +0200382
383/**
Michal Vaskoe8e07702017-03-15 10:19:30 +0100384 * @brief Get the number of currently configured listening endpoints.
385 * Note that an ednpoint without address and/or port will be included
386 * even though it is not, in fact, listening.
387 *
388 * @return Number of added listening endpoints.
389 */
390int nc_server_endpt_count(void);
391
392/**
Michal Vasko1b5973e2020-01-30 16:05:46 +0100393 * @brief Check if an endpoint exists.
394 *
395 * @param[in] name Endpoint name.
396 * @return 0 if does not exists, non-zero otherwise.
397 */
398int nc_server_is_endpt(const char *name);
399
400/**
Michal Vasko2e6defd2016-10-07 15:48:15 +0200401 * @brief Change endpoint listening address.
402 *
403 * On error the previous listening socket (if any) is left untouched.
404 *
405 * @param[in] endpt_name Existing endpoint name.
406 * @param[in] address New listening address.
407 * @return 0 on success, -1 on error.
408 */
409int nc_server_endpt_set_address(const char *endpt_name, const char *address);
410
Michal Vaskob83a3fa2021-05-26 09:53:42 +0200411#if defined (NC_ENABLED_SSH) || defined (NC_ENABLED_TLS)
Michal Vasko946cacb2020-08-12 11:18:08 +0200412
Michal Vasko2e6defd2016-10-07 15:48:15 +0200413/**
414 * @brief Change endpoint listening port.
415 *
Michal Vasko946cacb2020-08-12 11:18:08 +0200416 * This is only valid on SSH/TLS transport endpoint.
Michal Vasko2e6defd2016-10-07 15:48:15 +0200417 * On error the previous listening socket (if any) is left untouched.
418 *
419 * @param[in] endpt_name Existing endpoint name.
420 * @param[in] port New listening port.
421 * @return 0 on success, -1 on error.
422 */
423int nc_server_endpt_set_port(const char *endpt_name, uint16_t port);
Michal Vasko9e036d52016-01-08 10:49:26 +0100424
Michal Vasko946cacb2020-08-12 11:18:08 +0200425#endif
426
Olivier Matzac7fa2f2018-10-11 10:02:04 +0200427/**
428 * @brief Change endpoint permissions.
429 *
Michal Vasko946cacb2020-08-12 11:18:08 +0200430 * This is only valid on UNIX transport endpoint.
Olivier Matzac7fa2f2018-10-11 10:02:04 +0200431 * On error the previous listening socket (if any) is left untouched.
432 *
433 * @param[in] endpt_name Existing endpoint name.
434 * @param[in] mode New mode, -1 to use default.
435 * @param[in] uid New uid, -1 to use default.
436 * @param[in] gid New gid, -1 to use default.
437 * @return 0 on success, -1 on error.
438 */
439int nc_server_endpt_set_perms(const char *endpt_name, mode_t mode, uid_t uid, gid_t gid);
440
Michal Vaskoe49a15f2019-05-27 14:18:36 +0200441/**
442 * @brief Change endpoint keepalives state. Affects only new connections.
443 *
444 * @param[in] endpt_name Existing endpoint name.
445 * @param[in] enable Whether to enable or disable keepalives.
446 * @return 0 on success, -1 on error.
447 */
448int nc_server_endpt_enable_keepalives(const char *endpt_name, int enable);
449
450/**
451 * @brief Change endpoint keepalives parameters. Affects only new connections.
452 *
453 * @param[in] endpt_name Existing endpoint name.
454 * @param[in] idle_time Keepalive idle time in seconds, 1 by default, -1 to keep previous value.
455 * @param[in] max_probes Keepalive max probes sent, 10 by default, -1 to keep previous value.
456 * @param[in] probe_interval Keepalive probe interval in seconds, 5 by default, -1 to keep previous value.
457 * @return 0 on success, -1 on error.
458 */
459int nc_server_endpt_set_keepalives(const char *endpt_name, int idle_time, int max_probes, int probe_interval);
460
Michal Vasko1440a742021-03-31 11:11:03 +0200461/** @} Server */
Radek Krejci6799a052017-05-19 14:23:23 +0200462
463/**
464 * @addtogroup server_session
Michal Vasko4e6d3242021-05-26 09:13:24 +0200465 * @{
Radek Krejci6799a052017-05-19 14:23:23 +0200466 */
467
Michal Vasko1a38c862016-01-15 15:50:07 +0100468/**
Michal Vasko3031aae2016-01-27 16:07:18 +0100469 * @brief Accept new sessions on all the listening endpoints.
Michal Vasko1a38c862016-01-15 15:50:07 +0100470 *
Michal Vaskob70c8b82017-03-17 09:09:29 +0100471 * Once a new (TCP/IP) conection is established a different (quite long) timeout
472 * is used for waiting for transport-related data, which means this call can block
473 * for much longer that \p timeout, but only with slow/faulty/malicious clients.
474 *
Michal Vasko11d142a2016-01-19 15:58:24 +0100475 * @param[in] timeout Timeout for receiving a new connection in milliseconds, 0 for
Michal Vasko71090fc2016-05-24 16:37:28 +0200476 * non-blocking call, -1 for infinite waiting.
Michal Vasko96164bf2016-01-21 15:41:58 +0100477 * @param[out] session New session.
Michal Vasko71090fc2016-05-24 16:37:28 +0200478 * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message
479 * parsing fail, NC_MSG_WOULDBLOCK on timeout, NC_MSG_ERROR on other errors.
Michal Vasko1a38c862016-01-15 15:50:07 +0100480 */
Michal Vasko71090fc2016-05-24 16:37:28 +0200481NC_MSG_TYPE nc_accept(int timeout, struct nc_session **session);
Michal Vasko9e036d52016-01-08 10:49:26 +0100482
Radek Krejci53691be2016-02-22 13:58:37 +0100483#ifdef NC_ENABLED_SSH
Michal Vasko086311b2016-01-08 09:53:11 +0100484
Michal Vasko1a38c862016-01-15 15:50:07 +0100485/**
Michal Vasko71090fc2016-05-24 16:37:28 +0200486 * @brief Accept a new NETCONF session on an SSH session of a running NETCONF \p orig_session.
Michal Vaskoade892d2017-02-22 13:40:35 +0100487 * Call this function only when nc_ps_poll() returns #NC_PSPOLL_SSH_CHANNEL on \p orig_session.
Michal Vasko71090fc2016-05-24 16:37:28 +0200488 *
489 * @param[in] orig_session Session that has a new SSH channel ready.
490 * @param[out] session New session.
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.
493 */
494NC_MSG_TYPE nc_session_accept_ssh_channel(struct nc_session *orig_session, struct nc_session **session);
495
496/**
Michal Vasko96164bf2016-01-21 15:41:58 +0100497 * @brief Accept a new NETCONF session on an SSH session of a running NETCONF session
Michal Vaskoade892d2017-02-22 13:40:35 +0100498 * that was polled in \p ps. Call this function only when nc_ps_poll() on \p ps returns #NC_PSPOLL_SSH_CHANNEL.
Michal Vaskoc0fde012016-03-01 09:07:23 +0100499 * The new session is only returned in \p session, it is not added to \p ps.
Michal Vasko96164bf2016-01-21 15:41:58 +0100500 *
501 * @param[in] ps Unmodified pollsession structure from the previous nc_ps_poll() call.
502 * @param[out] session New session.
Michal Vasko71090fc2016-05-24 16:37:28 +0200503 * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message
504 * parsing fail, NC_MSG_WOULDBLOCK on timeout, NC_MSG_ERROR on other errors.
Michal Vasko96164bf2016-01-21 15:41:58 +0100505 */
Michal Vasko71090fc2016-05-24 16:37:28 +0200506NC_MSG_TYPE nc_ps_accept_ssh_channel(struct nc_pollsession *ps, struct nc_session **session);
Michal Vasko96164bf2016-01-21 15:41:58 +0100507
Michal Vasko1440a742021-03-31 11:11:03 +0200508/** @} Server Session */
Radek Krejci6799a052017-05-19 14:23:23 +0200509
510/**
511 * @defgroup server_ssh Server SSH
512 * @ingroup server
513 *
514 * @brief Server-side settings for SSH connections.
515 * @{
516 */
517
Michal Vasko96164bf2016-01-21 15:41:58 +0100518/**
Michal Vasko17dfda92016-12-01 14:06:16 +0100519 * @brief Add an authorized client SSH public key. This public key can be used for
Michal Vaskoe49a15f2019-05-27 14:18:36 +0200520 * publickey authentication (for any SSH connection, even Call Home) afterwards.
Michal Vaskoda514772016-02-01 11:32:01 +0100521 *
Michal Vasko17dfda92016-12-01 14:06:16 +0100522 * @param[in] pubkey_base64 Authorized public key binary content encoded in base64.
523 * @param[in] type Authorized public key SSH type.
524 * @param[in] username Username that the client with the public key must use.
Michal Vaskoda514772016-02-01 11:32:01 +0100525 * @return 0 on success, -1 on error.
526 */
Michal Vasko17dfda92016-12-01 14:06:16 +0100527int nc_server_ssh_add_authkey(const char *pubkey_base64, NC_SSH_KEY_TYPE type, const char *username);
Michal Vaskoda514772016-02-01 11:32:01 +0100528
529/**
Michal Vasko17dfda92016-12-01 14:06:16 +0100530 * @brief Add an authorized client SSH public key. This public key can be used for
531 * publickey authentication (for any SSH connection, even Call Home) afterwards.
Michal Vaskoda514772016-02-01 11:32:01 +0100532 *
Michal Vasko17dfda92016-12-01 14:06:16 +0100533 * @param[in] pubkey_path Path to the public key.
534 * @param[in] username Username that the client with the public key must use.
Michal Vaskoda514772016-02-01 11:32:01 +0100535 * @return 0 on success, -1 on error.
536 */
Michal Vasko17dfda92016-12-01 14:06:16 +0100537int nc_server_ssh_add_authkey_path(const char *pubkey_path, const char *username);
Michal Vaskoda514772016-02-01 11:32:01 +0100538
539/**
Michal Vasko17dfda92016-12-01 14:06:16 +0100540 * @brief Remove an authorized client SSH public key.
Michal Vasko1a38c862016-01-15 15:50:07 +0100541 *
Michal Vasko17dfda92016-12-01 14:06:16 +0100542 * @param[in] pubkey_path Path to an authorized public key. NULL matches all the keys.
543 * @param[in] pubkey_base64 Authorized public key content. NULL matches any key.
544 * @param[in] type Authorized public key type. 0 matches all types.
545 * @param[in] username Username for an authorized public key. NULL matches all the usernames.
546 * @return 0 on success, -1 on not finding any match.
Michal Vasko1a38c862016-01-15 15:50:07 +0100547 */
Michal Vasko17dfda92016-12-01 14:06:16 +0100548int nc_server_ssh_del_authkey(const char *pubkey_path, const char *pubkey_base64, NC_SSH_KEY_TYPE type,
Michal Vaskob83a3fa2021-05-26 09:53:42 +0200549 const char *username);
Michal Vaskoe2713da2016-08-22 16:06:40 +0200550
551/**
Michal Vaskoebba7602018-03-23 13:14:08 +0100552 * @brief Set the callback for SSH password authentication. If none is set, local system users are used.
553 *
554 * @param[in] passwd_auth_clb Callback that should authenticate the user. Username can be directly obtained from \p session.
Michal Vasko1440a742021-03-31 11:11:03 +0200555 * Zero return indicates success, non-zero an error.
Michal Vaskoebba7602018-03-23 13:14:08 +0100556 * @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 */
559void nc_server_ssh_set_passwd_auth_clb(int (*passwd_auth_clb)(const struct nc_session *session, const char *password,
Michal Vasko1440a742021-03-31 11:11:03 +0200560 void *user_data), void *user_data, void (*free_user_data)(void *user_data));
Michal Vaskoebba7602018-03-23 13:14:08 +0100561
562/**
bhart3bc2f582018-06-05 12:40:32 -0500563 * @brief Set the callback for SSH interactive authentication. If none is set, local system users are used.
564 *
565 * @param[in] interactive_auth_clb Callback that should authenticate the user.
Michal Vasko1440a742021-03-31 11:11:03 +0200566 * Zero return indicates success, non-zero an error.
bhart3bc2f582018-06-05 12:40:32 -0500567 * @param[in] user_data Optional arbitrary user data that will be passed to \p passwd_auth_clb.
568 * @param[in] free_user_data Optional callback that will be called during cleanup to free any \p user_data.
569 */
Michal Vasko1440a742021-03-31 11:11:03 +0200570void nc_server_ssh_set_interactive_auth_clb(int (*interactive_auth_clb)(const struct nc_session *session,
571 const ssh_message msg, void *user_data), void *user_data, void (*free_user_data)(void *user_data));
bhart3bc2f582018-06-05 12:40:32 -0500572
573/**
574 * @brief Set the callback for SSH public key authentication. If none is set, local system users are used.
575 *
576 * @param[in] pubkey_auth_clb Callback that should authenticate the user.
Michal Vasko1440a742021-03-31 11:11:03 +0200577 * Zero return indicates success, non-zero an error.
bhart3bc2f582018-06-05 12:40:32 -0500578 * @param[in] user_data Optional arbitrary user data that will be passed to \p passwd_auth_clb.
579 * @param[in] free_user_data Optional callback that will be called during cleanup to free any \p user_data.
580 */
Michal Vaskob83a3fa2021-05-26 09:53:42 +0200581void nc_server_ssh_set_pubkey_auth_clb(int (*pubkey_auth_clb)(const struct nc_session *session, ssh_key key,
Michal Vasko1440a742021-03-31 11:11:03 +0200582 void *user_data), void *user_data, void (*free_user_data)(void *user_data));
bhart3bc2f582018-06-05 12:40:32 -0500583
584/**
Michal Vasko4c1fb492017-01-30 14:31:07 +0100585 * @brief Set the callback for retrieving host keys. Any RSA, DSA, and ECDSA keys can be added. However,
586 * a maximum of one key of each type will be used during SSH authentication, later keys replacing
587 * the earlier ones.
588 *
589 * @param[in] hostkey_clb Callback that should return the key itself. Zero return indicates success, non-zero
590 * an error. On success exactly ONE of \p privkey_path or \p privkey_data is expected
591 * to be set. The one set will be freed.
592 * - \p privkey_path expects a PEM file,
593 * - \p privkey_data expects a base-64 encoded ANS.1 DER data,
Michal Vasko68177b72020-04-27 15:46:53 +0200594 * - \p privkey_type type of the key in \p privkey_data. Use ::NC_SSH_KEY_UNKNOWN for
595 * PKCS#8 key that includes the information about the key in its data.
Michal Vasko4c1fb492017-01-30 14:31:07 +0100596 * @param[in] user_data Optional arbitrary user data that will be passed to \p hostkey_clb.
597 * @param[in] free_user_data Optional callback that will be called during cleanup to free any \p user_data.
598 */
599void nc_server_ssh_set_hostkey_clb(int (*hostkey_clb)(const char *name, void *user_data, char **privkey_path,
Michal Vaskoe49a15f2019-05-27 14:18:36 +0200600 char **privkey_data, NC_SSH_KEY_TYPE *privkey_type), void *user_data, void (*free_user_data)(void *user_data));
Michal Vasko4c1fb492017-01-30 14:31:07 +0100601
602/**
Michal Vaskoddce1212019-05-24 09:58:49 +0200603 * @brief Add endpoint SSH host keys the server will identify itself with. Only the name is set, the key itself
604 * wil be retrieved using a callback.
605 *
606 * @param[in] endpt_name Existing endpoint name.
607 * @param[in] name Arbitrary name of the host key.
608 * @param[in] idx Optional index where to add the key. -1 adds at the end.
609 * @return 0 on success, -1 on error.
610 */
611int nc_server_ssh_endpt_add_hostkey(const char *endpt_name, const char *name, int16_t idx);
612
613/**
Michal Vasko4c1fb492017-01-30 14:31:07 +0100614 * @brief Delete endpoint SSH host key. Their order is preserved.
Michal Vaskoe2713da2016-08-22 16:06:40 +0200615 *
616 * @param[in] endpt_name Existing endpoint name.
Michal Vasko7d255882017-02-09 13:35:08 +0100617 * @param[in] name Name of the host key. NULL matches all the keys, but if \p idx != -1 then this must be NULL.
618 * @param[in] idx Index of the hostkey. -1 matches all indices, but if \p name != NULL then this must be -1.
Michal Vaskoe2713da2016-08-22 16:06:40 +0200619 * @return 0 on success, -1 on error.
620 */
Michal Vasko7d255882017-02-09 13:35:08 +0100621int nc_server_ssh_endpt_del_hostkey(const char *endpt_name, const char *name, int16_t idx);
Michal Vasko086311b2016-01-08 09:53:11 +0100622
Michal Vasko1a38c862016-01-15 15:50:07 +0100623/**
Michal Vaskofbfe8b62017-02-14 10:22:30 +0100624 * @brief Move endpoint SSH host key.
625 *
626 * @param[in] endpt_name Exisitng endpoint name.
627 * @param[in] key_mov Name of the host key that will be moved.
628 * @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.
629 * @return 0 in success, -1 on error.
630 */
631int nc_server_ssh_endpt_mov_hostkey(const char *endpt_name, const char *key_mov, const char *key_after);
632
633/**
634 * @brief Modify endpoint SSH host key.
635 *
636 * @param[in] endpt_name Exisitng endpoint name.
637 * @param[in] name Name of an existing host key.
638 * @param[in] new_name New name of the host key \p name.
639 * @return 0 in success, -1 on error.
640 */
641int nc_server_ssh_endpt_mod_hostkey(const char *endpt_name, const char *name, const char *new_name);
Michal Vasko086311b2016-01-08 09:53:11 +0100642
Michal Vasko1a38c862016-01-15 15:50:07 +0100643/**
Michal Vasko3031aae2016-01-27 16:07:18 +0100644 * @brief Set endpoint accepted SSH authentication methods. All (publickey, password, interactive)
Michal Vaskof0537d82016-01-29 14:42:38 +0100645 * are supported by default.
Michal Vasko1a38c862016-01-15 15:50:07 +0100646 *
Michal Vaskoda514772016-02-01 11:32:01 +0100647 * @param[in] endpt_name Existing endpoint name.
Michal Vasko1a38c862016-01-15 15:50:07 +0100648 * @param[in] auth_methods Accepted authentication methods bit field of NC_SSH_AUTH_TYPE.
649 * @return 0 on success, -1 on error.
650 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100651int nc_server_ssh_endpt_set_auth_methods(const char *endpt_name, int auth_methods);
Michal Vasko086311b2016-01-08 09:53:11 +0100652
Michal Vasko1a38c862016-01-15 15:50:07 +0100653/**
Michal Vaskoddce1212019-05-24 09:58:49 +0200654 * @brief Get endpoint accepted SSH authentication methods.
655 *
656 * @param[in] endpt_name Existing endpoint name.
657 * @return Accepted authentication methods bit field of NC_SSH_AUTH_TYPE.
658 */
659int nc_server_ssh_endpt_get_auth_methods(const char *endpt_name);
660
661/**
Michal Vasko3031aae2016-01-27 16:07:18 +0100662 * @brief Set endpoint SSH authentication attempts of every client. 3 by default.
Michal Vasko1a38c862016-01-15 15:50:07 +0100663 *
Michal Vaskoda514772016-02-01 11:32:01 +0100664 * @param[in] endpt_name Existing endpoint name.
Michal Vasko5e6f4cc2016-01-20 13:27:44 +0100665 * @param[in] auth_attempts Failed authentication attempts before a client is dropped.
Michal Vasko1a38c862016-01-15 15:50:07 +0100666 * @return 0 on success, -1 on error.
667 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100668int nc_server_ssh_endpt_set_auth_attempts(const char *endpt_name, uint16_t auth_attempts);
Michal Vasko086311b2016-01-08 09:53:11 +0100669
Michal Vasko1a38c862016-01-15 15:50:07 +0100670/**
Michal Vaskocbad4c52019-06-27 16:30:35 +0200671 * @brief Set endpoint SSH authentication timeout. 30 seconds by default.
Michal Vasko1a38c862016-01-15 15:50:07 +0100672 *
Michal Vaskoda514772016-02-01 11:32:01 +0100673 * @param[in] endpt_name Existing endpoint name.
Michal Vasko1a38c862016-01-15 15:50:07 +0100674 * @param[in] auth_timeout Number of seconds before an unauthenticated client is dropped.
675 * @return 0 on success, -1 on error.
676 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100677int nc_server_ssh_endpt_set_auth_timeout(const char *endpt_name, uint16_t auth_timeout);
Michal Vasko086311b2016-01-08 09:53:11 +0100678
Radek Krejci6799a052017-05-19 14:23:23 +0200679/**@} Server SSH */
680
Radek Krejci53691be2016-02-22 13:58:37 +0100681#endif /* NC_ENABLED_SSH */
Michal Vasko086311b2016-01-08 09:53:11 +0100682
Radek Krejci53691be2016-02-22 13:58:37 +0100683#ifdef NC_ENABLED_TLS
Michal Vasko086311b2016-01-08 09:53:11 +0100684
Michal Vasko1a38c862016-01-15 15:50:07 +0100685/**
Radek Krejci6799a052017-05-19 14:23:23 +0200686 * @defgroup server_tls Server TLS
687 * @ingroup server
688 *
689 * @brief Server-side settings for TLS connections.
690 * @{
691 */
692
693/**
Michal Vasko4c1fb492017-01-30 14:31:07 +0100694 * @brief Set the server TLS certificate. Only the name is set, the certificate itself
695 * wil be retrieved using a callback.
Michal Vaskoda514772016-02-01 11:32:01 +0100696 *
697 * @param[in] endpt_name Existing endpoint name.
Michal Vasko4c1fb492017-01-30 14:31:07 +0100698 * @param[in] name Arbitrary certificate name.
Michal Vaskoda514772016-02-01 11:32:01 +0100699 * @return 0 on success, -1 on error.
700 */
Michal Vasko4c1fb492017-01-30 14:31:07 +0100701int nc_server_tls_endpt_set_server_cert(const char *endpt_name, const char *name);
Michal Vaskoda514772016-02-01 11:32:01 +0100702
703/**
Michal Vasko4c1fb492017-01-30 14:31:07 +0100704 * @brief Set the callback for retrieving server certificate and matching private key.
Michal Vaskoda514772016-02-01 11:32:01 +0100705 *
Michal Vasko4c1fb492017-01-30 14:31:07 +0100706 * @param[in] cert_clb Callback that should return the certificate and the key itself. Zero return indicates success,
707 * non-zero an error. On success exactly ONE of \p cert_path or \p cert_data and ONE of
708 * \p privkey_path and \p privkey_data is expected to be set. Those set will be freed.
709 * - \p cert_path expects a PEM file,
710 * - \p cert_data expects a base-64 encoded ASN.1 DER data,
711 * - \p privkey_path expects a PEM file,
712 * - \p privkey_data expects a base-64 encoded ANS.1 DER data,
Michal Vaskoddce1212019-05-24 09:58:49 +0200713 * - \p privkey_type type of the key in \p privkey_data.
Michal Vasko4c1fb492017-01-30 14:31:07 +0100714 * @param[in] user_data Optional arbitrary user data that will be passed to \p cert_clb.
715 * @param[in] free_user_data Optional callback that will be called during cleanup to free any \p user_data.
Michal Vaskoda514772016-02-01 11:32:01 +0100716 */
Michal Vasko4c1fb492017-01-30 14:31:07 +0100717void nc_server_tls_set_server_cert_clb(int (*cert_clb)(const char *name, void *user_data, char **cert_path, char **cert_data,
Michal Vaskoe49a15f2019-05-27 14:18:36 +0200718 char **privkey_path, char **privkey_data, NC_SSH_KEY_TYPE *privkey_type), void *user_data,
719 void (*free_user_data)(void *user_data));
Michal Vaskoda514772016-02-01 11:32:01 +0100720
721/**
Andrew Langefeld440b6c72018-08-27 16:26:20 -0500722 * @brief Set the callback for retrieving server certificate chain
723 *
724 * @param[in] cert_chain_clb Callback that should return all the certificates of the chain. Zero return indicates success,
725 * non-zero an error. On success, \p cert_paths and \p cert_data are expected to be set or left
726 * NULL. Both will be (deeply) freed.
727 * - \p cert_paths expect an array of PEM files,
728 * - \p cert_path_count number of \p cert_paths array members,
729 * - \p cert_data expect an array of base-64 encoded ASN.1 DER cert data,
730 * - \p cert_data_count number of \p cert_data array members.
731 * @param[in] user_data Optional arbitrary user data that will be passed to \p cert_clb.
732 * @param[in] free_user_data Optional callback that will be called during cleanup to free any \p user_data.
733 */
734void nc_server_tls_set_server_cert_chain_clb(int (*cert_chain_clb)(const char *name, void *user_data, char ***cert_paths,
Michal Vaskoe49a15f2019-05-27 14:18:36 +0200735 int *cert_path_count, char ***cert_data, int *cert_data_count), void *user_data, void (*free_user_data)(void *user_data));
Andrew Langefeld440b6c72018-08-27 16:26:20 -0500736
737/**
Michal Vasko4c1fb492017-01-30 14:31:07 +0100738 * @brief Add a trusted certificate list. Can be both a CA or a client one. Can be
Michal Vaskofdfd9dd2016-02-29 10:18:46 +0100739 * safely used together with nc_server_tls_endpt_set_trusted_ca_paths().
Michal Vasko1a38c862016-01-15 15:50:07 +0100740 *
Michal Vaskoda514772016-02-01 11:32:01 +0100741 * @param[in] endpt_name Existing endpoint name.
Michal Vasko4c1fb492017-01-30 14:31:07 +0100742 * @param[in] name Arbitary name identifying this certificate list.
Michal Vasko1a38c862016-01-15 15:50:07 +0100743 * @return 0 on success, -1 on error.
744 */
Michal Vasko4c1fb492017-01-30 14:31:07 +0100745int nc_server_tls_endpt_add_trusted_cert_list(const char *endpt_name, const char *name);
Michal Vasko0457bb42016-01-08 15:49:13 +0100746
Michal Vasko1a38c862016-01-15 15:50:07 +0100747/**
Michal Vasko4c1fb492017-01-30 14:31:07 +0100748 * @brief Set the callback for retrieving trusted certificates.
749 *
750 * @param[in] cert_list_clb Callback that should return all the certificates of a list. Zero return indicates success,
751 * non-zero an error. On success, \p cert_paths and \p cert_data are expected to be set or left
752 * NULL. Both will be (deeply) freed.
753 * - \p cert_paths expect an array of PEM files,
754 * - \p cert_path_count number of \p cert_paths array members,
755 * - \p cert_data expect an array of base-64 encoded ASN.1 DER cert data,
756 * - \p cert_data_count number of \p cert_data array members.
757 * @param[in] user_data Optional arbitrary user data that will be passed to \p cert_clb.
758 * @param[in] free_user_data Optional callback that will be called during cleanup to free any \p user_data.
759 */
760void nc_server_tls_set_trusted_cert_list_clb(int (*cert_list_clb)(const char *name, void *user_data, char ***cert_paths,
Michal Vaskoe49a15f2019-05-27 14:18:36 +0200761 int *cert_path_count, char ***cert_data, int *cert_data_count), void *user_data, void (*free_user_data)(void *user_data));
Michal Vasko4c1fb492017-01-30 14:31:07 +0100762
763/**
764 * @brief Remove a trusted certificate.
Michal Vasko1a38c862016-01-15 15:50:07 +0100765 *
Michal Vaskoda514772016-02-01 11:32:01 +0100766 * @param[in] endpt_name Existing endpoint name.
Michal Vasko4c1fb492017-01-30 14:31:07 +0100767 * @param[in] name Name of the certificate list to delete. NULL deletes all the lists.
768 * @return 0 on success, -1 on not found.
Michal Vasko1a38c862016-01-15 15:50:07 +0100769 */
Michal Vasko4c1fb492017-01-30 14:31:07 +0100770int nc_server_tls_endpt_del_trusted_cert_list(const char *endpt_name, const char *name);
Michal Vasko0457bb42016-01-08 15:49:13 +0100771
Michal Vasko1a38c862016-01-15 15:50:07 +0100772/**
773 * @brief Set trusted Certificate Authority certificate locations. There can only be
Michal Vasko5d2ad082016-02-09 11:47:59 +0100774 * one file and one directory, they are replaced if already set. Can be safely
Michal Vaskofdfd9dd2016-02-29 10:18:46 +0100775 * used with nc_server_tls_endpt_add_trusted_cert() or its _path variant.
Michal Vasko1a38c862016-01-15 15:50:07 +0100776 *
Michal Vaskoda514772016-02-01 11:32:01 +0100777 * @param[in] endpt_name Existing endpoint name.
Michal Vasko96830e32016-02-01 10:54:18 +0100778 * @param[in] ca_file Path to a trusted CA cert store file in PEM format. Can be NULL.
779 * @param[in] ca_dir Path to a trusted CA cert store hashed directory (c_rehash utility
780 * can be used to create hashes) with PEM files. Can be NULL.
Michal Vasko1a38c862016-01-15 15:50:07 +0100781 * @return 0 on success, -1 on error.
782 */
Michal Vasko96830e32016-02-01 10:54:18 +0100783int nc_server_tls_endpt_set_trusted_ca_paths(const char *endpt_name, const char *ca_file, const char *ca_dir);
Michal Vasko0457bb42016-01-08 15:49:13 +0100784
Michal Vasko1a38c862016-01-15 15:50:07 +0100785/**
Michal Vasko1a38c862016-01-15 15:50:07 +0100786 * @brief Set Certificate Revocation List locations. There can only be one file
Michal Vaskof0537d82016-01-29 14:42:38 +0100787 * and one directory, they are replaced if already set.
Michal Vasko1a38c862016-01-15 15:50:07 +0100788 *
Michal Vaskoda514772016-02-01 11:32:01 +0100789 * @param[in] endpt_name Existing endpoint name.
Michal Vasko96830e32016-02-01 10:54:18 +0100790 * @param[in] crl_file Path to a CRL store file in PEM format. Can be NULL.
791 * @param[in] crl_dir Path to a CRL store hashed directory (c_rehash utility
792 * can be used to create hashes) with PEM files. Can be NULL.
Michal Vasko1a38c862016-01-15 15:50:07 +0100793 * @return 0 on success, -1 on error.
794 */
Michal Vasko96830e32016-02-01 10:54:18 +0100795int nc_server_tls_endpt_set_crl_paths(const char *endpt_name, const char *crl_file, const char *crl_dir);
Michal Vasko0457bb42016-01-08 15:49:13 +0100796
Michal Vasko1a38c862016-01-15 15:50:07 +0100797/**
Michal Vasko96830e32016-02-01 10:54:18 +0100798 * @brief Destroy and clean CRLs. Certificates, private keys, and CTN entries are
Michal Vaskof0537d82016-01-29 14:42:38 +0100799 * not affected.
Michal Vaskoda514772016-02-01 11:32:01 +0100800 *
801 * @param[in] endpt_name Existing endpoint name.
Michal Vasko1a38c862016-01-15 15:50:07 +0100802 */
Michal Vaskoc6b9c7b2016-01-28 11:10:08 +0100803void nc_server_tls_endpt_clear_crls(const char *endpt_name);
Michal Vasko0457bb42016-01-08 15:49:13 +0100804
Michal Vasko1a38c862016-01-15 15:50:07 +0100805/**
Michal Vasko58c22a22016-11-23 13:49:53 +0100806 * @brief Add a cert-to-name entry.
Michal Vasko1a38c862016-01-15 15:50:07 +0100807 *
Michal Vasko3cf4aaa2017-02-01 15:03:36 +0100808 * It is possible to add an entry step-by-step, specifying first only \p ip and in later calls
809 * \p fingerprint, \p map_type, and optionally \p name spearately.
Michal Vasko1a38c862016-01-15 15:50:07 +0100810 *
Michal Vaskoda514772016-02-01 11:32:01 +0100811 * @param[in] endpt_name Existing endpoint name.
Michal Vasko3cf4aaa2017-02-01 15:03:36 +0100812 * @param[in] id Priority of the entry. It must be unique. If already exists, the entry with this id
813 * is modified.
814 * @param[in] fingerprint Matching certificate fingerprint. If NULL, kept temporarily unset.
815 * @param[in] map_type Type of username-certificate mapping. If 0, kept temporarily unset.
816 * @param[in] name Specific username used only if \p map_type == NC_TLS_CTN_SPECIFED.
Michal Vasko1a38c862016-01-15 15:50:07 +0100817 * @return 0 on success, -1 on error.
818 */
Michal Vasko3a889fd2016-09-30 12:16:37 +0200819int nc_server_tls_endpt_add_ctn(const char *endpt_name, uint32_t id, const char *fingerprint,
Michal Vaskob83a3fa2021-05-26 09:53:42 +0200820 NC_TLS_CTN_MAPTYPE map_type, const char *name);
Michal Vaskoc14e3c82016-01-11 16:14:30 +0100821
Michal Vasko1a38c862016-01-15 15:50:07 +0100822/**
Michal Vasko58c22a22016-11-23 13:49:53 +0100823 * @brief Remove a cert-to-name entry.
Michal Vasko1a38c862016-01-15 15:50:07 +0100824 *
Michal Vaskoda514772016-02-01 11:32:01 +0100825 * @param[in] endpt_name Existing endpoint name.
Michal Vasko1a38c862016-01-15 15:50:07 +0100826 * @param[in] id Priority of the entry. -1 matches all the priorities.
827 * @param[in] fingerprint Fingerprint fo the entry. NULL matches all the fingerprints.
828 * @param[in] map_type Mapping type of the entry. 0 matches all the mapping types.
829 * @param[in] name Specific username for the entry. NULL matches all the usernames.
830 * @return 0 on success, -1 on not finding any match.
831 */
Michal Vasko3a889fd2016-09-30 12:16:37 +0200832int nc_server_tls_endpt_del_ctn(const char *endpt_name, int64_t id, const char *fingerprint,
Michal Vaskob83a3fa2021-05-26 09:53:42 +0200833 NC_TLS_CTN_MAPTYPE map_type, const char *name);
Michal Vasko0457bb42016-01-08 15:49:13 +0100834
Michal Vaskodf5e6af2016-11-23 13:50:56 +0100835/**
836 * @brief Get a cert-to-name entry.
837 *
838 * If a parameter is NULL, it is ignored. If its dereferenced value is NULL,
839 * it is filled and returned. If the value is set, it is used as a filter.
840 * Returns first matching entry.
841 *
842 * @param[in] endpt_name Existing endpoint name.
843 * @param[in,out] id Priority of the entry.
844 * @param[in,out] fingerprint Fingerprint fo the entry.
845 * @param[in,out] map_type Mapping type of the entry.
846 * @param[in,out] name Specific username for the entry.
847 * @return 0 on success, -1 on not finding any match.
848 */
Michal Vaskof585ac72016-11-25 15:16:38 +0100849int nc_server_tls_endpt_get_ctn(const char *endpt_name, uint32_t *id, char **fingerprint, NC_TLS_CTN_MAPTYPE *map_type,
Michal Vaskob83a3fa2021-05-26 09:53:42 +0200850 char **name);
Michal Vaskodf5e6af2016-11-23 13:50:56 +0100851
Michal Vasko7060bcf2016-11-28 14:48:11 +0100852/**
Michal Vasko709598e2016-11-28 14:48:32 +0100853 * @brief Get client certificate.
854 *
855 * @param[in] session Session to get the information from.
856 * @return Const session client certificate.
857 */
858const X509 *nc_session_get_client_cert(const struct nc_session *session);
859
860/**
Michal Vasko7060bcf2016-11-28 14:48:11 +0100861 * @brief Set TLS authentication additional verify callback.
862 *
863 * Server will always perform cert-to-name based on its configuration. Only after it passes
864 * and this callback is set, it is also called. It should return exactly what OpenSSL
865 * verify callback meaning 1 for success, 0 to deny the user.
866 *
867 * @param[in] verify_clb Additional user verify callback.
868 */
869void nc_server_tls_set_verify_clb(int (*verify_clb)(const struct nc_session *session));
870
Radek Krejci6799a052017-05-19 14:23:23 +0200871/**@} Server TLS */
872
Radek Krejci53691be2016-02-22 13:58:37 +0100873#endif /* NC_ENABLED_TLS */
Michal Vasko086311b2016-01-08 09:53:11 +0100874
Michal Vaskof8352352016-05-24 09:11:36 +0200875/**
Radek Krejci6799a052017-05-19 14:23:23 +0200876 * @addtogroup server_session
877 * @{
878 */
879
880/**
Michal Vaskoc45ebd32016-05-25 11:17:36 +0200881 * @brief Get session start time.
Michal Vaskof8352352016-05-24 09:11:36 +0200882 *
883 * @param[in] session Session to get the information from.
Michal Vaskoc45ebd32016-05-25 11:17:36 +0200884 * @return Session start time.
Michal Vaskof8352352016-05-24 09:11:36 +0200885 */
Michal Vaskoc45ebd32016-05-25 11:17:36 +0200886time_t nc_session_get_start_time(const struct nc_session *session);
Michal Vaskof8352352016-05-24 09:11:36 +0200887
Michal Vasko3486a7c2017-03-03 13:28:07 +0100888/**
Michal Vasko71dbd772021-03-23 14:08:37 +0100889 * @brief Increase session notification subscription flag count.
890 * Supports multiple subscriptions on one session.
Michal Vasko3486a7c2017-03-03 13:28:07 +0100891 *
892 * It is used only to ignore timeouts, because they are
893 * ignored for sessions with active subscriptions.
894 *
895 * @param[in] session Session to modify.
Michal Vasko3486a7c2017-03-03 13:28:07 +0100896 */
Michal Vasko71dbd772021-03-23 14:08:37 +0100897void nc_session_inc_notif_status(struct nc_session *session);
898
899/**
900 * @brief Decrease session notification subscription flag count.
901 * Supports multiple subscriptions on one session.
902 *
903 * @param[in] session Session to modify.
904 */
905void nc_session_dec_notif_status(struct nc_session *session);
Michal Vasko3486a7c2017-03-03 13:28:07 +0100906
907/**
908 * @brief Get session notification subscription flag.
909 *
910 * @param[in] session Session to get the information from.
911 * @return 0 for no active subscription, non-zero for an active subscription.
912 */
913int nc_session_get_notif_status(const struct nc_session *session);
914
Michal Vasko8f430592019-02-26 08:32:54 +0100915/**
916 * @brief Learn whether a session was created using Call Home or not.
917 * Works only for server sessions.
918 *
919 * @param[in] session Session to get the information from.
920 * @return 0 if a standard session, non-zero if a Call Home session.
921 */
922int nc_session_is_callhome(const struct nc_session *session);
923
Radek Krejci6799a052017-05-19 14:23:23 +0200924/**@} Server Session */
925
Michal Vaskoc09730e2019-01-17 10:07:26 +0100926#ifdef __cplusplus
927}
928#endif
929
Michal Vasko086311b2016-01-08 09:53:11 +0100930#endif /* NC_SESSION_SERVER_H_ */