]> git.proxmox.com Git - pve-access-control.git/blame - PVE/AccessControl.pm
partially fix #2825: authkey: rotate if it was generated in the future
[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
243262f1 50my $ticket_lifetime = 3600 * 2; # 2 hours
8304b226 51my $auth_graceperiod = 60 * 5; # 5 minutes
243262f1 52my $authkey_lifetime = 3600 * 24; # rotate every 24 hours
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 {
9de25de8
TL
152 my $now = time();
153 if ($now - $mtime >= $authkey_lifetime) {
21800a71
FG
154 warn "auth key pair too old, rotating..\n" if !$quiet;;
155 return 0;
9de25de8
TL
156 } elsif ($mtime > $now + $auth_graceperiod) {
157 # a nodes RTC had a time set in the future during key generation -> ticket
158 # validity is clamped to 0+5 min grace period until now >= mtime again
159 my (undef, $old_mtime) = get_pubkey(1);
160 if ($old_mtime && $mtime >= $old_mtime && $mtime - $old_mtime < $ticket_lifetime) {
161 warn "auth key pair generated in the future (key $mtime > host $now),"
162 ." but old key still exists and in valid grace period so avoid automatic"
163 ." fixup. Cluster time not in sync?\n" if !$quiet;
164 return 1;
165 }
166 warn "auth key pair generated in the future (key $mtime > host $now), rotating..\n" if !$quiet;
167 return 0;
21800a71
FG
168 } else {
169 warn "auth key new enough, skipping rotation\n" if !$quiet;;
170 return 1;
171 }
172 }
173}
2c3a6c0a 174
21800a71
FG
175sub rotate_authkey {
176 return if $authkey_lifetime == 0;
177
03593f3d 178 PVE::Cluster::cfs_lock_authkey(undef, sub {
21800a71
FG
179 # re-check with lock to avoid double rotation in clusters
180 return if check_authkey();
181
182 my $old = get_pubkey();
e770e667 183 my $new = Crypt::OpenSSL::RSA->generate_key(2048);
21800a71
FG
184
185 if ($old) {
186 eval {
187 my $pem = $old->get_public_key_x509_string();
b8055a4f 188 # mtime is used for caching and ticket age range calculation
21800a71
FG
189 PVE::Tools::file_set_contents($pve_auth_key_files->{pubold}, $pem);
190 };
191 die "Failed to store old auth key: $@\n" if $@;
192 }
193
21800a71
FG
194 eval {
195 my $pem = $new->get_public_key_x509_string();
b8055a4f
FG
196 # mtime is used for caching and ticket age range calculation,
197 # should be close to that of pubold above
21800a71
FG
198 PVE::Tools::file_set_contents($pve_auth_key_files->{pub}, $pem);
199 };
200 if ($@) {
201 if ($old) {
202 warn "Failed to store new auth key - $@\n";
203 warn "Reverting to previous auth key\n";
204 eval {
205 my $pem = $old->get_public_key_x509_string();
206 PVE::Tools::file_set_contents($pve_auth_key_files->{pub}, $pem);
207 };
208 die "Failed to restore old auth key: $@\n" if $@;
209 } else {
210 die "Failed to store new auth key - $@\n";
211 }
212 }
213
214 eval {
215 my $pem = $new->get_private_key_string();
216 PVE::Tools::file_set_contents($pve_auth_key_files->{priv}, $pem);
217 };
218 if ($@) {
219 warn "Failed to store new auth key - $@\n";
220 warn "Deleting auth key to force regeneration\n";
221 unlink $pve_auth_key_files->{pub};
222 unlink $pve_auth_key_files->{priv};
223 }
224 });
225 die $@ if $@;
2c3a6c0a
DM
226}
227
571e9d06
FG
228PVE::JSONSchema::register_standard_option('tokenid', {
229 description => "API token identifier.",
230 type => "string",
231 format => "pve-tokenid",
232});
233
28e3dc05
FG
234our $token_subid_regex = $PVE::Auth::Plugin::realm_regex;
235
236# username@realm username realm tokenid
237our $token_full_regex = qr/((${PVE::Auth::Plugin::user_regex})\@(${PVE::Auth::Plugin::realm_regex}))!(${token_subid_regex})/;
238
239our $userid_or_token_regex = qr/^$PVE::Auth::Plugin::user_regex\@$PVE::Auth::Plugin::realm_regex(?:!$token_subid_regex)?$/;
240
241sub split_tokenid {
242 my ($tokenid, $noerr) = @_;
243
244 if ($tokenid =~ /^${token_full_regex}$/) {
245 return ($1, $4);
246 }
247
248 die "'$tokenid' is not a valid token ID - not able to split into user and token parts\n" if !$noerr;
249
250 return undef;
251}
252
253sub join_tokenid {
254 my ($username, $tokensubid) = @_;
255
256 my $joined = "${username}!${tokensubid}";
257
258 return pve_verify_tokenid($joined);
259}
260
261PVE::JSONSchema::register_format('pve-tokenid', \&pve_verify_tokenid);
262sub pve_verify_tokenid {
263 my ($tokenid, $noerr) = @_;
264
265 if ($tokenid =~ /^${token_full_regex}$/) {
266 return wantarray ? ($tokenid, $2, $3, $4) : $tokenid;
267 }
268
269 die "value '$tokenid' does not look like a valid token ID\n" if !$noerr;
270
271 return undef;
272}
273
274
2c3a6c0a 275my $csrf_prevention_secret;
e149b1c6 276my $csrf_prevention_secret_legacy;
2c3a6c0a
DM
277my $get_csrfr_secret = sub {
278 if (!$csrf_prevention_secret) {
66931b11 279 my $input = PVE::Tools::file_get_contents($pve_www_key_fn);
51e6f56d 280 $csrf_prevention_secret = Digest::SHA::hmac_sha256_base64($input);
e149b1c6 281 $csrf_prevention_secret_legacy = Digest::SHA::sha1_base64($input);
2c3a6c0a
DM
282 }
283 return $csrf_prevention_secret;
284};
285
286sub assemble_csrf_prevention_token {
287 my ($username) = @_;
288
a1f8aaae 289 my $secret = &$get_csrfr_secret();
2c3a6c0a 290
a1f8aaae 291 return PVE::Ticket::assemble_csrf_prevention_token ($secret, $username);
2c3a6c0a
DM
292}
293
294sub verify_csrf_prevention_token {
295 my ($username, $token, $noerr) = @_;
296
e149b1c6
TL
297 my $secret = $get_csrfr_secret->();
298
299 # FIXME: remove with PVE 7 and/or refactor all into PVE::Ticket ?
300 if ($token =~ m/^([A-Z0-9]{8}):(\S+)$/) {
301 my $sig = $2;
302 if (length($sig) == 27) {
303 # the legacy secret got populated by above get_csrfr_secret call
304 $secret = $csrf_prevention_secret_legacy;
305 }
306 }
2c3a6c0a 307
a1f8aaae 308 return PVE::Ticket::verify_csrf_prevention_token(
8304b226 309 $secret, $username, $token, -$auth_graceperiod, $ticket_lifetime, $noerr);
2c3a6c0a
DM
310}
311
21800a71
FG
312my $get_ticket_age_range = sub {
313 my ($now, $mtime, $rotated) = @_;
314
315 my $key_age = $now - $mtime;
316 $key_age = 0 if $key_age < 0;
317
8304b226 318 my $min = -$auth_graceperiod;
21800a71
FG
319 my $max = $ticket_lifetime;
320
321 if ($rotated) {
322 # ticket creation after rotation is not allowed
8304b226 323 $min = $key_age - $auth_graceperiod;
21800a71
FG
324 } else {
325 if ($key_age > $authkey_lifetime && $authkey_lifetime > 0) {
326 if (PVE::Cluster::check_cfs_quorum(1)) {
327 # key should have been rotated, clamp range accordingly
328 $min = $key_age - $authkey_lifetime;
329 } else {
330 warn "Cluster not quorate - extending auth key lifetime!\n";
331 }
332 }
333
8304b226 334 $max = $key_age + $auth_graceperiod if $key_age < $ticket_lifetime;
21800a71 335 }
2c3a6c0a 336
21800a71
FG
337 return undef if $min > $ticket_lifetime;
338 return ($min, $max);
339};
2c3a6c0a
DM
340
341sub assemble_ticket {
18f8ba18 342 my ($data) = @_;
2c3a6c0a
DM
343
344 my $rsa_priv = get_privkey();
345
18f8ba18 346 return PVE::Ticket::assemble_rsa_ticket($rsa_priv, 'PVE', $data);
2c3a6c0a
DM
347}
348
349sub verify_ticket {
350 my ($ticket, $noerr) = @_;
351
21800a71
FG
352 my $now = time();
353
354 my $check = sub {
355 my ($old) = @_;
356
357 my ($rsa_pub, $rsa_mtime) = get_pubkey($old);
358 return undef if !$rsa_pub;
359
360 my ($min, $max) = $get_ticket_age_range->($now, $rsa_mtime, $old);
5bb966fe 361 return undef if !defined($min);
21800a71
FG
362
363 return PVE::Ticket::verify_rsa_ticket(
364 $rsa_pub, 'PVE', $ticket, undef, $min, $max, 1);
365 };
a1f8aaae 366
18f8ba18 367 my ($data, $age) = $check->();
a1f8aaae 368
21800a71 369 # check with old, rotated key if current key failed
18f8ba18 370 ($data, $age) = $check->(1) if !defined($data);
21800a71 371
18f8ba18 372 my $auth_failure = sub {
21800a71
FG
373 if ($noerr) {
374 return undef;
375 } else {
376 # raise error via undef ticket
377 PVE::Ticket::verify_rsa_ticket(undef, 'PVE');
378 }
18f8ba18
WB
379 };
380
381 if (!defined($data)) {
382 return $auth_failure->();
383 }
384
f25628d3 385 my ($username, $tfa_info);
18f8ba18
WB
386 if ($data =~ m{^u2f!([^!]+)!([0-9a-zA-Z/.=_\-+]+)$}) {
387 # Ticket for u2f-users:
f25628d3 388 ($username, my $challenge) = ($1, $2);
18f8ba18
WB
389 if ($challenge eq 'verified') {
390 # u2f challenge was completed
391 $challenge = undef;
392 } elsif (!wantarray) {
393 # The caller is not aware there could be an ongoing challenge,
394 # so we treat this ticket as invalid:
395 return $auth_failure->();
396 }
f25628d3
WB
397 $tfa_info = {
398 type => 'u2f',
399 challenge => $challenge,
400 };
401 } elsif ($data =~ /^tfa!(.*)$/) {
402 # TOTP and Yubico don't require a challenge so this is the generic
403 # 'missing 2nd factor ticket'
404 $username = $1;
405 $tfa_info = { type => 'tfa' };
18f8ba18
WB
406 } else {
407 # Regular ticket (full access)
408 $username = $data;
21800a71 409 }
2c3a6c0a 410
a1f8aaae 411 return undef if !PVE::Auth::Plugin::verify_username($username, $noerr);
2c3a6c0a 412
f25628d3 413 return wantarray ? ($username, $age, $tfa_info) : $username;
2c3a6c0a
DM
414}
415
35c3ca0f
FG
416sub verify_token {
417 my ($api_token) = @_;
418
419 die "no API token specified\n" if !$api_token;
420
421 my ($tokenid, $value);
422 if ($api_token =~ /^(.*)=(.*)$/) {
423 $tokenid = $1;
424 $value = $2;
425 } else {
426 die "no tokenid specified\n";
427 }
428
429 my ($username, $token) = split_tokenid($tokenid);
430
431 my $usercfg = cfs_read_file('user.cfg');
432 check_user_enabled($usercfg, $username);
433 check_token_exist($usercfg, $username, $token);
434
435 my $ctime = time();
436
437 my $user = $usercfg->{users}->{$username};
438 die "account expired\n" if $user->{expire} && ($user->{expire} < $ctime);
439
440 my $token_info = $user->{tokens}->{$token};
441 die "token expired\n" if $token_info->{expire} && ($token_info->{expire} < $ctime);
442
443 die "invalid token value!\n" if !PVE::Cluster::verify_token($tokenid, $value);
444
445 return wantarray ? ($tokenid) : $tokenid;
446}
447
448
adf8d771
DM
449# VNC tickets
450# - they do not contain the username in plain text
451# - they are restricted to a specific resource path (example: '/vms/100')
452sub assemble_vnc_ticket {
453 my ($username, $path) = @_;
454
455 my $rsa_priv = get_privkey();
456
adf8d771
DM
457 $path = normalize_path($path);
458
a1f8aaae 459 my $secret_data = "$username:$path";
adf8d771 460
a1f8aaae
DM
461 return PVE::Ticket::assemble_rsa_ticket(
462 $rsa_priv, 'PVEVNC', undef, $secret_data);
adf8d771
DM
463}
464
465sub verify_vnc_ticket {
466 my ($ticket, $username, $path, $noerr) = @_;
467
a1f8aaae 468 my $secret_data = "$username:$path";
adf8d771 469
21800a71 470 my ($rsa_pub, $rsa_mtime) = get_pubkey();
5efff6c1 471 if (!$rsa_pub || (time() - $rsa_mtime > $authkey_lifetime && $authkey_lifetime > 0)) {
21800a71
FG
472 if ($noerr) {
473 return undef;
474 } else {
475 # raise error via undef ticket
476 PVE::Ticket::verify_rsa_ticket($rsa_pub, 'PVEVNC');
477 }
478 }
479
a1f8aaae
DM
480 return PVE::Ticket::verify_rsa_ticket(
481 $rsa_pub, 'PVEVNC', $ticket, $secret_data, -20, 40, $noerr);
adf8d771
DM
482}
483
23b35225 484sub assemble_spice_ticket {
bf3e6d31 485 my ($username, $vmid, $node) = @_;
23b35225 486
3f62bdbe 487 my $secret = &$get_csrfr_secret();
23b35225 488
a1f8aaae
DM
489 return PVE::Ticket::assemble_spice_ticket(
490 $secret, $username, $vmid, $node);
bf3e6d31
DM
491}
492
493sub verify_spice_connect_url {
494 my ($connect_str) = @_;
495
a1f8aaae 496 my $secret = &$get_csrfr_secret();
bf3e6d31 497
a1f8aaae 498 return PVE::Ticket::verify_spice_connect_url($secret, $connect_str);
23b35225
AD
499}
500
cee5583b
DM
501sub read_x509_subject_spice {
502 my ($filename) = @_;
503
504 # read x509 subject
505 my $bio = Net::SSLeay::BIO_new_file($filename, 'r');
44903703
FG
506 die "Could not open $filename using OpenSSL\n"
507 if !$bio;
508
cee5583b
DM
509 my $x509 = Net::SSLeay::PEM_read_bio_X509($bio);
510 Net::SSLeay::BIO_free($bio);
44903703
FG
511
512 die "Could not parse X509 certificate in $filename\n"
513 if !$x509;
514
cee5583b
DM
515 my $nameobj = Net::SSLeay::X509_get_subject_name($x509);
516 my $subject = Net::SSLeay::X509_NAME_oneline($nameobj);
517 Net::SSLeay::X509_free($x509);
66931b11 518
cee5583b
DM
519 # remote-viewer wants comma as seperator (not '/')
520 $subject =~ s!^/!!;
521 $subject =~ s!/(\w+=)!,$1!g;
522
523 return $subject;
524}
525
526# helper to generate SPICE remote-viewer configuration
527sub remote_viewer_config {
528 my ($authuser, $vmid, $node, $proxy, $title, $port) = @_;
529
530 if (!$proxy) {
531 my $host = `hostname -f` || PVE::INotify::nodename();
532 chomp $host;
533 $proxy = $host;
534 }
535
536 my ($ticket, $proxyticket) = assemble_spice_ticket($authuser, $vmid, $node);
537
538 my $filename = "/etc/pve/local/pve-ssl.pem";
539 my $subject = read_x509_subject_spice($filename);
540
541 my $cacert = PVE::Tools::file_get_contents("/etc/pve/pve-root-ca.pem", 8192);
542 $cacert =~ s/\n/\\n/g;
63691fc6 543
25167526 544 $proxy = "[$proxy]" if Net::IP::ip_is_ipv6($proxy);
cee5583b 545 my $config = {
63691fc6
DM
546 'secure-attention' => "Ctrl+Alt+Ins",
547 'toggle-fullscreen' => "Shift+F11",
548 'release-cursor' => "Ctrl+Alt+R",
cee5583b
DM
549 type => 'spice',
550 title => $title,
1075c589 551 host => $proxyticket, # this breaks tls hostname verification, so we need to use 'host-subject'
cee5583b
DM
552 proxy => "http://$proxy:3128",
553 'tls-port' => $port,
554 'host-subject' => $subject,
555 ca => $cacert,
556 password => $ticket,
557 'delete-this-file' => 1,
558 };
559
560 return ($ticket, $proxyticket, $config);
561}
562
37d45deb 563sub check_user_exist {
7070c1ae 564 my ($usercfg, $username, $noerr) = @_;
2c3a6c0a 565
5bb4e06a 566 $username = PVE::Auth::Plugin::verify_username($username, $noerr);
2c3a6c0a 567 return undef if !$username;
66931b11 568
37d45deb
DM
569 return $usercfg->{users}->{$username} if $usercfg && $usercfg->{users}->{$username};
570
571 die "no such user ('$username')\n" if !$noerr;
66931b11 572
37d45deb
DM
573 return undef;
574}
575
576sub check_user_enabled {
577 my ($usercfg, $username, $noerr) = @_;
578
579 my $data = check_user_exist($usercfg, $username, $noerr);
580 return undef if !$data;
581
582 return 1 if $data->{enable};
2c3a6c0a 583
37d45deb 584 die "user '$username' is disabled\n" if !$noerr;
66931b11 585
7070c1ae 586 return undef;
2c3a6c0a
DM
587}
588
571e9d06
FG
589sub check_token_exist {
590 my ($usercfg, $username, $tokenid, $noerr) = @_;
591
592 my $user = check_user_exist($usercfg, $username, $noerr);
593 return undef if !$user;
594
595 return $user->{tokens}->{$tokenid}
596 if defined($user->{tokens}) && $user->{tokens}->{$tokenid};
597
598 die "no such token '$tokenid' for user '$username'\n" if !$noerr;
599
600 return undef;
601}
602
96f8ebd6 603sub verify_one_time_pw {
fda8ca85 604 my ($type, $username, $keys, $tfa_cfg, $otp) = @_;
96f8ebd6 605
1075c589 606 die "missing one time password for two-factor authentication '$type'\n" if !$otp;
96f8ebd6
DM
607
608 # fixme: proxy support?
609 my $proxy;
610
611 if ($type eq 'yubico') {
972859d1
DM
612 PVE::OTP::yubico_verify_otp($otp, $keys, $tfa_cfg->{url},
613 $tfa_cfg->{id}, $tfa_cfg->{key}, $proxy);
1abc2c0a 614 } elsif ($type eq 'oath') {
972859d1 615 PVE::OTP::oath_verify_otp($otp, $keys, $tfa_cfg->{step}, $tfa_cfg->{digits});
96f8ebd6
DM
616 } else {
617 die "unknown tfa type '$type'\n";
618 }
96f8ebd6
DM
619}
620
2c3a6c0a 621# password should be utf8 encoded
1075c589 622# Note: some plugins delay/sleep if auth fails
2c3a6c0a 623sub authenticate_user {
96f8ebd6 624 my ($username, $password, $otp) = @_;
2c3a6c0a
DM
625
626 die "no username specified\n" if !$username;
66931b11 627
5bb4e06a 628 my ($ruid, $realm);
2c3a6c0a 629
5bb4e06a 630 ($username, $ruid, $realm) = PVE::Auth::Plugin::verify_username($username);
2c3a6c0a
DM
631
632 my $usercfg = cfs_read_file('user.cfg');
633
6126ab75 634 check_user_enabled($usercfg, $username);
2c3a6c0a
DM
635
636 my $ctime = time();
637 my $expire = $usercfg->{users}->{$username}->{expire};
638
6126ab75 639 die "account expired\n" if $expire && ($expire < $ctime);
2c3a6c0a 640
5bb4e06a 641 my $domain_cfg = cfs_read_file('domains.cfg');
2c3a6c0a 642
6126ab75 643 my $cfg = $domain_cfg->{ids}->{$realm};
3443faca 644 die "auth domain '$realm' does not exist\n" if !$cfg;
6126ab75
DM
645 my $plugin = PVE::Auth::Plugin->lookup($cfg->{type});
646 $plugin->authenticate_user($cfg, $realm, $ruid, $password);
2c3a6c0a 647
fda8ca85
WB
648 my ($type, $tfa_data) = user_get_tfa($username, $realm);
649 if ($type) {
650 if ($type eq 'u2f') {
651 # Note that if the user did not manage to complete the initial u2f registration
652 # challenge we have a hash containing a 'challenge' entry in the user's tfa.cfg entry:
f25628d3
WB
653 $tfa_data = undef if exists $tfa_data->{challenge};
654 } elsif (!defined($otp)) {
655 # The user requires a 2nd factor but has not provided one. Return success but
656 # don't clear $tfa_data.
fda8ca85
WB
657 } else {
658 my $keys = $tfa_data->{keys};
659 my $tfa_cfg = $tfa_data->{config};
660 verify_one_time_pw($type, $username, $keys, $tfa_cfg, $otp);
f25628d3
WB
661 $tfa_data = undef;
662 }
663
664 # Return the type along with the rest:
665 if ($tfa_data) {
666 $tfa_data = {
667 type => $type,
668 data => $tfa_data,
669 };
fda8ca85 670 }
96f8ebd6
DM
671 }
672
f25628d3 673 return wantarray ? ($username, $tfa_data) : $username;
2c3a6c0a
DM
674}
675
676sub domain_set_password {
5bb4e06a 677 my ($realm, $username, $password) = @_;
2c3a6c0a
DM
678
679 die "no auth domain specified" if !$realm;
680
5bb4e06a
DM
681 my $domain_cfg = cfs_read_file('domains.cfg');
682
683 my $cfg = $domain_cfg->{ids}->{$realm};
1075c589 684 die "auth domain '$realm' does not exist\n" if !$cfg;
5bb4e06a
DM
685 my $plugin = PVE::Auth::Plugin->lookup($cfg->{type});
686 $plugin->store_password($cfg, $realm, $username, $password);
2c3a6c0a
DM
687}
688
689sub add_user_group {
2c3a6c0a 690 my ($username, $usercfg, $group) = @_;
66931b11 691
2c3a6c0a
DM
692 $usercfg->{users}->{$username}->{groups}->{$group} = 1;
693 $usercfg->{groups}->{$group}->{users}->{$username} = 1;
694}
695
696sub delete_user_group {
2c3a6c0a 697 my ($username, $usercfg) = @_;
66931b11 698
2c3a6c0a
DM
699 foreach my $group (keys %{$usercfg->{groups}}) {
700
66931b11 701 delete ($usercfg->{groups}->{$group}->{users}->{$username})
2c3a6c0a
DM
702 if $usercfg->{groups}->{$group}->{users}->{$username};
703 }
704}
705
706sub delete_user_acl {
2c3a6c0a
DM
707 my ($username, $usercfg) = @_;
708
709 foreach my $acl (keys %{$usercfg->{acl}}) {
710
66931b11 711 delete ($usercfg->{acl}->{$acl}->{users}->{$username})
2c3a6c0a
DM
712 if $usercfg->{acl}->{$acl}->{users}->{$username};
713 }
2c3a6c0a 714}
39c85db8 715
2c3a6c0a 716sub delete_group_acl {
2c3a6c0a
DM
717 my ($group, $usercfg) = @_;
718
719 foreach my $acl (keys %{$usercfg->{acl}}) {
720
66931b11 721 delete ($usercfg->{acl}->{$acl}->{groups}->{$group})
2c3a6c0a
DM
722 if $usercfg->{acl}->{$acl}->{groups}->{$group};
723 }
39c85db8
DM
724}
725
726sub delete_pool_acl {
39c85db8 727 my ($pool, $usercfg) = @_;
2c3a6c0a 728
39c85db8
DM
729 my $path = "/pool/$pool";
730
3b4a3f94 731 delete ($usercfg->{acl}->{$path})
2c3a6c0a
DM
732}
733
734# we automatically create some predefined roles by splitting privs
735# into 3 groups (per category)
736# root: only root is allowed to do that
737# admin: an administrator can to that
1075c589 738# user: a normal user/customer can to that
2c3a6c0a
DM
739my $privgroups = {
740 VM => {
741 root => [],
66931b11
DM
742 admin => [
743 'VM.Config.Disk',
744 'VM.Config.CPU',
745 'VM.Config.Memory',
746 'VM.Config.Network',
c0fead8c 747 'VM.Config.HWType',
66931b11
DM
748 'VM.Config.Options', # covers all other things
749 'VM.Allocate',
750 'VM.Clone',
2c3a6c0a 751 'VM.Migrate',
66931b11
DM
752 'VM.Monitor',
753 'VM.Snapshot',
aad513f6 754 'VM.Snapshot.Rollback',
2c3a6c0a
DM
755 ],
756 user => [
cc7bdf33 757 'VM.Config.CDROM', # change CDROM media
cb381abc 758 'VM.Config.Cloudinit',
66931b11 759 'VM.Console',
68d5a86d 760 'VM.Backup',
2c3a6c0a
DM
761 'VM.PowerMgmt',
762 ],
66931b11 763 audit => [
82b63965 764 'VM.Audit',
2c3a6c0a
DM
765 ],
766 },
767 Sys => {
768 root => [
66931b11 769 'Sys.PowerMgmt',
37d45deb 770 'Sys.Modify', # edit/change node settings
2c3a6c0a
DM
771 ],
772 admin => [
2e376c58 773 'Permissions.Modify',
66931b11 774 'Sys.Console',
2c3a6c0a
DM
775 'Sys.Syslog',
776 ],
777 user => [],
778 audit => [
779 'Sys.Audit',
780 ],
781 },
782 Datastore => {
2e376c58 783 root => [],
19f60b5e
DM
784 admin => [
785 'Datastore.Allocate',
373cb383 786 'Datastore.AllocateTemplate',
19f60b5e 787 ],
2c3a6c0a
DM
788 user => [
789 'Datastore.AllocateSpace',
790 ],
791 audit => [
792 'Datastore.Audit',
793 ],
794 },
40672671
AD
795 SDN => {
796 root => [],
797 admin => [
798 'SDN.Allocate',
799 'SDN.Audit',
800 ],
801 audit => [
802 'SDN.Audit',
803 ],
804 },
12683df7 805 User => {
82b63965
DM
806 root => [
807 'Realm.Allocate',
808 ],
12683df7
DM
809 admin => [
810 'User.Modify',
82b63965 811 'Group.Allocate', # edit/change group settings
66931b11 812 'Realm.AllocateUser',
19f60b5e 813 ],
12683df7
DM
814 user => [],
815 audit => [],
816 },
dee1c882
DM
817 Pool => {
818 root => [],
819 admin => [
820 'Pool.Allocate', # create/delete pools
821 ],
822 user => [],
823 audit => [],
824 },
2c3a6c0a
DM
825};
826
827my $valid_privs = {};
828
829my $special_roles = {
1075c589
FG
830 'NoAccess' => {}, # no privileges
831 'Administrator' => $valid_privs, # all privileges
2c3a6c0a
DM
832};
833
834sub create_roles {
835
836 foreach my $cat (keys %$privgroups) {
837 my $cd = $privgroups->{$cat};
66931b11 838 foreach my $p (@{$cd->{root}}, @{$cd->{admin}},
2c3a6c0a
DM
839 @{$cd->{user}}, @{$cd->{audit}}) {
840 $valid_privs->{$p} = 1;
841 }
842 foreach my $p (@{$cd->{admin}}, @{$cd->{user}}, @{$cd->{audit}}) {
843
844 $special_roles->{"PVE${cat}Admin"}->{$p} = 1;
845 $special_roles->{"PVEAdmin"}->{$p} = 1;
846 }
847 if (scalar(@{$cd->{user}})) {
848 foreach my $p (@{$cd->{user}}, @{$cd->{audit}}) {
849 $special_roles->{"PVE${cat}User"}->{$p} = 1;
850 }
851 }
852 foreach my $p (@{$cd->{audit}}) {
853 $special_roles->{"PVEAuditor"}->{$p} = 1;
854 }
855 }
ff4b2235 856
7b395f99 857 $special_roles->{"PVETemplateUser"} = { 'VM.Clone' => 1, 'VM.Audit' => 1 };
2c3a6c0a
DM
858};
859
860create_roles();
861
0fea3f16
DC
862sub create_priv_properties {
863 my $properties = {};
864 foreach my $priv (keys %$valid_privs) {
865 $properties->{$priv} = {
866 type => 'boolean',
867 optional => 1,
868 };
869 }
870 return $properties;
871}
872
894e6f0c
PA
873sub role_is_special {
874 my ($role) = @_;
b7ba86d4 875 return (exists $special_roles->{$role}) ? 1 : 0;
894e6f0c
PA
876}
877
2c3a6c0a
DM
878sub add_role_privs {
879 my ($role, $usercfg, $privs) = @_;
880
881 return if !$privs;
882
883 die "role '$role' does not exist\n" if !$usercfg->{roles}->{$role};
884
885 foreach my $priv (split_list($privs)) {
886 if (defined ($valid_privs->{$priv})) {
887 $usercfg->{roles}->{$role}->{$priv} = 1;
888 } else {
1075c589 889 die "invalid privilege '$priv'\n";
66931b11
DM
890 }
891 }
2c3a6c0a
DM
892}
893
894sub normalize_path {
895 my $path = shift;
896
4bc17477 897 $path =~ s|/+|/|g;
2c3a6c0a
DM
898
899 $path =~ s|/$||;
900
901 $path = '/' if !$path;
902
4bc17477
DM
903 $path = "/$path" if $path !~ m|^/|;
904
e4f8fc2e 905 return undef if $path !~ m|^[[:alnum:]\.\-\_\/]+$|;
2c3a6c0a
DM
906
907 return $path;
66931b11 908}
2c3a6c0a 909
2c3a6c0a
DM
910PVE::JSONSchema::register_format('pve-groupid', \&verify_groupname);
911sub verify_groupname {
912 my ($groupname, $noerr) = @_;
913
914 if ($groupname !~ m/^[A-Za-z0-9\.\-_]+$/) {
915
916 die "group name '$groupname' contains invalid characters\n" if !$noerr;
917
918 return undef;
919 }
66931b11 920
2c3a6c0a
DM
921 return $groupname;
922}
923
924PVE::JSONSchema::register_format('pve-roleid', \&verify_rolename);
925sub verify_rolename {
926 my ($rolename, $noerr) = @_;
927
928 if ($rolename !~ m/^[A-Za-z0-9\.\-_]+$/) {
929
930 die "role name '$rolename' contains invalid characters\n" if !$noerr;
931
932 return undef;
933 }
66931b11 934
2c3a6c0a
DM
935 return $rolename;
936}
937
16e50b59 938PVE::JSONSchema::register_format('pve-poolid', \&verify_poolname);
39c85db8
DM
939sub verify_poolname {
940 my ($poolname, $noerr) = @_;
941
942 if ($poolname !~ m/^[A-Za-z0-9\.\-_]+$/) {
943
944 die "pool name '$poolname' contains invalid characters\n" if !$noerr;
945
946 return undef;
947 }
66931b11 948
39c85db8
DM
949 return $poolname;
950}
951
2c3a6c0a
DM
952PVE::JSONSchema::register_format('pve-priv', \&verify_privname);
953sub verify_privname {
954 my ($priv, $noerr) = @_;
955
956 if (!$valid_privs->{$priv}) {
1075c589 957 die "invalid privilege '$priv'\n" if !$noerr;
2c3a6c0a
DM
958
959 return undef;
960 }
66931b11 961
2c3a6c0a
DM
962 return $priv;
963}
964
965sub userconfig_force_defaults {
966 my ($cfg) = @_;
967
968 foreach my $r (keys %$special_roles) {
969 $cfg->{roles}->{$r} = $special_roles->{$r};
970 }
971
7279f31c
WL
972 # add root user if not exists
973 if (!$cfg->{users}->{'root@pam'}) {
66931b11 974 $cfg->{users}->{'root@pam'}->{enable} = 1;
7279f31c 975 }
2c3a6c0a
DM
976}
977
978sub parse_user_config {
979 my ($filename, $raw) = @_;
980
981 my $cfg = {};
982
983 userconfig_force_defaults($cfg);
984
d6eb6621 985 $raw = '' if !defined($raw);
62af314a 986 while ($raw =~ /^\s*(.+?)\s*$/gm) {
2c3a6c0a 987 my $line = $1;
2c3a6c0a
DM
988 my @data;
989
990 foreach my $d (split (/:/, $line)) {
66931b11 991 $d =~ s/^\s+//;
2c3a6c0a
DM
992 $d =~ s/\s+$//;
993 push @data, $d
994 }
995
996 my $et = shift @data;
997
998 if ($et eq 'user') {
96f8ebd6 999 my ($user, $enable, $expire, $firstname, $lastname, $email, $comment, $keys) = @data;
2c3a6c0a 1000
5bb4e06a 1001 my (undef, undef, $realm) = PVE::Auth::Plugin::verify_username($user, 1);
2c3a6c0a
DM
1002 if (!$realm) {
1003 warn "user config - ignore user '$user' - invalid user name\n";
1004 next;
1005 }
1006
1007 $enable = $enable ? 1 : 0;
1008
1009 $expire = 0 if !$expire;
1010
1011 if ($expire !~ m/^\d+$/) {
1012 warn "user config - ignore user '$user' - (illegal characters in expire '$expire')\n";
1013 next;
1014 }
1015 $expire = int($expire);
1016
1017 #if (!verify_groupname ($group, 1)) {
1018 # warn "user config - ignore user '$user' - invalid characters in group name\n";
1019 # next;
1020 #}
1021
1022 $cfg->{users}->{$user} = {
1023 enable => $enable,
1024 # group => $group,
1025 };
1026 $cfg->{users}->{$user}->{firstname} = PVE::Tools::decode_text($firstname) if $firstname;
1027 $cfg->{users}->{$user}->{lastname} = PVE::Tools::decode_text($lastname) if $lastname;
1028 $cfg->{users}->{$user}->{email} = $email;
1029 $cfg->{users}->{$user}->{comment} = PVE::Tools::decode_text($comment) if $comment;
1030 $cfg->{users}->{$user}->{expire} = $expire;
1abc2c0a 1031 # keys: allowed yubico key ids or oath secrets (base32 encoded)
66931b11 1032 $cfg->{users}->{$user}->{keys} = $keys if $keys;
2c3a6c0a
DM
1033
1034 #$cfg->{users}->{$user}->{groups}->{$group} = 1;
1035 #$cfg->{groups}->{$group}->{$user} = 1;
1036
1037 } elsif ($et eq 'group') {
1038 my ($group, $userlist, $comment) = @data;
1039
1040 if (!verify_groupname($group, 1)) {
1041 warn "user config - ignore group '$group' - invalid characters in group name\n";
1042 next;
1043 }
1044
1045 # make sure to add the group (even if there are no members)
1046 $cfg->{groups}->{$group} = { users => {} } if !$cfg->{groups}->{$group};
1047
1048 $cfg->{groups}->{$group}->{comment} = PVE::Tools::decode_text($comment) if $comment;
1049
1050 foreach my $user (split_list($userlist)) {
1051
5bb4e06a 1052 if (!PVE::Auth::Plugin::verify_username($user, 1)) {
2c3a6c0a
DM
1053 warn "user config - ignore invalid group member '$user'\n";
1054 next;
1055 }
1056
66931b11 1057 if ($cfg->{users}->{$user}) { # user exists
2c3a6c0a 1058 $cfg->{users}->{$user}->{groups}->{$group} = 1;
2c3a6c0a
DM
1059 } else {
1060 warn "user config - ignore invalid group member '$user'\n";
1061 }
5654260e 1062 $cfg->{groups}->{$group}->{users}->{$user} = 1;
2c3a6c0a
DM
1063 }
1064
1065 } elsif ($et eq 'role') {
1066 my ($role, $privlist) = @data;
66931b11 1067
2c3a6c0a
DM
1068 if (!verify_rolename($role, 1)) {
1069 warn "user config - ignore role '$role' - invalid characters in role name\n";
1070 next;
1071 }
1072
1073 # make sure to add the role (even if there are no privileges)
1074 $cfg->{roles}->{$role} = {} if !$cfg->{roles}->{$role};
1075
1076 foreach my $priv (split_list($privlist)) {
1077 if (defined ($valid_privs->{$priv})) {
1078 $cfg->{roles}->{$role}->{$priv} = 1;
1079 } else {
1516bfa0 1080 warn "user config - ignore invalid privilege '$priv'\n";
66931b11 1081 }
2c3a6c0a 1082 }
66931b11 1083
2c3a6c0a
DM
1084 } elsif ($et eq 'acl') {
1085 my ($propagate, $pathtxt, $uglist, $rolelist) = @data;
1086
733371da
FG
1087 $propagate = $propagate ? 1 : 0;
1088
2c3a6c0a
DM
1089 if (my $path = normalize_path($pathtxt)) {
1090 foreach my $role (split_list($rolelist)) {
66931b11 1091
2c3a6c0a
DM
1092 if (!verify_rolename($role, 1)) {
1093 warn "user config - ignore invalid role name '$role' in acl\n";
1094 next;
1095 }
1096
21f523a5
FG
1097 if (!$cfg->{roles}->{$role}) {
1098 warn "user config - ignore invalid acl role '$role'\n";
1099 next;
1100 }
1101
2c3a6c0a 1102 foreach my $ug (split_list($uglist)) {
508e11f1
FG
1103 my ($group) = $ug =~ m/^@(\S+)$/;
1104
1105 if ($group && verify_groupname($group, 1)) {
5654260e 1106 if (!$cfg->{groups}->{$group}) { # group does not exist
2c3a6c0a
DM
1107 warn "user config - ignore invalid acl group '$group'\n";
1108 }
5654260e 1109 $cfg->{acl}->{$path}->{groups}->{$group}->{$role} = $propagate;
5bb4e06a 1110 } elsif (PVE::Auth::Plugin::verify_username($ug, 1)) {
5654260e 1111 if (!$cfg->{users}->{$ug}) { # user does not exist
2c3a6c0a
DM
1112 warn "user config - ignore invalid acl member '$ug'\n";
1113 }
5654260e 1114 $cfg->{acl}->{$path}->{users}->{$ug}->{$role} = $propagate;
28e3dc05 1115 } elsif (my ($user, $token) = split_tokenid($ug, 1)) {
571e9d06 1116 if (check_token_exist($cfg, $user, $token, 1)) {
28e3dc05
FG
1117 $cfg->{acl}->{$path}->{tokens}->{$ug}->{$role} = $propagate;
1118 } else {
1119 warn "user config - ignore invalid acl token '$ug'\n";
1120 }
2c3a6c0a
DM
1121 } else {
1122 warn "user config - invalid user/group '$ug' in acl\n";
1123 }
1124 }
1125 }
1126 } else {
1127 warn "user config - ignore invalid path in acl '$pathtxt'\n";
1128 }
4bc17477 1129 } elsif ($et eq 'pool') {
39c85db8 1130 my ($pool, $comment, $vmlist, $storelist) = @data;
4bc17477 1131
39c85db8
DM
1132 if (!verify_poolname($pool, 1)) {
1133 warn "user config - ignore pool '$pool' - invalid characters in pool name\n";
1134 next;
1135 }
4bc17477 1136
39c85db8
DM
1137 # make sure to add the pool (even if there are no members)
1138 $cfg->{pools}->{$pool} = { vms => {}, storage => {} } if !$cfg->{pools}->{$pool};
4bc17477 1139
39c85db8 1140 $cfg->{pools}->{$pool}->{comment} = PVE::Tools::decode_text($comment) if $comment;
4bc17477 1141
39c85db8
DM
1142 foreach my $vmid (split_list($vmlist)) {
1143 if ($vmid !~ m/^\d+$/) {
1144 warn "user config - ignore invalid vmid '$vmid' in pool '$pool'\n";
1145 next;
4bc17477 1146 }
39c85db8 1147 $vmid = int($vmid);
4bc17477 1148
39c85db8
DM
1149 if ($cfg->{vms}->{$vmid}) {
1150 warn "user config - ignore duplicate vmid '$vmid' in pool '$pool'\n";
1151 next;
4bc17477
DM
1152 }
1153
39c85db8 1154 $cfg->{pools}->{$pool}->{vms}->{$vmid} = 1;
66931b11 1155
39c85db8
DM
1156 # record vmid ==> pool relation
1157 $cfg->{vms}->{$vmid} = $pool;
1158 }
1159
1160 foreach my $storeid (split_list($storelist)) {
1161 if ($storeid !~ m/^[a-z][a-z0-9\-\_\.]*[a-z0-9]$/i) {
1162 warn "user config - ignore invalid storage '$storeid' in pool '$pool'\n";
1163 next;
1164 }
1165 $cfg->{pools}->{$pool}->{storage}->{$storeid} = 1;
4bc17477 1166 }
28e3dc05
FG
1167 } elsif ($et eq 'token') {
1168 my ($tokenid, $expire, $privsep, $comment) = @data;
1169
1170 my ($user, $token) = split_tokenid($tokenid, 1);
1171 if (!($user && $token)) {
1172 warn "user config - ignore invalid tokenid '$tokenid'\n";
1173 next;
1174 }
1175
1176 $privsep = $privsep ? 1 : 0;
1177
1178 $expire = 0 if !$expire;
1179
1180 if ($expire !~ m/^\d+$/) {
1181 warn "user config - ignore token '$tokenid' - (illegal characters in expire '$expire')\n";
1182 next;
1183 }
1184 $expire = int($expire);
1185
1186 if (my $user_cfg = $cfg->{users}->{$user}) { # user exists
1187 $user_cfg->{tokens}->{$token} = {} if !$user_cfg->{tokens}->{$token};
1188 my $token_cfg = $user_cfg->{tokens}->{$token};
1189 $token_cfg->{privsep} = $privsep;
1190 $token_cfg->{expire} = $expire;
1191 $token_cfg->{comment} = PVE::Tools::decode_text($comment) if $comment;
1192 } else {
1193 warn "user config - ignore token '$tokenid' - user does not exist\n";
1194 }
2c3a6c0a
DM
1195 } else {
1196 warn "user config - ignore config line: $line\n";
1197 }
1198 }
1199
1200 userconfig_force_defaults($cfg);
1201
1202 return $cfg;
1203}
1204
2c3a6c0a
DM
1205sub write_user_config {
1206 my ($filename, $cfg) = @_;
1207
1208 my $data = '';
1209
93c7e9c3 1210 foreach my $user (sort keys %{$cfg->{users}}) {
2c3a6c0a
DM
1211 my $d = $cfg->{users}->{$user};
1212 my $firstname = $d->{firstname} ? PVE::Tools::encode_text($d->{firstname}) : '';
1213 my $lastname = $d->{lastname} ? PVE::Tools::encode_text($d->{lastname}) : '';
1214 my $email = $d->{email} || '';
1215 my $comment = $d->{comment} ? PVE::Tools::encode_text($d->{comment}) : '';
5eabc984 1216 my $expire = int($d->{expire} || 0);
2c3a6c0a 1217 my $enable = $d->{enable} ? 1 : 0;
96f8ebd6
DM
1218 my $keys = $d->{keys} ? $d->{keys} : '';
1219 $data .= "user:$user:$enable:$expire:$firstname:$lastname:$email:$comment:$keys:\n";
28e3dc05
FG
1220
1221 my $user_tokens = $d->{tokens};
1222 foreach my $token (sort keys %$user_tokens) {
1223 my $td = $user_tokens->{$token};
1224 my $full_tokenid = join_tokenid($user, $token);
1225 my $comment = $td->{comment} ? PVE::Tools::encode_text($td->{comment}) : '';
1226 my $expire = int($td->{expire} || 0);
1227 my $privsep = $td->{privsep} ? 1 : 0;
1228 $data .= "token:$full_tokenid:$expire:$privsep:$comment:\n";
1229 }
2c3a6c0a
DM
1230 }
1231
1232 $data .= "\n";
1233
93c7e9c3 1234 foreach my $group (sort keys %{$cfg->{groups}}) {
2c3a6c0a 1235 my $d = $cfg->{groups}->{$group};
a5ec58ea 1236 my $list = join (',', sort keys %{$d->{users}});
66931b11 1237 my $comment = $d->{comment} ? PVE::Tools::encode_text($d->{comment}) : '';
2c3a6c0a
DM
1238 $data .= "group:$group:$list:$comment:\n";
1239 }
1240
1241 $data .= "\n";
1242
93c7e9c3 1243 foreach my $pool (sort keys %{$cfg->{pools}}) {
39c85db8 1244 my $d = $cfg->{pools}->{$pool};
a5ec58ea
FG
1245 my $vmlist = join (',', sort keys %{$d->{vms}});
1246 my $storelist = join (',', sort keys %{$d->{storage}});
66931b11 1247 my $comment = $d->{comment} ? PVE::Tools::encode_text($d->{comment}) : '';
39c85db8 1248 $data .= "pool:$pool:$comment:$vmlist:$storelist:\n";
4bc17477
DM
1249 }
1250
1251 $data .= "\n";
1252
93c7e9c3 1253 foreach my $role (sort keys %{$cfg->{roles}}) {
2c3a6c0a
DM
1254 next if $special_roles->{$role};
1255
1256 my $d = $cfg->{roles}->{$role};
a5ec58ea 1257 my $list = join (',', sort keys %$d);
2c3a6c0a
DM
1258 $data .= "role:$role:$list:\n";
1259 }
1260
1261 $data .= "\n";
1262
9a12a08c
FG
1263 my $collect_rolelist_members = sub {
1264 my ($acl_members, $result, $prefix, $exclude) = @_;
2c3a6c0a 1265
9a12a08c
FG
1266 foreach my $member (keys %$acl_members) {
1267 next if $exclude && $member eq $exclude;
2c3a6c0a 1268
2c3a6c0a
DM
1269 my $l0 = '';
1270 my $l1 = '';
9a12a08c
FG
1271 foreach my $role (sort keys %{$acl_members->{$member}}) {
1272 my $propagate = $acl_members->{$member}->{$role};
2c3a6c0a
DM
1273 if ($propagate) {
1274 $l1 .= ',' if $l1;
1275 $l1 .= $role;
1276 } else {
1277 $l0 .= ',' if $l0;
1278 $l0 .= $role;
1279 }
1280 }
9a12a08c
FG
1281 $result->{0}->{$l0}->{"${prefix}${member}"} = 1 if $l0;
1282 $result->{1}->{$l1}->{"${prefix}${member}"} = 1 if $l1;
2c3a6c0a 1283 }
9a12a08c 1284 };
2c3a6c0a 1285
9a12a08c
FG
1286 foreach my $path (sort keys %{$cfg->{acl}}) {
1287 my $d = $cfg->{acl}->{$path};
2c3a6c0a 1288
9a12a08c 1289 my $rolelist_members = {};
2c3a6c0a 1290
9a12a08c
FG
1291 $collect_rolelist_members->($d->{'groups'}, $rolelist_members, '@');
1292
1293 # no need to save 'root@pam', it is always 'Administrator'
1294 $collect_rolelist_members->($d->{'users'}, $rolelist_members, '', 'root@pam');
1295
28e3dc05
FG
1296 $collect_rolelist_members->($d->{'tokens'}, $rolelist_members, '');
1297
9a12a08c
FG
1298 foreach my $propagate (0,1) {
1299 my $filtered = $rolelist_members->{$propagate};
1300 foreach my $rolelist (sort keys %$filtered) {
1301 my $uglist = join (',', sort keys %{$filtered->{$rolelist}});
1302 $data .= "acl:$propagate:$path:$uglist:$rolelist:\n";
1303 }
28e3dc05 1304
2c3a6c0a
DM
1305 }
1306 }
1307
1308 return $data;
1309}
1310
fda8ca85
WB
1311# The TFA configuration in priv/tfa.cfg format contains one line per user of
1312# the form:
1313# USER:TYPE:DATA
1314# DATA is a base64 encoded json string and its format depends on the type.
1315sub parse_priv_tfa_config {
1316 my ($filename, $raw) = @_;
1317
1318 my $users = {};
1319 my $cfg = { users => $users };
1320
1321 $raw = '' if !defined($raw);
1322 while ($raw =~ /^\s*(.+?)\s*$/gm) {
1323 my $line = $1;
1324 my ($user, $type, $data) = split(/:/, $line, 3);
1325
1326 my (undef, undef, $realm) = PVE::Auth::Plugin::verify_username($user, 1);
1327 if (!$realm) {
1328 warn "user tfa config - ignore user '$user' - invalid user name\n";
1329 next;
1330 }
1331
1332 $data = decode_json(decode_base64($data));
1333
1334 $users->{$user} = {
1335 type => $type,
1336 data => $data,
1337 };
1338 }
1339
1340 return $cfg;
1341}
1342
1343sub write_priv_tfa_config {
1344 my ($filename, $cfg) = @_;
1345
1346 my $output = '';
1347
1348 my $users = $cfg->{users};
1349 foreach my $user (sort keys %$users) {
1350 my $info = $users->{$user};
1351 next if !%$info; # skip empty entries
1352
1353 $info = {%$info}; # copy to verify contents:
1354
1355 my $type = delete $info->{type};
1356 my $data = delete $info->{data};
1357
1358 if (my @keys = keys %$info) {
1359 die "invalid keys in TFA config for user $user: " . join(', ', @keys) . "\n";
1360 }
1361
1362 $data = encode_base64(encode_json($data), '');
1363 $output .= "${user}:${type}:${data}\n";
1364 }
1365
1366 return $output;
1367}
1368
2c3a6c0a
DM
1369sub roles {
1370 my ($cfg, $user, $path) = @_;
1371
66931b11 1372 # NOTE: we do not consider pools here.
e915e9e4
FG
1373 # NOTE: for privsep tokens, this does not filter roles by those that the
1374 # corresponding user has.
a31f1d85 1375 # Use $rpcenv->permission() for any actual permission checks!
4bc17477 1376
2c3a6c0a
DM
1377 return 'Administrator' if $user eq 'root@pam'; # root can do anything
1378
e915e9e4
FG
1379 if (pve_verify_tokenid($user, 1)) {
1380 my $tokenid = $user;
1381 my ($username, $token) = split_tokenid($tokenid);
1382
1383 my $token_info = $cfg->{users}->{$username}->{tokens}->{$token};
1384 return () if !$token_info;
1385
7e8bcaa7 1386 my $user_roles = roles($cfg, $username, $path);
e915e9e4
FG
1387
1388 # return full user privileges
7e8bcaa7 1389 return $user_roles if !$token_info->{privsep};
e915e9e4
FG
1390 }
1391
7e8bcaa7 1392 my $roles = {};
2c3a6c0a
DM
1393
1394 foreach my $p (sort keys %{$cfg->{acl}}) {
1395 my $final = ($path eq $p);
1396
1397 next if !(($p eq '/') || $final || ($path =~ m|^$p/|));
1398
1399 my $acl = $cfg->{acl}->{$p};
1400
1401 #print "CHECKACL $path $p\n";
1402 #print "ACL $path = " . Dumper ($acl);
e915e9e4
FG
1403 if (my $ri = $acl->{tokens}->{$user}) {
1404 my $new;
1405 foreach my $role (keys %$ri) {
1406 my $propagate = $ri->{$role};
1407 if ($final || $propagate) {
1408 #print "APPLY ROLE $p $user $role\n";
1409 $new = {} if !$new;
7e8bcaa7 1410 $new->{$role} = $propagate;
e915e9e4
FG
1411 }
1412 }
1413 if ($new) {
7e8bcaa7 1414 $roles = $new; # overwrite previous settings
e915e9e4
FG
1415 next;
1416 }
1417 }
2c3a6c0a
DM
1418
1419 if (my $ri = $acl->{users}->{$user}) {
1420 my $new;
1421 foreach my $role (keys %$ri) {
1422 my $propagate = $ri->{$role};
1423 if ($final || $propagate) {
1424 #print "APPLY ROLE $p $user $role\n";
1425 $new = {} if !$new;
7e8bcaa7 1426 $new->{$role} = $propagate;
2c3a6c0a
DM
1427 }
1428 }
1429 if ($new) {
7e8bcaa7 1430 $roles = $new; # overwrite previous settings
2c3a6c0a
DM
1431 next; # user privs always override group privs
1432 }
1433 }
1434
1435 my $new;
1436 foreach my $g (keys %{$acl->{groups}}) {
1437 next if !$cfg->{groups}->{$g}->{users}->{$user};
1438 if (my $ri = $acl->{groups}->{$g}) {
1439 foreach my $role (keys %$ri) {
1440 my $propagate = $ri->{$role};
1441 if ($final || $propagate) {
1442 #print "APPLY ROLE $p \@$g $role\n";
1443 $new = {} if !$new;
7e8bcaa7 1444 $new->{$role} = $propagate;
2c3a6c0a
DM
1445 }
1446 }
1447 }
1448 }
1449 if ($new) {
7e8bcaa7 1450 $roles = $new; # overwrite previous settings
2c3a6c0a
DM
1451 next;
1452 }
2c3a6c0a
DM
1453 }
1454
7e8bcaa7
FG
1455 return { 'NoAccess' => $roles->{NoAccess} } if defined ($roles->{NoAccess});
1456 #return () if defined ($roles->{NoAccess});
66931b11 1457
7e8bcaa7 1458 #print "permission $user $path = " . Dumper ($roles);
2c3a6c0a
DM
1459
1460 #print "roles $user $path = " . join (',', @ra) . "\n";
1461
7e8bcaa7 1462 return $roles;
2c3a6c0a 1463}
66931b11 1464
3b4a3f94
AG
1465sub remove_vm_access {
1466 my ($vmid) = @_;
1467 my $delVMaccessFn = sub {
1468 my $usercfg = cfs_read_file("user.cfg");
57a70473 1469 my $modified;
3b4a3f94 1470
57a70473
DM
1471 if (my $acl = $usercfg->{acl}->{"/vms/$vmid"}) {
1472 delete $usercfg->{acl}->{"/vms/$vmid"};
1473 $modified = 1;
3b4a3f94
AG
1474 }
1475 if (my $pool = $usercfg->{vms}->{$vmid}) {
1476 if (my $data = $usercfg->{pools}->{$pool}) {
1477 delete $data->{vms}->{$vmid};
1478 delete $usercfg->{vms}->{$vmid};
57a70473 1479 $modified = 1;
3b4a3f94
AG
1480 }
1481 }
57a70473 1482 cfs_write_file("user.cfg", $usercfg) if $modified;
3b4a3f94
AG
1483 };
1484
1485 lock_user_config($delVMaccessFn, "access permissions cleanup for VM $vmid failed");
1486}
1487
60844761
AG
1488sub remove_storage_access {
1489 my ($storeid) = @_;
1490
1491 my $deleteStorageAccessFn = sub {
1492 my $usercfg = cfs_read_file("user.cfg");
1493 my $modified;
1494
1495 if (my $storage = $usercfg->{acl}->{"/storage/$storeid"}) {
1496 delete $usercfg->{acl}->{"/storage/$storeid"};
1497 $modified = 1;
1498 }
1499 foreach my $pool (keys %{$usercfg->{pools}}) {
1500 delete $usercfg->{pools}->{$pool}->{storage}->{$storeid};
1501 $modified = 1;
1502 }
1503 cfs_write_file("user.cfg", $usercfg) if $modified;
1504 };
1505
1506 lock_user_config($deleteStorageAccessFn,
1507 "access permissions cleanup for storage $storeid failed");
1508}
1509
018ae3a9
DM
1510sub add_vm_to_pool {
1511 my ($vmid, $pool) = @_;
1512
1513 my $addVMtoPoolFn = sub {
1514 my $usercfg = cfs_read_file("user.cfg");
1515 if (my $data = $usercfg->{pools}->{$pool}) {
1516 $data->{vms}->{$vmid} = 1;
1517 $usercfg->{vms}->{$vmid} = $pool;
1518 cfs_write_file("user.cfg", $usercfg);
1519 }
1520 };
1521
1522 lock_user_config($addVMtoPoolFn, "can't add VM $vmid to pool '$pool'");
1523}
1524
1525sub remove_vm_from_pool {
1526 my ($vmid) = @_;
66931b11 1527
018ae3a9
DM
1528 my $delVMfromPoolFn = sub {
1529 my $usercfg = cfs_read_file("user.cfg");
1530 if (my $pool = $usercfg->{vms}->{$vmid}) {
1531 if (my $data = $usercfg->{pools}->{$pool}) {
1532 delete $data->{vms}->{$vmid};
1533 delete $usercfg->{vms}->{$vmid};
1534 cfs_write_file("user.cfg", $usercfg);
1535 }
1536 }
1537 };
1538
1539 lock_user_config($delVMfromPoolFn, "pool cleanup for VM $vmid failed");
1540}
1541
49b15310 1542my $USER_CONTROLLED_TFA_TYPES = {
fda8ca85
WB
1543 u2f => 1,
1544 oath => 1,
1545};
1546
1547# Delete an entry by setting $data=undef in which case $type is ignored.
1548# Otherwise both must be valid.
1549sub user_set_tfa {
1550 my ($userid, $realm, $type, $data, $cached_usercfg, $cached_domaincfg) = @_;
1551
1552 if (defined($data) && !defined($type)) {
1553 # This is an internal usage error and should not happen
1554 die "cannot set tfa data without a type\n";
1555 }
1556
1557 my $user_cfg = $cached_usercfg || cfs_read_file('user.cfg');
1558 my $user = $user_cfg->{users}->{$userid}
1559 or die "user '$userid' not found\n";
1560
1561 my $domain_cfg = $cached_domaincfg || cfs_read_file('domains.cfg');
1562 my $realm_cfg = $domain_cfg->{ids}->{$realm};
1563 die "auth domain '$realm' does not exist\n" if !$realm_cfg;
1564
1565 my $realm_tfa = $realm_cfg->{tfa};
1566 if (defined($realm_tfa)) {
1567 $realm_tfa = PVE::Auth::Plugin::parse_tfa_config($realm_tfa);
1568 # If the realm has a TFA setting, we're only allowed to use that.
1569 if (defined($data)) {
1570 my $required_type = $realm_tfa->{type};
1571 if ($required_type ne $type) {
1572 die "realm '$realm' only allows TFA of type '$required_type\n";
1573 }
1574
1575 if (defined($data->{config})) {
1576 # XXX: Is it enough if the type matches? Or should the configuration also match?
1577 }
1578
1579 # realm-configured tfa always uses a simple key list, so use the user.cfg
1580 $user->{keys} = $data->{keys};
1581 } else {
1582 die "realm '$realm' does not allow removing the 2nd factor\n";
1583 }
1584 } else {
1585 # Without a realm-enforced TFA setting the user can add a u2f or totp entry by themselves.
1586 # The 'yubico' type requires yubico server settings, which have to be configured on the
1587 # realm, so this is not supported here:
1588 die "domain '$realm' does not support TFA type '$type'\n"
49b15310 1589 if defined($data) && !$USER_CONTROLLED_TFA_TYPES->{$type};
fda8ca85
WB
1590 }
1591
1592 # Custom TFA entries are stored in priv/tfa.cfg as they can be more complet: u2f uses a
1593 # public key and a key handle, TOTP requires the usual totp settings...
1594
1595 my $tfa_cfg = cfs_read_file('priv/tfa.cfg');
1596 my $tfa = ($tfa_cfg->{users}->{$userid} //= {});
1597
1598 if (defined($data)) {
1599 $tfa->{type} = $type;
1600 $tfa->{data} = $data;
1601 cfs_write_file('priv/tfa.cfg', $tfa_cfg);
1602
7e58c66d 1603 $user->{keys} = "x!$type";
fda8ca85
WB
1604 } else {
1605 delete $tfa_cfg->{users}->{$userid};
1606 cfs_write_file('priv/tfa.cfg', $tfa_cfg);
1607
1608 delete $user->{keys};
1609 }
1610
1611 cfs_write_file('user.cfg', $user_cfg);
1612}
1613
1614sub user_get_tfa {
1615 my ($username, $realm) = @_;
1616
1617 my $user_cfg = cfs_read_file('user.cfg');
1618 my $user = $user_cfg->{users}->{$username}
1619 or die "user '$username' not found\n";
1620
1621 my $keys = $user->{keys};
fda8ca85
WB
1622
1623 my $domain_cfg = cfs_read_file('domains.cfg');
1624 my $realm_cfg = $domain_cfg->{ids}->{$realm};
1625 die "auth domain '$realm' does not exist\n" if !$realm_cfg;
1626
1627 my $realm_tfa = $realm_cfg->{tfa};
1628 $realm_tfa = PVE::Auth::Plugin::parse_tfa_config($realm_tfa)
1629 if $realm_tfa;
1630
6063b65b
WB
1631 if (!$keys) {
1632 return if !$realm_tfa;
1633 die "missing required 2nd keys\n";
1634 }
1635
7e58c66d 1636 # new style config starts with an 'x' and optionally contains a !<type> suffix
0a956b94 1637 if ($keys !~ /^x(?:!.*)?$/) {
fda8ca85
WB
1638 # old style config, find the type via the realm
1639 return if !$realm_tfa;
1640 return ($realm_tfa->{type}, {
1641 keys => $keys,
1642 config => $realm_tfa,
1643 });
1644 } else {
1645 my $tfa_cfg = cfs_read_file('priv/tfa.cfg');
1646 my $tfa = $tfa_cfg->{users}->{$username};
1647 return if !$tfa; # should not happen (user.cfg wasn't cleaned up?)
1648
1649 if ($realm_tfa) {
1650 # if the realm has a tfa setting we need to verify the type:
1651 die "auth domain '$realm' and user have mismatching TFA settings\n"
1652 if $realm_tfa && $realm_tfa->{type} ne $tfa->{type};
1653 }
1654
1655 return ($tfa->{type}, $tfa->{data});
1656 }
1657}
1658
3e5bfdf6
DM
1659# bash completion helpers
1660
ab7b19b5
SI
1661register_standard_option('userid-completed',
1662 get_standard_option('userid', { completion => \&complete_username}),
1663);
1664
3e5bfdf6
DM
1665sub complete_username {
1666
1667 my $user_cfg = cfs_read_file('user.cfg');
1668
1669 return [ keys %{$user_cfg->{users}} ];
1670}
1671
1672sub complete_group {
1673
1674 my $user_cfg = cfs_read_file('user.cfg');
1675
1676 return [ keys %{$user_cfg->{groups}} ];
1677}
1678
1679sub complete_realm {
1680
1681 my $domain_cfg = cfs_read_file('domains.cfg');
1682
1683 return [ keys %{$domain_cfg->{ids}} ];
1684}
1685
2c3a6c0a 16861;