HomeSort by relevance Sort by last modified time
    Searched refs:Authctxt (Results 26 - 37 of 37) sorted by null

12

  /external/openssh/
auth2-hostbased.c 57 userauth_hostbased(Authctxt *authctxt)
67 if (!authctxt->valid) {
104 authctxt->service;
109 buffer_put_cstring(&b, authctxt->user);
121 if (PRIVSEP(hostbased_key_allowed(authctxt->pw, cuser, chost, key)) &&
auth-pam.c 232 static Authctxt *sshpam_authctxt = NULL;
280 fatal("%s: PAM authctxt not initialized", __func__);
461 fatal("%s: PAM authctxt not initialized", __func__);
621 sshpam_init(Authctxt *authctxt)
624 const char *pam_rhost, *pam_user, *user = authctxt->user;
639 sshpam_authctxt = authctxt;
672 sshpam_init_ctx(Authctxt *authctxt)
686 if (sshpam_init(authctxt) == -1)
    [all...]
audit-bsm.c 114 extern Authctxt *the_authctxt;
auth-rsa.c 296 auth_rsa(Authctxt *authctxt, BIGNUM *client_n)
300 struct passwd *pw = authctxt->pw;
303 if (!authctxt->valid)
session.c 127 static void do_authenticated1(Authctxt *);
128 static void do_authenticated2(Authctxt *);
271 do_authenticated(Authctxt *authctxt)
273 setproctitle("%s", authctxt->pw->pw_name);
282 do_authenticated2(authctxt);
284 do_authenticated1(authctxt);
286 do_cleanup(authctxt);
296 do_authenticated1(Authctxt *authctxt)
    [all...]
auth2-pubkey.c 68 userauth_pubkey(Authctxt *authctxt)
78 if (!authctxt->valid) {
124 buffer_put_cstring(&b, authctxt->user);
128 authctxt->service);
142 if (PRIVSEP(user_key_allowed(authctxt->pw, key)) &&
160 if (PRIVSEP(user_key_allowed(authctxt->pw, key))) {
166 authctxt->postponed = 1;
monitor_wrap.c 343 mm_auth_password(Authctxt *authctxt, char *password)
774 mm_start_pam(Authctxt *authctxt)
817 mm_sshpam_init_ctx(Authctxt *authctxt)
824 buffer_put_cstring(&m, authctxt->user);
835 return (authctxt);
1296 mm_auth2_jpake_get_pwdata(Authctxt *authctxt, BIGNUM **s
    [all...]
auth.c 254 auth_log(Authctxt *authctxt, int authenticated, char *method, char *info)
259 if (use_privsep && !mm_is_monitor() && !authctxt->postponed)
264 !authctxt->valid ||
265 authctxt->failures >= options.max_authtries / 2 ||
269 if (authctxt->postponed)
277 authctxt->valid ? "" : "invalid user ",
278 authctxt->user,
284 if (authenticated == 0 && !authctxt->postponed &&
288 record_failed_login(authctxt->user
    [all...]
sshd.c 244 Authctxt *the_authctxt = NULL;
624 privsep_preauth(Authctxt *authctxt)
646 monitor_child_preauth(authctxt, pmonitor);
687 privsep_postauth(Authctxt *authctxt)
694 if (authctxt->pw->pw_uid == 0 || options.use_login) {
729 do_setusercontext(authctxt->pw);
1326 Authctxt *authctxt; local
    [all...]
serverloop.c 87 extern Authctxt *the_authctxt;
819 server_loop2(Authctxt *authctxt)
    [all...]
monitor.c 192 static Authctxt *authctxt; variable
352 monitor_child_preauth(Authctxt *_authctxt, struct monitor *pmonitor)
363 authctxt = _authctxt;
364 memset(authctxt, 0, sizeof(*authctxt));
366 authctxt->loginmsg = &loginmsg;
388 if (authctxt->pw->pw_uid == 0 &&
406 auth_log(authctxt, authenticated, auth_method,
409 authctxt->failures++
    [all...]
  /external/openssh/openbsd-compat/
port-aix.c 174 sys_auth_passwd(Authctxt *ctxt, const char *password)

Completed in 579 milliseconds

12