blob: 38a01ed257ad4cd364fad8b91ba0fae02d2f04ad [file] [log] [blame]
Michal Vasko086311b2016-01-08 09:53:11 +01001/**
2 * \file session_server.h
3 * \author Michal Vasko <mvasko@cesnet.cz>
4 * \brief libnetconf2 session server manipulation
5 *
6 * Copyright (c) 2015 CESNET, z.s.p.o.
7 *
Radek Krejci9b81f5b2016-02-24 13:14:49 +01008 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
Michal Vaskoafd416b2016-02-25 14:51:46 +010011 *
Radek Krejci9b81f5b2016-02-24 13:14:49 +010012 * https://opensource.org/licenses/BSD-3-Clause
Michal Vasko086311b2016-01-08 09:53:11 +010013 */
14
15#ifndef NC_SESSION_SERVER_H_
16#define NC_SESSION_SERVER_H_
17
18#include <stdint.h>
Michal Vasko05ba9df2016-01-13 14:40:27 +010019#include <libyang/libyang.h>
Michal Vasko086311b2016-01-08 09:53:11 +010020
21#include "session.h"
Michal Vasko086311b2016-01-08 09:53:11 +010022#include "netconf.h"
23
Michal Vasko1a38c862016-01-15 15:50:07 +010024/**
25 * @brief Prototype of callbacks that are called if some RPCs are received.
26 *
27 * If \p session termination reason is changed in the callback, one last reply
28 * is sent and then the session is considered invalid.
29 *
30 * @param[in] rpc Parsed client RPC request.
31 * @param[in] session Session the RPC arrived on.
32 * @return Server reply. If NULL, an operation-failed error will be sent to the client.
33 */
Michal Vasko05ba9df2016-01-13 14:40:27 +010034typedef struct nc_server_reply *(*nc_rpc_clb)(struct lyd_node *rpc, struct nc_session *session);
35
Michal Vasko1a38c862016-01-15 15:50:07 +010036/**
Michal Vasko7b096242016-01-29 15:55:10 +010037 * @brief Set the termination reason for a session. Use only in #nc_rpc_clb callbacks.
Michal Vasko1a38c862016-01-15 15:50:07 +010038 *
39 * @param[in] session Session to modify.
40 * @param[in] reason Reason of termination.
41 */
42void nc_session_set_term_reason(struct nc_session *session, NC_SESSION_TERM_REASON reason);
43
44/**
Michal Vaskoa7b8ca52016-03-01 12:09:29 +010045 * @brief Initialize libssh and/or libssl/libcrypto and the server using a libyang context.
Michal Vasko1a38c862016-01-15 15:50:07 +010046 *
47 * The context is not modified internally, only its dictionary is used for holding
Michal Vaskoa43589b2016-02-17 13:24:59 +010048 * all the strings, which is thread-safe. Reading models is considered thread-safe
49 * as models cannot be removed and are rarely modified (augments or deviations).
Michal Vasko1a38c862016-01-15 15:50:07 +010050 *
Michal Vasko3a889fd2016-09-30 12:16:37 +020051 * If the RPC callbacks on schema nodes (mentioned in @ref howtoserver) are modified after
Michal Vasko5494f512016-03-01 12:13:44 +010052 * server initialization with that particular context, they will be called (changes
53 * will take effect). However, there could be race conditions as the access to
54 * these callbacks is not thread-safe.
55 *
Michal Vasko1a38c862016-01-15 15:50:07 +010056 * Server capabilities are generated based on its content. Changing the context
57 * in ways that result in changed capabilities (adding models, changing features)
58 * is discouraged after sessions are established as it is not possible to change
59 * capabilities of a session.
60 *
61 * This context can safely be destroyed only after calling the last libnetconf2
62 * function in an application.
63 *
Michal Vasko3a889fd2016-09-30 12:16:37 +020064 * Supported RPCs of models in the context are expected to have their callback
65 * in the corresponding RPC schema node set to a nc_rpc_clb function callback using nc_set_rpc_callback().
Michal Vasko1a38c862016-01-15 15:50:07 +010066 * This callback is called by nc_ps_poll() if the particular RPC request is
67 * received. Callbacks for ietf-netconf:get-schema (supporting YANG and YIN format
68 * only) and ietf-netconf:close-session are set internally if left unset.
69 *
Michal Vasko1a38c862016-01-15 15:50:07 +010070 * @param[in] ctx Core NETCONF server context.
71 * @return 0 on success, -1 on error.
72 */
Michal Vasko086311b2016-01-08 09:53:11 +010073int nc_server_init(struct ly_ctx *ctx);
74
Michal Vasko1a38c862016-01-15 15:50:07 +010075/**
Michal Vaskoa7b8ca52016-03-01 12:09:29 +010076 * @brief Destroy any dynamically allocated libssh and/or libssl/libcrypto and
77 * server resources.
Michal Vaskob48aa812016-01-18 14:13:09 +010078 */
79void nc_server_destroy(void);
80
81/**
Michal Vasko1a38c862016-01-15 15:50:07 +010082 * @brief Set the with-defaults capability extra parameters.
83 *
84 * For the capability to be actually advertised, the server context must also
85 * include the ietf-netconf-with-defaults model.
86 *
87 * Changing this option has the same ill effects as changing capabilities while
88 * sessions are already established.
89 *
90 * @param[in] basic_mode basic-mode with-defaults parameter.
91 * @param[in] also_supported NC_WD_MODE bit array, also-supported with-defaults
92 * parameter.
93 * @return 0 on success, -1 on error.
94 */
Michal Vasko086311b2016-01-08 09:53:11 +010095int nc_server_set_capab_withdefaults(NC_WD_MODE basic_mode, int also_supported);
96
Michal Vasko1a38c862016-01-15 15:50:07 +010097/**
Michal Vasko55f03972016-04-13 08:56:01 +020098 * @brief Get with-defaults capability extra parameters.
99 *
100 * At least one argument must be non-NULL.
101 *
102 * @param[in,out] basic_mode basic-mode parameter.
103 * @param[in,out] also_supported also-supported parameter.
104 */
105void nc_server_get_capab_withdefaults(NC_WD_MODE *basic_mode, int *also_supported);
106
107/**
Michal Vasko1a38c862016-01-15 15:50:07 +0100108 * @brief Set the interleave capability.
109 *
110 * For the capability to be actually advertised, the server context must also
111 * include the nc-notifications model.
112 *
113 * Changing this option has the same ill effects as changing capabilities while
114 * sessions are already established.
115 *
116 * @param[in] interleave_support 1 to suport interleave, 0 to not.
117 */
118void nc_server_set_capab_interleave(int interleave_support);
Michal Vasko086311b2016-01-08 09:53:11 +0100119
Michal Vasko1a38c862016-01-15 15:50:07 +0100120/**
Michal Vasko55f03972016-04-13 08:56:01 +0200121 * @brief Get the interleave capability state.
122 *
123 * @return 1 for supported, 0 for not supported.
124 */
125int nc_server_get_capab_interleave(void);
126
127/**
Michal Vasko1a38c862016-01-15 15:50:07 +0100128 * @brief Set server timeout for receiving a hello message.
129 *
130 * @param[in] hello_timeout Hello message timeout. 0 for infinite waiting.
131 */
132void nc_server_set_hello_timeout(uint16_t hello_timeout);
Michal Vasko086311b2016-01-08 09:53:11 +0100133
Michal Vasko1a38c862016-01-15 15:50:07 +0100134/**
Michal Vasko55f03972016-04-13 08:56:01 +0200135 * @brief get server timeout for receiving a hello message.
136 *
137 * @return Hello message timeout, 0 is infinite.
138 */
139uint16_t nc_server_get_hello_timeout(void);
140
141/**
Michal Vasko1a38c862016-01-15 15:50:07 +0100142 * @brief Set server timeout for dropping an idle session.
143 *
144 * @param[in] idle_timeout Idle session timeout. 0 to never drop a session
Michal Vaskof0537d82016-01-29 14:42:38 +0100145 * because of inactivity.
Michal Vasko1a38c862016-01-15 15:50:07 +0100146 */
147void nc_server_set_idle_timeout(uint16_t idle_timeout);
Michal Vasko086311b2016-01-08 09:53:11 +0100148
Michal Vasko1a38c862016-01-15 15:50:07 +0100149/**
Michal Vasko55f03972016-04-13 08:56:01 +0200150 * @brief Get server timeout for dropping an idle session.
151 *
152 * @return Idle session timeout, 0 for for never dropping
153 * a session because of inactivity.
154 */
155uint16_t nc_server_get_idle_timeout(void);
156
157/**
Michal Vasko4ffa3b22016-05-24 16:36:25 +0200158 * @brief Get all the server capabilities as will be sent to every client.
159 *
160 * A few capabilities (with-defaults, interleave) depend on the current
161 * server options.
162 *
163 * @param[in] ctx Context to read most capabilities from.
164 * @return Array of capabilities stored in the \p ctx dictionary, NULL on error.
165 */
166const char **nc_server_get_cpblts(struct ly_ctx *ctx);
167
168/**
Michal Vasko1a38c862016-01-15 15:50:07 +0100169 * @brief Accept a new session on a pre-established transport session.
170 *
171 * @param[in] fdin File descriptor to read (unencrypted) XML data from.
172 * @param[in] fdout File descriptor to write (unencrypted) XML data to.
173 * @param[in] username NETCONF username as provided by the transport protocol.
174 * @param[out] session New session on success.
Michal Vasko71090fc2016-05-24 16:37:28 +0200175 * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message
176 * parsing fail, NC_MSG_WOULDBLOCK on timeout, NC_MSG_ERROR on other errors.
Michal Vasko1a38c862016-01-15 15:50:07 +0100177 */
Michal Vasko71090fc2016-05-24 16:37:28 +0200178NC_MSG_TYPE nc_accept_inout(int fdin, int fdout, const char *username, struct nc_session **session);
Michal Vasko086311b2016-01-08 09:53:11 +0100179
Michal Vasko1a38c862016-01-15 15:50:07 +0100180/**
fanchanghu966f2de2016-07-21 02:28:57 -0400181 * @brief Set a global nc_rpc_clb that is called if the particular RPC request is
182 * received and the private field in the corresponding RPC schema node is NULL.
183 *
184 * @param[in] clb An user-defined nc_rpc_clb function callback, NULL to default.
185 */
186void nc_set_global_rpc_clb(nc_rpc_clb clb);
187
188/**
Michal Vasko1a38c862016-01-15 15:50:07 +0100189 * @brief Create an empty structure for polling sessions.
190 *
191 * @return Empty pollsession structure, NULL on error.
192 */
Michal Vasko05ba9df2016-01-13 14:40:27 +0100193struct nc_pollsession *nc_ps_new(void);
Michal Vaskofb89d772016-01-08 12:25:35 +0100194
Michal Vasko1a38c862016-01-15 15:50:07 +0100195/**
196 * @brief Free a pollsession structure.
197 *
Michal Vasko01082bf2016-04-07 10:44:21 +0200198 * !IMPORTANT! Make sure that \p ps is not accessible (is not used)
199 * by any thread before and after this call!
200 *
Michal Vasko1a38c862016-01-15 15:50:07 +0100201 * @param[in] ps Pollsession structure to free.
202 */
Michal Vasko05ba9df2016-01-13 14:40:27 +0100203void nc_ps_free(struct nc_pollsession *ps);
Michal Vaskofb89d772016-01-08 12:25:35 +0100204
Michal Vasko1a38c862016-01-15 15:50:07 +0100205/**
206 * @brief Add a session to a pollsession structure.
207 *
208 * @param[in] ps Pollsession structure to modify.
209 * @param[in] session Session to add to \p ps.
210 * @return 0 on success, -1 on error.
211 */
Michal Vasko05ba9df2016-01-13 14:40:27 +0100212int nc_ps_add_session(struct nc_pollsession *ps, struct nc_session *session);
Michal Vaskofb89d772016-01-08 12:25:35 +0100213
Michal Vasko1a38c862016-01-15 15:50:07 +0100214/**
215 * @brief Remove a session from a pollsession structure.
216 *
217 * @param[in] ps Pollsession structure to modify.
218 * @param[in] session Session to remove from \p ps.
Michal Vaskof0537d82016-01-29 14:42:38 +0100219 * @return 0 on success, -1 on not found.
Michal Vasko1a38c862016-01-15 15:50:07 +0100220 */
Michal Vasko05ba9df2016-01-13 14:40:27 +0100221int nc_ps_del_session(struct nc_pollsession *ps, struct nc_session *session);
222
Michal Vasko1a38c862016-01-15 15:50:07 +0100223/**
Michal Vasko0fdb7ac2016-03-01 09:03:12 +0100224 * @brief Learn the number of sessions in a pollsession structure.
225 *
226 * @param[in] ps Pollsession structure to check.
Michal Vaskoc72d0e62016-07-26 11:36:11 +0200227 * @return Number of sessions (even invalid ones) in \p ps, -1 on error.
Michal Vasko0fdb7ac2016-03-01 09:03:12 +0100228 */
229uint16_t nc_ps_session_count(struct nc_pollsession *ps);
230
Michal Vasko71090fc2016-05-24 16:37:28 +0200231#define NC_PSPOLL_TIMEOUT 0x0001 /**< Timeout elapsed. */
232#define NC_PSPOLL_RPC 0x0002 /**< RPC was correctly parsed and processed. */
233#define NC_PSPOLL_BAD_RPC 0x0004 /**< RPC was received, but failed to be parsed. */
234#define NC_PSPOLL_REPLY_ERROR 0x0008 /**< Response to the RPC was a \<rpc-reply\> of type error. */
235#define NC_PSPOLL_SESSION_TERM 0x0010 /**< Some session was terminated. */
Michal Vaskoc72d0e62016-07-26 11:36:11 +0200236#define NC_PSPOLL_SESSION_ERROR 0x0020 /**< Some session was terminated incorrectly (not by a \<close-session\> or \<kill-session\> RPC). */
Michal Vasko71090fc2016-05-24 16:37:28 +0200237#define NC_PSPOLL_PENDING 0x0040 /**< Unhandled pending events on other session. */
238#define NC_PSPOLL_ERROR 0x0080 /**< Other fatal errors (they are printed). */
239
240#ifdef NC_ENABLED_SSH
241# define NC_PSPOLL_SSH_MSG 0x0100 /**< SSH message received (and processed, if relevant, only with SSH support). */
242# define NC_PSPOLL_SSH_CHANNEL 0x0200 /**< New SSH channel opened on an existing session (only with SSH support). */
243#endif
244
Michal Vasko0fdb7ac2016-03-01 09:03:12 +0100245/**
Michal Vasko1a38c862016-01-15 15:50:07 +0100246 * @brief Poll sessions and process any received RPCs.
247 *
Michal Vasko71090fc2016-05-24 16:37:28 +0200248 * All the sessions must be running. Only one event on one session
Michal Vasko96164bf2016-01-21 15:41:58 +0100249 * is handled in one function call.
Michal Vasko1a38c862016-01-15 15:50:07 +0100250 *
251 * @param[in] ps Pollsession structure to use.
Michal Vasko11d142a2016-01-19 15:58:24 +0100252 * @param[in] timeout Poll timeout in milliseconds. 0 for non-blocking call, -1 for
Michal Vasko96830e32016-02-01 10:54:18 +0100253 * infinite waiting.
Michal Vasko71090fc2016-05-24 16:37:28 +0200254 * @param[in] session Session that was processed and that specific return bits concern.
255 * Can be NULL.
256 * @return Bitfield of NC_PSPOLL_* macros, almost any combination can be returned.
Michal Vasko1a38c862016-01-15 15:50:07 +0100257 */
Michal Vasko71090fc2016-05-24 16:37:28 +0200258int nc_ps_poll(struct nc_pollsession *ps, int timeout, struct nc_session **session);
Michal Vasko086311b2016-01-08 09:53:11 +0100259
Michal Vasko11d142a2016-01-19 15:58:24 +0100260/**
Michal Vaskocad3ac42016-03-01 09:06:01 +0100261 * @brief Remove sessions from a pollsession structure and
262 * call nc_session_free() on them.
Michal Vaskod09eae62016-02-01 10:32:52 +0100263 *
Michal Vaskocad3ac42016-03-01 09:06:01 +0100264 * Calling this function with \p all false makes sense if nc_ps_poll() returned 3.
Michal Vaskod09eae62016-02-01 10:32:52 +0100265 *
266 * @param[in] ps Pollsession structure to clear.
Michal Vaskocad3ac42016-03-01 09:06:01 +0100267 * @param[in] all Whether to free all sessions, or only the invalid ones.
Michal Vaskoe1a64ec2016-03-01 12:21:58 +0100268 * @param[in] data_free Session user data destructor.
Michal Vaskod09eae62016-02-01 10:32:52 +0100269 */
Michal Vaskoe1a64ec2016-03-01 12:21:58 +0100270void nc_ps_clear(struct nc_pollsession *ps, int all, void (*data_free)(void *));
Michal Vaskod09eae62016-02-01 10:32:52 +0100271
Radek Krejci53691be2016-02-22 13:58:37 +0100272#if defined(NC_ENABLED_SSH) || defined(NC_ENABLED_TLS)
Michal Vasko9e036d52016-01-08 10:49:26 +0100273
Michal Vasko1a38c862016-01-15 15:50:07 +0100274/**
Michal Vaskoe2713da2016-08-22 16:06:40 +0200275 * @brief Add a new endpoint.
276 *
277 * Before the endpoint can accept any connections, its address and port must
Michal Vasko2e6defd2016-10-07 15:48:15 +0200278 * be set.
Michal Vaskoe2713da2016-08-22 16:06:40 +0200279 *
280 * @param[in] name Arbitrary unique endpoint name.
Michal Vasko2e6defd2016-10-07 15:48:15 +0200281 * @param[in] ti Transport protocol to use.
Michal Vaskoe2713da2016-08-22 16:06:40 +0200282 * @return 0 on success, -1 on error.
283 */
Michal Vasko2e6defd2016-10-07 15:48:15 +0200284int nc_server_add_endpt(const char *name, NC_TRANSPORT_IMPL ti);
Michal Vaskoe2713da2016-08-22 16:06:40 +0200285
286/**
287 * @brief Stop listening on and remove an endpoint.
288 *
289 * @param[in] name Endpoint name. NULL matches all endpoints.
Michal Vasko59050372016-11-22 14:33:55 +0100290 * @param[in] ti Endpoint transport protocol. NULL matches any protocol.
291 * Redundant to set if \p name is set, endpoint names are
292 * unique disregarding their protocol.
Michal Vaskoe2713da2016-08-22 16:06:40 +0200293 * @return 0 on success, -1 on not finding any match.
294 */
Michal Vasko59050372016-11-22 14:33:55 +0100295int nc_server_del_endpt(const char *name, NC_TRANSPORT_IMPL ti);
Michal Vaskoe2713da2016-08-22 16:06:40 +0200296
297/**
Michal Vasko2e6defd2016-10-07 15:48:15 +0200298 * @brief Change endpoint listening address.
299 *
300 * On error the previous listening socket (if any) is left untouched.
301 *
302 * @param[in] endpt_name Existing endpoint name.
303 * @param[in] address New listening address.
304 * @return 0 on success, -1 on error.
305 */
306int nc_server_endpt_set_address(const char *endpt_name, const char *address);
307
308/**
309 * @brief Change endpoint listening port.
310 *
311 * On error the previous listening socket (if any) is left untouched.
312 *
313 * @param[in] endpt_name Existing endpoint name.
314 * @param[in] port New listening port.
315 * @return 0 on success, -1 on error.
316 */
317int nc_server_endpt_set_port(const char *endpt_name, uint16_t port);
318
319/**
Michal Vasko3031aae2016-01-27 16:07:18 +0100320 * @brief Accept new sessions on all the listening endpoints.
Michal Vasko1a38c862016-01-15 15:50:07 +0100321 *
Michal Vasko11d142a2016-01-19 15:58:24 +0100322 * @param[in] timeout Timeout for receiving a new connection in milliseconds, 0 for
Michal Vasko71090fc2016-05-24 16:37:28 +0200323 * non-blocking call, -1 for infinite waiting.
Michal Vasko96164bf2016-01-21 15:41:58 +0100324 * @param[out] session New session.
Michal Vasko71090fc2016-05-24 16:37:28 +0200325 * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message
326 * parsing fail, NC_MSG_WOULDBLOCK on timeout, NC_MSG_ERROR on other errors.
Michal Vasko1a38c862016-01-15 15:50:07 +0100327 */
Michal Vasko71090fc2016-05-24 16:37:28 +0200328NC_MSG_TYPE nc_accept(int timeout, struct nc_session **session);
Michal Vasko9e036d52016-01-08 10:49:26 +0100329
Radek Krejci53691be2016-02-22 13:58:37 +0100330#endif /* NC_ENABLED_SSH || NC_ENABLED_TLS */
Michal Vasko9e036d52016-01-08 10:49:26 +0100331
Radek Krejci53691be2016-02-22 13:58:37 +0100332#ifdef NC_ENABLED_SSH
Michal Vasko086311b2016-01-08 09:53:11 +0100333
Michal Vasko1a38c862016-01-15 15:50:07 +0100334/**
Michal Vasko71090fc2016-05-24 16:37:28 +0200335 * @brief Accept a new NETCONF session on an SSH session of a running NETCONF \p orig_session.
336 * Call this function only when nc_ps_poll() returns NC_PSPOLL_SSH_CHANNEL on \p orig_session.
337 *
338 * @param[in] orig_session Session that has a new SSH channel ready.
339 * @param[out] session New session.
340 * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message
341 * parsing fail, NC_MSG_WOULDBLOCK on timeout, NC_MSG_ERROR on other errors.
342 */
343NC_MSG_TYPE nc_session_accept_ssh_channel(struct nc_session *orig_session, struct nc_session **session);
344
345/**
Michal Vasko96164bf2016-01-21 15:41:58 +0100346 * @brief Accept a new NETCONF session on an SSH session of a running NETCONF session
Michal Vasko71090fc2016-05-24 16:37:28 +0200347 * that was polled in \p ps. Call this function only when nc_ps_poll() on \p ps returns NC_PSPOLL_SSH_CHANNEL.
Michal Vaskoc0fde012016-03-01 09:07:23 +0100348 * The new session is only returned in \p session, it is not added to \p ps.
Michal Vasko96164bf2016-01-21 15:41:58 +0100349 *
350 * @param[in] ps Unmodified pollsession structure from the previous nc_ps_poll() call.
351 * @param[out] session New session.
Michal Vasko71090fc2016-05-24 16:37:28 +0200352 * @return NC_MSG_HELLO on success, NC_MSG_BAD_HELLO on client \<hello\> message
353 * parsing fail, NC_MSG_WOULDBLOCK on timeout, NC_MSG_ERROR on other errors.
Michal Vasko96164bf2016-01-21 15:41:58 +0100354 */
Michal Vasko71090fc2016-05-24 16:37:28 +0200355NC_MSG_TYPE nc_ps_accept_ssh_channel(struct nc_pollsession *ps, struct nc_session **session);
Michal Vasko96164bf2016-01-21 15:41:58 +0100356
357/**
Michal Vaskoe2713da2016-08-22 16:06:40 +0200358 * @brief Add endpoint SSH host keys the server will identify itself with. Any RSA, DSA, and
359 * ECDSA keys can be added. However, a maximum of one key of each type will be used
360 * during SSH authentication, later keys replacing the earlier ones.
Michal Vasko1a38c862016-01-15 15:50:07 +0100361 *
Michal Vaskoda514772016-02-01 11:32:01 +0100362 * @param[in] endpt_name Existing endpoint name.
Michal Vasko1a38c862016-01-15 15:50:07 +0100363 * @param[in] privkey_path Path to a private key.
364 * @return 0 on success, -1 on error.
365 */
Michal Vaskoe2713da2016-08-22 16:06:40 +0200366int nc_server_ssh_endpt_add_hostkey(const char *endpt_name, const char *privkey_path);
367
368/**
369 * @brief Delete endpoint SSH host keys. Their order is preserved.
370 *
371 * @param[in] endpt_name Existing endpoint name.
372 * @param[in] privkey_path Path to a private key. NULL matches all the keys.
373 * @return 0 on success, -1 on error.
374 */
375int nc_server_ssh_endpt_del_hostkey(const char *endpt_name, const char *privkey_path);
Michal Vasko086311b2016-01-08 09:53:11 +0100376
Michal Vasko1a38c862016-01-15 15:50:07 +0100377/**
Michal Vasko3031aae2016-01-27 16:07:18 +0100378 * @brief Set endpoint SSH banner the server will send to every client.
Michal Vasko1a38c862016-01-15 15:50:07 +0100379 *
Michal Vaskoda514772016-02-01 11:32:01 +0100380 * @param[in] endpt_name Existing endpoint name.
Michal Vasko1a38c862016-01-15 15:50:07 +0100381 * @param[in] banner SSH banner.
382 * @return 0 on success, -1 on error.
383 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100384int nc_server_ssh_endpt_set_banner(const char *endpt_name, const char *banner);
Michal Vasko086311b2016-01-08 09:53:11 +0100385
Michal Vasko1a38c862016-01-15 15:50:07 +0100386/**
Michal Vasko3031aae2016-01-27 16:07:18 +0100387 * @brief Set endpoint accepted SSH authentication methods. All (publickey, password, interactive)
Michal Vaskof0537d82016-01-29 14:42:38 +0100388 * are supported by default.
Michal Vasko1a38c862016-01-15 15:50:07 +0100389 *
Michal Vaskoda514772016-02-01 11:32:01 +0100390 * @param[in] endpt_name Existing endpoint name.
Michal Vasko1a38c862016-01-15 15:50:07 +0100391 * @param[in] auth_methods Accepted authentication methods bit field of NC_SSH_AUTH_TYPE.
392 * @return 0 on success, -1 on error.
393 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100394int nc_server_ssh_endpt_set_auth_methods(const char *endpt_name, int auth_methods);
Michal Vasko086311b2016-01-08 09:53:11 +0100395
Michal Vasko1a38c862016-01-15 15:50:07 +0100396/**
Michal Vasko3031aae2016-01-27 16:07:18 +0100397 * @brief Set endpoint SSH authentication attempts of every client. 3 by default.
Michal Vasko1a38c862016-01-15 15:50:07 +0100398 *
Michal Vaskoda514772016-02-01 11:32:01 +0100399 * @param[in] endpt_name Existing endpoint name.
Michal Vasko5e6f4cc2016-01-20 13:27:44 +0100400 * @param[in] auth_attempts Failed authentication attempts before a client is dropped.
Michal Vasko1a38c862016-01-15 15:50:07 +0100401 * @return 0 on success, -1 on error.
402 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100403int nc_server_ssh_endpt_set_auth_attempts(const char *endpt_name, uint16_t auth_attempts);
Michal Vasko086311b2016-01-08 09:53:11 +0100404
Michal Vasko1a38c862016-01-15 15:50:07 +0100405/**
Michal Vasko3031aae2016-01-27 16:07:18 +0100406 * @brief Set endpoint SSH authentication timeout. 10 seconds by default.
Michal Vasko1a38c862016-01-15 15:50:07 +0100407 *
Michal Vaskoda514772016-02-01 11:32:01 +0100408 * @param[in] endpt_name Existing endpoint name.
Michal Vasko1a38c862016-01-15 15:50:07 +0100409 * @param[in] auth_timeout Number of seconds before an unauthenticated client is dropped.
410 * @return 0 on success, -1 on error.
411 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100412int nc_server_ssh_endpt_set_auth_timeout(const char *endpt_name, uint16_t auth_timeout);
Michal Vasko086311b2016-01-08 09:53:11 +0100413
Michal Vasko1a38c862016-01-15 15:50:07 +0100414/**
Michal Vasko3031aae2016-01-27 16:07:18 +0100415 * @brief Add an endpoint authorized client SSH public key. This public key can be used for
Michal Vaskof0537d82016-01-29 14:42:38 +0100416 * publickey authentication afterwards.
Michal Vasko1a38c862016-01-15 15:50:07 +0100417 *
Michal Vaskoda514772016-02-01 11:32:01 +0100418 * @param[in] endpt_name Existing endpoint name.
Michal Vasko1a38c862016-01-15 15:50:07 +0100419 * @param[in] pubkey_path Path to the public key.
420 * @param[in] username Username that the client with the public key must use.
421 * @return 0 on success, -1 on error.
422 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100423int nc_server_ssh_endpt_add_authkey(const char *endpt_name, const char *pubkey_path, const char *username);
Michal Vasko086311b2016-01-08 09:53:11 +0100424
Michal Vasko1a38c862016-01-15 15:50:07 +0100425/**
Michal Vasko3031aae2016-01-27 16:07:18 +0100426 * @brief Remove an endpoint authorized client SSH public key.
Michal Vasko1a38c862016-01-15 15:50:07 +0100427 *
Michal Vaskoda514772016-02-01 11:32:01 +0100428 * @param[in] endpt_name Existing endpoint name.
Michal Vasko1a38c862016-01-15 15:50:07 +0100429 * @param[in] pubkey_path Path to an authorized public key. NULL matches all the keys.
430 * @param[in] username Username for an authorized public key. NULL matches all the usernames.
431 * @return 0 on success, -1 on not finding any match.
432 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100433int nc_server_ssh_endpt_del_authkey(const char *endpt_name, const char *pubkey_path, const char *username);
434
Radek Krejci53691be2016-02-22 13:58:37 +0100435#endif /* NC_ENABLED_SSH */
Michal Vasko086311b2016-01-08 09:53:11 +0100436
Radek Krejci53691be2016-02-22 13:58:37 +0100437#ifdef NC_ENABLED_TLS
Michal Vasko086311b2016-01-08 09:53:11 +0100438
Michal Vasko1a38c862016-01-15 15:50:07 +0100439/**
Michal Vaskoa8748792016-11-22 14:34:26 +0100440 * @brief Set the server TLS certificate. Alternative to nc_tls_server_set_cert_path().
Michal Vasko1a38c862016-01-15 15:50:07 +0100441 *
Michal Vaskoda514772016-02-01 11:32:01 +0100442 * @param[in] endpt_name Existing endpoint name.
Michal Vaskoa8748792016-11-22 14:34:26 +0100443 * @param[in] cert Base64-encoded certificate in ASN.1 DER encoding. If NULL, the used certificate is cleared.
Michal Vasko1a38c862016-01-15 15:50:07 +0100444 * @return 0 on success, -1 on error.
445 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100446int nc_server_tls_endpt_set_cert(const char *endpt_name, const char *cert);
Michal Vasko086311b2016-01-08 09:53:11 +0100447
Michal Vasko1a38c862016-01-15 15:50:07 +0100448/**
Michal Vaskoa8748792016-11-22 14:34:26 +0100449 * @brief Set the server TLS certificate. Alternative to nc_tls_server_set_cert().
Michal Vasko1a38c862016-01-15 15:50:07 +0100450 *
Michal Vaskoda514772016-02-01 11:32:01 +0100451 * @param[in] endpt_name Existing endpoint name.
Michal Vaskoa8748792016-11-22 14:34:26 +0100452 * @param[in] cert_path Path to a certificate file in PEM format. If NULL, the used certificate is cleared.
Michal Vasko1a38c862016-01-15 15:50:07 +0100453 * @return 0 on success, -1 on error.
454 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100455int nc_server_tls_endpt_set_cert_path(const char *endpt_name, const char *cert_path);
Michal Vasko0457bb42016-01-08 15:49:13 +0100456
Michal Vasko1a38c862016-01-15 15:50:07 +0100457/**
Michal Vaskoa8748792016-11-22 14:34:26 +0100458 * @brief Set the server TLS private key matching the certificate.
Michal Vasko1a38c862016-01-15 15:50:07 +0100459 *
Michal Vaskoda514772016-02-01 11:32:01 +0100460 * @param[in] endpt_name Existing endpoint name.
Michal Vaskoa8748792016-11-22 14:34:26 +0100461 * @param[in] privkey Base64-encoded certificate in ASN.1 DER encoding. If NULL, the used key is cleared.
Michal Vasko1a38c862016-01-15 15:50:07 +0100462 * @param[in] is_rsa Whether \p privkey are the data of an RSA (1) or DSA (0) key.
463 * @return 0 on success, -1 on error.
464 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100465int nc_server_tls_endpt_set_key(const char *endpt_name, const char *privkey, int is_rsa);
Michal Vaskoc14e3c82016-01-11 16:14:30 +0100466
Michal Vasko1a38c862016-01-15 15:50:07 +0100467/**
Michal Vaskoa8748792016-11-22 14:34:26 +0100468 * @brief Set the server TLS private key matching the certificate.
Michal Vasko1a38c862016-01-15 15:50:07 +0100469 *
Michal Vaskoda514772016-02-01 11:32:01 +0100470 * @param[in] endpt_name Existing endpoint name.
Michal Vaskoa8748792016-11-22 14:34:26 +0100471 * @param[in] privkey_path Path to a private key file in PEM format. If NULL, the used key is cleared.
Michal Vasko1a38c862016-01-15 15:50:07 +0100472 * @return 0 on success, -1 on error.
473 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100474int nc_server_tls_endpt_set_key_path(const char *endpt_name, const char *privkey_path);
Michal Vasko0457bb42016-01-08 15:49:13 +0100475
Michal Vasko1a38c862016-01-15 15:50:07 +0100476/**
Michal Vasko5d2ad082016-02-09 11:47:59 +0100477 * @brief Add a trusted certificate. Can be both a CA or a client one. Can be
Michal Vaskofdfd9dd2016-02-29 10:18:46 +0100478 * safely used together with nc_server_tls_endpt_set_trusted_ca_paths().
Michal Vasko1a38c862016-01-15 15:50:07 +0100479 *
Michal Vaskoda514772016-02-01 11:32:01 +0100480 * @param[in] endpt_name Existing endpoint name.
Michal Vaskoe2713da2016-08-22 16:06:40 +0200481 * @param[in] cert_name Arbitary name identifying this certificate.
Michal Vaskof0537d82016-01-29 14:42:38 +0100482 * @param[in] cert Base64-enocded certificate in ASN.1 DER encoding.
Michal Vasko1a38c862016-01-15 15:50:07 +0100483 * @return 0 on success, -1 on error.
484 */
Michal Vaskoe2713da2016-08-22 16:06:40 +0200485int nc_server_tls_endpt_add_trusted_cert(const char *endpt_name, const char *cert_name, const char *cert);
Michal Vasko0457bb42016-01-08 15:49:13 +0100486
Michal Vasko1a38c862016-01-15 15:50:07 +0100487/**
Michal Vasko5d2ad082016-02-09 11:47:59 +0100488 * @brief Add a trusted certificate. Can be both a CA or a client one. Can be
Michal Vaskofdfd9dd2016-02-29 10:18:46 +0100489 * safely used together with nc_server_tls_endpt_set_trusted_ca_paths().
Michal Vasko1a38c862016-01-15 15:50:07 +0100490 *
Michal Vaskoda514772016-02-01 11:32:01 +0100491 * @param[in] endpt_name Existing endpoint name.
Michal Vaskoe2713da2016-08-22 16:06:40 +0200492 * @param[in] cert_name Arbitary name identifying this certificate.
Michal Vasko1a38c862016-01-15 15:50:07 +0100493 * @param[in] cert_path Path to a trusted certificate file in PEM format.
494 * @return 0 on success, -1 on error.
495 */
Michal Vaskoe2713da2016-08-22 16:06:40 +0200496int nc_server_tls_endpt_add_trusted_cert_path(const char *endpt_name, const char *cert_name, const char *cert_path);
Michal Vasko0457bb42016-01-08 15:49:13 +0100497
Michal Vasko1a38c862016-01-15 15:50:07 +0100498/**
499 * @brief Set trusted Certificate Authority certificate locations. There can only be
Michal Vasko5d2ad082016-02-09 11:47:59 +0100500 * one file and one directory, they are replaced if already set. Can be safely
Michal Vaskofdfd9dd2016-02-29 10:18:46 +0100501 * used with nc_server_tls_endpt_add_trusted_cert() or its _path variant.
Michal Vasko1a38c862016-01-15 15:50:07 +0100502 *
Michal Vaskoda514772016-02-01 11:32:01 +0100503 * @param[in] endpt_name Existing endpoint name.
Michal Vasko96830e32016-02-01 10:54:18 +0100504 * @param[in] ca_file Path to a trusted CA cert store file in PEM format. Can be NULL.
505 * @param[in] ca_dir Path to a trusted CA cert store hashed directory (c_rehash utility
506 * can be used to create hashes) with PEM files. Can be NULL.
Michal Vasko1a38c862016-01-15 15:50:07 +0100507 * @return 0 on success, -1 on error.
508 */
Michal Vasko96830e32016-02-01 10:54:18 +0100509int 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 +0100510
Michal Vasko1a38c862016-01-15 15:50:07 +0100511/**
512 * @brief Destroy and clean all the set certificates and private keys. CRLs and
Michal Vaskof0537d82016-01-29 14:42:38 +0100513 * CTN entries are not affected.
Michal Vaskoda514772016-02-01 11:32:01 +0100514 *
515 * @param[in] endpt_name Existing endpoint name.
Michal Vaskoe2713da2016-08-22 16:06:40 +0200516 * @param[in] cert_name Name of the certificate to delete. NULL deletes all the certificates.
517 * @return 0 on success, -1 on not found.
Michal Vasko1a38c862016-01-15 15:50:07 +0100518 */
Michal Vaskoe2713da2016-08-22 16:06:40 +0200519int nc_server_tls_endpt_del_trusted_cert(const char *endpt_name, const char *cert_name);
Michal Vasko0457bb42016-01-08 15:49:13 +0100520
Michal Vasko1a38c862016-01-15 15:50:07 +0100521/**
522 * @brief Set Certificate Revocation List locations. There can only be one file
Michal Vaskof0537d82016-01-29 14:42:38 +0100523 * and one directory, they are replaced if already set.
Michal Vasko1a38c862016-01-15 15:50:07 +0100524 *
Michal Vaskoda514772016-02-01 11:32:01 +0100525 * @param[in] endpt_name Existing endpoint name.
Michal Vasko96830e32016-02-01 10:54:18 +0100526 * @param[in] crl_file Path to a CRL store file in PEM format. Can be NULL.
527 * @param[in] crl_dir Path to a CRL store hashed directory (c_rehash utility
528 * can be used to create hashes) with PEM files. Can be NULL.
Michal Vasko1a38c862016-01-15 15:50:07 +0100529 * @return 0 on success, -1 on error.
530 */
Michal Vasko96830e32016-02-01 10:54:18 +0100531int 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 +0100532
Michal Vasko1a38c862016-01-15 15:50:07 +0100533/**
Michal Vasko96830e32016-02-01 10:54:18 +0100534 * @brief Destroy and clean CRLs. Certificates, private keys, and CTN entries are
Michal Vaskof0537d82016-01-29 14:42:38 +0100535 * not affected.
Michal Vaskoda514772016-02-01 11:32:01 +0100536 *
537 * @param[in] endpt_name Existing endpoint name.
Michal Vasko1a38c862016-01-15 15:50:07 +0100538 */
Michal Vaskoc6b9c7b2016-01-28 11:10:08 +0100539void nc_server_tls_endpt_clear_crls(const char *endpt_name);
Michal Vasko0457bb42016-01-08 15:49:13 +0100540
Michal Vasko1a38c862016-01-15 15:50:07 +0100541/**
Michal Vasko58c22a22016-11-23 13:49:53 +0100542 * @brief Add a cert-to-name entry.
Michal Vasko1a38c862016-01-15 15:50:07 +0100543 *
Michal Vaskoda514772016-02-01 11:32:01 +0100544 * @param[in] endpt_name Existing endpoint name.
Michal Vasko1a38c862016-01-15 15:50:07 +0100545 * @param[in] id Priority of the entry.
546 * @param[in] fingerprint Matching certificate fingerprint.
547 * @param[in] map_type Type of username-certificate mapping.
548 * @param[in] name Specific username if \p map_type == NC_TLS_CTN_SPECIFED. Must be NULL otherwise.
549 * @return 0 on success, -1 on error.
550 */
Michal Vasko3a889fd2016-09-30 12:16:37 +0200551int nc_server_tls_endpt_add_ctn(const char *endpt_name, uint32_t id, const char *fingerprint,
552 NC_TLS_CTN_MAPTYPE map_type, const char *name);
Michal Vaskoc14e3c82016-01-11 16:14:30 +0100553
Michal Vasko1a38c862016-01-15 15:50:07 +0100554/**
Michal Vasko58c22a22016-11-23 13:49:53 +0100555 * @brief Remove a cert-to-name entry.
Michal Vasko1a38c862016-01-15 15:50:07 +0100556 *
Michal Vaskoda514772016-02-01 11:32:01 +0100557 * @param[in] endpt_name Existing endpoint name.
Michal Vasko1a38c862016-01-15 15:50:07 +0100558 * @param[in] id Priority of the entry. -1 matches all the priorities.
559 * @param[in] fingerprint Fingerprint fo the entry. NULL matches all the fingerprints.
560 * @param[in] map_type Mapping type of the entry. 0 matches all the mapping types.
561 * @param[in] name Specific username for the entry. NULL matches all the usernames.
562 * @return 0 on success, -1 on not finding any match.
563 */
Michal Vasko3a889fd2016-09-30 12:16:37 +0200564int nc_server_tls_endpt_del_ctn(const char *endpt_name, int64_t id, const char *fingerprint,
565 NC_TLS_CTN_MAPTYPE map_type, const char *name);
Michal Vasko0457bb42016-01-08 15:49:13 +0100566
Michal Vaskodf5e6af2016-11-23 13:50:56 +0100567/**
568 * @brief Get a cert-to-name entry.
569 *
570 * If a parameter is NULL, it is ignored. If its dereferenced value is NULL,
571 * it is filled and returned. If the value is set, it is used as a filter.
572 * Returns first matching entry.
573 *
574 * @param[in] endpt_name Existing endpoint name.
575 * @param[in,out] id Priority of the entry.
576 * @param[in,out] fingerprint Fingerprint fo the entry.
577 * @param[in,out] map_type Mapping type of the entry.
578 * @param[in,out] name Specific username for the entry.
579 * @return 0 on success, -1 on not finding any match.
580 */
Michal Vaskof585ac72016-11-25 15:16:38 +0100581int nc_server_tls_endpt_get_ctn(const char *endpt_name, uint32_t *id, char **fingerprint, NC_TLS_CTN_MAPTYPE *map_type,
582 char **name);
Michal Vaskodf5e6af2016-11-23 13:50:56 +0100583
Michal Vasko7060bcf2016-11-28 14:48:11 +0100584/**
585 * @brief Set TLS authentication additional verify callback.
586 *
587 * Server will always perform cert-to-name based on its configuration. Only after it passes
588 * and this callback is set, it is also called. It should return exactly what OpenSSL
589 * verify callback meaning 1 for success, 0 to deny the user.
590 *
591 * @param[in] verify_clb Additional user verify callback.
592 */
593void nc_server_tls_set_verify_clb(int (*verify_clb)(const struct nc_session *session));
594
Radek Krejci53691be2016-02-22 13:58:37 +0100595#endif /* NC_ENABLED_TLS */
Michal Vasko086311b2016-01-08 09:53:11 +0100596
Michal Vaskof8352352016-05-24 09:11:36 +0200597/**
Michal Vaskoc45ebd32016-05-25 11:17:36 +0200598 * @brief Get session start time.
Michal Vaskof8352352016-05-24 09:11:36 +0200599 *
600 * @param[in] session Session to get the information from.
Michal Vaskoc45ebd32016-05-25 11:17:36 +0200601 * @return Session start time.
Michal Vaskof8352352016-05-24 09:11:36 +0200602 */
Michal Vaskoc45ebd32016-05-25 11:17:36 +0200603time_t nc_session_get_start_time(const struct nc_session *session);
Michal Vaskof8352352016-05-24 09:11:36 +0200604
Michal Vasko086311b2016-01-08 09:53:11 +0100605#endif /* NC_SESSION_SERVER_H_ */