From: Dominik Csapak <d.csapak@proxmox.com>
To: Fabian Ebner <f.ebner@proxmox.com>,
Proxmox VE development discussion <pve-devel@lists.proxmox.com>
Subject: Re: [pve-devel] [RFC storage 6/6] pbs: integrate support for protected
Date: Fri, 24 Sep 2021 13:48:53 +0200 [thread overview]
Message-ID: <404419e3-fe1d-4bf5-debf-135e506ad12e@proxmox.com> (raw)
In-Reply-To: <a4efd017-79c4-9ac6-dc46-e9b62155e60c@proxmox.com>
On 9/24/21 13:32, Fabian Ebner wrote:
> Am 24.09.21 um 10:55 schrieb Dominik Csapak:
>> On 9/17/21 15:02, Fabian Ebner wrote:
>>> free_image doesn't need to check for protection, because that will
>>> happen on the server.
>>>
>>> Getting/updating notes has also been refactored to re-use the code
>>> for the PBS api calls.
>>>
>>> Signed-off-by: Fabian Ebner <f.ebner@proxmox.com>
>>> ---
>>>
>>> Needs new external dependency for strptime (libposix-strptime-perl),
>>> because it's not in perl's POSIX module.
>>>
>>> An alternative would be to use perlmod and export the proxmox crate's
>>> function for parsing the timestring.
>>>
>>> It depends on Dominik's patches for PBS to work:
>>> https://lists.proxmox.com/pipermail/pbs-devel/2021-September/003926.html
>>>
>>> PVE/Storage/PBSPlugin.pm | 59 ++++++++++++++++++++++++++++++++++------
>>> 1 file changed, 51 insertions(+), 8 deletions(-)
>>>
>>> diff --git a/PVE/Storage/PBSPlugin.pm b/PVE/Storage/PBSPlugin.pm
>>> index d8e1ac8..082d138 100644
>>> --- a/PVE/Storage/PBSPlugin.pm
>>> +++ b/PVE/Storage/PBSPlugin.pm
>>> @@ -9,7 +9,8 @@ use Fcntl qw(F_GETFD F_SETFD FD_CLOEXEC);
>>> use IO::File;
>>> use JSON;
>>> use MIME::Base64 qw(decode_base64);
>>> -use POSIX qw(strftime ENOENT);
>>> +use POSIX qw(mktime strftime ENOENT);
>>> +use POSIX::strptime;
>>
>> nit: couldn't we combine those two lines?
>>
>
> As noted above, this is a different dependency/package. It's not part of
> the usual POSIX package.
yeah i read the debian package part, i did not notice that
POSIX::strptime is a seperate perl package as well and thought
it would be automatically exposed in the POSIX module
>
>>> use PVE::APIClient::LWP;
>>> use PVE::JSONSchema qw(get_standard_option);
>>> @@ -218,6 +219,36 @@ sub print_volid {
>>> return "${storeid}:${volname}";
>>> }
>>> +# essentially the inverse of print_volid
>>> +sub api_param_from_volname {
>>> + my ($class, $volname) = @_;
>>> +
>>> + my $name = ($class->parse_volname($volname))[1];
>>> +
>>> + my ($btype, $bid, $timestr) = split('/', $name);
>>> +
>>> + my @tm = (POSIX::strptime($timestr, "%FT%TZ"));
>>> + # expect sec, min, hour, mday, mon, year
>>> + die "error parsing time from '$volname'" if grep { !defined($_)
>>> } @tm[0..5];
>>> +
>>> + my $btime;
>>> + {
>>> + local $ENV{TZ} = 'UTC'; # $timestr is UTC
>>> +
>>> + # Fill in isdst to avoid undef warning. No daylight saving time
>>> for UTC.
>>> + $tm[8] //= 0;
>>> +
>>> + my $since_epoch = mktime(@tm) or die "error converting time from
>>> '$volname'\n";
>>> + $btime = int($since_epoch);
>>> + }
>>> +
>>> + return {
>>> + 'backup-type' => $btype,
>>> + 'backup-id' => $bid,
>>> + 'backup-time' => $btime,
>>> + };
>>> +}
>>> +
>>> my $USE_CRYPT_PARAMS = {
>>> backup => 1,
>>> restore => 1,
>>> @@ -658,6 +689,7 @@ sub list_volumes {
>>> $info->{verification} = $item->{verification} if
>>> defined($item->{verification});
>>> $info->{notes} = $item->{comment} if defined($item->{comment});
>>> + $info->{protected} = 1 if $item->{protected};
>>> if (defined($item->{fingerprint})) {
>>> $info->{encrypted} = $item->{fingerprint};
>>> } elsif (snapshot_files_encrypted($item->{files})) {
>>> @@ -785,12 +817,19 @@ sub deactivate_volume {
>>> sub get_volume_attribute {
>>> my ($class, $scfg, $storeid, $volname, $attribute) = @_;
>>> - if ($attribute eq 'notes') {
>>> - my (undef, $name, undef, undef, undef, undef, $format) =
>>> $class->parse_volname($volname);
>>> + if ($attribute eq 'notes' || $attribute eq 'protected') {
>>> + my $param = $class->api_param_from_volname($volname);
>>> - my $data = run_client_cmd($scfg, $storeid, "snapshot", [
>>> "notes", "show", $name ]);
>>> + my $password = pbs_get_password($scfg, $storeid);
>>> + my $conn = pbs_api_connect($scfg, $password);
>>> + my $datastore = $scfg->{datastore};
>>> - return $data->{notes} // '';
>>> + my $res = eval {
>>> $conn->get("/api2/json/admin/datastore/$datastore/$attribute",
>>> $param); };
>>> + if (my $err = $@) {
>>> + return if $err->{code} == 404; # not supported
>>> + die $err;
>>> + }
>>> + return $res;
>>> }
>>> return;
>>> @@ -799,11 +838,15 @@ sub get_volume_attribute {
>>> sub update_volume_attribute {
>>> my ($class, $scfg, $storeid, $volname, $attribute, $value) = @_;
>>> - if ($attribute eq 'notes') {
>>> - my (undef, $name, undef, undef, undef, undef, $format) =
>>> $class->parse_volname($volname);
>>> + if ($attribute eq 'notes' || $attribute eq 'protected') {
>>> + my $param = $class->api_param_from_volname($volname);
>>> + $param->{$attribute} = $value;
>>> - run_client_cmd($scfg, $storeid, "snapshot", [ "notes", "update",
>>> $name, $value ], 1);
>>> + my $password = pbs_get_password($scfg, $storeid);
>>> + my $conn = pbs_api_connect($scfg, $password);
>>> + my $datastore = $scfg->{datastore};
>>> + $conn->put("/api2/json/admin/datastore/$datastore/$attribute",
>>> $param);
>>> return;
>>> }
>>>
>>
>>
next prev parent reply other threads:[~2021-09-24 11:49 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-09-17 13:02 [pve-devel] [RFC storage/manager] fix #3307: allow backups to be marked as protected Fabian Ebner
2021-09-17 13:02 ` [pve-devel] [PATCH storage 1/6] dir plugin: update notes: don't attempt to remove non-existent notes Fabian Ebner
2021-09-24 8:54 ` Dominik Csapak
2021-09-24 9:03 ` Thomas Lamprecht
2021-09-24 10:40 ` Fabian Ebner
2021-09-17 13:02 ` [pve-devel] [RFC storage 2/6] add generalized functions to manage volume attributes Fabian Ebner
2021-09-24 8:54 ` Dominik Csapak
2021-09-24 11:05 ` Fabian Ebner
2021-09-24 11:16 ` Dominik Csapak
2021-09-24 11:31 ` Fabian Ebner
2021-09-17 13:02 ` [pve-devel] [PATCH storage 3/6] prune mark: preserve additional information for the keep-all case Fabian Ebner
2021-09-17 13:02 ` [pve-devel] [RFC storage 4/6] fix #3307: make it possible to set protection for backups Fabian Ebner
2021-09-24 8:54 ` Dominik Csapak
2021-09-24 11:17 ` Fabian Ebner
2021-09-17 13:02 ` [pve-devel] [RFC storage 5/6] prune: mark renamed and protected backups differently Fabian Ebner
2021-09-17 13:02 ` [pve-devel] [RFC storage 6/6] pbs: integrate support for protected Fabian Ebner
2021-09-24 8:55 ` Dominik Csapak
2021-09-24 11:32 ` Fabian Ebner
2021-09-24 11:48 ` Dominik Csapak [this message]
2021-09-17 13:02 ` [pve-devel] [RFC manager 1/1] vzdump: skip protected backups for dumpdir pruning Fabian Ebner
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=404419e3-fe1d-4bf5-debf-135e506ad12e@proxmox.com \
--to=d.csapak@proxmox.com \
--cc=f.ebner@proxmox.com \
--cc=pve-devel@lists.proxmox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox