blob: f1cdfe23b32a3b28c029ae9dc106ccf30e34d7d6 [file] [log] [blame]
Václav Kubernátc31bd602019-03-07 11:44:48 +01001/*
2 * Copyright (C) 2019 CESNET, https://photonics.cesnet.cz/
3 *
4 * Written by Václav Kubernát <kubernat@cesnet.cz>
5 * Written by Jan Kundrát <jan.kundrat@cesnet.cz>
6 *
7*/
8
Jan Kundráte0154282020-01-22 19:43:30 +01009#include <cstring>
Václav Kubernátc31bd602019-03-07 11:44:48 +010010#include <libyang/Tree_Data.hpp>
11#include <mutex>
12extern "C" {
13#include <nc_client.h>
14}
15#include <sstream>
Václav Kubernátc31bd602019-03-07 11:44:48 +010016#include "netconf-client.h"
Jan Kundráte0154282020-01-22 19:43:30 +010017#include "UniqueResource.h"
Václav Kubernátc31bd602019-03-07 11:44:48 +010018
19namespace libnetconf {
20
21namespace impl {
22
23/** @short Initialization of the libnetconf2 library client
24
25Just a safe wrapper over nc_client_init and nc_client_destroy, really.
26*/
27class ClientInit {
28 ClientInit()
29 {
30 nc_client_init();
31 nc_verbosity(NC_VERB_DEBUG);
32 }
33
34 ~ClientInit()
35 {
36 nc_client_destroy();
37 }
38
39public:
40 static ClientInit& instance()
41 {
42 static ClientInit lib;
43 return lib;
44 }
45
46 ClientInit(const ClientInit&) = delete;
47 ClientInit(ClientInit&&) = delete;
48 ClientInit& operator=(const ClientInit&) = delete;
49 ClientInit& operator=(ClientInit&&) = delete;
50};
51
52static std::mutex clientOptions;
53
54inline void custom_free_nc_reply_data(nc_reply_data* reply)
55{
56 nc_reply_free(reinterpret_cast<nc_reply*>(reply));
57}
58inline void custom_free_nc_reply_error(nc_reply_error* reply)
59{
60 nc_reply_free(reinterpret_cast<nc_reply*>(reply));
61}
62
Jan Kundráte0154282020-01-22 19:43:30 +010063char *ssh_auth_interactive_cb(const char *auth_name, const char *instruction, const char *prompt, int echo, void *priv)
64{
65 const auto cb = static_cast<const client::KbdInteractiveCb*>(priv);
66 auto res = (*cb)(auth_name, instruction, prompt, echo);
67 return ::strdup(res.c_str());
68}
69
Václav Kubernátc31bd602019-03-07 11:44:48 +010070template <auto fn>
71using deleter_from_fn = std::integral_constant<decltype(fn), fn>;
72
73template <typename T>
74struct deleter_type_for {
75 using func_type = void (*)(T*);
76};
77
78template <typename T>
79struct deleter_for {
80};
81
82template <>
83struct deleter_for<struct nc_rpc> {
84 static constexpr void (*free)(struct nc_rpc*) = deleter_from_fn<nc_rpc_free>();
85};
86template <>
87struct deleter_for<struct nc_reply> {
88 static constexpr void (*free)(struct nc_reply*) = deleter_from_fn<nc_reply_free>();
89};
90template <>
91struct deleter_for<struct nc_reply_data> {
92 static constexpr void (*free)(struct nc_reply_data*) = deleter_from_fn<custom_free_nc_reply_data>();
93};
94template <>
95struct deleter_for<struct nc_reply_error> {
96 static constexpr void (*free)(struct nc_reply_error*) = deleter_from_fn<custom_free_nc_reply_error>();
97};
98
99template <typename T>
100using unique_ptr_for = std::unique_ptr<T, decltype(deleter_for<T>::free)>;
101
102template <typename T>
103auto guarded(T* ptr)
104{
105 return unique_ptr_for<T>(ptr, deleter_for<T>::free);
106}
107
108unique_ptr_for<struct nc_reply> do_rpc(client::Session* session, unique_ptr_for<struct nc_rpc>&& rpc)
109{
110 uint64_t msgid;
111 NC_MSG_TYPE msgtype;
112
113 msgtype = nc_send_rpc(session->session_internal(), rpc.get(), 1000, &msgid);
114 if (msgtype == NC_MSG_ERROR) {
115 throw std::runtime_error{"Failed to send RPC"};
116 }
117 if (msgtype == NC_MSG_WOULDBLOCK) {
118 throw std::runtime_error{"Timeout sending an RPC"};
119 }
120
121 struct nc_reply* raw_reply;
122 while (true) {
123 msgtype = nc_recv_reply(session->session_internal(), rpc.get(), msgid, 20000, LYD_OPT_DESTRUCT | LYD_OPT_NOSIBLINGS, &raw_reply);
124 auto reply = guarded(raw_reply);
125 raw_reply = nullptr;
126
127 switch (msgtype) {
128 case NC_MSG_ERROR:
129 throw std::runtime_error{"Failed to receive an RPC reply"};
130 case NC_MSG_WOULDBLOCK:
131 throw std::runtime_error{"Timed out waiting for RPC reply"};
132 case NC_MSG_REPLY_ERR_MSGID:
133 throw std::runtime_error{"Received a wrong reply -- msgid mismatch"};
134 case NC_MSG_NOTIF:
135 continue;
136 default:
137 return reply;
138 }
139 }
140 __builtin_unreachable();
141}
142
143client::ReportedError make_error(unique_ptr_for<struct nc_reply>&& reply)
144{
145 if (reply->type != NC_RPL_ERROR) {
146 throw std::logic_error{"Cannot extract an error from a non-error server reply"};
147 }
148
149 auto errorReply = guarded(reinterpret_cast<struct nc_reply_error*>(reply.release()));
150
151 // TODO: capture the error details, not just that human-readable string
152 std::ostringstream ss;
153 ss << "Server error:" << std::endl;
154 for (uint32_t i = 0; i < errorReply->count; ++i) {
155 const auto e = errorReply->err[i];
156 ss << " #" << i << ": " << e.message;
157 if (e.path) {
158 ss << " (XPath " << e.path << ")";
159 }
160 ss << std::endl;
161 }
162 return client::ReportedError{ss.str()};
163}
164
165unique_ptr_for<struct nc_reply_data> do_rpc_data(client::Session* session, unique_ptr_for<struct nc_rpc>&& rpc)
166{
167 auto x = do_rpc(session, std::move(rpc));
168
169 switch (x->type) {
170 case NC_RPL_DATA:
171 return guarded(reinterpret_cast<struct nc_reply_data*>(x.release()));
172 case NC_RPL_OK:
173 throw std::runtime_error{"Received OK instead of a data reply"};
174 case NC_RPL_ERROR:
175 throw make_error(std::move(x));
176 default:
177 throw std::runtime_error{"Unhandled reply type"};
178 }
179}
180
181void do_rpc_ok(client::Session* session, unique_ptr_for<struct nc_rpc>&& rpc)
182{
183 auto x = do_rpc(session, std::move(rpc));
184
185 switch (x->type) {
186 case NC_RPL_DATA:
187 throw std::runtime_error{"Unexpected DATA reply"};
188 case NC_RPL_OK:
189 return;
190 case NC_RPL_ERROR:
191 throw make_error(std::move(x));
192 default:
193 throw std::runtime_error{"Unhandled reply type"};
194 }
195}
196}
197
198namespace client {
199
200struct nc_session* Session::session_internal()
201{
202 return m_session;
203}
204
205Session::Session(struct nc_session* session)
206 : m_session(session)
207{
208 impl::ClientInit::instance();
209}
210
211Session::~Session()
212{
213 ::nc_session_free(m_session, nullptr);
214}
215
216std::unique_ptr<Session> Session::connectPubkey(const std::string& host, const uint16_t port, const std::string& user, const std::string& pubPath, const std::string& privPath)
217{
218 impl::ClientInit::instance();
219
220 {
221 // FIXME: this is still horribly not enough. libnetconf *must* provide us with something better.
222 std::lock_guard lk(impl::clientOptions);
223 nc_client_ssh_set_username(user.c_str());
224 nc_client_ssh_set_auth_pref(NC_SSH_AUTH_PUBLICKEY, 5);
225 nc_client_ssh_add_keypair(pubPath.c_str(), privPath.c_str());
226 }
227 auto session = std::make_unique<Session>(nc_connect_ssh(host.c_str(), port, nullptr));
228 if (!session->m_session) {
229 throw std::runtime_error{"nc_connect_ssh failed"};
230 }
231 return session;
232}
233
Jan Kundráte0154282020-01-22 19:43:30 +0100234std::unique_ptr<Session> Session::connectKbdInteractive(const std::string& host, const uint16_t port, const std::string& user, const KbdInteractiveCb& callback)
235{
236 impl::ClientInit::instance();
237
238 std::lock_guard lk(impl::clientOptions);
239 auto cb_guard = make_unique_resource([user, &callback]() {
240 nc_client_ssh_set_username(user.c_str());
241 nc_client_ssh_set_auth_pref(NC_SSH_AUTH_INTERACTIVE, 5);
242 nc_client_ssh_set_auth_interactive_clb(impl::ssh_auth_interactive_cb, static_cast<void *>(&const_cast<KbdInteractiveCb&>(callback)));
243 }, []() {
244 nc_client_ssh_set_auth_interactive_clb(nullptr, nullptr);
245 nc_client_ssh_set_username(nullptr);
246 });
247
248 auto session = std::make_unique<Session>(nc_connect_ssh(host.c_str(), port, nullptr));
249 if (!session->m_session) {
250 throw std::runtime_error{"nc_connect_ssh failed"};
251 }
252 return session;
253}
254
Václav Kubernátc31bd602019-03-07 11:44:48 +0100255std::unique_ptr<Session> Session::connectSocket(const std::string& path)
256{
257 impl::ClientInit::instance();
258
259 auto session = std::make_unique<Session>(nc_connect_unix(path.c_str(), nullptr));
260 if (!session->m_session) {
261 throw std::runtime_error{"nc_connect_unix failed"};
262 }
263 return session;
264}
265
266std::vector<std::string_view> Session::capabilities() const
267{
268 std::vector<std::string_view> res;
269 auto caps = nc_session_get_cpblts(m_session);
270 while (*caps) {
271 res.emplace_back(*caps);
272 ++caps;
273 }
274 return res;
275}
276
277std::shared_ptr<libyang::Data_Node> Session::get(const std::string& filter)
278{
279 auto rpc = impl::guarded(nc_rpc_get(filter.c_str(), NC_WD_ALL, NC_PARAMTYPE_CONST));
280 if (!rpc) {
281 throw std::runtime_error("Cannot create get RPC");
282 }
283 auto reply = impl::do_rpc_data(this, std::move(rpc));
284 // TODO: can we do without copying?
285 // If we just default-construct a new node (or use the create_new_Data_Node) and then set reply->data to nullptr,
286 // there are mem leaks and even libnetconf2 complains loudly.
287 return libyang::create_new_Data_Node(reply->data)->dup_withsiblings(1);
288}
289
290std::string Session::getSchema(const std::string_view identifier, const std::optional<std::string_view> version)
291{
292 auto rpc = impl::guarded(nc_rpc_getschema(identifier.data(), version ? version.value().data() : nullptr, nullptr, NC_PARAMTYPE_CONST));
293 if (!rpc) {
294 throw std::runtime_error("Cannot create get-schema RPC");
295 }
296 auto reply = impl::do_rpc_data(this, std::move(rpc));
297
298 auto node = libyang::create_new_Data_Node(reply->data)->dup_withsiblings(1);
299 auto set = node->find_path("data");
300 for (auto node : set->data()) {
301 if (node->schema()->nodetype() == LYS_ANYXML) {
302 libyang::Data_Node_Anydata anydata(node);
303 return anydata.value().str;
304 }
305 }
306 throw std::runtime_error("Got a reply to get-schema, but it didn't contain the required schema");
307}
308
309std::shared_ptr<libyang::Data_Node> Session::getConfig(const NC_DATASTORE datastore, const std::optional<const std::string> filter)
310{
311 auto rpc = impl::guarded(nc_rpc_getconfig(datastore, filter ? filter->c_str() : nullptr, NC_WD_ALL, NC_PARAMTYPE_CONST));
312 if (!rpc) {
313 throw std::runtime_error("Cannot create get-config RPC");
314 }
315 auto reply = impl::do_rpc_data(this, std::move(rpc));
316 // TODO: can we do without copying?
317 // If we just default-construct a new node (or use the create_new_Data_Node) and then set reply->data to nullptr,
318 // there are mem leaks and even libnetconf2 complains loudly.
319 auto dataNode = libyang::create_new_Data_Node(reply->data);
320 if (!dataNode)
321 return nullptr;
322 else
323 return dataNode->dup_withsiblings(1);
324}
325
326void Session::editConfig(const NC_DATASTORE datastore,
327 const NC_RPC_EDIT_DFLTOP defaultOperation,
328 const NC_RPC_EDIT_TESTOPT testOption,
329 const NC_RPC_EDIT_ERROPT errorOption,
330 const std::string& data)
331{
332 auto rpc = impl::guarded(nc_rpc_edit(datastore, defaultOperation, testOption, errorOption, data.c_str(), NC_PARAMTYPE_CONST));
333 if (!rpc) {
334 throw std::runtime_error("Cannot create edit-config RPC");
335 }
336 impl::do_rpc_ok(this, std::move(rpc));
337}
338
339void Session::copyConfigFromString(const NC_DATASTORE target, const std::string& data)
340{
341 auto rpc = impl::guarded(nc_rpc_copy(target, nullptr, target /* yeah, cannot be 0... */, data.c_str(), NC_WD_UNKNOWN, NC_PARAMTYPE_CONST));
342 if (!rpc) {
343 throw std::runtime_error("Cannot create copy-config RPC");
344 }
345 impl::do_rpc_ok(this, std::move(rpc));
346}
347
348void Session::commit()
349{
350 auto rpc = impl::guarded(nc_rpc_commit(1, /* "Optional confirm timeout" how do you optional an uint32_t? */ 0, nullptr, nullptr, NC_PARAMTYPE_CONST));
351 if (!rpc) {
352 throw std::runtime_error("Cannot create commit RPC");
353 }
354 impl::do_rpc_ok(this, std::move(rpc));
355}
356
357void Session::discard()
358{
359 auto rpc = impl::guarded(nc_rpc_discard());
360 if (!rpc) {
361 throw std::runtime_error("Cannot create discard RPC");
362 }
363 impl::do_rpc_ok(this, std::move(rpc));
364}
365
366ReportedError::ReportedError(const std::string& what)
367 : std::runtime_error(what)
368{
369}
370
371ReportedError::~ReportedError() = default;
372}
373}