]> git.proxmox.com Git - pve-network.git/blame - PVE/Network/SDN/Zones/EvpnPlugin.pm
bump version to 0.5-1
[pve-network.git] / PVE / Network / SDN / Zones / EvpnPlugin.pm
CommitLineData
f5eabba0 1package PVE::Network::SDN::Zones::EvpnPlugin;
63586d2f
AD
2
3use strict;
4use warnings;
f5eabba0 5use PVE::Network::SDN::Zones::VxlanPlugin;
7fdeb441 6use PVE::Exception qw(raise raise_param_exc);
f23633dc 7use PVE::JSONSchema qw(get_standard_option);
63586d2f
AD
8use PVE::Tools qw($IPV4RE);
9use PVE::INotify;
5ca07ed9
AD
10use PVE::Cluster;
11use PVE::Tools;
645d5f4e 12use Net::IP;
5ca07ed9 13
4405f2de 14use PVE::Network::SDN::Controllers::EvpnPlugin;
63586d2f 15
f5eabba0 16use base('PVE::Network::SDN::Zones::VxlanPlugin');
63586d2f
AD
17
18sub type {
19 return 'evpn';
20}
21
63586d2f
AD
22sub properties {
23 return {
63586d2f
AD
24 'vrf-vxlan' => {
25 type => 'integer',
26 description => "l3vni.",
27 },
28 'controller' => {
29 type => 'string',
30 description => "Frr router name",
31 },
8313a2c0
AD
32 'mac' => {
33 type => 'string',
34 description => "Anycast logical router mac address",
35 optional => 1, format => 'mac-addr'
36 },
f23633dc 37 'exitnodes' => get_standard_option('pve-node-list'),
63586d2f
AD
38 };
39}
40
41sub options {
42
43 return {
c2b9c173 44 nodes => { optional => 1},
63586d2f 45 'vrf-vxlan' => { optional => 0 },
f23633dc
AD
46 controller => { optional => 0 },
47 exitnodes => { optional => 1 },
823f2e2a 48 mtu => { optional => 1 },
8313a2c0 49 mac => { optional => 1 },
4ad78442
AD
50 dns => { optional => 1 },
51 reversedns => { optional => 1 },
52 dnszone => { optional => 1 },
331e2330 53 ipam => { optional => 0 },
63586d2f
AD
54 };
55}
56
57# Plugin implementation
58sub generate_sdn_config {
efffa0ff 59 my ($class, $plugin_config, $zoneid, $vnetid, $vnet, $controller, $controller_cfg, $subnet_cfg, $interfaces_config, $config) = @_;
63586d2f
AD
60
61 my $tag = $vnet->{tag};
62 my $alias = $vnet->{alias};
8313a2c0 63 my $mac = $plugin_config->{'mac'};
63586d2f 64
1de0abc0 65 my $vrf_iface = "vrf_$zoneid";
63586d2f 66 my $vrfvxlan = $plugin_config->{'vrf-vxlan'};
53b2cc90 67 my $local_node = PVE::INotify::nodename();
63586d2f
AD
68
69 die "missing vxlan tag" if !$tag;
f23633dc 70 die "missing controller" if !$controller;
912fb443 71 warn "vlan-aware vnet can't be enabled with evpn plugin" if $vnet->{vlanaware};
63586d2f 72
5a60da84 73 my @peers = PVE::Tools::split_list($controller->{'peers'});
efffa0ff
AD
74 my $bgprouter = PVE::Network::SDN::Controllers::EvpnPlugin::find_bgp_controller($local_node, $controller_cfg);
75 my $loopback = $bgprouter->{loopback} if $bgprouter->{loopback};
f23633dc 76 my ($ifaceip, $iface) = PVE::Network::SDN::Zones::Plugin::find_local_ip_interface_peers(\@peers, $loopback);
63586d2f
AD
77
78 my $mtu = 1450;
ba7ac021 79 $mtu = $interfaces_config->{$iface}->{mtu} - 50 if $interfaces_config->{$iface}->{mtu};
0251ed2f 80 $mtu = $plugin_config->{mtu} if $plugin_config->{mtu};
63586d2f
AD
81
82 #vxlan interface
1de0abc0 83 my $vxlan_iface = "vxlan_$vnetid";
63586d2f
AD
84 my @iface_config = ();
85 push @iface_config, "vxlan-id $tag";
63586d2f
AD
86 push @iface_config, "vxlan-local-tunnelip $ifaceip" if $ifaceip;
87 push @iface_config, "bridge-learning off";
88 push @iface_config, "bridge-arp-nd-suppress on";
89
90 push @iface_config, "mtu $mtu" if $mtu;
1de0abc0 91 push(@{$config->{$vxlan_iface}}, @iface_config) if !$config->{$vxlan_iface};
63586d2f
AD
92
93 #vnet bridge
94 @iface_config = ();
7024ec2b 95
e612faf6 96 my $address = {};
645d5f4e
AD
97 my $ipv4 = undef;
98 my $ipv6 = undef;
5d3e0248 99 my $subnets = PVE::Network::SDN::Vnets::get_subnets($vnetid, 1);
e612faf6
AD
100 foreach my $subnetid (sort keys %{$subnets}) {
101 my $subnet = $subnets->{$subnetid};
e8736dac 102 my $cidr = $subnet->{cidr};
9f4f6c2e 103 my $mask = $subnet->{mask};
e8736dac 104
e612faf6
AD
105 my $gateway = $subnet->{gateway};
106 if ($gateway) {
9f4f6c2e 107 push @iface_config, "address $gateway/$mask" if !defined($address->{$gateway});
e612faf6
AD
108 $address->{$gateway} = 1;
109 }
b634e577 110
645d5f4e
AD
111 my $iptables = undef;
112 my $checkrouteip = undef;
113 my $ipversion = Net::IP::ip_is_ipv6($gateway) ? 6 : 4;
114
115 if ($ipversion == 6) {
116 $ipv6 = 1;
117 $iptables = "ip6tables";
118 $checkrouteip = '2001:4860:4860::8888';
119 } else {
120 $ipv4 = 1;
121 $iptables = "iptables";
122 $checkrouteip = '8.8.8.8';
123 }
124
53b2cc90 125 if ($subnet->{snat}) {
b634e577
AD
126
127 my $is_evpn_gateway = $plugin_config->{'exitnodes'}->{$local_node};
128
53b2cc90 129 #find outgoing interface
645d5f4e 130 my ($outip, $outiface) = PVE::Network::SDN::Zones::Plugin::get_local_route_ip($checkrouteip);
53b2cc90
AD
131 if ($outip && $outiface && $is_evpn_gateway) {
132 #use snat, faster than masquerade
645d5f4e
AD
133 push @iface_config, "post-up $iptables -t nat -A POSTROUTING -s '$cidr' -o $outiface -j SNAT --to-source $outip";
134 push @iface_config, "post-down $iptables -t nat -D POSTROUTING -s '$cidr' -o $outiface -j SNAT --to-source $outip";
53b2cc90 135 #add conntrack zone once on outgoing interface
645d5f4e
AD
136 push @iface_config, "post-up $iptables -t raw -I PREROUTING -i fwbr+ -j CT --zone 1";
137 push @iface_config, "post-down $iptables -t raw -D PREROUTING -i fwbr+ -j CT --zone 1";
53b2cc90
AD
138 }
139 }
7024ec2b
AD
140 }
141
63586d2f 142 push @iface_config, "hwaddress $mac" if $mac;
1de0abc0 143 push @iface_config, "bridge_ports $vxlan_iface";
63586d2f
AD
144 push @iface_config, "bridge_stp off";
145 push @iface_config, "bridge_fd 0";
146 push @iface_config, "mtu $mtu" if $mtu;
147 push @iface_config, "alias $alias" if $alias;
148 push @iface_config, "ip-forward on" if $ipv4;
149 push @iface_config, "ip6-forward on" if $ipv6;
150 push @iface_config, "arp-accept on" if $ipv4||$ipv6;
1de0abc0 151 push @iface_config, "vrf $vrf_iface" if $vrf_iface;
63586d2f
AD
152 push(@{$config->{$vnetid}}, @iface_config) if !$config->{$vnetid};
153
1de0abc0 154 if ($vrf_iface) {
63586d2f
AD
155 #vrf interface
156 @iface_config = ();
157 push @iface_config, "vrf-table auto";
d9ee9544 158 push @iface_config, "post-up ip route add vrf $vrf_iface unreachable default metric 4278198272";
1de0abc0 159 push(@{$config->{$vrf_iface}}, @iface_config) if !$config->{$vrf_iface};
63586d2f
AD
160
161 if ($vrfvxlan) {
162 #l3vni vxlan interface
1de0abc0 163 my $iface_vrf_vxlan = "vrfvx_$zoneid";
63586d2f
AD
164 @iface_config = ();
165 push @iface_config, "vxlan-id $vrfvxlan";
166 push @iface_config, "vxlan-local-tunnelip $ifaceip" if $ifaceip;
167 push @iface_config, "bridge-learning off";
168 push @iface_config, "bridge-arp-nd-suppress on";
169 push @iface_config, "mtu $mtu" if $mtu;
1de0abc0 170 push(@{$config->{$iface_vrf_vxlan}}, @iface_config) if !$config->{$iface_vrf_vxlan};
63586d2f
AD
171
172 #l3vni bridge
1de0abc0 173 my $brvrf = "vrfbr_$zoneid";
63586d2f 174 @iface_config = ();
1de0abc0 175 push @iface_config, "bridge-ports $iface_vrf_vxlan";
63586d2f
AD
176 push @iface_config, "bridge_stp off";
177 push @iface_config, "bridge_fd 0";
178 push @iface_config, "mtu $mtu" if $mtu;
1de0abc0 179 push @iface_config, "vrf $vrf_iface";
63586d2f
AD
180 push(@{$config->{$brvrf}}, @iface_config) if !$config->{$brvrf};
181 }
182 }
183
184 return $config;
185}
186
187sub on_update_hook {
a2b32a94
AD
188 my ($class, $zoneid, $zone_cfg, $controller_cfg) = @_;
189
190 # verify that controller exist
191 my $controller = $zone_cfg->{ids}->{$zoneid}->{controller};
192 if (!defined($controller_cfg->{ids}->{$controller})) {
193 die "controller $controller don't exist";
194 } else {
195 die "$controller is not a evpn controller type" if $controller_cfg->{ids}->{$controller}->{type} ne 'evpn';
196 }
63586d2f 197
7cb9714d 198 #vrf-vxlan need to be defined
a2b32a94
AD
199
200 my $vrfvxlan = $zone_cfg->{ids}->{$zoneid}->{'vrf-vxlan'};
201 # verify that vrf-vxlan is not already declared in another zone
202 foreach my $id (keys %{$zone_cfg->{ids}}) {
203 next if $id eq $zoneid;
204 die "vrf-vxlan $vrfvxlan is already declared in $id"
205 if (defined($zone_cfg->{ids}->{$id}->{'vrf-vxlan'}) && $zone_cfg->{ids}->{$id}->{'vrf-vxlan'} eq $vrfvxlan);
63586d2f 206 }
5ca07ed9 207
8313a2c0
AD
208 if (!defined($zone_cfg->{ids}->{$zoneid}->{'mac'})) {
209 my $dc = PVE::Cluster::cfs_read_file('datacenter.cfg');
210 $zone_cfg->{ids}->{$zoneid}->{'mac'} = PVE::Tools::random_ether_addr($dc->{mac_prefix});
211 }
63586d2f
AD
212}
213
1d44ce70 214
5ca07ed9 215sub vnet_update_hook {
88d9562b 216 my ($class, $vnet_cfg, $vnetid, $zone_cfg) = @_;
5ca07ed9 217
88d9562b
AD
218 my $vnet = $vnet_cfg->{ids}->{$vnetid};
219 my $tag = $vnet->{tag};
220
221 raise_param_exc({ tag => "missing vxlan tag"}) if !defined($tag);
222 raise_param_exc({ tag => "vxlan tag max value is 16777216"}) if $tag > 16777216;
223
224 # verify that tag is not already defined globally (vxlan-id are unique)
225 foreach my $id (keys %{$vnet_cfg->{ids}}) {
226 next if $id eq $vnetid;
227 my $othervnet = $vnet_cfg->{ids}->{$id};
228 my $other_tag = $othervnet->{tag};
229 my $other_zoneid = $othervnet->{zone};
230 my $other_zone = $zone_cfg->{ids}->{$other_zoneid};
231 next if $other_zone->{type} ne 'vxlan' && $other_zone->{type} ne 'evpn';
232 raise_param_exc({ tag => "vxlan tag $tag already exist in vnet $id in zone $other_zoneid "}) if $other_tag && $tag eq $other_tag;
233 }
1d44ce70
AD
234}
235
5ca07ed9 236
63586d2f
AD
2371;
238
239