blob: 1c92cd2c5b160cab88755a085a77d0f502d8275b [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
11 *
12 * 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 Krejci53691be2016-02-22 13:58:37 +010018#ifdef NC_ENABLED_SSH
Michal Vasko4ef14932015-12-04 11:09:10 +010019
Michal Vaskof0537d82016-01-29 14:42:38 +010020/**
21 * @brief Enumeration of NETCONF SSH authentication methods
22 */
Michal Vasko4ef14932015-12-04 11:09:10 +010023typedef enum {
Michal Vaskof0537d82016-01-29 14:42:38 +010024 NC_SSH_AUTH_PUBLICKEY = 0x01, /**< publickey SSH authentication */
25 NC_SSH_AUTH_PASSWORD = 0x02, /**< password SSH authentication */
26 NC_SSH_AUTH_INTERACTIVE = 0x04 /**< interactive SSH authentication */
Michal Vasko4ef14932015-12-04 11:09:10 +010027} NC_SSH_AUTH_TYPE;
28
Radek Krejci53691be2016-02-22 13:58:37 +010029#endif /* NC_ENABLED_SSH */
Radek Krejci695d4fa2015-10-22 13:23:54 +020030
Radek Krejci53691be2016-02-22 13:58:37 +010031#ifdef NC_ENABLED_TLS
Michal Vaskoc14e3c82016-01-11 16:14:30 +010032
Michal Vaskof0537d82016-01-29 14:42:38 +010033/**
34 * @brief Enumeration of cert-to-name mapping types
35 */
Michal Vaskoc14e3c82016-01-11 16:14:30 +010036typedef enum {
Michal Vaskof0537d82016-01-29 14:42:38 +010037 NC_TLS_CTN_UNKNOWN = 0, /**< unknown mapping */
38 NC_TLS_CTN_SPECIFIED, /**< username explicitly specified */
39 NC_TLS_CTN_SAN_RFC822_NAME, /**< email address as username */
40 NC_TLS_CTN_SAN_DNS_NAME, /**< DNS name as username */
41 NC_TLS_CTN_SAN_IP_ADDRESS, /**< IP address as username */
42 NC_TLS_CTN_SAN_ANY, /**< any certificate Subject Alternative Name as username */
43 NC_TLS_CTN_COMMON_NAME /**< common name as username */
Michal Vaskoc14e3c82016-01-11 16:14:30 +010044} NC_TLS_CTN_MAPTYPE;
45
Radek Krejci53691be2016-02-22 13:58:37 +010046#endif /* NC_ENABLED_TLS */
Michal Vaskoc14e3c82016-01-11 16:14:30 +010047
Radek Krejci43390242015-10-08 15:34:04 +020048/**
Radek Krejci695d4fa2015-10-22 13:23:54 +020049 * @brief Enumeration of possible session statuses
50 */
51typedef enum {
Michal Vasko38a7c6c2015-12-04 12:29:20 +010052 NC_STATUS_STARTING = 0, /**< session is not yet fully initiated */
53 NC_STATUS_CLOSING, /**< session is being closed */
Michal Vasko428087d2016-01-14 16:04:28 +010054 NC_STATUS_INVALID, /**< session is not running and is supposed to be closed (nc_session_free()) */
Michal Vasko38a7c6c2015-12-04 12:29:20 +010055 NC_STATUS_RUNNING /**< up and running */
Radek Krejci695d4fa2015-10-22 13:23:54 +020056} NC_STATUS;
57
58/**
Michal Vasko38a7c6c2015-12-04 12:29:20 +010059 * @brief Enumeration of transport implementations (ways how libnetconf implements NETCONF transport protocol)
60 */
61typedef enum {
62 NC_TI_NONE = 0, /**< none - session is not connected yet */
63 NC_TI_FD, /**< file descriptors - use standard input/output, transport protocol is implemented
64 outside the current application */
Radek Krejci53691be2016-02-22 13:58:37 +010065#ifdef NC_ENABLED_SSH
Michal Vasko38a7c6c2015-12-04 12:29:20 +010066 NC_TI_LIBSSH, /**< libssh - use libssh library, only for NETCONF over SSH transport */
67#endif
Radek Krejci53691be2016-02-22 13:58:37 +010068#ifdef NC_ENABLED_TLS
Michal Vasko38a7c6c2015-12-04 12:29:20 +010069 NC_TI_OPENSSL /**< OpenSSL - use OpenSSL library, only for NETCONF over TLS transport */
70#endif
71} NC_TRANSPORT_IMPL;
72
73/**
Radek Krejci43390242015-10-08 15:34:04 +020074 * @brief NETCONF session object
75 */
76struct nc_session;
77
Radek Krejci695d4fa2015-10-22 13:23:54 +020078/**
Michal Vasko8dadf782016-01-15 10:29:36 +010079 * @brief Get session status.
80 *
81 * @param[in] session Session to get the information from.
Michal Vasko8dadf782016-01-15 10:29:36 +010082 * @return Session status.
83 */
84NC_STATUS nc_session_get_status(const struct nc_session *session);
85
86/**
87 * @brief Get session ID.
88 *
89 * @param[in] session Session to get the information from.
Michal Vasko8dadf782016-01-15 10:29:36 +010090 * @return Session ID.
91 */
92uint32_t nc_session_get_id(const struct nc_session *session);
93
94/**
Michal Vasko174fe8e2016-02-17 15:38:09 +010095 * @brief Get session NETCONF version.
96 *
97 * @param[in] session Session to get the information from.
98 * @return 0 for version 1.0, non-zero for version 1.1.
99 */
100int nc_session_get_version(const struct nc_session *session);
101
102/**
Michal Vasko8dadf782016-01-15 10:29:36 +0100103 * @brief Get session transport used.
104 *
105 * @param[in] session Session to get the information from.
Michal Vasko8dadf782016-01-15 10:29:36 +0100106 * @return Session transport.
107 */
108NC_TRANSPORT_IMPL nc_session_get_ti(const struct nc_session *session);
109
110/**
111 * @brief Get session username.
112 *
113 * @param[in] session Session to get the information from.
Michal Vasko8dadf782016-01-15 10:29:36 +0100114 * @return Session username.
115 */
116const char *nc_session_get_username(const struct nc_session *session);
117
118/**
119 * @brief Get session host.
120 *
121 * @param[in] session Session to get the information from.
Michal Vasko8dadf782016-01-15 10:29:36 +0100122 * @return Session host.
123 */
124const char *nc_session_get_host(const struct nc_session *session);
125
126/**
127 * @brief Get session port.
128 *
129 * @param[in] session Session to get the information from.
Michal Vasko8dadf782016-01-15 10:29:36 +0100130 * @return Session port.
131 */
132uint16_t nc_session_get_port(const struct nc_session *session);
133
134/**
Michal Vasko9a25e932016-02-01 10:36:42 +0100135 * @brief Get session context.
136 *
137 * @param[in] session Session to get the information from.
138 * @return Session context.
139 */
140struct ly_ctx *nc_session_get_ctx(const struct nc_session *session);
141
142/**
Michal Vasko8dadf782016-01-15 10:29:36 +0100143 * @brief Get session capabilities.
144 *
145 * @param[in] session Session to get the information from.
Michal Vasko8dadf782016-01-15 10:29:36 +0100146 * @return Session capabilities.
147 */
148const char **nc_session_get_cpblts(const struct nc_session *session);
149
150/**
151 * @brief Check capability presence in a session.
152 *
153 * @param[in] session Session to check.
154 * @param[in] capab Capability to look for, capability with any additional suffix will match.
Michal Vasko8dadf782016-01-15 10:29:36 +0100155 * @return Matching capability, NULL if none found.
156 */
157const char *nc_session_cpblt(const struct nc_session *session, const char *capab);
158
159/**
Radek Krejci695d4fa2015-10-22 13:23:54 +0200160 * @brief Free the NETCONF session object.
161 *
162 * @param[in] session Object to free.
163 */
164void nc_session_free(struct nc_session *session);
165
Radek Krejci43390242015-10-08 15:34:04 +0200166#endif /* NC_SESSION_H_ */