public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Bob Brewer <ipfire-devel@grantura.co.uk>
To: development@lists.ipfire.org
Subject: firewall.local
Date: Tue, 11 Sep 2018 19:47:28 +0100	[thread overview]
Message-ID: <pn92k0$t5$1@tuscan3.grantura.co.uk> (raw)

[-- Attachment #1: Type: text/plain, Size: 1843 bytes --]

I have a comprehensive blocklist which is loaded and unloaded from 
/etc/sysconfig/firewall.local by a script (blacklist.sh) at startup which 
creates drop rules in the CUSTOMFORWARD and CUSTOMINPUT tables.

*********************************************
!/bin/sh
# Used for private firewall rules

# See how we were called.
case "$1" in
  start)
        ## add your 'start' rules here

        /usr/local/bin/blacklist.sh INPUT append
        ;;
  stop)
        ## add your 'stop' rules here

        /usr/local/bin/blacklist.sh INPUT delete
        ;;
  reload)
        $0 stop
        $0 start
        ## add your 'reload' rules here
        ;;
  *)
        echo "Usage: $0 {start|stop|reload}"
        ;;
esac
*********************************************

It would appear that firewall.local script is called from 
/usr/lib/firewall/rules.pl with

        #Reload firewall.local if present
        if ( -f '/etc/sysconfig/firewall.local'){
                run("/etc/sysconfig/firewall.local reload");

which calls "reload" to the firewall.local script which at boot first runs 
"stop" and tries to unload the blacklist firewall rules before they have 
been created causing many errors to be generated in the logs before the 
rules are then created with "start".

Changing rules.pl to:

run("/etc/sysconfig/firewall.local start");

overcomes the boot problem but I can't then find out how my blacklist rules 
would then be deleted and potentially multiple copies of the blacklist rules 
being created.

Maybe I don't fully understand the way the firewall.local rules are 
controlled but to me there does seem to be an illogical way that the rules 
are created and deleted by firewall.local. 

To me it looks like a bug but if I have understood the process incorrectly, 
I would appreciate an explanation of the process.

Regards

Rob

 

 

                 reply	other threads:[~2018-09-11 18:47 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='pn92k0$t5$1@tuscan3.grantura.co.uk' \
    --to=ipfire-devel@grantura.co.uk \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox