1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00
VILLASnode/lib/nodes/amqp.cpp

422 lines
10 KiB
C++

/** Node type: nanomsg
*
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
* @copyright 2014-2020, Institute for Automation of Complex Power Systems, EONERC
* @license GNU General Public License (version 3)
*
* VILLASnode
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*********************************************************************************/
#include <cstring>
#include <amqp_ssl_socket.h>
#include <amqp_tcp_socket.h>
#include <villas/plugin.h>
#include <villas/nodes/amqp.hpp>
#include <villas/utils.hpp>
#include <villas/format_type.h>
using namespace villas::utils;
static void amqp_default_ssl_info(struct amqp_ssl_info *s)
{
s->verify_peer = 1;
s->verify_hostname = 1;
s->client_key = nullptr;
s->client_cert = nullptr;
s->ca_cert = nullptr;
}
static amqp_bytes_t amqp_bytes_strdup(const char *str)
{
size_t len = strlen(str) + 1;
amqp_bytes_t buf = amqp_bytes_malloc(len);
memcpy(buf.bytes, str, len);
return buf;
}
static amqp_connection_state_t amqp_connect(struct amqp_connection_info *ci, struct amqp_ssl_info *ssl)
{
int ret;
amqp_rpc_reply_t rep;
amqp_connection_state_t conn;
amqp_socket_t *sock;
conn = amqp_new_connection();
if (!conn)
return nullptr;
if (ci->ssl) {
sock = amqp_ssl_socket_new(conn);
if (!sock)
return nullptr;
amqp_ssl_socket_set_verify_peer(sock, ssl->verify_peer);
amqp_ssl_socket_set_verify_hostname(sock, ssl->verify_hostname);
if (ssl->ca_cert)
amqp_ssl_socket_set_cacert(sock, ssl->ca_cert);
if (ssl->client_key && ssl->client_cert)
amqp_ssl_socket_set_key(sock, ssl->client_cert, ssl->client_key);
}
else {
sock = amqp_tcp_socket_new(conn);
if (!sock)
return nullptr;
}
ret = amqp_socket_open(sock, ci->host, ci->port);
if (ret != AMQP_STATUS_OK)
return nullptr;
rep = amqp_login(conn, ci->vhost, 0, 131072, 0, AMQP_SASL_METHOD_PLAIN, ci->user, ci->password);
if (rep.reply_type != AMQP_RESPONSE_NORMAL)
return nullptr;
amqp_channel_open(conn, 1);
rep = amqp_get_rpc_reply(conn);
if (rep.reply_type != AMQP_RESPONSE_NORMAL)
return nullptr;
return conn;
}
static int amqp_close(amqp_connection_state_t conn)
{
amqp_rpc_reply_t rep;
rep = amqp_channel_close(conn, 1, AMQP_REPLY_SUCCESS);
if (rep.reply_type != AMQP_RESPONSE_NORMAL)
return -1;
rep = amqp_connection_close(conn, AMQP_REPLY_SUCCESS);
if (rep.reply_type != AMQP_RESPONSE_NORMAL)
return -1;
return 0;
}
int amqp_parse(struct vnode *n, json_t *json)
{
int ret;
struct amqp *a = (struct amqp *) n->_vd;
int port = 5672;
const char *format = "json";
const char *uri = nullptr;
const char *host = "localhost";
const char *vhost = "/";
const char *username = "guest";
const char *password = "guest";
const char *exchange, *routing_key;
json_error_t err;
json_t *json_ssl = nullptr;
/* Default values */
amqp_default_ssl_info(&a->ssl_info);
amqp_default_connection_info(&a->connection_info);
ret = json_unpack_ex(json, &err, 0, "{ s?: s, s?: s, s?: s, s?: s, s?: s, s?: i, s: s, s: s, s?: s, s?: o }",
"uri", &uri,
"host", &host,
"vhost", &vhost,
"username", &username,
"password", &password,
"port", &port,
"exchange", &exchange,
"routing_key", &routing_key,
"format", &format,
"ssl", &json_ssl
);
if (ret)
jerror(&err, "Failed to parse configuration of node %s", node_name(n));
a->exchange = amqp_bytes_strdup(exchange);
a->routing_key = amqp_bytes_strdup(routing_key);
if (uri)
a->uri = strdup(uri);
else
a->uri = strf("amqp://%s:%s@%s:%d/%s", username, password, host, port, vhost);
ret = amqp_parse_url(a->uri, &a->connection_info);
if (ret != AMQP_STATUS_OK)
error("Failed to parse URI '%s' of node %s", uri, node_name(n));
if (json_ssl) {
const char *ca_cert = nullptr;
const char *client_cert = nullptr;
const char *client_key = nullptr;
ret = json_unpack_ex(json_ssl, &err, 0, "{ s?: b, s?: b, s?: s, s?: s, s?: s }",
"verify_peer", &a->ssl_info.verify_peer,
"verify_hostname", &a->ssl_info.verify_hostname,
"ca_cert", &ca_cert,
"client_key", &client_key,
"client_cert", &client_cert
);
if (ret)
jerror(&err, "Failed to parse configuration of node %s", node_name(n));
if (ca_cert)
a->ssl_info.ca_cert = strdup(ca_cert);
if (client_cert)
a->ssl_info.client_cert = strdup(client_cert);
if (client_key)
a->ssl_info.client_key = strdup(client_key);
}
a->format = format_type_lookup(format);
if (!a->format)
error("Invalid format '%s' for node %s", format, node_name(n));
return 0;
}
char * amqp_print(struct vnode *n)
{
struct amqp *a = (struct amqp *) n->_vd;
char *buf = nullptr;
strcatf(&buf, "format=%s, uri=%s://%s:%s@%s:%d%s, exchange=%s, routing_key=%s",
format_type_name(a->format),
a->connection_info.ssl ? "amqps" : "amqp",
a->connection_info.user,
a->connection_info.password,
a->connection_info.host,
a->connection_info.port,
a->connection_info.vhost,
(char *) a->exchange.bytes,
(char *) a->routing_key.bytes
);
if (a->connection_info.ssl) {
strcatf(&buf, ", ssl_info.verify_peer=%s, ssl_info.verify_hostname=%s",
a->ssl_info.verify_peer ? "true" : "false",
a->ssl_info.verify_hostname ? "true" : "false"
);
if (a->ssl_info.ca_cert)
strcatf(&buf, ", ssl_info.ca_cert=%s", a->ssl_info.ca_cert);
if (a->ssl_info.client_cert)
strcatf(&buf, ", ssl_info.client_cert=%s", a->ssl_info.client_cert);
if (a->ssl_info.client_key)
strcatf(&buf, ", ssl_info.client_key=%s", a->ssl_info.client_key);
}
return buf;
}
int amqp_start(struct vnode *n)
{
int ret;
struct amqp *a = (struct amqp *) n->_vd;
amqp_bytes_t queue;
amqp_rpc_reply_t rep;
amqp_queue_declare_ok_t *r;
ret = io_init(&a->io, a->format, &n->in.signals, (int) SampleFlags::HAS_ALL & ~(int) SampleFlags::HAS_OFFSET);
if (ret)
return ret;
/* Connect producer */
a->producer = amqp_connect(&a->connection_info, &a->ssl_info);
if (!a->producer)
return -1;
/* Connect consumer */
a->consumer = amqp_connect(&a->connection_info, &a->ssl_info);
if (!a->consumer)
return -1;
/* Declare exchange */
amqp_exchange_declare(a->producer, 1, a->exchange, amqp_cstring_bytes("direct"), 0, 0, 0, 0, amqp_empty_table);
rep = amqp_get_rpc_reply(a->consumer);
if (rep.reply_type != AMQP_RESPONSE_NORMAL)
return -1;
/* Declare private queue */
r = amqp_queue_declare(a->consumer, 1, amqp_empty_bytes, 0, 0, 0, 1, amqp_empty_table);
rep = amqp_get_rpc_reply(a->consumer);
if (rep.reply_type != AMQP_RESPONSE_NORMAL)
return -1;
queue = amqp_bytes_malloc_dup(r->queue);
if (queue.bytes == nullptr)
return -1;
/* Bind queue to exchange */
amqp_queue_bind(a->consumer, 1, queue, a->exchange, a->routing_key, amqp_empty_table);
rep = amqp_get_rpc_reply(a->consumer);
if (rep.reply_type != AMQP_RESPONSE_NORMAL)
return -1;
/* Start consumer */
amqp_basic_consume(a->consumer, 1, queue, amqp_empty_bytes, 0, 1, 0, amqp_empty_table);
rep = amqp_get_rpc_reply(a->consumer);
if (rep.reply_type != AMQP_RESPONSE_NORMAL)
return -1;
amqp_bytes_free(queue);
return 0;
}
int amqp_stop(struct vnode *n)
{
int ret;
struct amqp *a = (struct amqp *) n->_vd;
ret = amqp_close(a->consumer);
if (ret)
return ret;
ret = amqp_close(a->producer);
if (ret)
return ret;
ret = io_destroy(&a->io);
if (ret)
return ret;
return 0;
}
int amqp_read(struct vnode *n, struct sample *smps[], unsigned cnt, unsigned *release)
{
int ret;
struct amqp *a = (struct amqp *) n->_vd;
amqp_envelope_t env;
amqp_rpc_reply_t rep;
rep = amqp_consume_message(a->consumer, &env, nullptr, 0);
if (rep.reply_type != AMQP_RESPONSE_NORMAL)
return -1;
ret = io_sscan(&a->io, static_cast<char *>(env.message.body.bytes), env.message.body.len, nullptr, smps, cnt);
amqp_destroy_envelope(&env);
return ret;
}
int amqp_write(struct vnode *n, struct sample *smps[], unsigned cnt, unsigned *release)
{
int ret;
struct amqp *a = (struct amqp *) n->_vd;
char data[1500];
size_t wbytes;
ret = io_sprint(&a->io, data, sizeof(data), &wbytes, smps, cnt);
if (ret <= 0)
return -1;
amqp_bytes_t message = {
.len = wbytes,
.bytes = data
};
/* Send message */
ret = amqp_basic_publish(a->producer, 1,
a->exchange,
a->routing_key,
0, 0, nullptr, message);
if (ret != AMQP_STATUS_OK)
return -1;
return cnt;
}
int amqp_poll_fds(struct vnode *n, int fds[])
{
struct amqp *a = (struct amqp *) n->_vd;
amqp_socket_t *sock = amqp_get_socket(a->consumer);
fds[0] = amqp_socket_get_sockfd(sock);
return 1;
}
int amqp_destroy(struct vnode *n)
{
struct amqp *a = (struct amqp *) n->_vd;
if (a->uri)
free(a->uri);
if (a->ssl_info.client_cert)
free(a->ssl_info.client_cert);
if (a->ssl_info.client_key)
free(a->ssl_info.client_key);
if (a->ssl_info.ca_cert)
free(a->ssl_info.ca_cert);
if (a->producer)
amqp_destroy_connection(a->producer);
if (a->consumer)
amqp_destroy_connection(a->consumer);
return 0;
}
static struct plugin p;
__attribute__((constructor(110)))
static void register_plugin() {
p.name = "amqp";
p.description = "Advanced Message Queueing Protoocl (rabbitmq-c)";
p.type = PluginType::NODE;
p.node.instances.state = State::DESTROYED;
p.node.vectorize = 0;
p.node.size = sizeof(struct amqp);
p.node.destroy = amqp_destroy;
p.node.parse = amqp_parse;
p.node.print = amqp_print;
p.node.start = amqp_start;
p.node.stop = amqp_stop;
p.node.read = amqp_read;
p.node.write = amqp_write;
p.node.poll_fds = amqp_poll_fds;
int ret = vlist_init(&p.node.instances);
if (!ret)
vlist_init_and_push(&plugins, &p);
}
__attribute__((destructor(110)))
static void deregister_plugin() {
vlist_remove_all(&plugins, &p);
}