public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* Testing 'rules.pl'
@ 2023-03-12  9:45 Matthias Fischer
  2023-03-12 12:52 ` Matthias Fischer
  0 siblings, 1 reply; 3+ messages in thread
From: Matthias Fischer @ 2023-03-12  9:45 UTC (permalink / raw)
  To: development

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

Hi,

Being curious, I tested
https://git.ipfire.org/?p=ipfire-2.x.git;a=commitdiff;h=1b70ead36dfaf6541677e4ac5d05867273eaa265
on Core 173 today => "firewall: Silence warnings if blocklist logging is
not set".

Bug-Reference: #12979.

But when I try to restart the firewall, I get:

...
root(a)ipfire: /usr/lib/firewall # /etc/init.d/firewall restart
Setting up firewall
syntax error at /usr/lib/firewall/rules.pl line 764, near ") &&"
Global symbol "$blocklist" requires explicit package name (did you
forget to declare "my $blocklist"?) at /usr/lib/firewall/rules.pl line 770.
Global symbol "$blocklist" requires explicit package name (did you
forget to declare "my $blocklist"?) at /usr/lib/firewall/rules.pl line 773.
Global symbol "$blocklist" requires explicit package name (did you
forget to declare "my $blocklist"?) at /usr/lib/firewall/rules.pl line 773.
Global symbol "$blocklist" requires explicit package name (did you
forget to declare "my $blocklist"?) at /usr/lib/firewall/rules.pl line 774.
Global symbol "$blocklist" requires explicit package name (did you
forget to declare "my $blocklist"?) at /usr/lib/firewall/rules.pl line 774.
syntax error at /usr/lib/firewall/rules.pl line 777, near "} else"
Global symbol "$blocklist" requires explicit package name (did you
forget to declare "my $blocklist"?) at /usr/lib/firewall/rules.pl line 784.
syntax error at /usr/lib/firewall/rules.pl line 785, near "}"
Can't redeclare "my" in "my" at /usr/lib/firewall/rules.pl line 792,
near "my"
/usr/lib/firewall/rules.pl has too many errors.
...

The old version of 'rules.pl' is working without problems.

Am I doing something wrong or is there anything still missing!?

Best,
Matthias

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Testing 'rules.pl'
  2023-03-12  9:45 Testing 'rules.pl' Matthias Fischer
@ 2023-03-12 12:52 ` Matthias Fischer
  2023-03-13 14:09   ` Michael Tremer
  0 siblings, 1 reply; 3+ messages in thread
From: Matthias Fischer @ 2023-03-12 12:52 UTC (permalink / raw)
  To: development

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

Hi,

I took a closer look and as I see it, there is a single bracket missing
in line 764, see:

=>
https://git.ipfire.org/?p=ipfire-2.x.git;a=blob;f=config/firewall/rules.pl;h=80985ca530ec68e8191334125f18649f7f5eb429;hb=1b70ead36dfaf6541677e4ac5d05867273eaa265#l764

Now:
...
if($blocklistsettings{'LOGGING'}) && ($blocklistsettings{'LOGGING'} eq
"on")) {
...

It should read:
...
if(($blocklistsettings{'LOGGING'}) && ($blocklistsettings{'LOGGING'} eq
"on")) {
...

I added this bracket and errors are gone.

Can anyone confirm?

Best,
Matthias

On 12.03.2023 10:45, Matthias Fischer wrote:
> Hi,
> 
> Being curious, I tested
> https://git.ipfire.org/?p=ipfire-2.x.git;a=commitdiff;h=1b70ead36dfaf6541677e4ac5d05867273eaa265
> on Core 173 today => "firewall: Silence warnings if blocklist logging is
> not set".
> 
> Bug-Reference: #12979.
> 
> But when I try to restart the firewall, I get:
> 
> ...
> root(a)ipfire: /usr/lib/firewall # /etc/init.d/firewall restart
> Setting up firewall
> syntax error at /usr/lib/firewall/rules.pl line 764, near ") &&"
> Global symbol "$blocklist" requires explicit package name (did you
> forget to declare "my $blocklist"?) at /usr/lib/firewall/rules.pl line 770.
> Global symbol "$blocklist" requires explicit package name (did you
> forget to declare "my $blocklist"?) at /usr/lib/firewall/rules.pl line 773.
> Global symbol "$blocklist" requires explicit package name (did you
> forget to declare "my $blocklist"?) at /usr/lib/firewall/rules.pl line 773.
> Global symbol "$blocklist" requires explicit package name (did you
> forget to declare "my $blocklist"?) at /usr/lib/firewall/rules.pl line 774.
> Global symbol "$blocklist" requires explicit package name (did you
> forget to declare "my $blocklist"?) at /usr/lib/firewall/rules.pl line 774.
> syntax error at /usr/lib/firewall/rules.pl line 777, near "} else"
> Global symbol "$blocklist" requires explicit package name (did you
> forget to declare "my $blocklist"?) at /usr/lib/firewall/rules.pl line 784.
> syntax error at /usr/lib/firewall/rules.pl line 785, near "}"
> Can't redeclare "my" in "my" at /usr/lib/firewall/rules.pl line 792,
> near "my"
> /usr/lib/firewall/rules.pl has too many errors.
> ...
> 
> The old version of 'rules.pl' is working without problems.
> 
> Am I doing something wrong or is there anything still missing!?
> 
> Best,
> Matthias


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Testing 'rules.pl'
  2023-03-12 12:52 ` Matthias Fischer
