public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] squid / WPAD: Add exception-files for generation of proxy.pac
@ 2019-04-14 10:08 Alexander Koch
  2019-04-15  9:43 ` Michael Tremer
  0 siblings, 1 reply; 18+ messages in thread
From: Alexander Koch @ 2019-04-14 10:08 UTC (permalink / raw)
  To: development

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

This patch extends the script /srv/web/ipfire/cgi-bin/proxy.cgi by additional code for reading exceptions for URL's and IP's/Subnets from two new files:

- /var/ipfire/proxy/advanced/acls/dst_noproxy_url.acl
- /var/ipfire/proxy/advanced/acls/dst_noproxy_ip.acl

as described in: https://wiki.ipfire.org/configuration/network/proxy/extend/add_distri

These can be used to define additional URL's, IP's and Subnets that should be retrieved "DIRECT" and not via the proxy. The files have to be created by the user, as the WPAD-Feature is not enabled by default anyway. If the files are not present or their size is 0, nothing is done. I'll revise the wiki-page, after the patch is merged and the core update is released.

Signed-off-by: Alexander Koch <ipfire(a)starkstromkonsument.de>
---
 html/cgi-bin/proxy.cgi | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/html/cgi-bin/proxy.cgi b/html/cgi-bin/proxy.cgi
index 6daa7fb..369a5cb 100644
--- a/html/cgi-bin/proxy.cgi
+++ b/html/cgi-bin/proxy.cgi
@@ -124,6 +124,9 @@ my $acl_ports_safe = "$acldir/ports_safe.acl";
 my $acl_ports_ssl  = "$acldir/ports_ssl.acl";
 my $acl_include = "$acldir/include.acl";
 
+my $acl_dst_noproxy_url = "$acldir/dst_noproxy_url.acl";
+my $acl_dst_noproxy_ip = "$acldir/dst_noproxy_ip.acl";
+
 my $updaccelversion  = 'n/a';
 my $urlfilterversion = 'n/a';
 
@@ -2763,6 +2766,42 @@ END
 		print FILE "     (isInNet(host, \"$netsettings{'ORANGE_NETADDRESS'}\", \"$netsettings{'ORANGE_NETMASK'}\")) ||\n";
 	}
 
+	# Additional exceptions for URLs
+	# The file has to be created by the user and should contain one entry per line
+	# Line-Format: <URL incl. wildcards>
+	# e.g. *ipfire.org*
+	if (-s "$acl_dst_noproxy_url") {
+		undef @templist;
+
+		open(NOPROXY,"$acl_dst_noproxy_url");
+		@templist = <NOPROXY>;
+		close(NOPROXY);
+		chomp (@templist);
+
+		foreach (@templist)
+		{
+			print FILE "     (shExpMatch(url, \"$_\")) ||\n";
+		}
+	}
+
+	# Additional exceptions for Subnets
+	# The file has to be created by the user and should contain one entry per line
+	# Line-Format: "<IP>", "<SUBNET MASK>"
+	# e.g. "192.168.0.0", "255.255.255.0"
+	if (-s "$acl_dst_noproxy_ip") {
+		undef @templist;
+
+		open(NOPROXY,"$acl_dst_noproxy_ip");
+		@templist = <NOPROXY>;
+		close(NOPROXY);
+		chomp (@templist);
+
+		foreach (@templist)
+		{
+			print FILE "     (isInNet(host, $_)) ||\n";
+		}
+	}
+
 	print FILE <<END
      (isInNet(host, "169.254.0.0", "255.255.0.0"))
    )
-- 
2.7.4


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

end of thread, other threads:[~2019-04-24 10:55 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-14 10:08 [PATCH] squid / WPAD: Add exception-files for generation of proxy.pac Alexander Koch
2019-04-15  9:43 ` Michael Tremer
2019-04-15 20:12   ` Alexander Koch
2019-04-17 14:08     ` Michael Tremer
2019-04-17 23:54       ` [PATCH 1/2] squid / WPAD: Add GUI for " Alexander Koch
2019-04-17 23:54         ` [PATCH 2/2] apache / WPAD: Add correct MIME type for wpad.dat and proxy.pac Alexander Koch
2019-04-23 15:23           ` Alexander Koch
2019-04-24 10:55             ` Michael Tremer
2019-04-18 10:27         ` [PATCH 1/2] squid / WPAD: Add GUI for exception-files for generation of proxy.pac Michael Tremer
2019-04-18  1:41       ` [PATCH] squid / WPAD: Add " Alexander Koch
2019-04-18 10:33         ` Michael Tremer
2019-04-21 21:56           ` [PATCH 1/2] squid / WPAD: Add GUI for " Alexander Koch
2019-04-21 21:56             ` [PATCH 2/2] squid / WPAD: Add Wiki-Link for required further adjustments to GUI Alexander Koch
2019-04-22  8:02             ` [PATCH 1/2] squid / WPAD: Add GUI for exception-files for generation of proxy.pac Matthias Fischer
2019-04-22 14:06               ` Tom Rymes
2019-04-22 15:10                 ` Matthias Fischer
2019-04-22 18:46                   ` Michael Tremer
2019-04-23 16:29                     ` Matthias Fischer

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