]> git.proxmox.com Git - pve-storage.git/blame - PVE/Storage/DirPlugin.pm
fix #3307: make it possible to set protection for backups
[pve-storage.git] / PVE / Storage / DirPlugin.pm
CommitLineData
1dc01b9f
DM
1package PVE::Storage::DirPlugin;
2
3use strict;
4use warnings;
ddb32630 5
d547f26c 6use Cwd;
1dc01b9f 7use File::Path;
56897a92 8use IO::File;
ddb32630
FE
9use POSIX;
10
1dc01b9f
DM
11use PVE::Storage::Plugin;
12use PVE::JSONSchema qw(get_standard_option);
13
14use base qw(PVE::Storage::Plugin);
15
16# Configuration
17
18sub type {
19 return 'dir';
20}
21
22sub plugindata {
23 return {
d1eb35ea 24 content => [ { images => 1, rootdir => 1, vztmpl => 1, iso => 1, backup => 1, snippets => 1, none => 1 },
1dc01b9f 25 { images => 1, rootdir => 1 }],
35533c68 26 format => [ { raw => 1, qcow2 => 1, vmdk => 1, subvol => 1 } , 'raw' ],
1dc01b9f 27 };
c2fc9fbe 28}
1dc01b9f
DM
29
30sub properties {
31 return {
32 path => {
33 description => "File system path.",
34 type => 'string', format => 'pve-storage-path',
35 },
b521247b
WB
36 mkdir => {
37 description => "Create the directory if it doesn't exist.",
38 type => 'boolean',
39 default => 'yes',
40 },
d547f26c
WB
41 is_mountpoint => {
42 description =>
de8eff4d
WB
43 "Assume the given path is an externally managed mountpoint " .
44 "and consider the storage offline if it is not mounted. ".
45 "Using a boolean (yes/no) value serves as a shortcut to using the target path in this field.",
46 type => 'string',
d547f26c
WB
47 default => 'no',
48 },
9edb99a5 49 bwlimit => get_standard_option('bwlimit'),
1dc01b9f
DM
50 };
51}
52
53sub options {
54 return {
55 path => { fixed => 1 },
3353698f 56 nodes => { optional => 1 },
1dc01b9f
DM
57 shared => { optional => 1 },
58 disable => { optional => 1 },
3353698f
FE
59 maxfiles => { optional => 1 },
60 'prune-backups' => { optional => 1 },
1dc01b9f
DM
61 content => { optional => 1 },
62 format => { optional => 1 },
b521247b 63 mkdir => { optional => 1 },
d547f26c 64 is_mountpoint => { optional => 1 },
9edb99a5 65 bwlimit => { optional => 1 },
95ff5dbd 66 preallocation => { optional => 1 },
1dc01b9f
DM
67 };
68}
69
70# Storage implementation
d547f26c
WB
71#
72
73# NOTE: should ProcFSTools::is_mounted accept an optional cache like this?
74sub path_is_mounted {
75 my ($mountpoint, $mountdata) = @_;
76
77 $mountpoint = Cwd::realpath($mountpoint); # symlinks
78 return 0 if !defined($mountpoint); # path does not exist
79
80 $mountdata = PVE::ProcFSTools::parse_proc_mounts() if !$mountdata;
81 return 1 if grep { $_->[1] eq $mountpoint } @$mountdata;
82 return undef;
83}
84
de8eff4d
WB
85sub parse_is_mountpoint {
86 my ($scfg) = @_;
87 my $is_mp = $scfg->{is_mountpoint};
88 return undef if !defined $is_mp;
89 if (defined(my $bool = PVE::JSONSchema::parse_boolean($is_mp))) {
90 return $bool ? $scfg->{path} : undef;
91 }
92 return $is_mp; # contains a path
93}
94
f1de8281
FE
95# FIXME remove on the next APIAGE reset.
96# Deprecated, use get_volume_attribute instead.
e9991d26
DC
97sub get_volume_notes {
98 my ($class, $scfg, $storeid, $volname, $timeout) = @_;
20471dfd 99
e0aa2070
FE
100 my ($vtype) = $class->parse_volname($volname);
101 return if $vtype ne 'backup';
102
e9991d26
DC
103 my $path = $class->filesystem_path($scfg, $volname);
104 $path .= $class->SUPER::NOTES_EXT;
105
20471dfd 106 return PVE::Tools::file_get_contents($path) if -f $path;
e9991d26 107
20471dfd 108 return '';
e9991d26
DC
109}
110
f1de8281
FE
111# FIXME remove on the next APIAGE reset.
112# Deprecated, use update_volume_attribute instead.
e9991d26
DC
113sub update_volume_notes {
114 my ($class, $scfg, $storeid, $volname, $notes, $timeout) = @_;
e9991d26 115
20471dfd
TL
116 my ($vtype) = $class->parse_volname($volname);
117 die "only backups can have notes\n" if $vtype ne 'backup';
e9991d26 118
20471dfd 119 my $path = $class->filesystem_path($scfg, $volname);
e9991d26
DC
120 $path .= $class->SUPER::NOTES_EXT;
121
f244e2aa
TL
122 if (defined($notes) && $notes ne '') {
123 PVE::Tools::file_set_contents($path, $notes);
124 } else {
ddb32630 125 unlink $path or $! == ENOENT or die "could not delete notes - $!\n";
f244e2aa 126 }
20471dfd 127 return;
e9991d26
DC
128}
129
f1de8281
FE
130sub get_volume_attribute {
131 my ($class, $scfg, $storeid, $volname, $attribute) = @_;
132
133 if ($attribute eq 'notes') {
134 return $class->get_volume_notes($scfg, $storeid, $volname);
135 }
136
56897a92
FE
137 my ($vtype) = $class->parse_volname($volname);
138 return if $vtype ne 'backup';
139
140 if ($attribute eq 'protected') {
141 my $path = $class->filesystem_path($scfg, $volname);
142 return -e PVE::Storage::protection_file_path($path) ? 1 : 0;
143 }
144
f1de8281
FE
145 return;
146}
147
148sub update_volume_attribute {
149 my ($class, $scfg, $storeid, $volname, $attribute, $value) = @_;
150
151 if ($attribute eq 'notes') {
152 return $class->update_volume_notes($scfg, $storeid, $volname, $value);
153 }
154
56897a92
FE
155 my ($vtype) = $class->parse_volname($volname);
156 die "only backups support attribute '$attribute'\n" if $vtype ne 'backup';
157
158 if ($attribute eq 'protected') {
159 my $path = $class->filesystem_path($scfg, $volname);
160 my $protection_path = PVE::Storage::protection_file_path($path);
161
162 return if !((-e $protection_path) xor $value); # protection status already correct
163
164 if ($value) {
165 my $fh = IO::File->new($protection_path, O_CREAT, 0644)
166 or die "unable to create protection file '$protection_path' - $!\n";
167 close($fh);
168 } else {
169 unlink $protection_path or $! == ENOENT
170 or die "could not delete protection file '$protection_path' - $!\n";
171 }
172
173 return;
174 }
175
f1de8281
FE
176 die "attribute '$attribute' is not supported for storage type '$scfg->{type}'\n";
177}
178
d547f26c
WB
179sub status {
180 my ($class, $storeid, $scfg, $cache) = @_;
181
de8eff4d 182 if (defined(my $mp = parse_is_mountpoint($scfg))) {
8b5ccc06
FG
183 $cache->{mountdata} = PVE::ProcFSTools::parse_proc_mounts()
184 if !$cache->{mountdata};
d547f26c 185
de8eff4d 186 return undef if !path_is_mounted($mp, $cache->{mountdata});
8b5ccc06 187 }
d547f26c
WB
188
189 return $class->SUPER::status($storeid, $scfg, $cache);
190}
191
1dc01b9f
DM
192
193sub activate_storage {
194 my ($class, $storeid, $scfg, $cache) = @_;
195
d547f26c 196 my $path = $scfg->{path};
b521247b 197 if (!defined($scfg->{mkdir}) || $scfg->{mkdir}) {
b521247b
WB
198 mkpath $path;
199 }
1dc01b9f 200
de8eff4d
WB
201 my $mp = parse_is_mountpoint($scfg);
202 if (defined($mp) && !path_is_mounted($mp, $cache->{mountdata})) {
d547f26c 203 die "unable to activate storage '$storeid' - " .
de8eff4d 204 "directory is expected to be a mount point but is not mounted: '$mp'\n";
d547f26c
WB
205 }
206
c2fc9fbe 207 $class->SUPER::activate_storage($storeid, $scfg, $cache);
1dc01b9f
DM
208}
209
5c95e484
WB
210sub check_config {
211 my ($self, $sectionId, $config, $create, $skipSchemaCheck) = @_;
212 my $opts = PVE::SectionConfig::check_config($self, $sectionId, $config, $create, $skipSchemaCheck);
213 return $opts if !$create;
214 if ($opts->{path} !~ m@^/[-/a-zA-Z0-9_.]+$@) {
215 die "illegal path for directory storage: $opts->{path}\n";
216 }
217 return $opts;
218}
1dc01b9f
DM
219
2201;