blob: 344c7bde1390e2d356a4258cc379a20029a5626b [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
roman2eab4742023-06-06 10:00:26 +020027#ifdef NC_ENABLED_SSH_TLS
Michal Vaskoc446a382021-06-18 08:54:05 +020028# include <openssl/x509.h>
Michal Vasko709598e2016-11-28 14:48:32 +010029
Michal Vaskoc446a382021-06-18 08:54:05 +020030# include <libssh/callbacks.h>
31# include <libssh/libssh.h>
32# include <libssh/server.h>
roman2eab4742023-06-06 10:00:26 +020033#endif /* NC_ENABLED_SSH_TLS */
bhart3bc2f582018-06-05 12:40:32 -050034
Michal Vasko086311b2016-01-08 09:53:11 +010035#include "netconf.h"
Michal Vaskob83a3fa2021-05-26 09:53:42 +020036#include "session.h"
Michal Vasko086311b2016-01-08 09:53:11 +010037
Michal Vasko1a38c862016-01-15 15:50:07 +010038/**
Radek Krejci6799a052017-05-19 14:23:23 +020039 * @defgroup server_session Server Session
40 * @ingroup server
41 *
42 * @brief Server-side NETCONF session manipulation.
43 * @{
44 */
45
46/**
Michal Vasko1a38c862016-01-15 15:50:07 +010047 * @brief Prototype of callbacks that are called if some RPCs are received.
48 *
Michal Vaskoc446a382021-06-18 08:54:05 +020049 * If @p session termination reason is changed in the callback, one last reply
Michal Vasko1a38c862016-01-15 15:50:07 +010050 * is sent and then the session is considered invalid.
51 *
Radek Krejci6799a052017-05-19 14:23:23 +020052 * The callback is set via nc_set_global_rpc_clb().
53 *
Michal Vasko1a38c862016-01-15 15:50:07 +010054 * @param[in] rpc Parsed client RPC request.
55 * @param[in] session Session the RPC arrived on.
56 * @return Server reply. If NULL, an operation-failed error will be sent to the client.
57 */
Michal Vasko05ba9df2016-01-13 14:40:27 +010058typedef struct nc_server_reply *(*nc_rpc_clb)(struct lyd_node *rpc, struct nc_session *session);
59
Michal Vasko1a38c862016-01-15 15:50:07 +010060/**
Michal Vasko7b096242016-01-29 15:55:10 +010061 * @brief Set the termination reason for a session. Use only in #nc_rpc_clb callbacks.
Michal Vasko1a38c862016-01-15 15:50:07 +010062 *
63 * @param[in] session Session to modify.
64 * @param[in] reason Reason of termination.
65 */
66void nc_session_set_term_reason(struct nc_session *session, NC_SESSION_TERM_REASON reason);
67
68/**
Michal Vasko142cfea2017-08-07 10:12:11 +020069 * @brief Set the session-id of the session responsible for this session's termination.
70 *
71 * @param[in] session Session to modify. Must have term_reason set to #NC_SESSION_TERM_KILLED.
72 * @param[in] sid SID of the killing session.
73 */
74void nc_session_set_killed_by(struct nc_session *session, uint32_t sid);
75
76/**
77 * @brief Set the status of a session.
78 *
79 * @param[in] session Session to modify.
80 * @param[in] status Status of the session.
81 */
82void nc_session_set_status(struct nc_session *session, NC_STATUS status);
83
84/**
Radek Krejci6799a052017-05-19 14:23:23 +020085 * @brief Set a global nc_rpc_clb that is called if the particular RPC request is
86 * received and the private field in the corresponding RPC schema node is NULL.
87 *
Michal Vasko238b6c12021-12-14 15:14:09 +010088 * If this callback is set, the default callbacks for "get-schema" and "close-session" are not used.
89 *
Radek Krejci6799a052017-05-19 14:23:23 +020090 * @param[in] clb An user-defined nc_rpc_clb function callback, NULL to default.
91 */
92void nc_set_global_rpc_clb(nc_rpc_clb clb);
93
Michal Vasko238b6c12021-12-14 15:14:09 +010094/**
95 * @brief Default RPC callback used for "ietf-netconf-monitoring:get-schema" RPC if no other specific
96 * or global callback is set.
97 *
98 * @param[in] rpc Received RPC.
99 * @param[in] session NC session @p rpc was received on.
100 * @return Server reply.
101 */
102struct nc_server_reply *nc_clb_default_get_schema(struct lyd_node *rpc, struct nc_session *session);
103
104/**
105 * @brief Default RPC callback used for "ietf-netconf:close-session" RPC if no other specific
106 * or global callback is set.
107 *
108 * @param[in] rpc Received RPC.
109 * @param[in] session NC session @p rpc was received on.
110 * @return Server reply.
111 */
112struct nc_server_reply *nc_clb_default_close_session(struct lyd_node *rpc, struct nc_session *session);
113
Michal Vasko4e6d3242021-05-26 09:13:24 +0200114/** @} Server Session */
Radek Krejci6799a052017-05-19 14:23:23 +0200115
116/**
romanf578cd52023-10-19 09:47:40 +0200117 * @defgroup server_functions Server Functions
118 * @ingroup server
Radek Krejci6799a052017-05-19 14:23:23 +0200119 * @{
120 */
121
122/**
Michal Vasko93224072021-11-09 12:14:28 +0100123 * @brief Initialize libssh and/or libssl/libcrypto and the server.
Michal Vasko1a38c862016-01-15 15:50:07 +0100124 *
Michal Vasko93224072021-11-09 12:14:28 +0100125 * Must be called before other nc_server* functions.
Michal Vasko1a38c862016-01-15 15:50:07 +0100126 *
Michal Vasko1a38c862016-01-15 15:50:07 +0100127 * @return 0 on success, -1 on error.
128 */
Michal Vasko93224072021-11-09 12:14:28 +0100129int nc_server_init(void);
Michal Vasko086311b2016-01-08 09:53:11 +0100130
Michal Vasko1a38c862016-01-15 15:50:07 +0100131/**
Michal Vaskoa7b8ca52016-03-01 12:09:29 +0100132 * @brief Destroy any dynamically allocated libssh and/or libssl/libcrypto and
133 * server resources.
Michal Vaskob48aa812016-01-18 14:13:09 +0100134 */
135void nc_server_destroy(void);
136
137/**
romanf578cd52023-10-19 09:47:40 +0200138 * @brief Initialize a context which can serve as a default server context.
139 *
140 * Loads the default modules ietf-netconf and ietf-netconf-monitoring and their enabled features - ietf-netconf
141 * enabled features are : writable-running, candidate, rollback-on-error, validate, startup, url, xpath, confirmed-commit and
142 * ietf-netconf-monitoring has no features.
143 *
144 * If ctx is :
145 * - NULL: a new context will be created and if the call is successful you have to free it,
146 * - non NULL: context will be searched for the two modules and their features
147 * and if anything is missing, it will be implemented.
148 *
149 * @param[in,out] ctx Optional context in which the modules will be loaded. Created if ctx is null.
150 * @return 0 on success, -1 on error.
151 */
152int nc_server_init_ctx(struct ly_ctx **ctx);
153
154/**
Michal Vasko1a38c862016-01-15 15:50:07 +0100155 * @brief Set the with-defaults capability extra parameters.
156 *
157 * For the capability to be actually advertised, the server context must also
158 * include the ietf-netconf-with-defaults model.
159 *
160 * Changing this option has the same ill effects as changing capabilities while
161 * sessions are already established.
162 *
163 * @param[in] basic_mode basic-mode with-defaults parameter.
164 * @param[in] also_supported NC_WD_MODE bit array, also-supported with-defaults
165 * parameter.
166 * @return 0 on success, -1 on error.
167 */
Michal Vasko086311b2016-01-08 09:53:11 +0100168int nc_server_set_capab_withdefaults(NC_WD_MODE basic_mode, int also_supported);
169
Michal Vasko1a38c862016-01-15 15:50:07 +0100170/**
Michal Vasko55f03972016-04-13 08:56:01 +0200171 * @brief Get with-defaults capability extra parameters.
172 *
173 * At least one argument must be non-NULL.
174 *
romanf578cd52023-10-19 09:47:40 +0200175 * @param[out] basic_mode basic-mode parameter.
176 * @param[out] also_supported also-supported parameter.
Michal Vasko55f03972016-04-13 08:56:01 +0200177 */
178void nc_server_get_capab_withdefaults(NC_WD_MODE *basic_mode, int *also_supported);
179
180/**
Radek Krejci658782b2016-12-04 22:04:55 +0100181 * @brief Set capability of the server.
Michal Vasko1a38c862016-01-15 15:50:07 +0100182 *
Radek Krejci658782b2016-12-04 22:04:55 +0100183 * Capability can be used when some behavior or extension of the server is not defined
184 * as a YANG module. The provided value will be advertised in the server's \<hello\>
185 * messages. Note, that libnetconf only checks that the provided value is non-empty
186 * string.
Michal Vasko1a38c862016-01-15 15:50:07 +0100187 *
Michal Vasko50d2a5c2017-02-14 10:29:49 +0100188 * @param[in] value Capability string to be advertised in server's \<hello\> messages.
Michal Vasko1a38c862016-01-15 15:50:07 +0100189 */
Radek Krejci658782b2016-12-04 22:04:55 +0100190int nc_server_set_capability(const char *value);
Michal Vasko55f03972016-04-13 08:56:01 +0200191
192/**
Michal Vasko1440a742021-03-31 11:11:03 +0200193 * @brief Set the callback for getting yang-library capability identifier. If none is set, libyang context change count is used.
194 *
195 * @param[in] content_id_clb Callback that should return the yang-library content identifier.
Michal Vaskoc446a382021-06-18 08:54:05 +0200196 * @param[in] user_data Optional arbitrary user data that will be passed to @p content_id_clb.
197 * @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 +0200198 */
199void nc_server_set_content_id_clb(char *(*content_id_clb)(void *user_data), void *user_data,
200 void (*free_user_data)(void *user_data));
201
202/**
Radek Krejci24a18412018-05-16 15:09:10 +0200203 * @brief Get all the server capabilities including all the schemas.
Michal Vasko4ffa3b22016-05-24 16:36:25 +0200204 *
205 * A few capabilities (with-defaults, interleave) depend on the current
206 * server options.
207 *
208 * @param[in] ctx Context to read most capabilities from.
Michal Vasko93224072021-11-09 12:14:28 +0100209 * @return Array of capabilities, NULL on error.
Michal Vasko4ffa3b22016-05-24 16:36:25 +0200210 */
Michal Vasko93224072021-11-09 12:14:28 +0100211char **nc_server_get_cpblts(const struct ly_ctx *ctx);
Michal Vasko4ffa3b22016-05-24 16:36:25 +0200212
Radek Krejci24a18412018-05-16 15:09:10 +0200213/**
214 * @brief Get the server capabilities including the schemas with the specified YANG version.
215 *
216 * A few capabilities (with-defaults, interleave) depend on the current
217 * server options.
218 *
219 * @param[in] ctx Context to read most capabilities from.
220 * @param[in] version YANG version of the schemas to be included in result, with
221 * LYS_VERSION_UNDEF the result is the same as from nc_server_get_cpblts().
Michal Vasko93224072021-11-09 12:14:28 +0100222 * @return Array of capabilities, NULL on error.
Radek Krejci24a18412018-05-16 15:09:10 +0200223 */
Michal Vasko93224072021-11-09 12:14:28 +0100224char **nc_server_get_cpblts_version(const struct ly_ctx *ctx, LYS_VERSION version);
Radek Krejci24a18412018-05-16 15:09:10 +0200225
romanf578cd52023-10-19 09:47:40 +0200226/** @} Server Functions */
Radek Krejci6799a052017-05-19 14:23:23 +0200227
228/**
229 * @addtogroup server_session
230 * @{
231 */
232
Michal Vasko4ffa3b22016-05-24 16:36:25 +0200233/**
Michal Vasko1a38c862016-01-15 15:50:07 +0100234 * @brief Accept a new session on a pre-established transport session.
235 *
Michal Vasko93224072021-11-09 12:14:28 +0100236 * For detailed description, look at ::nc_accept().
237 *
Michal Vasko1a38c862016-01-15 15:50:07 +0100238 * @param[in] fdin File descriptor to read (unencrypted) XML data from.
239 * @param[in] fdout File descriptor to write (unencrypted) XML data to.
240 * @param[in] username NETCONF username as provided by the transport protocol.
Michal Vasko93224072021-11-09 12:14:28 +0100241 * @param[in] ctx Context for the session to use.
Michal Vasko1a38c862016-01-15 15:50:07 +0100242 * @param[out] session New session on success.
Michal Vasko71090fc2016-05-24 16:37:28 +0200243 * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message
244 * parsing fail, NC_MSG_WOULDBLOCK on timeout, NC_MSG_ERROR on other errors.
Michal Vasko1a38c862016-01-15 15:50:07 +0100245 */
Michal Vasko93224072021-11-09 12:14:28 +0100246NC_MSG_TYPE nc_accept_inout(int fdin, int fdout, const char *username, const struct ly_ctx *ctx,
247 struct nc_session **session);
Michal Vasko086311b2016-01-08 09:53:11 +0100248
Michal Vasko1a38c862016-01-15 15:50:07 +0100249/**
250 * @brief Create an empty structure for polling sessions.
251 *
252 * @return Empty pollsession structure, NULL on error.
253 */
Michal Vasko05ba9df2016-01-13 14:40:27 +0100254struct nc_pollsession *nc_ps_new(void);
Michal Vaskofb89d772016-01-08 12:25:35 +0100255
Michal Vasko1a38c862016-01-15 15:50:07 +0100256/**
257 * @brief Free a pollsession structure.
258 *
Michal Vaskoc446a382021-06-18 08:54:05 +0200259 * !IMPORTANT! Make sure that @p ps is not accessible (is not used)
Michal Vasko01082bf2016-04-07 10:44:21 +0200260 * by any thread before and after this call!
261 *
Michal Vasko1a38c862016-01-15 15:50:07 +0100262 * @param[in] ps Pollsession structure to free.
263 */
Michal Vasko05ba9df2016-01-13 14:40:27 +0100264void nc_ps_free(struct nc_pollsession *ps);
Michal Vaskofb89d772016-01-08 12:25:35 +0100265
Michal Vasko1a38c862016-01-15 15:50:07 +0100266/**
267 * @brief Add a session to a pollsession structure.
268 *
269 * @param[in] ps Pollsession structure to modify.
Michal Vaskoc446a382021-06-18 08:54:05 +0200270 * @param[in] session Session to add to @p ps.
Michal Vasko1a38c862016-01-15 15:50:07 +0100271 * @return 0 on success, -1 on error.
272 */
Michal Vasko05ba9df2016-01-13 14:40:27 +0100273int nc_ps_add_session(struct nc_pollsession *ps, struct nc_session *session);
Michal Vaskofb89d772016-01-08 12:25:35 +0100274
Michal Vasko1a38c862016-01-15 15:50:07 +0100275/**
276 * @brief Remove a session from a pollsession structure.
277 *
278 * @param[in] ps Pollsession structure to modify.
Michal Vaskoc446a382021-06-18 08:54:05 +0200279 * @param[in] session Session to remove from @p ps.
Michal Vaskof0537d82016-01-29 14:42:38 +0100280 * @return 0 on success, -1 on not found.
Michal Vasko1a38c862016-01-15 15:50:07 +0100281 */
Michal Vasko05ba9df2016-01-13 14:40:27 +0100282int nc_ps_del_session(struct nc_pollsession *ps, struct nc_session *session);
283
Michal Vasko1a38c862016-01-15 15:50:07 +0100284/**
Michal Vaskoe1ee05b2017-03-21 10:10:18 +0100285 * @brief Get a session from a pollsession structure matching the session ID.
286 *
287 * @param[in] ps Pollsession structure to read from.
Michal Vasko4871c9d2017-10-09 14:48:39 +0200288 * @param[in] idx Index of the session.
289 * @return Session on index, NULL if out-of-bounds.
Michal Vaskoe1ee05b2017-03-21 10:10:18 +0100290 */
Michal Vasko4871c9d2017-10-09 14:48:39 +0200291struct nc_session *nc_ps_get_session(const struct nc_pollsession *ps, uint16_t idx);
Michal Vaskoe1ee05b2017-03-21 10:10:18 +0100292
293/**
Michal Vasko3ec3b112022-07-21 12:32:33 +0200294 * @brief Callback for finding a session in a pollsession structure.
295 *
296 * @param[in] session Considered NETCONF session.
297 * @param[in] cb_data User data.
298 * @return 0 if the session does not match.
299 * @return non-zero if the session matches and should be returned.
300 */
301typedef int (*nc_ps_session_match_cb)(struct nc_session *session, void *cb_data);
302
303/**
304 * @brief Find a session in a pollsession structure using a matching callback.
305 *
306 * @param[in] ps Pollsession structure to read from.
307 * @param[in] match_cb Matching callback to use.
308 * @param[in] cb_data User data passed to @p cb.
309 * @return Found session, NULL if none matched.
310 */
311struct nc_session *nc_ps_find_session(const struct nc_pollsession *ps, nc_ps_session_match_cb match_cb, void *cb_data);
312
313/**
Michal Vasko0fdb7ac2016-03-01 09:03:12 +0100314 * @brief Learn the number of sessions in a pollsession structure.
315 *
Michal Vaskoc446a382021-06-18 08:54:05 +0200316 * Does not lock @p ps structure for efficiency.
Michal Vaskof4462fd2017-02-15 14:29:05 +0100317 *
Michal Vasko0fdb7ac2016-03-01 09:03:12 +0100318 * @param[in] ps Pollsession structure to check.
Michal Vaskoc446a382021-06-18 08:54:05 +0200319 * @return Number of sessions (even invalid ones) in @p ps, -1 on error.
Michal Vasko0fdb7ac2016-03-01 09:03:12 +0100320 */
321uint16_t nc_ps_session_count(struct nc_pollsession *ps);
322
Michal Vasko30a5d6b2017-02-15 14:29:39 +0100323#define NC_PSPOLL_NOSESSIONS 0x0001 /**< No sessions to poll. */
324#define NC_PSPOLL_TIMEOUT 0x0002 /**< Timeout elapsed. */
325#define NC_PSPOLL_RPC 0x0004 /**< RPC was correctly parsed and processed. */
326#define NC_PSPOLL_BAD_RPC 0x0008 /**< RPC was received, but failed to be parsed. */
327#define NC_PSPOLL_REPLY_ERROR 0x0010 /**< Response to the RPC was a \<rpc-reply\> of type error. */
328#define NC_PSPOLL_SESSION_TERM 0x0020 /**< Some session was terminated. */
329#define NC_PSPOLL_SESSION_ERROR 0x0040 /**< Some session was terminated incorrectly (not by a \<close-session\> or \<kill-session\> RPC). */
330#define NC_PSPOLL_ERROR 0x0080 /**< Other fatal errors (they are printed). */
Michal Vasko71090fc2016-05-24 16:37:28 +0200331
roman2eab4742023-06-06 10:00:26 +0200332#ifdef NC_ENABLED_SSH_TLS
Michal Vaskoc446a382021-06-18 08:54:05 +0200333# define NC_PSPOLL_SSH_MSG 0x00100 /**< SSH message received (and processed, if relevant, only with SSH support). */
334# define NC_PSPOLL_SSH_CHANNEL 0x0200 /**< New SSH channel opened on an existing session (only with SSH support). */
roman2eab4742023-06-06 10:00:26 +0200335#endif /* NC_ENABLED_SSH_TLS */
Michal Vasko71090fc2016-05-24 16:37:28 +0200336
Michal Vasko0fdb7ac2016-03-01 09:03:12 +0100337/**
Michal Vasko1a38c862016-01-15 15:50:07 +0100338 * @brief Poll sessions and process any received RPCs.
339 *
Michal Vaskoe4300a82017-05-24 10:35:42 +0200340 * Only one event on one session is handled in one function call. If this event
341 * is a session termination (#NC_PSPOLL_SESSION_TERM returned), the session
Michal Vaskoc446a382021-06-18 08:54:05 +0200342 * should be removed from @p ps.
Michal Vasko1a38c862016-01-15 15:50:07 +0100343 *
344 * @param[in] ps Pollsession structure to use.
Michal Vasko11d142a2016-01-19 15:58:24 +0100345 * @param[in] timeout Poll timeout in milliseconds. 0 for non-blocking call, -1 for
Michal Vasko96830e32016-02-01 10:54:18 +0100346 * infinite waiting.
Michal Vasko71090fc2016-05-24 16:37:28 +0200347 * @param[in] session Session that was processed and that specific return bits concern.
348 * Can be NULL.
Michal Vaskoade892d2017-02-22 13:40:35 +0100349 * @return Bitfield of NC_PSPOLL_* macros.
Michal Vasko1a38c862016-01-15 15:50:07 +0100350 */
Michal Vasko71090fc2016-05-24 16:37:28 +0200351int nc_ps_poll(struct nc_pollsession *ps, int timeout, struct nc_session **session);
Michal Vasko086311b2016-01-08 09:53:11 +0100352
Michal Vasko11d142a2016-01-19 15:58:24 +0100353/**
Michal Vaskocad3ac42016-03-01 09:06:01 +0100354 * @brief Remove sessions from a pollsession structure and
355 * call nc_session_free() on them.
Michal Vaskod09eae62016-02-01 10:32:52 +0100356 *
Michal Vaskoc446a382021-06-18 08:54:05 +0200357 * 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 +0100358 *
359 * @param[in] ps Pollsession structure to clear.
Michal Vaskocad3ac42016-03-01 09:06:01 +0100360 * @param[in] all Whether to free all sessions, or only the invalid ones.
Michal Vaskoe1a64ec2016-03-01 12:21:58 +0100361 * @param[in] data_free Session user data destructor.
Michal Vaskod09eae62016-02-01 10:32:52 +0100362 */
Michal Vaskoe1a64ec2016-03-01 12:21:58 +0100363void nc_ps_clear(struct nc_pollsession *ps, int all, void (*data_free)(void *));
Michal Vaskod09eae62016-02-01 10:32:52 +0100364
Michal Vasko1440a742021-03-31 11:11:03 +0200365/** @} Server Session */
Radek Krejci6799a052017-05-19 14:23:23 +0200366
367/**
romanf578cd52023-10-19 09:47:40 +0200368 * @addtogroup server_functions
Radek Krejci6799a052017-05-19 14:23:23 +0200369 * @{
370 */
371
Michal Vasko1a38c862016-01-15 15:50:07 +0100372/**
Michal Vaskoe8e07702017-03-15 10:19:30 +0100373 * @brief Get the number of currently configured listening endpoints.
374 * Note that an ednpoint without address and/or port will be included
375 * even though it is not, in fact, listening.
376 *
377 * @return Number of added listening endpoints.
378 */
379int nc_server_endpt_count(void);
380
romanfb3f7cf2023-11-30 16:10:09 +0100381/**
382 * @brief Create a new UNIX socket endpoint and start listening.
383 *
384 * @param[in] endpt_name Arbitrary unique identifier of the endpoint.
385 * @param[in] unix_socket_path Path to the listening socket.
386 * @param[in] mode New mode, -1 to use default.
387 * @param[in] uid New uid, -1 to use default.
388 * @param[in] gid New gid, -1 to use default.
389 *
390 * @return 0 on success, 1 on error.
391 */
392int 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);
393
394/**
395 * @brief Deletes a UNIX socket endpoint.
396 *
397 * @param[in] endpt_name Identifier of the endpoint.
398 * Has no effect if the endpoint doesn't exist or if its transport is not UNIX socket.
399 */
400void nc_server_del_endpt_unix_socket(const char *endpt_name);
401
romanf578cd52023-10-19 09:47:40 +0200402/** @} */
Radek Krejci6799a052017-05-19 14:23:23 +0200403
404/**
405 * @addtogroup server_session
Michal Vasko4e6d3242021-05-26 09:13:24 +0200406 * @{
Radek Krejci6799a052017-05-19 14:23:23 +0200407 */
408
Michal Vaskoe2713da2016-08-22 16:06:40 +0200409/**
Michal Vasko3031aae2016-01-27 16:07:18 +0100410 * @brief Accept new sessions on all the listening endpoints.
Michal Vasko1a38c862016-01-15 15:50:07 +0100411 *
Michal Vaskob70c8b82017-03-17 09:09:29 +0100412 * Once a new (TCP/IP) conection is established a different (quite long) timeout
413 * is used for waiting for transport-related data, which means this call can block
Michal Vaskoc446a382021-06-18 08:54:05 +0200414 * for much longer that @p timeout, but only with slow/faulty/malicious clients.
Michal Vaskob70c8b82017-03-17 09:09:29 +0100415 *
Michal Vasko93224072021-11-09 12:14:28 +0100416 * Server capabilities are generated based on the content of @p ctx. The context must
romanf578cd52023-10-19 09:47:40 +0200417 * not be destroyed before the accepted NETCONF session is freed. Basic usable context may
418 * be created by calling ::nc_server_init_ctx().
Michal Vasko93224072021-11-09 12:14:28 +0100419 *
420 * Supported RPCs of models in the context are expected to have their callback
421 * in the corresponding RPC schema node set to a nc_rpc_clb function callback using ::nc_set_rpc_callback().
422 * This callback is called by ::nc_ps_poll() if the particular RPC request is
423 * received. Callbacks for ietf-netconf:get-schema (supporting YANG and YIN format
424 * only) and ietf-netconf:close-session are set internally if left unset.
425 *
Michal Vasko11d142a2016-01-19 15:58:24 +0100426 * @param[in] timeout Timeout for receiving a new connection in milliseconds, 0 for
Michal Vasko93224072021-11-09 12:14:28 +0100427 * non-blocking call, -1 for infinite waiting.
428 * @param[in] ctx Context for the session to use.
Michal Vasko96164bf2016-01-21 15:41:58 +0100429 * @param[out] session New session.
Michal Vasko71090fc2016-05-24 16:37:28 +0200430 * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message
431 * parsing fail, NC_MSG_WOULDBLOCK on timeout, NC_MSG_ERROR on other errors.
Michal Vasko1a38c862016-01-15 15:50:07 +0100432 */
Michal Vasko93224072021-11-09 12:14:28 +0100433NC_MSG_TYPE nc_accept(int timeout, const struct ly_ctx *ctx, struct nc_session **session);
Michal Vasko9e036d52016-01-08 10:49:26 +0100434
roman2eab4742023-06-06 10:00:26 +0200435#ifdef NC_ENABLED_SSH_TLS
Michal Vasko086311b2016-01-08 09:53:11 +0100436
Michal Vasko1a38c862016-01-15 15:50:07 +0100437/**
Michal Vaskoc446a382021-06-18 08:54:05 +0200438 * @brief Accept a new NETCONF session on an SSH session of a running NETCONF @p orig_session.
439 * Call this function only when nc_ps_poll() returns #NC_PSPOLL_SSH_CHANNEL on @p orig_session.
Michal Vasko71090fc2016-05-24 16:37:28 +0200440 *
441 * @param[in] orig_session Session that has a new SSH channel ready.
442 * @param[out] session New session.
443 * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message
444 * parsing fail, NC_MSG_WOULDBLOCK on timeout, NC_MSG_ERROR on other errors.
445 */
446NC_MSG_TYPE nc_session_accept_ssh_channel(struct nc_session *orig_session, struct nc_session **session);
447
448/**
Michal Vasko96164bf2016-01-21 15:41:58 +0100449 * @brief Accept a new NETCONF session on an SSH session of a running NETCONF session
Michal Vaskoc446a382021-06-18 08:54:05 +0200450 * that was polled in @p ps. Call this function only when nc_ps_poll() on @p ps returns #NC_PSPOLL_SSH_CHANNEL.
451 * The new session is only returned in @p session, it is not added to @p ps.
Michal Vasko96164bf2016-01-21 15:41:58 +0100452 *
453 * @param[in] ps Unmodified pollsession structure from the previous nc_ps_poll() call.
454 * @param[out] session New session.
Michal Vasko71090fc2016-05-24 16:37:28 +0200455 * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message
456 * parsing fail, NC_MSG_WOULDBLOCK on timeout, NC_MSG_ERROR on other errors.
Michal Vasko96164bf2016-01-21 15:41:58 +0100457 */
Michal Vasko71090fc2016-05-24 16:37:28 +0200458NC_MSG_TYPE nc_ps_accept_ssh_channel(struct nc_pollsession *ps, struct nc_session **session);
Michal Vasko96164bf2016-01-21 15:41:58 +0100459
Michal Vasko1440a742021-03-31 11:11:03 +0200460/** @} Server Session */
Radek Krejci6799a052017-05-19 14:23:23 +0200461
462/**
463 * @defgroup server_ssh Server SSH
464 * @ingroup server
465 *
466 * @brief Server-side settings for SSH connections.
467 * @{
468 */
469
Michal Vasko96164bf2016-01-21 15:41:58 +0100470/**
romana9ec3362023-12-21 10:59:57 +0100471 * @brief Set the format of the path to authorized_keys files.
472 *
473 * This path format will be set globally for all clients wishing to authenticate via the
474 * SSH Public Key system authentication.
475 *
476 * @param[in] path Path to authorized_keys files. The path may contain the following tokens:
477 * - %u - replaced by the username of the user trying to authenticate,
478 * - %h - replaced by the home directory of the user trying to authenticate,
479 * - %U - replaced by the UID of the user trying to authenticate,
480 * - %% - a literal '%'.
481 * @return 0 on success, 1 on error.
482 */
483int nc_server_ssh_set_authkey_path_format(const char *path);
484
485/**
romanf578cd52023-10-19 09:47:40 +0200486 * @brief Set the callback for SSH interactive authentication. If not set, local PAM-based authentication is used.
bhart3bc2f582018-06-05 12:40:32 -0500487 *
romanf578cd52023-10-19 09:47:40 +0200488 * @param[in] interactive_auth_clb Callback that should authenticate the user.
Michal Vasko1440a742021-03-31 11:11:03 +0200489 * Zero return indicates success, non-zero an error.
romanf578cd52023-10-19 09:47:40 +0200490 * @param[in] user_data Optional arbitrary user data that will be passed to @p interactive_auth_clb.
Michal Vaskoc446a382021-06-18 08:54:05 +0200491 * @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 -0500492 */
Michal Vasko1440a742021-03-31 11:11:03 +0200493void nc_server_ssh_set_interactive_auth_clb(int (*interactive_auth_clb)(const struct nc_session *session,
romanf578cd52023-10-19 09:47:40 +0200494 ssh_session ssh_sess, ssh_message msg, void *user_data), void *user_data, void (*free_user_data)(void *user_data));
roman41a11e42022-06-22 09:27:08 +0200495
roman808f3f62023-11-23 16:01:04 +0100496/**
497 * @brief Set the name of the PAM configuration file.
498 *
499 * This filename will be set globally for all clients wishing to authenticate via the
500 * SSH Keyboard Interactive authentication method.
501 *
502 * @param[in] filename Name of the PAM configuration file. The file needs to be located in
503 * the default PAM directory (usually /etc/pam.d/).
504 *
505 * @return 0 on success, 1 on error.
506 */
507int nc_server_ssh_set_pam_conf_filename(const char *filename);
508
Michal Vaskoc446a382021-06-18 08:54:05 +0200509/** @} Server SSH */
Radek Krejci6799a052017-05-19 14:23:23 +0200510
Michal Vasko1a38c862016-01-15 15:50:07 +0100511/**
Radek Krejci6799a052017-05-19 14:23:23 +0200512 * @defgroup server_tls Server TLS
513 * @ingroup server
514 *
515 * @brief Server-side settings for TLS connections.
516 * @{
517 */
518
519/**
Michal Vasko709598e2016-11-28 14:48:32 +0100520 * @brief Get client certificate.
521 *
522 * @param[in] session Session to get the information from.
523 * @return Const session client certificate.
524 */
525const X509 *nc_session_get_client_cert(const struct nc_session *session);
526
527/**
Michal Vasko7060bcf2016-11-28 14:48:11 +0100528 * @brief Set TLS authentication additional verify callback.
529 *
530 * Server will always perform cert-to-name based on its configuration. Only after it passes
531 * and this callback is set, it is also called. It should return exactly what OpenSSL
532 * verify callback meaning 1 for success, 0 to deny the user.
533 *
534 * @param[in] verify_clb Additional user verify callback.
535 */
536void nc_server_tls_set_verify_clb(int (*verify_clb)(const struct nc_session *session));
537
Michal Vaskoc446a382021-06-18 08:54:05 +0200538/** @} Server TLS */
Radek Krejci6799a052017-05-19 14:23:23 +0200539
roman2eab4742023-06-06 10:00:26 +0200540#endif /* NC_ENABLED_SSH_TLS */
Michal Vasko086311b2016-01-08 09:53:11 +0100541
Michal Vaskof8352352016-05-24 09:11:36 +0200542/**
Radek Krejci6799a052017-05-19 14:23:23 +0200543 * @addtogroup server_session
544 * @{
545 */
546
547/**
Michal Vaskoc45ebd32016-05-25 11:17:36 +0200548 * @brief Get session start time.
Michal Vaskof8352352016-05-24 09:11:36 +0200549 *
550 * @param[in] session Session to get the information from.
Michal Vaskoc45ebd32016-05-25 11:17:36 +0200551 * @return Session start time.
Michal Vaskof8352352016-05-24 09:11:36 +0200552 */
roman44efa322023-11-03 13:57:25 +0100553struct timespec nc_session_get_start_time(const struct nc_session *session);
Michal Vaskof8352352016-05-24 09:11:36 +0200554
Michal Vasko3486a7c2017-03-03 13:28:07 +0100555/**
Michal Vasko71dbd772021-03-23 14:08:37 +0100556 * @brief Increase session notification subscription flag count.
557 * Supports multiple subscriptions on one session.
Michal Vasko3486a7c2017-03-03 13:28:07 +0100558 *
559 * It is used only to ignore timeouts, because they are
560 * ignored for sessions with active subscriptions.
561 *
562 * @param[in] session Session to modify.
Michal Vasko3486a7c2017-03-03 13:28:07 +0100563 */
Michal Vasko71dbd772021-03-23 14:08:37 +0100564void nc_session_inc_notif_status(struct nc_session *session);
565
566/**
567 * @brief Decrease session notification subscription flag count.
568 * Supports multiple subscriptions on one session.
569 *
570 * @param[in] session Session to modify.
571 */
572void nc_session_dec_notif_status(struct nc_session *session);
Michal Vasko3486a7c2017-03-03 13:28:07 +0100573
574/**
575 * @brief Get session notification subscription flag.
576 *
577 * @param[in] session Session to get the information from.
578 * @return 0 for no active subscription, non-zero for an active subscription.
579 */
580int nc_session_get_notif_status(const struct nc_session *session);
581
Michal Vaskoc446a382021-06-18 08:54:05 +0200582/** @} Server Session */
Radek Krejci6799a052017-05-19 14:23:23 +0200583
Michal Vaskoc09730e2019-01-17 10:07:26 +0100584#ifdef __cplusplus
585}
586#endif
587
Michal Vasko086311b2016-01-08 09:53:11 +0100588#endif /* NC_SESSION_SERVER_H_ */