blob: d36c53c13454f98a116c89209e56f711e952b13d [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 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
16 * distribution.
17 * 3. Neither the name of the Company nor the names of its contributors
18 * may be used to endorse or promote products derived from this
19 * software without specific prior written permission.
20 *
21 */
22
23#ifndef NC_SESSION_SERVER_H_
24#define NC_SESSION_SERVER_H_
25
26#include <stdint.h>
Michal Vasko05ba9df2016-01-13 14:40:27 +010027#include <libyang/libyang.h>
Michal Vasko086311b2016-01-08 09:53:11 +010028
29#include "session.h"
Michal Vasko086311b2016-01-08 09:53:11 +010030#include "netconf.h"
31
Michal Vasko1a38c862016-01-15 15:50:07 +010032/**
33 * @brief Prototype of callbacks that are called if some RPCs are received.
34 *
35 * If \p session termination reason is changed in the callback, one last reply
36 * is sent and then the session is considered invalid.
37 *
38 * @param[in] rpc Parsed client RPC request.
39 * @param[in] session Session the RPC arrived on.
40 * @return Server reply. If NULL, an operation-failed error will be sent to the client.
41 */
Michal Vasko05ba9df2016-01-13 14:40:27 +010042typedef struct nc_server_reply *(*nc_rpc_clb)(struct lyd_node *rpc, struct nc_session *session);
43
Michal Vasko1a38c862016-01-15 15:50:07 +010044/**
Michal Vasko7b096242016-01-29 15:55:10 +010045 * @brief Set the termination reason for a session. Use only in #nc_rpc_clb callbacks.
Michal Vasko1a38c862016-01-15 15:50:07 +010046 *
47 * @param[in] session Session to modify.
48 * @param[in] reason Reason of termination.
49 */
50void nc_session_set_term_reason(struct nc_session *session, NC_SESSION_TERM_REASON reason);
51
52/**
53 * @brief Initialize the server using a libyang context.
54 *
55 * The context is not modified internally, only its dictionary is used for holding
Michal Vasko11d142a2016-01-19 15:58:24 +010056 * all the strings. When the dictionary is being written to or removed from,
57 * libnetconf2 always holds ctx lock using nc_ctx_lock(). Reading models is considered
58 * thread-safe as models cannot be removed and are rarely modified.
Michal Vasko1a38c862016-01-15 15:50:07 +010059 *
60 * Server capabilities are generated based on its content. Changing the context
61 * in ways that result in changed capabilities (adding models, changing features)
62 * is discouraged after sessions are established as it is not possible to change
63 * capabilities of a session.
64 *
65 * This context can safely be destroyed only after calling the last libnetconf2
66 * function in an application.
67 *
68 * Supported RPCs of models in the context are expected to have the private field
69 * in the corresponding RPC schema node set to a nc_rpc_clb function callback.
70 * This callback is called by nc_ps_poll() if the particular RPC request is
71 * received. Callbacks for ietf-netconf:get-schema (supporting YANG and YIN format
72 * only) and ietf-netconf:close-session are set internally if left unset.
73 *
74 * Access to the context in libnetconf2 functions is not managed in any way,
75 * the application is responsible for handling it in a thread-safe manner.
76 *
77 * @param[in] ctx Core NETCONF server context.
78 * @return 0 on success, -1 on error.
79 */
Michal Vasko086311b2016-01-08 09:53:11 +010080int nc_server_init(struct ly_ctx *ctx);
81
Michal Vasko1a38c862016-01-15 15:50:07 +010082/**
Michal Vaskob48aa812016-01-18 14:13:09 +010083 * @brief Destroy any dynamically allocated server resources.
84 */
85void nc_server_destroy(void);
86
87/**
Michal Vasko1a38c862016-01-15 15:50:07 +010088 * @brief Set the with-defaults capability extra parameters.
89 *
90 * For the capability to be actually advertised, the server context must also
91 * include the ietf-netconf-with-defaults model.
92 *
93 * Changing this option has the same ill effects as changing capabilities while
94 * sessions are already established.
95 *
96 * @param[in] basic_mode basic-mode with-defaults parameter.
97 * @param[in] also_supported NC_WD_MODE bit array, also-supported with-defaults
98 * parameter.
99 * @return 0 on success, -1 on error.
100 */
Michal Vasko086311b2016-01-08 09:53:11 +0100101int nc_server_set_capab_withdefaults(NC_WD_MODE basic_mode, int also_supported);
102
Michal Vasko1a38c862016-01-15 15:50:07 +0100103/**
104 * @brief Set the interleave capability.
105 *
106 * For the capability to be actually advertised, the server context must also
107 * include the nc-notifications model.
108 *
109 * Changing this option has the same ill effects as changing capabilities while
110 * sessions are already established.
111 *
112 * @param[in] interleave_support 1 to suport interleave, 0 to not.
113 */
114void nc_server_set_capab_interleave(int interleave_support);
Michal Vasko086311b2016-01-08 09:53:11 +0100115
Michal Vasko1a38c862016-01-15 15:50:07 +0100116/**
117 * @brief Set server timeout for receiving a hello message.
118 *
119 * @param[in] hello_timeout Hello message timeout. 0 for infinite waiting.
120 */
121void nc_server_set_hello_timeout(uint16_t hello_timeout);
Michal Vasko086311b2016-01-08 09:53:11 +0100122
Michal Vasko1a38c862016-01-15 15:50:07 +0100123/**
124 * @brief Set server timeout for dropping an idle session.
125 *
126 * @param[in] idle_timeout Idle session timeout. 0 to never drop a session
Michal Vaskof0537d82016-01-29 14:42:38 +0100127 * because of inactivity.
Michal Vasko1a38c862016-01-15 15:50:07 +0100128 */
129void nc_server_set_idle_timeout(uint16_t idle_timeout);
Michal Vasko086311b2016-01-08 09:53:11 +0100130
Michal Vasko1a38c862016-01-15 15:50:07 +0100131/**
132 * @brief Accept a new session on a pre-established transport session.
133 *
134 * @param[in] fdin File descriptor to read (unencrypted) XML data from.
135 * @param[in] fdout File descriptor to write (unencrypted) XML data to.
136 * @param[in] username NETCONF username as provided by the transport protocol.
137 * @param[out] session New session on success.
138 * @return 0 on success, -1 on error.
139 */
140int nc_accept_inout(int fdin, int fdout, const char *username, struct nc_session **session);
Michal Vasko086311b2016-01-08 09:53:11 +0100141
Michal Vasko1a38c862016-01-15 15:50:07 +0100142/**
143 * @brief Create an empty structure for polling sessions.
144 *
145 * @return Empty pollsession structure, NULL on error.
146 */
Michal Vasko05ba9df2016-01-13 14:40:27 +0100147struct nc_pollsession *nc_ps_new(void);
Michal Vaskofb89d772016-01-08 12:25:35 +0100148
Michal Vasko1a38c862016-01-15 15:50:07 +0100149/**
150 * @brief Free a pollsession structure.
151 *
152 * @param[in] ps Pollsession structure to free.
153 */
Michal Vasko05ba9df2016-01-13 14:40:27 +0100154void nc_ps_free(struct nc_pollsession *ps);
Michal Vaskofb89d772016-01-08 12:25:35 +0100155
Michal Vasko1a38c862016-01-15 15:50:07 +0100156/**
157 * @brief Add a session to a pollsession structure.
158 *
159 * @param[in] ps Pollsession structure to modify.
160 * @param[in] session Session to add to \p ps.
161 * @return 0 on success, -1 on error.
162 */
Michal Vasko05ba9df2016-01-13 14:40:27 +0100163int nc_ps_add_session(struct nc_pollsession *ps, struct nc_session *session);
Michal Vaskofb89d772016-01-08 12:25:35 +0100164
Michal Vasko1a38c862016-01-15 15:50:07 +0100165/**
166 * @brief Remove a session from a pollsession structure.
167 *
168 * @param[in] ps Pollsession structure to modify.
169 * @param[in] session Session to remove from \p ps.
Michal Vaskof0537d82016-01-29 14:42:38 +0100170 * @return 0 on success, -1 on not found.
Michal Vasko1a38c862016-01-15 15:50:07 +0100171 */
Michal Vasko05ba9df2016-01-13 14:40:27 +0100172int nc_ps_del_session(struct nc_pollsession *ps, struct nc_session *session);
173
Michal Vasko1a38c862016-01-15 15:50:07 +0100174/**
175 * @brief Poll sessions and process any received RPCs.
176 *
177 * All the sessions must be running. If a session fails causing it to change its
Michal Vasko96164bf2016-01-21 15:41:58 +0100178 * status, it can be learnt from the return value. Only one event on one session
179 * is handled in one function call.
Michal Vasko1a38c862016-01-15 15:50:07 +0100180 *
181 * @param[in] ps Pollsession structure to use.
Michal Vasko11d142a2016-01-19 15:58:24 +0100182 * @param[in] timeout Poll timeout in milliseconds. 0 for non-blocking call, -1 for
183 * infinite waiting.
Michal Vaskobd8ef262016-01-20 11:09:27 +0100184 * @return 0 on elapsed timeout,
185 * 1 if an RPC was processed,
186 * 2 if an RPC was processed and there are unhandled events on other sessions,
187 * 3 if a session from \p ps changed its status (was invalidated),
188 * -1 on error.
Michal Vasko96164bf2016-01-21 15:41:58 +0100189 *
190 * Only with SSH support:
191 * 4 if an SSH message was processed,
Michal Vaskod09eae62016-02-01 10:32:52 +0100192 * 5 if a new NETCONF SSH channel was created; call #nc_ssh_ps_accept_channel()
Michal Vasko96164bf2016-01-21 15:41:58 +0100193 * to establish a new NETCONF session.
Michal Vasko1a38c862016-01-15 15:50:07 +0100194 */
Michal Vasko05ba9df2016-01-13 14:40:27 +0100195int nc_ps_poll(struct nc_pollsession *ps, int timeout);
Michal Vasko086311b2016-01-08 09:53:11 +0100196
Michal Vasko11d142a2016-01-19 15:58:24 +0100197/**
Michal Vaskod09eae62016-02-01 10:32:52 +0100198 * @brief Remove invalid sessions from a pollsession structure and
199 * call #nc_session_free() on them.
200 *
201 * Calling this function makes sense if #nc_ps_poll() returned 3.
202 *
203 * @param[in] ps Pollsession structure to clear.
204 */
205void nc_ps_clear(struct nc_pollsession *ps);
206
207/**
Michal Vasko11d142a2016-01-19 15:58:24 +0100208 * @brief Lock server context.
209 *
210 * @param[in] timeout Timeout in milliseconds. 0 for non-blocking call, -1 for
Michal Vaskof0537d82016-01-29 14:42:38 +0100211 * infinite waiting.
Michal Vasko11d142a2016-01-19 15:58:24 +0100212 * @param[out] elapsed Elapsed milliseconds will be added to this variable.
Michal Vaskof0537d82016-01-29 14:42:38 +0100213 * Can be NULL.
214 * @return 1 on success, 0 on elapsed timeout, -1 on error.
Michal Vasko11d142a2016-01-19 15:58:24 +0100215 */
216int nc_ctx_lock(int timeout, int *elapsed);
217
218/**
219 * @brief Unlock server context.
220 *
221 * @return 0 on success, -1 on error.
222 */
223int nc_ctx_unlock(void);
224
Michal Vasko9e036d52016-01-08 10:49:26 +0100225#if defined(ENABLE_SSH) || defined(ENABLE_TLS)
226
Michal Vasko1a38c862016-01-15 15:50:07 +0100227/**
Michal Vasko3031aae2016-01-27 16:07:18 +0100228 * @brief Accept new sessions on all the listening endpoints.
Michal Vasko1a38c862016-01-15 15:50:07 +0100229 *
Michal Vasko11d142a2016-01-19 15:58:24 +0100230 * @param[in] timeout Timeout for receiving a new connection in milliseconds, 0 for
231 * non-blocking call, -1 for infinite waiting.
Michal Vasko96164bf2016-01-21 15:41:58 +0100232 * @param[out] session New session.
Michal Vaskoc61c4492016-01-25 11:13:34 +0100233 * @return 1 on success, 0 on timeout, -1 on error.
Michal Vasko1a38c862016-01-15 15:50:07 +0100234 */
235int nc_accept(int timeout, struct nc_session **session);
Michal Vasko9e036d52016-01-08 10:49:26 +0100236
Michal Vaskofb89d772016-01-08 12:25:35 +0100237#endif /* ENABLE_SSH || ENABLE_TLS */
Michal Vasko9e036d52016-01-08 10:49:26 +0100238
Michal Vasko086311b2016-01-08 09:53:11 +0100239#ifdef ENABLE_SSH
240
Michal Vasko1a38c862016-01-15 15:50:07 +0100241/**
Michal Vasko96164bf2016-01-21 15:41:58 +0100242 * @brief Accept a new NETCONF session on an SSH session of a running NETCONF session
Michal Vaskof0537d82016-01-29 14:42:38 +0100243 * that was polled in \p ps. Call this function only when nc_ps_poll() on \p ps returns 5.
Michal Vasko96164bf2016-01-21 15:41:58 +0100244 *
245 * @param[in] ps Unmodified pollsession structure from the previous nc_ps_poll() call.
246 * @param[out] session New session.
Michal Vaskof0537d82016-01-29 14:42:38 +0100247 * @return 0 on success, -1 on error.
Michal Vasko96164bf2016-01-21 15:41:58 +0100248 */
249int nc_ps_accept_ssh_channel(struct nc_pollsession *ps, struct nc_session **session);
250
251/**
Michal Vasko3031aae2016-01-27 16:07:18 +0100252 * @brief Add a new SSH endpoint and start listening on it.
253 *
254 * @param[in] name Arbitrary unique endpoint name. There can be a TLS endpoint with
Michal Vaskof0537d82016-01-29 14:42:38 +0100255 * the same name.
Michal Vasko3031aae2016-01-27 16:07:18 +0100256 * @param[in] address IP address to listen on.
257 * @param[in] port Port to listen on.
258 * @return 0 on success, -1 on error.
259 */
260int nc_server_ssh_add_endpt_listen(const char *name, const char *address, uint16_t port);
261
262/**
263 * @brief Stop listening on and remove an SSH endpoint.
264 *
265 * @param[in] name Endpoint name. NULL matches all (SSH) endpoints.
266 * @return 0 on success, -1 on not finding any match.
267 */
268int nc_server_ssh_del_endpt(const char *name);
269
270/**
271 * @brief Set endpoint SSH host keys the server will identify itself with. Each of RSA, DSA, and
Michal Vaskof0537d82016-01-29 14:42:38 +0100272 * ECDSA keys can be set. If the particular type was already set, it is replaced.
Michal Vasko1a38c862016-01-15 15:50:07 +0100273 *
274 * @param[in] privkey_path Path to a private key.
275 * @return 0 on success, -1 on error.
276 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100277int nc_server_ssh_endpt_set_hostkey(const char *endpt_name, const char *privkey_path);
Michal Vasko086311b2016-01-08 09:53:11 +0100278
Michal Vasko1a38c862016-01-15 15:50:07 +0100279/**
Michal Vasko3031aae2016-01-27 16:07:18 +0100280 * @brief Set endpoint SSH banner the server will send to every client.
Michal Vasko1a38c862016-01-15 15:50:07 +0100281 *
282 * @param[in] banner SSH banner.
283 * @return 0 on success, -1 on error.
284 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100285int nc_server_ssh_endpt_set_banner(const char *endpt_name, const char *banner);
Michal Vasko086311b2016-01-08 09:53:11 +0100286
Michal Vasko1a38c862016-01-15 15:50:07 +0100287/**
Michal Vasko3031aae2016-01-27 16:07:18 +0100288 * @brief Set endpoint accepted SSH authentication methods. All (publickey, password, interactive)
Michal Vaskof0537d82016-01-29 14:42:38 +0100289 * are supported by default.
Michal Vasko1a38c862016-01-15 15:50:07 +0100290 *
291 * @param[in] auth_methods Accepted authentication methods bit field of NC_SSH_AUTH_TYPE.
292 * @return 0 on success, -1 on error.
293 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100294int nc_server_ssh_endpt_set_auth_methods(const char *endpt_name, int auth_methods);
Michal Vasko086311b2016-01-08 09:53:11 +0100295
Michal Vasko1a38c862016-01-15 15:50:07 +0100296/**
Michal Vasko3031aae2016-01-27 16:07:18 +0100297 * @brief Set endpoint SSH authentication attempts of every client. 3 by default.
Michal Vasko1a38c862016-01-15 15:50:07 +0100298 *
Michal Vasko5e6f4cc2016-01-20 13:27:44 +0100299 * @param[in] auth_attempts Failed authentication attempts before a client is dropped.
Michal Vasko1a38c862016-01-15 15:50:07 +0100300 * @return 0 on success, -1 on error.
301 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100302int nc_server_ssh_endpt_set_auth_attempts(const char *endpt_name, uint16_t auth_attempts);
Michal Vasko086311b2016-01-08 09:53:11 +0100303
Michal Vasko1a38c862016-01-15 15:50:07 +0100304/**
Michal Vasko3031aae2016-01-27 16:07:18 +0100305 * @brief Set endpoint SSH authentication timeout. 10 seconds by default.
Michal Vasko1a38c862016-01-15 15:50:07 +0100306 *
307 * @param[in] auth_timeout Number of seconds before an unauthenticated client is dropped.
308 * @return 0 on success, -1 on error.
309 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100310int nc_server_ssh_endpt_set_auth_timeout(const char *endpt_name, uint16_t auth_timeout);
Michal Vasko086311b2016-01-08 09:53:11 +0100311
Michal Vasko1a38c862016-01-15 15:50:07 +0100312/**
Michal Vasko3031aae2016-01-27 16:07:18 +0100313 * @brief Add an endpoint authorized client SSH public key. This public key can be used for
Michal Vaskof0537d82016-01-29 14:42:38 +0100314 * publickey authentication afterwards.
Michal Vasko1a38c862016-01-15 15:50:07 +0100315 *
316 * @param[in] pubkey_path Path to the public key.
317 * @param[in] username Username that the client with the public key must use.
318 * @return 0 on success, -1 on error.
319 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100320int nc_server_ssh_endpt_add_authkey(const char *endpt_name, const char *pubkey_path, const char *username);
Michal Vasko086311b2016-01-08 09:53:11 +0100321
Michal Vasko1a38c862016-01-15 15:50:07 +0100322/**
Michal Vasko3031aae2016-01-27 16:07:18 +0100323 * @brief Remove an endpoint authorized client SSH public key.
Michal Vasko1a38c862016-01-15 15:50:07 +0100324 *
325 * @param[in] pubkey_path Path to an authorized public key. NULL matches all the keys.
326 * @param[in] username Username for an authorized public key. NULL matches all the usernames.
327 * @return 0 on success, -1 on not finding any match.
328 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100329int nc_server_ssh_endpt_del_authkey(const char *endpt_name, const char *pubkey_path, const char *username);
330
Michal Vasko086311b2016-01-08 09:53:11 +0100331#endif /* ENABLE_SSH */
332
333#ifdef ENABLE_TLS
334
Michal Vasko1a38c862016-01-15 15:50:07 +0100335/**
Michal Vasko3031aae2016-01-27 16:07:18 +0100336 * @brief Add a new TLS endpoint and start listening on it.
337 *
338 * @param[in] name Arbitrary unique endpoint name. There can be an SSH endpoint with
Michal Vaskof0537d82016-01-29 14:42:38 +0100339 * the same name.
Michal Vasko3031aae2016-01-27 16:07:18 +0100340 * @param[in] address IP address to listen on.
341 * @param[in] port Port to listen on.
342 * @return 0 on success, -1 on error.
343 */
344int nc_server_tls_add_endpt_listen(const char *name, const char *address, uint16_t port);
345
346/**
347 * @brief Stop listening on and remove a TLS endpoint.
348 *
349 * @param[in] name Endpoint name. NULL matches all (TLS) endpoints.
350 * @return 0 on success, -1 on not finding any match.
351 */
352int nc_server_tls_del_endpt(const char *name);
353
354/**
Michal Vasko1a38c862016-01-15 15:50:07 +0100355 * @brief Set server TLS certificate. Alternative to nc_tls_server_set_cert_path().
Michal Vaskof0537d82016-01-29 14:42:38 +0100356 * There can only be one certificate for each key type, it is replaced if
357 * already set.
Michal Vasko1a38c862016-01-15 15:50:07 +0100358 *
359 * @param[in] cert Base64-encoded certificate in ASN.1 DER encoding.
360 * @return 0 on success, -1 on error.
361 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100362int nc_server_tls_endpt_set_cert(const char *endpt_name, const char *cert);
Michal Vasko086311b2016-01-08 09:53:11 +0100363
Michal Vasko1a38c862016-01-15 15:50:07 +0100364/**
365 * @brief Set server TLS certificate. Alternative to nc_tls_server_set_cert().
Michal Vaskof0537d82016-01-29 14:42:38 +0100366 * There can only be one certificate for each key type, it is replaced if
367 * already set.
Michal Vasko1a38c862016-01-15 15:50:07 +0100368 *
369 * @param[in] cert_path Path to a certificate file in PEM format.
370 * @return 0 on success, -1 on error.
371 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100372int nc_server_tls_endpt_set_cert_path(const char *endpt_name, const char *cert_path);
Michal Vasko0457bb42016-01-08 15:49:13 +0100373
Michal Vasko1a38c862016-01-15 15:50:07 +0100374/**
375 * @brief Set server TLS private key matching the certificate.
Michal Vaskof0537d82016-01-29 14:42:38 +0100376 * Alternative to nc_tls_server_set_key_path(). There can only be one of
377 * every key type, it is replaced if already set.
Michal Vasko1a38c862016-01-15 15:50:07 +0100378 *
379 * @param[in] privkey Base64-encoded certificate in ASN.1 DER encoding.
380 * @param[in] is_rsa Whether \p privkey are the data of an RSA (1) or DSA (0) key.
381 * @return 0 on success, -1 on error.
382 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100383int nc_server_tls_endpt_set_key(const char *endpt_name, const char *privkey, int is_rsa);
Michal Vaskoc14e3c82016-01-11 16:14:30 +0100384
Michal Vasko1a38c862016-01-15 15:50:07 +0100385/**
386 * @brief Set server TLS private key matching the certificate.
Michal Vaskof0537d82016-01-29 14:42:38 +0100387 * Alternative to nc_tls_server_set_key_path(). There can only be one of
388 * every key type, it is replaced if already set.
Michal Vasko1a38c862016-01-15 15:50:07 +0100389 *
390 * @param[in] privkey_path Path to a private key file in PEM format.
391 * @return 0 on success, -1 on error.
392 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100393int nc_server_tls_endpt_set_key_path(const char *endpt_name, const char *privkey_path);
Michal Vasko0457bb42016-01-08 15:49:13 +0100394
Michal Vasko1a38c862016-01-15 15:50:07 +0100395/**
396 * @brief Add a trusted certificate. Can be both a CA or a client one.
397 *
Michal Vaskof0537d82016-01-29 14:42:38 +0100398 * @param[in] cert Base64-enocded certificate in ASN.1 DER encoding.
Michal Vasko1a38c862016-01-15 15:50:07 +0100399 * @return 0 on success, -1 on error.
400 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100401int nc_server_tls_endpt_add_trusted_cert(const char *endpt_name, const char *cert);
Michal Vasko0457bb42016-01-08 15:49:13 +0100402
Michal Vasko1a38c862016-01-15 15:50:07 +0100403/**
404 * @brief Add a trusted certificate. Can be both a CA or a client one.
405 *
406 * @param[in] cert_path Path to a trusted certificate file in PEM format.
407 * @return 0 on success, -1 on error.
408 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100409int nc_server_tls_endpt_add_trusted_cert_path(const char *endpt_name, const char *cert_path);
Michal Vasko0457bb42016-01-08 15:49:13 +0100410
Michal Vasko1a38c862016-01-15 15:50:07 +0100411/**
412 * @brief Set trusted Certificate Authority certificate locations. There can only be
Michal Vaskof0537d82016-01-29 14:42:38 +0100413 * one file and one directory, they are replaced if already set.
Michal Vasko1a38c862016-01-15 15:50:07 +0100414 *
415 * @param[in] cacert_file_path Path to a trusted CA cert store file in PEM format.
Michal Vaskof0537d82016-01-29 14:42:38 +0100416 * Can be NULL.
Michal Vasko1a38c862016-01-15 15:50:07 +0100417 * @param[in] cacert_dir_path Path to a trusted CA cert store hashed directory
Michal Vaskof0537d82016-01-29 14:42:38 +0100418 * (c_rehash utility can be used to create hashes) with PEM files.
419 * Can be NULL.
Michal Vasko1a38c862016-01-15 15:50:07 +0100420 * @return 0 on success, -1 on error.
421 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100422int nc_server_tls_endpt_set_trusted_cacert_locations(const char *endpt_name, const char *cacert_file_path, const char *cacert_dir_path);
Michal Vasko0457bb42016-01-08 15:49:13 +0100423
Michal Vasko1a38c862016-01-15 15:50:07 +0100424/**
425 * @brief Destroy and clean all the set certificates and private keys. CRLs and
Michal Vaskof0537d82016-01-29 14:42:38 +0100426 * CTN entries are not affected.
Michal Vasko1a38c862016-01-15 15:50:07 +0100427 */
Michal Vaskoc6b9c7b2016-01-28 11:10:08 +0100428void nc_server_tls_endpt_clear_certs(const char *endpt_name);
Michal Vasko0457bb42016-01-08 15:49:13 +0100429
Michal Vasko1a38c862016-01-15 15:50:07 +0100430/**
431 * @brief Set Certificate Revocation List locations. There can only be one file
Michal Vaskof0537d82016-01-29 14:42:38 +0100432 * and one directory, they are replaced if already set.
Michal Vasko1a38c862016-01-15 15:50:07 +0100433 *
434 * @param[in] crl_file_path Path to a CRL store file in PEM format. Can be NULL.
435 * @param[in] crl_dir_path Path to a CRL store hashed directory (c_rehash utility
Michal Vaskof0537d82016-01-29 14:42:38 +0100436 * can be used to create hashes) with PEM files. Can be NULL.
Michal Vasko1a38c862016-01-15 15:50:07 +0100437 * @return 0 on success, -1 on error.
438 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100439int nc_server_tls_endpt_set_crl_locations(const char *endpt_name, const char *crl_file_path, const char *crl_dir_path);
Michal Vasko0457bb42016-01-08 15:49:13 +0100440
Michal Vasko1a38c862016-01-15 15:50:07 +0100441/**
442 * @brief Destroy and clean CRLs. Certificates, priavte keys, and CTN entries are
Michal Vaskof0537d82016-01-29 14:42:38 +0100443 * not affected.
Michal Vasko1a38c862016-01-15 15:50:07 +0100444 */
Michal Vaskoc6b9c7b2016-01-28 11:10:08 +0100445void nc_server_tls_endpt_clear_crls(const char *endpt_name);
Michal Vasko0457bb42016-01-08 15:49:13 +0100446
Michal Vasko1a38c862016-01-15 15:50:07 +0100447/**
448 * @brief Add a Cert-to-name entry.
449 *
450 * @param[in] id Priority of the entry.
451 * @param[in] fingerprint Matching certificate fingerprint.
452 * @param[in] map_type Type of username-certificate mapping.
453 * @param[in] name Specific username if \p map_type == NC_TLS_CTN_SPECIFED. Must be NULL otherwise.
454 * @return 0 on success, -1 on error.
455 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100456int nc_server_tls_endpt_add_ctn(const char *endpt_name, uint32_t id, const char *fingerprint, NC_TLS_CTN_MAPTYPE map_type, const char *name);
Michal Vaskoc14e3c82016-01-11 16:14:30 +0100457
Michal Vasko1a38c862016-01-15 15:50:07 +0100458/**
459 * @brief Remove a Cert-to-name entry.
460 *
461 * @param[in] id Priority of the entry. -1 matches all the priorities.
462 * @param[in] fingerprint Fingerprint fo the entry. NULL matches all the fingerprints.
463 * @param[in] map_type Mapping type of the entry. 0 matches all the mapping types.
464 * @param[in] name Specific username for the entry. NULL matches all the usernames.
465 * @return 0 on success, -1 on not finding any match.
466 */
Michal Vasko3031aae2016-01-27 16:07:18 +0100467int nc_server_tls_endpt_del_ctn(const char *endpt_name, int64_t id, const char *fingerprint, NC_TLS_CTN_MAPTYPE map_type, const char *name);
Michal Vasko0457bb42016-01-08 15:49:13 +0100468
Michal Vasko086311b2016-01-08 09:53:11 +0100469#endif /* ENABLE_TLS */
470
471#endif /* NC_SESSION_SERVER_H_ */