]> git.proxmox.com Git - pve-network.git/blame - PVE/Network/SDN/Controllers/EvpnPlugin.pm
controllers: evpn/bgp : add exitnodes-primary && rework route-map
[pve-network.git] / PVE / Network / SDN / Controllers / EvpnPlugin.pm
CommitLineData
fa253735 1package PVE::Network::SDN::Controllers::EvpnPlugin;
32602a38
AD
2
3use strict;
4use warnings;
cdf2c819 5
074d270b
AD
6use PVE::INotify;
7use PVE::JSONSchema qw(get_standard_option);
cdf2c819
TL
8use PVE::Tools qw(run_command file_set_contents file_get_contents);
9
10use PVE::Network::SDN::Controllers::Plugin;
1f543c5f 11use PVE::Network::SDN::Zones::Plugin;
f23633dc 12use Net::IP;
cdf2c819 13
f5eabba0 14use base('PVE::Network::SDN::Controllers::Plugin');
32602a38
AD
15
16sub type {
fa253735 17 return 'evpn';
8fb1ee7f
AD
18}
19
32602a38
AD
20sub properties {
21 return {
92526f0e
TL
22 asn => {
23 type => 'integer',
24 description => "autonomous system number",
9e6b99fd
AD
25 minimum => 0,
26 maximum => 4294967296
92526f0e
TL
27 },
28 peers => {
29 description => "peers address list.",
30 type => 'string', format => 'ip-list'
31 },
32602a38
AD
32 };
33}
34
35sub options {
32602a38 36 return {
92526f0e
TL
37 'asn' => { optional => 0 },
38 'peers' => { optional => 0 },
32602a38
AD
39 };
40}
41
42# Plugin implementation
8fb1ee7f 43sub generate_controller_config {
f23633dc 44 my ($class, $plugin_config, $controller_cfg, $id, $uplinks, $config) = @_;
32602a38 45
3caa7687
FG
46 my @peers;
47 @peers = PVE::Tools::split_list($plugin_config->{'peers'}) if $plugin_config->{'peers'};
32602a38 48
f23633dc
AD
49 my $local_node = PVE::INotify::nodename();
50
074d270b 51 my $asn = $plugin_config->{asn};
f23633dc
AD
52 my $ebgp = undef;
53 my $loopback = undef;
54 my $autortas = undef;
55 my $bgprouter = find_bgp_controller($local_node, $controller_cfg);
56 if($bgprouter) {
57 $ebgp = 1 if $plugin_config->{'asn'} ne $bgprouter->{asn};
58 $loopback = $bgprouter->{loopback} if $bgprouter->{loopback};
59 $asn = $bgprouter->{asn} if $bgprouter->{asn};
60 $autortas = $plugin_config->{'asn'} if $ebgp;
61 }
074d270b
AD
62
63 return if !$asn;
32602a38 64
92526f0e
TL
65 my $bgp = $config->{frr}->{router}->{"bgp $asn"} //= {};
66
f23633dc 67 my ($ifaceip, $interface) = PVE::Network::SDN::Zones::Plugin::find_local_ip_interface_peers(\@peers, $loopback);
32602a38 68
f23633dc 69 my $remoteas = $ebgp ? "external" : $asn;
17854295 70
f23633dc 71 #global options
92526f0e
TL
72 my @controller_config = (
73 "bgp router-id $ifaceip",
74 "no bgp default ipv4-unicast",
75 "coalesce-time 1000",
76 );
32602a38 77
f23633dc
AD
78 push(@{$bgp->{""}}, @controller_config) if keys %{$bgp} == 0;
79
80 @controller_config = ();
81
82 #VTEP neighbors
83 push @controller_config, "neighbor VTEP peer-group";
84 push @controller_config, "neighbor VTEP remote-as $remoteas";
85 push @controller_config, "neighbor VTEP bfd";
86
87 if($ebgp && $loopback) {
88 push @controller_config, "neighbor VTEP ebgp-multihop 10";
89 push @controller_config, "neighbor VTEP update-source $loopback";
90 }
91
92 # VTEP peers
32602a38
AD
93 foreach my $address (@peers) {
94 next if $address eq $ifaceip;
f23633dc 95 push @controller_config, "neighbor $address peer-group VTEP";
7d35eaf5 96 }
074d270b 97
92526f0e 98 push(@{$bgp->{""}}, @controller_config);
074d270b 99
f23633dc 100 # address-family l2vpn
56cdcac9 101 @controller_config = ();
847f5144 102 push @controller_config, "neighbor VTEP route-map MAP_VTEP_OUT out";
f23633dc 103 push @controller_config, "neighbor VTEP activate";
56cdcac9 104 push @controller_config, "advertise-all-vni";
f23633dc 105 push @controller_config, "autort as $autortas" if $autortas;
92526f0e 106 push(@{$bgp->{"address-family"}->{"l2vpn evpn"}}, @controller_config);
32602a38 107
847f5144
AD
108 push(@{$config->{frr_routemap}->{'MAP_VTEP_OUT'}}, []);
109
32602a38
AD
110 return $config;
111}
112
56cdcac9 113sub generate_controller_zone_config {
f23633dc
AD
114 my ($class, $plugin_config, $controller, $controller_cfg, $id, $uplinks, $config) = @_;
115
116 my $local_node = PVE::INotify::nodename();
0589eb09 117
1de0abc0 118 my $vrf = "vrf_$id";
0589eb09 119 my $vrfvxlan = $plugin_config->{'vrf-vxlan'};
f23633dc 120 my $exitnodes = $plugin_config->{'exitnodes'};
847f5144 121 my $exitnodes_primary = $plugin_config->{'exitnodes-primary'};
92d8effb 122 my $advertisesubnets = $plugin_config->{'advertise-subnets'};
3d135423 123 my $exitnodes_local_routing = $plugin_config->{'exitnodes-local-routing'};
f23633dc 124
56cdcac9 125 my $asn = $controller->{asn};
f23633dc
AD
126 my $ebgp = undef;
127 my $loopback = undef;
128 my $autortas = undef;
129 my $bgprouter = find_bgp_controller($local_node, $controller_cfg);
130 if($bgprouter) {
131 $ebgp = 1 if $controller->{'asn'} ne $bgprouter->{asn};
132 $loopback = $bgprouter->{loopback} if $bgprouter->{loopback};
133 $asn = $bgprouter->{asn} if $bgprouter->{asn};
134 $autortas = $controller->{'asn'} if $ebgp;
135 }
0589eb09
AD
136
137 return if !$vrf || !$vrfvxlan || !$asn;
138
92526f0e 139 # vrf
56cdcac9
AD
140 my @controller_config = ();
141 push @controller_config, "vni $vrfvxlan";
142 push(@{$config->{frr}->{vrf}->{"$vrf"}}, @controller_config);
0589eb09 143
f23633dc
AD
144 #main vrf router
145 @controller_config = ();
146 push @controller_config, "no bgp ebgp-requires-policy" if $ebgp;
147# push @controller_config, "!";
148 push(@{$config->{frr}->{router}->{"bgp $asn vrf $vrf"}->{""}}, @controller_config);
659c27c2 149
f23633dc
AD
150 if ($autortas) {
151 push(@{$config->{frr}->{router}->{"bgp $asn vrf $vrf"}->{"address-family"}->{"l2vpn evpn"}}, "route-target import $autortas:$vrfvxlan");
152 push(@{$config->{frr}->{router}->{"bgp $asn vrf $vrf"}->{"address-family"}->{"l2vpn evpn"}}, "route-target export $autortas:$vrfvxlan");
153 }
0589eb09 154
b634e577
AD
155 my $is_gateway = $exitnodes->{$local_node};
156
0589eb09
AD
157 if ($is_gateway) {
158
847f5144
AD
159 if($exitnodes_primary && $exitnodes_primary ne $local_node) {
160 my $routemap_config = ();
161 push @{$routemap_config}, "match evpn vni $vrfvxlan";
162 push @{$routemap_config}, "match evpn route-type prefix";
163 push @{$routemap_config}, "set metric 200";
164 unshift(@{$config->{frr_routemap}->{'MAP_VTEP_OUT'}}, $routemap_config);
165 }
166
3d135423
AD
167 if (!$exitnodes_local_routing) {
168 @controller_config = ();
169 #import /32 routes of evpn network from vrf1 to default vrf (for packet return)
170 push @controller_config, "import vrf $vrf";
171 push(@{$config->{frr}->{router}->{"bgp $asn"}->{"address-family"}->{"ipv4 unicast"}}, @controller_config);
172 push(@{$config->{frr}->{router}->{"bgp $asn"}->{"address-family"}->{"ipv6 unicast"}}, @controller_config);
0589eb09 173
3d135423
AD
174 @controller_config = ();
175 #redistribute connected to be able to route to local vms on the gateway
176 push @controller_config, "redistribute connected";
177 push(@{$config->{frr}->{router}->{"bgp $asn vrf $vrf"}->{"address-family"}->{"ipv4 unicast"}}, @controller_config);
178 push(@{$config->{frr}->{router}->{"bgp $asn vrf $vrf"}->{"address-family"}->{"ipv6 unicast"}}, @controller_config);
179 }
0589eb09 180
56cdcac9 181 @controller_config = ();
0589eb09 182 #add default originate to announce 0.0.0.0/0 type5 route in evpn
56cdcac9
AD
183 push @controller_config, "default-originate ipv4";
184 push @controller_config, "default-originate ipv6";
185 push(@{$config->{frr}->{router}->{"bgp $asn vrf $vrf"}->{"address-family"}->{"l2vpn evpn"}}, @controller_config);
92d8effb
AD
186 } elsif ($advertisesubnets) {
187
188 @controller_config = ();
189 #redistribute connected networks
190 push @controller_config, "redistribute connected";
191 push(@{$config->{frr}->{router}->{"bgp $asn vrf $vrf"}->{"address-family"}->{"ipv4 unicast"}}, @controller_config);
192 push(@{$config->{frr}->{router}->{"bgp $asn vrf $vrf"}->{"address-family"}->{"ipv6 unicast"}}, @controller_config);
193
194 @controller_config = ();
195 #advertise connected networks type5 route in evpn
196 push @controller_config, "advertise ipv4 unicast";
197 push @controller_config, "advertise ipv6 unicast";
198 push(@{$config->{frr}->{router}->{"bgp $asn vrf $vrf"}->{"address-family"}->{"l2vpn evpn"}}, @controller_config);
0589eb09
AD
199 }
200
201 return $config;
202}
203
3d135423
AD
204sub generate_controller_vnet_config {
205 my ($class, $plugin_config, $controller, $zone, $zoneid, $vnetid, $config) = @_;
206
207 my $exitnodes = $zone->{'exitnodes'};
208 my $exitnodes_local_routing = $zone->{'exitnodes-local-routing'};
209
210 return if !$exitnodes_local_routing;
211
212 my $local_node = PVE::INotify::nodename();
213 my $is_gateway = $exitnodes->{$local_node};
214
215 return if !$is_gateway;
216
217 my $subnets = PVE::Network::SDN::Vnets::get_subnets($vnetid, 1);
218 my @controller_config = ();
219 foreach my $subnetid (sort keys %{$subnets}) {
220 my $subnet = $subnets->{$subnetid};
221 my $cidr = $subnet->{cidr};
222 push @controller_config, "ip route $cidr 10.255.255.2 xvrf_$zoneid";
223 }
224 push(@{$config->{frr}->{''}}, @controller_config);
225}
226
32602a38 227sub on_delete_hook {
56cdcac9 228 my ($class, $controllerid, $zone_cfg) = @_;
32602a38 229
56cdcac9
AD
230 # verify that zone is associated to this controller
231 foreach my $id (keys %{$zone_cfg->{ids}}) {
92526f0e
TL
232 my $zone = $zone_cfg->{ids}->{$id};
233 die "controller $controllerid is used by $id"
234 if (defined($zone->{controller}) && $zone->{controller} eq $controllerid);
5bda8607 235 }
32602a38
AD
236}
237
238sub on_update_hook {
56cdcac9 239 my ($class, $controllerid, $controller_cfg) = @_;
5bda8607 240
c7bb4ac5
AD
241 # we can only have 1 evpn controller / 1 asn by server
242
f23633dc 243 my $controllernb = 0;
56cdcac9
AD
244 foreach my $id (keys %{$controller_cfg->{ids}}) {
245 next if $id eq $controllerid;
92526f0e 246 my $controller = $controller_cfg->{ids}->{$id};
f23633dc
AD
247 next if $controller->{type} ne "evpn";
248 $controllernb++;
249 die "only 1 global evpn controller can be defined" if $controllernb > 1;
250 }
251}
252
253sub find_bgp_controller {
254 my ($nodename, $controller_cfg) = @_;
255
256 my $controller = undef;
257 foreach my $id (keys %{$controller_cfg->{ids}}) {
258 $controller = $controller_cfg->{ids}->{$id};
259 next if $controller->{type} ne 'bgp';
260 next if $controller->{node} ne $nodename;
261 last;
5bda8607 262 }
f23633dc
AD
263
264 return $controller;
32602a38
AD
265}
266
f23633dc 267
8fb1ee7f
AD
268sub sort_frr_config {
269 my $order = {};
270 $order->{''} = 0;
271 $order->{'vrf'} = 1;
272 $order->{'ipv4 unicast'} = 1;
273 $order->{'ipv6 unicast'} = 2;
274 $order->{'l2vpn evpn'} = 3;
275
276 my $a_val = 100;
277 my $b_val = 100;
278
279 $a_val = $order->{$a} if defined($order->{$a});
280 $b_val = $order->{$b} if defined($order->{$b});
281
92526f0e 282 if ($a =~ /bgp (\d+)$/) {
8fb1ee7f
AD
283 $a_val = 2;
284 }
285
92526f0e 286 if ($b =~ /bgp (\d+)$/) {
8fb1ee7f
AD
287 $b_val = 2;
288 }
289
290 return $a_val <=> $b_val;
291}
292
293sub generate_frr_recurse{
294 my ($final_config, $content, $parentkey, $level) = @_;
295
296 my $keylist = {};
297 $keylist->{vrf} = 1;
298 $keylist->{'address-family'} = 1;
299 $keylist->{router} = 1;
300
301 my $exitkeylist = {};
302 $exitkeylist->{vrf} = 1;
303 $exitkeylist->{'address-family'} = 1;
304
92526f0e 305 # FIXME: make this generic
8fb1ee7f 306 my $paddinglevel = undef;
92526f0e
TL
307 if ($level == 1 || $level == 2) {
308 $paddinglevel = $level - 1;
8fb1ee7f 309 } elsif ($level == 3 || $level == 4) {
92526f0e 310 $paddinglevel = $level - 2;
8fb1ee7f
AD
311 }
312
313 my $padding = "";
314 $padding = ' ' x ($paddinglevel) if $paddinglevel;
315
92526f0e 316 if (ref $content eq 'HASH') {
8fb1ee7f
AD
317 foreach my $key (sort sort_frr_config keys %$content) {
318 if ($parentkey && defined($keylist->{$parentkey})) {
92526f0e
TL
319 push @{$final_config}, $padding."!";
320 push @{$final_config}, $padding."$parentkey $key";
321 } elsif ($key ne '' && !defined($keylist->{$key})) {
322 push @{$final_config}, $padding."$key";
8fb1ee7f
AD
323 }
324
325 my $option = $content->{$key};
326 generate_frr_recurse($final_config, $option, $key, $level+1);
327
328 push @{$final_config}, $padding."exit-$parentkey" if $parentkey && defined($exitkeylist->{$parentkey});
329 }
330 }
32602a38 331
8fb1ee7f 332 if (ref $content eq 'ARRAY') {
92526f0e 333 push @{$final_config}, map { $padding . "$_" } @$content;
8fb1ee7f
AD
334 }
335}
336
847f5144
AD
337sub generate_frr_routemap {
338 my ($final_config, $routemaps) = @_;
339
340 foreach my $id (sort keys %$routemaps) {
341
342 my $routemap = $routemaps->{$id};
343 my $order = 0;
344 foreach my $seq (@$routemap) {
345 $order++;
346 my @config = ();
347 push @config, "!";
348 push @config, "route-map $id permit $order";
349 push @config, map { " $_" } @$seq;
350 push @{$final_config}, @config;
351 }
352 }
353}
9cef13e9 354sub generate_controller_rawconfig {
8fb1ee7f
AD
355 my ($class, $plugin_config, $config) = @_;
356
659c27c2
AD
357 my $nodename = PVE::INotify::nodename();
358
8fb1ee7f
AD
359 my $final_config = [];
360 push @{$final_config}, "log syslog informational";
659c27c2
AD
361 push @{$final_config}, "ip forwarding";
362 push @{$final_config}, "ipv6 forwarding";
67a0f815 363 push @{$final_config}, "frr defaults datacenter";
659c27c2
AD
364 push @{$final_config}, "service integrated-vtysh-config";
365 push @{$final_config}, "hostname $nodename";
8fb1ee7f
AD
366 push @{$final_config}, "!";
367
0d1ab7dc 368 if (-e "/etc/frr/frr.conf.local") {
0d1ab7dc 369 generate_frr_recurse($final_config, $config->{frr}->{vrf}, "vrf", 1);
847f5144 370 generate_frr_routemap($final_config, $config->{frr_routemap});
0d1ab7dc
AD
371 push @{$final_config}, "!";
372
cdf2c819
TL
373 my $local_conf = file_get_contents("/etc/frr/frr.conf.local");
374 chomp ($local_conf);
375 push @{$final_config}, $local_conf;
0d1ab7dc
AD
376 } else {
377 generate_frr_recurse($final_config, $config->{frr}, undef, 0);
847f5144 378 generate_frr_routemap($final_config, $config->{frr_routemap});
0d1ab7dc 379 }
8fb1ee7f
AD
380
381 push @{$final_config}, "!";
382 push @{$final_config}, "line vty";
383 push @{$final_config}, "!";
384
385 my $rawconfig = join("\n", @{$final_config});
386
9cef13e9
AD
387 return if !$rawconfig;
388 return $rawconfig;
389}
390
391sub write_controller_config {
392 my ($class, $plugin_config, $config) = @_;
393
394 my $rawconfig = $class->generate_controller_rawconfig($plugin_config, $config);
8fb1ee7f
AD
395 return if !$rawconfig;
396 return if !-d "/etc/frr";
397
cdf2c819 398 file_set_contents("/etc/frr/frr.conf", $rawconfig);
8fb1ee7f
AD
399}
400
fa609bdd
AD
401sub reload_controller {
402 my ($class) = @_;
403
404 my $conf_file = "/etc/frr/frr.conf";
659c27c2
AD
405 my $bin_path = "/usr/lib/frr/frr-reload.py";
406
407 if (!-e $bin_path) {
408 warn "missing $bin_path. Please install frr-pythontools package";
409 return;
410 }
fa609bdd
AD
411
412 my $err = sub {
413 my $line = shift;
659c27c2
AD
414 if ($line =~ /ERROR:/) {
415 warn "$line \n";
fa609bdd
AD
416 }
417 };
418
419 if (-e $conf_file && -e $bin_path) {
cdf2c819 420 run_command([$bin_path, '--stdout', '--reload', $conf_file], outfunc => {}, errfunc => $err);
fa609bdd
AD
421 }
422}
423
8fb1ee7f 4241;
32602a38 425
0589eb09 426