]> git.proxmox.com Git - pve-access-control.git/blame - PVE/AccessControl.pm
u2f api endpoints
[pve-access-control.git] / PVE / AccessControl.pm
CommitLineData
2c3a6c0a
DM
1package PVE::AccessControl;
2
3use strict;
7c410d63 4use warnings;
2c3a6c0a
DM
5use Encode;
6use Crypt::OpenSSL::Random;
7use Crypt::OpenSSL::RSA;
cee5583b 8use Net::SSLeay;
25167526 9use Net::IP;
2c3a6c0a
DM
10use MIME::Base64;
11use Digest::SHA;
21800a71
FG
12use IO::File;
13use File::stat;
fda8ca85 14use JSON;
a1f8aaae 15
972859d1 16use PVE::OTP;
a1f8aaae 17use PVE::Ticket;
2c3a6c0a
DM
18use PVE::Tools qw(run_command lock_file file_get_contents split_list safe_print);
19use PVE::Cluster qw(cfs_register_file cfs_read_file cfs_write_file cfs_lock_file);
ab7b19b5 20use PVE::JSONSchema qw(register_standard_option get_standard_option);
5bb4e06a
DM
21
22use PVE::Auth::Plugin;
23use PVE::Auth::AD;
24use PVE::Auth::LDAP;
25use PVE::Auth::PVE;
26use PVE::Auth::PAM;
2c3a6c0a 27
5bb4e06a
DM
28# load and initialize all plugins
29
30PVE::Auth::AD->register();
31PVE::Auth::LDAP->register();
32PVE::Auth::PVE->register();
33PVE::Auth::PAM->register();
34PVE::Auth::Plugin->init();
35
2c3a6c0a
DM
36# $authdir must be writable by root only!
37my $confdir = "/etc/pve";
38my $authdir = "$confdir/priv";
21800a71 39
2c3a6c0a
DM
40my $pve_www_key_fn = "$confdir/pve-www.key";
41
21800a71
FG
42my $pve_auth_key_files = {
43 priv => "$authdir/authkey.key",
44 pub => "$confdir/authkey.pub",
45 pubold => "$confdir/authkey.pub.old",
46};
47
48my $pve_auth_key_cache = {};
49
2c3a6c0a 50my $ticket_lifetime = 3600*2; # 2 hours
21800a71
FG
51# TODO: set to 24h for PVE 6.0
52my $authkey_lifetime = 3600*0; # rotation disabled
2c3a6c0a
DM
53
54Crypt::OpenSSL::RSA->import_random_seed();
55
66931b11
DM
56cfs_register_file('user.cfg',
57 \&parse_user_config,
2c3a6c0a 58 \&write_user_config);
fda8ca85
WB
59cfs_register_file('priv/tfa.cfg',
60 \&parse_priv_tfa_config,
61 \&write_priv_tfa_config);
2c3a6c0a 62
5bb4e06a
DM
63sub verify_username {
64 PVE::Auth::Plugin::verify_username(@_);
2c3a6c0a
DM
65}
66
5bb4e06a
DM
67sub pve_verify_realm {
68 PVE::Auth::Plugin::pve_verify_realm(@_);
2c3a6c0a
DM
69}
70
5bb4e06a 71sub lock_user_config {
2c3a6c0a
DM
72 my ($code, $errmsg) = @_;
73
5bb4e06a
DM
74 cfs_lock_file("user.cfg", undef, $code);
75 if (my $err = $@) {
2c3a6c0a
DM
76 $errmsg ? die "$errmsg: $err" : die $err;
77 }
78}
79
21800a71
FG
80my $cache_read_key = sub {
81 my ($type) = @_;
82
83 my $path = $pve_auth_key_files->{$type};
84
85 my $read_key_and_mtime = sub {
86 my $fh = IO::File->new($path, "r");
87
88 return undef if !defined($fh);
89
90 my $st = stat($fh);
91 my $pem = PVE::Tools::safe_read_from($fh, 0, 0, $path);
92
93 close $fh;
94
95 my $key;
96 if ($type eq 'pub' || $type eq 'pubold') {
97 $key = eval { Crypt::OpenSSL::RSA->new_public_key($pem); };
98 } elsif ($type eq 'priv') {
99 $key = eval { Crypt::OpenSSL::RSA->new_private_key($pem); };
100 } else {
101 die "Invalid authkey type '$type'\n";
102 }
103
104 return { key => $key, mtime => $st->mtime };
105 };
106
107 if (!defined($pve_auth_key_cache->{$type})) {
108 $pve_auth_key_cache->{$type} = $read_key_and_mtime->();
109 } else {
110 my $st = stat($path);
111 if (!$st || $st->mtime != $pve_auth_key_cache->{$type}->{mtime}) {
112 $pve_auth_key_cache->{$type} = $read_key_and_mtime->();
113 }
114 }
115
116 return $pve_auth_key_cache->{$type};
117};
118
66931b11 119sub get_pubkey {
21800a71
FG
120 my ($old) = @_;
121
122 my $type = $old ? 'pubold' : 'pub';
123
124 my $res = $cache_read_key->($type);
125 return undef if !defined($res);
126
127 return wantarray ? ($res->{key}, $res->{mtime}) : $res->{key};
128}
129
130sub get_privkey {
131 my $res = $cache_read_key->('priv');
2c3a6c0a 132
21800a71
FG
133 if (!defined($res) || !check_authkey(1)) {
134 rotate_authkey();
135 $res = $cache_read_key->('priv');
136 }
2c3a6c0a 137
21800a71
FG
138 return wantarray ? ($res->{key}, $res->{mtime}) : $res->{key};
139}
2c3a6c0a 140
21800a71
FG
141sub check_authkey {
142 my ($quiet) = @_;
143
144 # skip check if non-quorate, as rotation is not possible anyway
145 return 1 if !PVE::Cluster::check_cfs_quorum(1);
146
147 my ($pub_key, $mtime) = get_pubkey();
148 if (!$pub_key) {
149 warn "auth key pair missing, generating new one..\n" if !$quiet;
150 return 0;
151 } else {
152 if (time() - $mtime >= $authkey_lifetime) {
153 warn "auth key pair too old, rotating..\n" if !$quiet;;
154 return 0;
155 } else {
156 warn "auth key new enough, skipping rotation\n" if !$quiet;;
157 return 1;
158 }
159 }
160}
2c3a6c0a 161
21800a71
FG
162sub rotate_authkey {
163 return if $authkey_lifetime == 0;
164
03593f3d 165 PVE::Cluster::cfs_lock_authkey(undef, sub {
21800a71
FG
166 # re-check with lock to avoid double rotation in clusters
167 return if check_authkey();
168
169 my $old = get_pubkey();
170
171 if ($old) {
172 eval {
173 my $pem = $old->get_public_key_x509_string();
174 PVE::Tools::file_set_contents($pve_auth_key_files->{pubold}, $pem);
175 };
176 die "Failed to store old auth key: $@\n" if $@;
177 }
178
179 my $new = Crypt::OpenSSL::RSA->generate_key(2048);
180 eval {
181 my $pem = $new->get_public_key_x509_string();
182 PVE::Tools::file_set_contents($pve_auth_key_files->{pub}, $pem);
183 };
184 if ($@) {
185 if ($old) {
186 warn "Failed to store new auth key - $@\n";
187 warn "Reverting to previous auth key\n";
188 eval {
189 my $pem = $old->get_public_key_x509_string();
190 PVE::Tools::file_set_contents($pve_auth_key_files->{pub}, $pem);
191 };
192 die "Failed to restore old auth key: $@\n" if $@;
193 } else {
194 die "Failed to store new auth key - $@\n";
195 }
196 }
197
198 eval {
199 my $pem = $new->get_private_key_string();
200 PVE::Tools::file_set_contents($pve_auth_key_files->{priv}, $pem);
201 };
202 if ($@) {
203 warn "Failed to store new auth key - $@\n";
204 warn "Deleting auth key to force regeneration\n";
205 unlink $pve_auth_key_files->{pub};
206 unlink $pve_auth_key_files->{priv};
207 }
208 });
209 die $@ if $@;
2c3a6c0a
DM
210}
211
212my $csrf_prevention_secret;
213my $get_csrfr_secret = sub {
214 if (!$csrf_prevention_secret) {
66931b11 215 my $input = PVE::Tools::file_get_contents($pve_www_key_fn);
2c3a6c0a
DM
216 $csrf_prevention_secret = Digest::SHA::sha1_base64($input);
217 }
218 return $csrf_prevention_secret;
219};
220
221sub assemble_csrf_prevention_token {
222 my ($username) = @_;
223
a1f8aaae 224 my $secret = &$get_csrfr_secret();
2c3a6c0a 225
a1f8aaae 226 return PVE::Ticket::assemble_csrf_prevention_token ($secret, $username);
2c3a6c0a
DM
227}
228
229sub verify_csrf_prevention_token {
230 my ($username, $token, $noerr) = @_;
231
a1f8aaae 232 my $secret = &$get_csrfr_secret();
2c3a6c0a 233
a1f8aaae
DM
234 return PVE::Ticket::verify_csrf_prevention_token(
235 $secret, $username, $token, -300, $ticket_lifetime, $noerr);
2c3a6c0a
DM
236}
237
21800a71
FG
238my $get_ticket_age_range = sub {
239 my ($now, $mtime, $rotated) = @_;
240
241 my $key_age = $now - $mtime;
242 $key_age = 0 if $key_age < 0;
243
244 my $min = -300;
245 my $max = $ticket_lifetime;
246
247 if ($rotated) {
248 # ticket creation after rotation is not allowed
249 $min = $key_age - 300;
250 } else {
251 if ($key_age > $authkey_lifetime && $authkey_lifetime > 0) {
252 if (PVE::Cluster::check_cfs_quorum(1)) {
253 # key should have been rotated, clamp range accordingly
254 $min = $key_age - $authkey_lifetime;
255 } else {
256 warn "Cluster not quorate - extending auth key lifetime!\n";
257 }
258 }
259
260 $max = $key_age + 300 if $key_age < $ticket_lifetime;
261 }
2c3a6c0a 262
21800a71
FG
263 return undef if $min > $ticket_lifetime;
264 return ($min, $max);
265};
2c3a6c0a
DM
266
267sub assemble_ticket {
268 my ($username) = @_;
269
270 my $rsa_priv = get_privkey();
271
a1f8aaae 272 return PVE::Ticket::assemble_rsa_ticket($rsa_priv, 'PVE', $username);
2c3a6c0a
DM
273}
274
275sub verify_ticket {
276 my ($ticket, $noerr) = @_;
277
21800a71
FG
278 my $now = time();
279
280 my $check = sub {
281 my ($old) = @_;
282
283 my ($rsa_pub, $rsa_mtime) = get_pubkey($old);
284 return undef if !$rsa_pub;
285
286 my ($min, $max) = $get_ticket_age_range->($now, $rsa_mtime, $old);
287 return undef if !$min;
288
289 return PVE::Ticket::verify_rsa_ticket(
290 $rsa_pub, 'PVE', $ticket, undef, $min, $max, 1);
291 };
a1f8aaae 292
21800a71 293 my ($username, $age) = $check->();
a1f8aaae 294
21800a71
FG
295 # check with old, rotated key if current key failed
296 ($username, $age) = $check->(1) if !defined($username);
297
298 if (!defined($username)) {
299 if ($noerr) {
300 return undef;
301 } else {
302 # raise error via undef ticket
303 PVE::Ticket::verify_rsa_ticket(undef, 'PVE');
304 }
305 }
2c3a6c0a 306
a1f8aaae 307 return undef if !PVE::Auth::Plugin::verify_username($username, $noerr);
2c3a6c0a 308
a1f8aaae 309 return wantarray ? ($username, $age) : $username;
2c3a6c0a
DM
310}
311
adf8d771
DM
312# VNC tickets
313# - they do not contain the username in plain text
314# - they are restricted to a specific resource path (example: '/vms/100')
315sub assemble_vnc_ticket {
316 my ($username, $path) = @_;
317
318 my $rsa_priv = get_privkey();
319
adf8d771
DM
320 $path = normalize_path($path);
321
a1f8aaae 322 my $secret_data = "$username:$path";
adf8d771 323
a1f8aaae
DM
324 return PVE::Ticket::assemble_rsa_ticket(
325 $rsa_priv, 'PVEVNC', undef, $secret_data);
adf8d771
DM
326}
327
328sub verify_vnc_ticket {
329 my ($ticket, $username, $path, $noerr) = @_;
330
a1f8aaae 331 my $secret_data = "$username:$path";
adf8d771 332
21800a71 333 my ($rsa_pub, $rsa_mtime) = get_pubkey();
5efff6c1 334 if (!$rsa_pub || (time() - $rsa_mtime > $authkey_lifetime && $authkey_lifetime > 0)) {
21800a71
FG
335 if ($noerr) {
336 return undef;
337 } else {
338 # raise error via undef ticket
339 PVE::Ticket::verify_rsa_ticket($rsa_pub, 'PVEVNC');
340 }
341 }
342
a1f8aaae
DM
343 return PVE::Ticket::verify_rsa_ticket(
344 $rsa_pub, 'PVEVNC', $ticket, $secret_data, -20, 40, $noerr);
adf8d771
DM
345}
346
23b35225 347sub assemble_spice_ticket {
bf3e6d31 348 my ($username, $vmid, $node) = @_;
23b35225 349
3f62bdbe 350 my $secret = &$get_csrfr_secret();
23b35225 351
a1f8aaae
DM
352 return PVE::Ticket::assemble_spice_ticket(
353 $secret, $username, $vmid, $node);
bf3e6d31
DM
354}
355
356sub verify_spice_connect_url {
357 my ($connect_str) = @_;
358
a1f8aaae 359 my $secret = &$get_csrfr_secret();
bf3e6d31 360
a1f8aaae 361 return PVE::Ticket::verify_spice_connect_url($secret, $connect_str);
23b35225
AD
362}
363
cee5583b
DM
364sub read_x509_subject_spice {
365 my ($filename) = @_;
366
367 # read x509 subject
368 my $bio = Net::SSLeay::BIO_new_file($filename, 'r');
44903703
FG
369 die "Could not open $filename using OpenSSL\n"
370 if !$bio;
371
cee5583b
DM
372 my $x509 = Net::SSLeay::PEM_read_bio_X509($bio);
373 Net::SSLeay::BIO_free($bio);
44903703
FG
374
375 die "Could not parse X509 certificate in $filename\n"
376 if !$x509;
377
cee5583b
DM
378 my $nameobj = Net::SSLeay::X509_get_subject_name($x509);
379 my $subject = Net::SSLeay::X509_NAME_oneline($nameobj);
380 Net::SSLeay::X509_free($x509);
66931b11 381
cee5583b
DM
382 # remote-viewer wants comma as seperator (not '/')
383 $subject =~ s!^/!!;
384 $subject =~ s!/(\w+=)!,$1!g;
385
386 return $subject;
387}
388
389# helper to generate SPICE remote-viewer configuration
390sub remote_viewer_config {
391 my ($authuser, $vmid, $node, $proxy, $title, $port) = @_;
392
393 if (!$proxy) {
394 my $host = `hostname -f` || PVE::INotify::nodename();
395 chomp $host;
396 $proxy = $host;
397 }
398
399 my ($ticket, $proxyticket) = assemble_spice_ticket($authuser, $vmid, $node);
400
401 my $filename = "/etc/pve/local/pve-ssl.pem";
402 my $subject = read_x509_subject_spice($filename);
403
404 my $cacert = PVE::Tools::file_get_contents("/etc/pve/pve-root-ca.pem", 8192);
405 $cacert =~ s/\n/\\n/g;
63691fc6 406
25167526 407 $proxy = "[$proxy]" if Net::IP::ip_is_ipv6($proxy);
cee5583b 408 my $config = {
63691fc6
DM
409 'secure-attention' => "Ctrl+Alt+Ins",
410 'toggle-fullscreen' => "Shift+F11",
411 'release-cursor' => "Ctrl+Alt+R",
cee5583b
DM
412 type => 'spice',
413 title => $title,
1075c589 414 host => $proxyticket, # this breaks tls hostname verification, so we need to use 'host-subject'
cee5583b
DM
415 proxy => "http://$proxy:3128",
416 'tls-port' => $port,
417 'host-subject' => $subject,
418 ca => $cacert,
419 password => $ticket,
420 'delete-this-file' => 1,
421 };
422
423 return ($ticket, $proxyticket, $config);
424}
425
37d45deb 426sub check_user_exist {
7070c1ae 427 my ($usercfg, $username, $noerr) = @_;
2c3a6c0a 428
5bb4e06a 429 $username = PVE::Auth::Plugin::verify_username($username, $noerr);
2c3a6c0a 430 return undef if !$username;
66931b11 431
37d45deb
DM
432 return $usercfg->{users}->{$username} if $usercfg && $usercfg->{users}->{$username};
433
434 die "no such user ('$username')\n" if !$noerr;
66931b11 435
37d45deb
DM
436 return undef;
437}
438
439sub check_user_enabled {
440 my ($usercfg, $username, $noerr) = @_;
441
442 my $data = check_user_exist($usercfg, $username, $noerr);
443 return undef if !$data;
444
445 return 1 if $data->{enable};
2c3a6c0a 446
37d45deb 447 die "user '$username' is disabled\n" if !$noerr;
66931b11 448
7070c1ae 449 return undef;
2c3a6c0a
DM
450}
451
96f8ebd6 452sub verify_one_time_pw {
fda8ca85 453 my ($type, $username, $keys, $tfa_cfg, $otp) = @_;
96f8ebd6 454
1075c589 455 die "missing one time password for two-factor authentication '$type'\n" if !$otp;
96f8ebd6
DM
456
457 # fixme: proxy support?
458 my $proxy;
459
460 if ($type eq 'yubico') {
972859d1
DM
461 PVE::OTP::yubico_verify_otp($otp, $keys, $tfa_cfg->{url},
462 $tfa_cfg->{id}, $tfa_cfg->{key}, $proxy);
1abc2c0a 463 } elsif ($type eq 'oath') {
972859d1 464 PVE::OTP::oath_verify_otp($otp, $keys, $tfa_cfg->{step}, $tfa_cfg->{digits});
96f8ebd6
DM
465 } else {
466 die "unknown tfa type '$type'\n";
467 }
96f8ebd6
DM
468}
469
2c3a6c0a 470# password should be utf8 encoded
1075c589 471# Note: some plugins delay/sleep if auth fails
2c3a6c0a 472sub authenticate_user {
96f8ebd6 473 my ($username, $password, $otp) = @_;
2c3a6c0a
DM
474
475 die "no username specified\n" if !$username;
66931b11 476
5bb4e06a 477 my ($ruid, $realm);
2c3a6c0a 478
5bb4e06a 479 ($username, $ruid, $realm) = PVE::Auth::Plugin::verify_username($username);
2c3a6c0a
DM
480
481 my $usercfg = cfs_read_file('user.cfg');
482
6126ab75 483 check_user_enabled($usercfg, $username);
2c3a6c0a
DM
484
485 my $ctime = time();
486 my $expire = $usercfg->{users}->{$username}->{expire};
487
6126ab75 488 die "account expired\n" if $expire && ($expire < $ctime);
2c3a6c0a 489
5bb4e06a 490 my $domain_cfg = cfs_read_file('domains.cfg');
2c3a6c0a 491
6126ab75
DM
492 my $cfg = $domain_cfg->{ids}->{$realm};
493 die "auth domain '$realm' does not exists\n" if !$cfg;
494 my $plugin = PVE::Auth::Plugin->lookup($cfg->{type});
495 $plugin->authenticate_user($cfg, $realm, $ruid, $password);
2c3a6c0a 496
fda8ca85
WB
497 my $u2f;
498
499 my ($type, $tfa_data) = user_get_tfa($username, $realm);
500 if ($type) {
501 if ($type eq 'u2f') {
502 # Note that if the user did not manage to complete the initial u2f registration
503 # challenge we have a hash containing a 'challenge' entry in the user's tfa.cfg entry:
504 $u2f = $tfa_data if !exists $tfa_data->{challenge};
505 } else {
506 my $keys = $tfa_data->{keys};
507 my $tfa_cfg = $tfa_data->{config};
508 verify_one_time_pw($type, $username, $keys, $tfa_cfg, $otp);
509 }
96f8ebd6
DM
510 }
511
fda8ca85 512 return wantarray ? ($username, $u2f) : $username;
2c3a6c0a
DM
513}
514
515sub domain_set_password {
5bb4e06a 516 my ($realm, $username, $password) = @_;
2c3a6c0a
DM
517
518 die "no auth domain specified" if !$realm;
519
5bb4e06a
DM
520 my $domain_cfg = cfs_read_file('domains.cfg');
521
522 my $cfg = $domain_cfg->{ids}->{$realm};
1075c589 523 die "auth domain '$realm' does not exist\n" if !$cfg;
5bb4e06a
DM
524 my $plugin = PVE::Auth::Plugin->lookup($cfg->{type});
525 $plugin->store_password($cfg, $realm, $username, $password);
2c3a6c0a
DM
526}
527
528sub add_user_group {
2c3a6c0a 529 my ($username, $usercfg, $group) = @_;
66931b11 530
2c3a6c0a
DM
531 $usercfg->{users}->{$username}->{groups}->{$group} = 1;
532 $usercfg->{groups}->{$group}->{users}->{$username} = 1;
533}
534
535sub delete_user_group {
2c3a6c0a 536 my ($username, $usercfg) = @_;
66931b11 537
2c3a6c0a
DM
538 foreach my $group (keys %{$usercfg->{groups}}) {
539
66931b11 540 delete ($usercfg->{groups}->{$group}->{users}->{$username})
2c3a6c0a
DM
541 if $usercfg->{groups}->{$group}->{users}->{$username};
542 }
543}
544
545sub delete_user_acl {
2c3a6c0a
DM
546 my ($username, $usercfg) = @_;
547
548 foreach my $acl (keys %{$usercfg->{acl}}) {
549
66931b11 550 delete ($usercfg->{acl}->{$acl}->{users}->{$username})
2c3a6c0a
DM
551 if $usercfg->{acl}->{$acl}->{users}->{$username};
552 }
2c3a6c0a 553}
39c85db8 554
2c3a6c0a 555sub delete_group_acl {
2c3a6c0a
DM
556 my ($group, $usercfg) = @_;
557
558 foreach my $acl (keys %{$usercfg->{acl}}) {
559
66931b11 560 delete ($usercfg->{acl}->{$acl}->{groups}->{$group})
2c3a6c0a
DM
561 if $usercfg->{acl}->{$acl}->{groups}->{$group};
562 }
39c85db8
DM
563}
564
565sub delete_pool_acl {
39c85db8 566 my ($pool, $usercfg) = @_;
2c3a6c0a 567
39c85db8
DM
568 my $path = "/pool/$pool";
569
3b4a3f94 570 delete ($usercfg->{acl}->{$path})
2c3a6c0a
DM
571}
572
573# we automatically create some predefined roles by splitting privs
574# into 3 groups (per category)
575# root: only root is allowed to do that
576# admin: an administrator can to that
1075c589 577# user: a normal user/customer can to that
2c3a6c0a
DM
578my $privgroups = {
579 VM => {
580 root => [],
66931b11
DM
581 admin => [
582 'VM.Config.Disk',
583 'VM.Config.CPU',
584 'VM.Config.Memory',
585 'VM.Config.Network',
c0fead8c 586 'VM.Config.HWType',
66931b11
DM
587 'VM.Config.Options', # covers all other things
588 'VM.Allocate',
589 'VM.Clone',
2c3a6c0a 590 'VM.Migrate',
66931b11
DM
591 'VM.Monitor',
592 'VM.Snapshot',
aad513f6 593 'VM.Snapshot.Rollback',
2c3a6c0a
DM
594 ],
595 user => [
cc7bdf33 596 'VM.Config.CDROM', # change CDROM media
66931b11 597 'VM.Console',
68d5a86d 598 'VM.Backup',
2c3a6c0a
DM
599 'VM.PowerMgmt',
600 ],
66931b11 601 audit => [
82b63965 602 'VM.Audit',
2c3a6c0a
DM
603 ],
604 },
605 Sys => {
606 root => [
66931b11 607 'Sys.PowerMgmt',
37d45deb 608 'Sys.Modify', # edit/change node settings
2c3a6c0a
DM
609 ],
610 admin => [
2e376c58 611 'Permissions.Modify',
66931b11 612 'Sys.Console',
2c3a6c0a
DM
613 'Sys.Syslog',
614 ],
615 user => [],
616 audit => [
617 'Sys.Audit',
618 ],
619 },
620 Datastore => {
2e376c58 621 root => [],
19f60b5e
DM
622 admin => [
623 'Datastore.Allocate',
373cb383 624 'Datastore.AllocateTemplate',
19f60b5e 625 ],
2c3a6c0a
DM
626 user => [
627 'Datastore.AllocateSpace',
628 ],
629 audit => [
630 'Datastore.Audit',
631 ],
632 },
12683df7 633 User => {
82b63965
DM
634 root => [
635 'Realm.Allocate',
636 ],
12683df7
DM
637 admin => [
638 'User.Modify',
82b63965 639 'Group.Allocate', # edit/change group settings
66931b11 640 'Realm.AllocateUser',
19f60b5e 641 ],
12683df7
DM
642 user => [],
643 audit => [],
644 },
dee1c882
DM
645 Pool => {
646 root => [],
647 admin => [
648 'Pool.Allocate', # create/delete pools
649 ],
650 user => [],
651 audit => [],
652 },
2c3a6c0a
DM
653};
654
655my $valid_privs = {};
656
657my $special_roles = {
1075c589
FG
658 'NoAccess' => {}, # no privileges
659 'Administrator' => $valid_privs, # all privileges
2c3a6c0a
DM
660};
661
662sub create_roles {
663
664 foreach my $cat (keys %$privgroups) {
665 my $cd = $privgroups->{$cat};
66931b11 666 foreach my $p (@{$cd->{root}}, @{$cd->{admin}},
2c3a6c0a
DM
667 @{$cd->{user}}, @{$cd->{audit}}) {
668 $valid_privs->{$p} = 1;
669 }
670 foreach my $p (@{$cd->{admin}}, @{$cd->{user}}, @{$cd->{audit}}) {
671
672 $special_roles->{"PVE${cat}Admin"}->{$p} = 1;
673 $special_roles->{"PVEAdmin"}->{$p} = 1;
674 }
675 if (scalar(@{$cd->{user}})) {
676 foreach my $p (@{$cd->{user}}, @{$cd->{audit}}) {
677 $special_roles->{"PVE${cat}User"}->{$p} = 1;
678 }
679 }
680 foreach my $p (@{$cd->{audit}}) {
681 $special_roles->{"PVEAuditor"}->{$p} = 1;
682 }
683 }
ff4b2235 684
7b395f99 685 $special_roles->{"PVETemplateUser"} = { 'VM.Clone' => 1, 'VM.Audit' => 1 };
2c3a6c0a
DM
686};
687
688create_roles();
689
0fea3f16
DC
690sub create_priv_properties {
691 my $properties = {};
692 foreach my $priv (keys %$valid_privs) {
693 $properties->{$priv} = {
694 type => 'boolean',
695 optional => 1,
696 };
697 }
698 return $properties;
699}
700
894e6f0c
PA
701sub role_is_special {
702 my ($role) = @_;
b7ba86d4 703 return (exists $special_roles->{$role}) ? 1 : 0;
894e6f0c
PA
704}
705
2c3a6c0a
DM
706sub add_role_privs {
707 my ($role, $usercfg, $privs) = @_;
708
709 return if !$privs;
710
711 die "role '$role' does not exist\n" if !$usercfg->{roles}->{$role};
712
713 foreach my $priv (split_list($privs)) {
714 if (defined ($valid_privs->{$priv})) {
715 $usercfg->{roles}->{$role}->{$priv} = 1;
716 } else {
1075c589 717 die "invalid privilege '$priv'\n";
66931b11
DM
718 }
719 }
2c3a6c0a
DM
720}
721
722sub normalize_path {
723 my $path = shift;
724
4bc17477 725 $path =~ s|/+|/|g;
2c3a6c0a
DM
726
727 $path =~ s|/$||;
728
729 $path = '/' if !$path;
730
4bc17477
DM
731 $path = "/$path" if $path !~ m|^/|;
732
e4f8fc2e 733 return undef if $path !~ m|^[[:alnum:]\.\-\_\/]+$|;
2c3a6c0a
DM
734
735 return $path;
66931b11 736}
2c3a6c0a 737
2c3a6c0a
DM
738PVE::JSONSchema::register_format('pve-groupid', \&verify_groupname);
739sub verify_groupname {
740 my ($groupname, $noerr) = @_;
741
742 if ($groupname !~ m/^[A-Za-z0-9\.\-_]+$/) {
743
744 die "group name '$groupname' contains invalid characters\n" if !$noerr;
745
746 return undef;
747 }
66931b11 748
2c3a6c0a
DM
749 return $groupname;
750}
751
752PVE::JSONSchema::register_format('pve-roleid', \&verify_rolename);
753sub verify_rolename {
754 my ($rolename, $noerr) = @_;
755
756 if ($rolename !~ m/^[A-Za-z0-9\.\-_]+$/) {
757
758 die "role name '$rolename' contains invalid characters\n" if !$noerr;
759
760 return undef;
761 }
66931b11 762
2c3a6c0a
DM
763 return $rolename;
764}
765
16e50b59 766PVE::JSONSchema::register_format('pve-poolid', \&verify_poolname);
39c85db8
DM
767sub verify_poolname {
768 my ($poolname, $noerr) = @_;
769
770 if ($poolname !~ m/^[A-Za-z0-9\.\-_]+$/) {
771
772 die "pool name '$poolname' contains invalid characters\n" if !$noerr;
773
774 return undef;
775 }
66931b11 776
39c85db8
DM
777 return $poolname;
778}
779
2c3a6c0a
DM
780PVE::JSONSchema::register_format('pve-priv', \&verify_privname);
781sub verify_privname {
782 my ($priv, $noerr) = @_;
783
784 if (!$valid_privs->{$priv}) {
1075c589 785 die "invalid privilege '$priv'\n" if !$noerr;
2c3a6c0a
DM
786
787 return undef;
788 }
66931b11 789
2c3a6c0a
DM
790 return $priv;
791}
792
793sub userconfig_force_defaults {
794 my ($cfg) = @_;
795
796 foreach my $r (keys %$special_roles) {
797 $cfg->{roles}->{$r} = $special_roles->{$r};
798 }
799
7279f31c
WL
800 # add root user if not exists
801 if (!$cfg->{users}->{'root@pam'}) {
66931b11 802 $cfg->{users}->{'root@pam'}->{enable} = 1;
7279f31c 803 }
2c3a6c0a
DM
804}
805
806sub parse_user_config {
807 my ($filename, $raw) = @_;
808
809 my $cfg = {};
810
811 userconfig_force_defaults($cfg);
812
d6eb6621 813 $raw = '' if !defined($raw);
62af314a 814 while ($raw =~ /^\s*(.+?)\s*$/gm) {
2c3a6c0a 815 my $line = $1;
2c3a6c0a
DM
816 my @data;
817
818 foreach my $d (split (/:/, $line)) {
66931b11 819 $d =~ s/^\s+//;
2c3a6c0a
DM
820 $d =~ s/\s+$//;
821 push @data, $d
822 }
823
824 my $et = shift @data;
825
826 if ($et eq 'user') {
96f8ebd6 827 my ($user, $enable, $expire, $firstname, $lastname, $email, $comment, $keys) = @data;
2c3a6c0a 828
5bb4e06a 829 my (undef, undef, $realm) = PVE::Auth::Plugin::verify_username($user, 1);
2c3a6c0a
DM
830 if (!$realm) {
831 warn "user config - ignore user '$user' - invalid user name\n";
832 next;
833 }
834
835 $enable = $enable ? 1 : 0;
836
837 $expire = 0 if !$expire;
838
839 if ($expire !~ m/^\d+$/) {
840 warn "user config - ignore user '$user' - (illegal characters in expire '$expire')\n";
841 next;
842 }
843 $expire = int($expire);
844
845 #if (!verify_groupname ($group, 1)) {
846 # warn "user config - ignore user '$user' - invalid characters in group name\n";
847 # next;
848 #}
849
850 $cfg->{users}->{$user} = {
851 enable => $enable,
852 # group => $group,
853 };
854 $cfg->{users}->{$user}->{firstname} = PVE::Tools::decode_text($firstname) if $firstname;
855 $cfg->{users}->{$user}->{lastname} = PVE::Tools::decode_text($lastname) if $lastname;
856 $cfg->{users}->{$user}->{email} = $email;
857 $cfg->{users}->{$user}->{comment} = PVE::Tools::decode_text($comment) if $comment;
858 $cfg->{users}->{$user}->{expire} = $expire;
1abc2c0a 859 # keys: allowed yubico key ids or oath secrets (base32 encoded)
66931b11 860 $cfg->{users}->{$user}->{keys} = $keys if $keys;
2c3a6c0a
DM
861
862 #$cfg->{users}->{$user}->{groups}->{$group} = 1;
863 #$cfg->{groups}->{$group}->{$user} = 1;
864
865 } elsif ($et eq 'group') {
866 my ($group, $userlist, $comment) = @data;
867
868 if (!verify_groupname($group, 1)) {
869 warn "user config - ignore group '$group' - invalid characters in group name\n";
870 next;
871 }
872
873 # make sure to add the group (even if there are no members)
874 $cfg->{groups}->{$group} = { users => {} } if !$cfg->{groups}->{$group};
875
876 $cfg->{groups}->{$group}->{comment} = PVE::Tools::decode_text($comment) if $comment;
877
878 foreach my $user (split_list($userlist)) {
879
5bb4e06a 880 if (!PVE::Auth::Plugin::verify_username($user, 1)) {
2c3a6c0a
DM
881 warn "user config - ignore invalid group member '$user'\n";
882 next;
883 }
884
66931b11 885 if ($cfg->{users}->{$user}) { # user exists
2c3a6c0a
DM
886 $cfg->{users}->{$user}->{groups}->{$group} = 1;
887 $cfg->{groups}->{$group}->{users}->{$user} = 1;
888 } else {
889 warn "user config - ignore invalid group member '$user'\n";
890 }
891 }
892
893 } elsif ($et eq 'role') {
894 my ($role, $privlist) = @data;
66931b11 895
2c3a6c0a
DM
896 if (!verify_rolename($role, 1)) {
897 warn "user config - ignore role '$role' - invalid characters in role name\n";
898 next;
899 }
900
901 # make sure to add the role (even if there are no privileges)
902 $cfg->{roles}->{$role} = {} if !$cfg->{roles}->{$role};
903
904 foreach my $priv (split_list($privlist)) {
905 if (defined ($valid_privs->{$priv})) {
906 $cfg->{roles}->{$role}->{$priv} = 1;
907 } else {
908 warn "user config - ignore invalid priviledge '$priv'\n";
66931b11 909 }
2c3a6c0a 910 }
66931b11 911
2c3a6c0a
DM
912 } elsif ($et eq 'acl') {
913 my ($propagate, $pathtxt, $uglist, $rolelist) = @data;
914
915 if (my $path = normalize_path($pathtxt)) {
916 foreach my $role (split_list($rolelist)) {
66931b11 917
2c3a6c0a
DM
918 if (!verify_rolename($role, 1)) {
919 warn "user config - ignore invalid role name '$role' in acl\n";
920 next;
921 }
922
923 foreach my $ug (split_list($uglist)) {
9b217226 924 if ($ug =~ m/^@(\S+)$/) {
2c3a6c0a 925 my $group = $1;
66931b11 926 if ($cfg->{groups}->{$group}) { # group exists
2c3a6c0a
DM
927 $cfg->{acl}->{$path}->{groups}->{$group}->{$role} = $propagate;
928 } else {
929 warn "user config - ignore invalid acl group '$group'\n";
930 }
5bb4e06a 931 } elsif (PVE::Auth::Plugin::verify_username($ug, 1)) {
66931b11 932 if ($cfg->{users}->{$ug}) { # user exists
2c3a6c0a
DM
933 $cfg->{acl}->{$path}->{users}->{$ug}->{$role} = $propagate;
934 } else {
935 warn "user config - ignore invalid acl member '$ug'\n";
936 }
937 } else {
938 warn "user config - invalid user/group '$ug' in acl\n";
939 }
940 }
941 }
942 } else {
943 warn "user config - ignore invalid path in acl '$pathtxt'\n";
944 }
4bc17477 945 } elsif ($et eq 'pool') {
39c85db8 946 my ($pool, $comment, $vmlist, $storelist) = @data;
4bc17477 947
39c85db8
DM
948 if (!verify_poolname($pool, 1)) {
949 warn "user config - ignore pool '$pool' - invalid characters in pool name\n";
950 next;
951 }
4bc17477 952
39c85db8
DM
953 # make sure to add the pool (even if there are no members)
954 $cfg->{pools}->{$pool} = { vms => {}, storage => {} } if !$cfg->{pools}->{$pool};
4bc17477 955
39c85db8 956 $cfg->{pools}->{$pool}->{comment} = PVE::Tools::decode_text($comment) if $comment;
4bc17477 957
39c85db8
DM
958 foreach my $vmid (split_list($vmlist)) {
959 if ($vmid !~ m/^\d+$/) {
960 warn "user config - ignore invalid vmid '$vmid' in pool '$pool'\n";
961 next;
4bc17477 962 }
39c85db8 963 $vmid = int($vmid);
4bc17477 964
39c85db8
DM
965 if ($cfg->{vms}->{$vmid}) {
966 warn "user config - ignore duplicate vmid '$vmid' in pool '$pool'\n";
967 next;
4bc17477
DM
968 }
969
39c85db8 970 $cfg->{pools}->{$pool}->{vms}->{$vmid} = 1;
66931b11 971
39c85db8
DM
972 # record vmid ==> pool relation
973 $cfg->{vms}->{$vmid} = $pool;
974 }
975
976 foreach my $storeid (split_list($storelist)) {
977 if ($storeid !~ m/^[a-z][a-z0-9\-\_\.]*[a-z0-9]$/i) {
978 warn "user config - ignore invalid storage '$storeid' in pool '$pool'\n";
979 next;
980 }
981 $cfg->{pools}->{$pool}->{storage}->{$storeid} = 1;
4bc17477 982 }
2c3a6c0a
DM
983 } else {
984 warn "user config - ignore config line: $line\n";
985 }
986 }
987
988 userconfig_force_defaults($cfg);
989
990 return $cfg;
991}
992
2c3a6c0a
DM
993sub write_user_config {
994 my ($filename, $cfg) = @_;
995
996 my $data = '';
997
998 foreach my $user (keys %{$cfg->{users}}) {
2c3a6c0a
DM
999 my $d = $cfg->{users}->{$user};
1000 my $firstname = $d->{firstname} ? PVE::Tools::encode_text($d->{firstname}) : '';
1001 my $lastname = $d->{lastname} ? PVE::Tools::encode_text($d->{lastname}) : '';
1002 my $email = $d->{email} || '';
1003 my $comment = $d->{comment} ? PVE::Tools::encode_text($d->{comment}) : '';
5eabc984 1004 my $expire = int($d->{expire} || 0);
2c3a6c0a 1005 my $enable = $d->{enable} ? 1 : 0;
96f8ebd6
DM
1006 my $keys = $d->{keys} ? $d->{keys} : '';
1007 $data .= "user:$user:$enable:$expire:$firstname:$lastname:$email:$comment:$keys:\n";
2c3a6c0a
DM
1008 }
1009
1010 $data .= "\n";
1011
1012 foreach my $group (keys %{$cfg->{groups}}) {
1013 my $d = $cfg->{groups}->{$group};
1014 my $list = join (',', keys %{$d->{users}});
66931b11 1015 my $comment = $d->{comment} ? PVE::Tools::encode_text($d->{comment}) : '';
2c3a6c0a
DM
1016 $data .= "group:$group:$list:$comment:\n";
1017 }
1018
1019 $data .= "\n";
1020
39c85db8
DM
1021 foreach my $pool (keys %{$cfg->{pools}}) {
1022 my $d = $cfg->{pools}->{$pool};
4bc17477
DM
1023 my $vmlist = join (',', keys %{$d->{vms}});
1024 my $storelist = join (',', keys %{$d->{storage}});
66931b11 1025 my $comment = $d->{comment} ? PVE::Tools::encode_text($d->{comment}) : '';
39c85db8 1026 $data .= "pool:$pool:$comment:$vmlist:$storelist:\n";
4bc17477
DM
1027 }
1028
1029 $data .= "\n";
1030
2c3a6c0a
DM
1031 foreach my $role (keys %{$cfg->{roles}}) {
1032 next if $special_roles->{$role};
1033
1034 my $d = $cfg->{roles}->{$role};
1035 my $list = join (',', keys %$d);
1036 $data .= "role:$role:$list:\n";
1037 }
1038
1039 $data .= "\n";
1040
1041 foreach my $path (sort keys %{$cfg->{acl}}) {
1042 my $d = $cfg->{acl}->{$path};
1043
1044 my $ra = {};
1045
1046 foreach my $group (keys %{$d->{groups}}) {
1047 my $l0 = '';
1048 my $l1 = '';
1049 foreach my $role (sort keys %{$d->{groups}->{$group}}) {
1050 my $propagate = $d->{groups}->{$group}->{$role};
1051 if ($propagate) {
1052 $l1 .= ',' if $l1;
1053 $l1 .= $role;
1054 } else {
1055 $l0 .= ',' if $l0;
1056 $l0 .= $role;
1057 }
1058 }
1059 $ra->{0}->{$l0}->{"\@$group"} = 1 if $l0;
1060 $ra->{1}->{$l1}->{"\@$group"} = 1 if $l1;
1061 }
1062
1063 foreach my $user (keys %{$d->{users}}) {
1075c589 1064 # no need to save, because root is always 'Administrator'
66931b11 1065 next if $user eq 'root@pam';
2c3a6c0a
DM
1066
1067 my $l0 = '';
1068 my $l1 = '';
1069 foreach my $role (sort keys %{$d->{users}->{$user}}) {
1070 my $propagate = $d->{users}->{$user}->{$role};
1071 if ($propagate) {
1072 $l1 .= ',' if $l1;
1073 $l1 .= $role;
1074 } else {
1075 $l0 .= ',' if $l0;
1076 $l0 .= $role;
1077 }
1078 }
1079 $ra->{0}->{$l0}->{$user} = 1 if $l0;
1080 $ra->{1}->{$l1}->{$user} = 1 if $l1;
1081 }
1082
1083 foreach my $rolelist (sort keys %{$ra->{0}}) {
1084 my $uglist = join (',', keys %{$ra->{0}->{$rolelist}});
1085 $data .= "acl:0:$path:$uglist:$rolelist:\n";
1086 }
1087 foreach my $rolelist (sort keys %{$ra->{1}}) {
1088 my $uglist = join (',', keys %{$ra->{1}->{$rolelist}});
1089 $data .= "acl:1:$path:$uglist:$rolelist:\n";
1090 }
1091 }
1092
1093 return $data;
1094}
1095
fda8ca85
WB
1096# The TFA configuration in priv/tfa.cfg format contains one line per user of
1097# the form:
1098# USER:TYPE:DATA
1099# DATA is a base64 encoded json string and its format depends on the type.
1100sub parse_priv_tfa_config {
1101 my ($filename, $raw) = @_;
1102
1103 my $users = {};
1104 my $cfg = { users => $users };
1105
1106 $raw = '' if !defined($raw);
1107 while ($raw =~ /^\s*(.+?)\s*$/gm) {
1108 my $line = $1;
1109 my ($user, $type, $data) = split(/:/, $line, 3);
1110
1111 my (undef, undef, $realm) = PVE::Auth::Plugin::verify_username($user, 1);
1112 if (!$realm) {
1113 warn "user tfa config - ignore user '$user' - invalid user name\n";
1114 next;
1115 }
1116
1117 $data = decode_json(decode_base64($data));
1118
1119 $users->{$user} = {
1120 type => $type,
1121 data => $data,
1122 };
1123 }
1124
1125 return $cfg;
1126}
1127
1128sub write_priv_tfa_config {
1129 my ($filename, $cfg) = @_;
1130
1131 my $output = '';
1132
1133 my $users = $cfg->{users};
1134 foreach my $user (sort keys %$users) {
1135 my $info = $users->{$user};
1136 next if !%$info; # skip empty entries
1137
1138 $info = {%$info}; # copy to verify contents:
1139
1140 my $type = delete $info->{type};
1141 my $data = delete $info->{data};
1142
1143 if (my @keys = keys %$info) {
1144 die "invalid keys in TFA config for user $user: " . join(', ', @keys) . "\n";
1145 }
1146
1147 $data = encode_base64(encode_json($data), '');
1148 $output .= "${user}:${type}:${data}\n";
1149 }
1150
1151 return $output;
1152}
1153
2c3a6c0a
DM
1154sub roles {
1155 my ($cfg, $user, $path) = @_;
1156
66931b11 1157 # NOTE: we do not consider pools here.
4bc17477
DM
1158 # You need to use $rpcenv->roles() instead if you want that.
1159
2c3a6c0a
DM
1160 return 'Administrator' if $user eq 'root@pam'; # root can do anything
1161
1162 my $perm = {};
1163
1164 foreach my $p (sort keys %{$cfg->{acl}}) {
1165 my $final = ($path eq $p);
1166
1167 next if !(($p eq '/') || $final || ($path =~ m|^$p/|));
1168
1169 my $acl = $cfg->{acl}->{$p};
1170
1171 #print "CHECKACL $path $p\n";
1172 #print "ACL $path = " . Dumper ($acl);
1173
1174 if (my $ri = $acl->{users}->{$user}) {
1175 my $new;
1176 foreach my $role (keys %$ri) {
1177 my $propagate = $ri->{$role};
1178 if ($final || $propagate) {
1179 #print "APPLY ROLE $p $user $role\n";
1180 $new = {} if !$new;
1181 $new->{$role} = 1;
1182 }
1183 }
1184 if ($new) {
1185 $perm = $new; # overwrite previous settings
1186 next; # user privs always override group privs
1187 }
1188 }
1189
1190 my $new;
1191 foreach my $g (keys %{$acl->{groups}}) {
1192 next if !$cfg->{groups}->{$g}->{users}->{$user};
1193 if (my $ri = $acl->{groups}->{$g}) {
1194 foreach my $role (keys %$ri) {
1195 my $propagate = $ri->{$role};
1196 if ($final || $propagate) {
1197 #print "APPLY ROLE $p \@$g $role\n";
1198 $new = {} if !$new;
1199 $new->{$role} = 1;
1200 }
1201 }
1202 }
1203 }
1204 if ($new) {
1205 $perm = $new; # overwrite previous settings
1206 next;
1207 }
2c3a6c0a
DM
1208 }
1209
4bc17477
DM
1210 return ('NoAccess') if defined ($perm->{NoAccess});
1211 #return () if defined ($perm->{NoAccess});
66931b11 1212
2c3a6c0a
DM
1213 #print "permission $user $path = " . Dumper ($perm);
1214
4bc17477 1215 my @ra = keys %$perm;
2c3a6c0a
DM
1216
1217 #print "roles $user $path = " . join (',', @ra) . "\n";
1218
1219 return @ra;
1220}
66931b11 1221
2c3a6c0a
DM
1222sub permission {
1223 my ($cfg, $user, $path) = @_;
1224
5bb4e06a 1225 $user = PVE::Auth::Plugin::verify_username($user, 1);
2c3a6c0a
DM
1226 return {} if !$user;
1227
1228 my @ra = roles($cfg, $user, $path);
66931b11 1229
2c3a6c0a
DM
1230 my $privs = {};
1231
1232 foreach my $role (@ra) {
1233 if (my $privset = $cfg->{roles}->{$role}) {
1234 foreach my $p (keys %$privset) {
1235 $privs->{$p} = 1;
1236 }
1237 }
1238 }
1239
1240 #print "priviledges $user $path = " . Dumper ($privs);
1241
1242 return $privs;
1243}
1244
1245sub check_permissions {
1246 my ($username, $path, $privlist) = @_;
1247
1248 $path = normalize_path($path);
1249 my $usercfg = cfs_read_file('user.cfg');
1250 my $perm = permission($usercfg, $username, $path);
1251
1252 foreach my $priv (split_list($privlist)) {
1253 return undef if !$perm->{$priv};
1254 };
1255
1256 return 1;
1257}
1258
3b4a3f94
AG
1259sub remove_vm_access {
1260 my ($vmid) = @_;
1261 my $delVMaccessFn = sub {
1262 my $usercfg = cfs_read_file("user.cfg");
57a70473 1263 my $modified;
3b4a3f94 1264
57a70473
DM
1265 if (my $acl = $usercfg->{acl}->{"/vms/$vmid"}) {
1266 delete $usercfg->{acl}->{"/vms/$vmid"};
1267 $modified = 1;
3b4a3f94
AG
1268 }
1269 if (my $pool = $usercfg->{vms}->{$vmid}) {
1270 if (my $data = $usercfg->{pools}->{$pool}) {
1271 delete $data->{vms}->{$vmid};
1272 delete $usercfg->{vms}->{$vmid};
57a70473 1273 $modified = 1;
3b4a3f94
AG
1274 }
1275 }
57a70473 1276 cfs_write_file("user.cfg", $usercfg) if $modified;
3b4a3f94
AG
1277 };
1278
1279 lock_user_config($delVMaccessFn, "access permissions cleanup for VM $vmid failed");
1280}
1281
60844761
AG
1282sub remove_storage_access {
1283 my ($storeid) = @_;
1284
1285 my $deleteStorageAccessFn = sub {
1286 my $usercfg = cfs_read_file("user.cfg");
1287 my $modified;
1288
1289 if (my $storage = $usercfg->{acl}->{"/storage/$storeid"}) {
1290 delete $usercfg->{acl}->{"/storage/$storeid"};
1291 $modified = 1;
1292 }
1293 foreach my $pool (keys %{$usercfg->{pools}}) {
1294 delete $usercfg->{pools}->{$pool}->{storage}->{$storeid};
1295 $modified = 1;
1296 }
1297 cfs_write_file("user.cfg", $usercfg) if $modified;
1298 };
1299
1300 lock_user_config($deleteStorageAccessFn,
1301 "access permissions cleanup for storage $storeid failed");
1302}
1303
018ae3a9
DM
1304sub add_vm_to_pool {
1305 my ($vmid, $pool) = @_;
1306
1307 my $addVMtoPoolFn = sub {
1308 my $usercfg = cfs_read_file("user.cfg");
1309 if (my $data = $usercfg->{pools}->{$pool}) {
1310 $data->{vms}->{$vmid} = 1;
1311 $usercfg->{vms}->{$vmid} = $pool;
1312 cfs_write_file("user.cfg", $usercfg);
1313 }
1314 };
1315
1316 lock_user_config($addVMtoPoolFn, "can't add VM $vmid to pool '$pool'");
1317}
1318
1319sub remove_vm_from_pool {
1320 my ($vmid) = @_;
66931b11 1321
018ae3a9
DM
1322 my $delVMfromPoolFn = sub {
1323 my $usercfg = cfs_read_file("user.cfg");
1324 if (my $pool = $usercfg->{vms}->{$vmid}) {
1325 if (my $data = $usercfg->{pools}->{$pool}) {
1326 delete $data->{vms}->{$vmid};
1327 delete $usercfg->{vms}->{$vmid};
1328 cfs_write_file("user.cfg", $usercfg);
1329 }
1330 }
1331 };
1332
1333 lock_user_config($delVMfromPoolFn, "pool cleanup for VM $vmid failed");
1334}
1335
fda8ca85
WB
1336my $CUSTOM_TFA_TYPES = {
1337 u2f => 1,
1338 oath => 1,
1339};
1340
1341# Delete an entry by setting $data=undef in which case $type is ignored.
1342# Otherwise both must be valid.
1343sub user_set_tfa {
1344 my ($userid, $realm, $type, $data, $cached_usercfg, $cached_domaincfg) = @_;
1345
1346 if (defined($data) && !defined($type)) {
1347 # This is an internal usage error and should not happen
1348 die "cannot set tfa data without a type\n";
1349 }
1350
1351 my $user_cfg = $cached_usercfg || cfs_read_file('user.cfg');
1352 my $user = $user_cfg->{users}->{$userid}
1353 or die "user '$userid' not found\n";
1354
1355 my $domain_cfg = $cached_domaincfg || cfs_read_file('domains.cfg');
1356 my $realm_cfg = $domain_cfg->{ids}->{$realm};
1357 die "auth domain '$realm' does not exist\n" if !$realm_cfg;
1358
1359 my $realm_tfa = $realm_cfg->{tfa};
1360 if (defined($realm_tfa)) {
1361 $realm_tfa = PVE::Auth::Plugin::parse_tfa_config($realm_tfa);
1362 # If the realm has a TFA setting, we're only allowed to use that.
1363 if (defined($data)) {
1364 my $required_type = $realm_tfa->{type};
1365 if ($required_type ne $type) {
1366 die "realm '$realm' only allows TFA of type '$required_type\n";
1367 }
1368
1369 if (defined($data->{config})) {
1370 # XXX: Is it enough if the type matches? Or should the configuration also match?
1371 }
1372
1373 # realm-configured tfa always uses a simple key list, so use the user.cfg
1374 $user->{keys} = $data->{keys};
1375 } else {
1376 die "realm '$realm' does not allow removing the 2nd factor\n";
1377 }
1378 } else {
1379 # Without a realm-enforced TFA setting the user can add a u2f or totp entry by themselves.
1380 # The 'yubico' type requires yubico server settings, which have to be configured on the
1381 # realm, so this is not supported here:
1382 die "domain '$realm' does not support TFA type '$type'\n"
1383 if defined($data) && !$CUSTOM_TFA_TYPES->{$type};
1384 }
1385
1386 # Custom TFA entries are stored in priv/tfa.cfg as they can be more complet: u2f uses a
1387 # public key and a key handle, TOTP requires the usual totp settings...
1388
1389 my $tfa_cfg = cfs_read_file('priv/tfa.cfg');
1390 my $tfa = ($tfa_cfg->{users}->{$userid} //= {});
1391
1392 if (defined($data)) {
1393 $tfa->{type} = $type;
1394 $tfa->{data} = $data;
1395 cfs_write_file('priv/tfa.cfg', $tfa_cfg);
1396
1397 $user->{keys} = 'x';
1398 } else {
1399 delete $tfa_cfg->{users}->{$userid};
1400 cfs_write_file('priv/tfa.cfg', $tfa_cfg);
1401
1402 delete $user->{keys};
1403 }
1404
1405 cfs_write_file('user.cfg', $user_cfg);
1406}
1407
1408sub user_get_tfa {
1409 my ($username, $realm) = @_;
1410
1411 my $user_cfg = cfs_read_file('user.cfg');
1412 my $user = $user_cfg->{users}->{$username}
1413 or die "user '$username' not found\n";
1414
1415 my $keys = $user->{keys};
1416 return if !$keys;
1417
1418 my $domain_cfg = cfs_read_file('domains.cfg');
1419 my $realm_cfg = $domain_cfg->{ids}->{$realm};
1420 die "auth domain '$realm' does not exist\n" if !$realm_cfg;
1421
1422 my $realm_tfa = $realm_cfg->{tfa};
1423 $realm_tfa = PVE::Auth::Plugin::parse_tfa_config($realm_tfa)
1424 if $realm_tfa;
1425
1426 if ($keys ne 'x') {
1427 # old style config, find the type via the realm
1428 return if !$realm_tfa;
1429 return ($realm_tfa->{type}, {
1430 keys => $keys,
1431 config => $realm_tfa,
1432 });
1433 } else {
1434 my $tfa_cfg = cfs_read_file('priv/tfa.cfg');
1435 my $tfa = $tfa_cfg->{users}->{$username};
1436 return if !$tfa; # should not happen (user.cfg wasn't cleaned up?)
1437
1438 if ($realm_tfa) {
1439 # if the realm has a tfa setting we need to verify the type:
1440 die "auth domain '$realm' and user have mismatching TFA settings\n"
1441 if $realm_tfa && $realm_tfa->{type} ne $tfa->{type};
1442 }
1443
1444 return ($tfa->{type}, $tfa->{data});
1445 }
1446}
1447
3e5bfdf6
DM
1448# bash completion helpers
1449
ab7b19b5
SI
1450register_standard_option('userid-completed',
1451 get_standard_option('userid', { completion => \&complete_username}),
1452);
1453
3e5bfdf6
DM
1454sub complete_username {
1455
1456 my $user_cfg = cfs_read_file('user.cfg');
1457
1458 return [ keys %{$user_cfg->{users}} ];
1459}
1460
1461sub complete_group {
1462
1463 my $user_cfg = cfs_read_file('user.cfg');
1464
1465 return [ keys %{$user_cfg->{groups}} ];
1466}
1467
1468sub complete_realm {
1469
1470 my $domain_cfg = cfs_read_file('domains.cfg');
1471
1472 return [ keys %{$domain_cfg->{ids}} ];
1473}
1474
2c3a6c0a 14751;