]> git.proxmox.com Git - pve-access-control.git/blame - PVE/AccessControl.pm
d/control: bump debhelper compat to >= 12
[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
eb41d200 894sub lookup_username {
f335d265 895 my ($username, $noerr) = @_;
eb41d200
WL
896
897 $username =~ m!^(${PVE::Auth::Plugin::user_regex})\@(${PVE::Auth::Plugin::realm_regex})$!;
898
899 my $realm = $2;
900 my $domain_cfg = cfs_read_file("domains.cfg");
901 my $casesensitive = $domain_cfg->{ids}->{$realm}->{'case-sensitive'} // 1;
902 my $usercfg = cfs_read_file('user.cfg');
903
904 if (!$casesensitive) {
905 my @matches = grep { lc $username eq lc $_ } (keys %{$usercfg->{users}});
906
907 die "ambiguous case insensitive match of username '$username', cannot safely grant access!\n"
f335d265 908 if scalar @matches > 1 && !$noerr;
eb41d200
WL
909
910 return $matches[0]
911 }
912
913 return $username;
914}
915
2c3a6c0a
DM
916sub normalize_path {
917 my $path = shift;
918
4bc17477 919 $path =~ s|/+|/|g;
2c3a6c0a
DM
920
921 $path =~ s|/$||;
922
923 $path = '/' if !$path;
924
4bc17477
DM
925 $path = "/$path" if $path !~ m|^/|;
926
e4f8fc2e 927 return undef if $path !~ m|^[[:alnum:]\.\-\_\/]+$|;
2c3a6c0a
DM
928
929 return $path;
66931b11 930}
2c3a6c0a 931
20c60513 932sub check_path {
91c30089
TL
933 my ($path) = @_;
934 return $path =~ m!^(
20c60513
LS
935 /
936 |/access
937 |/access/groups
938 |/access/realm
939 |/nodes
940 |/nodes/[[:alnum:]\.\-\_]+
941 |/pool
942 |/pool/[[:alnum:]\.\-\_]+
943 |/sdn
944 |/storage
945 |/storage/[[:alnum:]\.\-\_]+
946 |/vms
ad1ef9fc 947 |/vms/[1-9][0-9]{2,}
20c60513
LS
948 )$!xs;
949}
950
2c3a6c0a
DM
951PVE::JSONSchema::register_format('pve-groupid', \&verify_groupname);
952sub verify_groupname {
953 my ($groupname, $noerr) = @_;
954
955 if ($groupname !~ m/^[A-Za-z0-9\.\-_]+$/) {
956
957 die "group name '$groupname' contains invalid characters\n" if !$noerr;
958
959 return undef;
960 }
66931b11 961
2c3a6c0a
DM
962 return $groupname;
963}
964
965PVE::JSONSchema::register_format('pve-roleid', \&verify_rolename);
966sub verify_rolename {
967 my ($rolename, $noerr) = @_;
968
969 if ($rolename !~ m/^[A-Za-z0-9\.\-_]+$/) {
970
971 die "role name '$rolename' contains invalid characters\n" if !$noerr;
972
973 return undef;
974 }
66931b11 975
2c3a6c0a
DM
976 return $rolename;
977}
978
16e50b59 979PVE::JSONSchema::register_format('pve-poolid', \&verify_poolname);
39c85db8
DM
980sub verify_poolname {
981 my ($poolname, $noerr) = @_;
982
983 if ($poolname !~ m/^[A-Za-z0-9\.\-_]+$/) {
984
985 die "pool name '$poolname' contains invalid characters\n" if !$noerr;
986
987 return undef;
988 }
66931b11 989
39c85db8
DM
990 return $poolname;
991}
992
2c3a6c0a
DM
993PVE::JSONSchema::register_format('pve-priv', \&verify_privname);
994sub verify_privname {
995 my ($priv, $noerr) = @_;
996
997 if (!$valid_privs->{$priv}) {
1075c589 998 die "invalid privilege '$priv'\n" if !$noerr;
2c3a6c0a
DM
999
1000 return undef;
1001 }
66931b11 1002
2c3a6c0a
DM
1003 return $priv;
1004}
1005
1006sub userconfig_force_defaults {
1007 my ($cfg) = @_;
1008
1009 foreach my $r (keys %$special_roles) {
1010 $cfg->{roles}->{$r} = $special_roles->{$r};
1011 }
1012
7279f31c
WL
1013 # add root user if not exists
1014 if (!$cfg->{users}->{'root@pam'}) {
66931b11 1015 $cfg->{users}->{'root@pam'}->{enable} = 1;
7279f31c 1016 }
2c3a6c0a
DM
1017}
1018
1019sub parse_user_config {
1020 my ($filename, $raw) = @_;
1021
1022 my $cfg = {};
1023
1024 userconfig_force_defaults($cfg);
1025
d6eb6621 1026 $raw = '' if !defined($raw);
62af314a 1027 while ($raw =~ /^\s*(.+?)\s*$/gm) {
2c3a6c0a 1028 my $line = $1;
2c3a6c0a
DM
1029 my @data;
1030
1031 foreach my $d (split (/:/, $line)) {
66931b11 1032 $d =~ s/^\s+//;
2c3a6c0a
DM
1033 $d =~ s/\s+$//;
1034 push @data, $d
1035 }
1036
1037 my $et = shift @data;
1038
1039 if ($et eq 'user') {
96f8ebd6 1040 my ($user, $enable, $expire, $firstname, $lastname, $email, $comment, $keys) = @data;
2c3a6c0a 1041
5bb4e06a 1042 my (undef, undef, $realm) = PVE::Auth::Plugin::verify_username($user, 1);
2c3a6c0a
DM
1043 if (!$realm) {
1044 warn "user config - ignore user '$user' - invalid user name\n";
1045 next;
1046 }
1047
1048 $enable = $enable ? 1 : 0;
1049
1050 $expire = 0 if !$expire;
1051
1052 if ($expire !~ m/^\d+$/) {
1053 warn "user config - ignore user '$user' - (illegal characters in expire '$expire')\n";
1054 next;
1055 }
1056 $expire = int($expire);
1057
1058 #if (!verify_groupname ($group, 1)) {
1059 # warn "user config - ignore user '$user' - invalid characters in group name\n";
1060 # next;
1061 #}
1062
1063 $cfg->{users}->{$user} = {
1064 enable => $enable,
1065 # group => $group,
1066 };
1067 $cfg->{users}->{$user}->{firstname} = PVE::Tools::decode_text($firstname) if $firstname;
1068 $cfg->{users}->{$user}->{lastname} = PVE::Tools::decode_text($lastname) if $lastname;
1069 $cfg->{users}->{$user}->{email} = $email;
1070 $cfg->{users}->{$user}->{comment} = PVE::Tools::decode_text($comment) if $comment;
1071 $cfg->{users}->{$user}->{expire} = $expire;
1abc2c0a 1072 # keys: allowed yubico key ids or oath secrets (base32 encoded)
66931b11 1073 $cfg->{users}->{$user}->{keys} = $keys if $keys;
2c3a6c0a
DM
1074
1075 #$cfg->{users}->{$user}->{groups}->{$group} = 1;
1076 #$cfg->{groups}->{$group}->{$user} = 1;
1077
1078 } elsif ($et eq 'group') {
1079 my ($group, $userlist, $comment) = @data;
1080
1081 if (!verify_groupname($group, 1)) {
1082 warn "user config - ignore group '$group' - invalid characters in group name\n";
1083 next;
1084 }
1085
1086 # make sure to add the group (even if there are no members)
1087 $cfg->{groups}->{$group} = { users => {} } if !$cfg->{groups}->{$group};
1088
1089 $cfg->{groups}->{$group}->{comment} = PVE::Tools::decode_text($comment) if $comment;
1090
1091 foreach my $user (split_list($userlist)) {
1092
5bb4e06a 1093 if (!PVE::Auth::Plugin::verify_username($user, 1)) {
2c3a6c0a
DM
1094 warn "user config - ignore invalid group member '$user'\n";
1095 next;
1096 }
1097
66931b11 1098 if ($cfg->{users}->{$user}) { # user exists
2c3a6c0a 1099 $cfg->{users}->{$user}->{groups}->{$group} = 1;
2c3a6c0a
DM
1100 } else {
1101 warn "user config - ignore invalid group member '$user'\n";
1102 }
5654260e 1103 $cfg->{groups}->{$group}->{users}->{$user} = 1;
2c3a6c0a
DM
1104 }
1105
1106 } elsif ($et eq 'role') {
1107 my ($role, $privlist) = @data;
66931b11 1108
2c3a6c0a
DM
1109 if (!verify_rolename($role, 1)) {
1110 warn "user config - ignore role '$role' - invalid characters in role name\n";
1111 next;
1112 }
1113
1114 # make sure to add the role (even if there are no privileges)
1115 $cfg->{roles}->{$role} = {} if !$cfg->{roles}->{$role};
1116
1117 foreach my $priv (split_list($privlist)) {
1118 if (defined ($valid_privs->{$priv})) {
1119 $cfg->{roles}->{$role}->{$priv} = 1;
1120 } else {
1516bfa0 1121 warn "user config - ignore invalid privilege '$priv'\n";
66931b11 1122 }
2c3a6c0a 1123 }
66931b11 1124
2c3a6c0a
DM
1125 } elsif ($et eq 'acl') {
1126 my ($propagate, $pathtxt, $uglist, $rolelist) = @data;
1127
733371da
FG
1128 $propagate = $propagate ? 1 : 0;
1129
2c3a6c0a
DM
1130 if (my $path = normalize_path($pathtxt)) {
1131 foreach my $role (split_list($rolelist)) {
66931b11 1132
2c3a6c0a
DM
1133 if (!verify_rolename($role, 1)) {
1134 warn "user config - ignore invalid role name '$role' in acl\n";
1135 next;
1136 }
1137
21f523a5
FG
1138 if (!$cfg->{roles}->{$role}) {
1139 warn "user config - ignore invalid acl role '$role'\n";
1140 next;
1141 }
1142
2c3a6c0a 1143 foreach my $ug (split_list($uglist)) {
508e11f1
FG
1144 my ($group) = $ug =~ m/^@(\S+)$/;
1145
1146 if ($group && verify_groupname($group, 1)) {
5654260e 1147 if (!$cfg->{groups}->{$group}) { # group does not exist
2c3a6c0a
DM
1148 warn "user config - ignore invalid acl group '$group'\n";
1149 }
5654260e 1150 $cfg->{acl}->{$path}->{groups}->{$group}->{$role} = $propagate;
5bb4e06a 1151 } elsif (PVE::Auth::Plugin::verify_username($ug, 1)) {
5654260e 1152 if (!$cfg->{users}->{$ug}) { # user does not exist
2c3a6c0a
DM
1153 warn "user config - ignore invalid acl member '$ug'\n";
1154 }
5654260e 1155 $cfg->{acl}->{$path}->{users}->{$ug}->{$role} = $propagate;
28e3dc05 1156 } elsif (my ($user, $token) = split_tokenid($ug, 1)) {
571e9d06 1157 if (check_token_exist($cfg, $user, $token, 1)) {
28e3dc05
FG
1158 $cfg->{acl}->{$path}->{tokens}->{$ug}->{$role} = $propagate;
1159 } else {
1160 warn "user config - ignore invalid acl token '$ug'\n";
1161 }
2c3a6c0a
DM
1162 } else {
1163 warn "user config - invalid user/group '$ug' in acl\n";
1164 }
1165 }
1166 }
1167 } else {
1168 warn "user config - ignore invalid path in acl '$pathtxt'\n";
1169 }
4bc17477 1170 } elsif ($et eq 'pool') {
39c85db8 1171 my ($pool, $comment, $vmlist, $storelist) = @data;
4bc17477 1172
39c85db8
DM
1173 if (!verify_poolname($pool, 1)) {
1174 warn "user config - ignore pool '$pool' - invalid characters in pool name\n";
1175 next;
1176 }
4bc17477 1177
39c85db8
DM
1178 # make sure to add the pool (even if there are no members)
1179 $cfg->{pools}->{$pool} = { vms => {}, storage => {} } if !$cfg->{pools}->{$pool};
4bc17477 1180
39c85db8 1181 $cfg->{pools}->{$pool}->{comment} = PVE::Tools::decode_text($comment) if $comment;
4bc17477 1182
39c85db8
DM
1183 foreach my $vmid (split_list($vmlist)) {
1184 if ($vmid !~ m/^\d+$/) {
1185 warn "user config - ignore invalid vmid '$vmid' in pool '$pool'\n";
1186 next;
4bc17477 1187 }
39c85db8 1188 $vmid = int($vmid);
4bc17477 1189
39c85db8
DM
1190 if ($cfg->{vms}->{$vmid}) {
1191 warn "user config - ignore duplicate vmid '$vmid' in pool '$pool'\n";
1192 next;
4bc17477
DM
1193 }
1194
39c85db8 1195 $cfg->{pools}->{$pool}->{vms}->{$vmid} = 1;
66931b11 1196
39c85db8
DM
1197 # record vmid ==> pool relation
1198 $cfg->{vms}->{$vmid} = $pool;
1199 }
1200
1201 foreach my $storeid (split_list($storelist)) {
1202 if ($storeid !~ m/^[a-z][a-z0-9\-\_\.]*[a-z0-9]$/i) {
1203 warn "user config - ignore invalid storage '$storeid' in pool '$pool'\n";
1204 next;
1205 }
1206 $cfg->{pools}->{$pool}->{storage}->{$storeid} = 1;
4bc17477 1207 }
28e3dc05
FG
1208 } elsif ($et eq 'token') {
1209 my ($tokenid, $expire, $privsep, $comment) = @data;
1210
1211 my ($user, $token) = split_tokenid($tokenid, 1);
1212 if (!($user && $token)) {
1213 warn "user config - ignore invalid tokenid '$tokenid'\n";
1214 next;
1215 }
1216
1217 $privsep = $privsep ? 1 : 0;
1218
1219 $expire = 0 if !$expire;
1220
1221 if ($expire !~ m/^\d+$/) {
1222 warn "user config - ignore token '$tokenid' - (illegal characters in expire '$expire')\n";
1223 next;
1224 }
1225 $expire = int($expire);
1226
1227 if (my $user_cfg = $cfg->{users}->{$user}) { # user exists
1228 $user_cfg->{tokens}->{$token} = {} if !$user_cfg->{tokens}->{$token};
1229 my $token_cfg = $user_cfg->{tokens}->{$token};
1230 $token_cfg->{privsep} = $privsep;
1231 $token_cfg->{expire} = $expire;
1232 $token_cfg->{comment} = PVE::Tools::decode_text($comment) if $comment;
1233 } else {
1234 warn "user config - ignore token '$tokenid' - user does not exist\n";
1235 }
2c3a6c0a
DM
1236 } else {
1237 warn "user config - ignore config line: $line\n";
1238 }
1239 }
1240
1241 userconfig_force_defaults($cfg);
1242
1243 return $cfg;
1244}
1245
2c3a6c0a
DM
1246sub write_user_config {
1247 my ($filename, $cfg) = @_;
1248
1249 my $data = '';
1250
93c7e9c3 1251 foreach my $user (sort keys %{$cfg->{users}}) {
2c3a6c0a
DM
1252 my $d = $cfg->{users}->{$user};
1253 my $firstname = $d->{firstname} ? PVE::Tools::encode_text($d->{firstname}) : '';
1254 my $lastname = $d->{lastname} ? PVE::Tools::encode_text($d->{lastname}) : '';
1255 my $email = $d->{email} || '';
1256 my $comment = $d->{comment} ? PVE::Tools::encode_text($d->{comment}) : '';
5eabc984 1257 my $expire = int($d->{expire} || 0);
2c3a6c0a 1258 my $enable = $d->{enable} ? 1 : 0;
96f8ebd6
DM
1259 my $keys = $d->{keys} ? $d->{keys} : '';
1260 $data .= "user:$user:$enable:$expire:$firstname:$lastname:$email:$comment:$keys:\n";
28e3dc05
FG
1261
1262 my $user_tokens = $d->{tokens};
1263 foreach my $token (sort keys %$user_tokens) {
1264 my $td = $user_tokens->{$token};
1265 my $full_tokenid = join_tokenid($user, $token);
1266 my $comment = $td->{comment} ? PVE::Tools::encode_text($td->{comment}) : '';
1267 my $expire = int($td->{expire} || 0);
1268 my $privsep = $td->{privsep} ? 1 : 0;
1269 $data .= "token:$full_tokenid:$expire:$privsep:$comment:\n";
1270 }
2c3a6c0a
DM
1271 }
1272
1273 $data .= "\n";
1274
93c7e9c3 1275 foreach my $group (sort keys %{$cfg->{groups}}) {
2c3a6c0a 1276 my $d = $cfg->{groups}->{$group};
a5ec58ea 1277 my $list = join (',', sort keys %{$d->{users}});
66931b11 1278 my $comment = $d->{comment} ? PVE::Tools::encode_text($d->{comment}) : '';
2c3a6c0a
DM
1279 $data .= "group:$group:$list:$comment:\n";
1280 }
1281
1282 $data .= "\n";
1283
93c7e9c3 1284 foreach my $pool (sort keys %{$cfg->{pools}}) {
39c85db8 1285 my $d = $cfg->{pools}->{$pool};
a5ec58ea
FG
1286 my $vmlist = join (',', sort keys %{$d->{vms}});
1287 my $storelist = join (',', sort keys %{$d->{storage}});
66931b11 1288 my $comment = $d->{comment} ? PVE::Tools::encode_text($d->{comment}) : '';
39c85db8 1289 $data .= "pool:$pool:$comment:$vmlist:$storelist:\n";
4bc17477
DM
1290 }
1291
1292 $data .= "\n";
1293
93c7e9c3 1294 foreach my $role (sort keys %{$cfg->{roles}}) {
2c3a6c0a
DM
1295 next if $special_roles->{$role};
1296
1297 my $d = $cfg->{roles}->{$role};
a5ec58ea 1298 my $list = join (',', sort keys %$d);
2c3a6c0a
DM
1299 $data .= "role:$role:$list:\n";
1300 }
1301
1302 $data .= "\n";
1303
9a12a08c
FG
1304 my $collect_rolelist_members = sub {
1305 my ($acl_members, $result, $prefix, $exclude) = @_;
2c3a6c0a 1306
9a12a08c
FG
1307 foreach my $member (keys %$acl_members) {
1308 next if $exclude && $member eq $exclude;
2c3a6c0a 1309
2c3a6c0a
DM
1310 my $l0 = '';
1311 my $l1 = '';
9a12a08c
FG
1312 foreach my $role (sort keys %{$acl_members->{$member}}) {
1313 my $propagate = $acl_members->{$member}->{$role};
2c3a6c0a
DM
1314 if ($propagate) {
1315 $l1 .= ',' if $l1;
1316 $l1 .= $role;
1317 } else {
1318 $l0 .= ',' if $l0;
1319 $l0 .= $role;
1320 }
1321 }
9a12a08c
FG
1322 $result->{0}->{$l0}->{"${prefix}${member}"} = 1 if $l0;
1323 $result->{1}->{$l1}->{"${prefix}${member}"} = 1 if $l1;
2c3a6c0a 1324 }
9a12a08c 1325 };
2c3a6c0a 1326
9a12a08c
FG
1327 foreach my $path (sort keys %{$cfg->{acl}}) {
1328 my $d = $cfg->{acl}->{$path};
2c3a6c0a 1329
9a12a08c 1330 my $rolelist_members = {};
2c3a6c0a 1331
9a12a08c
FG
1332 $collect_rolelist_members->($d->{'groups'}, $rolelist_members, '@');
1333
1334 # no need to save 'root@pam', it is always 'Administrator'
1335 $collect_rolelist_members->($d->{'users'}, $rolelist_members, '', 'root@pam');
1336
28e3dc05
FG
1337 $collect_rolelist_members->($d->{'tokens'}, $rolelist_members, '');
1338
9a12a08c
FG
1339 foreach my $propagate (0,1) {
1340 my $filtered = $rolelist_members->{$propagate};
1341 foreach my $rolelist (sort keys %$filtered) {
1342 my $uglist = join (',', sort keys %{$filtered->{$rolelist}});
1343 $data .= "acl:$propagate:$path:$uglist:$rolelist:\n";
1344 }
28e3dc05 1345
2c3a6c0a
DM
1346 }
1347 }
1348
1349 return $data;
1350}
1351
fda8ca85
WB
1352# The TFA configuration in priv/tfa.cfg format contains one line per user of
1353# the form:
1354# USER:TYPE:DATA
1355# DATA is a base64 encoded json string and its format depends on the type.
1356sub parse_priv_tfa_config {
1357 my ($filename, $raw) = @_;
1358
1359 my $users = {};
1360 my $cfg = { users => $users };
1361
1362 $raw = '' if !defined($raw);
1363 while ($raw =~ /^\s*(.+?)\s*$/gm) {
1364 my $line = $1;
1365 my ($user, $type, $data) = split(/:/, $line, 3);
1366
1367 my (undef, undef, $realm) = PVE::Auth::Plugin::verify_username($user, 1);
1368 if (!$realm) {
1369 warn "user tfa config - ignore user '$user' - invalid user name\n";
1370 next;
1371 }
1372
1373 $data = decode_json(decode_base64($data));
1374
1375 $users->{$user} = {
1376 type => $type,
1377 data => $data,
1378 };
1379 }
1380
1381 return $cfg;
1382}
1383
1384sub write_priv_tfa_config {
1385 my ($filename, $cfg) = @_;
1386
1387 my $output = '';
1388
1389 my $users = $cfg->{users};
1390 foreach my $user (sort keys %$users) {
1391 my $info = $users->{$user};
1392 next if !%$info; # skip empty entries
1393
1394 $info = {%$info}; # copy to verify contents:
1395
1396 my $type = delete $info->{type};
1397 my $data = delete $info->{data};
1398
1399 if (my @keys = keys %$info) {
1400 die "invalid keys in TFA config for user $user: " . join(', ', @keys) . "\n";
1401 }
1402
1403 $data = encode_base64(encode_json($data), '');
1404 $output .= "${user}:${type}:${data}\n";
1405 }
1406
1407 return $output;
1408}
1409
2c3a6c0a
DM
1410sub roles {
1411 my ($cfg, $user, $path) = @_;
1412
66931b11 1413 # NOTE: we do not consider pools here.
e915e9e4
FG
1414 # NOTE: for privsep tokens, this does not filter roles by those that the
1415 # corresponding user has.
a31f1d85 1416 # Use $rpcenv->permission() for any actual permission checks!
4bc17477 1417
2c3a6c0a
DM
1418 return 'Administrator' if $user eq 'root@pam'; # root can do anything
1419
e915e9e4
FG
1420 if (pve_verify_tokenid($user, 1)) {
1421 my $tokenid = $user;
1422 my ($username, $token) = split_tokenid($tokenid);
1423
1424 my $token_info = $cfg->{users}->{$username}->{tokens}->{$token};
1425 return () if !$token_info;
1426
7e8bcaa7 1427 my $user_roles = roles($cfg, $username, $path);
e915e9e4
FG
1428
1429 # return full user privileges
7e8bcaa7 1430 return $user_roles if !$token_info->{privsep};
e915e9e4
FG
1431 }
1432
7e8bcaa7 1433 my $roles = {};
2c3a6c0a
DM
1434
1435 foreach my $p (sort keys %{$cfg->{acl}}) {
1436 my $final = ($path eq $p);
1437
1438 next if !(($p eq '/') || $final || ($path =~ m|^$p/|));
1439
1440 my $acl = $cfg->{acl}->{$p};
1441
1442 #print "CHECKACL $path $p\n";
1443 #print "ACL $path = " . Dumper ($acl);
e915e9e4
FG
1444 if (my $ri = $acl->{tokens}->{$user}) {
1445 my $new;
1446 foreach my $role (keys %$ri) {
1447 my $propagate = $ri->{$role};
1448 if ($final || $propagate) {
1449 #print "APPLY ROLE $p $user $role\n";
1450 $new = {} if !$new;
7e8bcaa7 1451 $new->{$role} = $propagate;
e915e9e4
FG
1452 }
1453 }
1454 if ($new) {
7e8bcaa7 1455 $roles = $new; # overwrite previous settings
e915e9e4
FG
1456 next;
1457 }
1458 }
2c3a6c0a
DM
1459
1460 if (my $ri = $acl->{users}->{$user}) {
1461 my $new;
1462 foreach my $role (keys %$ri) {
1463 my $propagate = $ri->{$role};
1464 if ($final || $propagate) {
1465 #print "APPLY ROLE $p $user $role\n";
1466 $new = {} if !$new;
7e8bcaa7 1467 $new->{$role} = $propagate;
2c3a6c0a
DM
1468 }
1469 }
1470 if ($new) {
7e8bcaa7 1471 $roles = $new; # overwrite previous settings
2c3a6c0a
DM
1472 next; # user privs always override group privs
1473 }
1474 }
1475
1476 my $new;
1477 foreach my $g (keys %{$acl->{groups}}) {
1478 next if !$cfg->{groups}->{$g}->{users}->{$user};
1479 if (my $ri = $acl->{groups}->{$g}) {
1480 foreach my $role (keys %$ri) {
1481 my $propagate = $ri->{$role};
1482 if ($final || $propagate) {
1483 #print "APPLY ROLE $p \@$g $role\n";
1484 $new = {} if !$new;
7e8bcaa7 1485 $new->{$role} = $propagate;
2c3a6c0a
DM
1486 }
1487 }
1488 }
1489 }
1490 if ($new) {
7e8bcaa7 1491 $roles = $new; # overwrite previous settings
2c3a6c0a
DM
1492 next;
1493 }
2c3a6c0a
DM
1494 }
1495
7e8bcaa7
FG
1496 return { 'NoAccess' => $roles->{NoAccess} } if defined ($roles->{NoAccess});
1497 #return () if defined ($roles->{NoAccess});
66931b11 1498
7e8bcaa7 1499 #print "permission $user $path = " . Dumper ($roles);
2c3a6c0a
DM
1500
1501 #print "roles $user $path = " . join (',', @ra) . "\n";
1502
7e8bcaa7 1503 return $roles;
2c3a6c0a 1504}
66931b11 1505
3b4a3f94
AG
1506sub remove_vm_access {
1507 my ($vmid) = @_;
1508 my $delVMaccessFn = sub {
1509 my $usercfg = cfs_read_file("user.cfg");
57a70473 1510 my $modified;
3b4a3f94 1511
57a70473
DM
1512 if (my $acl = $usercfg->{acl}->{"/vms/$vmid"}) {
1513 delete $usercfg->{acl}->{"/vms/$vmid"};
1514 $modified = 1;
3b4a3f94
AG
1515 }
1516 if (my $pool = $usercfg->{vms}->{$vmid}) {
1517 if (my $data = $usercfg->{pools}->{$pool}) {
1518 delete $data->{vms}->{$vmid};
1519 delete $usercfg->{vms}->{$vmid};
57a70473 1520 $modified = 1;
3b4a3f94
AG
1521 }
1522 }
57a70473 1523 cfs_write_file("user.cfg", $usercfg) if $modified;
3b4a3f94
AG
1524 };
1525
1526 lock_user_config($delVMaccessFn, "access permissions cleanup for VM $vmid failed");
1527}
1528
60844761
AG
1529sub remove_storage_access {
1530 my ($storeid) = @_;
1531
1532 my $deleteStorageAccessFn = sub {
1533 my $usercfg = cfs_read_file("user.cfg");
1534 my $modified;
1535
1536 if (my $storage = $usercfg->{acl}->{"/storage/$storeid"}) {
1537 delete $usercfg->{acl}->{"/storage/$storeid"};
1538 $modified = 1;
1539 }
1540 foreach my $pool (keys %{$usercfg->{pools}}) {
1541 delete $usercfg->{pools}->{$pool}->{storage}->{$storeid};
1542 $modified = 1;
1543 }
1544 cfs_write_file("user.cfg", $usercfg) if $modified;
1545 };
1546
1547 lock_user_config($deleteStorageAccessFn,
1548 "access permissions cleanup for storage $storeid failed");
1549}
1550
018ae3a9
DM
1551sub add_vm_to_pool {
1552 my ($vmid, $pool) = @_;
1553
1554 my $addVMtoPoolFn = sub {
1555 my $usercfg = cfs_read_file("user.cfg");
1556 if (my $data = $usercfg->{pools}->{$pool}) {
1557 $data->{vms}->{$vmid} = 1;
1558 $usercfg->{vms}->{$vmid} = $pool;
1559 cfs_write_file("user.cfg", $usercfg);
1560 }
1561 };
1562
1563 lock_user_config($addVMtoPoolFn, "can't add VM $vmid to pool '$pool'");
1564}
1565
1566sub remove_vm_from_pool {
1567 my ($vmid) = @_;
66931b11 1568
018ae3a9
DM
1569 my $delVMfromPoolFn = sub {
1570 my $usercfg = cfs_read_file("user.cfg");
1571 if (my $pool = $usercfg->{vms}->{$vmid}) {
1572 if (my $data = $usercfg->{pools}->{$pool}) {
1573 delete $data->{vms}->{$vmid};
1574 delete $usercfg->{vms}->{$vmid};
1575 cfs_write_file("user.cfg", $usercfg);
1576 }
1577 }
1578 };
1579
1580 lock_user_config($delVMfromPoolFn, "pool cleanup for VM $vmid failed");
1581}
1582
49b15310 1583my $USER_CONTROLLED_TFA_TYPES = {
fda8ca85
WB
1584 u2f => 1,
1585 oath => 1,
1586};
1587
1588# Delete an entry by setting $data=undef in which case $type is ignored.
1589# Otherwise both must be valid.
1590sub user_set_tfa {
1591 my ($userid, $realm, $type, $data, $cached_usercfg, $cached_domaincfg) = @_;
1592
1593 if (defined($data) && !defined($type)) {
1594 # This is an internal usage error and should not happen
1595 die "cannot set tfa data without a type\n";
1596 }
1597
1598 my $user_cfg = $cached_usercfg || cfs_read_file('user.cfg');
1599 my $user = $user_cfg->{users}->{$userid}
1600 or die "user '$userid' not found\n";
1601
1602 my $domain_cfg = $cached_domaincfg || cfs_read_file('domains.cfg');
1603 my $realm_cfg = $domain_cfg->{ids}->{$realm};
1604 die "auth domain '$realm' does not exist\n" if !$realm_cfg;
1605
1606 my $realm_tfa = $realm_cfg->{tfa};
1607 if (defined($realm_tfa)) {
1608 $realm_tfa = PVE::Auth::Plugin::parse_tfa_config($realm_tfa);
1609 # If the realm has a TFA setting, we're only allowed to use that.
1610 if (defined($data)) {
1611 my $required_type = $realm_tfa->{type};
1612 if ($required_type ne $type) {
1613 die "realm '$realm' only allows TFA of type '$required_type\n";
1614 }
1615
1616 if (defined($data->{config})) {
1617 # XXX: Is it enough if the type matches? Or should the configuration also match?
1618 }
1619
1620 # realm-configured tfa always uses a simple key list, so use the user.cfg
1621 $user->{keys} = $data->{keys};
1622 } else {
1623 die "realm '$realm' does not allow removing the 2nd factor\n";
1624 }
1625 } else {
1626 # Without a realm-enforced TFA setting the user can add a u2f or totp entry by themselves.
1627 # The 'yubico' type requires yubico server settings, which have to be configured on the
1628 # realm, so this is not supported here:
1629 die "domain '$realm' does not support TFA type '$type'\n"
49b15310 1630 if defined($data) && !$USER_CONTROLLED_TFA_TYPES->{$type};
fda8ca85
WB
1631 }
1632
1633 # Custom TFA entries are stored in priv/tfa.cfg as they can be more complet: u2f uses a
1634 # public key and a key handle, TOTP requires the usual totp settings...
1635
1636 my $tfa_cfg = cfs_read_file('priv/tfa.cfg');
1637 my $tfa = ($tfa_cfg->{users}->{$userid} //= {});
1638
1639 if (defined($data)) {
1640 $tfa->{type} = $type;
1641 $tfa->{data} = $data;
1642 cfs_write_file('priv/tfa.cfg', $tfa_cfg);
1643
7e58c66d 1644 $user->{keys} = "x!$type";
fda8ca85
WB
1645 } else {
1646 delete $tfa_cfg->{users}->{$userid};
1647 cfs_write_file('priv/tfa.cfg', $tfa_cfg);
1648
1649 delete $user->{keys};
1650 }
1651
1652 cfs_write_file('user.cfg', $user_cfg);
1653}
1654
1655sub user_get_tfa {
1656 my ($username, $realm) = @_;
1657
1658 my $user_cfg = cfs_read_file('user.cfg');
1659 my $user = $user_cfg->{users}->{$username}
1660 or die "user '$username' not found\n";
1661
1662 my $keys = $user->{keys};
fda8ca85
WB
1663
1664 my $domain_cfg = cfs_read_file('domains.cfg');
1665 my $realm_cfg = $domain_cfg->{ids}->{$realm};
1666 die "auth domain '$realm' does not exist\n" if !$realm_cfg;
1667
1668 my $realm_tfa = $realm_cfg->{tfa};
1669 $realm_tfa = PVE::Auth::Plugin::parse_tfa_config($realm_tfa)
1670 if $realm_tfa;
1671
6063b65b
WB
1672 if (!$keys) {
1673 return if !$realm_tfa;
1674 die "missing required 2nd keys\n";
1675 }
1676
7e58c66d 1677 # new style config starts with an 'x' and optionally contains a !<type> suffix
0a956b94 1678 if ($keys !~ /^x(?:!.*)?$/) {
fda8ca85
WB
1679 # old style config, find the type via the realm
1680 return if !$realm_tfa;
1681 return ($realm_tfa->{type}, {
1682 keys => $keys,
1683 config => $realm_tfa,
1684 });
1685 } else {
1686 my $tfa_cfg = cfs_read_file('priv/tfa.cfg');
1687 my $tfa = $tfa_cfg->{users}->{$username};
1688 return if !$tfa; # should not happen (user.cfg wasn't cleaned up?)
1689
1690 if ($realm_tfa) {
1691 # if the realm has a tfa setting we need to verify the type:
1692 die "auth domain '$realm' and user have mismatching TFA settings\n"
1693 if $realm_tfa && $realm_tfa->{type} ne $tfa->{type};
1694 }
1695
1696 return ($tfa->{type}, $tfa->{data});
1697 }
1698}
1699
3e5bfdf6
DM
1700# bash completion helpers
1701
ab7b19b5
SI
1702register_standard_option('userid-completed',
1703 get_standard_option('userid', { completion => \&complete_username}),
1704);
1705
3e5bfdf6
DM
1706sub complete_username {
1707
1708 my $user_cfg = cfs_read_file('user.cfg');
1709
1710 return [ keys %{$user_cfg->{users}} ];
1711}
1712
1713sub complete_group {
1714
1715 my $user_cfg = cfs_read_file('user.cfg');
1716
1717 return [ keys %{$user_cfg->{groups}} ];
1718}
1719
1720sub complete_realm {
1721
1722 my $domain_cfg = cfs_read_file('domains.cfg');
1723
1724 return [ keys %{$domain_cfg->{ids}} ];
1725}
1726
2c3a6c0a 17271;