public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* Question regarding lines 3603 to 3613 in proxy.cgi
@ 2021-04-05 11:35 Peter Müller
  2021-04-07 20:36 ` Michael Tremer
  0 siblings, 1 reply; 2+ messages in thread
From: Peter Müller @ 2021-04-05 11:35 UTC (permalink / raw)
  To: development

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

Hello development folks,

since I am currently working on a patch(set?) allowing to enable the web proxy for ORANGE
through the web interface, I stumbled across lines 3603 to 3613 in the proxy.cgi file:

> 	if ($netsettings{'BLUE_DEV'})
> 	{
> 		print FILE "delay_access 1 allow IPFire_green_network";
> 		if (!-z $acl_dst_throttle) { print FILE " for_throttled_urls"; }
> 		print FILE "\n";
> 		print FILE "delay_access 1 deny  all\n";
> 	} else {
> 		print FILE "delay_access 1 allow all";
> 		if (!-z $acl_dst_throttle) { print FILE " for_throttled_urls"; }
> 		print FILE "\n";
> 	}

This block appears odd to me, particularly due to the block in lines 3615 to 3625:

> 	if ($netsettings{'BLUE_DEV'})
> 	{
> 		print FILE "delay_access 2 deny  IPFire_ips\n";
> 		if (!-z $acl_src_unrestricted_ip)  { print FILE "delay_access 2 deny  IPFire_unrestricted_ips\n"; }
> 		if (!-z $acl_src_unrestricted_mac) { print FILE "delay_access 2 deny  IPFire_unrestricted_mac\n"; }
> 		if (($proxysettings{'AUTH_METHOD'} eq 'ncsa') && (!-z $extgrp)) { print FILE "delay_access 2 deny  for_extended_users\n"; }
> 		print FILE "delay_access 2 allow IPFire_blue_network";
> 		if (!-z $acl_dst_throttle) { print FILE " for_throttled_urls"; }
> 		print FILE "\n";
> 		print FILE "delay_access 2 deny  all\n";
> 	}

While the entire CGI is rather - um - hacky at some points, I suspect the first code block
to be related to throttling on GREEN, which is not involved into the presence or absence of
the BLUE interface. Or am I missing something here?

Thanks, and best regards,
Peter Müller

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

* Re: Question regarding lines 3603 to 3613 in proxy.cgi
  2021-04-05 11:35 Question regarding lines 3603 to 3613 in proxy.cgi Peter Müller
@ 2021-04-07 20:36 ` Michael Tremer
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Tremer @ 2021-04-07 20:36 UTC (permalink / raw)
  To: development

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

Hello,

> On 5 Apr 2021, at 12:35, Peter Müller <peter.mueller(a)ipfire.org> wrote:
> 
> Hello development folks,
> 
> since I am currently working on a patch(set?) allowing to enable the web proxy for ORANGE
> through the web interface,

And why would that be a good idea?

> I stumbled across lines 3603 to 3613 in the proxy.cgi file:
> 
>> 	if ($netsettings{'BLUE_DEV'})
>> 	{
>> 		print FILE "delay_access 1 allow IPFire_green_network";
>> 		if (!-z $acl_dst_throttle) { print FILE " for_throttled_urls"; }
>> 		print FILE "\n";
>> 		print FILE "delay_access 1 deny  all\n";
>> 	} else {
>> 		print FILE "delay_access 1 allow all";
>> 		if (!-z $acl_dst_throttle) { print FILE " for_throttled_urls"; }
>> 		print FILE "\n";
>> 	}
> 
> This block appears odd to me, particularly due to the block in lines 3615 to 3625:
> 
>> 	if ($netsettings{'BLUE_DEV'})
>> 	{
>> 		print FILE "delay_access 2 deny  IPFire_ips\n";
>> 		if (!-z $acl_src_unrestricted_ip)  { print FILE "delay_access 2 deny  IPFire_unrestricted_ips\n"; }
>> 		if (!-z $acl_src_unrestricted_mac) { print FILE "delay_access 2 deny  IPFire_unrestricted_mac\n"; }
>> 		if (($proxysettings{'AUTH_METHOD'} eq 'ncsa') && (!-z $extgrp)) { print FILE "delay_access 2 deny  for_extended_users\n"; }
>> 		print FILE "delay_access 2 allow IPFire_blue_network";
>> 		if (!-z $acl_dst_throttle) { print FILE " for_throttled_urls"; }
>> 		print FILE "\n";
>> 		print FILE "delay_access 2 deny  all\n";
>> 	}
> 
> While the entire CGI is rather - um - hacky at some points, I suspect the first code block
> to be related to throttling on GREEN, which is not involved into the presence or absence of
> the BLUE interface. Or am I missing something here?

It is indeed a file that has been worked on over decades. It isn’t cut from just one piece of marble, but made out of many small pieces.

However, I do not know what you are asking. What does “odd code” mean?

-Michael

> Thanks, and best regards,
> Peter Müller


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

end of thread, other threads:[~2021-04-07 20:36 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-05 11:35 Question regarding lines 3603 to 3613 in proxy.cgi Peter Müller
2021-04-07 20:36 ` Michael Tremer

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