]> git.proxmox.com Git - pve-access-control.git/blobdiff - PVE/API2/AccessControl.pm
allow users to change their totp settings
[pve-access-control.git] / PVE / API2 / AccessControl.pm
index 916b1674bede08534d47270d64c893501d3dab7b..f3366968ce0f17aa8147045dc3f82b6bc6010cb1 100644 (file)
@@ -3,9 +3,14 @@ package PVE::API2::AccessControl;
 use strict;
 use warnings;
 
 use strict;
 use warnings;
 
+use JSON;
+use MIME::Base64;
+
+use PVE::Exception qw(raise raise_perm_exc);
 use PVE::SafeSyslog;
 use PVE::RPCEnvironment;
 use PVE::Cluster qw(cfs_read_file);
 use PVE::SafeSyslog;
 use PVE::RPCEnvironment;
 use PVE::Cluster qw(cfs_read_file);
+use PVE::Corosync;
 use PVE::RESTHandler;
 use PVE::AccessControl;
 use PVE::JSONSchema qw(get_standard_option);
 use PVE::RESTHandler;
 use PVE::AccessControl;
 use PVE::JSONSchema qw(get_standard_option);
@@ -14,6 +19,14 @@ use PVE::API2::User;
 use PVE::API2::Group;
 use PVE::API2::Role;
 use PVE::API2::ACL;
 use PVE::API2::Group;
 use PVE::API2::Role;
 use PVE::API2::ACL;
+use PVE::OTP;
+use PVE::Tools;
+
+my $u2f_available = 0;
+eval {
+    require PVE::U2F;
+    $u2f_available = 1;
+};
 
 use base qw(PVE::RESTHandler);
 
 
 use base qw(PVE::RESTHandler);
 
@@ -47,6 +60,9 @@ __PACKAGE__->register_method ({
     path => '', 
     method => 'GET',
     description => "Directory index.",
     path => '', 
     method => 'GET',
     description => "Directory index.",
+    permissions => { 
+       user => 'all',
+    },
     parameters => {
        additionalProperties => 0,
        properties => {},
     parameters => {
        additionalProperties => 0,
        properties => {},
@@ -77,41 +93,170 @@ __PACKAGE__->register_method ({
        }
 
        push @$res, { subdir => 'ticket' };
        }
 
        push @$res, { subdir => 'ticket' };
+       push @$res, { subdir => 'password' };
 
        return $res;
     }});
 
 
        return $res;
     }});
 
