/** * @file session.h * @author Radek Krejci * @author Michal Vasko * @brief libnetconf2 session manipulation * * @copyright * Copyright (c) 2015 - 2023 CESNET, z.s.p.o. * * This source code is licensed under BSD 3-Clause License (the "License"). * You may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://opensource.org/licenses/BSD-3-Clause */ #ifndef NC_SESSION_H_ #define NC_SESSION_H_ #ifdef __cplusplus extern "C" { #endif #include "netconf.h" #ifdef NC_ENABLED_SSH_TLS /** * @brief Enumeration of NETCONF SSH authentication methods */ typedef enum { NC_SSH_AUTH_PUBLICKEY = 0x01, /**< publickey SSH authentication */ NC_SSH_AUTH_PASSWORD = 0x02, /**< password SSH authentication */ NC_SSH_AUTH_INTERACTIVE = 0x04 /**< interactive SSH authentication */ } NC_SSH_AUTH_TYPE; /** * @brief Enumeration of host key checking and known_hosts entry adding modes */ typedef enum { NC_SSH_KNOWNHOSTS_ASK = 0, /**< add a known_hosts entry, but with a prompt */ NC_SSH_KNOWNHOSTS_STRICT, /**< do not add a known_hosts entry and the server's host key must be present in the configured known_hosts file */ NC_SSH_KNOWNHOSTS_ACCEPT_NEW, /**< add a known_hosts entry without a prompt */ NC_SSH_KNOWNHOSTS_ACCEPT, /**< add a known_hosts entry without a prompt and allow connections to servers which changed their host key */ NC_SSH_KNOWNHOSTS_SKIP /**< do not add a known_hosts entry and skip all host key checks */ } NC_SSH_KNOWNHOSTS_MODE; /** * @brief Enumeration of cert-to-name mapping types */ typedef enum { NC_TLS_CTN_UNKNOWN = 0, /**< unknown mapping */ NC_TLS_CTN_SPECIFIED, /**< username explicitly specified */ NC_TLS_CTN_SAN_RFC822_NAME, /**< email address as username */ NC_TLS_CTN_SAN_DNS_NAME, /**< DNS name as username */ NC_TLS_CTN_SAN_IP_ADDRESS, /**< IP address as username */ NC_TLS_CTN_SAN_ANY, /**< any certificate Subject Alternative Name as username */ NC_TLS_CTN_COMMON_NAME /**< common name as username */ } NC_TLS_CTN_MAPTYPE; /** * @brief Enumeration of TLS versions. */ typedef enum { NC_TLS_VERSION_10 = 1, /**< TLS1.0 */ NC_TLS_VERSION_11 = 2, /**< TLS1.1 */ NC_TLS_VERSION_12 = 4, /**< TLS1.2 */ NC_TLS_VERSION_13 = 8 /**< TLS1.3 */ } NC_TLS_VERSION; #endif /* NC_ENABLED_SSH_TLS */ /** * @brief Enumeration of possible session statuses */ typedef enum { NC_STATUS_ERR = -1, /**< error return code for function getting the session status */ NC_STATUS_STARTING = 0, /**< session is not yet fully initiated */ NC_STATUS_CLOSING, /**< session is being closed */ NC_STATUS_INVALID, /**< session is not running and is supposed to be closed (nc_session_free()) */ NC_STATUS_RUNNING /**< up and running */ } NC_STATUS; /** * @brief Enumeration of transport implementations (ways how libnetconf implements NETCONF transport protocol) */ typedef enum { NC_TI_NONE = 0, /**< none - session is not connected yet */ NC_TI_FD, /**< file descriptors - use standard input/output, transport protocol is implemented outside the current application */ NC_TI_UNIX, /**< unix socket */ #ifdef NC_ENABLED_SSH_TLS NC_TI_SSH, /**< SSH - use libssh library, only for NETCONF over SSH transport */ NC_TI_TLS /**< TLS - use either OpenSSL or MbedTLS library, only for NETCONF over TLS transport */ #endif /* NC_ENABLED_SSH_TLS */ } NC_TRANSPORT_IMPL; /** * @brief Enumeration of Call Home connection types. */ typedef enum { NC_CH_CT_NOT_SET = 0, NC_CH_PERSIST, NC_CH_PERIOD } NC_CH_CONN_TYPE; /** * @brief Enumeration of Call Home client priority policy. */ typedef enum { NC_CH_FIRST_LISTED = 0, // default NC_CH_LAST_CONNECTED, NC_CH_RANDOM } NC_CH_START_WITH; /** * @brief NETCONF session object */ struct nc_session; /** * @brief Get session status. * * @param[in] session Session to get the information from. * @return Session status. */ NC_STATUS nc_session_get_status(const struct nc_session *session); /** * @brief Get session termination reason. * * @param[in] session Session to get the information from. * @return Session termination reason enum value. */ NC_SESSION_TERM_REASON nc_session_get_term_reason(const struct nc_session *session); /** * @brief Get session killer session ID. * * @param[in] session Session to get the information from. * @return Session killer ID. */ uint32_t nc_session_get_killed_by(const struct nc_session *session); /** * @brief Get session ID. * * @param[in] session Session to get the information from. * @return Session ID. */ uint32_t nc_session_get_id(const struct nc_session *session); /** * @brief Get session NETCONF version. * * @param[in] session Session to get the information from. * @return 0 for version 1.0, non-zero for version 1.1. */ int nc_session_get_version(const struct nc_session *session); /** * @brief Get session transport used. * * @param[in] session Session to get the information from. * @return Session transport. */ NC_TRANSPORT_IMPL nc_session_get_ti(const struct nc_session *session); /** * @brief Get session username. * * @param[in] session Session to get the information from. * @return Session username. */ const char *nc_session_get_username(const struct nc_session *session); /** * @brief Get session host. * * @param[in] session Session to get the information from. * @return Session host. */ const char *nc_session_get_host(const struct nc_session *session); /** * @brief Get session port. * * @param[in] session Session to get the information from. * @return Session port. */ uint16_t nc_session_get_port(const struct nc_session *session); #ifdef NC_ENABLED_SSH_TLS /** * @brief Get the SSH banner sent by the peer. * * @param[in] session Session to get the banner from. * @return SSH banner on success, NULL on error. */ const char *nc_session_ssh_get_banner(const struct nc_session *session); #endif /** * @brief Get session path (unix socket only). * * @param[in] session Session to get the information from. * @return Session unix socket path. */ const char *nc_session_get_path(const struct nc_session *session); /** * @brief Get session context. * * @param[in] session Session to get the information from. * @return Session context. */ const struct ly_ctx *nc_session_get_ctx(const struct nc_session *session); /** * @brief Assign arbitrary data to a session. * * @param[in] session Session to modify. * @param[in] data Data to be stored in the session. */ void nc_session_set_data(struct nc_session *session, void *data); /** * @brief Get the data assigned to a session. * * @param[in] session Session to get the data from. * @return Session-specific data. */ void *nc_session_get_data(const struct nc_session *session); /** * @brief Learn whether a session was created using Call Home or not. * * @param[in] session Session to get the information from. * @return 0 if a standard session, non-zero if a Call Home session. */ int nc_session_is_callhome(const struct nc_session *session); /** * @brief Free the NETCONF session object. * * @param[in] session Object to free. * @param[in] data_free Session user data destructor. */ void nc_session_free(struct nc_session *session, void (*data_free)(void *)); #ifdef __cplusplus } #endif #endif /* NC_SESSION_H_ */