director-request.c revision c3c9d0258e7d11c97f73e0f7fbb6b45a88a7e545
/* Copyright (c) 2010-2012 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "ioloop.h"
#include "array.h"
#include "str.h"
#include "mail-host.h"
#include "user-directory.h"
#include "director.h"
#include "director-request.h"
#define DIRECTOR_REQUEST_TIMEOUT_SECS 30
#define RING_NOCONN_WARNING_DELAY_MSECS (2*1000)
struct director_request {
struct director *dir;
time_t create_time;
unsigned int username_hash;
director_request_callback *callback;
void *context;
};
static const char *
director_request_get_timeout_error(struct director_request *request)
{
string_t *str = t_str_new(128);
struct user *user;
unsigned int secs;
str_printfa(str, "Timeout - queued for %u secs (",
(unsigned int)(ioloop_time - request->create_time));
if (request->dir->ring_last_sync_time == 0)
str_append(str, "Ring has never been synced");
else {
secs =ioloop_time - request->dir->ring_last_sync_time;
if (request->dir->ring_synced)
str_printfa(str, "Ring synced for %u secs", secs);
else
str_printfa(str, "Ring not synced for %u secs", secs);
}
user = user_directory_lookup(request->dir->users,
request->username_hash);
if (user != NULL) {
if (user->weak)
str_append(str, ", weak user");
str_printfa(str, ", ts=%u", user->timestamp);
}
str_append_c(str, ')');
return str_c(str);
}
static void director_request_timeout(struct director *dir)
{
struct director_request **requestp, *request;
const char *errormsg;
while (array_count(&dir->pending_requests) > 0) {
requestp = array_idx_modifiable(&dir->pending_requests, 0);
request = *requestp;
if (request->create_time +
DIRECTOR_REQUEST_TIMEOUT_SECS > ioloop_time)
break;
array_delete(&dir->pending_requests, 0, 1);
errormsg = director_request_get_timeout_error(request);
T_BEGIN {
request->callback(NULL, errormsg, request->context);
} T_END;
i_free(request);
}
if (array_count(&dir->pending_requests) == 0 && dir->to_request != NULL)
timeout_remove(&dir->to_request);
}
void director_request(struct director *dir, const char *username,
director_request_callback *callback, void *context)
{
struct director_request *request;
unsigned int username_hash =
user_directory_get_username_hash(dir->users, username);
request = i_new(struct director_request, 1);
request->dir = dir;
request->create_time = ioloop_time;
request->username_hash = username_hash;
request->callback = callback;
request->context = context;
if (director_request_continue(request))
return;
/* need to queue it */
if (dir->to_request == NULL) {
dir->to_request =
timeout_add(DIRECTOR_REQUEST_TIMEOUT_SECS * 1000,
director_request_timeout, dir);
}
array_append(&dir->pending_requests, &request, 1);
}
static void ring_noconn_warning(struct director *dir)
{
if (!dir->ring_handshaked) {
i_warning("Delaying all requests "
"until all directors have connected");
} else {
i_warning("Delaying new user requests until ring is synced");
}
dir->ring_handshake_warning_sent = TRUE;
timeout_remove(&dir->to_handshake_warning);
}
static void ring_log_delayed_warning(struct director *dir)
{
if (dir->ring_handshake_warning_sent ||
dir->to_handshake_warning != NULL)
return;
dir->to_handshake_warning = timeout_add(RING_NOCONN_WARNING_DELAY_MSECS,
ring_noconn_warning, dir);
}
static bool director_request_existing(struct director *dir, struct user *user)
{
struct mail_host *host;
if (user->kill_state != USER_KILL_STATE_NONE) {
/* delay processing this user's connections until
its existing connections have been killed */
return FALSE;
}
if (user->weak) {
/* wait for user to become non-weak */
return FALSE;
}
if (!user_directory_user_is_near_expiring(dir->users, user))
return TRUE;
/* user is close to being expired. another director may have
already expired it. */
host = mail_host_get_by_hash(dir->mail_hosts, user->username_hash);
if (!dir->ring_synced) {
/* try again later once ring is synced */
return FALSE;
}
if (user->host == host) {
/* doesn't matter, other directors would
assign the user the same way regardless */
return TRUE;
}
/* We have to worry about two separate timepoints in here:
a) some directors think the user isn't expiring, and
others think the user is near expiring
b) some directors think the user is near expiring, and
others think the user has already expired
What we don't have to worry about is:
!c) some directors think the user isn't expiring, and
others think the user has already expired
If !c) happens, the user might get redirected to different backends.
We'll use a large enough timeout between a) and b) states, so that
!c) should never happen.
So what we'll do here is:
1. Send a USER-WEAK notification to all directors with the new host.
2. Each director receiving USER-WEAK refreshes the user's timestamp
and host, but marks the user as being weak.
3. Once USER-WEAK has reached all directors, a real USER update is
sent, which removes the weak-flag.
4. If a director ever receives a USER update for a weak user, the
USER update overrides the host and removes the weak-flag.
5. Director doesn't let any weak user log in, until the weak-flag
gets removed.
*/
if (dir->ring_min_version < DIRECTOR_VERSION_WEAK_USERS) {
/* weak users not supported by ring currently */
return TRUE;
} else {
user->weak = TRUE;
director_update_user_weak(dir, dir->self_host, NULL, user);
return FALSE;
}
}
bool director_request_continue(struct director_request *request)
{
struct director *dir = request->dir;
struct mail_host *host;
struct user *user;
if (!dir->ring_handshaked) {
/* delay requests until ring handshaking is complete */
ring_log_delayed_warning(dir);
return FALSE;
}
user = user_directory_lookup(dir->users, request->username_hash);
if (user != NULL) {
if (!director_request_existing(dir, user))
return FALSE;
user_directory_refresh(dir->users, user);
} else {
if (!dir->ring_synced) {
/* delay adding new users until ring is again synced */
ring_log_delayed_warning(dir);
return FALSE;
}
host = mail_host_get_by_hash(dir->mail_hosts,
request->username_hash);
if (host == NULL) {
/* all hosts have been removed */
return FALSE;
}
user = user_directory_add(dir->users, request->username_hash,
host, ioloop_time);
}
i_assert(!user->weak);
director_update_user(dir, dir->self_host, user);
T_BEGIN {
request->callback(&user->host->ip, NULL, request->context);
} T_END;
i_free(request);
return TRUE;
}