blob: 1bd872314d305dc4fde63a77a1f403b390d1af31 [file] [log] [blame]
Radek Krejci206fcd62015-10-07 15:42:48 +02001/**
2 * \file session_p.h
3 * \author Radek Krejci <rkrejci@cesnet.cz>
4 * \brief libnetconf2 session manipulation
5 *
6 * Copyright (c) 2015 CESNET, z.s.p.o.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
16 * distribution.
17 * 3. Neither the name of the Company nor the names of its contributors
18 * may be used to endorse or promote products derived from this
19 * software without specific prior written permission.
20 *
21 */
22
23#ifndef NC_SESSION_PRIVATE_H_
24#define NC_SESSION_PRIVATE_H_
25
Radek Krejcife0b3472015-10-12 13:43:42 +020026#include <stdint.h>
Radek Krejci206fcd62015-10-07 15:42:48 +020027#include <pthread.h>
28
29#ifdef ENABLE_LIBSSH
30# include <libssh/libssh.h>
31# include <libssh/callbacks.h>
32#endif
33
34#ifdef ENABLE_TLS
35# include <openssl/bio.h>
36# include <openssl/ssl.h>
37#endif
38
39#include <libyang/libyang.h>
40
Radek Krejci43390242015-10-08 15:34:04 +020041#include "libnetconf.h"
42#include "session.h"
43
Radek Krejci206fcd62015-10-07 15:42:48 +020044/**
45 * Sleep time in microseconds to wait between unsuccessful reading due to EAGAIN or EWOULDBLOCK
46 */
47#define NC_READ_SLEEP 100
48
49/**
50 * @brief Enumeration of transport implementations (ways how libnetconf implements NETCONF transport protocol)
51 */
52typedef enum {
53 NC_TI_FD, /**< file descriptors - use standard input/output, transport protocol is implemented
54 outside the current application (only for NETCONF over SSH transport) */
55#ifdef ENABLE_LIBSSH
56 NC_TI_LIBSSH, /**< libssh - use libssh library, only for NETCONF over SSH transport */
57#endif
58#ifdef ENABLE_TLS
Michal Vaskob7ea2432015-10-26 15:38:40 +010059 NC_TI_OPENSSL /**< OpenSSL - use OpenSSL library, only for NETCONF over TLS transport */
Radek Krejci206fcd62015-10-07 15:42:48 +020060#endif
61} NC_TRANSPORT_IMPL;
62
63/**
Radek Krejci695d4fa2015-10-22 13:23:54 +020064 * @brief type of the session
Radek Krejci206fcd62015-10-07 15:42:48 +020065 */
66typedef enum {
Radek Krejci695d4fa2015-10-22 13:23:54 +020067 NC_CLIENT, /**< client side */
68 NC_SERVER /**< server side */
Radek Krejci206fcd62015-10-07 15:42:48 +020069} NC_SIDE;
70
71/**
72 * @brief Enumeration of the supported NETCONF protocol versions
73 */
74typedef enum {
75 NC_VERSION_10 = 0, /**< NETCONV 1.0 - RFC 4741, 4742 */
76 NC_VERSION_11 = 1 /**< NETCONF 1.1 - RFC 6241, 6242 */
77} NC_VERSION;
78
79#define NC_VERSION_10_ENDTAG "]]>]]>"
80#define NC_VERSION_10_ENDTAG_LEN 6
81
82/**
Radek Krejci5686ff72015-10-09 13:33:56 +020083 * @brief Container to serialize RPC reply objects
84 */
85struct nc_reply_cont {
86 struct nc_reply *msg;
87 struct nc_reply_cont *next;
88};
89
90/**
91 * @brief Container to serialize Notification objects
92 */
93struct nc_notif_cont {
94 struct nc_notif *msg;
95 struct nc_notif_cont *next;
96};
97
98/**
Radek Krejci206fcd62015-10-07 15:42:48 +020099 * @brief NETCONF session structure
100 */
101struct nc_session {
Radek Krejci695d4fa2015-10-22 13:23:54 +0200102 NC_STATUS status; /**< status of the session */
103 NC_SIDE side; /**< side of the session: client or server */
Radek Krejci5686ff72015-10-09 13:33:56 +0200104
105 /* NETCONF data */
Radek Krejci206fcd62015-10-07 15:42:48 +0200106 uint32_t id; /**< NETCONF session ID (session-id-type) */
107 NC_VERSION version; /**< NETCONF protocol version */
Radek Krejci695d4fa2015-10-22 13:23:54 +0200108 pthread_t *notif; /**< running notifications thread - TODO server-side only? */
Radek Krejci5686ff72015-10-09 13:33:56 +0200109
110 /* Transport implementation */
Radek Krejci206fcd62015-10-07 15:42:48 +0200111 NC_TRANSPORT_IMPL ti_type; /**< transport implementation type to select items from ti union */
Radek Krejci695d4fa2015-10-22 13:23:54 +0200112 pthread_mutex_t *ti_lock; /**< lock to access ti. Note that in case of libssh TI, it can be shared with other
Michal Vaskob7ea2432015-10-26 15:38:40 +0100113 NETCONF sessions on the same SSH session (but different SSH channel) */
Radek Krejci206fcd62015-10-07 15:42:48 +0200114 union {
115 struct {
116 int in; /**< input file descriptor */
117 int out; /**< output file descriptor */
Radek Krejci206fcd62015-10-07 15:42:48 +0200118 } fd; /**< NC_TI_FD transport implementation structure */
119#ifdef ENABLE_LIBSSH
120 struct {
Radek Krejci206fcd62015-10-07 15:42:48 +0200121 ssh_channel channel;
Radek Krejci695d4fa2015-10-22 13:23:54 +0200122 ssh_session session;
123 struct nc_session *next; /**< pointer to the next NETCONF session on the same
124 SSH session, but different SSH channel. If no such session exists, it is NULL.
125 otherwise there is a ring list of the NETCONF sessions */
Radek Krejci206fcd62015-10-07 15:42:48 +0200126 } libssh;
127#endif
128#ifdef ENABLE_TLS
129 SSL *tls;
130#endif
Radek Krejci5686ff72015-10-09 13:33:56 +0200131 } ti; /**< transport implementation data */
Radek Krejciac6d3472015-10-22 15:47:18 +0200132 const char *username;
133 const char *host;
134 unsigned short port;
Radek Krejci5686ff72015-10-09 13:33:56 +0200135
136 /* other */
137 struct ly_ctx *ctx; /**< libyang context of the session */
Radek Krejci695d4fa2015-10-22 13:23:54 +0200138 uint8_t flags; /**< various flags of the session - TODO combine with status and/or side */
139#define NC_SESSION_SHAREDCTX 0x1
Radek Krejci5686ff72015-10-09 13:33:56 +0200140
141 /* client side only data */
Radek Krejcife0b3472015-10-12 13:43:42 +0200142 uint64_t msgid;
Radek Krejci695d4fa2015-10-22 13:23:54 +0200143 const char **cpblts; /**< list of server's capabilities on client side */
Radek Krejci5686ff72015-10-09 13:33:56 +0200144 struct nc_reply_cont *replies; /**< queue for RPC replies received instead of notifications */
145 struct nc_notif_cont *notifs; /**< queue for notifications received instead of RPC reply */
Radek Krejci206fcd62015-10-07 15:42:48 +0200146};
147
148/**
149 * Functions
150 * - io.c
151 */
152
153/**
154 * @brief Read message from the wire.
155 *
156 * Accepts hello, rpc, rpc-reply and notification. Received string is transformed into
157 * libyang XML tree and the message type is detected from the top level element.
158 *
159 * @param[in] session NETCONF session from which the message is being read.
160 * @param[in] timeout Timeout in milliseconds. Negative value means infinite timeout,
161 * zero value causes to return immediately.
162 * @param[out] data XML tree built from the read data.
163 * @return Type of the read message. #NC_MSG_WOULDBLOCK is returned if timeout is positive
Radek Krejci5686ff72015-10-09 13:33:56 +0200164 * (or zero) value and it passed out without any data on the wire. #NC_MSG_ERROR is
Radek Krejci206fcd62015-10-07 15:42:48 +0200165 * returned on error and #NC_MSG_NONE is never returned by this function.
166 */
167NC_MSG_TYPE nc_read_msg(struct nc_session* session, int timeout, struct lyxml_elem **data);
168
Radek Krejcife0b3472015-10-12 13:43:42 +0200169/**
170 * @brief Write message into wire.
171 *
172 * @param[in] session NETCONF session to which the message will be written.
173 * @param[in] type Type of the message to write. According to the type, the
174 * specific additional parameters are required or accepted:
175 * - #NC_MSG_RPC
176 * - `struct lyd_node *op;` - operation (content of the \<rpc/\> to be sent. Required parameter.
177 * - `const char *attrs;` - additional attributes to be added into the \<rpc/\> element.
178 * `message-id` attribute is added automatically and default namespace is set to
179 * #NC_NS_BASE. Optional parameter.
180 * - #NC_MSG_REPLY
181 * - `struct nc_rpc *rpc;` - RPC object to reply. Required parameter.
182 * - TODO: content
183 * - #NC_MSG_NOTIF
184 * - TODO: content
185 * @return 0 on success
186 */
187int nc_write_msg(struct nc_session *session, NC_MSG_TYPE type, ...);
188
Radek Krejci206fcd62015-10-07 15:42:48 +0200189#endif /* NC_SESSION_PRIVATE_H_ */