| /** |
| * @file config_new.h |
| * @author Roman Janota <janota@cesnet.cz> |
| * @brief libnetconf2 server new configuration creation header |
| * |
| * @copyright |
| * Copyright (c) 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_CONFIG_NEW_H_ |
| #define NC_CONFIG_NEW_H_ |
| |
| #include <libyang/libyang.h> |
| #include <stdarg.h> |
| |
| #include "session_p.h" |
| |
| #ifdef __cplusplus |
| extern "C" { |
| #endif |
| |
| #ifdef NC_ENABLED_SSH_TLS |
| |
| /* private key's pkcs8 header */ |
| #define NC_PKCS8_PRIVKEY_HEADER "-----BEGIN PRIVATE KEY-----\n" |
| |
| /* private key's pkcs8 footer */ |
| #define NC_PKCS8_PRIVKEY_FOOTER "\n-----END PRIVATE KEY-----\n" |
| |
| /* private key's openssh header */ |
| #define NC_OPENSSH_PRIVKEY_HEADER "-----BEGIN OPENSSH PRIVATE KEY-----\n" |
| |
| /* private key's openssh footer */ |
| #define NC_OPENSSH_PRIVKEY_FOOTER "\n-----END OPENSSH PRIVATE KEY-----\n" |
| |
| /* private key's pkcs1 rsa header */ |
| #define NC_PKCS1_RSA_PRIVKEY_HEADER "-----BEGIN RSA PRIVATE KEY-----\n" |
| |
| /* private key's sec1 ec header */ |
| #define NC_SEC1_EC_PRIVKEY_HEADER "-----BEGIN EC PRIVATE KEY-----\n" |
| |
| /* private key's header when getting an EC/RSA privkey from file using libssh */ |
| #define NC_LIBSSH_PRIVKEY_HEADER "-----BEGIN PRIVATE KEY-----\n" |
| |
| /* private key's footer when getting an EC/RSA privkey from file using libssh */ |
| #define NC_LIBSSH_PRIVKEY_FOOTER "\n-----END PRIVATE KEY-----\n" |
| |
| /* public key's ssh2 header */ |
| #define NC_SSH2_PUBKEY_HEADER "---- BEGIN SSH2 PUBLIC KEY ----\n" |
| |
| /* public key's SubjectPublicKeyInfo format header */ |
| #define NC_SUBJECT_PUBKEY_INFO_HEADER "-----BEGIN PUBLIC KEY-----\n" |
| |
| /* public key's SubjectPublicKeyInfo format footer */ |
| #define NC_SUBJECT_PUBKEY_INFO_FOOTER "\n-----END PUBLIC KEY-----\n" |
| |
| /* certificate's PEM format header */ |
| #define NC_PEM_CERTIFICATE_HEADER "-----BEGIN CERTIFICATE-----\n" |
| |
| /* certificate's PEM format footer */ |
| #define NC_PEM_CERTIFICATE_FOOTER "\n-----END CERTIFICATE-----\n" |
| |
| typedef enum { |
| NC_ALG_HOSTKEY, |
| NC_ALG_KEY_EXCHANGE, |
| NC_ALG_ENCRYPTION, |
| NC_ALG_MAC |
| } NC_ALG_TYPE; |
| |
| int nc_server_config_new_get_keys(const char *privkey_path, const char *pubkey_path, |
| char **privkey, char **pubkey, NC_PRIVKEY_FORMAT *privkey_type, NC_PUBKEY_FORMAT *pubkey_type); |
| |
| int nc_server_config_new_get_pubkey(const char *pubkey_path, char **pubkey, NC_PUBKEY_FORMAT *pubkey_type); |
| |
| int nc_server_config_new_read_certificate(const char *cert_path, char **cert); |
| |
| const char * nc_config_new_privkey_format_to_identityref(NC_PRIVKEY_FORMAT format); |
| |
| #endif /* NC_ENABLED_SSH_TLS */ |
| |
| /** |
| * @brief Creates YANG data nodes in a path and gives the final node a value. |
| * |
| * @param[in] ctx libyang context. |
| * @param[in, out] tree The YANG data tree where the insertion will happen. On success |
| * the top level container is always returned. |
| * @param[in] value Value assigned to the final node in the path. |
| * @param[in] path_fmt Format of the path. |
| * @param[in] ... Parameters for the path format, essentially representing the lists' keys. |
| * @return 0 on success, 1 otherwise. |
| */ |
| int nc_config_new_create(const struct ly_ctx *ctx, struct lyd_node **tree, const char *value, const char *path_fmt, ...); |
| |
| /** |
| * @brief Creates new YANG data nodes in a path and gives the final node a value. |
| * |
| * @param[in] ctx libyang context. |
| * @param[in] parent_path Path to the parent node. |
| * @param[in] child_name Name of the parent's child node to be created. |
| * @param[in] value Value to give to the child node. |
| * @param[out] tree YANG data tree where the insertion will happen. On success |
| * the top level container is always returned. |
| * @return 0 on success, 1 otherwise. |
| */ |
| int nc_config_new_create_append(const struct ly_ctx *ctx, const char *parent_path, const char *child_name, |
| const char *value, struct lyd_node **tree); |
| |
| /** |
| * @brief Deletes a subtree from the YANG data. |
| * |
| * @param tree YANG data from which the subtree will be deleted. |
| * @param[in] path_fmt Format of the path |
| * @param[in] ... Parameters for the path format, essentially representing the lists' keys. |
| * @return 0 on success, non-zero otherwise. |
| */ |
| int nc_config_new_delete(struct lyd_node **tree, const char *path_fmt, ...); |
| |
| int nc_config_new_check_delete(struct lyd_node **tree, const char *path_fmt, ...); |
| |
| #ifdef __cplusplus |
| } |
| #endif |
| |
| #endif /* NC_CONFIG_NEW_H_ */ |