From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [IPv6:2a01:7e0:0:424::9]) by lore.proxmox.com (Postfix) with ESMTPS id DBEEF1FF13B for ; Wed, 25 Mar 2026 10:44:38 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id B525C10794; Wed, 25 Mar 2026 10:42:49 +0100 (CET) From: Stefan Hanreich To: pve-devel@lists.proxmox.com Subject: [PATCH pve-network 06/13] api2: add route map module Date: Wed, 25 Mar 2026 10:41:31 +0100 Message-ID: <20260325094142.174364-21-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: 1774431664457 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.569 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: XHWJXODXSC72DCV4X5XNJXSDFTJ2UXZ5 X-Message-ID-Hash: XHWJXODXSC72DCV4X5XNJXSDFTJ2UXZ5 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 | 86 +++++++++++++++++++ 2 files changed, 92 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 f3c3583..a4ca649 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..93a3165 --- /dev/null +++ b/src/PVE/API2/Network/SDN/RouteMaps/RouteMap.pm @@ -0,0 +1,86 @@ +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']], + }, + 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()->list_route_map($route_map_id); + my $running_config = PVE::Network::SDN::RouteMaps::config(1)->list_route_map($route_map_id); + + my $pending_route_maps = PVE::Network::SDN::pending_config( + $running_config, + $current_config, + '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