mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-31 13:03:02 +02:00
627 lines
14 KiB
C
627 lines
14 KiB
C
/* SPDX-License-Identifier: BSD-3-Clause */
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <sysrepo.h>
|
|
#include <ev.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
|
|
#include <asm/types.h>
|
|
#include <sys/socket.h>
|
|
#include <linux/netlink.h>
|
|
#include <linux/rtnetlink.h>
|
|
|
|
#include <jansson.h>
|
|
#include <ctype.h>
|
|
#include <linux/if.h>
|
|
#include <sys/queue.h>
|
|
#include <sys/mman.h>
|
|
|
|
#include <srx/common.h>
|
|
#include <srx/helpers.h>
|
|
#include <srx/lyx.h>
|
|
#include <srx/systemv.h>
|
|
|
|
#include "shared.h"
|
|
|
|
/* New kernel feature, not in sys/mman.h yet */
|
|
#ifndef MFD_NOEXEC_SEAL
|
|
#define MFD_NOEXEC_SEAL 0x0008U
|
|
#endif
|
|
|
|
#define SOCK_RMEM_SIZE 1000000 /* Arbitrary chosen, default = 212992 */
|
|
#define NL_BUF_SIZE 4096 /* Arbitrary chosen */
|
|
|
|
#define XPATH_MAX PATH_MAX
|
|
#define XPATH_IFACE_BASE "/ietf-interfaces:interfaces"
|
|
#define XPATH_ROUTING_BASE "/ietf-routing:routing/control-plane-protocols/control-plane-protocol"
|
|
#define XPATH_ROUTING_TABLE "/ietf-routing:routing/ribs"
|
|
#define XPATH_HARDWARE_BASE "/ietf-hardware:hardware"
|
|
#define XPATH_ROUTING_OSPF XPATH_ROUTING_BASE "/ospf"
|
|
#define XPATH_CONTAIN_BASE "/infix-containers:containers"
|
|
|
|
TAILQ_HEAD(sub_head, sub);
|
|
|
|
/* This should, with some modifications, be able to hold other subscription
|
|
* types, not only interfaces.
|
|
*/
|
|
struct sub {
|
|
char name[IFNAMSIZ + 3];
|
|
struct ev_io watcher;
|
|
sr_subscription_ctx_t *sr_sub;
|
|
|
|
TAILQ_ENTRY(sub)
|
|
entries;
|
|
};
|
|
|
|
struct netlink {
|
|
int sd;
|
|
struct ev_io watcher;
|
|
};
|
|
|
|
struct statd {
|
|
struct netlink nl;
|
|
struct ev_loop *ev_loop;
|
|
struct sub_head subs;
|
|
sr_session_ctx_t *sr_ses;
|
|
};
|
|
|
|
static void set_sock_rcvbuf(int sd, int size)
|
|
{
|
|
if (setsockopt(sd, SOL_SOCKET, SO_RCVBUF, &size, sizeof(size)) < 0) {
|
|
perror("setsockopt");
|
|
return;
|
|
}
|
|
DEBUG("Socket receive buffer size increased to: %d bytes", size);
|
|
}
|
|
|
|
static int nl_sock_init(void)
|
|
{
|
|
struct sockaddr_nl addr;
|
|
int sock;
|
|
|
|
sock = socket(PF_NETLINK, SOCK_RAW, NETLINK_ROUTE);
|
|
if (sock < 0) {
|
|
ERROR("Error, creating netlink socket: %s", strerror(errno));
|
|
return -1;
|
|
}
|
|
|
|
memset(&addr, 0, sizeof(addr));
|
|
addr.nl_family = AF_NETLINK;
|
|
addr.nl_groups = RTMGRP_LINK;
|
|
|
|
if (bind(sock, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
|
|
ERROR("Error, binding netlink socket: %s", strerror(errno));
|
|
close(sock);
|
|
return -1;
|
|
}
|
|
|
|
return sock;
|
|
}
|
|
|
|
static struct sub *sub_find(struct sub_head *subs, const char *name)
|
|
{
|
|
struct sub *sub;
|
|
|
|
TAILQ_FOREACH(sub, subs, entries) {
|
|
if (strcmp(sub->name, name) == 0)
|
|
return sub;
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
static void sub_delete(struct ev_loop *loop, struct sub_head *subs, struct sub *sub)
|
|
{
|
|
TAILQ_REMOVE(subs, sub, entries);
|
|
ev_io_stop(loop, &sub->watcher);
|
|
sr_unsubscribe(sub->sr_sub);
|
|
free(sub);
|
|
}
|
|
|
|
static json_t *json_get_ip_link(void)
|
|
{
|
|
char cmd[512] = {}; /* Size is arbitrary */
|
|
|
|
snprintf(cmd, sizeof(cmd), "ip -s -d -j link show 2>/dev/null");
|
|
|
|
return json_get_output(cmd);
|
|
}
|
|
|
|
static int ly_add_yanger_data(const struct ly_ctx *ctx, struct lyd_node **parent,
|
|
const char *model, const char *arg)
|
|
{
|
|
char *yanger_args[5] = {
|
|
"/usr/libexec/statd/yanger",
|
|
(char *)model,
|
|
NULL,
|
|
NULL,
|
|
NULL
|
|
};
|
|
FILE *stream;
|
|
int err;
|
|
int fd;
|
|
|
|
if (!model) {
|
|
ERROR("Missing yang model to use");
|
|
return SR_ERR_SYS;
|
|
}
|
|
|
|
if (!strcmp(model, "ietf-interfaces")) {
|
|
yanger_args[2] = "-p";
|
|
yanger_args[3] = (char *)arg;
|
|
}
|
|
|
|
fd = memfd_create("my_temp_file", MFD_CLOEXEC | MFD_NOEXEC_SEAL);
|
|
if (fd == -1) {
|
|
ERROR("Error, unable to create memfd");
|
|
return SR_ERR_SYS;
|
|
}
|
|
|
|
/* Wrap the file descriptor in a FILE stream for fwrite */
|
|
stream = fdopen(fd, "w+");
|
|
if (stream == NULL) {
|
|
ERROR("Error, unable to fdopen memfd");
|
|
close(fd);
|
|
return SR_ERR_SYS;
|
|
}
|
|
|
|
err = fsystemv(yanger_args, NULL, stream, NULL);
|
|
if (err) {
|
|
ERROR("Error, running yanger");
|
|
fclose(stream);
|
|
close(fd);
|
|
return SR_ERR_SYS;
|
|
}
|
|
|
|
fflush(stream);
|
|
|
|
if (lseek(fd, 0, SEEK_SET) == (off_t)-1) {
|
|
ERROR("Error, unable reset stream (seek)");
|
|
fclose(stream);
|
|
close(fd);
|
|
return SR_ERR_SYS;
|
|
}
|
|
|
|
err = lyd_parse_data_fd(ctx, fd, LYD_JSON, LYD_PARSE_ONLY, 0, parent);
|
|
if (err)
|
|
ERROR("Error, parsing yanger data (%d)", err);
|
|
|
|
fclose(stream);
|
|
close(fd);
|
|
|
|
return err;
|
|
}
|
|
|
|
static int sr_ifaces_cb(sr_session_ctx_t *session, uint32_t, const char *path,
|
|
const char *, const char *, uint32_t,
|
|
struct lyd_node **parent, void *priv)
|
|
{
|
|
struct sub *sub = priv;
|
|
const struct ly_ctx *ctx;
|
|
sr_conn_ctx_t *con;
|
|
char *ifname;
|
|
int err;
|
|
|
|
DEBUG("Incoming query for xpath: %s", path);
|
|
|
|
con = sr_session_get_connection(session);
|
|
if (!con) {
|
|
ERROR("Error, getting sr connection");
|
|
return SR_ERR_INTERNAL;
|
|
}
|
|
|
|
ctx = sr_acquire_context(con);
|
|
if (!ctx) {
|
|
ERROR("Error, acquiring context");
|
|
return SR_ERR_INTERNAL;
|
|
}
|
|
|
|
ifname = &sub->name[3];
|
|
err = ly_add_yanger_data(ctx, parent, "ietf-interfaces", ifname);
|
|
if (err)
|
|
ERROR("Error adding yanger data");
|
|
|
|
sr_release_context(con);
|
|
|
|
return err;
|
|
}
|
|
|
|
static int sr_ospf_cb(sr_session_ctx_t *session, uint32_t, const char *,
|
|
const char *path, const char *, uint32_t,
|
|
struct lyd_node **parent, __attribute__((unused)) void *priv)
|
|
{
|
|
const struct ly_ctx *ctx;
|
|
sr_conn_ctx_t *con;
|
|
sr_error_t err;
|
|
|
|
DEBUG("Incoming query for xpath: %s", path);
|
|
|
|
con = sr_session_get_connection(session);
|
|
if (!con) {
|
|
ERROR("Error, getting sr connection");
|
|
return SR_ERR_INTERNAL;
|
|
}
|
|
|
|
ctx = sr_acquire_context(con);
|
|
if (!ctx) {
|
|
ERROR("Error, acquiring context");
|
|
return SR_ERR_INTERNAL;
|
|
}
|
|
|
|
err = ly_add_yanger_data(ctx, parent, "ietf-ospf", NULL);
|
|
if (err)
|
|
ERROR("Error adding yanger data");
|
|
|
|
sr_release_context(con);
|
|
|
|
return err;
|
|
}
|
|
|
|
static int sr_generic_cb(sr_session_ctx_t *session, uint32_t, const char *model,
|
|
const char *path, const char *, uint32_t,
|
|
struct lyd_node **parent, __attribute__((unused)) void *priv)
|
|
{
|
|
const struct ly_ctx *ctx;
|
|
sr_conn_ctx_t *con;
|
|
sr_error_t err;
|
|
|
|
DEBUG("Incoming query for xpath: %s", path);
|
|
|
|
con = sr_session_get_connection(session);
|
|
if (!con) {
|
|
ERROR("Error, getting sr connection");
|
|
return SR_ERR_INTERNAL;
|
|
}
|
|
|
|
ctx = sr_acquire_context(con);
|
|
if (!ctx) {
|
|
ERROR("Error, acquiring context");
|
|
return SR_ERR_INTERNAL;
|
|
}
|
|
|
|
err = ly_add_yanger_data(ctx, parent, model, NULL);
|
|
if (err)
|
|
ERROR("Error adding yanger data");
|
|
|
|
sr_release_context(con);
|
|
|
|
return err;
|
|
}
|
|
|
|
static void sigint_cb(struct ev_loop *loop, struct ev_signal *, int)
|
|
{
|
|
ev_break(loop, EVBREAK_ALL);
|
|
}
|
|
|
|
static void sigusr1_cb(struct ev_loop *, struct ev_signal *, int)
|
|
{
|
|
debug ^= 1;
|
|
}
|
|
|
|
static void sr_event_cb(struct ev_loop *, struct ev_io *w, int)
|
|
{
|
|
struct sub *sub = (struct sub *)w->data;
|
|
|
|
sr_subscription_process_events(sub->sr_sub, NULL, NULL);
|
|
}
|
|
|
|
static int subscribe(struct statd *statd, char *model, char *xpath, const char *name,
|
|
int (*cb)(sr_session_ctx_t *session, uint32_t, const char *, const char *,
|
|
const char *, uint32_t, struct lyd_node **parent, void *priv))
|
|
{
|
|
struct sub *sub;
|
|
int sr_ev_pipe;
|
|
sr_error_t err;
|
|
|
|
sub = sub_find(&statd->subs, name);
|
|
if (sub) {
|
|
DEBUG("%s already subscribed", name);
|
|
return SR_ERR_OK;
|
|
}
|
|
sub = malloc(sizeof(struct sub));
|
|
memset(sub, 0, sizeof(struct sub));
|
|
|
|
if (strlen(name) >= sizeof(sub->name)) {
|
|
ERROR("Subscriber name is to long");
|
|
free(sub);
|
|
return SR_ERR_INTERNAL;
|
|
}
|
|
snprintf(sub->name, sizeof(sub->name), "%s", name);
|
|
|
|
DEBUG("Subscribe to events for \"%s\"", xpath);
|
|
err = sr_oper_get_subscribe(statd->sr_ses, model, xpath, cb, sub,
|
|
SR_SUBSCR_DEFAULT | SR_SUBSCR_NO_THREAD | SR_SUBSCR_DONE_ONLY,
|
|
&sub->sr_sub);
|
|
if (err) {
|
|
ERROR("Error, subscribing to path \"%s\": %s", xpath, sr_strerror(err));
|
|
free(sub);
|
|
return err;
|
|
}
|
|
|
|
err = sr_get_event_pipe(sub->sr_sub, &sr_ev_pipe);
|
|
if (err) {
|
|
ERROR("Error, getting sysrepo event pipe: %s", sr_strerror(err));
|
|
sr_unsubscribe(sub->sr_sub);
|
|
free(sub);
|
|
return err;
|
|
}
|
|
|
|
TAILQ_INSERT_TAIL(&statd->subs, sub, entries);
|
|
|
|
ev_io_init(&sub->watcher, sr_event_cb, sr_ev_pipe, EV_READ);
|
|
sub->watcher.data = sub;
|
|
ev_io_start(statd->ev_loop, &sub->watcher);
|
|
|
|
return SR_ERR_OK;
|
|
}
|
|
|
|
static int sub_to_routes(struct statd *statd)
|
|
{
|
|
return subscribe(statd, "ietf-routing", XPATH_ROUTING_TABLE, "routes", sr_generic_cb);
|
|
}
|
|
|
|
static int sub_to_iface(struct statd *statd, const char *ifname)
|
|
{
|
|
char path[XPATH_MAX] = {};
|
|
char name[IFNAMSIZ + 3];
|
|
snprintf(name, sizeof(name), "if-%s", ifname);
|
|
|
|
/**
|
|
* Skip internal interfaces (such as dsa0)
|
|
*
|
|
* NOTE: this is a good solution but it might be to slow if a lot of
|
|
* new interfaces pops up at the same time. We don't want to delay
|
|
* processing the netlink messages to much.
|
|
*/
|
|
if (ip_link_check_group(ifname, "internal") == 1)
|
|
return SR_ERR_OK;
|
|
|
|
snprintf(path, sizeof(path), "%s/interface[name='%s']", XPATH_IFACE_BASE, ifname);
|
|
return subscribe(statd, "ietf-interfaces", path, name, sr_ifaces_cb);
|
|
}
|
|
|
|
static void unsub_to_all(struct statd *statd)
|
|
{
|
|
struct sub *sub;
|
|
|
|
while (!TAILQ_EMPTY(&statd->subs)) {
|
|
sub = TAILQ_FIRST(&statd->subs);
|
|
DEBUG("Unsubscribe from \"%s\" (all)", sub->name);
|
|
sub_delete(statd->ev_loop, &statd->subs, sub);
|
|
}
|
|
}
|
|
|
|
static int unsub_to_name(struct statd *statd, char *name)
|
|
{
|
|
struct sub *sub;
|
|
|
|
sub = sub_find(&statd->subs, name);
|
|
if (!sub) {
|
|
ERROR("Error, can't find indentity to delete (%s)", name);
|
|
return SR_ERR_INTERNAL;
|
|
}
|
|
DEBUG("Unsubscribe from \"%s\"", sub->name);
|
|
sub_delete(statd->ev_loop, &statd->subs, sub);
|
|
|
|
return SR_ERR_OK;
|
|
}
|
|
static int unsub_to_iface(struct statd *statd, char *ifname)
|
|
{
|
|
char name[IFNAMSIZ + 3];
|
|
snprintf(name, sizeof(name), "if-%s", ifname);
|
|
|
|
return unsub_to_name(statd, name);
|
|
}
|
|
|
|
static int nl_process_msg(struct nlmsghdr *nlh, struct statd *statd)
|
|
{
|
|
struct ifinfomsg *iface;
|
|
struct rtattr *attr;
|
|
int attr_len;
|
|
|
|
iface = NLMSG_DATA(nlh);
|
|
attr = IFLA_RTA(iface);
|
|
attr_len = IFLA_PAYLOAD(nlh);
|
|
|
|
for (; RTA_OK(attr, attr_len); attr = RTA_NEXT(attr, attr_len)) {
|
|
if (attr->rta_type == IFLA_IFNAME) {
|
|
char *ifname = (char *)RTA_DATA(attr);
|
|
|
|
if (nlh->nlmsg_type == RTM_NEWLINK)
|
|
return sub_to_iface(statd, ifname);
|
|
else if (nlh->nlmsg_type == RTM_DELLINK)
|
|
return unsub_to_iface(statd, ifname);
|
|
else
|
|
return SR_ERR_INTERNAL;
|
|
}
|
|
}
|
|
|
|
/* Ignore nl messages with no interface name */
|
|
return SR_ERR_OK;
|
|
}
|
|
|
|
static void nl_event_cb(struct ev_loop *, struct ev_io *w, int)
|
|
{
|
|
struct statd *statd = (struct statd *)w->data;
|
|
char buf[NL_BUF_SIZE];
|
|
struct nlmsghdr *nlh;
|
|
int err;
|
|
int len;
|
|
|
|
len = recv(statd->nl.sd, buf, sizeof(buf) - 1, 0);
|
|
if (len < 0) {
|
|
ERROR("Error, netlink recv failed: %s", strerror(errno));
|
|
close(statd->nl.sd);
|
|
/* NOTE: This is likely caused by a full kernel buffer, which
|
|
* means we can't trust our list. So we exit hard and let finit
|
|
* respawn us to handle this.
|
|
*/
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
/* nl_process_msg() expects NULL terminated buffer */
|
|
buf[len] = 0;
|
|
|
|
for (nlh = (struct nlmsghdr *)buf; NLMSG_OK(nlh, len); nlh = NLMSG_NEXT(nlh, len)) {
|
|
err = nl_process_msg(nlh, statd);
|
|
if (err)
|
|
ERROR("Error, processing netlink message: %s", sr_strerror(err));
|
|
}
|
|
}
|
|
|
|
static int sub_to_ifaces(struct statd *statd)
|
|
{
|
|
json_t *j_iface;
|
|
json_t *j_root;
|
|
size_t i;
|
|
|
|
j_root = json_get_ip_link();
|
|
if (!j_root) {
|
|
ERROR("Error, parsing ip-link JSON");
|
|
return SR_ERR_SYS;
|
|
}
|
|
|
|
json_array_foreach(j_root, i, j_iface) {
|
|
json_t *j_ifname;
|
|
int err;
|
|
j_ifname = json_object_get(j_iface, "ifname");
|
|
if (!json_is_string(j_ifname)) {
|
|
ERROR("Got unexpected JSON type for 'ifname'");
|
|
continue;
|
|
}
|
|
err = sub_to_iface(statd, json_string_value(j_ifname));
|
|
if (err) {
|
|
ERROR("Unable to subscribe to %s", json_string_value(j_ifname));
|
|
continue;
|
|
}
|
|
}
|
|
json_decref(j_root);
|
|
|
|
return SR_ERR_OK;
|
|
}
|
|
|
|
static int sub_to_hardware(struct statd *statd)
|
|
{
|
|
return subscribe(statd, "ietf-hardware", XPATH_HARDWARE_BASE, "hardware", sr_generic_cb);
|
|
}
|
|
|
|
static int sub_to_ospf(struct statd *statd)
|
|
{
|
|
return subscribe(statd, "ietf-routing", XPATH_ROUTING_OSPF, "ospf", sr_ospf_cb);
|
|
}
|
|
|
|
#ifdef CONTAINERS
|
|
static int sub_to_container(struct statd *statd)
|
|
{
|
|
return subscribe(statd, "infix-containers", XPATH_CONTAIN_BASE, "container", sr_generic_cb);
|
|
}
|
|
#endif
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
struct ev_signal sigint_watcher, sigusr1_watcher;
|
|
struct statd statd = {};
|
|
int log_opts = LOG_USER;
|
|
sr_conn_ctx_t *sr_conn;
|
|
char *env;
|
|
int err;
|
|
|
|
env = getenv("DEBUG");
|
|
if (env || (argc > 1 && !strcmp(argv[1], "-d"))) {
|
|
log_opts |= LOG_PERROR;
|
|
debug = 1;
|
|
}
|
|
|
|
openlog("statd", log_opts, 0);
|
|
|
|
TAILQ_INIT(&statd.subs);
|
|
statd.ev_loop = EV_DEFAULT;
|
|
|
|
statd.nl.sd = nl_sock_init();
|
|
if (statd.nl.sd < 0) {
|
|
ERROR("Error, opening netlink socket");
|
|
return EXIT_FAILURE;
|
|
}
|
|
INFO("Status daemon starting");
|
|
|
|
set_sock_rcvbuf(statd.nl.sd, SOCK_RMEM_SIZE);
|
|
|
|
err = sr_connect(SR_CONN_DEFAULT, &sr_conn);
|
|
if (err) {
|
|
ERROR("Error, connecting to sysrepo: %s", sr_strerror(err));
|
|
return EXIT_FAILURE;
|
|
}
|
|
DEBUG("Connected to sysrepo");
|
|
|
|
err = sr_session_start(sr_conn, SR_DS_OPERATIONAL, &statd.sr_ses);
|
|
if (err) {
|
|
ERROR("Error, start sysrepo session: %s", sr_strerror(err));
|
|
sr_disconnect(sr_conn);
|
|
return EXIT_FAILURE;
|
|
}
|
|
DEBUG("Session started (%p)", statd.sr_ses);
|
|
|
|
DEBUG("Attempting to register existing interfaces");
|
|
err = sub_to_ifaces(&statd);
|
|
if (err) {
|
|
ERROR("Error, registering existing interfaces");
|
|
sr_disconnect(sr_conn);
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
err = sub_to_routes(&statd);
|
|
if (err) {
|
|
ERROR("Error register for IPv4 routes");
|
|
sr_disconnect(sr_conn);
|
|
return EXIT_FAILURE;
|
|
}
|
|
err = sub_to_ospf(&statd);
|
|
if (err) {
|
|
ERROR("Error register for OSPF");
|
|
sr_disconnect(sr_conn);
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
err = sub_to_hardware(&statd);
|
|
if (err) {
|
|
ERROR("Error register for hardware status");
|
|
sr_disconnect(sr_conn);
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
#ifdef CONTAINERS
|
|
err = sub_to_container(&statd);
|
|
if (err) {
|
|
ERROR("Error registering infix-container status");
|
|
sr_disconnect(sr_conn);
|
|
return EXIT_FAILURE;
|
|
}
|
|
#endif
|
|
|
|
ev_signal_init(&sigint_watcher, sigint_cb, SIGINT);
|
|
sigint_watcher.data = &statd;
|
|
ev_signal_start(statd.ev_loop, &sigint_watcher);
|
|
|
|
ev_signal_init(&sigusr1_watcher, sigusr1_cb, SIGUSR1);
|
|
sigusr1_watcher.data = &statd;
|
|
ev_signal_start(statd.ev_loop, &sigusr1_watcher);
|
|
|
|
ev_io_init(&statd.nl.watcher, nl_event_cb, statd.nl.sd, EV_READ);
|
|
statd.nl.watcher.data = &statd;
|
|
ev_io_start(statd.ev_loop, &statd.nl.watcher);
|
|
|
|
INFO("Status daemon entering main event loop");
|
|
ev_run(statd.ev_loop, 0);
|
|
|
|
/* We should never get here during normal operation */
|
|
INFO("Status daemon shutting down");
|
|
unsub_to_all(&statd);
|
|
sr_session_stop(statd.sr_ses);
|
|
sr_disconnect(sr_conn);
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|