[pve-devel] applied: [PATCH storage 7/8] add API for LVMThin management

Dietmar Maurer dietmar at proxmox.com
Thu Aug 2 11:35:04 CEST 2018


applied with cleanups - see comments inline:

> On July 30, 2018 at 10:26 AM Dominik Csapak <d.csapak at proxmox.com> wrote:
> 
> 
> like the LVM API, but return an array for the list,
> because we do not have nested data here
> 
> and create a vg and thin lv with the name given and use the full size
> 
> Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
> ---
>  PVE/API2/Disks.pm         |   7 +++
>  PVE/API2/Disks/LVMThin.pm | 144
> ++++++++++++++++++++++++++++++++++++++++++++++
>  PVE/API2/Disks/Makefile   |   3 +-
>  3 files changed, 153 insertions(+), 1 deletion(-)
>  create mode 100644 PVE/API2/Disks/LVMThin.pm
> 
> diff --git a/PVE/API2/Disks.pm b/PVE/API2/Disks.pm
> index 9d437d0..ff94110 100644
> --- a/PVE/API2/Disks.pm
> +++ b/PVE/API2/Disks.pm
> @@ -9,6 +9,7 @@ use HTTP::Status qw(:constants);
>  use PVE::JSONSchema qw(get_standard_option);
>  
>  use PVE::API2::Disks::LVM;
> +use PVE::API2::Disks::LVMThin;
>  
>  use PVE::RESTHandler;
>  
> @@ -20,6 +21,11 @@ __PACKAGE__->register_method ({
>  });
>  
>  __PACKAGE__->register_method ({
> +   subclass => "PVE::API2::Disks::LVMThin",
> +   path => 'lvmthin',
> +});
> +
> +__PACKAGE__->register_method ({
>      name => 'index',
>      path => '',
>      method => 'GET',
> @@ -48,6 +54,7 @@ __PACKAGE__->register_method ({
>  	    { name => 'initgpt' },
>  	    { name => 'smart' },
>  	    { name => 'lvm' },
> +	    { name => 'lvmthin' },
>  	    ];
>  
>  	return $result;
> diff --git a/PVE/API2/Disks/LVMThin.pm b/PVE/API2/Disks/LVMThin.pm
> new file mode 100644
> index 0000000..3a47054
> --- /dev/null
> +++ b/PVE/API2/Disks/LVMThin.pm
> @@ -0,0 +1,144 @@
> +package PVE::API2::Disks::LVMThin;
> +
> +use strict;
> +use warnings;
> +
> +use PVE::Storage::LvmThinPlugin;
> +use PVE::Diskmanage;
> +use PVE::JSONSchema qw(get_standard_option);
> +use PVE::API2::Storage::Config;
> +use PVE::Storage;
> +use PVE::Tools qw(run_command lock_file);
> +
> +use PVE::RPCEnvironment;
> +use PVE::RESTHandler;
> +
> +use base qw(PVE::RESTHandler);
> +
> +__PACKAGE__->register_method ({
> +    name => 'index',
> +    path => '',
> +    method => 'GET',
> +    proxyto => 'node',
> +    protected => 1,
> +    permissions => {
> +	check => ['perm', '/', ['Sys.Audit', 'Datastore.Audit'], any => 1],
> +    },
> +    description => "List LVM thinpools",
> +    parameters => {
> +	additionalProperties => 0,
> +	properties => {
> +	    node => get_standard_option('pve-node'),
> +	},
> +    },
> +    returns => {
> +	type => 'array',
> +	items => {
> +	    type => 'object',
> +	    properties => {
> +		lv => {
> +		    type => 'string',
> +		    description => 'The name of the thinpool',

I always add a '.' to the description.

> +		},
> +		lv_size => {
> +		    type => 'integer',
> +		    description => 'The size of the thinpool in bytes',
> +		},
> +		used => {
> +		    type => 'integer',
> +		    description => 'The used bytes of the thinpool',
> +		},
> +		metadata_size => {
> +		    type => 'integer',
> +		    description => 'The size of the metadata lv in bytes',
> +		},
> +		metadata_used => {
> +		    type => 'integer',
> +		    description => 'The used bytes of the metadata lv',
> +		},
> +	    },
> +	},
> +    },
> +    code => sub {
> +	my ($param) = @_;
> +	return PVE::Storage::LvmThinPlugin::list_thinpools(undef, 1);


return PVE::Storage::LvmThinPlugin::list_thinpools();


> +    }});
> +
> +__PACKAGE__->register_method ({
> +    name => 'create',
> +    path => '',
> +    method => 'POST',
> +    proxyto => 'node',
> +    protected => 1,
> +    permissions => {
> +	check => ['perm', '/', ['Sys.Modify', 'Datastore.Allocate']],
> +    },
> +    description => "Create an LVM thinpool",
> +    parameters => {
> +	additionalProperties => 0,
> +	properties => {
> +	    node => get_standard_option('pve-node'),
> +	    name => get_standard_option('pve-storage-id'),
> +	    device => {
> +		type => 'string',
> +		description => 'The block device you want to create the thinpool on',
> +	    },
> +	    add_storage => {
> +		description => "Configure storage using the thinpool",
> +		type => 'boolean',
> +		optional => 1,
> +		default => 0,
> +	    },
> +	},
> +    },
> +    returns => { type => 'string' },
> +    code => sub {
> +	my ($param) = @_;
> +
> +	my $rpcenv = PVE::RPCEnvironment::get();
> +	my $user = $rpcenv->get_user();
> +
> +	my $name = $param->{name};
> +	my $dev = $param->{device};
> +	my $node = $param->{node};
> +
> +	$dev = PVE::Diskmanage::verify_blockdev_path($dev);
> +	die "device $dev is already in use\n" if
> PVE::Diskmanage::disk_is_used($dev);
> +
> +	my $cfg = PVE::Storage::config();
> +
> +	if (my $scfg = PVE::Storage::storage_config($cfg, $name, 1)) {
> +	    die "storage ID '$name' already defined\n";
> +	}
> +
> +	my $worker = sub {
> +	    my $res = lock_file('/run/lock/pve-diskmanage.lck', 10, sub {

	    lock_file('/run/lock/pve-diskmanage.lck', undef, sub {

> +		PVE::Storage::LVMPlugin::lvm_create_volume_group($dev, $name);
> +
> +		# create thinpool with size 100%, let lvm handle the metadata size
> +		run_command(['/sbin/lvcreate', '--type', 'thin-pool', '-l100%FREE', '-n',
> $name, $name]);
> +
> +		if ($param->{add_storage}) {
> +		    my $storage_params = {
> +			type => 'lvmthin',
> +			vgname => $name,
> +			thinpool => $name,
> +			storage => $name,
> +			content => 'rootdir,images',
> +			nodes => $node,
> +		    };
> +
> +		    PVE::API2::Storage::Config->create($storage_params);
> +		}
> +
> +		return 1;

return 1 is not required/used

> +	    });
> +
> +	    die "$@" if !$res && $@;

	    die $@ if $@;

Note: Please do not convert $@ into a string (this is allowed to be a
PVE::Exception object.




More information about the pve-devel mailing list