]> git.proxmox.com Git - pve-network.git/blame - PVE/Network/SDN/Zones.pm
sdn: add generate controller/zone config helpers
[pve-network.git] / PVE / Network / SDN / Zones.pm
CommitLineData
f5eabba0
AD
1package PVE::Network::SDN::Zones;
2
3use strict;
4use warnings;
5
6use Data::Dumper;
7use JSON;
8
9use PVE::Tools qw(extract_param dir_glob_regex run_command);
10use PVE::Cluster qw(cfs_read_file cfs_write_file cfs_lock_file);
eb1549e7 11use PVE::Network;
f5eabba0
AD
12
13use PVE::Network::SDN::Vnets;
14use PVE::Network::SDN::Zones::VlanPlugin;
15use PVE::Network::SDN::Zones::QinQPlugin;
16use PVE::Network::SDN::Zones::VxlanPlugin;
17use PVE::Network::SDN::Zones::EvpnPlugin;
18use PVE::Network::SDN::Zones::FaucetPlugin;
19use PVE::Network::SDN::Zones::Plugin;
20
21PVE::Network::SDN::Zones::VlanPlugin->register();
22PVE::Network::SDN::Zones::QinQPlugin->register();
23PVE::Network::SDN::Zones::VxlanPlugin->register();
24PVE::Network::SDN::Zones::EvpnPlugin->register();
25PVE::Network::SDN::Zones::FaucetPlugin->register();
26PVE::Network::SDN::Zones::Plugin->init();
27
0814c9a9 28my $local_network_sdn_file = "/etc/network/interfaces.d/sdn";
f5eabba0
AD
29
30sub sdn_zones_config {
31 my ($cfg, $id, $noerr) = @_;
32
33 die "no sdn zone ID specified\n" if !$id;
34
35 my $scfg = $cfg->{ids}->{$id};
b2d83056 36 die "sdn '$id' does not exist\n" if (!$noerr && !$scfg);
f5eabba0
AD
37
38 return $scfg;
39}
40
41sub config {
f703d2ae 42 my $config = cfs_read_file("sdn/zones.cfg");
f5eabba0
AD
43 return $config;
44}
45
41d40fb1
TL
46sub get_plugin_config {
47 my ($vnet) = @_;
48 my $zoneid = $vnet->{zone};
49 my $zone_cfg = PVE::Network::SDN::Zones::config();
50 return $zone_cfg->{ids}->{$zoneid};
51}
52
f5eabba0
AD
53sub write_config {
54 my ($cfg) = @_;
55
f703d2ae 56 cfs_write_file("sdn/zones.cfg", $cfg);
f5eabba0
AD
57}
58
f5eabba0
AD
59sub sdn_zones_ids {
60 my ($cfg) = @_;
61
62 return keys %{$cfg->{ids}};
63}
64
65sub complete_sdn_zone {
66 my ($cmdname, $pname, $cvalue) = @_;
67
68 my $cfg = PVE::Network::SDN::config();
69
70 return $cmdname eq 'add' ? [] : [ PVE::Network::SDN::sdn_zones_ids($cfg) ];
71}
72
73
74sub generate_etc_network_config {
75
0814c9a9 76 my $version = PVE::Cluster::cfs_read_file('sdn/.version');
f5eabba0 77 my $vnet_cfg = PVE::Cluster::cfs_read_file('sdn/vnets.cfg');
56cdcac9 78 my $zone_cfg = PVE::Cluster::cfs_read_file('sdn/zones.cfg');
4405f2de 79 my $controller_cfg = PVE::Cluster::cfs_read_file('sdn/controllers.cfg');
56cdcac9 80 return if !$vnet_cfg && !$zone_cfg;
f5eabba0 81
ba7ac021 82 my $interfaces_config = PVE::INotify::read_file('interfaces');
f5eabba0
AD
83
84 #generate configuration
85 my $config = {};
c2b9c173
AD
86 my $nodename = PVE::INotify::nodename();
87
e0c19383 88 for my $id (sort keys %{$vnet_cfg->{ids}}) {
f5eabba0 89 my $vnet = $vnet_cfg->{ids}->{$id};
3fd3e917 90 my $zone = $vnet->{zone};
f5eabba0 91
e0c19383
TL
92 if (!$zone) {
93 warn "can't generate vnet '$id': no zone assigned!\n";
f5eabba0
AD
94 next;
95 }
96
56cdcac9 97 my $plugin_config = $zone_cfg->{ids}->{$zone};
f5eabba0
AD
98
99 if (!defined($plugin_config)) {
e0c19383 100 warn "can't generate vnet '$id': zone $zone don't exist\n";
f5eabba0
AD
101 next;
102 }
103
c2b9c173
AD
104 next if defined($plugin_config->{nodes}) && !$plugin_config->{nodes}->{$nodename};
105
e0c19383
TL
106 my $controller;
107 if (my $controllerid = $plugin_config->{controller}) {
108 $controller = $controller_cfg->{ids}->{$controllerid};
4405f2de
AD
109 }
110
f5eabba0 111 my $plugin = PVE::Network::SDN::Zones::Plugin->lookup($plugin_config->{type});
ae3f4de8
AD
112 eval {
113 $plugin->generate_sdn_config($plugin_config, $zone, $id, $vnet, $controller, $interfaces_config, $config);
114 };
cd01a0c0
TL
115 if (my $err = $@) {
116 warn "zone $zone : vnet $id : $err\n";
ae3f4de8
AD
117 next;
118 }
f5eabba0
AD
119 }
120
0814c9a9 121 my $raw_network_config = "\#version:$version\n";
2d4c068e 122 foreach my $iface (sort keys %$config) {
f5eabba0
AD
123 $raw_network_config .= "\n";
124 $raw_network_config .= "auto $iface\n";
125 $raw_network_config .= "iface $iface\n";
126 foreach my $option (@{$config->{$iface}}) {
127 $raw_network_config .= "\t$option\n";
128 }
129 }
130
131 return $raw_network_config;
132}
133
134sub write_etc_network_config {
135 my ($rawconfig) = @_;
136
137 return if !$rawconfig;
f5eabba0 138
0814c9a9 139 my $writefh = IO::File->new($local_network_sdn_file,">");
f5eabba0
AD
140 print $writefh $rawconfig;
141 $writefh->close();
142}
143
0814c9a9
AD
144sub read_etc_network_config_version {
145 my $versionstr = PVE::Tools::file_read_firstline($local_network_sdn_file);
06c87086
SI
146
147 return if !defined($versionstr);
148
0814c9a9
AD
149 if ($versionstr =~ m/^\#version:(\d+)$/) {
150 return $1;
151 }
152}
153
f5eabba0
AD
154sub ifquery_check {
155
156 my $cmd = ['ifquery', '-a', '-c', '-o','json'];
157
158 my $result = '';
159 my $reader = sub { $result .= shift };
160
161 eval {
162 run_command($cmd, outfunc => $reader);
163 };
164
165 my $resultjson = decode_json($result);
166 my $interfaces = {};
167
168 foreach my $interface (@$resultjson) {
169 my $name = $interface->{name};
170 $interfaces->{$name} = {
171 status => $interface->{status},
172 config => $interface->{config},
173 config_status => $interface->{config_status},
174 };
175 }
176
177 return $interfaces;
178}
179
180# improve me : move status code inside plugins ?
181sub status {
182
f5eabba0
AD
183 my $err_config = undef;
184
6f4d0610
AD
185 my $local_version = PVE::Network::SDN::Zones::read_etc_network_config_version();
186 my $sdn_version = PVE::Cluster::cfs_read_file('sdn/.version');
f5eabba0 187
6f4d0610 188 return if !$sdn_version;
3709a203 189
6f4d0610 190 if (!$local_version) {
3709a203 191 $err_config = "local sdn network configuration is not yet generated, please reload";
6933ca89 192 warn "$err_config\n";
6f4d0610
AD
193 } elsif ($local_version < $sdn_version) {
194 $err_config = "local sdn network configuration is too old, please reload";
195 warn "$err_config\n";
f5eabba0
AD
196 }
197
198 my $status = ifquery_check();
199
200 my $vnet_cfg = PVE::Cluster::cfs_read_file('sdn/vnets.cfg');
c2b9c173
AD
201 my $zone_cfg = PVE::Cluster::cfs_read_file('sdn/zones.cfg');
202 my $nodename = PVE::INotify::nodename();
f5eabba0 203
627b1694 204
f5eabba0 205 my $vnet_status = {};
56cdcac9 206 my $zone_status = {};
f5eabba0 207
70da0442
TL
208 foreach my $id (sort keys %{$vnet_cfg->{ids}}) {
209 my $vnet = $vnet_cfg->{ids}->{$id};
210 my $zone = $vnet->{zone};
627b1694 211 next if !$zone;
627b1694 212
70da0442
TL
213 my $plugin_config = $zone_cfg->{ids}->{$zone};
214 next if defined($plugin_config->{nodes}) && !$plugin_config->{nodes}->{$nodename};
215
216 my $plugin = PVE::Network::SDN::Zones::Plugin->lookup($plugin_config->{type});
217 $plugin->status($plugin_config, $zone, $id, $vnet, $err_config, $status, $vnet_status, $zone_status);
f5eabba0 218 }
627b1694 219
56cdcac9 220 return($zone_status, $vnet_status);
f5eabba0
AD
221}
222
eb1549e7
AD
223sub tap_create {
224 my ($iface, $bridge) = @_;
225
226 my $vnet = PVE::Network::SDN::Vnets::get_vnet($bridge);
a1ef0eb9 227 if (!$vnet) { # fallback for classic bridge
eb1549e7 228 PVE::Network::tap_create($iface, $bridge);
a1ef0eb9 229 return;
eb1549e7
AD
230 }
231
41d40fb1 232 my $plugin_config = get_plugin_config($vnet);
eb1549e7
AD
233 my $plugin = PVE::Network::SDN::Zones::Plugin->lookup($plugin_config->{type});
234 $plugin->tap_create($plugin_config, $vnet, $iface, $bridge);
235}
236
237sub veth_create {
238 my ($veth, $vethpeer, $bridge, $hwaddr) = @_;
239
240 my $vnet = PVE::Network::SDN::Vnets::get_vnet($bridge);
a1ef0eb9 241 if (!$vnet) { # fallback for classic bridge
eb1549e7 242 PVE::Network::veth_create($veth, $vethpeer, $bridge, $hwaddr);
a1ef0eb9 243 return;
eb1549e7
AD
244 }
245
41d40fb1 246 my $plugin_config = get_plugin_config($vnet);
eb1549e7
AD
247 my $plugin = PVE::Network::SDN::Zones::Plugin->lookup($plugin_config->{type});
248 $plugin->veth_create($plugin_config, $vnet, $veth, $vethpeer, $bridge, $hwaddr);
249}
250
251sub tap_plug {
252 my ($iface, $bridge, $tag, $firewall, $trunks, $rate) = @_;
253
254 my $vnet = PVE::Network::SDN::Vnets::get_vnet($bridge);
a1ef0eb9 255 if (!$vnet) { # fallback for classic bridge
eb1549e7
AD
256 PVE::Network::tap_plug($iface, $bridge, $tag, $firewall, $trunks, $rate);
257 return;
258 }
259
41d40fb1 260 my $plugin_config = get_plugin_config($vnet);
eb1549e7
AD
261 my $nodename = PVE::INotify::nodename();
262
41d40fb1
TL
263 die "vnet $bridge is not allowed on this node\n"
264 if $plugin_config->{nodes} && !defined($plugin_config->{nodes}->{$nodename});
2ba9613b 265
2ba9613b 266 my $plugin = PVE::Network::SDN::Zones::Plugin->lookup($plugin_config->{type});
912fb443 267 $plugin->tap_plug($plugin_config, $vnet, $tag, $iface, $bridge, $firewall, $trunks, $rate);
2ba9613b
AD
268}
269
f5eabba0
AD
2701;
271