344f8a47db
read_stdout can return NULL and thus the return value need to be checked prior to accessing it. Signed-off-by: David Bauer <mail@david-bauer.net>
159 lines
4.5 KiB
C
159 lines
4.5 KiB
C
/*
|
|
Copyright (c) 2021, Aiyion <gluon@aiyionpri.me>
|
|
Copyright (c) 2016, Matthias Schiffer <mschiffer@universe-factory.net>
|
|
All rights reserved.
|
|
Redistribution and use in source and binary forms, with or without
|
|
modification, are permitted provided that the following conditions are met:
|
|
1. Redistributions of source code must retain the above copyright notice,
|
|
this list of conditions and the following disclaimer.
|
|
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
this list of conditions and the following disclaimer in the documentation
|
|
and/or other materials provided with the distribution.
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#include <respondd.h>
|
|
|
|
#include <stdbool.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
#include <json-c/json.h>
|
|
#include <libgluonutil.h>
|
|
#include <uci.h>
|
|
|
|
|
|
static struct json_object * get_bandwidth_limit(void) {
|
|
bool enabled = false;
|
|
int egress = -1;
|
|
int ingress = -1;
|
|
|
|
struct json_object *ret = json_object_new_object();
|
|
|
|
struct uci_context *ctx = uci_alloc_context();
|
|
if (!ctx)
|
|
goto disabled;
|
|
ctx->flags &= ~UCI_FLAG_STRICT;
|
|
|
|
struct uci_package *p;
|
|
if (uci_load(ctx, "gluon", &p))
|
|
goto disabled;
|
|
|
|
struct uci_section *s = uci_lookup_section(ctx, p, "mesh_vpn");
|
|
if (!s)
|
|
goto disabled;
|
|
|
|
const char *enabled_str = uci_lookup_option_string(ctx, s, "limit_enabled");
|
|
if (enabled_str && strcmp(enabled_str, "1"))
|
|
goto disabled;
|
|
|
|
enabled = true;
|
|
|
|
const char *egress_str = uci_lookup_option_string(ctx, s, "limit_egress");
|
|
if (egress_str && strcmp(egress_str, "-"))
|
|
egress = atoi(egress_str);
|
|
|
|
const char *ingress_str = uci_lookup_option_string(ctx, s, "limit_ingress");
|
|
if (ingress_str && strcmp(ingress_str, "-"))
|
|
ingress = atoi(ingress_str);
|
|
|
|
if (egress >= 0)
|
|
json_object_object_add(ret, "egress", json_object_new_int(egress));
|
|
if (ingress >= 0)
|
|
json_object_object_add(ret, "ingress", json_object_new_int(ingress));
|
|
|
|
disabled:
|
|
if (ctx)
|
|
uci_free_context(ctx);
|
|
|
|
json_object_object_add(ret, "enabled", json_object_new_boolean(enabled));
|
|
return ret;
|
|
}
|
|
|
|
char * read_stdout(const char *command) {
|
|
FILE *f = popen(command, "r");
|
|
if (!f)
|
|
return NULL;
|
|
|
|
char *line = NULL;
|
|
size_t len = 0;
|
|
|
|
ssize_t r = getline(&line, &len, f);
|
|
|
|
pclose(f);
|
|
|
|
if (r < 0) {
|
|
free(line);
|
|
return NULL;
|
|
}
|
|
|
|
/* The len given by getline is the buffer size, not the string length */
|
|
len = strlen(line);
|
|
|
|
if (len && line[len-1] == '\n')
|
|
line[len-1] = 0;
|
|
|
|
return line;
|
|
}
|
|
|
|
static struct json_object * get_mesh_vpn_enabled() {
|
|
int enabled = -1;
|
|
char *line = read_stdout("exec lua -e 'print(require(\"gluon.mesh-vpn\").enabled())'");
|
|
|
|
if (!line)
|
|
return NULL;
|
|
|
|
if (!strcmp(line, "true"))
|
|
enabled = 1;
|
|
if (!strcmp(line, "false"))
|
|
enabled = 0;
|
|
free(line);
|
|
|
|
if (enabled < 0)
|
|
return NULL;
|
|
|
|
struct json_object *ret = json_object_new_boolean((json_bool)enabled);
|
|
return ret;
|
|
}
|
|
|
|
static struct json_object * get_active_vpn_provider() {
|
|
char *line = read_stdout("exec lua -e 'name, _ = require(\"gluon.mesh-vpn\").get_active_provider(); print(name)'");
|
|
|
|
if (line && !strcmp(line, "nil")) {
|
|
free(line);
|
|
return NULL;
|
|
}
|
|
|
|
return gluonutil_wrap_and_free_string(line);
|
|
}
|
|
|
|
static struct json_object * respondd_provider_nodeinfo(void) {
|
|
struct json_object *ret = json_object_new_object();
|
|
struct json_object *network = json_object_new_object();
|
|
struct json_object *mesh_vpn = json_object_new_object();
|
|
|
|
json_object_object_add(mesh_vpn, "bandwidth_limit", get_bandwidth_limit());
|
|
json_object_object_add(mesh_vpn, "provider", get_active_vpn_provider());
|
|
json_object_object_add(mesh_vpn, "enabled", get_mesh_vpn_enabled());
|
|
json_object_object_add(network, "mesh_vpn", mesh_vpn);
|
|
json_object_object_add(ret, "network", network);
|
|
|
|
return ret;
|
|
}
|
|
|
|
const struct respondd_provider_info respondd_providers[] = {
|
|
{"nodeinfo", respondd_provider_nodeinfo},
|
|
{},
|
|
{}
|
|
};
|