blob: 6b667bd1710e1193ea478f4cdbafeab702ec9d29 [file] [log] [blame]
Radek Krejci43390242015-10-08 15:34:04 +02001/**
2 * \file session.h
3 * \author Radek Krejci <rkrejci@cesnet.cz>
4 * \brief libnetconf2 session 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
Radek Krejci43390242015-10-08 15:34:04 +020013 */
14
15#ifndef NC_SESSION_H_
16#define NC_SESSION_H_
17
Michal Vaskoc09730e2019-01-17 10:07:26 +010018#ifdef __cplusplus
19extern "C" {
20#endif
21
Radek Krejci6e36bfb2016-12-01 21:40:16 +010022#include "netconf.h"
23
Radek Krejci53691be2016-02-22 13:58:37 +010024#ifdef NC_ENABLED_SSH
Michal Vasko4ef14932015-12-04 11:09:10 +010025
Michal Vaskof0537d82016-01-29 14:42:38 +010026/**
27 * @brief Enumeration of NETCONF SSH authentication methods
28 */
Michal Vasko4ef14932015-12-04 11:09:10 +010029typedef enum {
Michal Vaskof0537d82016-01-29 14:42:38 +010030 NC_SSH_AUTH_PUBLICKEY = 0x01, /**< publickey SSH authentication */
31 NC_SSH_AUTH_PASSWORD = 0x02, /**< password SSH authentication */
32 NC_SSH_AUTH_INTERACTIVE = 0x04 /**< interactive SSH authentication */
Michal Vasko4ef14932015-12-04 11:09:10 +010033} NC_SSH_AUTH_TYPE;
34
Radek Krejci53691be2016-02-22 13:58:37 +010035#endif /* NC_ENABLED_SSH */
Radek Krejci695d4fa2015-10-22 13:23:54 +020036
Radek Krejci53691be2016-02-22 13:58:37 +010037#ifdef NC_ENABLED_TLS
Michal Vaskoc14e3c82016-01-11 16:14:30 +010038
Michal Vaskof0537d82016-01-29 14:42:38 +010039/**
40 * @brief Enumeration of cert-to-name mapping types
41 */
Michal Vaskoc14e3c82016-01-11 16:14:30 +010042typedef enum {
Michal Vaskof0537d82016-01-29 14:42:38 +010043 NC_TLS_CTN_UNKNOWN = 0, /**< unknown mapping */
44 NC_TLS_CTN_SPECIFIED, /**< username explicitly specified */
45 NC_TLS_CTN_SAN_RFC822_NAME, /**< email address as username */
46 NC_TLS_CTN_SAN_DNS_NAME, /**< DNS name as username */
47 NC_TLS_CTN_SAN_IP_ADDRESS, /**< IP address as username */
48 NC_TLS_CTN_SAN_ANY, /**< any certificate Subject Alternative Name as username */
49 NC_TLS_CTN_COMMON_NAME /**< common name as username */
Michal Vaskoc14e3c82016-01-11 16:14:30 +010050} NC_TLS_CTN_MAPTYPE;
51
Radek Krejci53691be2016-02-22 13:58:37 +010052#endif /* NC_ENABLED_TLS */
Michal Vaskoc14e3c82016-01-11 16:14:30 +010053
Radek Krejci43390242015-10-08 15:34:04 +020054/**
Radek Krejci695d4fa2015-10-22 13:23:54 +020055 * @brief Enumeration of possible session statuses
56 */
57typedef enum {
Radek Krejci465308c2017-05-22 14:49:10 +020058 NC_STATUS_ERR = -1, /**< error return code for function getting the session status */
Michal Vasko38a7c6c2015-12-04 12:29:20 +010059 NC_STATUS_STARTING = 0, /**< session is not yet fully initiated */
60 NC_STATUS_CLOSING, /**< session is being closed */
Michal Vasko428087d2016-01-14 16:04:28 +010061 NC_STATUS_INVALID, /**< session is not running and is supposed to be closed (nc_session_free()) */
Michal Vasko38a7c6c2015-12-04 12:29:20 +010062 NC_STATUS_RUNNING /**< up and running */
Radek Krejci695d4fa2015-10-22 13:23:54 +020063} NC_STATUS;
64
65/**
Michal Vasko38a7c6c2015-12-04 12:29:20 +010066 * @brief Enumeration of transport implementations (ways how libnetconf implements NETCONF transport protocol)
67 */
68typedef enum {
69 NC_TI_NONE = 0, /**< none - session is not connected yet */
70 NC_TI_FD, /**< file descriptors - use standard input/output, transport protocol is implemented
71 outside the current application */
Olivier Matzac7fa2f2018-10-11 10:02:04 +020072 NC_TI_UNIX, /**< unix socket */
Radek Krejci53691be2016-02-22 13:58:37 +010073#ifdef NC_ENABLED_SSH
Michal Vasko38a7c6c2015-12-04 12:29:20 +010074 NC_TI_LIBSSH, /**< libssh - use libssh library, only for NETCONF over SSH transport */
75#endif
Radek Krejci53691be2016-02-22 13:58:37 +010076#ifdef NC_ENABLED_TLS
Michal Vasko38a7c6c2015-12-04 12:29:20 +010077 NC_TI_OPENSSL /**< OpenSSL - use OpenSSL library, only for NETCONF over TLS transport */
78#endif
79} NC_TRANSPORT_IMPL;
80
81/**
Michal Vasko2e6defd2016-10-07 15:48:15 +020082 * @brief Enumeration of Call Home connection types.
83 */
84typedef enum {
85 NC_CH_CT_NOT_SET = 0,
86 NC_CH_PERSIST,
87 NC_CH_PERIOD
88} NC_CH_CONN_TYPE;
89
90/**
91 * @brief Enumeration of Call Home client priority policy.
92 */
93typedef enum {
94 NC_CH_FIRST_LISTED = 0, //default
95 NC_CH_LAST_CONNECTED
96} NC_CH_START_WITH;
97
98/**
Michal Vasko17dfda92016-12-01 14:06:16 +010099 * @brief Enumeration of SSH key types.
100 */
101typedef enum {
102 NC_SSH_KEY_UNKNOWN = 0,
103 NC_SSH_KEY_DSA,
104 NC_SSH_KEY_RSA,
105 NC_SSH_KEY_ECDSA
106} NC_SSH_KEY_TYPE;
107
108/**
Radek Krejci43390242015-10-08 15:34:04 +0200109 * @brief NETCONF session object
110 */
111struct nc_session;
112
Radek Krejci695d4fa2015-10-22 13:23:54 +0200113/**
Michal Vasko8dadf782016-01-15 10:29:36 +0100114 * @brief Get session status.
115 *
116 * @param[in] session Session to get the information from.
Michal Vasko8dadf782016-01-15 10:29:36 +0100117 * @return Session status.
118 */
119NC_STATUS nc_session_get_status(const struct nc_session *session);
120
121/**
Radek Krejci6e36bfb2016-12-01 21:40:16 +0100122 * @brief Get session termination reason.
123 *
124 * @param[in] session Session to get the information from.
125 * @return Session termination reason enum value.
126 */
Michal Vasko142cfea2017-08-07 10:12:11 +0200127NC_SESSION_TERM_REASON nc_session_get_term_reason(const struct nc_session *session);
128
129/**
130 * @brief Get session killer session ID.
131 *
132 * @param[in] session Session to get the information from.
133 * @return Session killer ID.
134 */
135uint32_t nc_session_get_killed_by(const struct nc_session *session);
Radek Krejci6e36bfb2016-12-01 21:40:16 +0100136
137/**
Michal Vasko8dadf782016-01-15 10:29:36 +0100138 * @brief Get session ID.
139 *
140 * @param[in] session Session to get the information from.
Michal Vasko8dadf782016-01-15 10:29:36 +0100141 * @return Session ID.
142 */
143uint32_t nc_session_get_id(const struct nc_session *session);
144
145/**
Michal Vasko174fe8e2016-02-17 15:38:09 +0100146 * @brief Get session NETCONF version.
147 *
148 * @param[in] session Session to get the information from.
149 * @return 0 for version 1.0, non-zero for version 1.1.
150 */
151int nc_session_get_version(const struct nc_session *session);
152
153/**
Michal Vasko8dadf782016-01-15 10:29:36 +0100154 * @brief Get session transport used.
155 *
156 * @param[in] session Session to get the information from.
Michal Vasko8dadf782016-01-15 10:29:36 +0100157 * @return Session transport.
158 */
159NC_TRANSPORT_IMPL nc_session_get_ti(const struct nc_session *session);
160
161/**
162 * @brief Get session username.
163 *
164 * @param[in] session Session to get the information from.
Michal Vasko8dadf782016-01-15 10:29:36 +0100165 * @return Session username.
166 */
167const char *nc_session_get_username(const struct nc_session *session);
168
169/**
170 * @brief Get session host.
171 *
172 * @param[in] session Session to get the information from.
Michal Vasko8dadf782016-01-15 10:29:36 +0100173 * @return Session host.
174 */
175const char *nc_session_get_host(const struct nc_session *session);
176
177/**
178 * @brief Get session port.
179 *
180 * @param[in] session Session to get the information from.
Michal Vasko8dadf782016-01-15 10:29:36 +0100181 * @return Session port.
182 */
183uint16_t nc_session_get_port(const struct nc_session *session);
184
185/**
Olivier Matzac7fa2f2018-10-11 10:02:04 +0200186 * @brief Get session path (unix socket only).
187 *
188 * @param[in] session Session to get the information from.
189 * @return Session unix socket path.
190 */
191const char *nc_session_get_path(const struct nc_session *session);
192
193/**
Michal Vasko9a25e932016-02-01 10:36:42 +0100194 * @brief Get session context.
195 *
196 * @param[in] session Session to get the information from.
197 * @return Session context.
198 */
199struct ly_ctx *nc_session_get_ctx(const struct nc_session *session);
200
201/**
Michal Vasko2cc4c682016-03-01 09:16:48 +0100202 * @brief Assign arbitrary data to a session.
203 *
204 * @param[in] session Session to modify.
205 * @param[in] data Data to be stored in the session.
206 */
207void nc_session_set_data(struct nc_session *session, void *data);
208
209/**
210 * @brief Get the data assigned to a session.
211 *
212 * @param[in] session Session to get the data from.
213 * @return Session-specific data.
214 */
215void *nc_session_get_data(const struct nc_session *session);
216
217/**
Radek Krejci695d4fa2015-10-22 13:23:54 +0200218 * @brief Free the NETCONF session object.
219 *
220 * @param[in] session Object to free.
Michal Vaskoe1a64ec2016-03-01 12:21:58 +0100221 * @param[in] data_free Session user data destructor.
Radek Krejci695d4fa2015-10-22 13:23:54 +0200222 */
Michal Vaskoe1a64ec2016-03-01 12:21:58 +0100223void nc_session_free(struct nc_session *session, void (*data_free)(void *));
Radek Krejci695d4fa2015-10-22 13:23:54 +0200224
Radek Krejci62aa0642017-05-25 16:33:49 +0200225#if defined(NC_ENABLED_SSH) || defined(NC_ENABLED_TLS)
226
227/**
228 * @brief Free all the dynamically allocated thread-specific libssl/libcrypto
229 * resources.
230 *
231 * This function should be called only if init (nc_client_init(), respectively nc_server_init()) was called.
232 * Call it in every thread your application creates just before the thread exits. In the last thread
233 * (usually the main one) call nc_client_destroy(), respectively nc_server_destroy().
234 */
235void nc_thread_destroy(void);
236
237#endif /* NC_ENABLED_SSH || NC_ENABLED_TLS */
238
Michal Vaskoc09730e2019-01-17 10:07:26 +0100239#ifdef __cplusplus
240}
241#endif
242
Radek Krejci43390242015-10-08 15:34:04 +0200243#endif /* NC_SESSION_H_ */