@ 2023-03-13 14:09   ` Michael Tremer
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Tremer @ 2023-03-13 14:09 UTC (permalink / raw)
  To: development

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

Hello,

I can confirm that this is indeed a syntax error. How this compiles I have no idea.

Please send a patch. Also thank you very much for looking into this!

-Michael

> On 12 Mar 2023, at 12:52, Matthias Fischer <matthias.fischer(a)ipfire.org> wrote:
> 
> Hi,
> 
> I took a closer look and as I see it, there is a single bracket missing
> in line 764, see:
> 
> =>
> https://git.ipfire.org/?p=ipfire-2.x.git;a=blob;f=config/firewall/rules.pl;h=80985ca530ec68e8191334125f18649f7f5eb429;hb=1b70ead36dfaf6541677e4ac5d05867273eaa265#l764
> 
> Now:
> ...
> if($blocklistsettings{'LOGGING'}) && ($blocklistsettings{'LOGGING'} eq
> "on")) {
> ...
> 
> It should read:
> ...
> if(($blocklistsettings{'LOGGING'}) && ($blocklistsettings{'LOGGING'} eq
> "on")) {
> ...
> 
> I added this bracket and errors are gone.
> 
> Can anyone confirm?
> 
> Best,
> Matthias
> 
> On 12.03.2023 10:45, Matthias Fischer wrote:
>> Hi,
>> 
>> Being curious, I tested
>> https://git.ipfire.org/?p=ipfire-2.x.git;a=commitdiff;h=1b70ead36dfaf6541677e4ac5d05867273eaa265
>> on Core 173 today => "firewall: Silence warnings if blocklist logging is
>> not set".
>> 
>> Bug-Reference: #12979.
>> 
>> But when I try to restart the firewall, I get:
>> 
>> ...
>> root(a)ipfire: /usr/lib/firewall # /etc/init.d/firewall restart
>> Setting up firewall
>> syntax error at /usr/lib/firewall/rules.pl line 764, near ") &&"
>> Global symbol "$blocklist" requires explicit package name (did you
>> forget to declare "my $blocklist"?) at /usr/lib/firewall/rules.pl line 770.
>> Global symbol "$blocklist" requires explicit package name (did you
>> forget to declare "my $blocklist"?) at /usr/lib/firewall/rules.pl line 773.
>> Global symbol "$blocklist" requires explicit package name (did you
>> forget to declare "my $blocklist"?) at /usr/lib/firewall/rules.pl line 773.
>> Global symbol "$blocklist" requires explicit package name (did you
>> forget to declare "my $blocklist"?) at /usr/lib/firewall/rules.pl line 774.
>> Global symbol "$blocklist" requires explicit package name (did you
>> forget to declare "my $blocklist"?) at /usr/lib/firewall/rules.pl line 774.
>> syntax error at /usr/lib/firewall/rules.pl line 777, near "} else"
>> Global symbol "$blocklist" requires explicit package name (did you
>> forget to declare "my $blocklist"?) at /usr/lib/firewall/rules.pl line 784.
>> syntax error at /usr/lib/firewall/rules.pl line 785, near "}"
>> Can't redeclare "my" in "my" at /usr/lib/firewall/rules.pl line 792,
>> near "my"
>> /usr/lib/firewall/rules.pl has too many errors.
>> ...
>> 
>> The old version of 'rules.pl' is working without problems.
>> 
>> Am I doing something wrong or is there anything still missing!?
>> 
>> Best,
>> Matthias
> 


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-03-13 14:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-12  9:45 Testing 'rules.pl' Matthias Fischer
2023-03-12 12:52 ` Matthias Fischer
2023-03-13 14:09   ` Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox