]> git.proxmox.com Git - pve-storage.git/blame - PVE/Storage/CIFSPlugin.pm
fix prune-backups validation (again)
[pve-storage.git] / PVE / Storage / CIFSPlugin.pm
CommitLineData
4792d439
WL
1package PVE::Storage::CIFSPlugin;
2
3use strict;
4use warnings;
5use Net::IP;
6use PVE::Tools qw(run_command);
7use PVE::ProcFSTools;
8use File::Path;
9use PVE::Storage::Plugin;
10use PVE::JSONSchema qw(get_standard_option);
11
12use base qw(PVE::Storage::Plugin);
13
14# CIFS helper functions
15
16sub cifs_is_mounted {
17 my ($server, $share, $mountpoint, $mountdata) = @_;
18
19 $server = "[$server]" if Net::IP::ip_is_ipv6($server);
20 my $source = "//${server}/$share";
21 $mountdata = PVE::ProcFSTools::parse_proc_mounts() if !$mountdata;
22
23 return $mountpoint if grep {
24 $_->[2] =~ /^cifs/ &&
25 $_->[0] =~ m|^\Q$source\E/?$| &&
26 $_->[1] eq $mountpoint
27 } @$mountdata;
28 return undef;
29}
30
a9db2ca8
DM
31sub cifs_cred_file_name {
32 my ($storeid) = @_;
f33533d4 33 return "/etc/pve/priv/storage/${storeid}.pw";
a9db2ca8
DM
34}
35
e2fc55b4
DM
36sub cifs_delete_credentials {
37 my ($storeid) = @_;
38
319441e7 39 if (my $cred_file = get_cred_file($storeid)) {
e2fc55b4
DM
40 unlink($cred_file) or warn "removing cifs credientials '$cred_file' failed: $!\n";
41 }
42}
43
a9db2ca8
DM
44sub cifs_set_credentials {
45 my ($password, $storeid) = @_;
46
47 my $cred_file = cifs_cred_file_name($storeid);
319441e7 48 mkdir "/etc/pve/priv/storage";
a9db2ca8
DM
49
50 PVE::Tools::file_set_contents($cred_file, "password=$password\n");
51
52 return $cred_file;
53}
54
4792d439
WL
55sub get_cred_file {
56 my ($storeid) = @_;
57
a9db2ca8 58 my $cred_file = cifs_cred_file_name($storeid);
4792d439 59
319441e7
TL
60 if (-e $cred_file) {
61 return $cred_file;
319441e7
TL
62 }
63 return undef;
4792d439
WL
64}
65
66sub cifs_mount {
67 my ($server, $share, $mountpoint, $storeid, $smbver, $user, $domain) = @_;
68
69 $server = "[$server]" if Net::IP::ip_is_ipv6($server);
70 my $source = "//${server}/$share";
71
72 my $cmd = ['/bin/mount', '-t', 'cifs', $source, $mountpoint, '-o', 'soft', '-o'];
73
74 if (my $cred_file = get_cred_file($storeid)) {
75 push @$cmd, "username=$user", '-o', "credentials=$cred_file";
76 push @$cmd, '-o', "domain=$domain" if defined($domain);
77 } else {
78 push @$cmd, 'guest,username=guest';
79 }
80
81 push @$cmd, '-o', defined($smbver) ? "vers=$smbver" : "vers=3.0";
82
83 run_command($cmd, errmsg => "mount error");
84}
85
86# Configuration
87
88sub type {
89 return 'cifs';
90}
91
92sub plugindata {
93 return {
94 content => [ { images => 1, rootdir => 1, vztmpl => 1, iso => 1,
d1eb35ea 95 backup => 1, snippets => 1}, { images => 1 }],
4792d439
WL
96 format => [ { raw => 1, qcow2 => 1, vmdk => 1 } , 'raw' ],
97 };
98}
99
100sub properties {
101 return {
102 share => {
103 description => "CIFS share.",
104 type => 'string',
105 },
106 password => {
0f2549ed 107 description => "Password for accessing the share/datastore.",
4792d439
WL
108 type => 'string',
109 maxLength => 256,
110 },
111 domain => {
112 description => "CIFS domain.",
113 type => 'string',
114 optional => 1,
115 maxLength => 256,
116 },
117 smbversion => {
5bc3edb2 118 description => "SMB protocol version",
4792d439 119 type => 'string',
c2f12dc6 120 enum => ['2.0', '2.1', '3.0'],
4792d439
WL
121 optional => 1,
122 },
123 };
124}
125
126sub options {
127 return {
128 path => { fixed => 1 },
129 server => { fixed => 1 },
130 share => { fixed => 1 },
131 nodes => { optional => 1 },
132 disable => { optional => 1 },
133 maxfiles => { optional => 1 },
3353698f 134 'prune-backups' => { optional => 1 },
4792d439
WL
135 content => { optional => 1 },
136 format => { optional => 1 },
137 username => { optional => 1 },
138 password => { optional => 1},
139 domain => { optional => 1},
140 smbversion => { optional => 1},
3160dbf1 141 mkdir => { optional => 1 },
c3ed9ac3 142 bwlimit => { optional => 1 },
4792d439
WL
143 };
144}
145
146
147sub check_config {
148 my ($class, $sectionId, $config, $create, $skipSchemaCheck) = @_;
149
150 $config->{path} = "/mnt/pve/$sectionId" if $create && !$config->{path};
151
152 return $class->SUPER::check_config($sectionId, $config, $create, $skipSchemaCheck);
153}
154
155# Storage implementation
156
ab5e32bb 157sub on_add_hook {
02f43ab4 158 my ($class, $storeid, $scfg, %sensitive) = @_;
ab5e32bb 159
02f43ab4
TL
160 if (defined($sensitive{password})) {
161 cifs_set_credentials($sensitive{password}, $storeid);
72385de9 162 if (!exists($scfg->{username})) {
b4e88b7f 163 warn "storage $storeid: ignoring password parameter, no user set\n";
72385de9 164 }
e2fc55b4
DM
165 } else {
166 cifs_delete_credentials($storeid);
167 }
f3ccd0ef
FE
168
169 return;
e2fc55b4
DM
170}
171
172sub on_update_hook {
02f43ab4 173 my ($class, $storeid, $scfg, %sensitive) = @_;
e2fc55b4 174
02f43ab4 175 return if !exists($sensitive{password});
e2fc55b4 176
02f43ab4
TL
177 if (defined($sensitive{password})) {
178 cifs_set_credentials($sensitive{password}, $storeid);
72385de9 179 if (!exists($scfg->{username})) {
b4e88b7f 180 warn "storage $storeid: ignoring password parameter, no user set\n";
72385de9 181 }
e2fc55b4
DM
182 } else {
183 cifs_delete_credentials($storeid);
ab5e32bb 184 }
f3ccd0ef
FE
185
186 return;
ab5e32bb
TL
187}
188
189sub on_delete_hook {
190 my ($class, $storeid, $scfg) = @_;
191
e2fc55b4 192 cifs_delete_credentials($storeid);
f3ccd0ef
FE
193
194 return;
ab5e32bb
TL
195}
196
4792d439
WL
197sub status {
198 my ($class, $storeid, $scfg, $cache) = @_;
199
200 $cache->{mountdata} = PVE::ProcFSTools::parse_proc_mounts()
201 if !$cache->{mountdata};
202
203 my $path = $scfg->{path};
204 my $server = $scfg->{server};
205 my $share = $scfg->{share};
206
207 return undef
208 if !cifs_is_mounted($server, $share, $path, $cache->{mountdata});
209
210 return $class->SUPER::status($storeid, $scfg, $cache);
211}
212
213sub activate_storage {
214 my ($class, $storeid, $scfg, $cache) = @_;
215
216 $cache->{mountdata} = PVE::ProcFSTools::parse_proc_mounts()
217 if !$cache->{mountdata};
218
219 my $path = $scfg->{path};
220 my $server = $scfg->{server};
221 my $share = $scfg->{share};
222
223 if (!cifs_is_mounted($server, $share, $path, $cache->{mountdata})) {
224
3160dbf1 225 mkpath $path if !(defined($scfg->{mkdir}) && !$scfg->{mkdir});
4792d439
WL
226
227 die "unable to activate storage '$storeid' - " .
228 "directory '$path' does not exist\n" if ! -d $path;
229
230 cifs_mount($server, $share, $path, $storeid, $scfg->{smbversion},
231 $scfg->{username}, $scfg->{domain});
232 }
233
234 $class->SUPER::activate_storage($storeid, $scfg, $cache);
235}
236
237sub deactivate_storage {
238 my ($class, $storeid, $scfg, $cache) = @_;
239
240 $cache->{mountdata} = PVE::ProcFSTools::parse_proc_mounts()
241 if !$cache->{mountdata};
242
243 my $path = $scfg->{path};
244 my $server = $scfg->{server};
245 my $share = $scfg->{share};
246
247 if (cifs_is_mounted($server, $share, $path, $cache->{mountdata})) {
248 my $cmd = ['/bin/umount', $path];
249 run_command($cmd, errmsg => 'umount error');
250 }
251}
252
253sub check_connection {
254 my ($class, $storeid, $scfg) = @_;
255
ff6fa67f 256 my $servicename = '//'.$scfg->{server}.'/'.$scfg->{share};
4792d439 257
ff6fa67f 258 my $cmd = ['/usr/bin/smbclient', $servicename, '-d', '0', '-m'];
4792d439
WL
259
260 push @$cmd, $scfg->{smbversion} ? "smb".int($scfg->{smbversion}) : 'smb3';
261
262 if (my $cred_file = get_cred_file($storeid)) {
263 push @$cmd, '-U', $scfg->{username}, '-A', $cred_file;
264 push @$cmd, '-W', $scfg->{domain} if defined($scfg->{domain});
265 } else {
266 push @$cmd, '-U', 'Guest','-N';
267 }
ff6fa67f
WL
268 push @$cmd, '-c', 'echo 1 0';
269
4792d439 270 my $out_str;
70232472
TL
271 my $out = sub { $out_str .= shift };
272
273 eval { run_command($cmd, timeout => 10, outfunc => $out, errfunc => sub {}) };
4792d439
WL
274
275 if (my $err = $@) {
840e3797
WL
276 die "$out_str\n" if defined($out_str) &&
277 ($out_str =~ m/NT_STATUS_ACCESS_DENIED/);
4792d439
WL
278 return 0;
279 }
280
281 return 1;
282}
283
44fdfb2a
TL
284sub get_volume_notes {
285 my $class = shift;
286 PVE::Storage::DirPlugin::get_volume_notes($class, @_);
287}
288sub update_volume_notes {
289 my $class = shift;
290 PVE::Storage::DirPlugin::update_volume_notes($class, @_);
291}
292
4792d439 2931;