blob: 0ab323f8cc0df2054fc958460600ec529bd30973 [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
roman9225e912024-04-05 12:33:09 +020027#include "netconf.h"
28#include "session.h"
29
30#ifdef NC_ENABLED_SSH_TLS
Michal Vaskoc446a382021-06-18 08:54:05 +020031# include <libssh/callbacks.h>
32# include <libssh/libssh.h>
33# include <libssh/server.h>
roman2eab4742023-06-06 10:00:26 +020034#endif /* NC_ENABLED_SSH_TLS */
bhart3bc2f582018-06-05 12:40:32 -050035
Michal Vasko1a38c862016-01-15 15:50:07 +010036/**
Radek Krejci6799a052017-05-19 14:23:23 +020037 * @defgroup server_session Server Session
38 * @ingroup server
39 *
40 * @brief Server-side NETCONF session manipulation.
41 * @{
42 */
43
44/**
Michal Vasko1a38c862016-01-15 15:50:07 +010045 * @brief Prototype of callbacks that are called if some RPCs are received.
46 *
Michal Vaskoc446a382021-06-18 08:54:05 +020047 * If @p session termination reason is changed in the callback, one last reply
Michal Vasko1a38c862016-01-15 15:50:07 +010048 * is sent and then the session is considered invalid.
49 *
Radek Krejci6799a052017-05-19 14:23:23 +020050 * The callback is set via nc_set_global_rpc_clb().
51 *
Michal Vasko1a38c862016-01-15 15:50:07 +010052 * @param[in] rpc Parsed client RPC request.
53 * @param[in] session Session the RPC arrived on.
54 * @return Server reply. If NULL, an operation-failed error will be sent to the client.
55 */
Michal Vasko05ba9df2016-01-13 14:40:27 +010056typedef struct nc_server_reply *(*nc_rpc_clb)(struct lyd_node *rpc, struct nc_session *session);
57
Michal Vasko1a38c862016-01-15 15:50:07 +010058/**
Michal Vasko7b096242016-01-29 15:55:10 +010059 * @brief Set the termination reason for a session. Use only in #nc_rpc_clb callbacks.
Michal Vasko1a38c862016-01-15 15:50:07 +010060 *
61 * @param[in] session Session to modify.
62 * @param[in] reason Reason of termination.
63 */
64void nc_session_set_term_reason(struct nc_session *session, NC_SESSION_TERM_REASON reason);
65
66/**
Michal Vasko142cfea2017-08-07 10:12:11 +020067 * @brief Set the session-id of the session responsible for this session's termination.
68 *
69 * @param[in] session Session to modify. Must have term_reason set to #NC_SESSION_TERM_KILLED.
70 * @param[in] sid SID of the killing session.
71 */
72void nc_session_set_killed_by(struct nc_session *session, uint32_t sid);
73
74/**
75 * @brief Set the status of a session.
76 *
77 * @param[in] session Session to modify.
78 * @param[in] status Status of the session.
79 */
80void nc_session_set_status(struct nc_session *session, NC_STATUS status);
81
82/**
Radek Krejci6799a052017-05-19 14:23:23 +020083 * @brief Set a global nc_rpc_clb that is called if the particular RPC request is
84 * received and the private field in the corresponding RPC schema node is NULL.
85 *
Michal Vasko238b6c12021-12-14 15:14:09 +010086 * If this callback is set, the default callbacks for "get-schema" and "close-session" are not used.
87 *
Radek Krejci6799a052017-05-19 14:23:23 +020088 * @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 Vasko238b6c12021-12-14 15:14:09 +010092/**
93 * @brief Default RPC callback used for "ietf-netconf-monitoring:get-schema" RPC if no other specific
94 * or global callback is set.
95 *
96 * @param[in] rpc Received RPC.
97 * @param[in] session NC session @p rpc was received on.
98 * @return Server reply.
99 */
100struct nc_server_reply *nc_clb_default_get_schema(struct lyd_node *rpc, struct nc_session *session);
101
102/**
103 * @brief Default RPC callback used for "ietf-netconf:close-session" RPC if no other specific
104 * or global callback is set.
105 *
106 * @param[in] rpc Received RPC.
107 * @param[in] session NC session @p rpc was received on.
108 * @return Server reply.
109 */
110struct nc_server_reply *nc_clb_default_close_session(struct lyd_node *rpc, struct nc_session *session);
111
Michal Vasko4e6d3242021-05-26 09:13:24 +0200112/** @} Server Session */
Radek Krejci6799a052017-05-19 14:23:23 +0200113
114/**
romanf578cd52023-10-19 09:47:40 +0200115 * @defgroup server_functions Server Functions
116 * @ingroup server
Radek Krejci6799a052017-05-19 14:23:23 +0200117 * @{
118 */
119
120/**
Michal Vasko93224072021-11-09 12:14:28 +0100121 * @brief Initialize libssh and/or libssl/libcrypto and the server.
Michal Vasko1a38c862016-01-15 15:50:07 +0100122 *
Michal Vasko93224072021-11-09 12:14:28 +0100123 * Must be called before other nc_server* functions.
Michal Vasko1a38c862016-01-15 15:50:07 +0100124 *
Michal Vasko1a38c862016-01-15 15:50:07 +0100125 * @return 0 on success, -1 on error.
126 */
Michal Vasko93224072021-11-09 12:14:28 +0100127int nc_server_init(void);
Michal Vasko086311b2016-01-08 09:53:11 +0100128
Michal Vasko1a38c862016-01-15 15:50:07 +0100129/**
Michal Vaskoa7b8ca52016-03-01 12:09:29 +0100130 * @brief Destroy any dynamically allocated libssh and/or libssl/libcrypto and
131 * server resources.
Michal Vaskob48aa812016-01-18 14:13:09 +0100132 */
133void nc_server_destroy(void);
134
135/**
romanf578cd52023-10-19 09:47:40 +0200136 * @brief Initialize a context which can serve as a default server context.
137 *
138 * Loads the default modules ietf-netconf and ietf-netconf-monitoring and their enabled features - ietf-netconf
139 * enabled features are : writable-running, candidate, rollback-on-error, validate, startup, url, xpath, confirmed-commit and
140 * ietf-netconf-monitoring has no features.
141 *
142 * If ctx is :
143 * - NULL: a new context will be created and if the call is successful you have to free it,
144 * - non NULL: context will be searched for the two modules and their features
145 * and if anything is missing, it will be implemented.
146 *
147 * @param[in,out] ctx Optional context in which the modules will be loaded. Created if ctx is null.
148 * @return 0 on success, -1 on error.
149 */
150int nc_server_init_ctx(struct ly_ctx **ctx);
151
152/**
Michal Vasko1a38c862016-01-15 15:50:07 +0100153 * @brief Set the with-defaults capability extra parameters.
154 *
155 * For the capability to be actually advertised, the server context must also
156 * include the ietf-netconf-with-defaults model.
157 *
158 * Changing this option has the same ill effects as changing capabilities while
159 * sessions are already established.
160 *
161 * @param[in] basic_mode basic-mode with-defaults parameter.
162 * @param[in] also_supported NC_WD_MODE bit array, also-supported with-defaults
163 * parameter.
164 * @return 0 on success, -1 on error.
165 */
Michal Vasko086311b2016-01-08 09:53:11 +0100166int nc_server_set_capab_withdefaults(NC_WD_MODE basic_mode, int also_supported);
167
Michal Vasko1a38c862016-01-15 15:50:07 +0100168/**
Michal Vasko55f03972016-04-13 08:56:01 +0200169 * @brief Get with-defaults capability extra parameters.
170 *
171 * At least one argument must be non-NULL.
172 *
romanf578cd52023-10-19 09:47:40 +0200173 * @param[out] basic_mode basic-mode parameter.
174 * @param[out] also_supported also-supported parameter.
Michal Vasko55f03972016-04-13 08:56:01 +0200175 */
176void nc_server_get_capab_withdefaults(NC_WD_MODE *basic_mode, int *also_supported);
177
178/**
Radek Krejci658782b2016-12-04 22:04:55 +0100179 * @brief Set capability of the server.
Michal Vasko1a38c862016-01-15 15:50:07 +0100180 *
Radek Krejci658782b2016-12-04 22:04:55 +0100181 * Capability can be used when some behavior or extension of the server is not defined
182 * as a YANG module. The provided value will be advertised in the server's \<hello\>
183 * messages. Note, that libnetconf only checks that the provided value is non-empty
184 * string.
Michal Vasko1a38c862016-01-15 15:50:07 +0100185 *
Michal Vasko50d2a5c2017-02-14 10:29:49 +0100186 * @param[in] value Capability string to be advertised in server's \<hello\> messages.
Michal Vasko1a38c862016-01-15 15:50:07 +0100187 */
Radek Krejci658782b2016-12-04 22:04:55 +0100188int nc_server_set_capability(const char *value);
Michal Vasko55f03972016-04-13 08:56:01 +0200189
190/**
Michal Vasko1440a742021-03-31 11:11:03 +0200191 * @brief Set the callback for getting yang-library capability identifier. If none is set, libyang context change count is used.
192 *
193 * @param[in] content_id_clb Callback that should return the yang-library content identifier.
Michal Vaskoc446a382021-06-18 08:54:05 +0200194 * @param[in] user_data Optional arbitrary user data that will be passed to @p content_id_clb.
195 * @param[in] free_user_data Optional callback that will be called during cleanup to free any @p user_data.
Michal Vasko1440a742021-03-31 11:11:03 +0200196 */
197void nc_server_set_content_id_clb(char *(*content_id_clb)(void *user_data), void *user_data,
198 void (*free_user_data)(void *user_data));
199
200/**
Radek Krejci24a18412018-05-16 15:09:10 +0200201 * @brief Get all the server capabilities including all the schemas.
Michal Vasko4ffa3b22016-05-24 16:36:25 +0200202 *
203 * A few capabilities (with-defaults, interleave) depend on the current
204 * server options.
205 *
206 * @param[in] ctx Context to read most capabilities from.
Michal Vasko93224072021-11-09 12:14:28 +0100207 * @return Array of capabilities, NULL on error.
Michal Vasko4ffa3b22016-05-24 16:36:25 +0200208 */
Michal Vasko93224072021-11-09 12:14:28 +0100209char **nc_server_get_cpblts(const struct ly_ctx *ctx);
Michal Vasko4ffa3b22016-05-24 16:36:25 +0200210
Radek Krejci24a18412018-05-16 15:09:10 +0200211/**
212 * @brief Get the server capabilities including the schemas with the specified YANG version.
213 *
214 * A few capabilities (with-defaults, interleave) depend on the current
215 * server options.
216 *
217 * @param[in] ctx Context to read most capabilities from.
218 * @param[in] version YANG version of the schemas to be included in result, with
219 * LYS_VERSION_UNDEF the result is the same as from nc_server_get_cpblts().
Michal Vasko93224072021-11-09 12:14:28 +0100220 * @return Array of capabilities, NULL on error.
Radek Krejci24a18412018-05-16 15:09:10 +0200221 */
Michal Vasko93224072021-11-09 12:14:28 +0100222char **nc_server_get_cpblts_version(const struct ly_ctx *ctx, LYS_VERSION version);
Radek Krejci24a18412018-05-16 15:09:10 +0200223
romanf578cd52023-10-19 09:47:40 +0200224/** @} Server Functions */
Radek Krejci6799a052017-05-19 14:23:23 +0200225
226/**
227 * @addtogroup server_session
228 * @{
229 */
230
Michal Vasko4ffa3b22016-05-24 16:36:25 +0200231/**
Michal Vasko1a38c862016-01-15 15:50:07 +0100232 * @brief Accept a new session on a pre-established transport session.
233 *
Michal Vasko93224072021-11-09 12:14:28 +0100234 * For detailed description, look at ::nc_accept().
235 *
Michal Vasko1a38c862016-01-15 15:50:07 +0100236 * @param[in] fdin File descriptor to read (unencrypted) XML data from.
237 * @param[in] fdout File descriptor to write (unencrypted) XML data to.
238 * @param[in] username NETCONF username as provided by the transport protocol.
Michal Vasko93224072021-11-09 12:14:28 +0100239 * @param[in] ctx Context for the session to use.
Michal Vasko1a38c862016-01-15 15:50:07 +0100240 * @param[out] session New session on success.
Michal Vasko71090fc2016-05-24 16:37:28 +0200241 * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message
242 * parsing fail, NC_MSG_WOULDBLOCK on timeout, NC_MSG_ERROR on other errors.
Michal Vasko1a38c862016-01-15 15:50:07 +0100243 */
Michal Vasko93224072021-11-09 12:14:28 +0100244NC_MSG_TYPE nc_accept_inout(int fdin, int fdout, const char *username, const struct ly_ctx *ctx,
245 struct nc_session **session);
Michal Vasko086311b2016-01-08 09:53:11 +0100246
Michal Vasko1a38c862016-01-15 15:50:07 +0100247/**
248 * @brief Create an empty structure for polling sessions.
249 *
250 * @return Empty pollsession structure, NULL on error.
251 */
Michal Vasko05ba9df2016-01-13 14:40:27 +0100252struct nc_pollsession *nc_ps_new(void);
Michal Vaskofb89d772016-01-08 12:25:35 +0100253
Michal Vasko1a38c862016-01-15 15:50:07 +0100254/**
255 * @brief Free a pollsession structure.
256 *
Michal Vaskoc446a382021-06-18 08:54:05 +0200257 * !IMPORTANT! Make sure that @p ps is not accessible (is not used)
Michal Vasko01082bf2016-04-07 10:44:21 +0200258 * by any thread before and after this call!
259 *
Michal Vasko1a38c862016-01-15 15:50:07 +0100260 * @param[in] ps Pollsession structure to free.
261 */
Michal Vasko05ba9df2016-01-13 14:40:27 +0100262void nc_ps_free(struct nc_pollsession *ps);
Michal Vaskofb89d772016-01-08 12:25:35 +0100263
Michal Vasko1a38c862016-01-15 15:50:07 +0100264/**
265 * @brief Add a session to a pollsession structure.
266 *
267 * @param[in] ps Pollsession structure to modify.
Michal Vaskoc446a382021-06-18 08:54:05 +0200268 * @param[in] session Session to add to @p ps.
Michal Vasko1a38c862016-01-15 15:50:07 +0100269 * @return 0 on success, -1 on error.
270 */
Michal Vasko05ba9df2016-01-13 14:40:27 +0100271int nc_ps_add_session(struct nc_pollsession *ps, struct nc_session *session);
Michal Vaskofb89d772016-01-08 12:25:35 +0100272
Michal Vasko1a38c862016-01-15 15:50:07 +0100273/**
274 * @brief Remove a session from a pollsession structure.
275 *
276 * @param[in] ps Pollsession structure to modify.
Michal Vaskoc446a382021-06-18 08:54:05 +0200277 * @param[in] session Session to remove from @p ps.
Michal Vaskof0537d82016-01-29 14:42:38 +0100278 * @return 0 on success, -1 on not found.
Michal Vasko1a38c862016-01-15 15:50:07 +0100279 */
Michal Vasko05ba9df2016-01-13 14:40:27 +0100280int nc_ps_del_session(struct nc_pollsession *ps, struct nc_session *session);
281
Michal Vasko1a38c862016-01-15 15:50:07 +0100282/**
Michal Vaskoe1ee05b2017-03-21 10:10:18 +0100283 * @brief Get a session from a pollsession structure matching the session ID.
284 *
285 * @param[in] ps Pollsession structure to read from.
Michal Vasko4871c9d2017-10-09 14:48:39 +0200286 * @param[in] idx Index of the session.
287 * @return Session on index, NULL if out-of-bounds.
Michal Vaskoe1ee05b2017-03-21 10:10:18 +0100288 */
Michal Vasko4871c9d2017-10-09 14:48:39 +0200289struct nc_session *nc_ps_get_session(const struct nc_pollsession *ps, uint16_t idx);
Michal Vaskoe1ee05b2017-03-21 10:10:18 +0100290
291/**
Michal Vasko3ec3b112022-07-21 12:32:33 +0200292 * @brief Callback for finding a session in a pollsession structure.
293 *
294 * @param[in] session Considered NETCONF session.
295 * @param[in] cb_data User data.
296 * @return 0 if the session does not match.
297 * @return non-zero if the session matches and should be returned.
298 */
299typedef int (*nc_ps_session_match_cb)(struct nc_session *session, void *cb_data);
300
301/**
302 * @brief Find a session in a pollsession structure using a matching callback.
303 *
304 * @param[in] ps Pollsession structure to read from.
305 * @param[in] match_cb Matching callback to use.
306 * @param[in] cb_data User data passed to @p cb.
307 * @return Found session, NULL if none matched.
308 */
309struct nc_session *nc_ps_find_session(const struct nc_pollsession *ps, nc_ps_session_match_cb match_cb, void *cb_data);
310
311/**
Michal Vasko0fdb7ac2016-03-01 09:03:12 +0100312 * @brief Learn the number of sessions in a pollsession structure.
313 *
Michal Vaskoc446a382021-06-18 08:54:05 +0200314 * Does not lock @p ps structure for efficiency.
Michal Vaskof4462fd2017-02-15 14:29:05 +0100315 *
Michal Vasko0fdb7ac2016-03-01 09:03:12 +0100316 * @param[in] ps Pollsession structure to check.
Michal Vaskoc446a382021-06-18 08:54:05 +0200317 * @return Number of sessions (even invalid ones) in @p ps, -1 on error.
Michal Vasko0fdb7ac2016-03-01 09:03:12 +0100318 */
319uint16_t nc_ps_session_count(struct nc_pollsession *ps);
320
Michal Vasko30a5d6b2017-02-15 14:29:39 +0100321#define NC_PSPOLL_NOSESSIONS 0x0001 /**< No sessions to poll. */
322#define NC_PSPOLL_TIMEOUT 0x0002 /**< Timeout elapsed. */
323#define NC_PSPOLL_RPC 0x0004 /**< RPC was correctly parsed and processed. */
324#define NC_PSPOLL_BAD_RPC 0x0008 /**< RPC was received, but failed to be parsed. */
325#define NC_PSPOLL_REPLY_ERROR 0x0010 /**< Response to the RPC was a \<rpc-reply\> of type error. */
326#define NC_PSPOLL_SESSION_TERM 0x0020 /**< Some session was terminated. */
327#define NC_PSPOLL_SESSION_ERROR 0x0040 /**< Some session was terminated incorrectly (not by a \<close-session\> or \<kill-session\> RPC). */
328#define NC_PSPOLL_ERROR 0x0080 /**< Other fatal errors (they are printed). */
Michal Vasko71090fc2016-05-24 16:37:28 +0200329
roman2eab4742023-06-06 10:00:26 +0200330#ifdef NC_ENABLED_SSH_TLS
Michal Vaskoc446a382021-06-18 08:54:05 +0200331# define NC_PSPOLL_SSH_MSG 0x00100 /**< SSH message received (and processed, if relevant, only with SSH support). */
332# define NC_PSPOLL_SSH_CHANNEL 0x0200 /**< New SSH channel opened on an existing session (only with SSH support). */
roman2eab4742023-06-06 10:00:26 +0200333#endif /* NC_ENABLED_SSH_TLS */
Michal Vasko71090fc2016-05-24 16:37:28 +0200334
Michal Vasko0fdb7ac2016-03-01 09:03:12 +0100335/**
Michal Vasko1a38c862016-01-15 15:50:07 +0100336 * @brief Poll sessions and process any received RPCs.
337 *
Michal Vaskoe4300a82017-05-24 10:35:42 +0200338 * Only one event on one session is handled in one function call. If this event
339 * is a session termination (#NC_PSPOLL_SESSION_TERM returned), the session
Michal Vaskoc446a382021-06-18 08:54:05 +0200340 * should be removed from @p ps.
Michal Vasko1a38c862016-01-15 15:50:07 +0100341 *
342 * @param[in] ps Pollsession structure to use.
Michal Vasko11d142a2016-01-19 15:58:24 +0100343 * @param[in] timeout Poll timeout in milliseconds. 0 for non-blocking call, -1 for
Michal Vasko96830e32016-02-01 10:54:18 +0100344 * infinite waiting.
Michal Vasko71090fc2016-05-24 16:37:28 +0200345 * @param[in] session Session that was processed and that specific return bits concern.
346 * Can be NULL.
Michal Vaskoade892d2017-02-22 13:40:35 +0100347 * @return Bitfield of NC_PSPOLL_* macros.
Michal Vasko1a38c862016-01-15 15:50:07 +0100348 */
Michal Vasko71090fc2016-05-24 16:37:28 +0200349int nc_ps_poll(struct nc_pollsession *ps, int timeout, struct nc_session **session);
Michal Vasko086311b2016-01-08 09:53:11 +0100350
Michal Vasko11d142a2016-01-19 15:58:24 +0100351/**
Michal Vaskocad3ac42016-03-01 09:06:01 +0100352 * @brief Remove sessions from a pollsession structure and
353 * call nc_session_free() on them.
Michal Vaskod09eae62016-02-01 10:32:52 +0100354 *
Michal Vaskoc446a382021-06-18 08:54:05 +0200355 * 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 +0100356 *
357 * @param[in] ps Pollsession structure to clear.
Michal Vaskocad3ac42016-03-01 09:06:01 +0100358 * @param[in] all Whether to free all sessions, or only the invalid ones.
Michal Vaskoe1a64ec2016-03-01 12:21:58 +0100359 * @param[in] data_free Session user data destructor.
Michal Vaskod09eae62016-02-01 10:32:52 +0100360 */
Michal Vaskoe1a64ec2016-03-01 12:21:58 +0100361void nc_ps_clear(struct nc_pollsession *ps, int all, void (*data_free)(void *));
Michal Vaskod09eae62016-02-01 10:32:52 +0100362
Michal Vasko1440a742021-03-31 11:11:03 +0200363/** @} Server Session */
Radek Krejci6799a052017-05-19 14:23:23 +0200364
365/**
romanf578cd52023-10-19 09:47:40 +0200366 * @addtogroup server_functions
Radek Krejci6799a052017-05-19 14:23:23 +0200367 * @{
368 */
369
Michal Vasko1a38c862016-01-15 15:50:07 +0100370/**
Michal Vaskoe8e07702017-03-15 10:19:30 +0100371 * @brief Get the number of currently configured listening endpoints.
372 * Note that an ednpoint without address and/or port will be included
373 * even though it is not, in fact, listening.
374 *
375 * @return Number of added listening endpoints.
376 */
377int nc_server_endpt_count(void);
378
romanfb3f7cf2023-11-30 16:10:09 +0100379/**
380 * @brief Create a new UNIX socket endpoint and start listening.
381 *
382 * @param[in] endpt_name Arbitrary unique identifier of the endpoint.
383 * @param[in] unix_socket_path Path to the listening socket.
384 * @param[in] mode New mode, -1 to use default.
385 * @param[in] uid New uid, -1 to use default.
386 * @param[in] gid New gid, -1 to use default.
387 *
388 * @return 0 on success, 1 on error.
389 */
390int nc_server_add_endpt_unix_socket_listen(const char *endpt_name, const char *unix_socket_path, mode_t mode, uid_t uid, gid_t gid);
391
392/**
393 * @brief Deletes a UNIX socket endpoint.
394 *
395 * @param[in] endpt_name Identifier of the endpoint.
396 * Has no effect if the endpoint doesn't exist or if its transport is not UNIX socket.
397 */
398void nc_server_del_endpt_unix_socket(const char *endpt_name);
399
romanf578cd52023-10-19 09:47:40 +0200400/** @} */
Radek Krejci6799a052017-05-19 14:23:23 +0200401
402/**
403 * @addtogroup server_session
Michal Vasko4e6d3242021-05-26 09:13:24 +0200404 * @{
Radek Krejci6799a052017-05-19 14:23:23 +0200405 */
406
Michal Vaskoe2713da2016-08-22 16:06:40 +0200407/**
Michal Vasko3031aae2016-01-27 16:07:18 +0100408 * @brief Accept new sessions on all the listening endpoints.
Michal Vasko1a38c862016-01-15 15:50:07 +0100409 *
Michal Vaskob70c8b82017-03-17 09:09:29 +0100410 * Once a new (TCP/IP) conection is established a different (quite long) timeout
411 * is used for waiting for transport-related data, which means this call can block
Michal Vaskoc446a382021-06-18 08:54:05 +0200412 * for much longer that @p timeout, but only with slow/faulty/malicious clients.
Michal Vaskob70c8b82017-03-17 09:09:29 +0100413 *
Michal Vasko93224072021-11-09 12:14:28 +0100414 * Server capabilities are generated based on the content of @p ctx. The context must
romanf578cd52023-10-19 09:47:40 +0200415 * not be destroyed before the accepted NETCONF session is freed. Basic usable context may
416 * be created by calling ::nc_server_init_ctx().
Michal Vasko93224072021-11-09 12:14:28 +0100417 *
418 * Supported RPCs of models in the context are expected to have their callback
419 * in the corresponding RPC schema node set to a nc_rpc_clb function callback using ::nc_set_rpc_callback().
420 * This callback is called by ::nc_ps_poll() if the particular RPC request is
421 * received. Callbacks for ietf-netconf:get-schema (supporting YANG and YIN format
422 * only) and ietf-netconf:close-session are set internally if left unset.
423 *
Michal Vasko11d142a2016-01-19 15:58:24 +0100424 * @param[in] timeout Timeout for receiving a new connection in milliseconds, 0 for
Michal Vasko93224072021-11-09 12:14:28 +0100425 * non-blocking call, -1 for infinite waiting.
426 * @param[in] ctx Context for the session to use.
Michal Vasko96164bf2016-01-21 15:41:58 +0100427 * @param[out] session New session.
Michal Vasko71090fc2016-05-24 16:37:28 +0200428 * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message
429 * parsing fail, NC_MSG_WOULDBLOCK on timeout, NC_MSG_ERROR on other errors.
Michal Vasko1a38c862016-01-15 15:50:07 +0100430 */
Michal Vasko93224072021-11-09 12:14:28 +0100431NC_MSG_TYPE nc_accept(int timeout, const struct ly_ctx *ctx, struct nc_session **session);
Michal Vasko9e036d52016-01-08 10:49:26 +0100432
roman2eab4742023-06-06 10:00:26 +0200433#ifdef NC_ENABLED_SSH_TLS
Michal Vasko086311b2016-01-08 09:53:11 +0100434
Michal Vasko1a38c862016-01-15 15:50:07 +0100435/**
Michal Vaskoc446a382021-06-18 08:54:05 +0200436 * @brief Accept a new NETCONF session on an SSH session of a running NETCONF @p orig_session.
437 * Call this function only when nc_ps_poll() returns #NC_PSPOLL_SSH_CHANNEL on @p orig_session.
Michal Vasko71090fc2016-05-24 16:37:28 +0200438 *
439 * @param[in] orig_session Session that has a new SSH channel ready.
440 * @param[out] session New session.
441 * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message
442 * parsing fail, NC_MSG_WOULDBLOCK on timeout, NC_MSG_ERROR on other errors.
443 */
444NC_MSG_TYPE nc_session_accept_ssh_channel(struct nc_session *orig_session, struct nc_session **session);
445
446/**
Michal Vasko96164bf2016-01-21 15:41:58 +0100447 * @brief Accept a new NETCONF session on an SSH session of a running NETCONF session
Michal Vaskoc446a382021-06-18 08:54:05 +0200448 * that was polled in @p ps. Call this function only when nc_ps_poll() on @p ps returns #NC_PSPOLL_SSH_CHANNEL.
449 * The new session is only returned in @p session, it is not added to @p ps.
Michal Vasko96164bf2016-01-21 15:41:58 +0100450 *
451 * @param[in] ps Unmodified pollsession structure from the previous nc_ps_poll() call.
452 * @param[out] session New session.
Michal Vasko71090fc2016-05-24 16:37:28 +0200453 * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message
454 * parsing fail, NC_MSG_WOULDBLOCK on timeout, NC_MSG_ERROR on other errors.
Michal Vasko96164bf2016-01-21 15:41:58 +0100455 */
Michal Vasko71090fc2016-05-24 16:37:28 +0200456NC_MSG_TYPE nc_ps_accept_ssh_channel(struct nc_pollsession *ps, struct nc_session **session);
Michal Vasko96164bf2016-01-21 15:41:58 +0100457
Michal Vasko1440a742021-03-31 11:11:03 +0200458/** @} Server Session */
Radek Krejci6799a052017-05-19 14:23:23 +0200459
460/**
461 * @defgroup server_ssh Server SSH
462 * @ingroup server
463 *
464 * @brief Server-side settings for SSH connections.
465 * @{
466 */
467
Michal Vasko96164bf2016-01-21 15:41:58 +0100468/**
romana9ec3362023-12-21 10:59:57 +0100469 * @brief Set the format of the path to authorized_keys files.
470 *
471 * This path format will be set globally for all clients wishing to authenticate via the
472 * SSH Public Key system authentication.
473 *
474 * @param[in] path Path to authorized_keys files. The path may contain the following tokens:
475 * - %u - replaced by the username of the user trying to authenticate,
476 * - %h - replaced by the home directory of the user trying to authenticate,
477 * - %U - replaced by the UID of the user trying to authenticate,
478 * - %% - a literal '%'.
479 * @return 0 on success, 1 on error.
480 */
481int nc_server_ssh_set_authkey_path_format(const char *path);
482
483/**
romane5675b12024-03-05 14:26:23 +0100484 * @brief Keyboard interactive authentication callback.
bhart3bc2f582018-06-05 12:40:32 -0500485 *
romane5675b12024-03-05 14:26:23 +0100486 * The callback has to handle sending interactive challenges and receiving responses by itself.
487 * An example callback may fit the following description:
488 * Prepare all prompts for the user and send them via `ssh_message_auth_interactive_request()`.
489 * Get the answers either by calling `ssh_message_get()` or `nc_server_ssh_kbdint_get_nanswers()`.
490 * Return value based on your authentication logic and user answers retrieved by
491 * calling `ssh_userauth_kbdint_getanswer()`.
492 *
493 * @param[in] session NETCONF session.
494 * @param[in] ssh_sess libssh session.
495 * @param[in] msg SSH message that contains the interactive request and which expects a reply with prompts.
496 * @param[in] user_data Arbitrary user data.
497 * @return 0 for successful authentication, non-zero to deny the user.
498 */
499typedef int (*nc_server_ssh_interactive_auth_clb)(const struct nc_session *session,
500 ssh_session ssh_sess, ssh_message msg, void *user_data);
501
502/**
503 * @brief Set the callback for SSH interactive authentication.
504 *
505 * @param[in] auth_clb Keyboard interactive authentication callback. This callback is only called once per authentication.
romanf578cd52023-10-19 09:47:40 +0200506 * @param[in] user_data Optional arbitrary user data that will be passed to @p interactive_auth_clb.
Michal Vaskoc446a382021-06-18 08:54:05 +0200507 * @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 -0500508 */
romane5675b12024-03-05 14:26:23 +0100509void nc_server_ssh_set_interactive_auth_clb(nc_server_ssh_interactive_auth_clb auth_clb, void *user_data, void (*free_user_data)(void *user_data));
510
511/**
512 * @brief Get the number of answers to Keyboard interactive authentication prompts.
513 *
514 * The actual answers can later be retrieved by calling `ssh_userauth_kbdint_getanswer()` on
515 * the @p libssh_session.
516 *
517 * @param[in] session NETCONF session.
518 * @param[in] libssh_session libssh session.
519 *
520 * @return Non-negative number of answers on success, -1 on configurable authentication timeout,
521 * disconnect or other error.
522 */
523int nc_server_ssh_kbdint_get_nanswers(const struct nc_session *session, ssh_session libssh_session);
roman41a11e42022-06-22 09:27:08 +0200524
roman808f3f62023-11-23 16:01:04 +0100525/**
526 * @brief Set the name of the PAM configuration file.
527 *
528 * This filename will be set globally for all clients wishing to authenticate via the
529 * SSH Keyboard Interactive authentication method.
530 *
531 * @param[in] filename Name of the PAM configuration file. The file needs to be located in
532 * the default PAM directory (usually /etc/pam.d/).
533 *
534 * @return 0 on success, 1 on error.
535 */
536int nc_server_ssh_set_pam_conf_filename(const char *filename);
537
Michal Vaskoc446a382021-06-18 08:54:05 +0200538/** @} Server SSH */
Radek Krejci6799a052017-05-19 14:23:23 +0200539
Michal Vasko1a38c862016-01-15 15:50:07 +0100540/**
Radek Krejci6799a052017-05-19 14:23:23 +0200541 * @defgroup server_tls Server TLS
542 * @ingroup server
543 *
544 * @brief Server-side settings for TLS connections.
545 * @{
546 */
547
548/**
Michal Vasko709598e2016-11-28 14:48:32 +0100549 * @brief Get client certificate.
550 *
551 * @param[in] session Session to get the information from.
552 * @return Const session client certificate.
553 */
roman9225e912024-04-05 12:33:09 +0200554const void *nc_session_get_client_cert(const struct nc_session *session);
Michal Vasko709598e2016-11-28 14:48:32 +0100555
556/**
Michal Vasko7060bcf2016-11-28 14:48:11 +0100557 * @brief Set TLS authentication additional verify callback.
558 *
559 * Server will always perform cert-to-name based on its configuration. Only after it passes
romance435112024-04-23 15:12:09 +0200560 * and this callback is set, it is also called. It should return non-zero for success, 0 to deny the user.
Michal Vasko7060bcf2016-11-28 14:48:11 +0100561 *
562 * @param[in] verify_clb Additional user verify callback.
563 */
564void nc_server_tls_set_verify_clb(int (*verify_clb)(const struct nc_session *session));
565
Michal Vaskoc446a382021-06-18 08:54:05 +0200566/** @} Server TLS */
Radek Krejci6799a052017-05-19 14:23:23 +0200567
roman2eab4742023-06-06 10:00:26 +0200568#endif /* NC_ENABLED_SSH_TLS */
Michal Vasko086311b2016-01-08 09:53:11 +0100569
Michal Vaskof8352352016-05-24 09:11:36 +0200570/**
Radek Krejci6799a052017-05-19 14:23:23 +0200571 * @addtogroup server_session
572 * @{
573 */
574
575/**
Michal Vaskoc45ebd32016-05-25 11:17:36 +0200576 * @brief Get session start time.
Michal Vaskof8352352016-05-24 09:11:36 +0200577 *
578 * @param[in] session Session to get the information from.
Michal Vaskoc45ebd32016-05-25 11:17:36 +0200579 * @return Session start time.
Michal Vaskof8352352016-05-24 09:11:36 +0200580 */
roman44efa322023-11-03 13:57:25 +0100581struct timespec nc_session_get_start_time(const struct nc_session *session);
Michal Vaskof8352352016-05-24 09:11:36 +0200582
Michal Vasko3486a7c2017-03-03 13:28:07 +0100583/**
Michal Vasko71dbd772021-03-23 14:08:37 +0100584 * @brief Increase session notification subscription flag count.
585 * Supports multiple subscriptions on one session.
Michal Vasko3486a7c2017-03-03 13:28:07 +0100586 *
587 * It is used only to ignore timeouts, because they are
588 * ignored for sessions with active subscriptions.
589 *
590 * @param[in] session Session to modify.
Michal Vasko3486a7c2017-03-03 13:28:07 +0100591 */
Michal Vasko71dbd772021-03-23 14:08:37 +0100592void nc_session_inc_notif_status(struct nc_session *session);
593
594/**
595 * @brief Decrease session notification subscription flag count.
596 * Supports multiple subscriptions on one session.
597 *
598 * @param[in] session Session to modify.
599 */
600void nc_session_dec_notif_status(struct nc_session *session);
Michal Vasko3486a7c2017-03-03 13:28:07 +0100601
602/**
603 * @brief Get session notification subscription flag.
604 *
605 * @param[in] session Session to get the information from.
606 * @return 0 for no active subscription, non-zero for an active subscription.
607 */
608int nc_session_get_notif_status(const struct nc_session *session);
609
Michal Vaskoc446a382021-06-18 08:54:05 +0200610/** @} Server Session */
Radek Krejci6799a052017-05-19 14:23:23 +0200611
Michal Vaskoc09730e2019-01-17 10:07:26 +0100612#ifdef __cplusplus
613}
614#endif
615
Michal Vasko086311b2016-01-08 09:53:11 +0100616#endif /* NC_SESSION_SERVER_H_ */