From 7fe1577d669df43356d09d51f7402f652ebafd76 Mon Sep 17 00:00:00 2001 From: Alexandre Derumier Date: Fri, 23 May 2014 15:11:37 +0200 Subject: [PATCH] vznetaddbr perl version this replace the default vznetaddbr script, using perl code. This allow to use vlan tag, firewall bridge and openvswitch bridge like for qemu Signed-off-by: Alexandre Derumier --- debian/patches/fix-config-path.diff | 13 ------ debian/patches/series | 2 +- debian/rules | 3 ++ debian/vznetaddbr | 69 +++++++++++++++++++++++++++++ 4 files changed, 73 insertions(+), 14 deletions(-) create mode 100755 debian/vznetaddbr diff --git a/debian/patches/fix-config-path.diff b/debian/patches/fix-config-path.diff index 8a17ad9..fa50f56 100644 --- a/debian/patches/fix-config-path.diff +++ b/debian/patches/fix-config-path.diff @@ -24,19 +24,6 @@ Index: new/paths.am distconfdir = $(pkgconfdir)/dists namesdir = $(pkgconfdir)/names -Index: new/bin/vznetaddbr.in -=================================================================== ---- new.orig/bin/vznetaddbr.in 2012-09-28 09:05:45.000000000 +0200 -+++ new/bin/vznetaddbr.in 2012-09-28 09:39:27.000000000 +0200 -@@ -2,7 +2,7 @@ - # - # Add virtual network interfaces (veth's) in a container to a bridge on CT0 - --CONFIGFILE=@PKGCONFDIR@/conf/$VEID.conf -+CONFIGFILE=@VPSCONFDIR@/$VEID.conf - . $CONFIGFILE - - NETIFLIST=$(printf %s "$NETIF" |tr ';' '\n') Index: new/etc/init.d/vz-redhat.in =================================================================== --- new.orig/etc/init.d/vz-redhat.in 2012-09-28 09:05:45.000000000 +0200 diff --git a/debian/patches/series b/debian/patches/series index 1153d99..9dab92c 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -7,6 +7,6 @@ no-backup-on-destroy.diff fix-init.d-depends.diff allow-abs-ostemplate-path.diff always-create-dev-console.patch -keep-bridge-MTU.patch +#keep-bridge-MTU.patch fix-vzifup-post-error.patch pass-bridge-value-as-argument-to-VZNETCFG.patch diff --git a/debian/rules b/debian/rules index 1a4bc81..c9805fd 100644 --- a/debian/rules +++ b/debian/rules @@ -95,6 +95,9 @@ install: build rm -rf $(CURDIR)/debian/vzctl/etc/vz/conf # we create the symlink to /etc/pve/openvz inside the preinst script + # install perl vznetaddbr version + install -m 644 $(CURDIR)/debian/vznetaddbr $(CURDIR)/debian/vzctl/usr/sbin/vznetaddbr + # Build architecture-independent files here. diff --git a/debian/vznetaddbr b/debian/vznetaddbr new file mode 100755 index 0000000..7c394a2 --- /dev/null +++ b/debian/vznetaddbr @@ -0,0 +1,69 @@ +#!/usr/bin/perl +use strict; +use warnings; +use PVE::OpenVZ; +use PVE::Tools qw(run_command); +use PVE::Network; +use PVE::ProcFSTools; + +my $vmid = $ENV{VEID}; +die "missing vmid parameter" if !$vmid; + +my $iface = $ARGV[2]; +die "missing iface parameter" if !$iface; + +my $bridgevlanf = $ARGV[3]; +die "missing bridge parameter" if !$bridgevlanf; + +my $conf = PVE::OpenVZ::load_config($vmid); + +my $ifaces = {}; +if (defined ($conf->{netif}) && $conf->{netif}->{value}) { + $ifaces = PVE::OpenVZ::parse_netif($conf->{netif}->{value}, $vmid); +} + +my $oldbridgevlanf = undef; + +#read oldbridge value +foreach my $ifname (sort keys %$ifaces) { + + if($ifaces->{$ifname}->{host_ifname} eq $iface){ + $oldbridgevlanf = $ifaces->{$ifname}->{bridge}; + + } +} + +my $tag = undef; +my $firewall = undef; +my $bridge = undef; + +if($bridgevlanf =~ m/(vmbr(\d+))(v(\d+))?(f)?/){ + $bridge = $1; + $tag = $4 if $4; + $firewall = $5 if $5; +} + +die "missing bridge parameter" if !$bridge; + + +if($bridgevlanf ne $oldbridgevlanf){ + + PVE::Network::tap_unplug($iface); +} + +if (-d "/sys/class/net/$iface") { + + my $bridgemtu = PVE::Tools::file_read_firstline("/sys/class/net/$bridge/mtu"); + die "bridge '$bridge' does not exist\n" if !$bridgemtu; + #avoid insecure dependency; + ($bridgemtu) = $bridgemtu =~ /(\d+)/; + + PVE::Tools::run_command("/sbin/ip link set dev $iface up mtu $bridgemtu"); + PVE::Tools::run_command("/sbin/ip addr add 0.0.0.0/0 dev $iface"); + PVE::ProcFSTools::write_proc_entry("/proc/sys/net/ipv4/conf/$iface/proxy_arp", "1"); + PVE::ProcFSTools::write_proc_entry("/proc/sys/net/ipv4/conf/$iface/forwarding", "1"); + PVE::Network::tap_plug($iface, $bridge, $tag, $firewall); + +} + +exit 0; -- 2.39.2