mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-27 03:07:43 +02:00
QoS: Improve saving enabled/disable state
It was reported that the QoS did not stop when the user clicked the "stop" button. This patch fixes that. Fixes #10664 Signed-off-by: Michael Tremer <michael.tremer@ipfire.org> Acked-by: Arne Fitzenreiter <arne.fitzenreiter@ipfire.org>
This commit is contained in:
@@ -12,12 +12,14 @@
|
||||
#include <sys/types.h>
|
||||
#include <fcntl.h>
|
||||
#include "setuid.h"
|
||||
#include "libsmooth.h"
|
||||
|
||||
#define QOS_SH "/var/ipfire/qos/bin/qos.sh"
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
|
||||
struct keyvalue* kv = NULL;
|
||||
int fd = -1;
|
||||
int r = 0;
|
||||
|
||||
if (!(initsetuid()))
|
||||
exit(1);
|
||||
@@ -28,14 +30,28 @@ int main(int argc, char *argv[]) {
|
||||
}
|
||||
|
||||
if (strcmp(argv[1], "generate") == 0) {
|
||||
safe_system("/usr/bin/perl /var/ipfire/qos/bin/makeqosscripts.pl > " QOS_SH);
|
||||
kv = initkeyvalues();
|
||||
if (!readkeyvalues(kv, CONFIG_ROOT "/qos/settings")) {
|
||||
fprintf(stderr, "Cannot read QoS settings\n");
|
||||
r = 1;
|
||||
goto END;
|
||||
}
|
||||
|
||||
char enabled[STRING_SIZE];
|
||||
if (!findkey(kv, "ENABLED", enabled))
|
||||
strcpy(enabled, "off");
|
||||
|
||||
if (strcmp(enabled, "on") == 0)
|
||||
safe_system("/usr/bin/perl /var/ipfire/qos/bin/makeqosscripts.pl > " QOS_SH);
|
||||
else
|
||||
unlink(QOS_SH);
|
||||
}
|
||||
|
||||
if ((fd = open(QOS_SH, O_RDONLY)) != -1) {
|
||||
close(fd);
|
||||
} else {
|
||||
// If there is no qos.sh do nothing.
|
||||
exit(0);
|
||||
goto END;
|
||||
}
|
||||
|
||||
safe_system("chmod 755 " QOS_SH " &>/dev/null");
|
||||
@@ -53,5 +69,9 @@ int main(int argc, char *argv[]) {
|
||||
exit(1);
|
||||
}
|
||||
|
||||
return 0;
|
||||
END:
|
||||
if (kv)
|
||||
freekeyvalues(kv);
|
||||
|
||||
return r;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user