From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) by lore.proxmox.com (Postfix) with ESMTPS id C06401FF13B for ; Wed, 25 Mar 2026 10:44:47 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 094EE108AD; Wed, 25 Mar 2026 10:42:51 +0100 (CET) From: Stefan Hanreich To: pve-devel@lists.proxmox.com Subject: [PATCH pve-network 05/13] api2: add route maps api module Date: Wed, 25 Mar 2026 10:41:30 +0100 Message-ID: <20260325094142.174364-20-s.hanreich@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260325094142.174364-1-s.hanreich@proxmox.com> References: <20260325094142.174364-1-s.hanreich@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1774431664396 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.568 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment POISEN_SPAM_PILL 0.1 Meta: its spam POISEN_SPAM_PILL_1 0.1 random spam to be learned in bayes POISEN_SPAM_PILL_3 0.1 random spam to be learned in bayes SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Message-ID-Hash: 2MHCGTPI2FXDUKYJGSTDOLQUTCRJVK7A X-Message-ID-Hash: 2MHCGTPI2FXDUKYJGSTDOLQUTCRJVK7A X-MailFrom: s.hanreich@proxmox.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox VE development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: Contains the following API endpoints: GET /route-maps - lists all route map entries POST /route-maps - creates a new route map entry The following commits contain the API modules for accessing specific route maps / route map entries. Signed-off-by: Stefan Hanreich --- src/PVE/API2/Network/SDN.pm | 7 ++ src/PVE/API2/Network/SDN/RouteMaps.pm | 131 ++++++++++++++++++++++++++ 2 files changed, 138 insertions(+) create mode 100644 src/PVE/API2/Network/SDN/RouteMaps.pm diff --git a/src/PVE/API2/Network/SDN.pm b/src/PVE/API2/Network/SDN.pm index d999ad0..16d1536 100644 --- a/src/PVE/API2/Network/SDN.pm +++ b/src/PVE/API2/Network/SDN.pm @@ -23,6 +23,7 @@ use PVE::API2::Network::SDN::Ipams; use PVE::API2::Network::SDN::Dns; use PVE::API2::Network::SDN::Fabrics; use PVE::API2::Network::SDN::PrefixLists; +use PVE::API2::Network::SDN::RouteMaps; use base qw(PVE::RESTHandler); @@ -61,6 +62,11 @@ __PACKAGE__->register_method({ path => 'prefix-lists', }); +__PACKAGE__->register_method({ + subclass => "PVE::API2::Network::SDN::RouteMaps", + path => 'route-maps', +}); + __PACKAGE__->register_method({ name => 'index', path => '', @@ -94,6 +100,7 @@ __PACKAGE__->register_method({ { id => 'dns' }, { id => 'fabrics' }, { id => 'prefix-lists' }, + { id => 'route-maps' }, ]; return $res; diff --git a/src/PVE/API2/Network/SDN/RouteMaps.pm b/src/PVE/API2/Network/SDN/RouteMaps.pm new file mode 100644 index 0000000..f3c3583 --- /dev/null +++ b/src/PVE/API2/Network/SDN/RouteMaps.pm @@ -0,0 +1,131 @@ +package PVE::API2::Network::SDN::RouteMaps; + +use strict; +use warnings; + +use PVE::Exception qw(raise_param_exc); +use PVE::JSONSchema qw(get_standard_option); +use PVE::Network::SDN::RouteMaps; +use PVE::Tools qw(extract_param); + +use PVE::RESTHandler; +use base qw(PVE::RESTHandler); + +__PACKAGE__->register_method({ + name => 'list_route_maps', + path => '', + method => 'GET', + permissions => { + description => + "Only returns route map entries where you have 'SDN.Audit' or 'SDN.Allocate' permissions.", + }, + description => "List Route Maps", + parameters => { + properties => { + running => { + type => 'boolean', + optional => 1, + description => "Display running config.", + }, + pending => { + type => 'boolean', + optional => 1, + description => "Display pending config.", + }, + }, + }, + returns => { + type => 'array', + items => { + type => "object", + properties => PVE::Network::SDN::RouteMaps::route_map_properties(0), + }, + links => [{ rel => 'child', href => "{route-map-id}" }], + }, + code => sub { + my ($param) = @_; + + my $pending = extract_param($param, 'pending'); + my $running = extract_param($param, 'running'); + + my $digest; + my $route_maps; + + if ($pending) { + my $current_config = PVE::Network::SDN::RouteMaps::config()->list(); + my $running_config = PVE::Network::SDN::RouteMaps::config(1)->list(); + + my $pending_route_maps = PVE::Network::SDN::pending_config( + $running_config, + $current_config, + 'route-maps', + ); + + $digest = $current_config->digest(); + $route_maps = $pending_route_maps->{ids} + } elsif ($running) { + $route_maps = PVE::Network::SDN::RouteMaps::config(1)->list(); + } else { + my $current_config = PVE::Network::SDN::RouteMaps::config(); + + $digest = $current_config->digest(); + $route_maps = $current_config->list(); + } + + my $rpcenv = PVE::RPCEnvironment::get(); + my $authuser = $rpcenv->get_user(); + my $route_map_privs = ['SDN.Audit', 'SDN.Allocate']; + + my @res; + for my $route_map_id (sort keys $route_maps->%*) { + next if !$rpcenv->check_any($authuser, "/route-maps/$route_map_id", $route_map_privs, 1); + $route_maps->{$route_map_id}->{digest} = $digest if $digest; + push @res, $route_maps->{$route_map_id}; + } + + return \@res; + }, +}); + +__PACKAGE__->register_method({ + name => 'create_route_map_entry', + path => '', + method => 'POST', + permissions => { + check => ['perm', '/sdn/route-maps', ['SDN.Allocate']], + }, + description => "Create Route Map entry", + parameters => { + properties => { + digest => get_standard_option('pve-config-digest'), + 'lock-token' => get_standard_option('pve-sdn-lock-token'), + PVE::Network::SDN::RouteMaps::route_map_properties(0)->%*, + }, + }, + returns => { + type => "null", + }, + code => sub { + my ($param) = @_; + + my $lock_token = extract_param($param, 'lock-token'); + + PVE::Network::SDN::lock_sdn_config( + sub { + my $config = PVE::Network::SDN::RouteMaps::config(); + + my $digest = extract_param($param, 'digest'); + PVE::Tools::assert_if_modified($config->digest(), $digest) if $digest; + + $config->create($param); + PVE::Network::SDN::RouteMaps::write_config($config); + }, + "creating route map entry failed", + $lock_token, + ); + + return; + }, +}); + +1; -- 2.47.3