X-Git-Url: https://git.proxmox.com/?p=pve-access-control.git;a=blobdiff_plain;f=src%2FPVE%2FAPI2%2FTFA.pm;h=31e57415169407c9bbc63f47af448c44724c21f1;hp=be696e1f19ee891edc63af6b512c181b49497f92;hb=dd9e95b18773b97131ab65d76110f1c4489bf9f6;hpb=280d0edd2cfc3916bc8c74fc2f2e7b9a6ffc6337 diff --git a/src/PVE/API2/TFA.pm b/src/PVE/API2/TFA.pm index be696e1..31e5741 100644 --- a/src/PVE/API2/TFA.pm +++ b/src/PVE/API2/TFA.pm @@ -101,7 +101,7 @@ my $TFA_UPDATE_INFO_SCHEMA = { my sub root_permission_check : prototype($$$$) { my ($rpcenv, $authuser, $userid, $password) = @_; - ($userid, my $ruid, my $realm) = PVE::AccessControl::verify_username($userid); + ($userid, undef, my $realm) = PVE::AccessControl::verify_username($userid); $rpcenv->check_user_exist($userid); raise_perm_exc() if $userid eq 'root@pam' && $authuser ne 'root@pam'; @@ -111,11 +111,14 @@ my sub root_permission_check : prototype($$$$) { raise_param_exc({ 'password' => 'password is required to modify TFA data' }) if !defined($password); + ($authuser, my $auth_username, my $auth_realm) = + PVE::AccessControl::verify_username($authuser); + my $domain_cfg = cfs_read_file('domains.cfg'); - my $cfg = $domain_cfg->{ids}->{$realm}; - die "auth domain '$realm' does not exist\n" if !$cfg; + my $cfg = $domain_cfg->{ids}->{$auth_realm}; + die "auth domain '$auth_realm' does not exist\n" if !$cfg; my $plugin = PVE::Auth::Plugin->lookup($cfg->{type}); - $plugin->authenticate_user($cfg, $realm, $ruid, $password); + $plugin->authenticate_user($cfg, $auth_realm, $auth_username, $password); } return wantarray ? ($userid, $realm) : $userid;