From mboxrd@z Thu Jan 1 00:00:00 1970 From: git@ipfire.org To: ipfire-scm@lists.ipfire.org Subject: [git.ipfire.org] IPFire 2.x development tree branch, next, updated. 18b6da69b6e8ecddf86d0f824a28b0f3e37df2cb Date: Thu, 29 Dec 2016 20:36:11 +0000 Message-ID: <20161229203611.E1BB11078E80@git01.ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============2638241687520588364==" List-Id: --===============2638241687520588364== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree". The branch, next has been updated via 18b6da69b6e8ecddf86d0f824a28b0f3e37df2cb (commit) via 3fbf7bed797f32062ef2cff0ec7240b327b10f6b (commit) via 4aef53d50dd2152601bc88cc22157d3289206e38 (commit) via 1857244ea44a872265b05222f7f94a93b2d964b1 (commit) from 8fa523e028ecfa8acb33bac7d48f2fe9cb60a86e (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 18b6da69b6e8ecddf86d0f824a28b0f3e37df2cb Author: Jonatan Schlag Date: Thu Dec 29 20:37:34 2016 +0100 core109: Ship network bridge changes =20 Signed-off-by: Jonatan Schlag Signed-off-by: Michael Tremer commit 3fbf7bed797f32062ef2cff0ec7240b327b10f6b Author: Jonatan Schlag Date: Thu Dec 29 20:37:33 2016 +0100 network: Rename MACVTAP script =20 This script is creating common bridges now, too and therefore needs a more generic name. =20 Signed-off-by: Jonatan Schlag Signed-off-by: Michael Tremer commit 4aef53d50dd2152601bc88cc22157d3289206e38 Author: Jonatan Schlag Date: Thu Dec 29 20:37:32 2016 +0100 network: Support bridge mode for zones =20 This bridge mode is supposed to be used for virtual environments to create a network zone as a bridge and have virtual machines inside it. Other physical interfaces can also be added to the bridge. =20 This is very similar to the MACVTAP bridge feature but still works when the link of any (or all) physical interfaces is down. =20 Fixes: #11252 =20 Signed-off-by: Jonatan Schlag Signed-off-by: Michael Tremer commit 1857244ea44a872265b05222f7f94a93b2d964b1 Author: Jonatan Schlag Date: Thu Dec 29 20:37:31 2016 +0100 udev: Do not use MACVTAP for any wireless devices =20 Fixes #11179 =20 Signed-off-by: Jonatan Schlag Signed-off-by: Michael Tremer ----------------------------------------------------------------------- Summary of changes: config/rootfiles/common/udev | 2 +- config/rootfiles/core/109/filelists/files | 3 + config/rootfiles/core/109/update.sh | 2 + config/udev/60-net.rules | 4 +- config/udev/network-hotplug-bridges | 114 ++++++++++++++++++++++++++++= ++ config/udev/network-hotplug-macvtap | 46 ------------ config/udev/network-hotplug-rename | 24 +++++-- lfs/udev | 4 +- 8 files changed, 143 insertions(+), 56 deletions(-) create mode 100644 config/udev/network-hotplug-bridges delete mode 100644 config/udev/network-hotplug-macvtap Difference in files: diff --git a/config/rootfiles/common/udev b/config/rootfiles/common/udev index e1f4bd5..1ba82d0 100644 --- a/config/rootfiles/common/udev +++ b/config/rootfiles/common/udev @@ -28,7 +28,7 @@ lib/udev #lib/udev/hwdb.d/60-keyboard.hwdb #lib/udev/init-net-rules.sh #lib/udev/mtd_probe -#lib/udev/network-hotplug-macvtap +#lib/udev/network-hotplug-bridges #lib/udev/network-hotplug-rename #lib/udev/network-hotplug-vlan #lib/udev/rule_generator.functions diff --git a/config/rootfiles/core/109/filelists/files b/config/rootfiles/cor= e/109/filelists/files index ca49b1b..7c1cc3f 100644 --- a/config/rootfiles/core/109/filelists/files +++ b/config/rootfiles/core/109/filelists/files @@ -1,3 +1,6 @@ etc/system-release etc/issue +lib/udev/rules.d/60-net.rules +lib/udev/network-hotplug-bridges +lib/udev/network-hotplug-rename usr/local/bin/syslogdctrl diff --git a/config/rootfiles/core/109/update.sh b/config/rootfiles/core/109/= update.sh index c601654..1143890 100644 --- a/config/rootfiles/core/109/update.sh +++ b/config/rootfiles/core/109/update.sh @@ -50,6 +50,8 @@ ldconfig /etc/init.d/squid start /etc/init.d/snort start =20 +# Remove old MACVTAP script +rm -vf /lib/udev/network-hotplug-macvtap =20 # This update need a reboot... #touch /var/run/need_reboot diff --git a/config/udev/60-net.rules b/config/udev/60-net.rules index e031e7a..fff7513 100644 --- a/config/udev/60-net.rules +++ b/config/udev/60-net.rules @@ -6,5 +6,5 @@ ACTION=3D=3D"add", SUBSYSTEM=3D=3D"net", PROGRAM=3D"/lib/udev= /network-hotplug-rename", RES # that has just come up. ACTION=3D=3D"add", SUBSYSTEM=3D=3D"net", RUN+=3D"/lib/udev/network-hotplug-v= lan" =20 -# Call a script that will set up macvtap interfaces -ACTION=3D=3D"add", SUBSYSTEM=3D=3D"net", RUN+=3D"/lib/udev/network-hotplug-m= acvtap" +# Call a script that will set up zones as bridges +ACTION=3D=3D"add", SUBSYSTEM=3D=3D"net", RUN+=3D"/lib/udev/network-hotplug-b= ridges" diff --git a/config/udev/network-hotplug-bridges b/config/udev/network-hotplu= g-bridges new file mode 100644 index 0000000..ff6d20a --- /dev/null +++ b/config/udev/network-hotplug-bridges @@ -0,0 +1,114 @@ +#!/bin/bash +############################################################################ +# # +# This file is part of the IPFire Firewall. # +# # +# IPFire is free software; you can redistribute it and/or modify # +# it under the terms of the GNU General Public License as published by # +# the Free Software Foundation; either version 2 of the License, or # +# (at your option) any later version. # +# # +# IPFire is distributed in the hope that it will be useful, # +# but WITHOUT ANY WARRANTY; without even the implied warranty of # +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # +# GNU General Public License for more details. # +# # +# You should have received a copy of the GNU General Public License # +# along with IPFire; if not, write to the Free Software # +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # +# # +# Copyright (C) 2016 IPFire Team = # +# # +############################################################################ + +[ -n "${INTERFACE}" ] || exit 2 + +eval $(/usr/local/bin/readhash /var/ipfire/ethernet/settings) + +detect_zone() { + local intf=3D"${INTERFACE%0*}" + intf=3D"${intf^^}" + + local zone + for zone in GREEN BLUE ORANGE RED; do + # Try to find if INTERFACE is the *phys version of a zone + if [ "${intf}" =3D "${zone}" ]; then + echo "${zone}" + return 0 + fi + + # Try to find out if this INTERFACE is a slave of a zone + local slave + for slave in $(get_value "${zone}_SLAVES"); do + if [ "${INTERFACE}" =3D "${slave}" ]; then + echo "${zone}" + return 0 + fi + done + done + + return 1 +} + +get_value() { + echo "${!1}" +} + +random_mac_address() { + local address=3D"02" + + for i in $(seq 5); do + printf -v address "${address}:%02x" "$(( RANDOM % 256 ))" + done + + echo "${address}" +} + +# Try to detect which zone we are operating on +ZONE=3D$(detect_zone) + +# Cannot proceed if we could not find a zone +if [ -z "${ZONE}" ]; then + exit 0 +fi + +# Determine the mode of this zone +MODE=3D"$(get_value "${ZONE}_MODE")" + +# The name of the virtual bridge +BRIDGE=3D"$(get_value "${ZONE}_DEV")" + +case "${MODE}" in + bridge) + ADDRESS=3D"$(get_value "${ZONE}_MACADDR")" + [ -n "${ADDRESS}" ] || ADDRESS=3D"$(random_mac_address)" + + # We need to create the bridge if it doesn't exist, yet + if [ ! -d "/sys/class/net/${BRIDGE}" ]; then + ip link add "${BRIDGE}" address "${ADDRESS}" type bridge + #ip link set "${BRIDGE}" up + fi + + # Attach the physical device + ip link set dev "${INTERFACE}" master "${BRIDGE}" + ip link set dev "${INTERFACE}" up + ;; + + macvtap) + ADDRESS=3D"$( = # -# # -############################################################################ - -[ -n "${INTERFACE}" ] || exit 2 - -PHYSICAL_INTERFACE=3D"${INTERFACE}" -VIRTUAL_INTERFACE=3D"${INTERFACE%phys}" -#VIRTUAL_INTERFACE=3D"${VIRTUAL_INTERFACE}0" - -# Do nothing if the physical interface does not end with "phys" -case "${PHYSICAL_INTERFACE}" in - *phys) - ;; - *) - exit 0 - ;; -esac - -ADDRESS=3D"$(