From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matthias Fischer To: development@lists.ipfire.org Subject: [PATCH 2/2] New binary: optionsfwctrl - needed for new firewall DNS/NTP options Date: Sun, 27 Dec 2020 13:30:20 +0100 Message-ID: <20201227123020.4556-2-matthias.fischer@ipfire.org> In-Reply-To: <20201227123020.4556-1-matthias.fischer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============2615637889719925237==" List-Id: --===============2615637889719925237== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Matthias Fischer --- config/rootfiles/common/misc-progs | 1 + src/misc-progs/Makefile | 2 +- src/misc-progs/optionsfwctrl.c | 36 ++++++++++++++++++++++++++++++ 3 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 src/misc-progs/optionsfwctrl.c diff --git a/config/rootfiles/common/misc-progs b/config/rootfiles/common/mis= c-progs index c48a474b2..9d928ec72 100644 --- a/config/rootfiles/common/misc-progs +++ b/config/rootfiles/common/misc-progs @@ -18,6 +18,7 @@ usr/local/bin/launch-ether-wake usr/local/bin/logwatch #usr/local/bin/mpfirectrl usr/local/bin/openvpnctrl +usr/local/bin/optionsfwctrl usr/local/bin/pakfire usr/local/bin/qosctrl usr/local/bin/rebuildhosts diff --git a/src/misc-progs/Makefile b/src/misc-progs/Makefile index bea54e773..9d8afcb3f 100644 --- a/src/misc-progs/Makefile +++ b/src/misc-progs/Makefile @@ -26,7 +26,7 @@ PROGS =3D iowrap SUID_PROGS =3D squidctrl sshctrl ipfirereboot \ ipsecctrl timectrl dhcpctrl suricatactrl \ applejuicectrl rebuildhosts backupctrl collectdctrl \ - logwatch wioscan wiohelper openvpnctrl firewallctrl \ + logwatch wioscan wiohelper openvpnctrl firewallctrl optionsfwctrl \ wirelessctrl getipstat qosctrl launch-ether-wake \ redctrl syslogdctrl extrahdctrl sambactrl upnpctrl \ smartctrl clamavctrl addonctrl pakfire mpfirectrl wlanapctrl \ diff --git a/src/misc-progs/optionsfwctrl.c b/src/misc-progs/optionsfwctrl.c new file mode 100644 index 000000000..f66b10983 --- /dev/null +++ b/src/misc-progs/optionsfwctrl.c @@ -0,0 +1,36 @@ +/* This file is part of the IPFire Firewall. + * + * This program is distributed under the terms of the GNU General Public + * Licence. See the file COPYING for details. + * + */ + +#include +#include +#include +#include +#include +#include +#include "setuid.h" + +int main(int argc, char *argv[]) { + + if (!(initsetuid())) + exit(1); + + if (argc < 2) { + fprintf(stderr, "\nNo argument given.\n\noptionsfwctrl restart|reload\n\n"= ); + exit(1); + } + + if (strcmp(argv[1], "restart") =3D=3D 0) { + safe_system("/etc/rc.d/init.d/firewall restart"); + } else if (strcmp(argv[1], "reload") =3D=3D 0) { + safe_system("/etc/rc.d/init.d/firewall reload"); + } else { + fprintf(stderr, "\nBad argument given.\n\noptionsfwctrl restart|reload\n\n= "); + exit(1); + } + + return 0; +} --=20 2.18.0 --===============2615637889719925237==--