Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
79b87986
Commit
79b87986
authored
Nov 20, 2016
by
Franco Fichtner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
igmpproxy: pluginify
parent
30122eae
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
129 additions
and
80 deletions
+129
-80
plist
plist
+1
-0
igmpproxy.inc
src/etc/inc/plugins.inc.d/igmpproxy.inc
+119
-0
services.inc
src/etc/inc/services.inc
+1
-68
rc.bootup
src/etc/rc.bootup
+0
-3
rc.newwanip
src/etc/rc.newwanip
+2
-4
rc.newwanipv6
src/etc/rc.newwanipv6
+3
-2
interfaces.php
src/www/interfaces.php
+2
-1
load_balancer_monitor.php
src/www/load_balancer_monitor.php
+0
-1
services_igmpproxy.php
src/www/services_igmpproxy.php
+1
-1
No files found.
plist
View file @
79b87986
...
...
@@ -48,6 +48,7 @@
/usr/local/etc/inc/plugins.inc.d/if_ipsec.inc
/usr/local/etc/inc/plugins.inc.d/if_legacy_opt.inc
/usr/local/etc/inc/plugins.inc.d/if_openvpn.inc
/usr/local/etc/inc/plugins.inc.d/igmpproxy.inc
/usr/local/etc/inc/plugins.inc.d/miniupnpd.inc
/usr/local/etc/inc/plugins.inc.d/relayd.inc
/usr/local/etc/inc/plugins.inc.d/relayd/dns.proto
...
...
src/etc/inc/plugins.inc.d/igmpproxy.inc
0 → 100644
View file @
79b87986
<?php
/*
Copyright (C) 2014-2016 Franco Fichtner <franco@opnsense.org>
Copyright (C) 2010 Ermal Luci
Copyright (C) 2005-2006 Colin Smith <ethethlay@gmail.com>
Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>
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.
*/
function
igmpproxy_enabled
()
{
global
$config
;
return
isset
(
$config
[
'igmpproxy'
][
'igmpentry'
]);
}
function
igmpproxy_services
()
{
$services
=
array
();
if
(
!
igmpproxy_enabled
())
{
return
$services
;
}
$pconfig
=
array
();
$pconfig
[
'name'
]
=
'igmpproxy'
;
$pconfig
[
'description'
]
=
gettext
(
'IGMP Proxy'
);
$pconfig
[
'php'
][
'restart'
]
=
array
(
'igmpproxy_configure_do'
);
$pconfig
[
'php'
][
'start'
]
=
array
(
'igmpproxy_configure_do'
);
$services
[]
=
$pconfig
;
return
$services
;
}
function
igmpproxy_configure
()
{
return
array
(
'igmpproxy_configure_do'
);
}
function
igmpproxy_configure_do
(
$verbose
=
false
)
{
global
$config
;
killbyname
(
'igmpproxy'
);
if
(
!
igmpproxy_enabled
())
{
return
;
}
if
(
$verbose
)
{
echo
'Starting IGMP Proxy...'
;
flush
();
}
$iflist
=
get_configured_interface_list
();
$igmpconf
=
<<<EOD
##------------------------------------------------------
## Enable Quickleave mode (Sends Leave instantly)
##------------------------------------------------------
quickleave
EOD;
foreach
(
$config
[
'igmpproxy'
][
'igmpentry'
]
as
$igmpcf
)
{
unset
(
$iflist
[
$igmpcf
[
'ifname'
]]);
$realif
=
get_real_interface
(
$igmpcf
[
'ifname'
]);
if
(
empty
(
$igmpcf
[
'threshold'
]))
{
$threshld
=
1
;
}
else
{
$threshld
=
$igmpcf
[
'threshold'
];
}
$igmpconf
.=
"phyint
{
$realif
}
{
$igmpcf
[
'type'
]
}
ratelimit 0 threshold
{
$threshld
}
\n
"
;
if
(
$igmpcf
[
'address'
]
<>
""
)
{
$item
=
explode
(
" "
,
$igmpcf
[
'address'
]);
foreach
(
$item
as
$iww
)
{
$igmpconf
.=
"altnet
{
$iww
}
\n
"
;
}
}
$igmpconf
.=
"
\n
"
;
}
foreach
(
$iflist
as
$ifn
)
{
$realif
=
get_real_interface
(
$ifn
);
$igmpconf
.=
"phyint
{
$realif
}
disabled
\n
"
;
}
$igmpconf
.=
"
\n
"
;
file_put_contents
(
'/usr/local/etc/igmpproxy.conf'
,
$igmpconf
);
mwexec
(
'/usr/local/etc/rc.d/igmpproxy onestart'
);
if
(
$verbose
)
{
print
"done.
\n
"
;
}
}
src/etc/inc/services.inc
View file @
79b87986
...
...
@@ -41,6 +41,7 @@
require_once
(
'dyndns.class'
);
require_once
(
'plugins.inc.d/bsnmpd.inc'
);
require_once
(
'plugins.inc.d/dnsmasq.inc'
);
require_once
(
'plugins.inc.d/igmpproxy.inc'
);
require_once
(
'plugins.inc.d/relayd.inc'
);
require_once
(
'plugins.inc.d/unbound.inc'
);
...
...
@@ -1321,65 +1322,6 @@ EOD;
}
}
function
services_igmpproxy_configure
(
$verbose
=
false
)
{
global
$config
;
/* kill any running igmpproxy */
killbyname
(
"igmpproxy"
);
if
(
!
isset
(
$config
[
'igmpproxy'
][
'igmpentry'
])
||
!
is_array
(
$config
[
'igmpproxy'
][
'igmpentry'
])
||
(
count
(
$config
[
'igmpproxy'
][
'igmpentry'
])
==
0
))
{
return
;
}
if
(
$verbose
)
{
echo
'Starting IGMP Proxy...'
;
flush
();
}
$iflist
=
get_configured_interface_list
();
$igmpconf
=
<<<EOD
##------------------------------------------------------
## Enable Quickleave mode (Sends Leave instantly)
##------------------------------------------------------
quickleave
EOD;
foreach
(
$config
[
'igmpproxy'
][
'igmpentry'
]
as
$igmpcf
)
{
unset
(
$iflist
[
$igmpcf
[
'ifname'
]]);
$realif
=
get_real_interface
(
$igmpcf
[
'ifname'
]);
if
(
empty
(
$igmpcf
[
'threshold'
]))
{
$threshld
=
1
;
}
else
{
$threshld
=
$igmpcf
[
'threshold'
];
}
$igmpconf
.=
"phyint
{
$realif
}
{
$igmpcf
[
'type'
]
}
ratelimit 0 threshold
{
$threshld
}
\n
"
;
if
(
$igmpcf
[
'address'
]
<>
""
)
{
$item
=
explode
(
" "
,
$igmpcf
[
'address'
]);
foreach
(
$item
as
$iww
)
{
$igmpconf
.=
"altnet
{
$iww
}
\n
"
;
}
}
$igmpconf
.=
"
\n
"
;
}
foreach
(
$iflist
as
$ifn
)
{
$realif
=
get_real_interface
(
$ifn
);
$igmpconf
.=
"phyint
{
$realif
}
disabled
\n
"
;
}
$igmpconf
.=
"
\n
"
;
@
file_put_contents
(
'/usr/local/etc/igmpproxy.conf'
,
$igmpconf
);
mwexec
(
'/usr/local/etc/rc.d/igmpproxy onestart'
);
if
(
$verbose
)
{
print
"done.
\n
"
;
}
}
function
services_dhcrelay_configure
(
$verbose
=
false
)
{
global
$config
;
...
...
@@ -1984,15 +1926,6 @@ function services_get()
$services
[]
=
$pconfig
;
}
if
(
isset
(
$config
[
'igmpproxy'
][
'igmpentry'
])
&&
is_array
(
$config
[
'igmpproxy'
][
'igmpentry'
])
&&
(
count
(
$config
[
'igmpproxy'
][
'igmpentry'
])
>
0
))
{
$pconfig
=
array
();
$pconfig
[
'name'
]
=
"igmpproxy"
;
$pconfig
[
'description'
]
=
gettext
(
"IGMP proxy"
);
$pconfig
[
'php'
][
'restart'
]
=
array
(
'services_igmpproxy_configure'
);
$pconfig
[
'php'
][
'start'
]
=
array
(
'services_igmpproxy_configure'
);
$services
[]
=
$pconfig
;
}
if
(
isset
(
$config
[
'system'
][
'ssh'
][
'enabled'
]))
{
$pconfig
=
array
();
$pconfig
[
'name'
]
=
'sshd'
;
...
...
src/etc/rc.bootup
View file @
79b87986
...
...
@@ -211,9 +211,6 @@ if ($kern_hz == '1000') {
set_single_sysctl
(
'net.inet.tcp.rexmit_min'
,
'30'
);
}
/* start the igmpproxy daemon */
services_igmpproxy_configure
(
true
);
/* If powerd is enabled, lets launch it */
activate_powerd
();
...
...
src/etc/rc.newwanip
View file @
79b87986
...
...
@@ -211,11 +211,9 @@ if (!is_ipaddr($oldip) || $curwanip != $oldip || !is_ipaddrv4($config['interface
/* reload graphing functions */
enable_rrd_graphing
();
/* reload igmpproxy */
services_igmpproxy_configure
();
/* restart snmp */
/* XXX reload plugins */
bsnmpd_configure_do
();
igmpproxy_configure_do
();
/* reconfigure ntpd */
system_ntp_configure
(
false
);
...
...
src/etc/rc.newwanipv6
View file @
79b87986
...
...
@@ -158,8 +158,9 @@ if (substr($interface_real, 0, 4) != "ovpn")
/* reload graphing functions */
enable_rrd_graphing
();
/* reload igmpproxy */
services_igmpproxy_configure
();
/* XXX reload plugins */
bsnmpd_configure_do
();
igmpproxy_configure_do
();
/* reconfigure ntpd */
system_ntp_configure
(
false
);
src/www/interfaces.php
View file @
79b87986
...
...
@@ -523,8 +523,9 @@ if ($_SERVER['REQUEST_METHOD'] === 'GET') {
}
}
}
/*
restart snmp so that it binds
to correct address */
/*
XXX restart plugins o that the bind
to correct address */
bsnmpd_configure_do
();
igmpproxy_configure_do
();
/* sync filter configuration */
setup_gateways_monitor
();
filter_configure
();
...
...
src/www/load_balancer_monitor.php
View file @
79b87986
...
...
@@ -60,7 +60,6 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') {
}
exit
;
}
elseif
(
!
empty
(
$_POST
[
'apply'
]))
{
/* reload all components that use igmpproxy */
relayd_configure_do
();
filter_configure
();
clear_subsystem_dirty
(
'loadbalancer'
);
...
...
src/www/services_igmpproxy.php
View file @
79b87986
...
...
@@ -49,7 +49,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') {
exit
;
}
else
{
/* reload all components that use igmpproxy */
services_igmpproxy_configure
();
igmpproxy_configure_do
();
clear_subsystem_dirty
(
'igmpproxy'
);
header
(
url_safe
(
'Location: /services_igmpproxy.php'
));
exit
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment