From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id D848D90B14 for ; Thu, 16 Mar 2023 14:48:53 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id BB36F5812 for ; Thu, 16 Mar 2023 14:48:23 +0100 (CET) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS for ; Thu, 16 Mar 2023 14:48:22 +0100 (CET) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id AD34444134 for ; Thu, 16 Mar 2023 14:48:21 +0100 (CET) From: Aaron Lauterer To: pve-devel@lists.proxmox.com Date: Thu, 16 Mar 2023 14:48:16 +0100 Message-Id: <20230316134820.1193518-2-a.lauterer@proxmox.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20230316134820.1193518-1-a.lauterer@proxmox.com> References: <20230316134820.1193518-1-a.lauterer@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL -0.041 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pve-devel] [PATCH v2 manager 1/5] api: ceph: add ceph/cfg path, deprecate ceph/config and ceph/configdb X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2023 13:48:53 -0000 Consolidating the different config paths lets us add more as needed without polluting our API with too many 'configxxx' endpoints. The config and configdb paths are renamed under the ceph/cfg path: * config -> raw (returns the ceph.conf file as is) * configdb -> db (returns the ceph config db contents) The old paths are still available and need to be dropped at some point. Signed-off-by: Aaron Lauterer --- changes since v1: * add this commit to rework the API PVE/API2/Ceph.pm | 15 ++++-- PVE/API2/Ceph/Cfg.pm | 116 +++++++++++++++++++++++++++++++++++++++++ PVE/API2/Ceph/Makefile | 1 + 3 files changed, 129 insertions(+), 3 deletions(-) create mode 100644 PVE/API2/Ceph/Cfg.pm diff --git a/PVE/API2/Ceph.pm b/PVE/API2/Ceph.pm index 786a1870..3e3dd399 100644 --- a/PVE/API2/Ceph.pm +++ b/PVE/API2/Ceph.pm @@ -18,6 +18,7 @@ use PVE::RPCEnvironment; use PVE::Storage; use PVE::Tools qw(run_command file_get_contents file_set_contents extract_param); +use PVE::API2::Ceph::Cfg; use PVE::API2::Ceph::OSD; use PVE::API2::Ceph::FS; use PVE::API2::Ceph::MDS; @@ -30,6 +31,11 @@ use base qw(PVE::RESTHandler); my $pve_osd_default_journal_size = 1024*5; +__PACKAGE__->register_method ({ + subclass => "PVE::API2::Ceph::Cfg", + path => 'cfg', +}); + __PACKAGE__->register_method ({ subclass => "PVE::API2::Ceph::OSD", path => 'osd', @@ -88,6 +94,7 @@ __PACKAGE__->register_method ({ my $result = [ { name => 'cmd-safety' }, + { name => 'cfg' }, { name => 'config' }, { name => 'configdb' }, { name => 'crush' }, @@ -109,6 +116,8 @@ __PACKAGE__->register_method ({ return $result; }}); + +# TODO: deprecrated, remove with PVE 8 __PACKAGE__->register_method ({ name => 'config', path => 'config', @@ -117,7 +126,7 @@ __PACKAGE__->register_method ({ permissions => { check => ['perm', '/', [ 'Sys.Audit', 'Datastore.Audit' ], any => 1], }, - description => "Get the Ceph configuration file.", + description => "Get the Ceph configuration file. Deprecated, please use `/nodes/{node}/ceph/cfg/raw.", parameters => { additionalProperties => 0, properties => { @@ -135,6 +144,7 @@ __PACKAGE__->register_method ({ }}); +# TODO: deprecrated, remove with PVE 8 __PACKAGE__->register_method ({ name => 'configdb', path => 'configdb', @@ -144,7 +154,7 @@ __PACKAGE__->register_method ({ permissions => { check => ['perm', '/', [ 'Sys.Audit', 'Datastore.Audit' ], any => 1], }, - description => "Get the Ceph configuration database.", + description => "Get the Ceph configuration database. Deprecated, please use `/nodes/{node}/ceph/cfg/db.", parameters => { additionalProperties => 0, properties => { @@ -179,7 +189,6 @@ __PACKAGE__->register_method ({ return $res; }}); - __PACKAGE__->register_method ({ name => 'init', path => 'init', diff --git a/PVE/API2/Ceph/Cfg.pm b/PVE/API2/Ceph/Cfg.pm new file mode 100644 index 00000000..a00ef19c --- /dev/null +++ b/PVE/API2/Ceph/Cfg.pm @@ -0,0 +1,116 @@ +package PVE::API2::Ceph::Cfg; + +use strict; +use warnings; + +use PVE::Ceph::Tools; +use PVE::Cluster qw(cfs_read_file cfs_write_file); +use PVE::JSONSchema qw(get_standard_option); +use PVE::RADOS; +use PVE::Tools qw(run_command file_get_contents file_set_contents extract_param); + +use base qw(PVE::RESTHandler); + +__PACKAGE__->register_method ({ + name => 'index', + path => '', + method => 'GET', + description => "Directory index.", + permissions => { user => 'all' }, + permissions => { + check => ['perm', '/', [ 'Sys.Audit', 'Datastore.Audit' ], any => 1], + }, + parameters => { + additionalProperties => 0, + properties => { + node => get_standard_option('pve-node'), + }, + }, + returns => { + type => 'array', + items => { + type => "object", + properties => {}, + }, + links => [ { rel => 'child', href => "{name}" } ], + }, + code => sub { + my ($param) = @_; + + my $result = [ + { name => 'raw' }, + { name => 'db' }, + ]; + + return $result; + }}); + +__PACKAGE__->register_method ({ + name => 'raw', + path => 'raw', + method => 'GET', + proxyto => 'node', + permissions => { + check => ['perm', '/', [ 'Sys.Audit', 'Datastore.Audit' ], any => 1], + }, + description => "Get the Ceph configuration file.", + parameters => { + additionalProperties => 0, + properties => { + node => get_standard_option('pve-node'), + }, + }, + returns => { type => 'string' }, + code => sub { + my ($param) = @_; + + PVE::Ceph::Tools::check_ceph_inited(); + + my $path = PVE::Ceph::Tools::get_config('pve_ceph_cfgpath'); + return file_get_contents($path); + + }}); + +__PACKAGE__->register_method ({ + name => 'db', + path => 'db', + method => 'GET', + proxyto => 'node', + protected => 1, + permissions => { + check => ['perm', '/', [ 'Sys.Audit', 'Datastore.Audit' ], any => 1], + }, + description => "Get the Ceph configuration database.", + parameters => { + additionalProperties => 0, + properties => { + node => get_standard_option('pve-node'), + }, + }, + returns => { + type => 'array', + items => { + type => 'object', + properties => { + section => { type => "string", }, + name => { type => "string", }, + value => { type => "string", }, + level => { type => "string", }, + 'can_update_at_runtime' => { type => "boolean", }, + mask => { type => "string" }, + }, + }, + }, + code => sub { + my ($param) = @_; + + PVE::Ceph::Tools::check_ceph_inited(); + + my $rados = PVE::RADOS->new(); + my $res = $rados->mon_command( { prefix => 'config dump', format => 'json' }); + foreach my $entry (@$res) { + $entry->{can_update_at_runtime} = $entry->{can_update_at_runtime}? 1 : 0; # JSON::true/false -> 1/0 + } + + return $res; + }}); diff --git a/PVE/API2/Ceph/Makefile b/PVE/API2/Ceph/Makefile index 45daafda..be7b6926 100644 --- a/PVE/API2/Ceph/Makefile +++ b/PVE/API2/Ceph/Makefile @@ -1,6 +1,7 @@ include ../../../defines.mk PERLSOURCE= \ + Cfg.pm \ MGR.pm \ MON.pm \ OSD.pm \ -- 2.30.2