From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: Re: [PATCH v2] show RNGD status at WebUI service page, too Date: Tue, 27 Mar 2018 14:54:27 +0100 Message-ID: <1522158867.556038.81.camel@ipfire.org> In-Reply-To: <20171203182746.47ff6a10.peter.mueller@link38.eu> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============3024915442050934367==" List-Id: --===============3024915442050934367== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable On Sun, 2017-12-03 at 18:27 +0100, Peter M=C3=BCller wrote: > Also show the status of the hardware random number generator ("RNGD") > at the services.cgi page in the WebUI. Before, this was only shown > at the entropy.cgi page, which was a bit inconsistent. >=20 > Signed-off-by: Peter M=C3=BCller > --- > html/cgi-bin/services.cgi | 4 +++- > src/initscripts/system/rngd | 6 ++++++ > 2 files changed, 9 insertions(+), 1 deletion(-) >=20 > diff --git a/html/cgi-bin/services.cgi b/html/cgi-bin/services.cgi > index 64fdbba05..eaaa5298a 100644 > --- a/html/cgi-bin/services.cgi > +++ b/html/cgi-bin/services.cgi > @@ -56,6 +56,7 @@ my %servicenames =3D( > $Lang::tr{'secure shell server'} =3D> 'sshd', > $Lang::tr{'vpn'} =3D> 'charon', > $Lang::tr{'web proxy'} =3D> 'squid', > + $Lang::tr{'random number generator daemon'} =3D> 'rngd', > 'OpenVPN' =3D> 'openvpn' > ); > =20 > @@ -74,7 +75,8 @@ my %link =3D( > "$Lang::tr{'intrusion detection system'} (GREEN)" =3D> " href=3D\'ids.cgi\'>$Lang::tr{'intrusion detection system'} (GREEN)", > "$Lang::tr{'intrusion detection system'} (RED)" =3D> " href=3D\'ids.cgi\'>$Lang::tr{'intrusion detection system'} (RED)", > "$Lang::tr{'intrusion detection system'} (ORANGE)" =3D> " href=3D\'ids.cgi\'>$Lang::tr{'intrusion detection system'} (ORANGE)", > - "$Lang::tr{'intrusion detection system'} (BLUE)" =3D> " href=3D\'ids.cgi\'>$Lang::tr{'intrusion detection system'} (BLUE)" > + "$Lang::tr{'intrusion detection system'} (BLUE)" =3D> " href=3D\'ids.cgi\'>$Lang::tr{'intrusion detection system'} (BLUE)", > + "$Lang::tr{'random number generator daemon'}" =3D> " href=3D\'entropy.cgi\'>$Lang::tr{'random number generator daemon'}" > ); > =20 > my $lines=3D0; # Used to count the outputlines to make different bgcolor > diff --git a/src/initscripts/system/rngd b/src/initscripts/system/rngd > index df4aa7da2..9abcf6a79 100644 > --- a/src/initscripts/system/rngd > +++ b/src/initscripts/system/rngd > @@ -30,10 +30,16 @@ case "${1}" in > boot_mesg "Starting Random Number Generator Daemon..." > =20 > if pidofproc /usr/sbin/rngd &>/dev/null; then > + # Make sure PID file is readable. > + test -f /run/rngd.pid && chmod 755 /run/rngd.pid > + > # Is already running. > echo_ok > else > loadproc /usr/sbin/rngd --no-tpm=3D1 > + > + # Make sure PID file is readable. > + test -f /run/rngd.pid && chmod 755 /run/rngd.pid > fi > ;; > =20 I suppose you are trying to make the PID file readable by the web UI? Can we = not patch this in rngd and send the patch upstream? PID files should be 644. -Michael --===============3024915442050934367==--