]>
git.proxmox.com Git - pve-storage.git/blob - src/PVE/Storage/GlusterfsPlugin.pm
1 package PVE
::Storage
::GlusterfsPlugin
;
7 use PVE
::Tools
qw(run_command);
10 use PVE
::Storage
::Plugin
;
11 use PVE
::JSONSchema
qw(get_standard_option);
13 use base
qw(PVE::Storage::Plugin);
15 # Glusterfs helper functions
17 my $server_test_results = {};
19 my $get_active_server = sub {
20 my ($scfg, $return_default_if_offline) = @_;
22 my $defaultserver = $scfg->{server
} ?
$scfg->{server
} : 'localhost';
24 if ($return_default_if_offline && !defined($scfg->{server2
})) {
25 # avoid delays (there is no backup server anyways)
26 return $defaultserver;
29 my $serverlist = [ $defaultserver ];
30 push @$serverlist, $scfg->{server2
} if $scfg->{server2
};
33 foreach my $server (@$serverlist) {
34 my $stat = $server_test_results->{$server};
35 return $server if $stat && $stat->{active
} && (($ctime - $stat->{time}) <= 2);
38 foreach my $server (@$serverlist) {
41 if ($server && $server ne 'localhost' && $server ne '127.0.0.1' && $server ne '::1') {
42 # ping the gluster daemon default port (24007) as heuristic
43 $status = PVE
::Network
::tcp_ping
($server, 24007, 2);
50 if ($line =~ m/Status: Started$/) {
55 my $cmd = ['/usr/sbin/gluster', 'volume', 'info', $scfg->{volume
}];
57 run_command
($cmd, errmsg
=> "glusterfs error", errfunc
=> sub {}, outfunc
=> $parser);
60 $server_test_results->{$server} = { time => time(), active
=> $status };
61 return $server if $status;
64 return $defaultserver if $return_default_if_offline;
69 sub glusterfs_is_mounted
{
70 my ($volume, $mountpoint, $mountdata) = @_;
72 $mountdata = PVE
::ProcFSTools
::parse_proc_mounts
() if !$mountdata;
74 return $mountpoint if grep {
75 $_->[2] eq 'fuse.glusterfs' &&
76 $_->[0] =~ /^\S+:\Q$volume\E$/ &&
77 $_->[1] eq $mountpoint
83 my ($server, $volume, $mountpoint) = @_;
85 my $source = "$server:$volume";
87 my $cmd = ['/bin/mount', '-t', 'glusterfs', $source, $mountpoint];
89 run_command
($cmd, errmsg
=> "mount error");
100 content
=> [ { images
=> 1, vztmpl
=> 1, iso
=> 1, backup
=> 1, snippets
=> 1},
102 format
=> [ { raw
=> 1, qcow2
=> 1, vmdk
=> 1 } , 'raw' ],
109 description
=> "Glusterfs Volume.",
113 description
=> "Backup volfile server IP or DNS name.",
114 type
=> 'string', format
=> 'pve-storage-server',
115 requires
=> 'server',
118 description
=> "Gluster transport: tcp or rdma",
120 enum
=> ['tcp', 'rdma', 'unix'],
127 path
=> { fixed
=> 1 },
128 server
=> { optional
=> 1 },
129 server2
=> { optional
=> 1 },
130 volume
=> { fixed
=> 1 },
131 transport
=> { optional
=> 1 },
132 nodes
=> { optional
=> 1 },
133 disable
=> { optional
=> 1 },
134 maxfiles
=> { optional
=> 1 },
135 'prune-backups' => { optional
=> 1 },
136 'max-protected-backups' => { optional
=> 1 },
137 content
=> { optional
=> 1 },
138 format
=> { optional
=> 1 },
139 mkdir => { optional
=> 1 },
140 'create-base-path' => { optional
=> 1 },
141 'create-subdirs' => { optional
=> 1 },
142 bwlimit
=> { optional
=> 1 },
143 preallocation
=> { optional
=> 1 },
149 my ($class, $sectionId, $config, $create, $skipSchemaCheck) = @_;
151 $config->{path
} = "/mnt/pve/$sectionId" if $create && !$config->{path
};
153 return $class->SUPER::check_config
($sectionId, $config, $create, $skipSchemaCheck);
156 # Storage implementation
161 if ($name =~ m!^((base-)?[^/\s]+\.(raw|qcow2|vmdk))$!) {
165 die "unable to parse volume filename '$name'\n";
169 my ($class, $scfg, $volname, $storeid, $snapname) = @_;
171 my ($vtype, $name, $vmid, undef, undef, $isBase, $format) =
172 $class->parse_volname($volname);
174 # Note: qcow2/qed has internal snapshot, so path is always
175 # the same (with or without snapshot => same file).
176 die "can't snapshot this image format\n"
177 if defined($snapname) && $format !~ m/^(qcow2|qed)$/;
180 if ($vtype eq 'images') {
182 my $server = &$get_active_server($scfg, 1);
183 my $glustervolume = $scfg->{volume
};
184 my $transport = $scfg->{transport
};
185 my $protocol = "gluster";
188 $protocol = "gluster+$transport";
191 $path = "$protocol://$server/$glustervolume/images/$vmid/$name";
194 my $dir = $class->get_subdir($scfg, $vtype);
195 $path = "$dir/$name";
198 return wantarray ?
($path, $vmid, $vtype) : $path;
202 my ($class, $scfg, $storeid, $volname, $vmid, $snap) = @_;
204 die "storage definition has no path\n" if !$scfg->{path
};
206 my ($vtype, $basename, $basevmid, undef, undef, $isBase, $format) =
207 $class->parse_volname($volname);
209 die "clone_image on wrong vtype '$vtype'\n" if $vtype ne 'images';
211 die "this storage type does not support clone_image on snapshot\n" if $snap;
213 die "this storage type does not support clone_image on subvolumes\n" if $format eq 'subvol';
215 die "clone_image only works on base images\n" if !$isBase;
217 my $imagedir = $class->get_subdir($scfg, 'images');
218 $imagedir .= "/$vmid";
222 my $name = $class->find_free_diskname($storeid, $scfg, $vmid, "qcow2", 1);
224 warn "clone $volname: $vtype, $name, $vmid to $name (base=../$basevmid/$basename)\n";
226 my $path = "$imagedir/$name";
228 die "disk image '$path' already exists\n" if -e
$path;
230 my $server = &$get_active_server($scfg, 1);
231 my $glustervolume = $scfg->{volume
};
232 my $volumepath = "gluster://$server/$glustervolume/images/$vmid/$name";
234 my $cmd = ['/usr/bin/qemu-img', 'create', '-b', "../$basevmid/$basename",
235 '-F', $format, '-f', 'qcow2', $volumepath];
237 run_command
($cmd, errmsg
=> "unable to create image");
239 return "$basevmid/$basename/$vmid/$name";
243 my ($class, $storeid, $scfg, $vmid, $fmt, $name, $size) = @_;
245 my $imagedir = $class->get_subdir($scfg, 'images');
246 $imagedir .= "/$vmid";
250 $name = $class->find_free_diskname($storeid, $scfg, $vmid, $fmt, 1) if !$name;
252 my (undef, $tmpfmt) = parse_name_dir
($name);
254 die "illegal name '$name' - wrong extension for format ('$tmpfmt != '$fmt')\n"
257 my $path = "$imagedir/$name";
259 die "disk image '$path' already exists\n" if -e
$path;
261 my $server = &$get_active_server($scfg, 1);
262 my $glustervolume = $scfg->{volume
};
263 my $volumepath = "gluster://$server/$glustervolume/images/$vmid/$name";
265 my $cmd = ['/usr/bin/qemu-img', 'create'];
267 my $prealloc_opt = PVE
::Storage
::Plugin
::preallocation_cmd_option
($scfg, $fmt);
268 push @$cmd, '-o', $prealloc_opt if defined($prealloc_opt);
270 push @$cmd, '-f', $fmt, $volumepath, "${size}K";
272 eval { run_command
($cmd, errmsg
=> "unable to create image"); };
279 return "$vmid/$name";
283 my ($class, $storeid, $scfg, $cache) = @_;
285 $cache->{mountdata
} = PVE
::ProcFSTools
::parse_proc_mounts
()
286 if !$cache->{mountdata
};
288 my $path = $scfg->{path
};
290 my $volume = $scfg->{volume
};
292 return undef if !glusterfs_is_mounted
($volume, $path, $cache->{mountdata
});
294 return $class->SUPER::status
($storeid, $scfg, $cache);
297 sub activate_storage
{
298 my ($class, $storeid, $scfg, $cache) = @_;
300 $cache->{mountdata
} = PVE
::ProcFSTools
::parse_proc_mounts
()
301 if !$cache->{mountdata
};
303 my $path = $scfg->{path
};
304 my $volume = $scfg->{volume
};
306 if (!glusterfs_is_mounted
($volume, $path, $cache->{mountdata
})) {
307 $class->config_aware_base_mkdir($scfg, $path);
309 die "unable to activate storage '$storeid' - " .
310 "directory '$path' does not exist\n" if ! -d
$path;
312 my $server = &$get_active_server($scfg, 1);
314 glusterfs_mount
($server, $volume, $path);
317 $class->SUPER::activate_storage
($storeid, $scfg, $cache);
320 sub deactivate_storage
{
321 my ($class, $storeid, $scfg, $cache) = @_;
323 $cache->{mountdata
} = PVE
::ProcFSTools
::parse_proc_mounts
()
324 if !$cache->{mountdata
};
326 my $path = $scfg->{path
};
327 my $volume = $scfg->{volume
};
329 if (glusterfs_is_mounted
($volume, $path, $cache->{mountdata
})) {
330 my $cmd = ['/bin/umount', $path];
331 run_command
($cmd, errmsg
=> 'umount error');
335 sub activate_volume
{
336 my ($class, $storeid, $scfg, $volname, $snapname, $cache) = @_;
338 # do nothing by default
341 sub deactivate_volume
{
342 my ($class, $storeid, $scfg, $volname, $snapname, $cache) = @_;
344 # do nothing by default
347 sub check_connection
{
348 my ($class, $storeid, $scfg, $cache) = @_;
350 my $server = &$get_active_server($scfg);
352 return defined($server) ?
1 : 0;