blob: d41cbd92f8603ccbae5228800301ffbcc1600925 [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
Radek Krejci6e36bfb2016-12-01 21:40:16 +010018#include "netconf.h"
19
Radek Krejci53691be2016-02-22 13:58:37 +010020#ifdef NC_ENABLED_SSH
Michal Vasko4ef14932015-12-04 11:09:10 +010021
Michal Vaskof0537d82016-01-29 14:42:38 +010022/**
23 * @brief Enumeration of NETCONF SSH authentication methods
24 */
Michal Vasko4ef14932015-12-04 11:09:10 +010025typedef enum {
Michal Vaskof0537d82016-01-29 14:42:38 +010026 NC_SSH_AUTH_PUBLICKEY = 0x01, /**< publickey SSH authentication */
27 NC_SSH_AUTH_PASSWORD = 0x02, /**< password SSH authentication */
28 NC_SSH_AUTH_INTERACTIVE = 0x04 /**< interactive SSH authentication */
Michal Vasko4ef14932015-12-04 11:09:10 +010029} NC_SSH_AUTH_TYPE;
30
Radek Krejci53691be2016-02-22 13:58:37 +010031#endif /* NC_ENABLED_SSH */
Radek Krejci695d4fa2015-10-22 13:23:54 +020032
Radek Krejci53691be2016-02-22 13:58:37 +010033#ifdef NC_ENABLED_TLS
Michal Vaskoc14e3c82016-01-11 16:14:30 +010034
Michal Vaskof0537d82016-01-29 14:42:38 +010035/**
36 * @brief Enumeration of cert-to-name mapping types
37 */
Michal Vaskoc14e3c82016-01-11 16:14:30 +010038typedef enum {
Michal Vaskof0537d82016-01-29 14:42:38 +010039 NC_TLS_CTN_UNKNOWN = 0, /**< unknown mapping */
40 NC_TLS_CTN_SPECIFIED, /**< username explicitly specified */
41 NC_TLS_CTN_SAN_RFC822_NAME, /**< email address as username */
42 NC_TLS_CTN_SAN_DNS_NAME, /**< DNS name as username */
43 NC_TLS_CTN_SAN_IP_ADDRESS, /**< IP address as username */
44 NC_TLS_CTN_SAN_ANY, /**< any certificate Subject Alternative Name as username */
45 NC_TLS_CTN_COMMON_NAME /**< common name as username */
Michal Vaskoc14e3c82016-01-11 16:14:30 +010046} NC_TLS_CTN_MAPTYPE;
47
Radek Krejci53691be2016-02-22 13:58:37 +010048#endif /* NC_ENABLED_TLS */
Michal Vaskoc14e3c82016-01-11 16:14:30 +010049
Radek Krejci43390242015-10-08 15:34:04 +020050/**
Radek Krejci695d4fa2015-10-22 13:23:54 +020051 * @brief Enumeration of possible session statuses
52 */
53typedef enum {
Michal Vasko38a7c6c2015-12-04 12:29:20 +010054 NC_STATUS_STARTING = 0, /**< session is not yet fully initiated */
55 NC_STATUS_CLOSING, /**< session is being closed */
Michal Vasko428087d2016-01-14 16:04:28 +010056 NC_STATUS_INVALID, /**< session is not running and is supposed to be closed (nc_session_free()) */
Michal Vasko38a7c6c2015-12-04 12:29:20 +010057 NC_STATUS_RUNNING /**< up and running */
Radek Krejci695d4fa2015-10-22 13:23:54 +020058} NC_STATUS;
59
60/**
Michal Vasko38a7c6c2015-12-04 12:29:20 +010061 * @brief Enumeration of transport implementations (ways how libnetconf implements NETCONF transport protocol)
62 */
63typedef enum {
64 NC_TI_NONE = 0, /**< none - session is not connected yet */
65 NC_TI_FD, /**< file descriptors - use standard input/output, transport protocol is implemented
66 outside the current application */
Radek Krejci53691be2016-02-22 13:58:37 +010067#ifdef NC_ENABLED_SSH
Michal Vasko38a7c6c2015-12-04 12:29:20 +010068 NC_TI_LIBSSH, /**< libssh - use libssh library, only for NETCONF over SSH transport */
69#endif
Radek Krejci53691be2016-02-22 13:58:37 +010070#ifdef NC_ENABLED_TLS
Michal Vasko38a7c6c2015-12-04 12:29:20 +010071 NC_TI_OPENSSL /**< OpenSSL - use OpenSSL library, only for NETCONF over TLS transport */
72#endif
73} NC_TRANSPORT_IMPL;
74
75/**
Michal Vasko2e6defd2016-10-07 15:48:15 +020076 * @brief Enumeration of Call Home connection types.
77 */
78typedef enum {
79 NC_CH_CT_NOT_SET = 0,
80 NC_CH_PERSIST,
81 NC_CH_PERIOD
82} NC_CH_CONN_TYPE;
83
84/**
85 * @brief Enumeration of Call Home client priority policy.
86 */
87typedef enum {
88 NC_CH_FIRST_LISTED = 0, //default
89 NC_CH_LAST_CONNECTED
90} NC_CH_START_WITH;
91
92/**
Michal Vasko17dfda92016-12-01 14:06:16 +010093 * @brief Enumeration of SSH key types.
94 */
95typedef enum {
96 NC_SSH_KEY_UNKNOWN = 0,
97 NC_SSH_KEY_DSA,
98 NC_SSH_KEY_RSA,
99 NC_SSH_KEY_ECDSA
100} NC_SSH_KEY_TYPE;
101
102/**
Radek Krejci43390242015-10-08 15:34:04 +0200103 * @brief NETCONF session object
104 */
105struct nc_session;
106
Radek Krejci695d4fa2015-10-22 13:23:54 +0200107/**
Michal Vasko8dadf782016-01-15 10:29:36 +0100108 * @brief Get session status.
109 *
110 * @param[in] session Session to get the information from.
Michal Vasko8dadf782016-01-15 10:29:36 +0100111 * @return Session status.
112 */
113NC_STATUS nc_session_get_status(const struct nc_session *session);
114
115/**
Radek Krejci6e36bfb2016-12-01 21:40:16 +0100116 * @brief Get session termination reason.
117 *
118 * @param[in] session Session to get the information from.
119 * @return Session termination reason enum value.
120 */
121NC_SESSION_TERM_REASON nc_session_get_termreason(const struct nc_session *session);
122
123/**
Michal Vasko8dadf782016-01-15 10:29:36 +0100124 * @brief Get session ID.
125 *
126 * @param[in] session Session to get the information from.
Michal Vasko8dadf782016-01-15 10:29:36 +0100127 * @return Session ID.
128 */
129uint32_t nc_session_get_id(const struct nc_session *session);
130
131/**
Michal Vasko174fe8e2016-02-17 15:38:09 +0100132 * @brief Get session NETCONF version.
133 *
134 * @param[in] session Session to get the information from.
135 * @return 0 for version 1.0, non-zero for version 1.1.
136 */
137int nc_session_get_version(const struct nc_session *session);
138
139/**
Michal Vasko8dadf782016-01-15 10:29:36 +0100140 * @brief Get session transport used.
141 *
142 * @param[in] session Session to get the information from.
Michal Vasko8dadf782016-01-15 10:29:36 +0100143 * @return Session transport.
144 */
145NC_TRANSPORT_IMPL nc_session_get_ti(const struct nc_session *session);
146
147/**
148 * @brief Get session username.
149 *
150 * @param[in] session Session to get the information from.
Michal Vasko8dadf782016-01-15 10:29:36 +0100151 * @return Session username.
152 */
153const char *nc_session_get_username(const struct nc_session *session);
154
155/**
156 * @brief Get session host.
157 *
158 * @param[in] session Session to get the information from.
Michal Vasko8dadf782016-01-15 10:29:36 +0100159 * @return Session host.
160 */
161const char *nc_session_get_host(const struct nc_session *session);
162
163/**
164 * @brief Get session port.
165 *
166 * @param[in] session Session to get the information from.
Michal Vasko8dadf782016-01-15 10:29:36 +0100167 * @return Session port.
168 */
169uint16_t nc_session_get_port(const struct nc_session *session);
170
171/**
Michal Vasko9a25e932016-02-01 10:36:42 +0100172 * @brief Get session context.
173 *
174 * @param[in] session Session to get the information from.
175 * @return Session context.
176 */
177struct ly_ctx *nc_session_get_ctx(const struct nc_session *session);
178
179/**
Michal Vasko2cc4c682016-03-01 09:16:48 +0100180 * @brief Assign arbitrary data to a session.
181 *
182 * @param[in] session Session to modify.
183 * @param[in] data Data to be stored in the session.
184 */
185void nc_session_set_data(struct nc_session *session, void *data);
186
187/**
188 * @brief Get the data assigned to a session.
189 *
190 * @param[in] session Session to get the data from.
191 * @return Session-specific data.
192 */
193void *nc_session_get_data(const struct nc_session *session);
194
195/**
Radek Krejci695d4fa2015-10-22 13:23:54 +0200196 * @brief Free the NETCONF session object.
197 *
198 * @param[in] session Object to free.
Michal Vaskoe1a64ec2016-03-01 12:21:58 +0100199 * @param[in] data_free Session user data destructor.
Radek Krejci695d4fa2015-10-22 13:23:54 +0200200 */
Michal Vaskoe1a64ec2016-03-01 12:21:58 +0100201void nc_session_free(struct nc_session *session, void (*data_free)(void *));
Radek Krejci695d4fa2015-10-22 13:23:54 +0200202
Radek Krejci43390242015-10-08 15:34:04 +0200203#endif /* NC_SESSION_H_ */