client-common.c revision e93184a9055c2530366dfe617e07199603c399dd
/* Copyright (c) 2002-2016 Dovecot authors, see the included COPYING file */
#include "login-common.h"
#include "array.h"
#include "hostpid.h"
#include "llist.h"
#include "istream.h"
#include "ostream.h"
#include "iostream-rawlog.h"
#include "process-title.h"
#include "buffer.h"
#include "str.h"
#include "base64.h"
#include "str-sanitize.h"
#include "safe-memset.h"
#include "var-expand.h"
#include "master-interface.h"
#include "master-service.h"
#include "master-service-ssl-settings.h"
#include "master-auth.h"
#include "auth-client.h"
#include "dsasl-client.h"
#include "login-proxy.h"
#include "ssl-proxy.h"
#include "client-common.h"
static unsigned int clients_count = 0;
{
}
{
return old_hook;
}
{
const char *user_reason, *destroy_reason;
unsigned int secs;
if (client->master_tag != 0) {
user_reason = "Timeout while finishing login.";
"Timeout while finishing login (waited %u secs)", secs);
"Disconnected for inactivity during authentication.";
"Disconnected: Inactivity during authentication";
user_reason = "Timeout while finishing login.";
"proxy: Logging in to %s:%u timed out "
"(state=%u, duration=%us)",
} else {
user_reason = "Disconnected for inactivity.";
destroy_reason = "Disconnected: Inactivity";
}
}
{
if (login_rawlog_dir != NULL) {
}
}
{
const char *const *net;
unsigned int bits;
return FALSE;
i_error("login_trusted_networks: "
"Invalid network '%s'", *net);
break;
}
return TRUE;
}
return FALSE;
}
struct client *
const struct master_service_connection *conn,
const struct login_settings *set,
const struct master_service_ssl_settings *ssl_set,
void **other_sets)
{
if (last_client == NULL)
else
return client;
}
{
return;
}
if (last_client == client)
if (client->master_tag != 0) {
} else {
}
}
}
/* as soon as this connection is done with proxying
(or whatever), the process will die. there's no need for
authentication anymore, so close the connection.
do this only with initial service_count=1, in case there
are other clients with pending authentications */
}
}
{
}
{
"Internal login failure. "
"Refer to server log for more information.");
"Internal login failure (pid=%s id=%u)",
}
{
}
{
return TRUE;
i_assert(clients_count > 0);
return FALSE;
}
void client_destroy_oldest(void)
{
if (last_client == NULL) {
/* we have no clients */
return;
}
/* destroy the last client that hasn't successfully authenticated yet.
this is usually the last client, but don't kill it if it's just
waiting for master to finish its job. */
if (client->master_tag == 0)
break;
}
"Connection queue full");
}
void clients_destroy_all_reason(const char *reason)
{
}
}
void clients_destroy_all(void)
{
clients_destroy_all_reason("Disconnected: Shutting down");
}
{
int fd_ssl;
return;
if (fd_ssl == -1) {
"TLS initialization failed.");
"Disconnected: TLS initialization failed.");
return;
}
}
{
int ret;
return 1;
}
if (ret > 0) {
}
return 1;
}
{
return;
}
if (!client_is_tls_enabled(client)) {
return;
}
/* remove input handler, SSL proxy gives us a new fd. we also have to
remove it in case we have to wait for buffer to be flushed */
/* uncork the old fd */
/* the buffer has to be flushed */
} else {
}
}
unsigned int clients_get_count(void)
{
return clients_count;
}
{
unsigned int i;
return client->session_id;
i_fatal("gettimeofday(): %m");
/* add lowest 48 bits of the timestamp. this gives us a bit less than
9 years until it wraps */
for (i = 0; i < 48; i += 8)
else
return client->session_id;
}
static struct var_expand_table login_var_expand_empty_tab[] = {
};
static void
{
unsigned int i;
for (i = 0; i < 3; i++)
}
static const struct var_expand_table *
{
struct var_expand_table *tab;
sizeof(login_var_expand_empty_tab));
} else {
const char *ssl_state =
"TLS" : "TLS handshaking";
const char *ssl_error =
}
else {
}
else {
}
return tab;
}
static bool have_username_key(const char *str)
{
char key;
str++;
return TRUE;
}
}
return FALSE;
}
static const char *
{
const char *field_name = data;
unsigned int i, field_name_len;
return NULL;
field_name_len) == 0 &&
}
return NULL;
}
static const char *
{
};
static const struct var_expand_func_table func_table[] = {
{ "passdb", client_var_expand_func_passdb },
};
const struct var_expand_table *var_expand_table;
struct var_expand_table *tab;
char *const *e;
unsigned int pos;
func_table, client);
if (have_username_key(*e)) {
/* username is added even if it's empty */
} else {
str_truncate(str2, 0);
/* empty %variables, don't add */
continue;
}
}
}
str_truncate(str, 0);
}
{
T_BEGIN {
} T_END;
}
{
T_BEGIN {
} T_END;
}
{
T_BEGIN {
} T_END;
}
{
}
{
return "(client sent an invalid cert)";
return "(client didn't send a cert)";
}
if (!client->notified_auth_ready)
return t_strdup_printf(
"(disconnected before auth was ready, waited %u secs)",
if (client->auth_attempts == 0) {
return t_strdup_printf("(no auth attempts in %u secs)",
}
return "(tried to use disallowed plaintext auth)";
return "(cert required, client didn't start TLS)";
return "(tried to use unsupported auth mechanism)";
return t_strdup_printf("(client didn't finish SASL auth, "
"waited %u secs)", auth_secs);
}
return t_strdup_printf("(disconnected while authenticating, "
"waited %u secs)", auth_secs);
}
return t_strdup_printf("(disconnected while finishing login, "
"waited %u secs)", auth_secs);
}
return "(aborted authentication)";
if (client->auth_process_comm_fail)
return "(auth process communication failure)";
if (client->proxy_auth_failed)
return "(proxy dest auth failed)";
if (client->auth_successes > 0) {
return t_strdup_printf("(internal failure, %u successful auths)",
}
if (client->auth_user_disabled)
return "(user disabled)";
if (client->auth_pass_expired)
return "(password expired)";
return t_strdup_printf("(auth failed, %u attempts in %u secs)",
}
const char *text)
{
if (!client->notified_disconnect) {
}
}
{
if (!client->notified_auth_ready) {
}
}
{
}
{
/* either disconnection or buffer full. in either case we want
this connection destroyed. however destroying it here might
break things if client is still tried to be accessed without
being referenced.. */
}
}
{
}
{
case -2:
/* buffer full */
"Input buffer full, aborting");
return FALSE;
case -1:
/* disconnected */
return FALSE;
case 0:
/* nothing new read */
return TRUE;
default:
/* something was read */
return TRUE;
}
}
{
}