]> git.proxmox.com Git - pve-access-control.git/blame - PVE/API2/AccessControl.pm
pveum: don't unconditionally create auth key
[pve-access-control.git] / PVE / API2 / AccessControl.pm
CommitLineData
2c3a6c0a
DM
1package PVE::API2::AccessControl;
2
3use strict;
4use warnings;
5
2b4c98ab
WB
6use JSON;
7use MIME::Base64;
8
37d45deb 9use PVE::Exception qw(raise raise_perm_exc);
2c3a6c0a
DM
10use PVE::SafeSyslog;
11use PVE::RPCEnvironment;
a427cecb 12use PVE::Cluster qw(cfs_read_file);
e842fec5 13use PVE::Corosync;
2c3a6c0a
DM
14use PVE::RESTHandler;
15use PVE::AccessControl;
16use PVE::JSONSchema qw(get_standard_option);
17use PVE::API2::Domains;
18use PVE::API2::User;
19use PVE::API2::Group;
20use PVE::API2::Role;
21use PVE::API2::ACL;
8967f86f 22use PVE::Auth::Plugin;
47d731c7
WB
23use PVE::OTP;
24use PVE::Tools;
2c3a6c0a 25
2b4c98ab
WB
26my $u2f_available = 0;
27eval {
28 require PVE::U2F;
29 $u2f_available = 1;
30};
31
2c3a6c0a
DM
32use base qw(PVE::RESTHandler);
33
34__PACKAGE__->register_method ({
35 subclass => "PVE::API2::User",
36 path => 'users',
37});
38
39__PACKAGE__->register_method ({
40 subclass => "PVE::API2::Group",
41 path => 'groups',
42});
43
44__PACKAGE__->register_method ({
45 subclass => "PVE::API2::Role",
46 path => 'roles',
47});
48
49__PACKAGE__->register_method ({
50 subclass => "PVE::API2::ACL",
51 path => 'acl',
52});
53
54__PACKAGE__->register_method ({
55 subclass => "PVE::API2::Domains",
56 path => 'domains',
57});
58
59__PACKAGE__->register_method ({
60 name => 'index',
61 path => '',
62 method => 'GET',
63 description => "Directory index.",
82b63965
DM
64 permissions => {
65 user => 'all',
66 },
2c3a6c0a
DM
67 parameters => {
68 additionalProperties => 0,
69 properties => {},
70 },
71 returns => {
72 type => 'array',
73 items => {
74 type => "object",
75 properties => {
76 subdir => { type => 'string' },
77 },
78 },
79 links => [ { rel => 'child', href => "{subdir}" } ],
80 },
81 code => sub {
82 my ($param) = @_;
83
84 my $res = [];
85
86 my $ma = __PACKAGE__->method_attributes();
87
88 foreach my $info (@$ma) {
89 next if !$info->{subclass};
90
91 my $subpath = $info->{match_re}->[0];
92
93 push @$res, { subdir => $subpath };
94 }
95
96 push @$res, { subdir => 'ticket' };
37d45deb 97 push @$res, { subdir => 'password' };
2c3a6c0a
DM
98
99 return $res;
100 }});
101
adf8d771
DM
102
103my $verify_auth = sub {
96f8ebd6 104 my ($rpcenv, $username, $pw_or_ticket, $otp, $path, $privs) = @_;
adf8d771
DM
105
106 my $normpath = PVE::AccessControl::normalize_path($path);
107
108 my $ticketuser;
109 if (($ticketuser = PVE::AccessControl::verify_ticket($pw_or_ticket, 1)) &&
110 ($ticketuser eq $username)) {
111 # valid ticket
112 } elsif (PVE::AccessControl::verify_vnc_ticket($pw_or_ticket, $username, $normpath, 1)) {
113 # valid vnc ticket
114 } else {
96f8ebd6 115 $username = PVE::AccessControl::authenticate_user($username, $pw_or_ticket, $otp);
adf8d771
DM
116 }
117
118 my $privlist = [ PVE::Tools::split_list($privs) ];
119 if (!($normpath && scalar(@$privlist) && $rpcenv->check($username, $normpath, $privlist))) {
120 die "no permission ($path, $privs)\n";
121 }
122
123 return { username => $username };
124};
125
126my $create_ticket = sub {
96f8ebd6 127 my ($rpcenv, $username, $pw_or_ticket, $otp) = @_;
adf8d771 128
f25628d3
WB
129 my ($ticketuser, undef, $tfa_info) = PVE::AccessControl::verify_ticket($pw_or_ticket, 1);
130 if (defined($ticketuser) && ($ticketuser eq 'root@pam' || $ticketuser eq $username)) {
131 if (defined($tfa_info)) {
132 die "incomplete ticket\n";
133 }
adf8d771
DM
134 # valid ticket. Note: root@pam can create tickets for other users
135 } else {
f25628d3 136 ($username, $tfa_info) = PVE::AccessControl::authenticate_user($username, $pw_or_ticket, $otp);
18f8ba18
WB
137 }
138
139 my %extra;
140 my $ticket_data = $username;
f25628d3
WB
141 if (defined($tfa_info)) {
142 $extra{NeedTFA} = 1;
143 if ($tfa_info->{type} eq 'u2f') {
144 my $u2finfo = $tfa_info->{data};
145 my $u2f = get_u2f_instance($rpcenv, $u2finfo->@{qw(publicKey keyHandle)});
146 my $challenge = $u2f->auth_challenge()
147 or die "failed to get u2f challenge\n";
148 $challenge = decode_json($challenge);
149 $extra{U2FChallenge} = $challenge;
150 $ticket_data = "u2f!$username!$challenge->{challenge}";
151 } else {
152 # General half-login / 'missing 2nd factor' ticket:
153 $ticket_data = "tfa!$username";
154 }
adf8d771
DM
155 }
156
18f8ba18 157 my $ticket = PVE::AccessControl::assemble_ticket($ticket_data);
adf8d771
DM
158 my $csrftoken = PVE::AccessControl::assemble_csrf_prevention_token($username);
159
160 return {
161 ticket => $ticket,
162 username => $username,
163 CSRFPreventionToken => $csrftoken,
18f8ba18 164 %extra,
adf8d771
DM
165 };
166};
167
dd2cfee0
DM
168my $compute_api_permission = sub {
169 my ($rpcenv, $authuser) = @_;
170
171 my $usercfg = $rpcenv->{user_cfg};
172
a2c18811
TL
173 my $res = {};
174 my $priv_re_map = {
175 vms => qr/VM\.|Permissions\.Modify/,
176 access => qr/(User|Group)\.|Permissions\.Modify/,
f5848089 177 storage => qr/Datastore\.|Permissions\.Modify/,
a2c18811
TL
178 nodes => qr/Sys\.|Permissions\.Modify/,
179 dc => qr/Sys\.Audit/,
dd2cfee0 180 };
a2c18811
TL
181 map { $res->{$_} = {} } keys %$priv_re_map;
182
183 my $required_paths = ['/', '/nodes', '/access/groups', '/vms', '/storage'];
184
185 my $checked_paths = {};
186 foreach my $path (@$required_paths, keys %{$usercfg->{acl}}) {
187 next if $checked_paths->{$path};
188 $checked_paths->{$path} = 1;
189
190 my $path_perm = $rpcenv->permissions($authuser, $path);
191
192 my $toplevel = ($path =~ /^\/(\w+)/) ? $1 : 'dc';
193 if ($toplevel eq 'pool') {
194 foreach my $priv (keys %$path_perm) {
195 if ($priv =~ m/^VM\./) {
196 $res->{vms}->{$priv} = 1;
197 } elsif ($priv =~ m/^Datastore\./) {
198 $res->{storage}->{$priv} = 1;
199 } elsif ($priv eq 'Permissions.Modify') {
200 $res->{storage}->{$priv} = 1;
201 $res->{vms}->{$priv} = 1;
202 }
203 }
204 } else {
205 my $priv_regex = $priv_re_map->{$toplevel} // next;
206 foreach my $priv (keys %$path_perm) {
207 next if $priv !~ m/^($priv_regex)/;
208 $res->{$toplevel}->{$priv} = 1;
209 }
dd2cfee0
DM
210 }
211 }
212
dd2cfee0
DM
213 return $res;
214};
215
39e4e363
DM
216__PACKAGE__->register_method ({
217 name => 'get_ticket',
218 path => 'ticket',
219 method => 'GET',
220 permissions => { user => 'world' },
36dd9dbd 221 description => "Dummy. Useful for formatters which want to provide a login page.",
39e4e363
DM
222 parameters => {
223 additionalProperties => 0,
224 },
225 returns => { type => "null" },
226 code => sub { return undef; }});
227
2c3a6c0a
DM
228__PACKAGE__->register_method ({
229 name => 'create_ticket',
230 path => 'ticket',
231 method => 'POST',
96919234
DM
232 permissions => {
233 description => "You need to pass valid credientials.",
234 user => 'world'
235 },
2c3a6c0a 236 protected => 1, # else we can't access shadow files
adf8d771 237 description => "Create or verify authentication ticket.",
2c3a6c0a
DM
238 parameters => {
239 additionalProperties => 0,
240 properties => {
241 username => {
3a5ae7a0
SI
242 description => "User name",
243 type => 'string',
244 maxLength => 64,
245 completion => \&PVE::AccessControl::complete_username,
2c3a6c0a
DM
246 },
247 realm => get_standard_option('realm', {
248 description => "You can optionally pass the realm using this parameter. Normally the realm is simply added to the username <username>\@<relam>.",
3e5bfdf6
DM
249 optional => 1,
250 completion => \&PVE::AccessControl::complete_realm,
251 }),
2c3a6c0a
DM
252 password => {
253 description => "The secret password. This can also be a valid ticket.",
254 type => 'string',
255 },
96f8ebd6
DM
256 otp => {
257 description => "One-time password for Two-factor authentication.",
258 type => 'string',
259 optional => 1,
260 },
2c3a6c0a 261 path => {
adf8d771 262 description => "Verify ticket, and check if user have access 'privs' on 'path'",
2c3a6c0a
DM
263 type => 'string',
264 requires => 'privs',
265 optional => 1,
266 maxLength => 64,
267 },
268 privs => {
adf8d771 269 description => "Verify ticket, and check if user have access 'privs' on 'path'",
2c3a6c0a
DM
270 type => 'string' , format => 'pve-priv-list',
271 requires => 'path',
272 optional => 1,
273 maxLength => 64,
274 },
275 }
276 },
277 returns => {
278 type => "object",
279 properties => {
2c3a6c0a 280 username => { type => 'string' },
adf8d771
DM
281 ticket => { type => 'string', optional => 1},
282 CSRFPreventionToken => { type => 'string', optional => 1 },
e842fec5 283 clustername => { type => 'string', optional => 1 },
18f8ba18 284 # cap => computed api permissions, unless there's a u2f challenge
2c3a6c0a
DM
285 }
286 },
287 code => sub {
288 my ($param) = @_;
289
290 my $username = $param->{username};
291 $username .= "\@$param->{realm}" if $param->{realm};
292
293 my $rpcenv = PVE::RPCEnvironment::get();
2c3a6c0a 294
adf8d771 295 my $res;
adf8d771 296 eval {
7070c1ae
DM
297 # test if user exists and is enabled
298 $rpcenv->check_user_enabled($username);
299
2c3a6c0a 300 if ($param->{path} && $param->{privs}) {
96f8ebd6 301 $res = &$verify_auth($rpcenv, $username, $param->{password}, $param->{otp},
adf8d771 302 $param->{path}, $param->{privs});
2c3a6c0a 303 } else {
96f8ebd6 304 $res = &$create_ticket($rpcenv, $username, $param->{password}, $param->{otp});
2c3a6c0a 305 }
2c3a6c0a
DM
306 };
307 if (my $err = $@) {
adf8d771 308 my $clientip = $rpcenv->get_client_ip() || '';
2c3a6c0a 309 syslog('err', "authentication failure; rhost=$clientip user=$username msg=$err");
6126ab75 310 # do not return any info to prevent user enumeration attacks
fe2defd9 311 die PVE::Exception->new("authentication failure\n", code => 401);
2c3a6c0a
DM
312 }
313
18f8ba18 314 $res->{cap} = &$compute_api_permission($rpcenv, $username)
f25628d3 315 if !defined($res->{NeedTFA});
dd2cfee0 316
e842fec5
TL
317 if (PVE::Corosync::check_conf_exists(1)) {
318 if ($rpcenv->check($username, '/', ['Sys.Audit'], 1)) {
b27ae8aa
TL
319 eval {
320 my $conf = cfs_read_file('corosync.conf');
321 my $totem = PVE::Corosync::totem_config($conf);
322 if ($totem->{cluster_name}) {
323 $res->{clustername} = $totem->{cluster_name};
324 }
325 };
326 warn "$@\n" if $@;
e842fec5
TL
327 }
328 }
329
2c3a6c0a
DM
330 PVE::Cluster::log_msg('info', 'root@pam', "successful auth for user '$username'");
331
adf8d771 332 return $res;
2c3a6c0a
DM
333 }});
334
37d45deb 335__PACKAGE__->register_method ({
765305e2 336 name => 'change_password',
37d45deb
DM
337 path => 'password',
338 method => 'PUT',
12683df7 339 permissions => {
82b63965 340 description => "Each user is allowed to change his own password. A user can change the password of another user if he has 'Realm.AllocateUser' (on the realm of user <userid>) and 'User.Modify' permission on /access/groups/<group> on a group where user <userid> is member of.",
12683df7
DM
341 check => [ 'or',
342 ['userid-param', 'self'],
82b63965
DM
343 [ 'and',
344 [ 'userid-param', 'Realm.AllocateUser'],
345 [ 'userid-group', ['User.Modify']]
346 ]
12683df7
DM
347 ],
348 },
37d45deb
DM
349 protected => 1, # else we can't access shadow files
350 description => "Change user password.",
351 parameters => {
352 additionalProperties => 0,
353 properties => {
3a5ae7a0 354 userid => get_standard_option('userid-completed'),
37d45deb
DM
355 password => {
356 description => "The new password.",
357 type => 'string',
358 minLength => 5,
359 maxLength => 64,
360 },
361 }
362 },
363 returns => { type => "null" },
364 code => sub {
365 my ($param) = @_;
366
367 my $rpcenv = PVE::RPCEnvironment::get();
368 my $authuser = $rpcenv->get_user();
369
370 my ($userid, $ruid, $realm) = PVE::AccessControl::verify_username($param->{userid});
371
12683df7 372 $rpcenv->check_user_exist($userid);
37d45deb
DM
373
374 if ($authuser eq 'root@pam') {
375 # OK - root can change anything
376 } else {
377 if ($authuser eq $userid) {
378 $rpcenv->check_user_enabled($userid);
379 # OK - each user can change its own password
380 } else {
12683df7 381 # only root may change root password
37d45deb 382 raise_perm_exc() if $userid eq 'root@pam';
59321f26
DM
383 # do not allow to change system user passwords
384 raise_perm_exc() if $realm eq 'pam';
37d45deb
DM
385 }
386 }
387
388 PVE::AccessControl::domain_set_password($realm, $ruid, $param->{password});
389
390 PVE::Cluster::log_msg('info', 'root@pam', "changed password for user '$userid'");
391
392 return undef;
393 }});
394
2b4c98ab
WB
395sub get_u2f_config() {
396 die "u2f support not available\n" if !$u2f_available;
397
398 my $dc = cfs_read_file('datacenter.cfg');
399 my $u2f = $dc->{u2f};
400 die "u2f not configured in datacenter.cfg\n" if !$u2f;
401 $u2f = PVE::JSONSchema::parse_property_string($PVE::Cluster::u2f_format, $u2f);
402 return $u2f;
403}
404
405sub get_u2f_instance {
406 my ($rpcenv, $publicKey, $keyHandle) = @_;
407
408 # We store the public key base64 encoded (as the api provides it in binary)
409 $publicKey = decode_base64($publicKey) if defined($publicKey);
410
411 my $u2fconfig = get_u2f_config();
412 my $u2f = PVE::U2F->new();
413
414 # via the 'Host' header (in case a node has multiple hosts available).
415 my $origin = $u2fconfig->{origin};
416 if (!defined($origin)) {
417 $origin = $rpcenv->get_request_host(1);
418 if ($origin) {
419 $origin = "https://$origin";
420 } else {
421 die "failed to figure out u2f origin\n";
422 }
423 }
424
425 my $appid = $u2fconfig->{appid} // $origin;
426 $u2f->set_appid($appid);
427 $u2f->set_origin($origin);
428 $u2f->set_publicKey($publicKey) if defined($publicKey);
429 $u2f->set_keyHandle($keyHandle) if defined($keyHandle);
430 return $u2f;
431}
432
47d731c7
WB
433sub verify_user_tfa_config {
434 my ($type, $tfa_cfg, $value) = @_;
435
436 if (!defined($type)) {
437 die "missing tfa 'type'\n";
438 }
439
440 if ($type ne 'oath') {
441 die "invalid type for custom tfa authentication\n";
442 }
443
444 my $secret = $tfa_cfg->{keys}
445 or die "missing TOTP secret\n";
446 $tfa_cfg = $tfa_cfg->{config};
447 # Copy the hash to verify that we have no unexpected keys without modifying the original hash.
448 $tfa_cfg = {%$tfa_cfg};
449
450 # We can only verify 1 secret but oath_verify_otp allows multiple:
451 if (scalar(PVE::Tools::split_list($secret)) != 1) {
452 die "only exactly one secret key allowed\n";
453 }
454
455 my $digits = delete($tfa_cfg->{digits}) // 6;
456 my $step = delete($tfa_cfg->{step}) // 30;
457 # Maybe also this?
458 # my $algorithm = delete($tfa_cfg->{algorithm}) // 'sha1';
459
460 if (length(my $more = join(', ', keys %$tfa_cfg))) {
461 die "unexpected tfa config keys: $more\n";
462 }
463
464 PVE::OTP::oath_verify_otp($value, $secret, $step, $digits);
465}
466
2b4c98ab
WB
467__PACKAGE__->register_method ({
468 name => 'change_tfa',
469 path => 'tfa',
470 method => 'PUT',
471 permissions => {
47d731c7 472 description => 'A user can change their own u2f or totp token.',
2b4c98ab
WB
473 check => [ 'or',
474 ['userid-param', 'self'],
475 [ 'and',
476 [ 'userid-param', 'Realm.AllocateUser'],
477 [ 'userid-group', ['User.Modify']]
478 ]
479 ],
480 },
481 protected => 1, # else we can't access shadow files
482 description => "Change user u2f authentication.",
483 parameters => {
484 additionalProperties => 0,
485 properties => {
486 userid => get_standard_option('userid', {
487 completion => \&PVE::AccessControl::complete_username,
488 }),
489 password => {
490 optional => 1, # Only required if not root@pam
491 description => "The current password.",
492 type => 'string',
493 minLength => 5,
494 maxLength => 64,
495 },
496 action => {
497 description => 'The action to perform',
498 type => 'string',
499 enum => [qw(delete new confirm)],
500 },
501 response => {
502 optional => 1,
47d731c7
WB
503 description =>
504 'Either the the response to the current u2f registration challenge,'
505 .' or, when adding TOTP, the currently valid TOTP value.',
506 type => 'string',
507 },
508 key => {
509 optional => 1,
510 description => 'When adding TOTP, the shared secret value.',
2b4c98ab 511 type => 'string',
0bf114df 512 format => 'pve-tfa-secret',
47d731c7
WB
513 },
514 config => {
515 optional => 1,
516 description => 'A TFA configuration. This must currently be of type TOTP of not set at all.',
517 type => 'string',
518 format => 'pve-tfa-config',
519 maxLength => 128,
2b4c98ab
WB
520 },
521 }
522 },
523 returns => { type => 'object' },
524 code => sub {
525 my ($param) = @_;
526
527 my $rpcenv = PVE::RPCEnvironment::get();
528 my $authuser = $rpcenv->get_user();
529
530 my $action = delete $param->{action};
531 my $response = delete $param->{response};
532 my $password = delete($param->{password}) // '';
47d731c7
WB
533 my $key = delete($param->{key});
534 my $config = delete($param->{config});
2b4c98ab
WB
535
536 my ($userid, $ruid, $realm) = PVE::AccessControl::verify_username($param->{userid});
537 $rpcenv->check_user_exist($userid);
538
539 # Only root may modify root
540 raise_perm_exc() if $userid eq 'root@pam' && $authuser ne 'root@pam';
541
542 # Regular users need to confirm their password to change u2f settings.
543 if ($authuser ne 'root@pam') {
544 raise_param_exc('password' => 'password is required to modify u2f data')
545 if !defined($password);
546 my $domain_cfg = cfs_read_file('domains.cfg');
547 my $cfg = $domain_cfg->{ids}->{$realm};
548 die "auth domain '$realm' does not exists\n" if !$cfg;
549 my $plugin = PVE::Auth::Plugin->lookup($cfg->{type});
550 $plugin->authenticate_user($cfg, $realm, $ruid, $password);
551 }
552
553 if ($action eq 'delete') {
554 PVE::AccessControl::user_set_tfa($userid, $realm, undef, undef);
555 PVE::Cluster::log_msg('info', $authuser, "deleted u2f data for user '$userid'");
556 } elsif ($action eq 'new') {
47d731c7
WB
557 if (defined($config)) {
558 $config = PVE::Auth::Plugin::parse_tfa_config($config);
559 my $type = delete($config->{type});
560 my $tfa_cfg = {
561 keys => $key,
562 config => $config,
563 };
564 verify_user_tfa_config($type, $tfa_cfg, $response);
565 PVE::AccessControl::user_set_tfa($userid, $realm, $type, $tfa_cfg);
566 } else {
567 # The default is U2F:
568 my $u2f = get_u2f_instance($rpcenv);
569 my $challenge = $u2f->registration_challenge()
570 or raise("failed to get u2f challenge");
571 $challenge = decode_json($challenge);
572 PVE::AccessControl::user_set_tfa($userid, $realm, 'u2f', $challenge);
573 return $challenge;
574 }
2b4c98ab
WB
575 } elsif ($action eq 'confirm') {
576 raise_param_exc('response' => "confirm action requires the 'response' parameter to be set")
577 if !defined($response);
578
579 my ($type, $u2fdata) = PVE::AccessControl::user_get_tfa($userid, $realm);
580 raise("no u2f data available")
581 if (!defined($type) || $type ne 'u2f');
582
583 my $challenge = $u2fdata->{challenge}
584 or raise("no active challenge");
585
586 my $u2f = get_u2f_instance($rpcenv);
587 $u2f->set_challenge($challenge);
588 my ($keyHandle, $publicKey) = $u2f->registration_verify($response);
589 PVE::AccessControl::user_set_tfa($userid, $realm, 'u2f', {
590 keyHandle => $keyHandle,
eb25cbaf 591 publicKey => $publicKey, # already base64 encoded
2b4c98ab
WB
592 });
593 } else {
594 die "invalid action: $action\n";
595 }
596
597 return {};
598 }});
599
600__PACKAGE__->register_method({
601 name => 'verify_tfa',
602 path => 'tfa',
603 method => 'POST',
604 permissions => { user => 'all' },
605 protected => 1, # else we can't access shadow files
606 description => 'Finish a u2f challenge.',
607 parameters => {
608 additionalProperties => 0,
609 properties => {
610 response => {
611 type => 'string',
612 description => 'The response to the current authentication challenge.',
613 },
614 }
615 },
616 returns => {
617 type => 'object',
618 properties => {
619 ticket => { type => 'string' },
620 # cap
621 }
622 },
623 code => sub {
624 my ($param) = @_;
625
626 my $rpcenv = PVE::RPCEnvironment::get();
2b4c98ab
WB
627 my $authuser = $rpcenv->get_user();
628 my ($username, undef, $realm) = PVE::AccessControl::verify_username($authuser);
629
f25628d3
WB
630 my ($tfa_type, $tfa_data) = PVE::AccessControl::user_get_tfa($username, $realm);
631 if (!defined($tfa_type)) {
2b4c98ab
WB
632 raise('no u2f data available');
633 }
634
f25628d3
WB
635 eval {
636 if ($tfa_type eq 'u2f') {
637 my $challenge = $rpcenv->get_u2f_challenge()
638 or raise('no active challenge');
2b4c98ab 639
f25628d3
WB
640 my $keyHandle = $tfa_data->{keyHandle};
641 my $publicKey = $tfa_data->{publicKey};
642 raise("incomplete u2f setup")
643 if !defined($keyHandle) || !defined($publicKey);
2b4c98ab 644
f25628d3
WB
645 my $u2f = get_u2f_instance($rpcenv, $publicKey, $keyHandle);
646 $u2f->set_challenge($challenge);
647
648 my ($counter, $present) = $u2f->auth_verify($param->{response});
649 # Do we want to do anything with these?
650 } else {
651 # sanity check before handing off to the verification code:
652 my $keys = $tfa_data->{keys} or die "missing tfa keys\n";
653 my $config = $tfa_data->{config} or die "bad tfa entry\n";
654 PVE::AccessControl::verify_one_time_pw($tfa_type, $authuser, $keys, $config, $param->{response});
655 }
2b4c98ab
WB
656 };
657 if (my $err = $@) {
658 my $clientip = $rpcenv->get_client_ip() || '';
659 syslog('err', "authentication verification failure; rhost=$clientip user=$authuser msg=$err");
660 die PVE::Exception->new("authentication failure\n", code => 401);
661 }
662
2b4c98ab 663 return {
f25628d3 664 ticket => PVE::AccessControl::assemble_ticket($authuser),
2b4c98ab
WB
665 cap => &$compute_api_permission($rpcenv, $authuser),
666 }
667 }});
668
2c3a6c0a 6691;