OPNsense Forum

Archive => 22.1 Legacy Series => Topic started by: Deku2 on March 01, 2022, 09:38:39 PM

Title: Dashboard Failure
Post by: Deku2 on March 01, 2022, 09:38:39 PM
I'm getting a dashboard problem after upgrading to the latest opnsense, which prevents the entire dashboard from loading.

[01-Mar-2022 12:40:07 America/New_York] PHP Fatal error:  require_once(): Failed opening required 'diag_logs_common.inc' (include_path='/usr/local/etc/inc:/usr/local/www:/usr/local/opnsense/mvc:/usr/local/opnsense/contrib:/usr/local/share/pear:/usr/local/share') in /usr/local/www/widgets/widgets/ids_log.widget.php on line 47
[01-Mar-2022 12:41:37 America/New_York] PHP Warning:  require_once(diag_logs_common.inc): failed to open stream: No such file or directory in /usr/local/www/widgets/widgets/ids_log.widget.php on line 47



I can't find "diag_logs_common.inc" on the host.  I tried changing it to "diag_logs_settings.inc" which does exit, but that didn't work.  Also tried to comment line 47, but that didn't resolve the loading issue.
Title: Re: Dashboard Failure
Post by: franco on March 02, 2022, 09:12:09 AM
The file was removed in 21.7. I don't think we ever had "ids_log.widget.php" so you need to fix that or remove.


Cheers,
Franco
Title: Re: Dashboard Failure
Post by: Deku2 on March 02, 2022, 03:39:36 PM
Thanks, I just renamed it from ids_log.widget.php to ids_log.widget.php.bak and everything started working.  Guess it's probably safe to delete it then.  @franco, I'm not sure where I picked it up, but I don't think I created it myself. lol.  IDS log is nice to have on the dashboard if it can be adapted to the latest version. Here is the contents of the "ids_log.widget.php" for reference:

<?php/*    Copyright (C) 2015 S. Linke <dev@devsash.de>    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 ``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    AUTHOR 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.*/require_once("guiconfig.inc");$ids_logfile = '/var/log/suricata.log';if (!$config['widgets']['idslogfiltercount']){  $syslogEntriesToFetch = isset($config['syslog']['nentries']) ? $config['syslog']['nentries'] : 20;} else {  $syslogEntriesToFetch = $config['widgets']['idslogfiltercount'];}if (is_numeric($_POST['logfiltercount'])) {   $countReceived =  $_POST['logfiltercount'];   $config['widgets']['idslogfiltercount'] = $countReceived;   write_config("Saved Widget IDS Log Filter Setting");   header(url_safe('Location: /index.php'));   exit;}require_once('diag_logs_common.inc');?>


<div id="ids_log-settings" class="widgetconfigdiv" style="display:none;">
  <form action="/widgets/widgets/ids_log.widget.php" method="post" name="iform">
    <table class="table table-striped">
      <tr>
        <td><?=gettext("Number of Log lines to display");?>:</td>
        <td>
          <select name="logfiltercount" id="logfiltercount">
           
<?php for ($i = 1; $i <= 50; $i++) {?>

            <option value="<?= html_safe($i) ?>"
<?php if ($syslogEntriesToFetch == $i) { echo "selected=\"selected\"";}?>
><?= html_safe($i) ?></option>
           
<?php } ?>

          </select>
        </td>
        <td>
          <input id="submit_ids_log_widget" name="submit_ids_log_widget" type="submit" class="btn btn-primary formbtn" value="<?= gettext('Save') ?>">
        </td>
      </tr>
    </table>
  </form>
</div>

<div id="ids_log-widgets" class="content-box" style="overflow:scroll;">
  <table class="table table-striped" style="cellspacing:0; cellpadding:0">
   
<?php dump_clog($ids_logfile, $syslogEntriesToFetch); ?>

  </table>
</div>

<!-- needed to display the widget settings menu -->
<script>
//<![CDATA[
  $("#ids_log-configure").removeClass("disabled");
//]]>
</script>
Title: Re: Dashboard Failure
Post by: franco on March 02, 2022, 08:33:04 PM
Looks like a copy of the system log widget tailored for Suricata (intrusion detection) use. It was requested a few times but cramming it into a widget is difficult. Maybe someone tried it and presented the progress here in the forum?


Cheers,
Franco