]> git.proxmox.com Git - pve-storage.git/blame - PVE/Storage/CephFSPlugin.pm
add generalized functions to manage volume attributes
[pve-storage.git] / PVE / Storage / CephFSPlugin.pm
CommitLineData
e34ce144
AA
1package PVE::Storage::CephFSPlugin;
2
3use strict;
4use warnings;
5402cea5 5
e34ce144
AA
6use IO::File;
7use Net::IP;
8use File::Path;
5402cea5 9
b0373adc
TL
10use PVE::CephConfig;
11use PVE::JSONSchema qw(get_standard_option);
e34ce144
AA
12use PVE::ProcFSTools;
13use PVE::Storage::Plugin;
1022a7c4 14use PVE::Systemd;
b0373adc 15use PVE::Tools qw(run_command file_set_contents);
e34ce144
AA
16
17use base qw(PVE::Storage::Plugin);
18
19sub cephfs_is_mounted {
20 my ($scfg, $storeid, $mountdata) = @_;
21
4050fcc1 22 my $cmd_option = PVE::CephConfig::ceph_connect_option($scfg, $storeid);
e34ce144 23 my $configfile = $cmd_option->{ceph_conf};
e34ce144
AA
24
25 my $subdir = $scfg->{subdir} // '/';
26 my $mountpoint = $scfg->{path};
e34ce144
AA
27
28 $mountdata = PVE::ProcFSTools::parse_proc_mounts() if !$mountdata;
29 return $mountpoint if grep {
30 $_->[2] =~ m#^ceph|fuse\.ceph-fuse# &&
82881c5f 31 $_->[0] =~ m#\Q:$subdir\E$|^ceph-fuse$# &&
e34ce144
AA
32 $_->[1] eq $mountpoint
33 } @$mountdata;
34
35 warn "A filesystem is already mounted on $mountpoint\n"
36 if grep { $_->[1] eq $mountpoint } @$mountdata;
37
38 return undef;
39}
40
cda32b23 41# FIXME: remove once it's possible to specify _netdev for fuse.ceph mounts
d9ece228
TL
42sub systemd_netmount {
43 my ($where, $type, $what, $opts) = @_;
44
45# don't do default deps, systemd v241 generator produces ordering deps on both
46# local-fs(-pre) and remote-fs(-pre) targets if we use the required _netdev
ffc31266 47# option. Over three corners this gets us an ordering cycle on shutdown, which
d9ece228
TL
48# may make shutdown hang if the random cycle breaking hits the "wrong" unit to
49# delete.
50 my $unit = <<"EOF";
51[Unit]
52Description=${where}
53DefaultDependencies=no
54Requires=system.slice
55Wants=network-online.target
56Before=umount.target remote-fs.target
57After=systemd-journald.socket system.slice network.target -.mount remote-fs-pre.target network-online.target
58Conflicts=umount.target
59
60[Mount]
61Where=${where}
62What=${what}
63Type=${type}
64Options=${opts}
65EOF
66
1022a7c4 67 my $unit_fn = PVE::Systemd::escape_unit($where, 1) . ".mount";
d9ece228 68 my $unit_path = "/run/systemd/system/$unit_fn";
9a80a3ea 69 my $daemon_needs_reload = -e $unit_path;
d9ece228
TL
70
71 file_set_contents($unit_path, $unit);
9a80a3ea
TL
72
73 run_command(['systemctl', 'daemon-reload'], errmsg => "daemon-reload error")
74 if $daemon_needs_reload;
d9ece228
TL
75 run_command(['systemctl', 'start', $unit_fn], errmsg => "mount error");
76
77}
78
e34ce144
AA
79sub cephfs_mount {
80 my ($scfg, $storeid) = @_;
81
e34ce144
AA
82 my $mountpoint = $scfg->{path};
83 my $subdir = $scfg->{subdir} // '/';
84
4050fcc1 85 my $cmd_option = PVE::CephConfig::ceph_connect_option($scfg, $storeid);
e34ce144
AA
86 my $configfile = $cmd_option->{ceph_conf};
87 my $secretfile = $cmd_option->{keyring};
4050fcc1 88 my $server = $cmd_option->{mon_host} // PVE::CephConfig::get_monaddr_list($configfile);
25e222ca 89 my $type = 'ceph';
bc7fecb0 90 my $fs_name = $scfg->{'fs-name'};
e34ce144 91
25e222ca 92 my @opts = ();
e34ce144 93 if ($scfg->{fuse}) {
25e222ca
TL
94 $type = 'fuse.ceph';
95 push @opts, "ceph.id=$cmd_option->{userid}";
96 push @opts, "ceph.keyfile=$secretfile" if defined($secretfile);
97 push @opts, "ceph.conf=$configfile" if defined($configfile);
bc7fecb0 98 push @opts, "ceph.client_fs=$fs_name" if defined($fs_name);
5402cea5 99 } else {
25e222ca 100 push @opts, "name=$cmd_option->{userid}";
d9ece228 101 push @opts, "secretfile=$secretfile" if defined($secretfile);
9531988d 102 push @opts, "conf=$configfile" if defined($configfile);
bc7fecb0 103 push @opts, "fs=$fs_name" if defined($fs_name);
e34ce144 104 }
25e222ca
TL
105
106 push @opts, $scfg->{options} if $scfg->{options};
107
108 systemd_netmount($mountpoint, $type, "$server:$subdir", join(',', @opts));
e34ce144
AA
109}
110
111# Configuration
112
113sub type {
114 return 'cephfs';
115}
116
117sub plugindata {
118 return {
d1eb35ea 119 content => [ { vztmpl => 1, iso => 1, backup => 1, snippets => 1},
e34ce144
AA
120 { backup => 1 }],
121 };
122}
123
124sub properties {
125 return {
126 fuse => {
127 description => "Mount CephFS through FUSE.",
128 type => 'boolean',
129 },
130 subdir => {
131 description => "Subdir to mount.",
132 type => 'string', format => 'pve-storage-path',
133 },
bc7fecb0
DC
134 'fs-name' => {
135 description => "The Ceph filesystem name.",
136 type => 'string', format => 'pve-configid',
137 },
e34ce144
AA
138 };
139}
140
141sub options {
142 return {
143 path => { fixed => 1 },
144 monhost => { optional => 1},
145 nodes => { optional => 1 },
146 subdir => { optional => 1 },
147 disable => { optional => 1 },
148 options => { optional => 1 },
149 username => { optional => 1 },
150 content => { optional => 1 },
151 format => { optional => 1 },
152 mkdir => { optional => 1 },
153 fuse => { optional => 1 },
154 bwlimit => { optional => 1 },
d35a0b4b 155 maxfiles => { optional => 1 },
22b68016 156 keyring => { optional => 1 },
3353698f 157 'prune-backups' => { optional => 1 },
bc7fecb0 158 'fs-name' => { optional => 1 },
e34ce144
AA
159 };
160}
161
162sub check_config {
163 my ($class, $sectionId, $config, $create, $skipSchemaCheck) = @_;
164
165 $config->{path} = "/mnt/pve/$sectionId" if $create && !$config->{path};
166
167 return $class->SUPER::check_config($sectionId, $config, $create, $skipSchemaCheck);
168}
169
170# Storage implementation
171
172sub on_add_hook {
173 my ($class, $storeid, $scfg, %param) = @_;
174
22b68016
AL
175 my $secret = $param{keyring} if defined $param{keyring} // undef;
176 PVE::CephConfig::ceph_create_keyfile($scfg->{type}, $storeid, $secret);
e34ce144 177
22b68016
AL
178 return;
179}
180
181sub on_update_hook {
182 my ($class, $storeid, $scfg, %param) = @_;
183
184 if (exists($param{keyring})) {
185 if (defined($param{keyring})) {
186 PVE::CephConfig::ceph_create_keyfile($scfg->{type}, $storeid, $param{keyring});
187 } else {
188 PVE::CephConfig::ceph_remove_keyfile($scfg->{type}, $storeid);
189 }
190 }
f3ccd0ef
FE
191
192 return;
e34ce144
AA
193}
194
195sub on_delete_hook {
196 my ($class, $storeid, $scfg) = @_;
4050fcc1 197 PVE::CephConfig::ceph_remove_keyfile($scfg->{type}, $storeid);
f3ccd0ef 198 return;
e34ce144
AA
199}
200
201sub status {
202 my ($class, $storeid, $scfg, $cache) = @_;
203
5402cea5 204 $cache->{mountdata} //= PVE::ProcFSTools::parse_proc_mounts();
e34ce144
AA
205
206 return undef if !cephfs_is_mounted($scfg, $storeid, $cache->{mountdata});
207
208 return $class->SUPER::status($storeid, $scfg, $cache);
209}
210
211sub activate_storage {
212 my ($class, $storeid, $scfg, $cache) = @_;
213
5402cea5 214 $cache->{mountdata} //= PVE::ProcFSTools::parse_proc_mounts();
e34ce144 215
5402cea5 216 # NOTE: mkpath may hang if storage is mounted but not reachable
e34ce144 217 if (!cephfs_is_mounted($scfg, $storeid, $cache->{mountdata})) {
5402cea5 218 my $path = $scfg->{path};
e34ce144
AA
219
220 mkpath $path if !(defined($scfg->{mkdir}) && !$scfg->{mkdir});
221
222 die "unable to activate storage '$storeid' - " .
223 "directory '$path' does not exist\n" if ! -d $path;
224
225 cephfs_mount($scfg, $storeid);
226 }
227
228 $class->SUPER::activate_storage($storeid, $scfg, $cache);
229}
230
231sub deactivate_storage {
232 my ($class, $storeid, $scfg, $cache) = @_;
233
5402cea5 234 $cache->{mountdata} //= PVE::ProcFSTools::parse_proc_mounts();
e34ce144
AA
235
236 my $path = $scfg->{path};
237
238 if (cephfs_is_mounted($scfg, $storeid, $cache->{mountdata})) {
5402cea5 239 run_command(['/bin/umount', $path], errmsg => 'umount error');
e34ce144
AA
240 }
241}
242
f1de8281
FE
243# FIXME remove on the next APIAGE reset.
244# Deprecated, use get_volume_attribute instead.
2bce96c5
DW
245sub get_volume_notes {
246 my $class = shift;
247 PVE::Storage::DirPlugin::get_volume_notes($class, @_);
248}
249
f1de8281
FE
250# FIXME remove on the next APIAGE reset.
251# Deprecated, use update_volume_attribute instead.
2bce96c5
DW
252sub update_volume_notes {
253 my $class = shift;
254 PVE::Storage::DirPlugin::update_volume_notes($class, @_);
255}
256
f1de8281
FE
257sub get_volume_attribute {
258 return PVE::Storage::DirPlugin::get_volume_attribute(@_);
259}
260
261sub update_volume_attribute {
262 return PVE::Storage::DirPlugin::update_volume_attribute(@_);
263}
264
e34ce144 2651;