Lines Matching full:authenticated
277 int authenticated = 0, partial = 0; in monitor_child_preauth() local
300 while (!authenticated) { in monitor_child_preauth()
306 authenticated = (monitor_read(ssh, pmonitor, in monitor_child_preauth()
315 if (authenticated && in monitor_child_preauth()
319 authenticated = 0; in monitor_child_preauth()
324 if (authenticated) { in monitor_child_preauth()
330 authenticated = 0; in monitor_child_preauth()
333 if (options.use_pam && authenticated) { in monitor_child_preauth()
341 authenticated = mm_answer_pam_account( in monitor_child_preauth()
348 auth_log(ssh, authenticated, partial, in monitor_child_preauth()
350 if (!partial && !authenticated) in monitor_child_preauth()
352 if (authenticated || partial) { in monitor_child_preauth()
368 "Authenticated invalid user"); in monitor_child_preauth()
369 fatal_f("authenticated invalid user"); in monitor_child_preauth()
377 debug_f("user %s authenticated by privileged process", authctxt->user); in monitor_child_preauth()
648 postauth = (authctxt && authctxt->pw && authctxt->authenticated); in mm_answer_state()
1004 int r, authenticated; in mm_answer_authpassword() local
1012 authenticated = options.password_authentication && in mm_answer_authpassword()
1017 if ((r = sshbuf_put_u32(m, authenticated)) != 0) in mm_answer_authpassword()
1024 debug3("%s: sending result %d", __func__, authenticated); in mm_answer_authpassword()
1025 debug3_f("sending result %d", authenticated); in mm_answer_authpassword()
1034 /* Causes monitor loop to terminate if authenticated */ in mm_answer_authpassword()
1035 return (authenticated); in mm_answer_authpassword()
1096 debug3_f("sending authenticated: %d", authok); in mm_answer_bsdauthrespond()
2053 int r, authenticated; in mm_answer_gss_userok() local
2059 authenticated = authctxt->valid && ssh_gssapi_userok(authctxt->user); in mm_answer_gss_userok()
2062 if ((r = sshbuf_put_u32(m, authenticated)) != 0) in mm_answer_gss_userok()
2065 debug3_f("sending result %d", authenticated); in mm_answer_gss_userok()
2073 /* Monitor loop will terminate if authenticated */ in mm_answer_gss_userok()
2074 return (authenticated); in mm_answer_gss_userok()