blob: 79aaee9a27a07e7803f742a0d5959b5e43b0f52f [file] [log] [blame]
/**
* \file session_server_ch.h
* \author Michal Vasko <mvasko@cesnet.cz>
* \brief libnetconf2 Call Home session server manipulation
*
* Copyright (c) 2015 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_SERVER_CH_H_
#define NC_SESSION_SERVER_CH_H_
#include <stdint.h>
#include <libyang/libyang.h>
#include "session.h"
#include "netconf.h"
#if defined(NC_ENABLED_SSH) || defined(NC_ENABLED_TLS)
/**
* @brief Add a new Call Home client.
*
* @param[in] name Arbitrary unique client name.
* @param[in] ti Transport protocol to use.
* @return 0 on success, -1 on error.
*/
int nc_server_ch_add_client(const char *name, NC_TRANSPORT_IMPL ti);
/**
* @brief Drop any connections, stop connecting and remove a client.
*
* @param[in] name Client name. NULL matches all the clients.
* @return 0 on success, -1 on not finding any match.
*/
int nc_server_ch_del_client(const char *name);
/**
* @brief Add a new Call Home client endpoint.
*
* @param[in] client_name Existing client name.
* @param[in] endpt_name Arbitrary unique (within the client) endpoint name.
* @return 0 on success, -1 on error.
*/
int nc_server_ch_client_add_endpt(const char *client_name, const char *endpt_name);
/**
* @brief Remove a Call Home client endpoint.
*
* @param[in] client_name Existing client name.
* @param[in] endpt_name Existing endpoint of \p client_name. NULL matches all endpoints.
* @return 0 on success, -1 on error.
*/
int nc_server_ch_client_del_endpt(const char *client_name, const char *endpt_name);
/**
* @brief Change Call Home client endpoint listening address.
*
* On error the previous listening socket (if any) is left untouched.
*
* @param[in] client_name Existing Call Home client name.
* @param[in] endpt_name Existing endpoint name of \p client_name.
* @param[in] address New listening address.
* @return 0 on success, -1 on error.
*/
int nc_server_ch_client_endpt_set_address(const char *client_name, const char *endpt_name, const char *address);
/**
* @brief Change Call Home client endpoint listening port.
*
* On error the previous listening socket (if any) is left untouched.
*
* @param[in] client_name Existing Call Home client name.
* @param[in] endpt_name Existing endpoint name of \p client_name.
* @param[in] port New listening port.
* @return 0 on success, -1 on error.
*/
int nc_server_ch_client_endpt_set_port(const char *client_name, const char *endpt_name, uint16_t port);
/**
* @brief Set Call Home client connection type.
*
* @param[in] client_name Existing Call Home client name.
* @param[in] conn_type Call Home connection type.
* @return 0 on success, -1 on error.
*/
int nc_server_ch_client_set_conn_type(const char *client_name, NC_CH_CONN_TYPE conn_type);
/**
* @brief Set Call Home client persistent connection idle timeout.
*
* @param[in] client_name Existing Call Home client name.
* @param[in] idle_timeout Call Home persistent idle timeout.
* @return 0 on success, -1 on error.
*/
int nc_server_ch_client_persist_set_idle_timeout(const char *client_name, uint32_t idle_timeout);
/**
* @brief Set Call Home client persistent connection keep-alive max wait time.
*
* @param[in] client_name Existing Call Home client name.
* @param[in] max_wait Call Home persistent max wait time for keep-alive reply.
* @return 0 on success, -1 on error.
*/
int nc_server_ch_client_persist_set_keep_alive_max_wait(const char *client_name, uint16_t max_wait);
/**
* @brief Set Call Home client persistent connection keep-alive max attempts.
*
* @param[in] client_name Existing Call Home client name.
* @param[in] max_attempts Call Home persistent keep-alive maximum contact attempts.
* @return 0 on success, -1 on error.
*/
int nc_server_ch_client_persist_set_keep_alive_max_attempts(const char *client_name, uint8_t max_attempts);
/**
* @brief Set Call Home client periodic connection idle timeout.
*
* @param[in] client_name Existing Call Home client name.
* @param[in] idle_timeout Call Home periodic idle timeout.
* @return 0 on success, -1 on error.
*/
int nc_server_ch_client_period_set_idle_timeout(const char *client_name, uint16_t idle_timeout);
/**
* @brief Set Call Home client periodic reconnect timeout.
*
* @param[in] client_name Existing Call Home client name.
* @param[in] reconnect_timeout Call Home periodic reconnect timeout.
* @return 0 on success, -1 on error.
*/
int nc_server_ch_client_period_set_reconnect_timeout(const char *client_name, uint16_t reconnect_timeout);
/**
* @brief Set Call Home client start-with policy.
*
* @param[in] client_name Existing Call Home client name.
* @param[in] start_with Call Home client start-with.
* @return 0 on success, -1 on error.
*/
int nc_server_ch_client_set_start_with(const char *client_name, NC_CH_START_WITH start_with);
/**
* @brief Set Call Home client overall max attempts.
*
* @param[in] client_name Existing Call Home client name.
* @param[in] conn_type Call Home overall max reconnect attempts.
* @return 0 on success, -1 on error.
*/
int nc_server_ch_client_set_max_attempts(const char *client_name, uint8_t max_attempts);
/**
* @brief Establish a Call Home connection with a listening NETCONF client.
*
* @param[in] client_name Existing client name.
* @param[out] session_clb Function that is called for every established session on the client. \p new_session
* pointer is internally discarded afterwards.
* @return 0 if the thread was successfully created, -1 on error.
*/
int nc_connect_ch_client_dispatch(const char *client_name,
void (*session_clb)(const char *client_name, struct nc_session *new_session));
#endif /* NC_ENABLED_SSH || NC_ENABLED_TLS */
#ifdef NC_ENABLED_SSH
/**
* @brief Add Call Home SSH host keys the server will identify itself with. Any RSA, DSA, and
* ECDSA keys can be added. However, a maximum of one key of each type will be used
* during SSH authentication, later keys replacing earlier ones.
*
* @param[in] client_name Existing Call Home client name.
* @param[in] privkey_path Path to a private key.
* @return 0 on success, -1 on error.
*/
int nc_server_ssh_ch_client_add_hostkey(const char *client_name, const char *privkey_path);
/**
* @brief Delete Call Home SSH host keys. Their order is preserved.
*
* @param[in] client_name Existing Call Home client name.
* @param[in] privkey_path Path to a private key. NULL matches all the keys.
* @return 0 on success, -1 on error.
*/
int nc_server_ssh_ch_client_del_hostkey(const char *client_name, const char *privkey_path);
/**
* @brief Set Call Home SSH banner the server will send to every client.
*
* @param[in] client_name Existing Call Home client name.
* @param[in] banner SSH banner.
* @return 0 on success, -1 on error.
*/
int nc_server_ssh_ch_client_set_banner(const char *client_name, const char *banner);
/**
* @brief Set accepted Call Home SSH authentication methods. All (publickey, password, interactive)
* are supported by default.
*
* @param[in] client_name Existing Call Home client name.
* @param[in] auth_methods Accepted authentication methods bit field of NC_SSH_AUTH_TYPE.
* @return 0 on success, -1 on error.
*/
int nc_server_ssh_ch_client_set_auth_methods(const char *client_name, int auth_methods);
/**
* @brief Set Call Home SSH authentication attempts of every client. 3 by default.
*
* @param[in] client_name Existing Call Home client name.
* @param[in] auth_attempts Failed authentication attempts before a client is dropped.
* @return 0 on success, -1 on error.
*/
int nc_server_ssh_ch_client_set_auth_attempts(const char *client_name, uint16_t auth_attempts);
/**
* @brief Set Call Home SSH authentication timeout. 10 seconds by default.
*
* @param[in] client_name Existing Call Home client name.
* @param[in] auth_timeout Number of seconds before an unauthenticated client is dropped.
* @return 0 on success, -1 on error.
*/
int nc_server_ssh_ch_client_set_auth_timeout(const char *client_name, uint16_t auth_timeout);
/**
* @brief Add an authorized Call Home client SSH public key. This public key can be used for
* publickey authentication afterwards.
*
* @param[in] client_name Existing Call Home client name.
* @param[in] pubkey_path Path to the public key.
* @param[in] username Username that the client with the public key must use.
* @return 0 on success, -1 on error.
*/
int nc_server_ssh_ch_client_add_authkey(const char *client_name, const char *pubkey_path, const char *username);
/**
* @brief Remove an authorized Call Home client SSH public key.
*
* @param[in] client_name Existing Call Home client name.
* @param[in] pubkey_path Path to an authorized public key. NULL matches all the keys.
* @param[in] username Username for an authorized public key. NULL matches all the usernames.
* @return 0 on success, -1 on not finding any match.
*/
int nc_server_ssh_ch_client_del_authkey(const char *client_name, const char *pubkey_path, const char *username);
#endif /* NC_ENABLED_SSH */
#ifdef NC_ENABLED_TLS
/**
* @brief Set server Call Home TLS certificate. Alternative to nc_tls_server_set_cert_path().
* There can only be one certificate for each key type, it is replaced if already set.
*
* @param[in] client_name Existing Call Home client name.
* @param[in] cert Base64-encoded certificate in ASN.1 DER encoding.
* @return 0 on success, -1 on error.
*/
int nc_server_tls_ch_client_set_cert(const char *client_name, const char *cert);
/**
* @brief Set server Call Home TLS certificate. Alternative to nc_tls_server_set_cert().
* There can only be one certificate for each key type, it is replaced if already set.
*
* @param[in] client_name Existing Call Home client name.
* @param[in] cert_path Path to a certificate file in PEM format.
* @return 0 on success, -1 on error.
*/
int nc_server_tls_ch_client_set_cert_path(const char *client_name, const char *cert_path);
/**
* @brief Set server Call Home TLS private key matching the certificate.
* Alternative to nc_server_tls_ch_client_set_key_path().
* There can only be one of every key type, it is replaced if already set.
*
* @param[in] client_name Existing Call Home client name.
* @param[in] privkey Base64-encoded certificate in ASN.1 DER encoding.
* @param[in] is_rsa Whether \p privkey are the data of an RSA (1) or DSA (0) key.
* @return 0 on success, -1 on error.
*/
int nc_server_tls_ch_client_set_key(const char *client_name, const char *privkey, int is_rsa);
/**
* @brief Set server Call Home TLS private key matching the certificate.
* Alternative to nc_server_tls_ch_client_set_key().
* There can only be one of every key type, it is replaced if already set.
*
* @param[in] client_name Existing Call Home client name.
* @param[in] privkey_path Path to a private key file in PEM format.
* @return 0 on success, -1 on error.
*/
int nc_server_tls_ch_client_set_key_path(const char *client_name, const char *privkey_path);
/**
* @brief Add a Call Home trusted certificate. Can be both a CA or a client one.
*
* @param[in] client_name Existing Call Home client name.
* @param[in] cert_name Arbitary name identifying this certificate.
* @param[in] cert Base64-enocded certificate in ASN.1 DER encoding.
* @return 0 on success, -1 on error.
*/
int nc_server_tls_ch_client_add_trusted_cert(const char *client_name, const char *cert_name, const char *cert);
/**
* @brief Add a Call Home trusted certificate. Can be both a CA or a client one.
*
* @param[in] client_name Existing Call Home client name.
* @param[in] cert_name Arbitary name identifying this certificate.
* @param[in] cert_path Path to a trusted certificate file in PEM format.
* @return 0 on success, -1 on error.
*/
int nc_server_tls_ch_client_add_trusted_cert_path(const char *client_name, const char *cert_name, const char *cert_path);
/**
* @brief Set trusted Call Home Certificate Authority certificate locations. There
* can only be one file and one directory, they are replaced if already set.
*
* @param[in] client_name Existing Call Home client name.
* @param[in] ca_file Path to a trusted CA cert store file in PEM format.
* Can be NULL.
* @param[in] ca_dir Path to a trusted CA cert store hashed directory
* (c_rehash utility can be used to create hashes)
* with PEM files. Can be NULL.
* @return 0 on success, -1 on error.
*/
int nc_server_tls_ch_client_set_trusted_ca_paths(const char *client_name, const char *ca_file, const char *ca_dir);
/**
* @brief Remove a set Call Home trusted certificate.
* CRLs and CTN entries are not affected.
*
* @param[in] client_name Existing Call Home client name.
* @param[in] cert_name Name of the certificate to delete. NULL deletes all the certificates.
* @return 0 on success, -1 on not found.
*/
int nc_server_tls_ch_client_del_trusted_cert(const char *client_name, const char *cert_name);
/**
* @brief Set Call Home Certificate Revocation List locations. There can only be
* one file and one directory, they are replaced if already set.
*
* @param[in] client_name Existing Call Home client name.
* @param[in] crl_file Path to a CRL store file in PEM format. Can be NULL.
* @param[in] crl_dir Path to a CRL store hashed directory (c_rehash utility
* can be used to create hashes) with PEM files. Can be NULL.
* @return 0 on success, -1 on error.
*/
int nc_server_tls_ch_client_set_crl_paths(const char *client_name, const char *crl_file, const char *crl_dir);
/**
* @brief Destroy and clean Call Home CRLs. Call Home certificates, private keys,
* and CTN entries are not affected.
*
* @param[in] client_name Existing Call Home client name.
*/
void nc_server_tls_ch_client_clear_crls(const char *client_name);
/**
* @brief Add a Call Home Cert-to-name entry.
*
* @param[in] client_name Existing Call Home client name.
* @param[in] id Priority of the entry.
* @param[in] fingerprint Matching certificate fingerprint.
* @param[in] map_type Type of username-certificate mapping.
* @param[in] name Specific username if \p map_type == NC_TLS_CTN_SPECIFED. Must be NULL otherwise.
* @return 0 on success, -1 on error.
*/
int nc_server_tls_ch_client_add_ctn(const char *client_name, uint32_t id, const char *fingerprint,
NC_TLS_CTN_MAPTYPE map_type, const char *name);
/**
* @brief Remove a Call Home Cert-to-name entry.
*
* @param[in] client_name Existing Call Home client name.
* @param[in] id Priority of the entry. -1 matches all the priorities.
* @param[in] fingerprint Fingerprint fo the entry. NULL matches all the fingerprints.
* @param[in] map_type Mapping type of the entry. 0 matches all the mapping types.
* @param[in] name Specific username for the entry. NULL matches all the usernames.
* @return 0 on success, -1 on not finding any match.
*/
int nc_server_tls_ch_client_del_ctn(const char *client_name, int64_t id, const char *fingerprint,
NC_TLS_CTN_MAPTYPE map_type, const char *name);
#endif /* NC_ENABLED_TLS */
#endif /* NC_SESSION_SERVER_CH_H_ */