blob: 4837b38e3e8196707b97c33a5b239a5712be5070 [file] [log] [blame]
Michal Vasko086311b2016-01-08 09:53:11 +01001/**
Michal Vaskoc446a382021-06-18 08:54:05 +02002 * @file session_server.h
3 * @author Michal Vasko <mvasko@cesnet.cz>
4 * @brief libnetconf2 session server manipulation
Michal Vasko086311b2016-01-08 09:53:11 +01005 *
Michal Vasko95ea9ff2021-11-09 12:29:14 +01006 * @copyright
Michal Vasko1440a742021-03-31 11:11:03 +02007 * Copyright (c) 2015 - 2021 CESNET, z.s.p.o.
Michal Vasko086311b2016-01-08 09:53:11 +01008 *
Radek Krejci9b81f5b2016-02-24 13:14:49 +01009 * 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 Vaskoafd416b2016-02-25 14:51:46 +010012 *
Radek Krejci9b81f5b2016-02-24 13:14:49 +010013 * https://opensource.org/licenses/BSD-3-Clause
Michal Vasko086311b2016-01-08 09:53:11 +010014 */
15
16#ifndef NC_SESSION_SERVER_H_
17#define NC_SESSION_SERVER_H_
18
Michal Vaskoc09730e2019-01-17 10:07:26 +010019#ifdef __cplusplus
20extern "C" {
21#endif
22
Michal Vasko05ba9df2016-01-13 14:40:27 +010023#include <libyang/libyang.h>
Michal Vaskob83a3fa2021-05-26 09:53:42 +020024#include <stdint.h>
Michal Vaskocca9ba62021-11-25 13:26:17 +010025#include <sys/types.h>
Michal Vasko086311b2016-01-08 09:53:11 +010026
Michal Vasko709598e2016-11-28 14:48:32 +010027#ifdef NC_ENABLED_TLS
Michal Vaskoc446a382021-06-18 08:54:05 +020028# include <openssl/x509.h>
Michal Vasko709598e2016-11-28 14:48:32 +010029#endif
30
bhart3bc2f582018-06-05 12:40:32 -050031#ifdef NC_ENABLED_SSH
Michal Vaskoc446a382021-06-18 08:54:05 +020032# include <libssh/callbacks.h>
33# include <libssh/libssh.h>
34# include <libssh/server.h>
bhart3bc2f582018-06-05 12:40:32 -050035#endif
36
Michal Vasko086311b2016-01-08 09:53:11 +010037#include "netconf.h"
Michal Vaskob83a3fa2021-05-26 09:53:42 +020038#include "session.h"
Michal Vasko086311b2016-01-08 09:53:11 +010039
Michal Vasko1a38c862016-01-15 15:50:07 +010040/**
Radek Krejci6799a052017-05-19 14:23:23 +020041 * @defgroup server_session Server Session
42 * @ingroup server
43 *
44 * @brief Server-side NETCONF session manipulation.
45 * @{
46 */
47
48/**
Michal Vasko1a38c862016-01-15 15:50:07 +010049 * @brief Prototype of callbacks that are called if some RPCs are received.
50 *
Michal Vaskoc446a382021-06-18 08:54:05 +020051 * If @p session termination reason is changed in the callback, one last reply
Michal Vasko1a38c862016-01-15 15:50:07 +010052 * is sent and then the session is considered invalid.
53 *
Radek Krejci6799a052017-05-19 14:23:23 +020054 * The callback is set via nc_set_global_rpc_clb().
55 *
Michal Vasko1a38c862016-01-15 15:50:07 +010056 * @param[in] rpc Parsed client RPC request.
57 * @param[in] session Session the RPC arrived on.
58 * @return Server reply. If NULL, an operation-failed error will be sent to the client.
59 */
Michal Vasko05ba9df2016-01-13 14:40:27 +010060typedef struct nc_server_reply *(*nc_rpc_clb)(struct lyd_node *rpc, struct nc_session *session);
61
Michal Vasko1a38c862016-01-15 15:50:07 +010062/**
Michal Vasko7b096242016-01-29 15:55:10 +010063 * @brief Set the termination reason for a session. Use only in #nc_rpc_clb callbacks.
Michal Vasko1a38c862016-01-15 15:50:07 +010064 *
65 * @param[in] session Session to modify.
66 * @param[in] reason Reason of termination.
67 */
68void nc_session_set_term_reason(struct nc_session *session, NC_SESSION_TERM_REASON reason);
69
70/**
Michal Vasko142cfea2017-08-07 10:12:11 +020071 * @brief Set the session-id of the session responsible for this session's termination.
72 *
73 * @param[in] session Session to modify. Must have term_reason set to #NC_SESSION_TERM_KILLED.
74 * @param[in] sid SID of the killing session.
75 */
76void nc_session_set_killed_by(struct nc_session *session, uint32_t sid);
77
78/**
79 * @brief Set the status of a session.
80 *
81 * @param[in] session Session to modify.
82 * @param[in] status Status of the session.
83 */
84void nc_session_set_status(struct nc_session *session, NC_STATUS status);
85
86/**
Radek Krejci6799a052017-05-19 14:23:23 +020087 * @brief Set a global nc_rpc_clb that is called if the particular RPC request is
88 * received and the private field in the corresponding RPC schema node is NULL.
89 *
Michal Vasko238b6c12021-12-14 15:14:09 +010090 * If this callback is set, the default callbacks for "get-schema" and "close-session" are not used.
91 *
Radek Krejci6799a052017-05-19 14:23:23 +020092 * @param[in] clb An user-defined nc_rpc_clb function callback, NULL to default.
93 */
94void nc_set_global_rpc_clb(nc_rpc_clb clb);
95
Michal Vasko238b6c12021-12-14 15:14:09 +010096/**
97 * @brief Default RPC callback used for "ietf-netconf-monitoring:get-schema" RPC if no other specific
98 * or global callback is set.
99 *
100 * @param[in] rpc Received RPC.
101 * @param[in] session NC session @p rpc was received on.
102 * @return Server reply.
103 */
104struct nc_server_reply *nc_clb_default_get_schema(struct lyd_node *rpc, struct nc_session *session);
105
106/**
107 * @brief Default RPC callback used for "ietf-netconf:close-session" RPC if no other specific
108 * or global callback is set.
109 *
110 * @param[in] rpc Received RPC.
111 * @param[in] session NC session @p rpc was received on.
112 * @return Server reply.
113 */
114struct nc_server_reply *nc_clb_default_close_session(struct lyd_node *rpc, struct nc_session *session);
115
Michal Vasko4e6d3242021-05-26 09:13:24 +0200116/** @} Server Session */
Radek Krejci6799a052017-05-19 14:23:23 +0200117
118/**
119 * @addtogroup server
120 * @{
121 */
122
123/**
Michal Vasko93224072021-11-09 12:14:28 +0100124 * @brief Initialize libssh and/or libssl/libcrypto and the server.
Michal Vasko1a38c862016-01-15 15:50:07 +0100125 *
Michal Vasko93224072021-11-09 12:14:28 +0100126 * Must be called before other nc_server* functions.
Michal Vasko1a38c862016-01-15 15:50:07 +0100127 *
Michal Vasko1a38c862016-01-15 15:50:07 +0100128 * @return 0 on success, -1 on error.
129 */
Michal Vasko93224072021-11-09 12:14:28 +0100130int nc_server_init(void);
Michal Vasko086311b2016-01-08 09:53:11 +0100131
Michal Vasko1a38c862016-01-15 15:50:07 +0100132/**
Michal Vaskoa7b8ca52016-03-01 12:09:29 +0100133 * @brief Destroy any dynamically allocated libssh and/or libssl/libcrypto and
134 * server resources.
Michal Vaskob48aa812016-01-18 14:13:09 +0100135 */
136void nc_server_destroy(void);
137
138/**
Michal Vasko1a38c862016-01-15 15:50:07 +0100139 * @brief Set the with-defaults capability extra parameters.
140 *
141 * For the capability to be actually advertised, the server context must also
142 * include the ietf-netconf-with-defaults model.
143 *
144 * Changing this option has the same ill effects as changing capabilities while
145 * sessions are already established.
146 *
147 * @param[in] basic_mode basic-mode with-defaults parameter.
148 * @param[in] also_supported NC_WD_MODE bit array, also-supported with-defaults
149 * parameter.
150 * @return 0 on success, -1 on error.
151 */
Michal Vasko086311b2016-01-08 09:53:11 +0100152int nc_server_set_capab_withdefaults(NC_WD_MODE basic_mode, int also_supported);
153
Michal Vasko1a38c862016-01-15 15:50:07 +0100154/**
Michal Vasko55f03972016-04-13 08:56:01 +0200155 * @brief Get with-defaults capability extra parameters.
156 *
157 * At least one argument must be non-NULL.
158 *
159 * @param[in,out] basic_mode basic-mode parameter.
160 * @param[in,out] also_supported also-supported parameter.
161 */
162void nc_server_get_capab_withdefaults(NC_WD_MODE *basic_mode, int *also_supported);
163
164/**
Radek Krejci658782b2016-12-04 22:04:55 +0100165 * @brief Set capability of the server.
Michal Vasko1a38c862016-01-15 15:50:07 +0100166 *
Radek Krejci658782b2016-12-04 22:04:55 +0100167 * Capability can be used when some behavior or extension of the server is not defined
168 * as a YANG module. The provided value will be advertised in the server's \<hello\>
169 * messages. Note, that libnetconf only checks that the provided value is non-empty
170 * string.
Michal Vasko1a38c862016-01-15 15:50:07 +0100171 *
Michal Vasko50d2a5c2017-02-14 10:29:49 +0100172 * @param[in] value Capability string to be advertised in server's \<hello\> messages.
Michal Vasko1a38c862016-01-15 15:50:07 +0100173 */
Radek Krejci658782b2016-12-04 22:04:55 +0100174int nc_server_set_capability(const char *value);
Michal Vasko55f03972016-04-13 08:56:01 +0200175
176/**
Michal Vasko1440a742021-03-31 11:11:03 +0200177 * @brief Set the callback for getting yang-library capability identifier. If none is set, libyang context change count is used.
178 *
179 * @param[in] content_id_clb Callback that should return the yang-library content identifier.
Michal Vaskoc446a382021-06-18 08:54:05 +0200180 * @param[in] user_data Optional arbitrary user data that will be passed to @p content_id_clb.
181 * @param[in] free_user_data Optional callback that will be called during cleanup to free any @p user_data.
Michal Vasko1440a742021-03-31 11:11:03 +0200182 */
183void nc_server_set_content_id_clb(char *(*content_id_clb)(void *user_data), void *user_data,
184 void (*free_user_data)(void *user_data));
185
186/**
Michal Vasko1a38c862016-01-15 15:50:07 +0100187 * @brief Set server timeout for receiving a hello message.
188 *
189 * @param[in] hello_timeout Hello message timeout. 0 for infinite waiting.
190 */
191void nc_server_set_hello_timeout(uint16_t hello_timeout);
Michal Vasko086311b2016-01-08 09:53:11 +0100192
Michal Vasko1a38c862016-01-15 15:50:07 +0100193/**
Michal Vasko55f03972016-04-13 08:56:01 +0200194 * @brief get server timeout for receiving a hello message.
195 *
196 * @return Hello message timeout, 0 is infinite.
197 */
198uint16_t nc_server_get_hello_timeout(void);
199
200/**
Michal Vasko1a38c862016-01-15 15:50:07 +0100201 * @brief Set server timeout for dropping an idle session.
202 *
203 * @param[in] idle_timeout Idle session timeout. 0 to never drop a session
Michal Vaskof0537d82016-01-29 14:42:38 +0100204 * because of inactivity.
Michal Vasko1a38c862016-01-15 15:50:07 +0100205 */
206void nc_server_set_idle_timeout(uint16_t idle_timeout);
Michal Vasko086311b2016-01-08 09:53:11 +0100207
Michal Vasko1a38c862016-01-15 15:50:07 +0100208/**
Michal Vasko55f03972016-04-13 08:56:01 +0200209 * @brief Get server timeout for dropping an idle session.
210 *
211 * @return Idle session timeout, 0 for for never dropping
212 * a session because of inactivity.
213 */
214uint16_t nc_server_get_idle_timeout(void);
215
216/**
Radek Krejci24a18412018-05-16 15:09:10 +0200217 * @brief Get all the server capabilities including all the schemas.
Michal Vasko4ffa3b22016-05-24 16:36:25 +0200218 *
219 * A few capabilities (with-defaults, interleave) depend on the current
220 * server options.
221 *
222 * @param[in] ctx Context to read most capabilities from.
Michal Vasko93224072021-11-09 12:14:28 +0100223 * @return Array of capabilities, NULL on error.
Michal Vasko4ffa3b22016-05-24 16:36:25 +0200224 */
Michal Vasko93224072021-11-09 12:14:28 +0100225char **nc_server_get_cpblts(const struct ly_ctx *ctx);
Michal Vasko4ffa3b22016-05-24 16:36:25 +0200226
Radek Krejci24a18412018-05-16 15:09:10 +0200227/**
228 * @brief Get the server capabilities including the schemas with the specified YANG version.
229 *
230 * A few capabilities (with-defaults, interleave) depend on the current
231 * server options.
232 *
233 * @param[in] ctx Context to read most capabilities from.
234 * @param[in] version YANG version of the schemas to be included in result, with
235 * LYS_VERSION_UNDEF the result is the same as from nc_server_get_cpblts().
Michal Vasko93224072021-11-09 12:14:28 +0100236 * @return Array of capabilities, NULL on error.
Radek Krejci24a18412018-05-16 15:09:10 +0200237 */
Michal Vasko93224072021-11-09 12:14:28 +0100238char **nc_server_get_cpblts_version(const struct ly_ctx *ctx, LYS_VERSION version);
Radek Krejci24a18412018-05-16 15:09:10 +0200239
Michal Vasko1440a742021-03-31 11:11:03 +0200240/** @} Server */
Radek Krejci6799a052017-05-19 14:23:23 +0200241
242/**
243 * @addtogroup server_session
244 * @{
245 */
246
Michal Vasko4ffa3b22016-05-24 16:36:25 +0200247/**
Michal Vasko1a38c862016-01-15 15:50:07 +0100248 * @brief Accept a new session on a pre-established transport session.
249 *
Michal Vasko93224072021-11-09 12:14:28 +0100250 * For detailed description, look at ::nc_accept().
251 *
Michal Vasko1a38c862016-01-15 15:50:07 +0100252 * @param[in] fdin File descriptor to read (unencrypted) XML data from.
253 * @param[in] fdout File descriptor to write (unencrypted) XML data to.
254 * @param[in] username NETCONF username as provided by the transport protocol.
Michal Vasko93224072021-11-09 12:14:28 +0100255 * @param[in] ctx Context for the session to use.
Michal Vasko1a38c862016-01-15 15:50:07 +0100256 * @param[out] session New session on success.
Michal Vasko71090fc2016-05-24 16:37:28 +0200257 * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message
258 * parsing fail, NC_MSG_WOULDBLOCK on timeout, NC_MSG_ERROR on other errors.
Michal Vasko1a38c862016-01-15 15:50:07 +0100259 */
Michal Vasko93224072021-11-09 12:14:28 +0100260NC_MSG_TYPE nc_accept_inout(int fdin, int fdout, const char *username, const struct ly_ctx *ctx,
261 struct nc_session **session);
Michal Vasko086311b2016-01-08 09:53:11 +0100262
Michal Vasko1a38c862016-01-15 15:50:07 +0100263/**
264 * @brief Create an empty structure for polling sessions.
265 *
266 * @return Empty pollsession structure, NULL on error.
267 */
Michal Vasko05ba9df2016-01-13 14:40:27 +0100268struct nc_pollsession *nc_ps_new(void);
Michal Vaskofb89d772016-01-08 12:25:35 +0100269
Michal Vasko1a38c862016-01-15 15:50:07 +0100270/**
271 * @brief Free a pollsession structure.
272 *
Michal Vaskoc446a382021-06-18 08:54:05 +0200273 * !IMPORTANT! Make sure that @p ps is not accessible (is not used)
Michal Vasko01082bf2016-04-07 10:44:21 +0200274 * by any thread before and after this call!
275 *
Michal Vasko1a38c862016-01-15 15:50:07 +0100276 * @param[in] ps Pollsession structure to free.
277 */
Michal Vasko05ba9df2016-01-13 14:40:27 +0100278void nc_ps_free(struct nc_pollsession *ps);
Michal Vaskofb89d772016-01-08 12:25:35 +0100279
Michal Vasko1a38c862016-01-15 15:50:07 +0100280/**
281 * @brief Add a session to a pollsession structure.
282 *
283 * @param[in] ps Pollsession structure to modify.
Michal Vaskoc446a382021-06-18 08:54:05 +0200284 * @param[in] session Session to add to @p ps.
Michal Vasko1a38c862016-01-15 15:50:07 +0100285 * @return 0 on success, -1 on error.
286 */
Michal Vasko05ba9df2016-01-13 14:40:27 +0100287int nc_ps_add_session(struct nc_pollsession *ps, struct nc_session *session);
Michal Vaskofb89d772016-01-08 12:25:35 +0100288
Michal Vasko1a38c862016-01-15 15:50:07 +0100289/**
290 * @brief Remove a session from a pollsession structure.
291 *
292 * @param[in] ps Pollsession structure to modify.
Michal Vaskoc446a382021-06-18 08:54:05 +0200293 * @param[in] session Session to remove from @p ps.
Michal Vaskof0537d82016-01-29 14:42:38 +0100294 * @return 0 on success, -1 on not found.
Michal Vasko1a38c862016-01-15 15:50:07 +0100295 */
Michal Vasko05ba9df2016-01-13 14:40:27 +0100296int nc_ps_del_session(struct nc_pollsession *ps, struct nc_session *session);
297
Michal Vasko1a38c862016-01-15 15:50:07 +0100298/**
Michal Vaskoe1ee05b2017-03-21 10:10:18 +0100299 * @brief Get a session from a pollsession structure matching the session ID.
300 *
301 * @param[in] ps Pollsession structure to read from.
Michal Vasko4871c9d2017-10-09 14:48:39 +0200302 * @param[in] idx Index of the session.
303 * @return Session on index, NULL if out-of-bounds.
Michal Vaskoe1ee05b2017-03-21 10:10:18 +0100304 */
Michal Vasko4871c9d2017-10-09 14:48:39 +0200305struct nc_session *nc_ps_get_session(const struct nc_pollsession *ps, uint16_t idx);
Michal Vaskoe1ee05b2017-03-21 10:10:18 +0100306
307/**
Michal Vasko3ec3b112022-07-21 12:32:33 +0200308 * @brief Callback for finding a session in a pollsession structure.
309 *
310 * @param[in] session Considered NETCONF session.
311 * @param[in] cb_data User data.
312 * @return 0 if the session does not match.
313 * @return non-zero if the session matches and should be returned.
314 */
315typedef int (*nc_ps_session_match_cb)(struct nc_session *session, void *cb_data);
316
317/**
318 * @brief Find a session in a pollsession structure using a matching callback.
319 *
320 * @param[in] ps Pollsession structure to read from.
321 * @param[in] match_cb Matching callback to use.
322 * @param[in] cb_data User data passed to @p cb.
323 * @return Found session, NULL if none matched.
324 */
325struct nc_session *nc_ps_find_session(const struct nc_pollsession *ps, nc_ps_session_match_cb match_cb, void *cb_data);
326
327/**
Michal Vasko0fdb7ac2016-03-01 09:03:12 +0100328 * @brief Learn the number of sessions in a pollsession structure.
329 *
Michal Vaskoc446a382021-06-18 08:54:05 +0200330 * Does not lock @p ps structure for efficiency.
Michal Vaskof4462fd2017-02-15 14:29:05 +0100331 *
Michal Vasko0fdb7ac2016-03-01 09:03:12 +0100332 * @param[in] ps Pollsession structure to check.
Michal Vaskoc446a382021-06-18 08:54:05 +0200333 * @return Number of sessions (even invalid ones) in @p ps, -1 on error.
Michal Vasko0fdb7ac2016-03-01 09:03:12 +0100334 */
335uint16_t nc_ps_session_count(struct nc_pollsession *ps);
336
Michal Vasko30a5d6b2017-02-15 14:29:39 +0100337#define NC_PSPOLL_NOSESSIONS 0x0001 /**< No sessions to poll. */
338#define NC_PSPOLL_TIMEOUT 0x0002 /**< Timeout elapsed. */
339#define NC_PSPOLL_RPC 0x0004 /**< RPC was correctly parsed and processed. */
340#define NC_PSPOLL_BAD_RPC 0x0008 /**< RPC was received, but failed to be parsed. */
341#define NC_PSPOLL_REPLY_ERROR 0x0010 /**< Response to the RPC was a \<rpc-reply\> of type error. */
342#define NC_PSPOLL_SESSION_TERM 0x0020 /**< Some session was terminated. */
343#define NC_PSPOLL_SESSION_ERROR 0x0040 /**< Some session was terminated incorrectly (not by a \<close-session\> or \<kill-session\> RPC). */
344#define NC_PSPOLL_ERROR 0x0080 /**< Other fatal errors (they are printed). */
Michal Vasko71090fc2016-05-24 16:37:28 +0200345
346#ifdef NC_ENABLED_SSH
Michal Vaskoc446a382021-06-18 08:54:05 +0200347# define NC_PSPOLL_SSH_MSG 0x00100 /**< SSH message received (and processed, if relevant, only with SSH support). */
348# 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 +0200349#endif
350
Michal Vasko0fdb7ac2016-03-01 09:03:12 +0100351/**
Michal Vasko1a38c862016-01-15 15:50:07 +0100352 * @brief Poll sessions and process any received RPCs.
353 *
Michal Vaskoe4300a82017-05-24 10:35:42 +0200354 * Only one event on one session is handled in one function call. If this event
355 * is a session termination (#NC_PSPOLL_SESSION_TERM returned), the session
Michal Vaskoc446a382021-06-18 08:54:05 +0200356 * should be removed from @p ps.
Michal Vasko1a38c862016-01-15 15:50:07 +0100357 *
358 * @param[in] ps Pollsession structure to use.
Michal Vasko11d142a2016-01-19 15:58:24 +0100359 * @param[in] timeout Poll timeout in milliseconds. 0 for non-blocking call, -1 for
Michal Vasko96830e32016-02-01 10:54:18 +0100360 * infinite waiting.
Michal Vasko71090fc2016-05-24 16:37:28 +0200361 * @param[in] session Session that was processed and that specific return bits concern.
362 * Can be NULL.
Michal Vaskoade892d2017-02-22 13:40:35 +0100363 * @return Bitfield of NC_PSPOLL_* macros.
Michal Vasko1a38c862016-01-15 15:50:07 +0100364 */
Michal Vasko71090fc2016-05-24 16:37:28 +0200365int nc_ps_poll(struct nc_pollsession *ps, int timeout, struct nc_session **session);
Michal Vasko086311b2016-01-08 09:53:11 +0100366
Michal Vasko11d142a2016-01-19 15:58:24 +0100367/**
Michal Vaskocad3ac42016-03-01 09:06:01 +0100368 * @brief Remove sessions from a pollsession structure and
369 * call nc_session_free() on them.
Michal Vaskod09eae62016-02-01 10:32:52 +0100370 *
Michal Vaskoc446a382021-06-18 08:54:05 +0200371 * 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 +0100372 *
373 * @param[in] ps Pollsession structure to clear.
Michal Vaskocad3ac42016-03-01 09:06:01 +0100374 * @param[in] all Whether to free all sessions, or only the invalid ones.
Michal Vaskoe1a64ec2016-03-01 12:21:58 +0100375 * @param[in] data_free Session user data destructor.
Michal Vaskod09eae62016-02-01 10:32:52 +0100376 */
Michal Vaskoe1a64ec2016-03-01 12:21:58 +0100377void nc_ps_clear(struct nc_pollsession *ps, int all, void (*data_free)(void *));
Michal Vaskod09eae62016-02-01 10:32:52 +0100378
Michal Vasko1440a742021-03-31 11:11:03 +0200379/** @} Server Session */
Radek Krejci6799a052017-05-19 14:23:23 +0200380
381/**
382 * @addtogroup server
383 * @{
384 */
385
Michal Vasko1a38c862016-01-15 15:50:07 +0100386/**
Michal Vaskoe2713da2016-08-22 16:06:40 +0200387 * @brief Add a new endpoint.
388 *
389 * Before the endpoint can accept any connections, its address and port must
Radek Krejci6799a052017-05-19 14:23:23 +0200390 * be set via nc_server_endpt_set_address() and nc_server_endpt_set_port().
Michal Vaskoe2713da2016-08-22 16:06:40 +0200391 *
392 * @param[in] name Arbitrary unique endpoint name.
Michal Vasko2e6defd2016-10-07 15:48:15 +0200393 * @param[in] ti Transport protocol to use.
Michal Vaskoe2713da2016-08-22 16:06:40 +0200394 * @return 0 on success, -1 on error.
395 */
Michal Vasko2e6defd2016-10-07 15:48:15 +0200396int nc_server_add_endpt(const char *name, NC_TRANSPORT_IMPL ti);
Michal Vaskoe2713da2016-08-22 16:06:40 +0200397
398/**
399 * @brief Stop listening on and remove an endpoint.
400 *
401 * @param[in] name Endpoint name. NULL matches all endpoints.
Michal Vasko59050372016-11-22 14:33:55 +0100402 * @param[in] ti Endpoint transport protocol. NULL matches any protocol.
Michal Vaskoc446a382021-06-18 08:54:05 +0200403 * Redundant to set if @p name is set, endpoint names are
Michal Vasko59050372016-11-22 14:33:55 +0100404 * unique disregarding their protocol.
Michal Vaskoe2713da2016-08-22 16:06:40 +0200405 * @return 0 on success, -1 on not finding any match.
406 */
Michal Vasko59050372016-11-22 14:33:55 +0100407int nc_server_del_endpt(const char *name, NC_TRANSPORT_IMPL ti);
Michal Vaskoe2713da2016-08-22 16:06:40 +0200408
409/**
Michal Vaskoe8e07702017-03-15 10:19:30 +0100410 * @brief Get the number of currently configured listening endpoints.
411 * Note that an ednpoint without address and/or port will be included
412 * even though it is not, in fact, listening.
413 *
414 * @return Number of added listening endpoints.
415 */
416int nc_server_endpt_count(void);
417
418/**
Michal Vasko1b5973e2020-01-30 16:05:46 +0100419 * @brief Check if an endpoint exists.
420 *
421 * @param[in] name Endpoint name.
422 * @return 0 if does not exists, non-zero otherwise.
423 */
424int nc_server_is_endpt(const char *name);
425
426/**
Michal Vasko2e6defd2016-10-07 15:48:15 +0200427 * @brief Change endpoint listening address.
428 *
429 * On error the previous listening socket (if any) is left untouched.
430 *
431 * @param[in] endpt_name Existing endpoint name.
432 * @param[in] address New listening address.
433 * @return 0 on success, -1 on error.
434 */
435int nc_server_endpt_set_address(const char *endpt_name, const char *address);
436
Michal Vaskob83a3fa2021-05-26 09:53:42 +0200437#if defined (NC_ENABLED_SSH) || defined (NC_ENABLED_TLS)
Michal Vasko946cacb2020-08-12 11:18:08 +0200438
Michal Vasko2e6defd2016-10-07 15:48:15 +0200439/**
440 * @brief Change endpoint listening port.
441 *
Michal Vasko946cacb2020-08-12 11:18:08 +0200442 * This is only valid on SSH/TLS transport endpoint.
Michal Vasko2e6defd2016-10-07 15:48:15 +0200443 * On error the previous listening socket (if any) is left untouched.
444 *
445 * @param[in] endpt_name Existing endpoint name.
446 * @param[in] port New listening port.
447 * @return 0 on success, -1 on error.
448 */
449int nc_server_endpt_set_port(const char *endpt_name, uint16_t port);
Michal Vasko9e036d52016-01-08 10:49:26 +0100450
Michal Vasko946cacb2020-08-12 11:18:08 +0200451#endif
452
Olivier Matzac7fa2f2018-10-11 10:02:04 +0200453/**
454 * @brief Change endpoint permissions.
455 *
Michal Vasko946cacb2020-08-12 11:18:08 +0200456 * This is only valid on UNIX transport endpoint.
Olivier Matzac7fa2f2018-10-11 10:02:04 +0200457 * On error the previous listening socket (if any) is left untouched.
458 *
459 * @param[in] endpt_name Existing endpoint name.
460 * @param[in] mode New mode, -1 to use default.
461 * @param[in] uid New uid, -1 to use default.
462 * @param[in] gid New gid, -1 to use default.
463 * @return 0 on success, -1 on error.
464 */
465int nc_server_endpt_set_perms(const char *endpt_name, mode_t mode, uid_t uid, gid_t gid);
466
Michal Vaskoe49a15f2019-05-27 14:18:36 +0200467/**
468 * @brief Change endpoint keepalives state. Affects only new connections.
469 *
470 * @param[in] endpt_name Existing endpoint name.
471 * @param[in] enable Whether to enable or disable keepalives.
472 * @return 0 on success, -1 on error.
473 */
474int nc_server_endpt_enable_keepalives(const char *endpt_name, int enable);
475
476/**
477 * @brief Change endpoint keepalives parameters. Affects only new connections.
478 *
479 * @param[in] endpt_name Existing endpoint name.
480 * @param[in] idle_time Keepalive idle time in seconds, 1 by default, -1 to keep previous value.
481 * @param[in] max_probes Keepalive max probes sent, 10 by default, -1 to keep previous value.
482 * @param[in] probe_interval Keepalive probe interval in seconds, 5 by default, -1 to keep previous value.
483 * @return 0 on success, -1 on error.
484 */
485int nc_server_endpt_set_keepalives(const char *endpt_name, int idle_time, int max_probes, int probe_interval);
486
Michal Vasko1440a742021-03-31 11:11:03 +0200487/** @} Server */
Radek Krejci6799a052017-05-19 14:23:23 +0200488
489/**
490 * @addtogroup server_session
Michal Vasko4e6d3242021-05-26 09:13:24 +0200491 * @{
Radek Krejci6799a052017-05-19 14:23:23 +0200492 */
493
Michal Vasko1a38c862016-01-15 15:50:07 +0100494/**
Michal Vasko3031aae2016-01-27 16:07:18 +0100495 * @brief Accept new sessions on all the listening endpoints.
Michal Vasko1a38c862016-01-15 15:50:07 +0100496 *
Michal Vaskob70c8b82017-03-17 09:09:29 +0100497 * Once a new (TCP/IP) conection is established a different (quite long) timeout
498 * is used for waiting for transport-related data, which means this call can block
Michal Vaskoc446a382021-06-18 08:54:05 +0200499 * for much longer that @p timeout, but only with slow/faulty/malicious clients.
Michal Vaskob70c8b82017-03-17 09:09:29 +0100500 *
Michal Vasko93224072021-11-09 12:14:28 +0100501 * Server capabilities are generated based on the content of @p ctx. The context must
502 * not be destroyed before the accepted NETCONF session is freed.
503 *
504 * Supported RPCs of models in the context are expected to have their callback
505 * in the corresponding RPC schema node set to a nc_rpc_clb function callback using ::nc_set_rpc_callback().
506 * This callback is called by ::nc_ps_poll() if the particular RPC request is
507 * received. Callbacks for ietf-netconf:get-schema (supporting YANG and YIN format
508 * only) and ietf-netconf:close-session are set internally if left unset.
509 *
Michal Vasko11d142a2016-01-19 15:58:24 +0100510 * @param[in] timeout Timeout for receiving a new connection in milliseconds, 0 for
Michal Vasko93224072021-11-09 12:14:28 +0100511 * non-blocking call, -1 for infinite waiting.
512 * @param[in] ctx Context for the session to use.
Michal Vasko96164bf2016-01-21 15:41:58 +0100513 * @param[out] session New session.
Michal Vasko71090fc2016-05-24 16:37:28 +0200514 * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message
515 * parsing fail, NC_MSG_WOULDBLOCK on timeout, NC_MSG_ERROR on other errors.
Michal Vasko1a38c862016-01-15 15:50:07 +0100516 */
Michal Vasko93224072021-11-09 12:14:28 +0100517NC_MSG_TYPE nc_accept(int timeout, const struct ly_ctx *ctx, struct nc_session **session);
Michal Vasko9e036d52016-01-08 10:49:26 +0100518
Radek Krejci53691be2016-02-22 13:58:37 +0100519#ifdef NC_ENABLED_SSH
Michal Vasko086311b2016-01-08 09:53:11 +0100520
Michal Vasko1a38c862016-01-15 15:50:07 +0100521/**
Michal Vaskoc446a382021-06-18 08:54:05 +0200522 * @brief Accept a new NETCONF session on an SSH session of a running NETCONF @p orig_session.
523 * Call this function only when nc_ps_poll() returns #NC_PSPOLL_SSH_CHANNEL on @p orig_session.
Michal Vasko71090fc2016-05-24 16:37:28 +0200524 *
525 * @param[in] orig_session Session that has a new SSH channel ready.
526 * @param[out] session New session.
527 * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message
528 * parsing fail, NC_MSG_WOULDBLOCK on timeout, NC_MSG_ERROR on other errors.
529 */
530NC_MSG_TYPE nc_session_accept_ssh_channel(struct nc_session *orig_session, struct nc_session **session);
531
532/**
Michal Vasko96164bf2016-01-21 15:41:58 +0100533 * @brief Accept a new NETCONF session on an SSH session of a running NETCONF session
Michal Vaskoc446a382021-06-18 08:54:05 +0200534 * that was polled in @p ps. Call this function only when nc_ps_poll() on @p ps returns #NC_PSPOLL_SSH_CHANNEL.
535 * The new session is only returned in @p session, it is not added to @p ps.
Michal Vasko96164bf2016-01-21 15:41:58 +0100536 *
537 * @param[in] ps Unmodified pollsession structure from the previous nc_ps_poll() call.
538 * @param[out] session New session.
Michal Vasko71090fc2016-05-24 16:37:28 +0200539 * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message
540 * parsing fail, NC_MSG_WOULDBLOCK on timeout, NC_MSG_ERROR on other errors.
Michal Vasko96164bf2016-01-21 15:41:58 +0100541 */
Michal Vasko71090fc2016-05-24 16:37:28 +0200542NC_MSG_TYPE nc_ps_accept_ssh_channel(struct nc_pollsession *ps, struct nc_session **session);
Michal Vasko96164bf2016-01-21 15:41:58 +0100543
Michal Vasko1440a742021-03-31 11:11:03 +0200544/** @} Server Session */
Radek Krejci6799a052017-05-19 14:23:23 +0200545
546/**
547 * @defgroup server_ssh Server SSH
548 * @ingroup server
549 *
550 * @brief Server-side settings for SSH connections.
551 * @{
552 */
553
Michal Vasko96164bf2016-01-21 15:41:58 +0100554/**
Michal Vasko17dfda92016-12-01 14:06:16 +0100555 * @brief Add an authorized client SSH public key. This public key can be used for
Michal Vaskoe49a15f2019-05-27 14:18:36 +0200556 * publickey authentication (for any SSH connection, even Call Home) afterwards.
Michal Vaskoda514772016-02-01 11:32:01 +0100557 *
Michal Vasko17dfda92016-12-01 14:06:16 +0100558 * @param[in] pubkey_base64 Authorized public key binary content encoded in base64.
559 * @param[in] type Authorized public key SSH type.
560 * @param[in] username Username that the client with the public key must use.
Michal Vaskoda514772016-02-01 11:32:01 +0100561 * @return 0 on success, -1 on error.
562 */
Michal Vasko17dfda92016-12-01 14:06:16 +0100563int nc_server_ssh_add_authkey(const char *pubkey_base64, NC_SSH_KEY_TYPE type, const char *username);
Michal Vaskoda514772016-02-01 11:32:01 +0100564
565/**
Michal Vasko17dfda92016-12-01 14:06:16 +0100566 * @brief Add an authorized client SSH public key. This public key can be used for
567 * publickey authentication (for any SSH connection, even Call Home) afterwards.
Michal Vaskoda514772016-02-01 11:32:01 +0100568 *
Michal Vasko17dfda92016-12-01 14:06:16 +0100569 * @param[in] pubkey_path Path to the public key.
570 * @param[in] username Username that the client with the public key must use.
Michal Vaskoda514772016-02-01 11:32:01 +0100571 * @return 0 on success, -1 on error.
572 */
Michal Vasko17dfda92016-12-01 14:06:16 +0100573int nc_server_ssh_add_authkey_path(const char *pubkey_path, const char *username);
Michal Vaskoda514772016-02-01 11:32:01 +0100574
575/**
Michal Vasko17dfda92016-12-01 14:06:16 +0100576 * @brief Remove an authorized client SSH public key.
Michal Vasko1a38c862016-01-15 15:50:07 +0100577 *
Michal Vasko17dfda92016-12-01 14:06:16 +0100578 * @param[in] pubkey_path Path to an authorized public key. NULL matches all the keys.
579 * @param[in] pubkey_base64 Authorized public key content. NULL matches any key.
580 * @param[in] type Authorized public key type. 0 matches all types.
581 * @param[in] username Username for an authorized public key. NULL matches all the usernames.
582 * @return 0 on success, -1 on not finding any match.
Michal Vasko1a38c862016-01-15 15:50:07 +0100583 */
Michal Vasko17dfda92016-12-01 14:06:16 +0100584int 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 +0200585 const char *username);
Michal Vaskoe2713da2016-08-22 16:06:40 +0200586
587/**
Michal Vaskoebba7602018-03-23 13:14:08 +0100588 * @brief Set the callback for SSH password authentication. If none is set, local system users are used.
589 *
Michal Vaskoc446a382021-06-18 08:54:05 +0200590 * @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 +0200591 * Zero return indicates success, non-zero an error.
Michal Vaskoc446a382021-06-18 08:54:05 +0200592 * @param[in] user_data Optional arbitrary user data that will be passed to @p passwd_auth_clb.
593 * @param[in] free_user_data Optional callback that will be called during cleanup to free any @p user_data.
Michal Vaskoebba7602018-03-23 13:14:08 +0100594 */
595void 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 +0200596 void *user_data), void *user_data, void (*free_user_data)(void *user_data));
Michal Vaskoebba7602018-03-23 13:14:08 +0100597
598/**
bhart3bc2f582018-06-05 12:40:32 -0500599 * @brief Set the callback for SSH interactive authentication. If none is set, local system users are used.
600 *
601 * @param[in] interactive_auth_clb Callback that should authenticate the user.
Michal Vasko1440a742021-03-31 11:11:03 +0200602 * Zero return indicates success, non-zero an error.
roman41a11e42022-06-22 09:27:08 +0200603 * @param[in] user_data Optional arbitrary user data that will be passed to @p interactive_auth_clb.
Michal Vaskoc446a382021-06-18 08:54:05 +0200604 * @param[in] free_user_data Optional callback that will be called during cleanup to free any @p user_data.
bhart3bc2f582018-06-05 12:40:32 -0500605 */
Michal Vasko1440a742021-03-31 11:11:03 +0200606void nc_server_ssh_set_interactive_auth_clb(int (*interactive_auth_clb)(const struct nc_session *session,
607 const ssh_message msg, void *user_data), void *user_data, void (*free_user_data)(void *user_data));
bhart3bc2f582018-06-05 12:40:32 -0500608
609/**
roman41a11e42022-06-22 09:27:08 +0200610 * @brief Set the name and a path to a PAM configuration file.
611 *
612 * @p conf_name has to be set via this function prior to using keyboard-interactive authentication method.
613 *
614 * @param[in] conf_name Name of the configuration file.
615 * @param[in] conf_dir Optional. The absolute path to the directory in which the configuration file
616 * with the name @p conf_name is located. A newer version (>= 1.4) of PAM library is required to be
617 * able to specify the path. If NULL is passed,
618 * then the PAM's system directories will be searched (usually /etc/pam.d/).
619 * @return 0 on success, -1 on error.
620 */
621int nc_server_ssh_set_pam_conf_path(const char *conf_name, const char *conf_dir);
622
623/**
bhart3bc2f582018-06-05 12:40:32 -0500624 * @brief Set the callback for SSH public key authentication. If none is set, local system users are used.
625 *
626 * @param[in] pubkey_auth_clb Callback that should authenticate the user.
Michal Vasko1440a742021-03-31 11:11:03 +0200627 * Zero return indicates success, non-zero an error.
roman41a11e42022-06-22 09:27:08 +0200628 * @param[in] user_data Optional arbitrary user data that will be passed to @p pubkey_auth_clb.
Michal Vaskoc446a382021-06-18 08:54:05 +0200629 * @param[in] free_user_data Optional callback that will be called during cleanup to free any @p user_data.
bhart3bc2f582018-06-05 12:40:32 -0500630 */
Michal Vaskob83a3fa2021-05-26 09:53:42 +0200631void 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 +0200632 void *user_data), void *user_data, void (*free_user_data)(void *user_data));
bhart3bc2f582018-06-05 12:40:32 -0500633
634/**
Michal Vasko4c1fb492017-01-30 14:31:07 +0100635 * @brief Set the callback for retrieving host keys. Any RSA, DSA, and ECDSA keys can be added. However,
636 * a maximum of one key of each type will be used during SSH authentication, later keys replacing
637 * the earlier ones.
638 *
639 * @param[in] hostkey_clb Callback that should return the key itself. Zero return indicates success, non-zero
Michal Vaskoc446a382021-06-18 08:54:05 +0200640 * an error. On success exactly ONE of @p privkey_path or @p privkey_data is expected
Michal Vasko4c1fb492017-01-30 14:31:07 +0100641 * to be set. The one set will be freed.
Michal Vaskoc446a382021-06-18 08:54:05 +0200642 * - @p privkey_path expects a PEM file,
643 * - @p privkey_data expects a base-64 encoded ANS.1 DER data,
644 * - @p privkey_type type of the key in @p privkey_data. Use ::NC_SSH_KEY_UNKNOWN for
Michal Vasko68177b72020-04-27 15:46:53 +0200645 * PKCS#8 key that includes the information about the key in its data.
Michal Vaskoc446a382021-06-18 08:54:05 +0200646 * @param[in] user_data Optional arbitrary user data that will be passed to @p hostkey_clb.
647 * @param[in] free_user_data Optional callback that will be called during cleanup to free any @p user_data.
Michal Vasko4c1fb492017-01-30 14:31:07 +0100648 */
649void 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 +0200650 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 +0100651
652/**
Michal Vaskoddce1212019-05-24 09:58:49 +0200653 * @brief Add endpoint SSH host keys the server will identify itself with. Only the name is set, the key itself
654 * wil be retrieved using a callback.
655 *
656 * @param[in] endpt_name Existing endpoint name.
657 * @param[in] name Arbitrary name of the host key.
658 * @param[in] idx Optional index where to add the key. -1 adds at the end.
659 * @return 0 on success, -1 on error.
660 */
661int nc_server_ssh_endpt_add_hostkey(const char *endpt_name, const char *name, int16_t idx);
662
663/**
Michal Vasko4c1fb492017-01-30 14:31:07 +0100664 * @brief Delete endpoint SSH host key. Their order is preserved.
Michal Vaskoe2713da2016-08-22 16:06:40 +0200665 *
666 * @param[in] endpt_name Existing endpoint name.
Michal Vaskoc446a382021-06-18 08:54:05 +0200667 * @param[in] name Name of the host key. NULL matches all the keys, but if @p idx != -1 then this must be NULL.
668 * @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 +0200669 * @return 0 on success, -1 on error.
670 */
Michal Vasko7d255882017-02-09 13:35:08 +0100671int nc_server_ssh_endpt_del_hostkey(const char *endpt_name, const char *name, int16_t idx);
Michal Vasko086311b2016-01-08 09:53:11 +0100672
Michal Vasko1a38c862016-01-15 15:50:07 +0100673/**
Michal Vaskofbfe8b62017-02-14 10:22:30 +0100674 * @brief Move endpoint SSH host key.
675 *
676 * @param[in] endpt_name Exisitng endpoint name.
677 * @param[in] key_mov Name of the host key that will be moved.
Michal Vaskoc446a382021-06-18 08:54:05 +0200678 * @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.
roman41a11e42022-06-22 09:27:08 +0200679 * @return 0 on success, -1 on error.
Michal Vaskofbfe8b62017-02-14 10:22:30 +0100680 */
681int nc_server_ssh_endpt_mov_hostkey(const char *endpt_name, const char *key_mov, const char *key_after);
682
683/**
684 * @brief Modify endpoint SSH host key.
685 *
686 * @param[in] endpt_name Exisitng endpoint name.
687 * @param[in] name Name of an existing host key.
Michal Vaskoc446a382021-06-18 08:54:05 +0200688 * @param[in] new_name New name of the host key @p name.
roman41a11e42022-06-22 09:27:08 +0200689 * @return 0 on success, -1 on error.
Michal Vaskofbfe8b62017-02-14 10:22:30 +0100690 */
691int nc_server_ssh_endpt_mod_hostkey(const char *endpt_name, const char *name, const char *new_name);
Michal Vasko086311b2016-01-08 09:53:11 +0100692
Michal Vasko1a38c862016-01-15 15:50:07 +0100693/**
Michal Vasko3031aae2016-01-27 16:07:18 +0100694 * @brief Set endpoint accepted SSH authentication methods. All (publickey, password, interactive)
Michal Vaskof0537d82016-01-29 14:42:38 +0100695 * are supported by default.
Michal Vasko1a38c862016-01-15 15:50:07 +0100696 *
Michal Vaskoda514772016-02-01 11:32:01 +0100697 * @param[in] endpt_name Existing endpoint name.
Michal Vasko1a38c862016-01-15 15:50:07 +0100698 * @param[in] auth_methods Accepted authentication methods bit field of NC_SSH_AUTH_TYPE.
699 * @return 0 on success, -1 on error.
700 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100701int nc_server_ssh_endpt_set_auth_methods(const char *endpt_name, int auth_methods);
Michal Vasko086311b2016-01-08 09:53:11 +0100702
Michal Vasko1a38c862016-01-15 15:50:07 +0100703/**
Michal Vaskoddce1212019-05-24 09:58:49 +0200704 * @brief Get endpoint accepted SSH authentication methods.
705 *
706 * @param[in] endpt_name Existing endpoint name.
707 * @return Accepted authentication methods bit field of NC_SSH_AUTH_TYPE.
708 */
709int nc_server_ssh_endpt_get_auth_methods(const char *endpt_name);
710
711/**
Michal Vasko3031aae2016-01-27 16:07:18 +0100712 * @brief Set endpoint SSH authentication attempts of every client. 3 by default.
Michal Vasko1a38c862016-01-15 15:50:07 +0100713 *
Michal Vaskoda514772016-02-01 11:32:01 +0100714 * @param[in] endpt_name Existing endpoint name.
Michal Vasko5e6f4cc2016-01-20 13:27:44 +0100715 * @param[in] auth_attempts Failed authentication attempts before a client is dropped.
Michal Vasko1a38c862016-01-15 15:50:07 +0100716 * @return 0 on success, -1 on error.
717 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100718int nc_server_ssh_endpt_set_auth_attempts(const char *endpt_name, uint16_t auth_attempts);
Michal Vasko086311b2016-01-08 09:53:11 +0100719
Michal Vasko1a38c862016-01-15 15:50:07 +0100720/**
Michal Vaskocbad4c52019-06-27 16:30:35 +0200721 * @brief Set endpoint SSH authentication timeout. 30 seconds by default.
Michal Vasko1a38c862016-01-15 15:50:07 +0100722 *
Michal Vaskoda514772016-02-01 11:32:01 +0100723 * @param[in] endpt_name Existing endpoint name.
Michal Vasko1a38c862016-01-15 15:50:07 +0100724 * @param[in] auth_timeout Number of seconds before an unauthenticated client is dropped.
725 * @return 0 on success, -1 on error.
726 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100727int nc_server_ssh_endpt_set_auth_timeout(const char *endpt_name, uint16_t auth_timeout);
Michal Vasko086311b2016-01-08 09:53:11 +0100728
Michal Vaskoc446a382021-06-18 08:54:05 +0200729/** @} Server SSH */
Radek Krejci6799a052017-05-19 14:23:23 +0200730
Radek Krejci53691be2016-02-22 13:58:37 +0100731#endif /* NC_ENABLED_SSH */
Michal Vasko086311b2016-01-08 09:53:11 +0100732
Radek Krejci53691be2016-02-22 13:58:37 +0100733#ifdef NC_ENABLED_TLS
Michal Vasko086311b2016-01-08 09:53:11 +0100734
Michal Vasko1a38c862016-01-15 15:50:07 +0100735/**
Radek Krejci6799a052017-05-19 14:23:23 +0200736 * @defgroup server_tls Server TLS
737 * @ingroup server
738 *
739 * @brief Server-side settings for TLS connections.
740 * @{
741 */
742
743/**
Michal Vasko4c1fb492017-01-30 14:31:07 +0100744 * @brief Set the server TLS certificate. Only the name is set, the certificate itself
745 * wil be retrieved using a callback.
Michal Vaskoda514772016-02-01 11:32:01 +0100746 *
747 * @param[in] endpt_name Existing endpoint name.
Michal Vasko4c1fb492017-01-30 14:31:07 +0100748 * @param[in] name Arbitrary certificate name.
Michal Vaskoda514772016-02-01 11:32:01 +0100749 * @return 0 on success, -1 on error.
750 */
Michal Vasko4c1fb492017-01-30 14:31:07 +0100751int nc_server_tls_endpt_set_server_cert(const char *endpt_name, const char *name);
Michal Vaskoda514772016-02-01 11:32:01 +0100752
753/**
Michal Vasko4c1fb492017-01-30 14:31:07 +0100754 * @brief Set the callback for retrieving server certificate and matching private key.
Michal Vaskoda514772016-02-01 11:32:01 +0100755 *
Michal Vasko4c1fb492017-01-30 14:31:07 +0100756 * @param[in] cert_clb Callback that should return the certificate and the key itself. Zero return indicates success,
Michal Vaskoc446a382021-06-18 08:54:05 +0200757 * non-zero an error. On success exactly ONE of @p cert_path or @p cert_data and ONE of
758 * @p privkey_path and @p privkey_data is expected to be set. Those set will be freed.
759 * - @p cert_path expects a PEM file,
760 * - @p cert_data expects a base-64 encoded ASN.1 DER data,
761 * - @p privkey_path expects a PEM file,
762 * - @p privkey_data expects a base-64 encoded ANS.1 DER data,
763 * - @p privkey_type type of the key in @p privkey_data.
764 * @param[in] user_data Optional arbitrary user data that will be passed to @p cert_clb.
765 * @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 +0100766 */
Michal Vasko4c1fb492017-01-30 14:31:07 +0100767void 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 +0200768 char **privkey_path, char **privkey_data, NC_SSH_KEY_TYPE *privkey_type), void *user_data,
769 void (*free_user_data)(void *user_data));
Michal Vaskoda514772016-02-01 11:32:01 +0100770
771/**
Andrew Langefeld440b6c72018-08-27 16:26:20 -0500772 * @brief Set the callback for retrieving server certificate chain
773 *
774 * @param[in] cert_chain_clb Callback that should return all the certificates of the chain. Zero return indicates success,
Michal Vaskoc446a382021-06-18 08:54:05 +0200775 * non-zero an error. On success, @p cert_paths and @p cert_data are expected to be set or left
Andrew Langefeld440b6c72018-08-27 16:26:20 -0500776 * NULL. Both will be (deeply) freed.
Michal Vaskoc446a382021-06-18 08:54:05 +0200777 * - @p cert_paths expect an array of PEM files,
778 * - @p cert_path_count number of @p cert_paths array members,
779 * - @p cert_data expect an array of base-64 encoded ASN.1 DER cert data,
780 * - @p cert_data_count number of @p cert_data array members.
781 * @param[in] user_data Optional arbitrary user data that will be passed to @p cert_clb.
782 * @param[in] free_user_data Optional callback that will be called during cleanup to free any @p user_data.
Andrew Langefeld440b6c72018-08-27 16:26:20 -0500783 */
784void 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 +0200785 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 -0500786
787/**
Michal Vasko4c1fb492017-01-30 14:31:07 +0100788 * @brief Add a trusted certificate list. Can be both a CA or a client one. Can be
Michal Vaskofdfd9dd2016-02-29 10:18:46 +0100789 * safely used together with nc_server_tls_endpt_set_trusted_ca_paths().
Michal Vasko1a38c862016-01-15 15:50:07 +0100790 *
Michal Vaskoda514772016-02-01 11:32:01 +0100791 * @param[in] endpt_name Existing endpoint name.
Michal Vasko4c1fb492017-01-30 14:31:07 +0100792 * @param[in] name Arbitary name identifying this certificate list.
Michal Vasko1a38c862016-01-15 15:50:07 +0100793 * @return 0 on success, -1 on error.
794 */
Michal Vasko4c1fb492017-01-30 14:31:07 +0100795int nc_server_tls_endpt_add_trusted_cert_list(const char *endpt_name, const char *name);
Michal Vasko0457bb42016-01-08 15:49:13 +0100796
Michal Vasko1a38c862016-01-15 15:50:07 +0100797/**
Michal Vasko4c1fb492017-01-30 14:31:07 +0100798 * @brief Set the callback for retrieving trusted certificates.
799 *
800 * @param[in] cert_list_clb Callback that should return all the certificates of a list. Zero return indicates success,
Michal Vaskoc446a382021-06-18 08:54:05 +0200801 * non-zero an error. On success, @p cert_paths and @p cert_data are expected to be set or left
Michal Vasko4c1fb492017-01-30 14:31:07 +0100802 * NULL. Both will be (deeply) freed.
Michal Vaskoc446a382021-06-18 08:54:05 +0200803 * - @p cert_paths expect an array of PEM files,
804 * - @p cert_path_count number of @p cert_paths array members,
805 * - @p cert_data expect an array of base-64 encoded ASN.1 DER cert data,
806 * - @p cert_data_count number of @p cert_data array members.
807 * @param[in] user_data Optional arbitrary user data that will be passed to @p cert_clb.
808 * @param[in] free_user_data Optional callback that will be called during cleanup to free any @p user_data.
Michal Vasko4c1fb492017-01-30 14:31:07 +0100809 */
810void 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 +0200811 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 +0100812
813/**
814 * @brief Remove a trusted certificate.
Michal Vasko1a38c862016-01-15 15:50:07 +0100815 *
Michal Vaskoda514772016-02-01 11:32:01 +0100816 * @param[in] endpt_name Existing endpoint name.
Michal Vasko4c1fb492017-01-30 14:31:07 +0100817 * @param[in] name Name of the certificate list to delete. NULL deletes all the lists.
818 * @return 0 on success, -1 on not found.
Michal Vasko1a38c862016-01-15 15:50:07 +0100819 */
Michal Vasko4c1fb492017-01-30 14:31:07 +0100820int nc_server_tls_endpt_del_trusted_cert_list(const char *endpt_name, const char *name);
Michal Vasko0457bb42016-01-08 15:49:13 +0100821
Michal Vasko1a38c862016-01-15 15:50:07 +0100822/**
823 * @brief Set trusted Certificate Authority certificate locations. There can only be
Michal Vasko5d2ad082016-02-09 11:47:59 +0100824 * one file and one directory, they are replaced if already set. Can be safely
Michal Vaskofdfd9dd2016-02-29 10:18:46 +0100825 * used with nc_server_tls_endpt_add_trusted_cert() or its _path variant.
Michal Vasko1a38c862016-01-15 15:50:07 +0100826 *
Michal Vaskoda514772016-02-01 11:32:01 +0100827 * @param[in] endpt_name Existing endpoint name.
Michal Vasko96830e32016-02-01 10:54:18 +0100828 * @param[in] ca_file Path to a trusted CA cert store file in PEM format. Can be NULL.
829 * @param[in] ca_dir Path to a trusted CA cert store hashed directory (c_rehash utility
830 * can be used to create hashes) with PEM files. Can be NULL.
Michal Vasko1a38c862016-01-15 15:50:07 +0100831 * @return 0 on success, -1 on error.
832 */
Michal Vasko96830e32016-02-01 10:54:18 +0100833int 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 +0100834
Michal Vasko1a38c862016-01-15 15:50:07 +0100835/**
Michal Vasko1a38c862016-01-15 15:50:07 +0100836 * @brief Set Certificate Revocation List locations. There can only be one file
Michal Vaskof0537d82016-01-29 14:42:38 +0100837 * and one directory, they are replaced if already set.
Michal Vasko1a38c862016-01-15 15:50:07 +0100838 *
Michal Vaskoda514772016-02-01 11:32:01 +0100839 * @param[in] endpt_name Existing endpoint name.
Michal Vasko96830e32016-02-01 10:54:18 +0100840 * @param[in] crl_file Path to a CRL store file in PEM format. Can be NULL.
841 * @param[in] crl_dir Path to a CRL store hashed directory (c_rehash utility
842 * can be used to create hashes) with PEM files. Can be NULL.
Michal Vasko1a38c862016-01-15 15:50:07 +0100843 * @return 0 on success, -1 on error.
844 */
Michal Vasko96830e32016-02-01 10:54:18 +0100845int 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 +0100846
Michal Vasko1a38c862016-01-15 15:50:07 +0100847/**
Michal Vasko96830e32016-02-01 10:54:18 +0100848 * @brief Destroy and clean CRLs. Certificates, private keys, and CTN entries are
Michal Vaskof0537d82016-01-29 14:42:38 +0100849 * not affected.
Michal Vaskoda514772016-02-01 11:32:01 +0100850 *
851 * @param[in] endpt_name Existing endpoint name.
Michal Vasko1a38c862016-01-15 15:50:07 +0100852 */
Michal Vaskoc6b9c7b2016-01-28 11:10:08 +0100853void nc_server_tls_endpt_clear_crls(const char *endpt_name);
Michal Vasko0457bb42016-01-08 15:49:13 +0100854
Michal Vasko1a38c862016-01-15 15:50:07 +0100855/**
Michal Vasko58c22a22016-11-23 13:49:53 +0100856 * @brief Add a cert-to-name entry.
Michal Vasko1a38c862016-01-15 15:50:07 +0100857 *
Michal Vaskoc446a382021-06-18 08:54:05 +0200858 * It is possible to add an entry step-by-step, specifying first only @p ip and in later calls
859 * @p fingerprint, @p map_type, and optionally @p name spearately.
Michal Vasko1a38c862016-01-15 15:50:07 +0100860 *
Michal Vaskoda514772016-02-01 11:32:01 +0100861 * @param[in] endpt_name Existing endpoint name.
Michal Vasko3cf4aaa2017-02-01 15:03:36 +0100862 * @param[in] id Priority of the entry. It must be unique. If already exists, the entry with this id
863 * is modified.
864 * @param[in] fingerprint Matching certificate fingerprint. If NULL, kept temporarily unset.
865 * @param[in] map_type Type of username-certificate mapping. If 0, kept temporarily unset.
Michal Vaskoc446a382021-06-18 08:54:05 +0200866 * @param[in] name Specific username used only if @p map_type == NC_TLS_CTN_SPECIFED.
Michal Vasko1a38c862016-01-15 15:50:07 +0100867 * @return 0 on success, -1 on error.
868 */
Michal Vasko3a889fd2016-09-30 12:16:37 +0200869int nc_server_tls_endpt_add_ctn(const char *endpt_name, uint32_t id, const char *fingerprint,
Michal Vaskob83a3fa2021-05-26 09:53:42 +0200870 NC_TLS_CTN_MAPTYPE map_type, const char *name);
Michal Vaskoc14e3c82016-01-11 16:14:30 +0100871
Michal Vasko1a38c862016-01-15 15:50:07 +0100872/**
Michal Vasko58c22a22016-11-23 13:49:53 +0100873 * @brief Remove a cert-to-name entry.
Michal Vasko1a38c862016-01-15 15:50:07 +0100874 *
Michal Vaskoda514772016-02-01 11:32:01 +0100875 * @param[in] endpt_name Existing endpoint name.
Michal Vasko1a38c862016-01-15 15:50:07 +0100876 * @param[in] id Priority of the entry. -1 matches all the priorities.
877 * @param[in] fingerprint Fingerprint fo the entry. NULL matches all the fingerprints.
878 * @param[in] map_type Mapping type of the entry. 0 matches all the mapping types.
879 * @param[in] name Specific username for the entry. NULL matches all the usernames.
880 * @return 0 on success, -1 on not finding any match.
881 */
Michal Vasko3a889fd2016-09-30 12:16:37 +0200882int nc_server_tls_endpt_del_ctn(const char *endpt_name, int64_t id, const char *fingerprint,
Michal Vaskob83a3fa2021-05-26 09:53:42 +0200883 NC_TLS_CTN_MAPTYPE map_type, const char *name);
Michal Vasko0457bb42016-01-08 15:49:13 +0100884
Michal Vaskodf5e6af2016-11-23 13:50:56 +0100885/**
886 * @brief Get a cert-to-name entry.
887 *
888 * If a parameter is NULL, it is ignored. If its dereferenced value is NULL,
889 * it is filled and returned. If the value is set, it is used as a filter.
890 * Returns first matching entry.
891 *
892 * @param[in] endpt_name Existing endpoint name.
893 * @param[in,out] id Priority of the entry.
894 * @param[in,out] fingerprint Fingerprint fo the entry.
895 * @param[in,out] map_type Mapping type of the entry.
896 * @param[in,out] name Specific username for the entry.
897 * @return 0 on success, -1 on not finding any match.
898 */
Michal Vaskof585ac72016-11-25 15:16:38 +0100899int 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 +0200900 char **name);
Michal Vaskodf5e6af2016-11-23 13:50:56 +0100901
Michal Vasko7060bcf2016-11-28 14:48:11 +0100902/**
Michal Vasko709598e2016-11-28 14:48:32 +0100903 * @brief Get client certificate.
904 *
905 * @param[in] session Session to get the information from.
906 * @return Const session client certificate.
907 */
908const X509 *nc_session_get_client_cert(const struct nc_session *session);
909
910/**
Michal Vasko7060bcf2016-11-28 14:48:11 +0100911 * @brief Set TLS authentication additional verify callback.
912 *
913 * Server will always perform cert-to-name based on its configuration. Only after it passes
914 * and this callback is set, it is also called. It should return exactly what OpenSSL
915 * verify callback meaning 1 for success, 0 to deny the user.
916 *
917 * @param[in] verify_clb Additional user verify callback.
918 */
919void nc_server_tls_set_verify_clb(int (*verify_clb)(const struct nc_session *session));
920
Michal Vaskoc446a382021-06-18 08:54:05 +0200921/** @} Server TLS */
Radek Krejci6799a052017-05-19 14:23:23 +0200922
Radek Krejci53691be2016-02-22 13:58:37 +0100923#endif /* NC_ENABLED_TLS */
Michal Vasko086311b2016-01-08 09:53:11 +0100924
Michal Vaskof8352352016-05-24 09:11:36 +0200925/**
Radek Krejci6799a052017-05-19 14:23:23 +0200926 * @addtogroup server_session
927 * @{
928 */
929
930/**
Michal Vaskoc45ebd32016-05-25 11:17:36 +0200931 * @brief Get session start time.
Michal Vaskof8352352016-05-24 09:11:36 +0200932 *
933 * @param[in] session Session to get the information from.
Michal Vaskoc45ebd32016-05-25 11:17:36 +0200934 * @return Session start time.
Michal Vaskof8352352016-05-24 09:11:36 +0200935 */
Michal Vaskoc45ebd32016-05-25 11:17:36 +0200936time_t nc_session_get_start_time(const struct nc_session *session);
Michal Vaskof8352352016-05-24 09:11:36 +0200937
Michal Vasko3486a7c2017-03-03 13:28:07 +0100938/**
Michal Vasko71dbd772021-03-23 14:08:37 +0100939 * @brief Increase session notification subscription flag count.
940 * Supports multiple subscriptions on one session.
Michal Vasko3486a7c2017-03-03 13:28:07 +0100941 *
942 * It is used only to ignore timeouts, because they are
943 * ignored for sessions with active subscriptions.
944 *
945 * @param[in] session Session to modify.
Michal Vasko3486a7c2017-03-03 13:28:07 +0100946 */
Michal Vasko71dbd772021-03-23 14:08:37 +0100947void nc_session_inc_notif_status(struct nc_session *session);
948
949/**
950 * @brief Decrease session notification subscription flag count.
951 * Supports multiple subscriptions on one session.
952 *
953 * @param[in] session Session to modify.
954 */
955void nc_session_dec_notif_status(struct nc_session *session);
Michal Vasko3486a7c2017-03-03 13:28:07 +0100956
957/**
958 * @brief Get session notification subscription flag.
959 *
960 * @param[in] session Session to get the information from.
961 * @return 0 for no active subscription, non-zero for an active subscription.
962 */
963int nc_session_get_notif_status(const struct nc_session *session);
964
Michal Vaskoc446a382021-06-18 08:54:05 +0200965/** @} Server Session */
Radek Krejci6799a052017-05-19 14:23:23 +0200966
Michal Vaskoc09730e2019-01-17 10:07:26 +0100967#ifdef __cplusplus
968}
969#endif
970
Michal Vasko086311b2016-01-08 09:53:11 +0100971#endif /* NC_SESSION_SERVER_H_ */