mirror of
https://git.openwrt.org/project/qosify.git
synced 2026-01-15 21:28:24 +00:00
This makes dns entries work in bridged mode or when not using dnsmasq Signed-off-by: Felix Fietkau <nbd@nbd.name>
135 lines
2.1 KiB
C
135 lines
2.1 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2021 Felix Fietkau <nbd@nbd.name>
|
|
*/
|
|
#include <sys/wait.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <stdint.h>
|
|
|
|
#include <libubox/uloop.h>
|
|
|
|
#include "qosify.h"
|
|
|
|
static int usage(const char *progname)
|
|
{
|
|
fprintf(stderr, "Usage: %s [options]\n"
|
|
"Options:\n"
|
|
" -l <file> Load defaults from <file>\n"
|
|
" -o only load program/maps without running as daemon\n"
|
|
"\n", progname);
|
|
|
|
return 1;
|
|
}
|
|
|
|
int qosify_run_cmd(char *cmd, bool ignore_error)
|
|
{
|
|
char *argv[] = { "sh", "-c", cmd, NULL };
|
|
bool first = true;
|
|
int status = -1;
|
|
char buf[512];
|
|
int fds[2];
|
|
FILE *f;
|
|
int pid;
|
|
|
|
if (pipe(fds))
|
|
return -1;
|
|
|
|
pid = fork();
|
|
if (!pid) {
|
|
close(fds[0]);
|
|
if (fds[1] != STDOUT_FILENO)
|
|
dup2(fds[1], STDOUT_FILENO);
|
|
if (fds[1] != STDERR_FILENO)
|
|
dup2(fds[1], STDERR_FILENO);
|
|
if (fds[1] > STDERR_FILENO)
|
|
close(fds[1]);
|
|
execv("/bin/sh", argv);
|
|
exit(1);
|
|
}
|
|
|
|
if (pid < 0)
|
|
return -1;
|
|
|
|
close(fds[1]);
|
|
f = fdopen(fds[0], "r");
|
|
if (!f) {
|
|
close(fds[0]);
|
|
goto out;
|
|
}
|
|
|
|
while (fgets(buf, sizeof(buf), f) != NULL) {
|
|
if (!strlen(buf))
|
|
break;
|
|
if (ignore_error)
|
|
continue;
|
|
if (first) {
|
|
ULOG_WARN("Command: %s\n", cmd);
|
|
first = false;
|
|
}
|
|
ULOG_WARN("%s%s", buf, strchr(buf, '\n') ? "" : "\n");
|
|
}
|
|
|
|
fclose(f);
|
|
|
|
out:
|
|
while (waitpid(pid, &status, 0) < 0)
|
|
if (errno != EINTR)
|
|
break;
|
|
|
|
return status;
|
|
}
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
const char *load_file = NULL;
|
|
bool oneshot = false;
|
|
int ch;
|
|
|
|
while ((ch = getopt(argc, argv, "fl:o")) != -1) {
|
|
switch (ch) {
|
|
case 'f':
|
|
break;
|
|
case 'l':
|
|
load_file = optarg;
|
|
break;
|
|
case 'o':
|
|
oneshot = true;
|
|
break;
|
|
default:
|
|
return usage(argv[0]);
|
|
}
|
|
}
|
|
|
|
if (qosify_loader_init())
|
|
return 2;
|
|
|
|
if (qosify_map_init())
|
|
return 2;
|
|
|
|
if (qosify_map_load_file(load_file))
|
|
return 2;
|
|
|
|
if (oneshot)
|
|
return 0;
|
|
|
|
ulog_open(ULOG_SYSLOG, LOG_DAEMON, "qosify");
|
|
uloop_init();
|
|
|
|
if (qosify_ubus_init() ||
|
|
qosify_iface_init())
|
|
return 2;
|
|
|
|
qosify_dns_init();
|
|
|
|
uloop_run();
|
|
|
|
qosify_ubus_stop();
|
|
qosify_iface_stop();
|
|
|
|
uloop_done();
|
|
|
|
return 0;
|
|
}
|