+
+my $verify_auth = sub {
+    my ($rpcenv, $username, $pw_or_ticket, $otp, $path, $privs) = @_;
+
+    my $normpath = PVE::AccessControl::normalize_path($path);
+
+    my $ticketuser;
+    if (($ticketuser = PVE::AccessControl::verify_ticket($pw_or_ticket, 1)) &&
+       ($ticketuser eq $username)) {
+       # valid ticket
+    } elsif (PVE::AccessControl::verify_vnc_ticket($pw_or_ticket, $username, $normpath, 1)) {
+       # valid vnc ticket
+    } else {
+       $username = PVE::AccessControl::authenticate_user($username, $pw_or_ticket, $otp);
+    }
+
+    my $privlist = [ PVE::Tools::split_list($privs) ];
+    if (!($normpath && scalar(@$privlist) && $rpcenv->check($username, $normpath, $privlist))) {
+       die "no permission ($path, $privs)\n";
+    }
+
+    return { username => $username };
+};
+
+my $create_ticket = sub {
+    my ($rpcenv, $username, $pw_or_ticket, $otp) = @_;
+
+    my ($ticketuser, $u2fdata);
+    if (($ticketuser = PVE::AccessControl::verify_ticket($pw_or_ticket, 1)) &&
+       ($ticketuser eq 'root@pam' || $ticketuser eq $username)) {
+       # valid ticket. Note: root@pam can create tickets for other users
+    } else {
+       ($username, $u2fdata) = PVE::AccessControl::authenticate_user($username, $pw_or_ticket, $otp);
+    }
+
+    my %extra;
+    my $ticket_data = $username;
+    if (defined($u2fdata)) {
+       my $u2f = get_u2f_instance($rpcenv, $u2fdata->@{qw(publicKey keyHandle)});
+       my $challenge = $u2f->auth_challenge()
+           or die "failed to get u2f challenge\n";
+       $challenge = decode_json($challenge);
+       $extra{U2FChallenge} = $challenge;
+       $ticket_data = "u2f!$username!$challenge->{challenge}";
+    }
+
+    my $ticket = PVE::AccessControl::assemble_ticket($ticket_data);
+    my $csrftoken = PVE::AccessControl::assemble_csrf_prevention_token($username);
+
+    return {
+       ticket => $ticket,
+       username => $username,
+       CSRFPreventionToken => $csrftoken,
+       %extra,
+    };
+};
+
+my $compute_api_permission = sub {
+    my ($rpcenv, $authuser) = @_;
+
+    my $usercfg = $rpcenv->{user_cfg};
+
+    my $res = {};
+    my $priv_re_map = {
+       vms => qr/VM\.|Permissions\.Modify/,
+       access => qr/(User|Group)\.|Permissions\.Modify/,
+       storage => qr/Datastore\.|Permissions\.Modify/,
+       nodes => qr/Sys\.|Permissions\.Modify/,
+       dc => qr/Sys\.Audit/,
+    };
+    map { $res->{$_} = {} } keys %$priv_re_map;
+
+    my $required_paths = ['/', '/nodes', '/access/groups', '/vms', '/storage'];
+
+    my $checked_paths = {};
+    foreach my $path (@$required_paths, keys %{$usercfg->{acl}}) {
+       next if $checked_paths->{$path};
+       $checked_paths->{$path} = 1;
+
+       my $path_perm = $rpcenv->permissions($authuser, $path);
+
+       my $toplevel = ($path =~ /^\/(\w+)/) ? $1 : 'dc';
+       if ($toplevel eq 'pool') {
+           foreach my $priv (keys %$path_perm) {
+               if ($priv =~ m/^VM\./) {
+                   $res->{vms}->{$priv} = 1;
+               } elsif ($priv =~ m/^Datastore\./) {
+                   $res->{storage}->{$priv} = 1;
+               } elsif ($priv eq 'Permissions.Modify') {
+                   $res->{storage}->{$priv} = 1;
+                   $res->{vms}->{$priv} = 1;
+               }
+           }
+       } else {
+           my $priv_regex = $priv_re_map->{$toplevel} // next;
+           foreach my $priv (keys %$path_perm) {
+               next if $priv !~ m/^($priv_regex)/;
+               $res->{$toplevel}->{$priv} = 1;
+           }
+       }
+    }
+
+    return $res;
+};
+
+__PACKAGE__->register_method ({
+    name => 'get_ticket', 
+    path => 'ticket', 
+    method => 'GET',
+    permissions => { user => 'world' },
+    description => "Dummy. Useful for formatters which want to provide a login page.",
+    parameters => {
+       additionalProperties => 0,
+    },
+    returns => { type => "null" },
+    code => sub { return undef; }});
+  
 __PACKAGE__->register_method ({
     name => 'create_ticket', 
     path => 'ticket', 
     method => 'POST',
 __PACKAGE__->register_method ({
     name => 'create_ticket', 
     path => 'ticket', 
     method => 'POST',
-    permissions => { user => 'world' },
+    permissions => { 
+       description => "You need to pass valid credientials.",
+       user => 'world' 
+    },
     protected => 1, # else we can't access shadow files
     protected => 1, # else we can't access shadow files
-    description => "Create authentication ticket.",
+    description => "Create or verify authentication ticket.",
     parameters => {
        additionalProperties => 0,
        properties => {
            username => {
     parameters => {
        additionalProperties => 0,
        properties => {
            username => {
-               description => "User name",
-               type => 'string',
-               maxLength => 64,
+               description => "User name",
+               type => 'string',
+               maxLength => 64,
+               completion => \&PVE::AccessControl::complete_username,
            },
            realm =>  get_standard_option('realm', {
                description => "You can optionally pass the realm using this parameter. Normally the realm is simply added to the username <username>\@<relam>.",
            },
            realm =>  get_standard_option('realm', {
                description => "You can optionally pass the realm using this parameter. Normally the realm is simply added to the username <username>\@<relam>.",
-               optional => 1}),
+               optional => 1,
+               completion => \&PVE::AccessControl::complete_realm,
+           }),
            password => { 
                description => "The secret password. This can also be a valid ticket.",
                type => 'string',
            },
            password => { 
                description => "The secret password. This can also be a valid ticket.",
                type => 'string',
            },
+           otp => {
+               description => "One-time password for Two-factor authentication.",
+               type => 'string',
+               optional => 1,
+           },
            path => {
            path => {
-               description => "Only create ticket if user have access 'privs' on 'path'",
+               description => "Verify ticket, and check if user have access 'privs' on 'path'",
                type => 'string',
                requires => 'privs',
                optional => 1,
                maxLength => 64,
            },
            privs => { 
                type => 'string',
                requires => 'privs',
                optional => 1,
                maxLength => 64,
            },
            privs => { 
-               description => "Only create ticket if user have access 'privs' on 'path'",
+               description => "Verify ticket, and check if user have access 'privs' on 'path'",
                type => 'string' , format => 'pve-priv-list',
                requires => 'path',
                optional => 1,
                type => 'string' , format => 'pve-priv-list',
                requires => 'path',
                optional => 1,
@@ -122,9 +267,11 @@ __PACKAGE__->register_method ({
     returns => {
        type => "object",
        properties => {
     returns => {
        type => "object",
        properties => {
-           ticket => { type => 'string' },
            username => { type => 'string' },
            username => { type => 'string' },
-           CSRFPreventionToken => { type => 'string' },
+           ticket => { type => 'string', optional => 1},
+           CSRFPreventionToken => { type => 'string', optional => 1 },
+           clustername => { type => 'string', optional => 1 },
+           # cap => computed api permissions, unless there's a u2f challenge
        }
     },
     code => sub {
        }
     },
     code => sub {
@@ -134,47 +281,375 @@ __PACKAGE__->register_method ({
        $username .= "\@$param->{realm}" if $param->{realm};
 
        my $rpcenv = PVE::RPCEnvironment::get();
        $username .= "\@$param->{realm}" if $param->{realm};
 
        my $rpcenv = PVE::RPCEnvironment::get();
-       my $clientip = $rpcenv->get_client_ip() || '';
 
 
-       my $ticket;
-       my $token;
+       my $res;
        eval {
        eval {
+           # test if user exists and is enabled
+           $rpcenv->check_user_enabled($username);
 
            if ($param->{path} && $param->{privs}) {
 
            if ($param->{path} && $param->{privs}) {
-               my $privs = [ PVE::Tools::split_list($param->{privs}) ];
-               my $path = PVE::AccessControl::normalize_path($param->{path});
-               if (!($path && scalar(@$privs) && $rpcenv->check($username, $path, $privs))) {
-                   die "no permission ($param->{path}, $param->{privs})\n";
-               }
-           }
-
-           my $tmp;
-           if (($tmp = PVE::AccessControl::verify_ticket($param->{password}, 1)) &&
-               ($tmp eq 'root@pam' || $tmp eq $username)) {
-               # got valid ticket
-               # Note: root@pam can create tickets for other users
-               
-               # test if user exists and is enabled
-               my $usercfg = cfs_read_file('user.cfg');
-               die "no such user ('$username')\n" if !user_enabled($usercfg, $username);
+               $res = &$verify_auth($rpcenv, $username, $param->{password}, $param->{otp},
+                                    $param->{path}, $param->{privs});
            } else {
            } else {
-               $username = PVE::AccessControl::authenticate_user($username, $param->{password});
+               $res = &$create_ticket($rpcenv, $username, $param->{password}, $param->{otp});
            }
            }
-           $ticket = PVE::AccessControl::assemble_ticket($username);
-           $token = PVE::AccessControl::assemble_csrf_prevention_token($username);
        };
        if (my $err = $@) {
        };
        if (my $err = $@) {
+           my $clientip = $rpcenv->get_client_ip() || '';
            syslog('err', "authentication failure; rhost=$clientip user=$username msg=$err");
            syslog('err', "authentication failure; rhost=$clientip user=$username msg=$err");
-           die $err;
+           # do not return any info to prevent user enumeration attacks
+           die PVE::Exception->new("authentication failure\n", code => 401);
+       }
+
+       $res->{cap} = &$compute_api_permission($rpcenv, $username)
+           if !defined($res->{U2FChallenge});
+
+       if (PVE::Corosync::check_conf_exists(1)) {
+           if ($rpcenv->check($username, '/', ['Sys.Audit'], 1)) {
+               eval {
+                   my $conf = cfs_read_file('corosync.conf');
+                   my $totem = PVE::Corosync::totem_config($conf);
+                   if ($totem->{cluster_name}) {
+                       $res->{clustername} = $totem->{cluster_name};
+                   }
+               };
+               warn "$@\n" if $@;
+           }
        }
 
        PVE::Cluster::log_msg('info', 'root@pam', "successful auth for user '$username'");
 
        }
 
        PVE::Cluster::log_msg('info', 'root@pam', "successful auth for user '$username'");
 
-       return {
-           ticket => $ticket,
-           username => $username,
-           CSRFPreventionToken => $token,
+       return $res;
+    }});
+
+__PACKAGE__->register_method ({
+    name => 'change_password',
+    path => 'password', 
+    method => 'PUT',
+    permissions => { 
+       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.",
+       check => [ 'or', 
+                  ['userid-param', 'self'],
+                  [ 'and',
+                    [ 'userid-param', 'Realm.AllocateUser'],
+                    [ 'userid-group', ['User.Modify']]
+                  ]
+           ],
+    },
+    protected => 1, # else we can't access shadow files
+    description => "Change user password.",
+    parameters => {
+       additionalProperties => 0,
+       properties => {
+           userid => get_standard_option('userid-completed'),
+           password => { 
+               description => "The new password.",
+               type => 'string',
+               minLength => 5, 
+               maxLength => 64,
+           },
+       }
+    },
+    returns => { type => "null" },
+    code => sub {
+       my ($param) = @_;
+
+       my $rpcenv = PVE::RPCEnvironment::get();
+       my $authuser = $rpcenv->get_user();
+
+       my ($userid, $ruid, $realm) = PVE::AccessControl::verify_username($param->{userid});
+
+       $rpcenv->check_user_exist($userid);
+
+       if ($authuser eq 'root@pam') {
+           # OK - root can change anything
+       } else {
+           if ($authuser eq $userid) {
+               $rpcenv->check_user_enabled($userid);
+               # OK - each user can change its own password
+           } else {
+               # only root may change root password
+               raise_perm_exc() if $userid eq 'root@pam';
+               # do not allow to change system user passwords
+               raise_perm_exc() if $realm eq 'pam';
+           }
+       }
+
+       PVE::AccessControl::domain_set_password($realm, $ruid, $param->{password});
+
+       PVE::Cluster::log_msg('info', 'root@pam', "changed password for user '$userid'");
+
+       return undef;
+    }});
+
+sub get_u2f_config() {
+    die "u2f support not available\n" if !$u2f_available;
+
+    my $dc = cfs_read_file('datacenter.cfg');
+    my $u2f = $dc->{u2f};
+    die "u2f not configured in datacenter.cfg\n" if !$u2f;
+    $u2f = PVE::JSONSchema::parse_property_string($PVE::Cluster::u2f_format, $u2f);
+    return $u2f;
+}
+
+sub get_u2f_instance {
+    my ($rpcenv, $publicKey, $keyHandle) = @_;
+
+    # We store the public key base64 encoded (as the api provides it in binary)
+    $publicKey = decode_base64($publicKey) if defined($publicKey);
+
+    my $u2fconfig = get_u2f_config();
+    my $u2f = PVE::U2F->new();
+
+    # via the 'Host' header (in case a node has multiple hosts available).
+    my $origin = $u2fconfig->{origin};
+    if (!defined($origin)) {
+       $origin = $rpcenv->get_request_host(1);
+       if ($origin) {
+           $origin = "https://$origin";
+       } else {
+           die "failed to figure out u2f origin\n";
+       }
+    }
+
+    my $appid = $u2fconfig->{appid} // $origin;
+    $u2f->set_appid($appid);
+    $u2f->set_origin($origin);
+    $u2f->set_publicKey($publicKey) if defined($publicKey);
+    $u2f->set_keyHandle($keyHandle) if defined($keyHandle);
+    return $u2f;
+}
+
+sub verify_user_tfa_config {
+    my ($type, $tfa_cfg, $value) = @_;
+
+    if (!defined($type)) {
+       die "missing tfa 'type'\n";
+    }
+
+    if ($type ne 'oath') {
+       die "invalid type for custom tfa authentication\n";
+    }
+
+    my $secret = $tfa_cfg->{keys}
+       or die "missing TOTP secret\n";
+    $tfa_cfg = $tfa_cfg->{config};
+    # Copy the hash to verify that we have no unexpected keys without modifying the original hash.
+    $tfa_cfg = {%$tfa_cfg};
+
+    # We can only verify 1 secret but oath_verify_otp allows multiple:
+    if (scalar(PVE::Tools::split_list($secret)) != 1) {
+       die "only exactly one secret key allowed\n";
+    }
+
+    my $digits = delete($tfa_cfg->{digits}) // 6;
+    my $step = delete($tfa_cfg->{step}) // 30;
+    # Maybe also this?
+    #     my $algorithm = delete($tfa_cfg->{algorithm}) // 'sha1';
+
+    if (length(my $more = join(', ', keys %$tfa_cfg))) {
+       die "unexpected tfa config keys: $more\n";
+    }
+
+    PVE::OTP::oath_verify_otp($value, $secret, $step, $digits);
+}
+
+__PACKAGE__->register_method ({
+    name => 'change_tfa',
+    path => 'tfa',
+    method => 'PUT',
+    permissions => {
+       description => 'A user can change their own u2f or totp token.',
+       check => [ 'or',
+                  ['userid-param', 'self'],
+                  [ 'and',
+                    [ 'userid-param', 'Realm.AllocateUser'],
+                    [ 'userid-group', ['User.Modify']]
+                  ]
+           ],
+    },
+    protected => 1, # else we can't access shadow files
+    description => "Change user u2f authentication.",
+    parameters => {
+       additionalProperties => 0,
+       properties => {
+           userid => get_standard_option('userid', {
+               completion => \&PVE::AccessControl::complete_username,
+           }),
+           password => {
+               optional => 1, # Only required if not root@pam
+               description => "The current password.",
+               type => 'string',
+               minLength => 5,
+               maxLength => 64,
+           },
+           action => {
+               description => 'The action to perform',
+               type => 'string',
+               enum => [qw(delete new confirm)],
+           },
+           response => {
+               optional => 1,
+               description =>
+                   'Either the the response to the current u2f registration challenge,'
+                   .' or, when adding TOTP, the currently valid TOTP value.',
+               type => 'string',
+           },
+           key => {
+               optional => 1,
+               description => 'When adding TOTP, the shared secret value.',
+               type => 'string',
+               # This is what pve-common's PVE::OTP::oath_verify_otp accepts.
+               # Should we move this to pve-common's JSONSchema as a named format?
+               pattern => qr/[A-Z2-7=]{16}|[A-Fa-f0-9]{40}/,
+           },
+           config => {
+               optional => 1,
+               description => 'A TFA configuration. This must currently be of type TOTP of not set at all.',
+               type => 'string',
+               format => 'pve-tfa-config',
+               maxLength => 128,
+           },
+       }
+    },
+    returns => { type => 'object' },
+    code => sub {
+       my ($param) = @_;
+
+       my $rpcenv = PVE::RPCEnvironment::get();
+       my $authuser = $rpcenv->get_user();
+
+       my $action = delete $param->{action};
+       my $response = delete $param->{response};
+       my $password = delete($param->{password}) // '';
+       my $key = delete($param->{key});
+       my $config = delete($param->{config});
+
+       my ($userid, $ruid, $realm) = PVE::AccessControl::verify_username($param->{userid});
+       $rpcenv->check_user_exist($userid);
+
+       # Only root may modify root
+       raise_perm_exc() if $userid eq 'root@pam' && $authuser ne 'root@pam';
+
+       # Regular users need to confirm their password to change u2f settings.
+       if ($authuser ne 'root@pam') {
+           raise_param_exc('password' => 'password is required to modify u2f data')
+               if !defined($password);
+           my $domain_cfg = cfs_read_file('domains.cfg');
+           my $cfg = $domain_cfg->{ids}->{$realm};
+           die "auth domain '$realm' does not exists\n" if !$cfg;
+           my $plugin = PVE::Auth::Plugin->lookup($cfg->{type});
+           $plugin->authenticate_user($cfg, $realm, $ruid, $password);
+       }
+
+       if ($action eq 'delete') {
+           PVE::AccessControl::user_set_tfa($userid, $realm, undef, undef);
+           PVE::Cluster::log_msg('info', $authuser, "deleted u2f data for user '$userid'");
+       } elsif ($action eq 'new') {
+           if (defined($config)) {
+               $config = PVE::Auth::Plugin::parse_tfa_config($config);
+               my $type = delete($config->{type});
+               my $tfa_cfg = {
+                   keys => $key,
+                   config => $config,
+               };
+               verify_user_tfa_config($type, $tfa_cfg, $response);
+               PVE::AccessControl::user_set_tfa($userid, $realm, $type, $tfa_cfg);
+           } else {
+               # The default is U2F:
+               my $u2f = get_u2f_instance($rpcenv);
+               my $challenge = $u2f->registration_challenge()
+                   or raise("failed to get u2f challenge");
+               $challenge = decode_json($challenge);
+               PVE::AccessControl::user_set_tfa($userid, $realm, 'u2f', $challenge);
+               return $challenge;
+           }
+       } elsif ($action eq 'confirm') {
+           raise_param_exc('response' => "confirm action requires the 'response' parameter to be set")
+               if !defined($response);
+
+           my ($type, $u2fdata) = PVE::AccessControl::user_get_tfa($userid, $realm);
+           raise("no u2f data available")
+               if (!defined($type) || $type ne 'u2f');
+
+           my $challenge = $u2fdata->{challenge}
+               or raise("no active challenge");
+
+           my $u2f = get_u2f_instance($rpcenv);
+           $u2f->set_challenge($challenge);
+           my ($keyHandle, $publicKey) = $u2f->registration_verify($response);
+           PVE::AccessControl::user_set_tfa($userid, $realm, 'u2f', {
+               keyHandle => $keyHandle,
+               publicKey => encode_base64($publicKey, ''),
+           });
+       } else {
+           die "invalid action: $action\n";
+       }
+
+       return {};
+    }});
+
+__PACKAGE__->register_method({
+    name => 'verify_tfa',
+    path => 'tfa',
+    method => 'POST',
+    permissions => { user => 'all' },
+    protected => 1, # else we can't access shadow files
+    description => 'Finish a u2f challenge.',
+    parameters => {
+       additionalProperties => 0,
+       properties => {
+           response => {
+               type => 'string',
+               description => 'The response to the current authentication challenge.',
+           },
+       }
+    },
+    returns => {
+       type => 'object',
+       properties => {
+           ticket => { type => 'string' },
+           # cap
+       }
+    },
+    code => sub {
+       my ($param) = @_;
+
+       my $rpcenv = PVE::RPCEnvironment::get();
+       my $challenge = $rpcenv->get_u2f_challenge()
+          or raise('no active challenge');
+       my $authuser = $rpcenv->get_user();
+       my ($username, undef, $realm) = PVE::AccessControl::verify_username($authuser);
+
+       my ($tfa_type, $u2fdata) = PVE::AccessControl::user_get_tfa($username, $realm);
+       if (!defined($tfa_type) || $tfa_type ne 'u2f') {
+           raise('no u2f data available');
+       }
+
+       my $keyHandle = $u2fdata->{keyHandle};
+       my $publicKey = $u2fdata->{publicKey};
+       raise("incomplete u2f setup")
+           if !defined($keyHandle) || !defined($publicKey);
+
+       my $u2f = get_u2f_instance($rpcenv, $publicKey, $keyHandle);
+       $u2f->set_challenge($challenge);
+
+       eval {
+           my ($counter, $present) = $u2f->auth_verify($param->{response});
+           # Do we want to do anything with these?
        };
        };
+       if (my $err = $@) {
+           my $clientip = $rpcenv->get_client_ip() || '';
+           syslog('err', "authentication verification failure; rhost=$clientip user=$authuser msg=$err");
+           die PVE::Exception->new("authentication failure\n", code => 401);
+       }
+
+       # create a new ticket for the user:
+       my $ticket_data = "u2f!$authuser!verified";
+       return {
+           ticket => PVE::AccessControl::assemble_ticket($ticket_data),
+           cap => &$compute_api_permission($rpcenv, $authuser),
+       }
     }});
 
 1;
     }});
 
 1;