Skip to content

Commit

Permalink
BUG/MEDIUM: server: server stuck in maintenance after FQDN change
Browse files Browse the repository at this point in the history
Pierre Bonnat reported that SRV-based server-template recently stopped
to work properly.

After reviewing the changes, it was found that the regression was caused
by a4d04c6 ("BUG/MINOR: server: make sure the HMAINT state is part of MAINT")

Indeed, HMAINT is not a regular maintenance flag. It was implemented in
b418c12 a4d04c6 ("BUG/MINOR: server: make sure the HMAINT state is part
of MAINT"). This flag is only set (and never removed) when the server FQDN
is changed from its initial config-time value. This can happen with "set
server fqdn" command as well as SRV records updates from the DNS. This
flag should ideally belong to server flags.. but it was stored under
srv_admin enum because cur_admin is properly exported/imported via server
state-file while regular server's flags are not.

Due to a4d04c6, when a server FQDN changes, the server is considered in
maintenance, and since the HMAINT flag is never removed, the server is
stuck in maintenance.

To fix the issue, we partially revert a4d04c6. But this latter commit is
right on one point: HMAINT flag was way too confusing and mixed-up between
regular MAINT flags, thus there's nothing to blame about a4d04c6 as it was
error-prone anyway.. To prevent such kind of bugs from happening again,
let's rename HMAINT to something more explicit (SRV_ADMF_FQDN_CHANGED) and
make it stand out under srv_admin enum so we're not tempted to mix it with
regular maintenance flags anymore.

Since a4d04c6 was set to be backported in all versions, this patch must
be backported there as well.

(cherry picked from commit 8529818)
Signed-off-by: Aurelien DARRAGON <[email protected]>
  • Loading branch information
Darlelet committed Oct 21, 2024
1 parent b8adef0 commit 2529cbc
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 11 deletions.
8 changes: 6 additions & 2 deletions include/haproxy/server-t.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,13 @@ enum srv_admin {
SRV_ADMF_IDRAIN = 0x10, /* the server has inherited the drain status from a tracked server */
SRV_ADMF_DRAIN = 0x18, /* mask to check if any drain flag is present */
SRV_ADMF_RMAINT = 0x20, /* the server is down because of an IP address resolution failure */
SRV_ADMF_HMAINT = 0x40, /* the server FQDN has been set from socket stats */

SRV_ADMF_MAINT = 0x63, /* mask to check if any maintenance flag except CMAINT is present */
SRV_ADMF_MAINT = 0x23, /* mask to check if any maintenance flag except CMAINT is present */

SRV_ADMF_FQDN_CHANGED = 0x40, /* Special value: set (and never removed) if the server fqdn has
* changed (from cli or resolvers) since its initial value from
* config. This flag is exported and restored through state-file
*/
} __attribute__((packed));

/* options for servers' "init-addr" parameter
Expand Down
4 changes: 2 additions & 2 deletions src/server.c
Original file line number Diff line number Diff line change
Expand Up @@ -5048,8 +5048,8 @@ const char *srv_update_fqdn(struct server *server, const char *fqdn, const char
goto out;
}

/* Flag as FQDN set from stats socket. */
server->next_admin |= SRV_ADMF_HMAINT;
/* Flag as FQDN changed (e.g.: set from stats socket or resolvers) */
server->next_admin |= SRV_ADMF_FQDN_CHANGED;

out:
if (updater)
Expand Down
14 changes: 7 additions & 7 deletions src/server_state.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ static void srv_state_srv_update(struct server *srv, int version, char **params)
int srv_check_state, srv_agent_state;
int bk_f_forced_id;
int srv_f_forced_id;
int fqdn_set_by_cli;
int fqdn_changed;
const char *fqdn;
const char *port_st;
unsigned int port_svc;
Expand Down Expand Up @@ -112,12 +112,12 @@ static void srv_state_srv_update(struct server *srv, int version, char **params)
p = NULL;
errno = 0;
srv_admin_state = strtol(params[2], &p, 10);
fqdn_set_by_cli = !!(srv_admin_state & SRV_ADMF_HMAINT);
fqdn_changed = !!(srv_admin_state & SRV_ADMF_FQDN_CHANGED);

/* inherited statuses will be recomputed later.
* Also disable SRV_ADMF_HMAINT flag (set from stats socket fqdn).
* Also disable SRV_ADMF_FQDN_CHANGED flag (set from stats socket fqdn).
*/
srv_admin_state &= ~SRV_ADMF_IDRAIN & ~SRV_ADMF_IMAINT & ~SRV_ADMF_HMAINT & ~SRV_ADMF_RMAINT;
srv_admin_state &= ~SRV_ADMF_IDRAIN & ~SRV_ADMF_IMAINT & ~SRV_ADMF_RMAINT & ~SRV_ADMF_FQDN_CHANGED;

if ((p == params[2]) || errno == EINVAL || errno == ERANGE ||
(srv_admin_state != 0 &&
Expand Down Expand Up @@ -372,18 +372,18 @@ static void srv_state_srv_update(struct server *srv, int version, char **params)
* So we must reset the 'set from stats socket FQDN' flag to be consistent with
* any further FQDN modification.
*/
srv->next_admin &= ~SRV_ADMF_HMAINT;
srv->next_admin &= ~SRV_ADMF_FQDN_CHANGED;
}
else {
/* If the FDQN has been changed from stats socket,
* apply fqdn state file value (which is the value set
* from stats socket).
* Also ensure the runtime resolver will process this resolution.
*/
if (fqdn_set_by_cli) {
if (fqdn_changed) {
srv_set_fqdn(srv, fqdn, 0);
srv->flags &= ~SRV_F_NO_RESOLUTION;
srv->next_admin |= SRV_ADMF_HMAINT;
srv->next_admin |= SRV_ADMF_FQDN_CHANGED;
}
}
}
Expand Down

0 comments on commit 2529cbc

Please sign in to comment.