]> git.proxmox.com Git - pve-storage.git/blobdiff - PVE/Storage/Plugin.pm
plugin : has_feature : copy
[pve-storage.git] / PVE / Storage / Plugin.pm
index 08e505e1f900da9eeaa114b21c84b7ed3431b0cd..5ff114a5364c9562daed51755d96ed88228b2e14 100644 (file)
@@ -2,6 +2,7 @@ package PVE::Storage::Plugin;
 
 use strict;
 use warnings;
+use File::chdir;
 use File::Path;
 use PVE::Tools qw(run_command);
 use PVE::JSONSchema qw(get_standard_option);
@@ -177,6 +178,17 @@ sub verify_options {
     return $value;
 }
 
+PVE::JSONSchema::register_format('pve-volume-id', \&parse_volume_id);
+sub parse_volume_id {
+    my ($volid, $noerr) = @_;
+
+    if ($volid =~ m/^([a-z][a-z0-9\-\_\.]*[a-z0-9]):(.+)$/i) {
+       return wantarray ? ($1, $2) : $1;
+    }
+    return undef if $noerr;
+    die "unable to parse volume ID '$volid'\n";
+}
+
 
 sub private {
     return $defaultData;
@@ -330,8 +342,8 @@ sub cluster_lock_storage {
 sub parse_name_dir {
     my $name = shift;
 
-    if ($name =~ m!^([^/\s]+\.(raw|qcow2|vmdk))$!) {
-       return ($1, $2);
+    if ($name =~ m!^((base-)?[^/\s]+\.(raw|qcow2|vmdk))$!) {
+       return ($1, $3, $2);
     }
 
     die "unable to parse volume filename '$name'\n";
@@ -340,17 +352,23 @@ sub parse_name_dir {
 sub parse_volname {
     my ($class, $volname) = @_;
 
-    if ($volname =~ m!^(\d+)/(\S+)$!) {
+    if ($volname =~ m!^(\d+)/(\S+)/(\d+)/(\S+)$!) {
+       my ($basedvmid, $basename) = ($1, $2);
+       parse_name_dir($basename);
+       my ($vmid, $name) = ($3, $4);
+       my (undef, undef, $isBase) = parse_name_dir($name);
+       return ('images', $name, $vmid, $basename, $basedvmid, $isBase);
+    } elsif ($volname =~ m!^(\d+)/(\S+)$!) {
        my ($vmid, $name) = ($1, $2);
-       parse_name_dir($name);
-       return ('images', $name, $vmid);
+       my (undef, undef, $isBase) = parse_name_dir($name);
+       return ('images', $name, $vmid, undef, undef, $isBase);
     } elsif ($volname =~ m!^iso/([^/]+\.[Ii][Ss][Oo])$!) {
        return ('iso', $1);
     } elsif ($volname =~ m!^vztmpl/([^/]+\.tar\.gz)$!) {
        return ('vztmpl', $1);
     } elsif ($volname =~ m!^rootdir/(\d+)$!) {
        return ('rootdir', $1, $1);
-    } elsif ($volname =~ m!^backup/([^/]+(\.(tar|tar\.gz|tar\.lzo|tgz)))$!) {
+    } elsif ($volname =~ m!^backup/([^/]+(\.(tar|tar\.gz|tar\.lzo|tgz|vma|vma\.gz|vma\.lzo)))$!) {
        my $fn = $1;
        if ($fn =~ m/^vzdump-(openvz|qemu)-(\d+)-.+/) {
            return ('backup', $fn, $2);
@@ -397,27 +415,123 @@ sub path {
     return wantarray ? ($path, $vmid, $vtype) : $path;
 }
 
-sub alloc_image {
-    my ($class, $storeid, $scfg, $vmid, $fmt, $name, $size) = @_;
+sub create_base {
+    my ($class, $storeid, $scfg, $volname) = @_;
+
+    # this only works for file based storage types
+    die "storage definintion has no path\n" if !$scfg->{path};
+
+    my ($vtype, $name, $vmid, $basename, $basevmid, $isBase) = 
+       $class->parse_volname($volname);
+
+    die "create_base on wrong vtype '$vtype'\n" if $vtype ne 'images';
+
+    die "create_base not possible with base image\n" if $isBase;
+
+    my $path = $class->path($scfg, $volname);
+
+    my ($size, $format, $used, $parent) = file_size_info($path);
+    die "file_size_info on '$volname' failed\n" if !($format && $size);
+
+    die "volname '$volname' contains wrong information about parent\n"
+       if $basename && (!$parent || $parent ne "../$basevmid/$basename");
+
+    my $newname = $name;
+    $newname =~ s/^vm-/base-/;
+
+    my $newvolname = $basename ? "$basevmid/$basename/$vmid/$newname" :
+       "$vmid/$newname";
+
+    my $newpath = $class->path($scfg, $newvolname);
+
+    die "file '$newpath' already exists\n" if -f $newpath;
+
+    rename($path, $newpath) || 
+       die "rename '$path' to '$newpath' failed - $!\n";
+
+    # We try to protect base volume
+
+    chmod(0444, $newpath); # nobody should write anything
+
+    # also try to set immutable flag
+    eval { run_command(['/usr/bin/chattr', '+i', $newpath]); };
+    warn $@ if $@;
+    
+    return $newvolname;
+}
+
+my $find_free_diskname = sub {
+    my ($imgdir, $vmid, $fmt) = @_;
+
+    my $disk_ids = {};
+    PVE::Tools::dir_glob_foreach($imgdir, 
+                                qr!(vm|base)-$vmid-disk-(\d+)\..*!,
+                                sub {
+                                    my ($fn, $type, $disk) = @_; 
+                                    $disk_ids->{$disk} = 1;
+                                });
+
+    for (my $i = 1; $i < 100; $i++) {
+       if (!$disk_ids->{$i}) {
+           return "vm-$vmid-disk-$i.$fmt";
+       }
+    }
+
+    die "unable to allocate a new image name for VM $vmid in '$imgdir'\n";
+};
+
+sub clone_image {
+    my ($class, $scfg, $storeid, $volname, $vmid) = @_;
+
+    # this only works for file based storage types
+    die "storage definintion has no path\n" if !$scfg->{path};
+
+    my ($vtype, $basename, $basevmid, undef, undef, $isBase) = 
+       $class->parse_volname($volname);
+
+    die "clone_image on wrong vtype '$vtype'\n" if $vtype ne 'images';
+
+    die "clone_image onyl works on base images\n" if !$isBase;
 
     my $imagedir = $class->get_subdir($scfg, 'images');
     $imagedir .= "/$vmid";
 
     mkpath $imagedir;
 
-    if (!$name) {
-       for (my $i = 1; $i < 100; $i++) {
-           my @gr = <$imagedir/vm-$vmid-disk-$i.*>;
-           if (!scalar(@gr)) {
-               $name = "vm-$vmid-disk-$i.$fmt";
-               last;
-           }
-       }
-    }
+    my $name = &$find_free_diskname($imagedir, $vmid, "qcow2");
+
+    warn "clone $volname: $vtype, $name, $vmid to $name (base=../$basevmid/$basename)\n";
 
-    die "unable to allocate an image name for VM $vmid in storage '$storeid'\n"
-       if !$name;
+    my $newvol = "$basevmid/$basename/$vmid/$name";
 
+    my $path = $class->path($scfg, $newvol);
+
+    # Note: we use relative paths, so we need to call chdir before qemu-img  
+    eval {
+       local $CWD = $imagedir;
+
+       my $cmd = ['/usr/bin/qemu-img', 'create', '-b', "../$basevmid/$basename", 
+                  '-f', 'qcow2', $path];
+   
+       run_command($cmd);
+    };
+    my $err = $@;
+
+    die $err if $err;
+
+    return $newvol;
+}
+
+sub alloc_image {
+    my ($class, $storeid, $scfg, $vmid, $fmt, $name, $size) = @_;
+
+    my $imagedir = $class->get_subdir($scfg, 'images');
+    $imagedir .= "/$vmid";
+
+    mkpath $imagedir;
+
+    $name = &$find_free_diskname($imagedir, $vmid, $fmt) if !$name;
     my (undef, $tmpfmt) = parse_name_dir($name);
 
     die "illegal name '$name' - wrong extension for format ('$tmpfmt != '$fmt')\n"
@@ -439,16 +553,23 @@ sub alloc_image {
 }
 
 sub free_image {
-    my ($class, $storeid, $scfg, $volname) = @_;
+    my ($class, $storeid, $scfg, $volname, $isBase) = @_;
 
     my $path = $class->path($scfg, $volname);
 
     if (! -f $path) {
        warn "disk image '$path' does not exists\n";
-    } else {
-       unlink $path;
+       return undef;
     }
 
+    if ($isBase) {
+       # try to remove immutable flag
+       eval { run_command(['/usr/bin/chattr', '-i', $path]); };
+       warn $@ if $@;
+    }
+
+    unlink($path) || die "unlink '$path' failed - $!\n";
+
     return undef;
 }
 
@@ -458,15 +579,17 @@ sub file_size_info {
     my $cmd = ['/usr/bin/qemu-img', 'info', $filename];
 
     my $format;
+    my $parent;
     my $size = 0;
     my $used = 0;
 
     eval {
        run_command($cmd, timeout => $timeout, outfunc => sub {
            my $line = shift;
-
            if ($line =~ m/^file format:\s+(\S+)\s*$/) {
                $format = $1;
+           } elsif ($line =~ m/^backing file:\s(\S+)\s/) {
+               $parent = $1;
            } elsif ($line =~ m/^virtual size:\s\S+\s+\((\d+)\s+bytes\)$/) {
                $size = int($1);
            } elsif ($line =~ m/^disk size:\s+(\d+(.\d+)?)([KMGT])\s*$/) {
@@ -483,7 +606,7 @@ sub file_size_info {
        });
     };
 
-    return wantarray ? ($size, $format, $used) : $size;
+    return wantarray ? ($size, $format, $used, $parent) : $size;
 }
 
 sub volume_size_info {
@@ -520,7 +643,7 @@ sub volume_snapshot {
 
     my $cmd = ['/usr/bin/qemu-img', 'snapshot','-c', $snap, $path];
 
-    run_command($cmd, timeout => 30);
+    run_command($cmd);
 
     return undef;
 }
@@ -534,7 +657,7 @@ sub volume_snapshot_rollback {
 
     my $cmd = ['/usr/bin/qemu-img', 'snapshot','-a', $snap, $path];
 
-    run_command($cmd, timeout => 30);
+    run_command($cmd);
 
     return undef;
 }
@@ -550,7 +673,35 @@ sub volume_snapshot_delete {
 
     my $cmd = ['/usr/bin/qemu-img', 'snapshot','-d', $snap, $path];
 
-    run_command($cmd, timeout => 30);
+    run_command($cmd);
+
+    return undef;
+}
+
+sub volume_has_feature {
+    my ($class, $scfg, $feature, $storeid, $volname, $snapname, $running) = @_;
+
+    my $features = {
+        snapshot => { current => { qcow2 => 1}, snap => { qcow2 => 1} },
+        clone => { base => {qcow2 => 1, raw => 1, vmdk => 1} },
+        copy => { base => {qcow2 => 1, raw => 1, vmdk => 1},
+                 current => {qcow2 => 1, raw => 1, vmdk => 1},
+                 snap => {qcow2 => 1} },
+    };
+
+    my ($vtype, $name, $vmid, $basename, $basevmid, $isBase) =
+       $class->parse_volname($volname);
+
+    my (undef, $format) = parse_name_dir($name);
+
+    my $key = undef;
+    if($snapname){
+        $key = $snapname
+    }else{
+        $key =  $isBase ? 'base' : 'current';
+    }
+
+    return 1 if defined($features->{$feature}->{$key}->{$format});
 
     return undef;
 }
@@ -572,23 +723,29 @@ sub list_images {
 
        my $owner = $2;
        my $name = $3;
-       my $volid = "$storeid:$owner/$name";
 
-       if ($vollist) {
-           my $found = grep { $_ eq $volid } @$vollist;
-           next if !$found;
+       next if !$vollist && defined($vmid) && ($owner ne $vmid);
+
+       my ($size, $format, $used, $parent) = file_size_info($fn);
+       next if !($format && $size);
+
+       my $volid;
+       if ($parent && $parent =~ m!^../(\d+)/([^/]+\.($fmts))$!) {
+           my ($basevmid, $basename) = ($1, $2);
+           $volid = "$storeid:$basevmid/$basename/$owner/$name";
        } else {
-           next if defined($vmid) && ($owner ne $vmid);
+           $volid = "$storeid:$owner/$name";
        }
 
-       my ($size, $format, $used) = file_size_info($fn);
-
-       if ($format && $size) {
-           push @$res, {
-               volid => $volid, format => $format,
-               size => $size, vmid => $owner, used => $used };
+       if ($vollist) {
+           my $found = grep { $_ eq $volid } @$vollist;
+           next if !$found;
        }
 
+       push @$res, {
+           volid => $volid, format => $format,
+           size => $size, vmid => $owner, used => $used, parent => $parent 
+       };
     }
 
     return $res;