]> git.proxmox.com Git - pve-storage.git/blame - PVE/Storage/ISCSIDirectPlugin.pm
bump version to 4.0-22
[pve-storage.git] / PVE / Storage / ISCSIDirectPlugin.pm
CommitLineData
b345cad3
AD
1package PVE::Storage::ISCSIDirectPlugin;
2
3use strict;
4use warnings;
5use IO::File;
6use HTTP::Request;
7use LWP::UserAgent;
8use PVE::Tools qw(run_command file_read_firstline trim dir_glob_regex dir_glob_foreach);
9use PVE::Storage::Plugin;
10use PVE::JSONSchema qw(get_standard_option);
11
12use base qw(PVE::Storage::Plugin);
13
2677f623
DM
14sub iscsi_ls {
15 my ($scfg, $storeid) = @_;
b345cad3
AD
16
17 my $portal = $scfg->{portal};
18 my $cmd = ['/usr/bin/iscsi-ls', '-s', 'iscsi://'.$portal ];
19 my $list = {};
3a0c3246
AD
20 my %unittobytes = (
21 "k" => 1024,
22 "M" => 1024*1024,
23 "G" => 1024*1024*1024,
24 "T" => 1024*1024*1024*1024
25 );
b345cad3
AD
26 eval {
27
3a0c3246 28 run_command($cmd, errmsg => "iscsi error", errfunc => sub {}, outfunc => sub {
b345cad3
AD
29 my $line = shift;
30 $line = trim($line);
3a0c3246
AD
31 if( $line =~ /Lun:(\d+)\s+([A-Za-z0-9\-\_\.\:]*)\s+\(Size:([0-9\.]*)(k|M|G|T)\)/ ) {
32 my $image = "lun".$1;
b345cad3 33 my $size = $3;
3a0c3246
AD
34 my $unit = $4;
35
b345cad3
AD
36 $list->{$storeid}->{$image} = {
37 name => $image,
3a0c3246 38 size => $size * $unittobytes{$unit},
b345cad3
AD
39 };
40 }
41 });
42 };
43
44 my $err = $@;
45 die $err if $err && $err !~ m/TESTUNITREADY failed with SENSE KEY/ ;
3a0c3246 46
b345cad3 47 return $list;
3a0c3246 48
b345cad3
AD
49}
50
51# Configuration
52
53sub type {
54 return 'iscsidirect';
55}
56
57sub plugindata {
58 return {
59 content => [ {images => 1, none => 1}, { images => 1 }],
60 };
61}
62
63sub options {
64 return {
65 portal => { fixed => 1 },
66 target => { fixed => 1 },
67 nodes => { optional => 1},
68 disable => { optional => 1},
69 content => { optional => 1},
70 };
71}
72
b345cad3
AD
73# Storage implementation
74
75sub parse_volname {
76 my ($class, $volname) = @_;
77
2677f623 78
3a0c3246 79 if ($volname =~ m/^lun(\d+)$/) {
7800e84d 80 return ('images', $1, undef, undef, undef, undef, 'raw');
b345cad3
AD
81 }
82
83 die "unable to parse iscsi volume name '$volname'\n";
84
85}
86
87sub path {
e67069eb
DM
88 my ($class, $scfg, $volname, $storeid, $snapname) = @_;
89
90 die "volume snapshot is not possible on iscsi device"
91 if defined($snapname);
b345cad3
AD
92
93 my ($vtype, $lun, $vmid) = $class->parse_volname($volname);
94
95 my $target = $scfg->{target};
96 my $portal = $scfg->{portal};
97
98 my $path = "iscsi://$portal/$target/$lun";
99
100 return ($path, $vmid, $vtype);
101}
102
5eab0272
DM
103sub create_base {
104 my ($class, $storeid, $scfg, $volname) = @_;
105
106 die "can't create base images in iscsi storage\n";
107}
108
109sub clone_image {
f236eaf8 110 my ($class, $scfg, $storeid, $volname, $vmid, $snap) = @_;
5eab0272
DM
111
112 die "can't clone images in iscsi storage\n";
113}
b345cad3
AD
114
115sub alloc_image {
116 my ($class, $storeid, $scfg, $vmid, $fmt, $name, $size) = @_;
117
118 die "can't allocate space in iscsi storage\n";
119}
120
121sub free_image {
32437ed2 122 my ($class, $storeid, $scfg, $volname, $isBase) = @_;
b345cad3
AD
123
124 die "can't free space in iscsi storage\n";
125}
126
127
128sub list_images {
129 my ($class, $storeid, $scfg, $vmid, $vollist, $cache) = @_;
130
131 my $res = [];
132
133 $cache->{directiscsi} = iscsi_ls($scfg,$storeid) if !$cache->{directiscsi};
134
135 # we have no owner for iscsi devices
136
137 my $target = $scfg->{target};
138
139 if (my $dat = $cache->{directiscsi}->{$storeid}) {
140
141 foreach my $volname (keys %$dat) {
142
143 my $volid = "$storeid:$volname";
144
145 if ($vollist) {
146 my $found = grep { $_ eq $volid } @$vollist;
147 next if !$found;
148 } else {
149 # we have no owner for iscsi devices
150 next if defined($vmid);
151 }
152
153 my $info = $dat->{$volname};
154 $info->{volid} = $volid;
155
156 push @$res, $info;
157 }
158 }
159
160 return $res;
161}
162
163
164sub status {
165 my ($class, $storeid, $scfg, $cache) = @_;
166
167 my $total = 0;
168 my $free = 0;
169 my $used = 0;
170 my $active = 1;
171 return ($total,$free,$used,$active);
172
173 return undef;
174}
175
176sub activate_storage {
177 my ($class, $storeid, $scfg, $cache) = @_;
178 return 1;
179}
180
181sub deactivate_storage {
182 my ($class, $storeid, $scfg, $cache) = @_;
183 return 1;
184}
185
186sub activate_volume {
c8943a85 187 my ($class, $storeid, $scfg, $volname, $cache) = @_;
b345cad3
AD
188 return 1;
189}
190
191sub deactivate_volume {
c8943a85 192 my ($class, $storeid, $scfg, $volname, $cache) = @_;
b345cad3
AD
193 return 1;
194}
195
baf69659
AD
196sub volume_size_info {
197 my ($class, $scfg, $storeid, $volname, $timeout) = @_;
198
6f714585
AD
199 my $vollist = iscsi_ls($scfg,$storeid);
200 my $info = $vollist->{$storeid}->{$volname};
201
202 return $info->{size};
baf69659
AD
203}
204
3bac137c
AD
205sub volume_resize {
206 my ($class, $scfg, $storeid, $volname, $size, $running) = @_;
207 die "volume resize is not possible on iscsi device";
208}
209
ec409fb4 210sub volume_snapshot {
f5640e7d 211 my ($class, $scfg, $storeid, $volname, $snap) = @_;
ec409fb4
AD
212 die "volume snapshot is not possible on iscsi device";
213}
214
9f02df83
AD
215sub volume_snapshot_rollback {
216 my ($class, $scfg, $storeid, $volname, $snap) = @_;
217 die "volume snapshot rollback is not possible on iscsi device";
218}
219
b2c1ab4b
AD
220sub volume_snapshot_delete {
221 my ($class, $scfg, $storeid, $volname, $snap) = @_;
222 die "volume snapshot delete is not possible on iscsi device";
223}
224
cbc6fef3
AD
225sub volume_has_feature {
226 my ($class, $scfg, $feature, $storeid, $volname, $snapname, $running) = @_;
227
39ab682a
AD
228 my $features = {
229 copy => { current => 1},
230 };
231
232 my ($vtype, $name, $vmid, $basename, $basevmid, $isBase) =
233 $class->parse_volname($volname);
234
235 my $key = undef;
236 if($snapname){
2c5a7097 237 $key = 'snap';
39ab682a
AD
238 }else{
239 $key = $isBase ? 'base' : 'current';
240 }
241 return 1 if $features->{$feature}->{$key};
242
cbc6fef3
AD
243 return undef;
244}
245
b345cad3 2461;