]> git.proxmox.com Git - pve-storage.git/blame - PVE/Storage/RBDPlugin.pm
bump version to 4.0-14
[pve-storage.git] / PVE / Storage / RBDPlugin.pm
CommitLineData
0509010d
AD
1package PVE::Storage::RBDPlugin;
2
3use strict;
4use warnings;
5use IO::File;
6use PVE::Tools qw(run_command trim);
7use PVE::Storage::Plugin;
8use PVE::JSONSchema qw(get_standard_option);
9
10use base qw(PVE::Storage::Plugin);
11
249cb647
SP
12sub rbd_unittobytes {
13 {
14 "M" => 1024*1024,
15 "G" => 1024*1024*1024,
16 "T" => 1024*1024*1024*1024,
17 }
18}
19
8897f5dc
SP
20my $add_pool_to_disk = sub {
21 my ($scfg, $disk) = @_;
22
23 my $pool = $scfg->{pool} ? $scfg->{pool} : 'rbd';
24
25 return "$pool/$disk";
26};
27
411476cd
DM
28my $rbd_cmd = sub {
29 my ($scfg, $storeid, $op, @options) = @_;
0509010d 30
e5427b00 31 my $monhost = $scfg->{monhost};
0509010d
AD
32 $monhost =~ s/;/,/g;
33
1440604a
AD
34 my $keyring = "/etc/pve/priv/ceph/${storeid}.keyring";
35 my $pool = $scfg->{pool} ? $scfg->{pool} : 'rbd';
36 my $username = $scfg->{username} ? $scfg->{username} : 'admin';
37
38 my $cmd = ['/usr/bin/rbd', '-p', $pool, '-m', $monhost];
39
40 if(-e $keyring){
41 push @$cmd, '-n', "client.$username";
42 push @$cmd, '--keyring', $keyring;
43 push @$cmd, '--auth_supported', 'cephx';
44 }else{
45 push @$cmd, '--auth_supported', 'none';
46 }
47
48 push @$cmd, $op;
3e195ccc 49
411476cd 50 push @$cmd, @options if scalar(@options);
3e195ccc 51
411476cd
DM
52 return $cmd;
53};
0509010d 54
69589444
AD
55my $rados_cmd = sub {
56 my ($scfg, $storeid, $op, @options) = @_;
57
58 my $monhost = $scfg->{monhost};
59 $monhost =~ s/;/,/g;
60
1440604a
AD
61 my $keyring = "/etc/pve/priv/ceph/${storeid}.keyring";
62 my $pool = $scfg->{pool} ? $scfg->{pool} : 'rbd';
63 my $username = $scfg->{username} ? $scfg->{username} : 'admin';
64
65 my $cmd = ['/usr/bin/rados', '-p', $pool, '-m', $monhost];
66
67 if(-e $keyring){
68 push @$cmd, '-n', "client.$username";
69 push @$cmd, '--keyring', $keyring;
70 push @$cmd, '--auth_supported', 'cephx';
71 }else{
72 push @$cmd, '--auth_supported', 'none';
73 }
74
75 push @$cmd, $op;
69589444
AD
76
77 push @$cmd, @options if scalar(@options);
78
79 return $cmd;
80};
81
c693f749
SP
82sub run_rbd_command {
83 my ($cmd, %args) = @_;
84
85 my $lasterr;
86 my $errmsg = $args{errmsg} . ": " || "";
c97c5b3b 87 if (!exists($args{errfunc})) {
c693f749
SP
88 # ' error: 2014-02-06 11:51:59.839135 7f09f94d0760 -1 librbd: snap_unprotect: can't unprotect;
89 # at least 1 child(ren) in pool cephstor1
90 $args{errfunc} = sub {
c97c5b3b
DM
91 my $line = shift;
92 if ($line =~ m/^\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}\.\d+ [0-9a-f]+ [\-\d]+ librbd: (.*)$/) {
93 $lasterr = "$1\n";
94 } else {
95 $lasterr = $line;
96 }
97 print STDERR $lasterr;
98 *STDERR->flush();
99 };
100 }
101
102 eval { run_command($cmd, %args); };
103 if (my $err = $@) {
104 die $errmsg . $lasterr if length($lasterr);
105 die $err;
c693f749
SP
106 }
107
c97c5b3b 108 return undef;
c693f749
SP
109}
110
411476cd
DM
111sub rbd_ls {
112 my ($scfg, $storeid) = @_;
d70e7f6c 113
7cb2889a 114 my $cmd = &$rbd_cmd($scfg, $storeid, 'ls', '-l');
1440604a 115 my $pool = $scfg->{pool} ? $scfg->{pool} : 'rbd';
d70e7f6c 116
411476cd 117 my $list = {};
0509010d 118
8c3abf12 119 my $parser = sub {
411476cd 120 my $line = shift;
0509010d 121
ca1e168a
AD
122 if ($line =~ m/^((vm|base)-(\d+)-disk-\d+)\s+(\d+)(M|G|T)\s((\S+)\/((vm|base)-\d+-\S+@\S+))?/) {
123 my ($image, $owner, $size, $unit, $parent) = ($1, $3, $4, $5, $8);
0509010d 124
1440604a 125 $list->{$pool}->{$image} = {
411476cd 126 name => $image,
249cb647 127 size => $size*rbd_unittobytes()->{$unit},
62b98a65 128 parent => $parent,
411476cd
DM
129 vmid => $owner
130 };
131 }
8c3abf12
DM
132 };
133
134 eval {
c693f749 135 run_rbd_command($cmd, errmsg => "rbd error", errfunc => sub {}, outfunc => $parser);
8c3abf12
DM
136 };
137 my $err = $@;
138
139 die $err if $err && $err !~ m/doesn't contain rbd images/ ;
411476cd
DM
140
141 return $list;
0509010d
AD
142}
143
62b98a65 144sub rbd_volume_info {
992e6835
AD
145 my ($scfg, $storeid, $volname, $snap) = @_;
146
147 my $cmd = undef;
148
149 if($snap){
150 $cmd = &$rbd_cmd($scfg, $storeid, 'info', $volname, '--snap', $snap);
151 }else{
152 $cmd = &$rbd_cmd($scfg, $storeid, 'info', $volname);
153 }
e110213e 154
e110213e 155 my $size = undef;
62b98a65 156 my $parent = undef;
992e6835
AD
157 my $format = undef;
158 my $protected = undef;
62b98a65 159
e110213e
AD
160 my $parser = sub {
161 my $line = shift;
162
249cb647
SP
163 if ($line =~ m/size (\d+) (M|G|T)B in (\d+) objects/) {
164 $size = $1 * rbd_unittobytes()->{$2} if ($1);
62b98a65
AD
165 } elsif ($line =~ m/parent:\s(\S+)\/(\S+)/) {
166 $parent = $2;
992e6835
AD
167 } elsif ($line =~ m/format:\s(\d+)/) {
168 $format = $1;
169 } elsif ($line =~ m/protected:\s(\S+)/) {
170 $protected = 1 if $1 eq "True";
e110213e 171 }
992e6835 172
e110213e
AD
173 };
174
c693f749 175 run_rbd_command($cmd, errmsg => "rbd error", errfunc => sub {}, outfunc => $parser);
e110213e 176
992e6835 177 return ($size, $parent, $format, $protected);
e110213e
AD
178}
179
e5427b00 180# Configuration
0509010d 181
e5427b00
AD
182PVE::JSONSchema::register_format('pve-storage-monhost', \&parse_monhost);
183sub parse_monhost {
0509010d
AD
184 my ($name, $noerr) = @_;
185
186 if ($name !~ m/^[a-z][a-z0-9\-\_\.]*[a-z0-9]$/i) {
187 return undef if $noerr;
188 die "lvm name '$name' contains illegal characters\n";
189 }
190
191 return $name;
192}
193
0509010d
AD
194sub type {
195 return 'rbd';
196}
197
198sub plugindata {
199 return {
200 content => [ {images => 1}, { images => 1 }],
201 };
202}
203
204sub properties {
205 return {
e5427b00 206 monhost => {
0509010d 207 description => "Monitors daemon ips.",
e5427b00 208 type => 'string',
0509010d 209 },
e5427b00
AD
210 pool => {
211 description => "Pool.",
0509010d
AD
212 type => 'string',
213 },
e5427b00
AD
214 username => {
215 description => "RBD Id.",
0509010d
AD
216 type => 'string',
217 },
e5427b00 218 authsupported => {
0509010d
AD
219 description => "Authsupported.",
220 type => 'string',
221 },
222 };
223}
224
225sub options {
226 return {
35d6dfaf
AD
227 nodes => { optional => 1 },
228 disable => { optional => 1 },
e5427b00 229 monhost => { fixed => 1 },
1440604a
AD
230 pool => { optional => 1 },
231 username => { optional => 1 },
0509010d
AD
232 content => { optional => 1 },
233 };
234}
235
236# Storage implementation
237
238sub parse_volname {
239 my ($class, $volname) = @_;
240
d04c7e55
AD
241 if ($volname =~ m/^((base-(\d+)-\S+)\/)?((base)?(vm)?-(\d+)-\S+)$/) {
242 return ('images', $4, $7, $2, $3, $5);
0509010d
AD
243 }
244
245 die "unable to parse rbd volume name '$volname'\n";
246}
247
248sub path {
38e6ec3f 249 my ($class, $scfg, $volname, $storeid, $snapname) = @_;
0509010d
AD
250
251 my ($vtype, $name, $vmid) = $class->parse_volname($volname);
38e6ec3f 252 $name .= '@'.$snapname if $snapname;
0509010d 253
a8176f54
AD
254 my $monhost = $scfg->{monhost};
255 $monhost =~ s/:/\\:/g;
256
1440604a
AD
257 my $pool = $scfg->{pool} ? $scfg->{pool} : 'rbd';
258 my $username = $scfg->{username} ? $scfg->{username} : 'admin';
259
260 my $path = "rbd:$pool/$name:mon_host=$monhost";
261 my $keyring = "/etc/pve/priv/ceph/${storeid}.keyring";
262
263 if(-e $keyring ){
264 $path .= ":id=$username:auth_supported=cephx:keyring=$keyring";
265 }else{
266 $path .= ":auth_supported=none";
267 }
0509010d
AD
268
269 return ($path, $vmid, $vtype);
270}
271
5b9b9b14
AD
272my $find_free_diskname = sub {
273 my ($storeid, $scfg, $vmid) = @_;
274
275 my $rbd = rbd_ls($scfg, $storeid);
1440604a 276 my $pool = $scfg->{pool} ? $scfg->{pool} : 'rbd';
5b9b9b14 277 my $disk_ids = {};
1440604a 278 my $dat = $rbd->{$pool};
5b9b9b14
AD
279
280 foreach my $image (keys %$dat) {
281 my $volname = $dat->{$image}->{name};
282 if ($volname =~ m/(vm|base)-$vmid-disk-(\d+)/){
283 $disk_ids->{$2} = 1;
284 }
285 }
286 #fix: can we search in $rbd hash key with a regex to find (vm|base) ?
287 for (my $i = 1; $i < 100; $i++) {
288 if (!$disk_ids->{$i}) {
289 return "vm-$vmid-disk-$i";
290 }
291 }
292
293 die "unable to allocate an image name for VM $vmid in storage '$storeid'\n";
294};
295
5eab0272
DM
296sub create_base {
297 my ($class, $storeid, $scfg, $volname) = @_;
298
992e6835
AD
299 my $snap = '__base__';
300
301 my ($vtype, $name, $vmid, $basename, $basevmid, $isBase) =
302 $class->parse_volname($volname);
303
304 die "create_base not possible with base image\n" if $isBase;
305
306 my ($size, $parent, $format, undef) = rbd_volume_info($scfg, $storeid, $name);
307 die "rbd volume info on '$name' failed\n" if !($size);
308
309 die "rbd image must be at format V2" if $format ne "2";
310
311 die "volname '$volname' contains wrong information about parent $parent $basename\n"
312 if $basename && (!$parent || $parent ne $basename."@".$snap);
313
314 my $newname = $name;
315 $newname =~ s/^vm-/base-/;
316
317 my $newvolname = $basename ? "$basename/$newname" : "$newname";
318
8897f5dc 319 my $cmd = &$rbd_cmd($scfg, $storeid, 'rename', &$add_pool_to_disk($scfg, $name), &$add_pool_to_disk($scfg, $newname));
c693f749 320 run_rbd_command($cmd, errmsg => "rbd rename '$name' error");
992e6835
AD
321
322 my $running = undef; #fixme : is create_base always offline ?
323
324 $class->volume_snapshot($scfg, $storeid, $newname, $snap, $running);
325
326 my (undef, undef, undef, $protected) = rbd_volume_info($scfg, $storeid, $newname, $snap);
327
328 if (!$protected){
329 my $cmd = &$rbd_cmd($scfg, $storeid, 'snap', 'protect', $newname, '--snap', $snap);
2362bc87 330 run_rbd_command($cmd, errmsg => "rbd protect $newname snap '$snap' error");
992e6835
AD
331 }
332
333 return $newvolname;
334
5eab0272
DM
335}
336
337sub clone_image {
f236eaf8 338 my ($class, $scfg, $storeid, $volname, $vmid, $snapname) = @_;
5eab0272 339
f2708285 340 my $snap = '__base__';
f236eaf8 341 $snap = $snapname if length $snapname;
f2708285
AD
342
343 my ($vtype, $basename, $basevmid, undef, undef, $isBase) =
344 $class->parse_volname($volname);
345
63da6d79
DM
346 die "$volname is not a base image and snapname is not provided\n"
347 if !$isBase && !length($snapname);
f2708285
AD
348
349 my $name = &$find_free_diskname($storeid, $scfg, $vmid);
350
f236eaf8
SP
351 warn "clone $volname: $basename snapname $snap to $name\n";
352
63da6d79 353 if (length($snapname)) {
f236eaf8
SP
354 my (undef, undef, undef, $protected) = rbd_volume_info($scfg, $storeid, $volname, $snapname);
355
63da6d79 356 if (!$protected) {
f236eaf8
SP
357 my $cmd = &$rbd_cmd($scfg, $storeid, 'snap', 'protect', $volname, '--snap', $snapname);
358 run_rbd_command($cmd, errmsg => "rbd protect $volname snap $snapname error");
359 }
360 }
f2708285
AD
361
362 my $newvol = "$basename/$name";
63da6d79
DM
363 $newvol = $name if length($snapname);
364
365 my $cmd = &$rbd_cmd($scfg, $storeid, 'clone', &$add_pool_to_disk($scfg, $basename),
366 '--snap', $snap, &$add_pool_to_disk($scfg, $name));
f2708285 367
c693f749 368 run_rbd_command($cmd, errmsg => "rbd clone '$basename' error");
f2708285
AD
369
370 return $newvol;
5eab0272
DM
371}
372
0509010d
AD
373sub alloc_image {
374 my ($class, $storeid, $scfg, $vmid, $fmt, $name, $size) = @_;
375
376
e5427b00 377 die "illegal name '$name' - sould be 'vm-$vmid-*'\n"
0509010d 378 if $name && $name !~ m/^vm-$vmid-/;
0509010d 379
3fad2603 380 $name = &$find_free_diskname($storeid, $scfg, $vmid) if !$name;
0509010d 381
a8c3f8f6 382 my $cmd = &$rbd_cmd($scfg, $storeid, 'create', '--image-format' , 2, '--size', int(($size+1023)/1024), $name);
c693f749 383 run_rbd_command($cmd, errmsg => "rbd create $name' error");
0509010d
AD
384
385 return $name;
386}
387
388sub free_image {
32437ed2 389 my ($class, $storeid, $scfg, $volname, $isBase) = @_;
0509010d 390
42d07b9a
AD
391 my ($vtype, $name, $vmid, undef, undef, undef) =
392 $class->parse_volname($volname);
393
394 if ($isBase) {
395 my $snap = '__base__';
396 my (undef, undef, undef, $protected) = rbd_volume_info($scfg, $storeid, $name, $snap);
397 if ($protected){
398 my $cmd = &$rbd_cmd($scfg, $storeid, 'snap', 'unprotect', $name, '--snap', $snap);
2362bc87 399 run_rbd_command($cmd, errmsg => "rbd unprotect $name snap '$snap' error");
42d07b9a
AD
400 }
401 }
402
403 my $cmd = &$rbd_cmd($scfg, $storeid, 'snap', 'purge', $name);
c693f749 404 run_rbd_command($cmd, errmsg => "rbd snap purge '$volname' error");
c30470a3 405
42d07b9a 406 $cmd = &$rbd_cmd($scfg, $storeid, 'rm', $name);
c693f749 407 run_rbd_command($cmd, errmsg => "rbd rm '$volname' error");
0509010d
AD
408
409 return undef;
410}
411
412sub list_images {
413 my ($class, $storeid, $scfg, $vmid, $vollist, $cache) = @_;
414
e5427b00 415 $cache->{rbd} = rbd_ls($scfg, $storeid) if !$cache->{rbd};
1440604a 416 my $pool = $scfg->{pool} ? $scfg->{pool} : 'rbd';
411476cd 417
0509010d
AD
418 my $res = [];
419
1440604a 420 if (my $dat = $cache->{rbd}->{$pool}) {
0509010d
AD
421 foreach my $image (keys %$dat) {
422
423 my $volname = $dat->{$image}->{name};
424
425 my $volid = "$storeid:$volname";
426
0509010d
AD
427 my $owner = $dat->{$volname}->{vmid};
428 if ($vollist) {
429 my $found = grep { $_ eq $volid } @$vollist;
430 next if !$found;
431 } else {
432 next if defined ($vmid) && ($owner ne $vmid);
433 }
434
435 my $info = $dat->{$volname};
436 $info->{volid} = $volid;
411476cd 437 $info->{format} = 'raw';
0509010d
AD
438
439 push @$res, $info;
440 }
441 }
442
411476cd 443 return $res;
0509010d
AD
444}
445
0509010d
AD
446sub status {
447 my ($class, $storeid, $scfg, $cache) = @_;
448
69589444
AD
449 my $cmd = &$rados_cmd($scfg, $storeid, 'df');
450
451 my $stats = {};
452
453 my $parser = sub {
454 my $line = shift;
455 if ($line =~ m/^\s+total\s(\S+)\s+(\d+)/) {
456 $stats->{$1} = $2;
457 }
458 };
459
460 eval {
c693f749 461 run_rbd_command($cmd, errmsg => "rados error", errfunc => sub {}, outfunc => $parser);
69589444
AD
462 };
463
464 my $total = $stats->{space} ? $stats->{space}*1024 : 0;
465 my $free = $stats->{avail} ? $stats->{avail}*1024 : 0;
466 my $used = $stats->{used} ? $stats->{used}*1024: 0;
0509010d 467 my $active = 1;
0509010d 468
411476cd 469 return ($total, $free, $used, $active);
0509010d
AD
470}
471
472sub activate_storage {
473 my ($class, $storeid, $scfg, $cache) = @_;
474 return 1;
475}
476
477sub deactivate_storage {
478 my ($class, $storeid, $scfg, $cache) = @_;
479 return 1;
480}
481
482sub activate_volume {
483 my ($class, $storeid, $scfg, $volname, $exclusive, $cache) = @_;
484 return 1;
485}
486
487sub deactivate_volume {
488 my ($class, $storeid, $scfg, $volname, $exclusive, $cache) = @_;
489 return 1;
490}
491
0002d9cc
AD
492sub volume_size_info {
493 my ($class, $scfg, $storeid, $volname, $timeout) = @_;
494
81d1d017
AD
495 my ($vtype, $name, $vmid) = $class->parse_volname($volname);
496 my ($size, undef) = rbd_volume_info($scfg, $storeid, $name);
62b98a65 497 return $size;
0002d9cc
AD
498}
499
e7a42a76
AD
500sub volume_resize {
501 my ($class, $scfg, $storeid, $volname, $size, $running) = @_;
502
503 return 1 if $running;
504
478fc06c
AD
505 my ($vtype, $name, $vmid) = $class->parse_volname($volname);
506
507 my $cmd = &$rbd_cmd($scfg, $storeid, 'resize', '--size', ($size/1024/1024), $name);
c693f749 508 run_rbd_command($cmd, errmsg => "rbd resize '$volname' error");
e7a42a76
AD
509 return undef;
510}
511
788dd8e1 512sub volume_snapshot {
f5640e7d 513 my ($class, $scfg, $storeid, $volname, $snap) = @_;
788dd8e1 514
9af33ed0
AD
515 my ($vtype, $name, $vmid) = $class->parse_volname($volname);
516
517 my $cmd = &$rbd_cmd($scfg, $storeid, 'snap', 'create', '--snap', $snap, $name);
c693f749 518 run_rbd_command($cmd, errmsg => "rbd snapshot '$volname' error");
788dd8e1
AD
519 return undef;
520}
521
5a2b2e2f
AD
522sub volume_snapshot_rollback {
523 my ($class, $scfg, $storeid, $volname, $snap) = @_;
524
c6ce2cc8
AD
525 my ($vtype, $name, $vmid) = $class->parse_volname($volname);
526
527 my $cmd = &$rbd_cmd($scfg, $storeid, 'snap', 'rollback', '--snap', $snap, $name);
2362bc87 528 run_rbd_command($cmd, errmsg => "rbd snapshot $volname to '$snap' error");
5a2b2e2f
AD
529}
530
cce29bcd
AD
531sub volume_snapshot_delete {
532 my ($class, $scfg, $storeid, $volname, $snap, $running) = @_;
533
534 return 1 if $running;
535
c78cb110
AD
536 my ($vtype, $name, $vmid) = $class->parse_volname($volname);
537
f90a0a20
SP
538 my (undef, undef, undef, $protected) = rbd_volume_info($scfg, $storeid, $name, $snap);
539 if ($protected){
540 my $cmd = &$rbd_cmd($scfg, $storeid, 'snap', 'unprotect', $name, '--snap', $snap);
541 run_rbd_command($cmd, errmsg => "rbd unprotect $name snap '$snap' error");
542 }
543
c78cb110 544 my $cmd = &$rbd_cmd($scfg, $storeid, 'snap', 'rm', '--snap', $snap, $name);
c693f749
SP
545
546 run_rbd_command($cmd, errmsg => "rbd snapshot '$volname' error");
547
cce29bcd
AD
548 return undef;
549}
550
774f21b9
AD
551sub volume_has_feature {
552 my ($class, $scfg, $feature, $storeid, $volname, $snapname, $running) = @_;
553
554 my $features = {
5649ccfe 555 snapshot => { current => 1, snap => 1},
44c3689a 556 clone => { base => 1, snap => 1},
5649ccfe
AD
557 template => { current => 1},
558 copy => { base => 1, current => 1, snap => 1},
774f21b9
AD
559 };
560
1e7ae581
AD
561 my ($vtype, $name, $vmid, $basename, $basevmid, $isBase) =
562 $class->parse_volname($volname);
563
564 my $key = undef;
565 if($snapname){
2c5a7097 566 $key = 'snap';
1e7ae581
AD
567 }else{
568 $key = $isBase ? 'base' : 'current';
569 }
570 return 1 if $features->{$feature}->{$key};
774f21b9
AD
571
572 return undef;
573}
574
0509010d 5751;