]> git.proxmox.com Git - pve-storage.git/blobdiff - PVE/API2/Storage/Config.pm
api: storage create/update: return parts of the configuration
[pve-storage.git] / PVE / API2 / Storage / Config.pm
index e5c57ee11c760a3fab89b124b0cc6cbbc880e71e..6e23427089a72ac24077e1ac16c2367a76d5c24b 100755 (executable)
@@ -8,6 +8,8 @@ use PVE::Tools qw(extract_param);
 use PVE::Cluster qw(cfs_read_file cfs_write_file);
 use PVE::Storage;
 use PVE::Storage::Plugin;
+use PVE::Storage::LVMPlugin;
+use PVE::Storage::CIFSPlugin;
 use HTTP::Status qw(:constants);
 use Storable qw(dclone);
 use PVE::JSONSchema qw(get_standard_option);
@@ -37,20 +39,20 @@ my $api_storage_config = sub {
 };
 
 __PACKAGE__->register_method ({
-    name => 'index', 
+    name => 'index',
     path => '',
     method => 'GET',
     description => "Storage index.",
-    permissions => { 
+    permissions => {
        description => "Only list entries where you have 'Datastore.Audit' or 'Datastore.AllocateSpace' permissions on '/storage/<storage>'",
        user => 'all',
     },
     parameters => {
-       additionalProperties => 0,
+       additionalProperties => 0,
        properties => {
-           type => { 
+           type => {
                description => "Only list storage of specific type",
-               type => 'string', 
+               type => 'string',
                enum => $storage_type_enum,
                optional => 1,
            },
@@ -70,7 +72,7 @@ __PACKAGE__->register_method ({
        my $rpcenv = PVE::RPCEnvironment::get();
        my $authuser = $rpcenv->get_user();
 
-       my $cfg = cfs_read_file("storage.cfg");
+       my $cfg = PVE::Storage::config();
 
        my @sids = PVE::Storage::storage_ids($cfg);
 
@@ -88,93 +90,138 @@ __PACKAGE__->register_method ({
     }});
 
 __PACKAGE__->register_method ({
-    name => 'read', 
+    name => 'read',
     path => '{storage}',
     method => 'GET',
     description => "Read storage configuration.",
-    permissions => { 
+    permissions => {
        check => ['perm', '/storage/{storage}', ['Datastore.Allocate']],
     },
     parameters => {
-       additionalProperties => 0,
+       additionalProperties => 0,
        properties => {
            storage => get_standard_option('pve-storage-id'),
        },
     },
-    returns => {},
+    returns => { type => 'object' },
     code => sub {
        my ($param) = @_;
 
-       my $cfg = cfs_read_file("storage.cfg");
+       my $cfg = PVE::Storage::config();
 
        return &$api_storage_config($cfg, $param->{storage});
     }});
 
+my sub extract_sensitive_params :prototype($$) {
+    my ($param, $delete_list) = @_;
+
+    my $sensitive;
+
+    my %delete = map { $_ => 1 } ($delete_list || [])->@*;
+
+    # always extract pw and keys, so they don't get written to the www-data readable scfg
+    for my $opt (qw(password encryption-key)) {
+       # First handle deletions as explicitly setting `undef`, afterwards new values may override
+       # it.
+       if (exists($delete{$opt})) {
+           $sensitive->{$opt} = undef;
+       }
+
+       if (defined(my $value = extract_param($param, $opt))) {
+           $sensitive->{$opt} = $value;
+       }
+    }
+
+    return $sensitive;
+}
+
 __PACKAGE__->register_method ({
     name => 'create',
     protected => 1,
-    path => '', 
+    path => '',
     method => 'POST',
     description => "Create a new storage.",
-    permissions => { 
+    permissions => {
        check => ['perm', '/storage', ['Datastore.Allocate']],
     },
     parameters => PVE::Storage::Plugin->createSchema(),
-    returns => { type => 'null' },
+    returns => {
+       type => 'object',
+       properties => {
+           storage => {
+               description => "The ID of the created storage.",
+               type => 'string',
+           },
+           type => {
+               description => "The type of the created storage.",
+               type => 'string',
+               enum => $storage_type_enum,
+           },
+           config => {
+               description => "Partial, possible server generated, configuration properties.",
+               type => 'object',
+               optional => 1,
+               additionalProperties => 1,
+               properties => {
+                   'encryption-key' => {
+                       description => "The, possible auto-generated, encryption-key.",
+                       optional => 1,
+                       type => 'string',
+                   },
+               },
+           },
+       },
+    },
     code => sub {
        my ($param) = @_;
 
        my $type = extract_param($param, 'type');
        my $storeid = extract_param($param, 'storage');
 
-       if ($param->{portal}) {
-           $param->{portal} = PVE::Storage::resolv_portal($param->{portal});
-       }
+       # revent an empty nodelist.
+       # fix me in section config create never need an empty entity.
+       delete $param->{nodes} if !$param->{nodes};
+
+       my $sensitive = extract_sensitive_params($param, []);
 
        my $plugin = PVE::Storage::Plugin->lookup($type);
        my $opts = $plugin->check_config($storeid, $param, 1, 1);
 
-        PVE::Storage::lock_storage_config(
-           sub {
-
-               my $cfg = cfs_read_file('storage.cfg');
+       my $returned_config;
+       PVE::Storage::lock_storage_config(sub {
+           my $cfg = PVE::Storage::config();
 
-               if (my $scfg = PVE::Storage::storage_config($cfg, $storeid, 1)) {
-                   die "storage ID '$storeid' already defined\n";
-               }
-
-               $cfg->{ids}->{$storeid} = $opts;
-
-               if ($type eq 'lvm' && $opts->{base}) {
-
-                   my ($baseid, $volname) = PVE::Storage::parse_volume_id($opts->{base});
-
-                   my $basecfg = PVE::Storage::storage_config ($cfg, $baseid, 1);
-                   die "base storage ID '$baseid' does not exist\n" if !$basecfg;
-       
-                   # we only support iscsi for now
-                   if (!($basecfg->{type} eq 'iscsi')) {
-                       die "unsupported base type '$basecfg->{type}'";
-                   }
-
-                   my $path = PVE::Storage::path($cfg, $opts->{base});
+           if (my $scfg = PVE::Storage::storage_config($cfg, $storeid, 1)) {
+               die "storage ID '$storeid' already defined\n";
+           }
 
-                   PVE::Storage::activate_storage($cfg, $baseid);
+           $cfg->{ids}->{$storeid} = $opts;
 
-                   PVE::Storage::LVMPlugin::lvm_create_volume_group($path, $opts->{vgname}, $opts->{shared});
-               }
+           $returned_config = $plugin->on_add_hook($storeid, $opts, %$sensitive);
 
+           eval {
                # try to activate if enabled on local node,
                # we only do this to detect errors/problems sooner
                if (PVE::Storage::storage_check_enabled($cfg, $storeid, undef, 1)) {
                    PVE::Storage::activate_storage($cfg, $storeid);
                }
+           };
+           if (my $err = $@) {
+               eval { $plugin->on_delete_hook($storeid, $opts) };
+               warn "$@\n" if $@;
+               die $err;
+           }
 
-               cfs_write_file('storage.cfg', $cfg);
-           
-           }, "create storage failed");
+           PVE::Storage::write_config($cfg);
 
-       return undef;
+       }, "create storage failed");
+
+       my $res = {
+           storage => $storeid,
+           type => $type,
+       };
+       $res->{config} = $returned_config if $returned_config;
+       return $res;
     }});
 
 __PACKAGE__->register_method ({
@@ -183,38 +230,92 @@ __PACKAGE__->register_method ({
     path => '{storage}',
     method => 'PUT',
     description => "Update storage configuration.",
-    permissions => { 
+    permissions => {
        check => ['perm', '/storage', ['Datastore.Allocate']],
     },
     parameters => PVE::Storage::Plugin->updateSchema(),
-    returns => { type => 'null' },
+    returns => {
+       type => 'object',
+       properties => {
+           storage => {
+               description => "The ID of the created storage.",
+               type => 'string',
+           },
+           type => {
+               description => "The type of the created storage.",
+               type => 'string',
+               enum => $storage_type_enum,
+           },
+           config => {
+               description => "Partial, possible server generated, configuration properties.",
+               type => 'object',
+               optional => 1,
+               additionalProperties => 1,
+               properties => {
+                   'encryption-key' => {
+                       description => "The, possible auto-generated, encryption-key.",
+                       optional => 1,
+                       type => 'string',
+                   },
+               },
+           },
+       },
+    },
     code => sub {
        my ($param) = @_;
 
        my $storeid = extract_param($param, 'storage');
        my $digest = extract_param($param, 'digest');
+       my $delete = extract_param($param, 'delete');
+       my $type;
 
-        PVE::Storage::lock_storage_config(
-        sub {
+       if ($delete) {
+           $delete = [ PVE::Tools::split_list($delete) ];
+       }
 
-           my $cfg = cfs_read_file('storage.cfg');
+       my $returned_config;
+        PVE::Storage::lock_storage_config(sub {
+           my $cfg = PVE::Storage::config();
 
            PVE::SectionConfig::assert_if_modified($cfg, $digest);
 
            my $scfg = PVE::Storage::storage_config($cfg, $storeid);
+           $type = $scfg->{type};
 
-           my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
+           my $sensitive = extract_sensitive_params($param, $delete);
+
+           my $plugin = PVE::Storage::Plugin->lookup($type);
            my $opts = $plugin->check_config($storeid, $param, 0, 1);
 
-           foreach my $k (%$opts) {
+           if ($delete) {
+               my $options = $plugin->private()->{options}->{$type};
+               foreach my $k (@$delete) {
+                   my $d = $options->{$k} || die "no such option '$k'\n";
+                   die "unable to delete required option '$k'\n" if !$d->{optional};
+                   die "unable to delete fixed option '$k'\n" if $d->{fixed};
+                   die "cannot set and delete property '$k' at the same time!\n"
+                       if defined($opts->{$k});
+
+                   delete $scfg->{$k};
+               }
+           }
+
+           $returned_config = $plugin->on_update_hook($storeid, $opts, %$sensitive);
+
+           for my $k (keys %$opts) {
                $scfg->{$k} = $opts->{$k};
            }
 
-           cfs_write_file('storage.cfg', $cfg);
+           PVE::Storage::write_config($cfg);
 
-           }, "update storage failed");
+       }, "update storage failed");
 
-       return undef;
+       my $res = {
+           storage => $storeid,
+           type => $type,
+       };
+       $res->{config} = $returned_config if $returned_config;
+       return $res;
     }});
 
 __PACKAGE__->register_method ({
@@ -223,13 +324,15 @@ __PACKAGE__->register_method ({
     path => '{storage}', # /storage/config/{storage}
     method => 'DELETE',
     description => "Delete storage configuration.",
-    permissions => { 
+    permissions => {
        check => ['perm', '/storage', ['Datastore.Allocate']],
     },
     parameters => {
-       additionalProperties => 0,
-       properties => { 
-           storage => get_standard_option('pve-storage-id'),
+       additionalProperties => 0,
+       properties => {
+           storage => get_standard_option('pve-storage-id', {
+               completion => \&PVE::Storage::complete_storage,
+           }),
        },
     },
     returns => { type => 'null' },
@@ -238,22 +341,23 @@ __PACKAGE__->register_method ({
 
        my $storeid = extract_param($param, 'storage');
 
-        PVE::Storage::lock_storage_config(
-           sub {
+        PVE::Storage::lock_storage_config(sub {
+           my $cfg = PVE::Storage::config();
 
-               my $cfg = cfs_read_file('storage.cfg');
+           my $scfg = PVE::Storage::storage_config($cfg, $storeid);
+
+           die "can't remove storage - storage is used as base of another storage\n"
+               if PVE::Storage::storage_is_used($cfg, $storeid);
 
-               die "storage '$storeid' does not exist\n"
-                   if !($cfg->{ids}->{$storeid});
+           my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
 
-               die "can't remove storage - storage is used as base of another storage\n"
-                   if PVE::Storage::storage_is_used($cfg, $storeid);
+           $plugin->on_delete_hook($storeid, $scfg);
 
-               delete $cfg->{ids}->{$storeid};
+           delete $cfg->{ids}->{$storeid};
 
-               cfs_write_file('storage.cfg', $cfg);
+           PVE::Storage::write_config($cfg);
 
-           }, "delete storage failed");
+       }, "delete storage failed");
 
        PVE::AccessControl::remove_storage_access($storeid);