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 E29421FF13A for ; Wed, 01 Apr 2026 16:43:34 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 82C2532D4B; Wed, 1 Apr 2026 16:41:15 +0200 (CEST) From: Stefan Hanreich To: pve-devel@lists.proxmox.com Subject: [PATCH pve-network v2 25/34] api2: add route map module Date: Wed, 1 Apr 2026 16:39:34 +0200 Message-ID: <20260401143957.386809-26-s.hanreich@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260401143957.386809-1-s.hanreich@proxmox.com> References: <20260401143957.386809-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: 1775054349486 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.555 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: PASOC2ACTKPM6DMOXCHARQKGZZ55ISTH X-Message-ID-Hash: PASOC2ACTKPM6DMOXCHARQKGZZ55ISTH 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: This module contains the following API endpoint: GET /route-maps/ - lists all route map entries for the route map Signed-off-by: Stefan Hanreich --- src/PVE/API2/Network/SDN/RouteMaps.pm | 6 ++ .../API2/Network/SDN/RouteMaps/RouteMap.pm | 87 +++++++++++++++++++ 2 files changed, 93 insertions(+) create mode 100644 src/PVE/API2/Network/SDN/RouteMaps/RouteMap.pm diff --git a/src/PVE/API2/Network/SDN/RouteMaps.pm b/src/PVE/API2/Network/SDN/RouteMaps.pm index 8fa8c71..8c3a0b8 100644 --- a/src/PVE/API2/Network/SDN/RouteMaps.pm +++ b/src/PVE/API2/Network/SDN/RouteMaps.pm @@ -3,6 +3,7 @@ package PVE::API2::Network::SDN::RouteMaps; use strict; use warnings; +use PVE::API2::Network::SDN::RouteMaps::RouteMap; use PVE::Exception qw(raise_param_exc); use PVE::JSONSchema qw(get_standard_option); use PVE::Network::SDN::RouteMaps; @@ -11,6 +12,11 @@ use PVE::Tools qw(extract_param); use PVE::RESTHandler; use base qw(PVE::RESTHandler); +__PACKAGE__->register_method({ + subclass => "PVE::API2::Network::SDN::RouteMaps::RouteMap", + path => '{route-map-id}', +}); + __PACKAGE__->register_method({ name => 'list_route_maps', path => '', diff --git a/src/PVE/API2/Network/SDN/RouteMaps/RouteMap.pm b/src/PVE/API2/Network/SDN/RouteMaps/RouteMap.pm new file mode 100644 index 0000000..2dbea09 --- /dev/null +++ b/src/PVE/API2/Network/SDN/RouteMaps/RouteMap.pm @@ -0,0 +1,87 @@ +package PVE::API2::Network::SDN::RouteMaps::RouteMap; + +use strict; +use warnings; + +use PVE::JSONSchema qw(get_standard_option); +use PVE::Exception qw(raise_param_exc); +use PVE::Tools qw(extract_param); + +use PVE::RESTHandler; +use base qw(PVE::RESTHandler); + +__PACKAGE__->register_method({ + name => 'list_route_map_entries', + path => '', + method => 'GET', + permissions => { + check => + ['perm', '/sdn/route-maps/{route-map-id}', ['SDN.Audit', 'SDN.Allocate'], any => 1], + }, + description => "List all entries for a given Route Map", + parameters => { + properties => { + 'route-map-id' => get_standard_option('pve-sdn-route-map-id'), + 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 => "{order}" }], + }, + code => sub { + my ($param) = @_; + + my $pending = extract_param($param, 'pending'); + my $running = extract_param($param, 'running'); + my $route_map_id = extract_param($param, 'route-map-id'); + + my $digest; + my $route_map_entries; + + if ($pending) { + my $current_config = PVE::Network::SDN::RouteMaps::config(); + my $running_config = PVE::Network::SDN::RouteMaps::config(1); + + my $pending_route_maps = PVE::Network::SDN::pending_config( + { 'route-maps' => { ids => $running_config->list() } }, + { ids => $current_config->list() }, + 'route-maps', + ); + + $digest = $current_config->digest(); + $route_map_entries = $pending_route_maps->{ids}; + } elsif ($running) { + $route_map_entries = + PVE::Network::SDN::RouteMaps::config(1)->list_route_map($route_map_id); + } else { + my $current_config = PVE::Network::SDN::RouteMaps::config(); + + $digest = $current_config->digest(); + $route_map_entries = $current_config->list_route_map($route_map_id); + } + + my @res; + for my $route_map_id (sort keys $route_map_entries->%*) { + $route_map_entries->{$route_map_id}->{digest} = $digest if $digest; + push @res, $route_map_entries->{$route_map_id}; + } + + return \@res; + }, +}); + +1; -- 2.47.3