blob: 3be2bc82912dc5145f4942531d807b7772d0869c [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Server management functions.
3 *
Willy Tarreau21faa912012-10-10 08:27:36 +02004 * Copyright 2000-2012 Willy Tarreau <w@1wt.eu>
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01005 * Copyright 2007-2008 Krzysztof Piotr Oledzki <ole@ans.pl>
Willy Tarreaubaaee002006-06-26 02:48:02 +02006 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
12 */
13
Willy Tarreau272adea2014-03-31 10:39:59 +020014#include <ctype.h>
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +020015#include <errno.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020016
17#include <common/cfgparse.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020018#include <common/config.h>
Willy Tarreaudff55432012-10-10 17:51:05 +020019#include <common/errors.h>
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +010020#include <common/namespace.h>
Krzysztof Oledzki85130942007-10-22 16:21:10 +020021#include <common/time.h>
22
Willy Tarreau272adea2014-03-31 10:39:59 +020023#include <types/global.h>
Baptiste Assmanna68ca962015-04-14 01:15:08 +020024#include <types/dns.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020025
Simon Hormanb1900d52015-01-30 11:22:54 +090026#include <proto/checks.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020027#include <proto/port_range.h>
28#include <proto/protocol.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020029#include <proto/queue.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020030#include <proto/raw_sock.h>
Willy Tarreauec6c5df2008-07-15 00:22:45 +020031#include <proto/server.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020032#include <proto/stream.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020033#include <proto/task.h>
Baptiste Assmanna68ca962015-04-14 01:15:08 +020034#include <proto/dns.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020035
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +020036static void srv_update_state(struct server *srv, int version, char **params);
Willy Tarreaubaaee002006-06-26 02:48:02 +020037
Willy Tarreau21faa912012-10-10 08:27:36 +020038/* List head of all known server keywords */
39static struct srv_kw_list srv_keywords = {
40 .list = LIST_HEAD_INIT(srv_keywords.list)
41};
Krzysztof Oledzki85130942007-10-22 16:21:10 +020042
Simon Hormana3608442013-11-01 16:46:15 +090043int srv_downtime(const struct server *s)
Willy Tarreau21faa912012-10-10 08:27:36 +020044{
Willy Tarreau892337c2014-05-13 23:41:20 +020045 if ((s->state != SRV_ST_STOPPED) && s->last_change < now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +020046 return s->down_time;
47
48 return now.tv_sec - s->last_change + s->down_time;
49}
Willy Tarreaubaaee002006-06-26 02:48:02 +020050
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050051int srv_lastsession(const struct server *s)
52{
53 if (s->counters.last_sess)
54 return now.tv_sec - s->counters.last_sess;
55
56 return -1;
57}
58
Simon Horman4a741432013-02-23 15:35:38 +090059int srv_getinter(const struct check *check)
Willy Tarreau21faa912012-10-10 08:27:36 +020060{
Simon Horman4a741432013-02-23 15:35:38 +090061 const struct server *s = check->server;
62
Willy Tarreauff5ae352013-12-11 20:36:34 +010063 if ((check->state & CHK_ST_CONFIGURED) && (check->health == check->rise + check->fall - 1))
Simon Horman4a741432013-02-23 15:35:38 +090064 return check->inter;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +010065
Willy Tarreau892337c2014-05-13 23:41:20 +020066 if ((s->state == SRV_ST_STOPPED) && check->health == 0)
Simon Horman4a741432013-02-23 15:35:38 +090067 return (check->downinter)?(check->downinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +010068
Simon Horman4a741432013-02-23 15:35:38 +090069 return (check->fastinter)?(check->fastinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +010070}
71
Willy Tarreau21faa912012-10-10 08:27:36 +020072/*
73 * Registers the server keyword list <kwl> as a list of valid keywords for next
74 * parsing sessions.
75 */
76void srv_register_keywords(struct srv_kw_list *kwl)
77{
78 LIST_ADDQ(&srv_keywords.list, &kwl->list);
79}
80
81/* Return a pointer to the server keyword <kw>, or NULL if not found. If the
82 * keyword is found with a NULL ->parse() function, then an attempt is made to
83 * find one with a valid ->parse() function. This way it is possible to declare
84 * platform-dependant, known keywords as NULL, then only declare them as valid
85 * if some options are met. Note that if the requested keyword contains an
86 * opening parenthesis, everything from this point is ignored.
87 */
88struct srv_kw *srv_find_kw(const char *kw)
89{
90 int index;
91 const char *kwend;
92 struct srv_kw_list *kwl;
93 struct srv_kw *ret = NULL;
94
95 kwend = strchr(kw, '(');
96 if (!kwend)
97 kwend = kw + strlen(kw);
98
99 list_for_each_entry(kwl, &srv_keywords.list, list) {
100 for (index = 0; kwl->kw[index].kw != NULL; index++) {
101 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
102 kwl->kw[index].kw[kwend-kw] == 0) {
103 if (kwl->kw[index].parse)
104 return &kwl->kw[index]; /* found it !*/
105 else
106 ret = &kwl->kw[index]; /* may be OK */
107 }
108 }
109 }
110 return ret;
111}
112
113/* Dumps all registered "server" keywords to the <out> string pointer. The
114 * unsupported keywords are only dumped if their supported form was not
115 * found.
116 */
117void srv_dump_kws(char **out)
118{
119 struct srv_kw_list *kwl;
120 int index;
121
122 *out = NULL;
123 list_for_each_entry(kwl, &srv_keywords.list, list) {
124 for (index = 0; kwl->kw[index].kw != NULL; index++) {
125 if (kwl->kw[index].parse ||
126 srv_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
127 memprintf(out, "%s[%4s] %s%s%s%s\n", *out ? *out : "",
128 kwl->scope,
129 kwl->kw[index].kw,
130 kwl->kw[index].skip ? " <arg>" : "",
131 kwl->kw[index].default_ok ? " [dflt_ok]" : "",
132 kwl->kw[index].parse ? "" : " (not supported)");
133 }
134 }
135 }
136}
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100137
Willy Tarreaudff55432012-10-10 17:51:05 +0200138/* parse the "id" server keyword */
139static int srv_parse_id(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
140{
141 struct eb32_node *node;
142
143 if (!*args[*cur_arg + 1]) {
144 memprintf(err, "'%s' : expects an integer argument", args[*cur_arg]);
145 return ERR_ALERT | ERR_FATAL;
146 }
147
148 newsrv->puid = atol(args[*cur_arg + 1]);
149 newsrv->conf.id.key = newsrv->puid;
150
151 if (newsrv->puid <= 0) {
152 memprintf(err, "'%s' : custom id has to be > 0", args[*cur_arg]);
153 return ERR_ALERT | ERR_FATAL;
154 }
155
156 node = eb32_lookup(&curproxy->conf.used_server_id, newsrv->puid);
157 if (node) {
158 struct server *target = container_of(node, struct server, conf.id);
159 memprintf(err, "'%s' : custom id %d already used at %s:%d ('server %s')",
160 args[*cur_arg], newsrv->puid, target->conf.file, target->conf.line,
161 target->id);
162 return ERR_ALERT | ERR_FATAL;
163 }
164
165 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Baptiste Assmann7cc419a2015-07-07 22:02:20 +0200166 newsrv->flags |= SRV_F_FORCED_ID;
Willy Tarreaudff55432012-10-10 17:51:05 +0200167 return 0;
168}
169
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200170/* Shutdown all connections of a server. The caller must pass a termination
Willy Tarreaue7dff022015-04-03 01:14:29 +0200171 * code in <why>, which must be one of SF_ERR_* indicating the reason for the
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200172 * shutdown.
173 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200174void srv_shutdown_streams(struct server *srv, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200175{
Willy Tarreau87b09662015-04-03 00:22:06 +0200176 struct stream *stream, *stream_bck;
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200177
Willy Tarreau87b09662015-04-03 00:22:06 +0200178 list_for_each_entry_safe(stream, stream_bck, &srv->actconns, by_srv)
179 if (stream->srv_conn == srv)
180 stream_shutdown(stream, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200181}
182
183/* Shutdown all connections of all backup servers of a proxy. The caller must
Willy Tarreaue7dff022015-04-03 01:14:29 +0200184 * pass a termination code in <why>, which must be one of SF_ERR_* indicating
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200185 * the reason for the shutdown.
186 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200187void srv_shutdown_backup_streams(struct proxy *px, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200188{
189 struct server *srv;
190
191 for (srv = px->srv; srv != NULL; srv = srv->next)
192 if (srv->flags & SRV_F_BACKUP)
Willy Tarreau87b09662015-04-03 00:22:06 +0200193 srv_shutdown_streams(srv, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200194}
195
Willy Tarreaubda92272014-05-20 21:55:30 +0200196/* Appends some information to a message string related to a server going UP or
197 * DOWN. If both <forced> and <reason> are null and the server tracks another
198 * one, a "via" information will be provided to know where the status came from.
199 * If <reason> is non-null, the entire string will be appended after a comma and
200 * a space (eg: to report some information from the check that changed the state).
Willy Tarreau87b09662015-04-03 00:22:06 +0200201 * If <xferred> is non-negative, some information about requeued streams are
Willy Tarreaubda92272014-05-20 21:55:30 +0200202 * provided.
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200203 */
Willy Tarreaubda92272014-05-20 21:55:30 +0200204void srv_append_status(struct chunk *msg, struct server *s, const char *reason, int xferred, int forced)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200205{
Willy Tarreaubda92272014-05-20 21:55:30 +0200206 if (reason)
207 chunk_appendf(msg, ", %s", reason);
208 else if (!forced && s->track)
209 chunk_appendf(msg, " via %s/%s", s->track->proxy->id, s->track->id);
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200210
211 if (xferred >= 0) {
212 if (s->state == SRV_ST_STOPPED)
213 chunk_appendf(msg, ". %d active and %d backup servers left.%s"
214 " %d sessions active, %d requeued, %d remaining in queue",
215 s->proxy->srv_act, s->proxy->srv_bck,
216 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
217 s->cur_sess, xferred, s->nbpend);
218 else
219 chunk_appendf(msg, ". %d active and %d backup servers online.%s"
220 " %d sessions requeued, %d total in queue",
221 s->proxy->srv_act, s->proxy->srv_bck,
222 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
223 xferred, s->nbpend);
224 }
225}
226
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200227/* Marks server <s> down, regardless of its checks' statuses, notifies by all
228 * available means, recounts the remaining servers on the proxy and transfers
Willy Tarreau87b09662015-04-03 00:22:06 +0200229 * queued streams whenever possible to other servers. It automatically
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200230 * recomputes the number of servers, but not the map. Maintenance servers are
231 * ignored. It reports <reason> if non-null as the reason for going down. Note
232 * that it makes use of the trash to build the log strings, so <reason> must
233 * not be placed there.
234 */
235void srv_set_stopped(struct server *s, const char *reason)
236{
237 struct server *srv;
238 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
239 int srv_was_stopping = (s->state == SRV_ST_STOPPING);
Simon Horman64e34162015-02-06 11:11:57 +0900240 int log_level;
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200241 int xferred;
242
243 if ((s->admin & SRV_ADMF_MAINT) || s->state == SRV_ST_STOPPED)
244 return;
245
246 s->last_change = now.tv_sec;
247 s->state = SRV_ST_STOPPED;
248 if (s->proxy->lbprm.set_server_status_down)
249 s->proxy->lbprm.set_server_status_down(s);
250
251 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
Willy Tarreaue7dff022015-04-03 01:14:29 +0200252 srv_shutdown_streams(s, SF_ERR_DOWN);
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200253
Willy Tarreau87b09662015-04-03 00:22:06 +0200254 /* we might have streams queued on this server and waiting for
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200255 * a connection. Those which are redispatchable will be queued
256 * to another server or to the proxy itself.
257 */
258 xferred = pendconn_redistribute(s);
259
260 chunk_printf(&trash,
261 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
262 s->proxy->id, s->id);
263
264 srv_append_status(&trash, s, reason, xferred, 0);
265 Warning("%s.\n", trash.str);
266
267 /* we don't send an alert if the server was previously paused */
Simon Horman64e34162015-02-06 11:11:57 +0900268 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
269 send_log(s->proxy, log_level, "%s.\n", trash.str);
270 send_email_alert(s, log_level, "%s", trash.str);
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200271
272 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
273 set_backend_down(s->proxy);
274
275 s->counters.down_trans++;
276
277 for (srv = s->trackers; srv; srv = srv->tracknext)
278 srv_set_stopped(srv, NULL);
279}
280
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200281/* Marks server <s> up regardless of its checks' statuses and provided it isn't
282 * in maintenance. Notifies by all available means, recounts the remaining
283 * servers on the proxy and tries to grab requests from the proxy. It
284 * automatically recomputes the number of servers, but not the map. Maintenance
285 * servers are ignored. It reports <reason> if non-null as the reason for going
286 * up. Note that it makes use of the trash to build the log strings, so <reason>
287 * must not be placed there.
288 */
289void srv_set_running(struct server *s, const char *reason)
290{
291 struct server *srv;
292 int xferred;
293
294 if (s->admin & SRV_ADMF_MAINT)
295 return;
296
297 if (s->state == SRV_ST_STARTING || s->state == SRV_ST_RUNNING)
298 return;
299
300 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
301 if (s->proxy->last_change < now.tv_sec) // ignore negative times
302 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
303 s->proxy->last_change = now.tv_sec;
304 }
305
306 if (s->state == SRV_ST_STOPPED && s->last_change < now.tv_sec) // ignore negative times
307 s->down_time += now.tv_sec - s->last_change;
308
309 s->last_change = now.tv_sec;
310
311 s->state = SRV_ST_STARTING;
312 if (s->slowstart > 0)
313 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
314 else
315 s->state = SRV_ST_RUNNING;
316
317 server_recalc_eweight(s);
318
319 /* If the server is set with "on-marked-up shutdown-backup-sessions",
320 * and it's not a backup server and its effective weight is > 0,
Willy Tarreau87b09662015-04-03 00:22:06 +0200321 * then it can accept new connections, so we shut down all streams
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200322 * on all backup servers.
323 */
324 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
325 !(s->flags & SRV_F_BACKUP) && s->eweight)
Willy Tarreaue7dff022015-04-03 01:14:29 +0200326 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200327
328 /* check if we can handle some connections queued at the proxy. We
329 * will take as many as we can handle.
330 */
331 xferred = pendconn_grab_from_px(s);
332
333 chunk_printf(&trash,
334 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
335 s->proxy->id, s->id);
336
337 srv_append_status(&trash, s, reason, xferred, 0);
338 Warning("%s.\n", trash.str);
339 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
Simon Horman4cd477f2015-04-30 13:10:34 +0900340 send_email_alert(s, LOG_NOTICE, "%s", trash.str);
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200341
342 for (srv = s->trackers; srv; srv = srv->tracknext)
343 srv_set_running(srv, NULL);
344}
345
Willy Tarreau8eb77842014-05-21 13:54:57 +0200346/* Marks server <s> stopping regardless of its checks' statuses and provided it
347 * isn't in maintenance. Notifies by all available means, recounts the remaining
348 * servers on the proxy and tries to grab requests from the proxy. It
349 * automatically recomputes the number of servers, but not the map. Maintenance
350 * servers are ignored. It reports <reason> if non-null as the reason for going
351 * up. Note that it makes use of the trash to build the log strings, so <reason>
352 * must not be placed there.
353 */
354void srv_set_stopping(struct server *s, const char *reason)
355{
356 struct server *srv;
357 int xferred;
358
359 if (s->admin & SRV_ADMF_MAINT)
360 return;
361
362 if (s->state == SRV_ST_STOPPING)
363 return;
364
365 s->last_change = now.tv_sec;
366 s->state = SRV_ST_STOPPING;
367 if (s->proxy->lbprm.set_server_status_down)
368 s->proxy->lbprm.set_server_status_down(s);
369
Willy Tarreau87b09662015-04-03 00:22:06 +0200370 /* we might have streams queued on this server and waiting for
Willy Tarreau8eb77842014-05-21 13:54:57 +0200371 * a connection. Those which are redispatchable will be queued
372 * to another server or to the proxy itself.
373 */
374 xferred = pendconn_redistribute(s);
375
376 chunk_printf(&trash,
377 "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "",
378 s->proxy->id, s->id);
379
380 srv_append_status(&trash, s, reason, xferred, 0);
381
382 Warning("%s.\n", trash.str);
383 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
384
385 if (!s->proxy->srv_bck && !s->proxy->srv_act)
386 set_backend_down(s->proxy);
387
388 for (srv = s->trackers; srv; srv = srv->tracknext)
389 srv_set_stopping(srv, NULL);
390}
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200391
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200392/* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
393 * enforce either maint mode or drain mode. It is not allowed to set more than
394 * one flag at once. The equivalent "inherited" flag is propagated to all
395 * tracking servers. Maintenance mode disables health checks (but not agent
396 * checks). When either the flag is already set or no flag is passed, nothing
397 * is done.
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200398 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200399void srv_set_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200400{
401 struct check *check = &s->check;
402 struct server *srv;
403 int xferred;
404
405 if (!mode)
406 return;
407
408 /* stop going down as soon as we meet a server already in the same state */
409 if (s->admin & mode)
410 return;
411
412 s->admin |= mode;
413
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200414 /* stop going down if the equivalent flag was already present (forced or inherited) */
415 if (((mode & SRV_ADMF_MAINT) && (s->admin & ~mode & SRV_ADMF_MAINT)) ||
416 ((mode & SRV_ADMF_DRAIN) && (s->admin & ~mode & SRV_ADMF_DRAIN)))
417 return;
418
419 /* Maintenance must also disable health checks */
420 if (mode & SRV_ADMF_MAINT) {
421 if (s->check.state & CHK_ST_ENABLED) {
422 s->check.state |= CHK_ST_PAUSED;
423 check->health = 0;
424 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200425
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200426 if (s->state == SRV_ST_STOPPED) { /* server was already down */
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200427 chunk_printf(&trash,
428 "%sServer %s/%s was DOWN and now enters maintenance",
429 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id);
430
Willy Tarreaubda92272014-05-20 21:55:30 +0200431 srv_append_status(&trash, s, NULL, -1, (mode & SRV_ADMF_FMAINT));
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200432
433 Warning("%s.\n", trash.str);
434 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
435 }
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200436 else { /* server was still running */
437 int srv_was_stopping = (s->state == SRV_ST_STOPPING) || (s->admin & SRV_ADMF_DRAIN);
438 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
439
440 check->health = 0; /* failure */
441 s->last_change = now.tv_sec;
442 s->state = SRV_ST_STOPPED;
443 if (s->proxy->lbprm.set_server_status_down)
444 s->proxy->lbprm.set_server_status_down(s);
445
446 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
Willy Tarreaue7dff022015-04-03 01:14:29 +0200447 srv_shutdown_streams(s, SF_ERR_DOWN);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200448
Willy Tarreau87b09662015-04-03 00:22:06 +0200449 /* we might have streams queued on this server and waiting for
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200450 * a connection. Those which are redispatchable will be queued
451 * to another server or to the proxy itself.
452 */
453 xferred = pendconn_redistribute(s);
454
455 chunk_printf(&trash,
456 "%sServer %s/%s is going DOWN for maintenance",
457 s->flags & SRV_F_BACKUP ? "Backup " : "",
458 s->proxy->id, s->id);
459
460 srv_append_status(&trash, s, NULL, xferred, (mode & SRV_ADMF_FMAINT));
461
462 Warning("%s.\n", trash.str);
463 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n", trash.str);
464
465 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
466 set_backend_down(s->proxy);
467
468 s->counters.down_trans++;
469 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200470 }
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200471
472 /* drain state is applied only if not yet in maint */
473 if ((mode & SRV_ADMF_DRAIN) && !(s->admin & SRV_ADMF_MAINT)) {
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200474 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
475
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200476 s->last_change = now.tv_sec;
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200477 if (s->proxy->lbprm.set_server_status_down)
478 s->proxy->lbprm.set_server_status_down(s);
479
Willy Tarreau87b09662015-04-03 00:22:06 +0200480 /* we might have streams queued on this server and waiting for
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200481 * a connection. Those which are redispatchable will be queued
482 * to another server or to the proxy itself.
483 */
484 xferred = pendconn_redistribute(s);
485
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200486 chunk_printf(&trash, "%sServer %s/%s enters drain state",
487 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id);
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200488
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200489 srv_append_status(&trash, s, NULL, xferred, (mode & SRV_ADMF_FDRAIN));
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200490
491 Warning("%s.\n", trash.str);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200492 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
Simon Horman4cd477f2015-04-30 13:10:34 +0900493 send_email_alert(s, LOG_NOTICE, "%s", trash.str);
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200494
495 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
496 set_backend_down(s->proxy);
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200497 }
498
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200499 /* compute the inherited flag to propagate */
500 if (mode & SRV_ADMF_MAINT)
501 mode = SRV_ADMF_IMAINT;
502 else if (mode & SRV_ADMF_DRAIN)
503 mode = SRV_ADMF_IDRAIN;
504
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200505 for (srv = s->trackers; srv; srv = srv->tracknext)
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200506 srv_set_admin_flag(srv, mode);
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200507}
508
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200509/* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
510 * stop enforcing either maint mode or drain mode. It is not allowed to set more
511 * than one flag at once. The equivalent "inherited" flag is propagated to all
512 * tracking servers. Leaving maintenance mode re-enables health checks. When
513 * either the flag is already cleared or no flag is passed, nothing is done.
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200514 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200515void srv_clr_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200516{
517 struct check *check = &s->check;
518 struct server *srv;
519 int xferred = -1;
520
521 if (!mode)
522 return;
523
524 /* stop going down as soon as we see the flag is not there anymore */
525 if (!(s->admin & mode))
526 return;
527
528 s->admin &= ~mode;
529
530 if (s->admin & SRV_ADMF_MAINT) {
531 /* remaining in maintenance mode, let's inform precisely about the
532 * situation.
533 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200534 if (mode & SRV_ADMF_FMAINT) {
535 chunk_printf(&trash,
536 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
537 s->flags & SRV_F_BACKUP ? "Backup " : "",
538 s->proxy->id, s->id);
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200539
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200540 if (s->track) /* normally it's mandatory here */
541 chunk_appendf(&trash, " via %s/%s",
542 s->track->proxy->id, s->track->id);
543 Warning("%s.\n", trash.str);
544 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
545 }
546 else if (mode & SRV_ADMF_IMAINT) {
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200547 chunk_printf(&trash,
548 "%sServer %s/%s remains in forced maintenance",
549 s->flags & SRV_F_BACKUP ? "Backup " : "",
550 s->proxy->id, s->id);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200551 Warning("%s.\n", trash.str);
552 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
553 }
554 /* don't report anything when leaving drain mode and remaining in maintenance */
555 }
556 else if (mode & SRV_ADMF_MAINT) {
557 /* OK here we're leaving maintenance, we have many things to check,
558 * because the server might possibly be coming back up depending on
559 * its state. In practice, leaving maintenance means that we should
560 * immediately turn to UP (more or less the slowstart) under the
561 * following conditions :
562 * - server is neither checked nor tracked
563 * - server tracks another server which is not checked
564 * - server tracks another server which is already up
565 * Which sums up as something simpler :
566 * "either the tracking server is up or the server's checks are disabled
567 * or up". Otherwise we only re-enable health checks. There's a special
568 * case associated to the stopping state which can be inherited. Note
569 * that the server might still be in drain mode, which is naturally dealt
570 * with by the lower level functions.
571 */
572
573 if (s->check.state & CHK_ST_ENABLED) {
574 s->check.state &= ~CHK_ST_PAUSED;
575 check->health = check->rise; /* start OK but check immediately */
576 }
577
578 if ((!s->track || s->track->state != SRV_ST_STOPPED) &&
579 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
580 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
581 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
582 if (s->proxy->last_change < now.tv_sec) // ignore negative times
583 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
584 s->proxy->last_change = now.tv_sec;
585 }
586
587 if (s->last_change < now.tv_sec) // ignore negative times
588 s->down_time += now.tv_sec - s->last_change;
589 s->last_change = now.tv_sec;
590
591 if (s->track && s->track->state == SRV_ST_STOPPING)
592 s->state = SRV_ST_STOPPING;
593 else {
594 s->state = SRV_ST_STARTING;
595 if (s->slowstart > 0)
596 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
597 else
598 s->state = SRV_ST_RUNNING;
599 }
600
601 server_recalc_eweight(s);
602
603 /* If the server is set with "on-marked-up shutdown-backup-sessions",
604 * and it's not a backup server and its effective weight is > 0,
Willy Tarreau87b09662015-04-03 00:22:06 +0200605 * then it can accept new connections, so we shut down all streams
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200606 * on all backup servers.
607 */
608 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
609 !(s->flags & SRV_F_BACKUP) && s->eweight)
Willy Tarreaue7dff022015-04-03 01:14:29 +0200610 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200611
612 /* check if we can handle some connections queued at the proxy. We
613 * will take as many as we can handle.
614 */
615 xferred = pendconn_grab_from_px(s);
616 }
617
618 if (mode & SRV_ADMF_FMAINT) {
619 chunk_printf(&trash,
620 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
621 s->flags & SRV_F_BACKUP ? "Backup " : "",
622 s->proxy->id, s->id,
623 (s->state == SRV_ST_STOPPED) ? "DOWN" : "UP",
624 (s->admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200625 }
626 else {
627 chunk_printf(&trash,
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200628 "%sServer %s/%s is %s/%s (leaving maintenance)",
629 s->flags & SRV_F_BACKUP ? "Backup " : "",
630 s->proxy->id, s->id,
631 (s->state == SRV_ST_STOPPED) ? "DOWN" : "UP",
632 (s->admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
633 srv_append_status(&trash, s, NULL, xferred, 0);
634 }
635 Warning("%s.\n", trash.str);
636 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
637 }
638 else if ((mode & SRV_ADMF_DRAIN) && (s->admin & SRV_ADMF_DRAIN)) {
639 /* remaining in drain mode after removing one of its flags */
640
641 if (mode & SRV_ADMF_FDRAIN) {
642 chunk_printf(&trash,
643 "%sServer %s/%s is leaving forced drain but remains in drain mode",
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200644 s->flags & SRV_F_BACKUP ? "Backup " : "",
645 s->proxy->id, s->id);
646
647 if (s->track) /* normally it's mandatory here */
648 chunk_appendf(&trash, " via %s/%s",
649 s->track->proxy->id, s->track->id);
650 }
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200651 else {
652 chunk_printf(&trash,
653 "%sServer %s/%s remains in forced drain mode",
654 s->flags & SRV_F_BACKUP ? "Backup " : "",
655 s->proxy->id, s->id);
656 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200657 Warning("%s.\n", trash.str);
658 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200659 }
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200660 else if (mode & SRV_ADMF_DRAIN) {
661 /* OK completely leaving drain mode */
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200662 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
663 if (s->proxy->last_change < now.tv_sec) // ignore negative times
664 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
665 s->proxy->last_change = now.tv_sec;
666 }
667
668 if (s->last_change < now.tv_sec) // ignore negative times
669 s->down_time += now.tv_sec - s->last_change;
670 s->last_change = now.tv_sec;
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200671 server_recalc_eweight(s);
672
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200673 if (mode & SRV_ADMF_FDRAIN) {
674 chunk_printf(&trash,
675 "%sServer %s/%s is %s (leaving forced drain)",
676 s->flags & SRV_F_BACKUP ? "Backup " : "",
677 s->proxy->id, s->id,
678 (s->state == SRV_ST_STOPPED) ? "DOWN" : "UP");
679 }
680 else {
681 chunk_printf(&trash,
682 "%sServer %s/%s is %s (leaving drain)",
683 s->flags & SRV_F_BACKUP ? "Backup " : "",
684 s->proxy->id, s->id,
685 (s->state == SRV_ST_STOPPED) ? "DOWN" : "UP");
686 if (s->track) /* normally it's mandatory here */
687 chunk_appendf(&trash, " via %s/%s",
688 s->track->proxy->id, s->track->id);
689 }
690 Warning("%s.\n", trash.str);
691 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200692 }
693
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200694 /* stop going down if the equivalent flag is still present (forced or inherited) */
695 if (((mode & SRV_ADMF_MAINT) && (s->admin & SRV_ADMF_MAINT)) ||
696 ((mode & SRV_ADMF_DRAIN) && (s->admin & SRV_ADMF_DRAIN)))
697 return;
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200698
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200699 if (mode & SRV_ADMF_MAINT)
700 mode = SRV_ADMF_IMAINT;
701 else if (mode & SRV_ADMF_DRAIN)
702 mode = SRV_ADMF_IDRAIN;
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200703
704 for (srv = s->trackers; srv; srv = srv->tracknext)
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200705 srv_clr_admin_flag(srv, mode);
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200706}
707
Willy Tarreaudff55432012-10-10 17:51:05 +0200708/* Note: must not be declared <const> as its list will be overwritten.
709 * Please take care of keeping this list alphabetically sorted, doing so helps
710 * all code contributors.
711 * Optional keywords are also declared with a NULL ->parse() function so that
712 * the config parser can report an appropriate error when a known keyword was
713 * not enabled.
714 */
715static struct srv_kw_list srv_kws = { "ALL", { }, {
716 { "id", srv_parse_id, 1, 0 }, /* set id# of server */
717 { NULL, NULL, 0 },
718}};
719
720__attribute__((constructor))
721static void __listener_init(void)
722{
723 srv_register_keywords(&srv_kws);
724}
725
Willy Tarreau004e0452013-11-21 11:22:01 +0100726/* Recomputes the server's eweight based on its state, uweight, the current time,
727 * and the proxy's algorihtm. To be used after updating sv->uweight. The warmup
728 * state is automatically disabled if the time is elapsed.
729 */
730void server_recalc_eweight(struct server *sv)
731{
732 struct proxy *px = sv->proxy;
733 unsigned w;
734
735 if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) {
736 /* go to full throttle if the slowstart interval is reached */
Willy Tarreau892337c2014-05-13 23:41:20 +0200737 if (sv->state == SRV_ST_STARTING)
738 sv->state = SRV_ST_RUNNING;
Willy Tarreau004e0452013-11-21 11:22:01 +0100739 }
740
741 /* We must take care of not pushing the server to full throttle during slow starts.
742 * It must also start immediately, at least at the minimal step when leaving maintenance.
743 */
Willy Tarreau892337c2014-05-13 23:41:20 +0200744 if ((sv->state == SRV_ST_STARTING) && (px->lbprm.algo & BE_LB_PROP_DYN))
Willy Tarreau004e0452013-11-21 11:22:01 +0100745 w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart;
746 else
747 w = px->lbprm.wdiv;
748
749 sv->eweight = (sv->uweight * w + px->lbprm.wmult - 1) / px->lbprm.wmult;
750
751 /* now propagate the status change to any LB algorithms */
752 if (px->lbprm.update_server_eweight)
753 px->lbprm.update_server_eweight(sv);
Willy Tarreau9943d312014-05-22 16:20:59 +0200754 else if (srv_is_usable(sv)) {
Willy Tarreau004e0452013-11-21 11:22:01 +0100755 if (px->lbprm.set_server_status_up)
756 px->lbprm.set_server_status_up(sv);
757 }
758 else {
759 if (px->lbprm.set_server_status_down)
760 px->lbprm.set_server_status_down(sv);
761 }
762}
763
Willy Tarreaubaaee002006-06-26 02:48:02 +0200764/*
Simon Horman7d09b9a2013-02-12 10:45:51 +0900765 * Parses weight_str and configures sv accordingly.
766 * Returns NULL on success, error message string otherwise.
767 */
768const char *server_parse_weight_change_request(struct server *sv,
769 const char *weight_str)
770{
771 struct proxy *px;
Simon Hormanb796afa2013-02-12 10:45:53 +0900772 long int w;
773 char *end;
Simon Horman7d09b9a2013-02-12 10:45:51 +0900774
775 px = sv->proxy;
776
777 /* if the weight is terminated with '%', it is set relative to
778 * the initial weight, otherwise it is absolute.
779 */
780 if (!*weight_str)
781 return "Require <weight> or <weight%>.\n";
782
Simon Hormanb796afa2013-02-12 10:45:53 +0900783 w = strtol(weight_str, &end, 10);
784 if (end == weight_str)
785 return "Empty weight string empty or preceded by garbage";
786 else if (end[0] == '%' && end[1] == '\0') {
Simon Horman58b5d292013-02-12 10:45:52 +0900787 if (w < 0)
Simon Horman7d09b9a2013-02-12 10:45:51 +0900788 return "Relative weight must be positive.\n";
Simon Horman58b5d292013-02-12 10:45:52 +0900789 /* Avoid integer overflow */
790 if (w > 25600)
791 w = 25600;
Simon Horman7d09b9a2013-02-12 10:45:51 +0900792 w = sv->iweight * w / 100;
Simon Horman58b5d292013-02-12 10:45:52 +0900793 if (w > 256)
794 w = 256;
Simon Horman7d09b9a2013-02-12 10:45:51 +0900795 }
796 else if (w < 0 || w > 256)
797 return "Absolute weight can only be between 0 and 256 inclusive.\n";
Simon Hormanb796afa2013-02-12 10:45:53 +0900798 else if (end[0] != '\0')
799 return "Trailing garbage in weight string";
Simon Horman7d09b9a2013-02-12 10:45:51 +0900800
801 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN))
802 return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
803
804 sv->uweight = w;
Willy Tarreau004e0452013-11-21 11:22:01 +0100805 server_recalc_eweight(sv);
Simon Horman7d09b9a2013-02-12 10:45:51 +0900806
807 return NULL;
808}
809
Baptiste Assmann3d8f8312015-04-13 22:54:33 +0200810/*
Thierry Fournier09a91782016-02-24 08:25:39 +0100811 * Parses <addr_str> and configures <sv> accordingly. <from> precise
812 * the source of the change in the associated message log.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +0200813 * Returns:
814 * - error string on error
815 * - NULL on success
816 */
817const char *server_parse_addr_change_request(struct server *sv,
Thierry Fournier09a91782016-02-24 08:25:39 +0100818 const char *addr_str, const char *updater)
Baptiste Assmann3d8f8312015-04-13 22:54:33 +0200819{
820 unsigned char ip[INET6_ADDRSTRLEN];
821
822 if (inet_pton(AF_INET6, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +0100823 update_server_addr(sv, ip, AF_INET6, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +0200824 return NULL;
825 }
826 if (inet_pton(AF_INET, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +0100827 update_server_addr(sv, ip, AF_INET, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +0200828 return NULL;
829 }
830
831 return "Could not understand IP address format.\n";
832}
833
Nenad Merdanovic174dd372016-04-24 23:10:06 +0200834const char *server_parse_maxconn_change_request(struct server *sv,
835 const char *maxconn_str)
836{
837 long int v;
838 char *end;
839
840 if (!*maxconn_str)
841 return "Require <maxconn>.\n";
842
843 v = strtol(maxconn_str, &end, 10);
844 if (end == maxconn_str)
845 return "maxconn string empty or preceded by garbage";
846 else if (end[0] != '\0')
847 return "Trailing garbage in maxconn string";
848
849 if (sv->maxconn == sv->minconn) { // static maxconn
850 sv->maxconn = sv->minconn = v;
851 } else { // dynamic maxconn
852 sv->maxconn = v;
853 }
854
855 if (may_dequeue_tasks(sv, sv->proxy))
856 process_srv_queue(sv);
857
858 return NULL;
859}
860
Willy Tarreau272adea2014-03-31 10:39:59 +0200861int parse_server(const char *file, int linenum, char **args, struct proxy *curproxy, struct proxy *defproxy)
862{
863 struct server *newsrv = NULL;
864 const char *err;
865 char *errmsg = NULL;
866 int err_code = 0;
867 unsigned val;
Willy Tarreau07101d52015-09-08 16:16:35 +0200868 char *fqdn = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +0200869
870 if (!strcmp(args[0], "server") || !strcmp(args[0], "default-server")) { /* server address */
871 int cur_arg;
Willy Tarreau272adea2014-03-31 10:39:59 +0200872 int do_agent = 0, do_check = 0, defsrv = (*args[0] == 'd');
873
874 if (!defsrv && curproxy == defproxy) {
875 Alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]);
876 err_code |= ERR_ALERT | ERR_FATAL;
877 goto out;
878 }
879 else if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL))
880 err_code |= ERR_ALERT | ERR_FATAL;
881
882 if (!*args[2]) {
883 Alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
884 file, linenum, args[0]);
885 err_code |= ERR_ALERT | ERR_FATAL;
886 goto out;
887 }
888
889 err = invalid_char(args[1]);
890 if (err && !defsrv) {
891 Alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
892 file, linenum, *err, args[1]);
893 err_code |= ERR_ALERT | ERR_FATAL;
894 goto out;
895 }
896
897 if (!defsrv) {
898 struct sockaddr_storage *sk;
899 int port1, port2;
900 struct protocol *proto;
Baptiste Assmanna68ca962015-04-14 01:15:08 +0200901 struct dns_resolution *curr_resolution;
Willy Tarreau272adea2014-03-31 10:39:59 +0200902
Vincent Bernat02779b62016-04-03 13:48:43 +0200903 if ((newsrv = calloc(1, sizeof(*newsrv))) == NULL) {
Willy Tarreau272adea2014-03-31 10:39:59 +0200904 Alert("parsing [%s:%d] : out of memory.\n", file, linenum);
905 err_code |= ERR_ALERT | ERR_ABORT;
906 goto out;
907 }
908
909 /* the servers are linked backwards first */
910 newsrv->next = curproxy->srv;
911 curproxy->srv = newsrv;
912 newsrv->proxy = curproxy;
913 newsrv->conf.file = strdup(file);
914 newsrv->conf.line = linenum;
915
916 newsrv->obj_type = OBJ_TYPE_SERVER;
917 LIST_INIT(&newsrv->actconns);
918 LIST_INIT(&newsrv->pendconns);
Willy Tarreau600802a2015-08-04 17:19:06 +0200919 LIST_INIT(&newsrv->priv_conns);
Willy Tarreau173a1c62015-08-05 10:31:57 +0200920 LIST_INIT(&newsrv->idle_conns);
Willy Tarreau7017cb02015-08-05 16:35:23 +0200921 LIST_INIT(&newsrv->safe_conns);
Willy Tarreau272adea2014-03-31 10:39:59 +0200922 do_check = 0;
923 do_agent = 0;
Willy Tarreauc93cd162014-05-13 15:54:22 +0200924 newsrv->flags = 0;
Willy Tarreau20125212014-05-13 19:44:56 +0200925 newsrv->admin = 0;
Willy Tarreau892337c2014-05-13 23:41:20 +0200926 newsrv->state = SRV_ST_RUNNING; /* early server setup */
Willy Tarreau272adea2014-03-31 10:39:59 +0200927 newsrv->last_change = now.tv_sec;
928 newsrv->id = strdup(args[1]);
929
930 /* several ways to check the port component :
931 * - IP => port=+0, relative (IPv4 only)
932 * - IP: => port=+0, relative
933 * - IP:N => port=N, absolute
934 * - IP:+N => port=+N, relative
935 * - IP:-N => port=-N, relative
936 */
Thierry FOURNIER7fe3be72015-09-26 20:03:36 +0200937 sk = str2sa_range(args[2], &port1, &port2, &errmsg, NULL, &fqdn, 1);
Willy Tarreau272adea2014-03-31 10:39:59 +0200938 if (!sk) {
939 Alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
940 err_code |= ERR_ALERT | ERR_FATAL;
941 goto out;
942 }
943
944 proto = protocol_by_family(sk->ss_family);
945 if (!proto || !proto->connect) {
946 Alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
947 file, linenum, args[0], args[1]);
948 err_code |= ERR_ALERT | ERR_FATAL;
949 goto out;
950 }
951
952 if (!port1 || !port2) {
953 /* no port specified, +offset, -offset */
Willy Tarreauc93cd162014-05-13 15:54:22 +0200954 newsrv->flags |= SRV_F_MAPPORTS;
Willy Tarreau272adea2014-03-31 10:39:59 +0200955 }
956 else if (port1 != port2) {
957 /* port range */
958 Alert("parsing [%s:%d] : '%s %s' : port ranges are not allowed in '%s'\n",
959 file, linenum, args[0], args[1], args[2]);
960 err_code |= ERR_ALERT | ERR_FATAL;
961 goto out;
962 }
Willy Tarreau272adea2014-03-31 10:39:59 +0200963
Baptiste Assmanna68ca962015-04-14 01:15:08 +0200964 /* save hostname and create associated name resolution */
Willy Tarreau07101d52015-09-08 16:16:35 +0200965 newsrv->hostname = fqdn;
966 if (!fqdn)
Baptiste Assmanna68ca962015-04-14 01:15:08 +0200967 goto skip_name_resolution;
968
Willy Tarreau07101d52015-09-08 16:16:35 +0200969 fqdn = NULL;
Vincent Bernat02779b62016-04-03 13:48:43 +0200970 if ((curr_resolution = calloc(1, sizeof(*curr_resolution))) == NULL)
Baptiste Assmanna68ca962015-04-14 01:15:08 +0200971 goto skip_name_resolution;
972
973 curr_resolution->hostname_dn_len = dns_str_to_dn_label_len(newsrv->hostname);
974 if ((curr_resolution->hostname_dn = calloc(curr_resolution->hostname_dn_len + 1, sizeof(char))) == NULL)
975 goto skip_name_resolution;
976 if ((dns_str_to_dn_label(newsrv->hostname, curr_resolution->hostname_dn, curr_resolution->hostname_dn_len + 1)) == NULL) {
977 Alert("parsing [%s:%d] : Invalid hostname '%s'\n",
978 file, linenum, args[2]);
979 err_code |= ERR_ALERT | ERR_FATAL;
980 goto out;
981 }
982
983 curr_resolution->requester = newsrv;
984 curr_resolution->requester_cb = snr_resolution_cb;
985 curr_resolution->requester_error_cb = snr_resolution_error_cb;
986 curr_resolution->status = RSLV_STATUS_NONE;
987 curr_resolution->step = RSLV_STEP_NONE;
988 /* a first resolution has been done by the configuration parser */
Baptiste Assmannf046f112015-08-27 22:12:46 +0200989 curr_resolution->last_resolution = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +0200990 newsrv->resolution = curr_resolution;
991
992 skip_name_resolution:
Willy Tarreau272adea2014-03-31 10:39:59 +0200993 newsrv->addr = *sk;
Cyril Bonté9ce13112014-11-15 22:41:27 +0100994 newsrv->xprt = newsrv->check.xprt = newsrv->agent.xprt = &raw_sock;
Willy Tarreau272adea2014-03-31 10:39:59 +0200995
Thierry FOURNIERbb2ae642015-01-14 11:31:49 +0100996 if (!protocol_by_family(newsrv->addr.ss_family)) {
Willy Tarreau272adea2014-03-31 10:39:59 +0200997 Alert("parsing [%s:%d] : Unknown protocol family %d '%s'\n",
998 file, linenum, newsrv->addr.ss_family, args[2]);
999 err_code |= ERR_ALERT | ERR_FATAL;
1000 goto out;
1001 }
1002
1003 newsrv->check.use_ssl = curproxy->defsrv.check.use_ssl;
1004 newsrv->check.port = curproxy->defsrv.check.port;
Baptiste Assmann6b453f12016-08-11 23:12:18 +02001005 if (newsrv->check.port)
1006 newsrv->flags |= SRV_F_CHECKPORT;
Willy Tarreau272adea2014-03-31 10:39:59 +02001007 newsrv->check.inter = curproxy->defsrv.check.inter;
1008 newsrv->check.fastinter = curproxy->defsrv.check.fastinter;
1009 newsrv->check.downinter = curproxy->defsrv.check.downinter;
1010 newsrv->agent.use_ssl = curproxy->defsrv.agent.use_ssl;
1011 newsrv->agent.port = curproxy->defsrv.agent.port;
James Brown55f9ff12015-10-21 18:19:05 -07001012 if (curproxy->defsrv.agent.send_string != NULL)
1013 newsrv->agent.send_string = strdup(curproxy->defsrv.agent.send_string);
1014 newsrv->agent.send_string_len = curproxy->defsrv.agent.send_string_len;
Willy Tarreau272adea2014-03-31 10:39:59 +02001015 newsrv->agent.inter = curproxy->defsrv.agent.inter;
1016 newsrv->agent.fastinter = curproxy->defsrv.agent.fastinter;
1017 newsrv->agent.downinter = curproxy->defsrv.agent.downinter;
1018 newsrv->maxqueue = curproxy->defsrv.maxqueue;
1019 newsrv->minconn = curproxy->defsrv.minconn;
1020 newsrv->maxconn = curproxy->defsrv.maxconn;
1021 newsrv->slowstart = curproxy->defsrv.slowstart;
1022 newsrv->onerror = curproxy->defsrv.onerror;
1023 newsrv->onmarkeddown = curproxy->defsrv.onmarkeddown;
1024 newsrv->onmarkedup = curproxy->defsrv.onmarkedup;
1025 newsrv->consecutive_errors_limit
1026 = curproxy->defsrv.consecutive_errors_limit;
1027#ifdef OPENSSL
1028 newsrv->use_ssl = curproxy->defsrv.use_ssl;
1029#endif
1030 newsrv->uweight = newsrv->iweight
1031 = curproxy->defsrv.iweight;
1032
1033 newsrv->check.status = HCHK_STATUS_INI;
1034 newsrv->check.rise = curproxy->defsrv.check.rise;
1035 newsrv->check.fall = curproxy->defsrv.check.fall;
1036 newsrv->check.health = newsrv->check.rise; /* up, but will fall down at first failure */
1037 newsrv->check.server = newsrv;
Simon Hormane16c1b32015-01-30 11:22:57 +09001038 newsrv->check.tcpcheck_rules = &curproxy->tcpcheck_rules;
Willy Tarreau272adea2014-03-31 10:39:59 +02001039
1040 newsrv->agent.status = HCHK_STATUS_INI;
1041 newsrv->agent.rise = curproxy->defsrv.agent.rise;
1042 newsrv->agent.fall = curproxy->defsrv.agent.fall;
1043 newsrv->agent.health = newsrv->agent.rise; /* up, but will fall down at first failure */
1044 newsrv->agent.server = newsrv;
Thierry Fournierada34842016-02-17 21:25:09 +01001045 newsrv->dns_opts.family_prio = curproxy->defsrv.dns_opts.family_prio;
1046 if (newsrv->dns_opts.family_prio == AF_UNSPEC)
1047 newsrv->dns_opts.family_prio = AF_INET6;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001048 memcpy(newsrv->dns_opts.pref_net,
1049 curproxy->defsrv.dns_opts.pref_net,
1050 sizeof(newsrv->dns_opts.pref_net));
1051 newsrv->dns_opts.pref_net_nb = curproxy->defsrv.dns_opts.pref_net_nb;
Willy Tarreau272adea2014-03-31 10:39:59 +02001052
1053 cur_arg = 3;
1054 } else {
1055 newsrv = &curproxy->defsrv;
1056 cur_arg = 1;
Thierry Fournierada34842016-02-17 21:25:09 +01001057 newsrv->dns_opts.family_prio = AF_INET6;
Willy Tarreau272adea2014-03-31 10:39:59 +02001058 }
1059
1060 while (*args[cur_arg]) {
1061 if (!strcmp(args[cur_arg], "agent-check")) {
1062 global.maxsock++;
1063 do_agent = 1;
1064 cur_arg += 1;
1065 } else if (!strcmp(args[cur_arg], "agent-inter")) {
1066 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
1067 if (err) {
1068 Alert("parsing [%s:%d] : unexpected character '%c' in 'agent-inter' argument of server %s.\n",
1069 file, linenum, *err, newsrv->id);
1070 err_code |= ERR_ALERT | ERR_FATAL;
1071 goto out;
1072 }
1073 if (val <= 0) {
1074 Alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
1075 file, linenum, val, args[cur_arg], newsrv->id);
1076 err_code |= ERR_ALERT | ERR_FATAL;
1077 goto out;
1078 }
1079 newsrv->agent.inter = val;
1080 cur_arg += 2;
1081 }
1082 else if (!strcmp(args[cur_arg], "agent-port")) {
1083 global.maxsock++;
1084 newsrv->agent.port = atol(args[cur_arg + 1]);
1085 cur_arg += 2;
1086 }
James Brown55f9ff12015-10-21 18:19:05 -07001087 else if (!strcmp(args[cur_arg], "agent-send")) {
1088 global.maxsock++;
1089 free(newsrv->agent.send_string);
1090 newsrv->agent.send_string_len = strlen(args[cur_arg + 1]);
1091 newsrv->agent.send_string = calloc(1, newsrv->agent.send_string_len + 1);
1092 memcpy(newsrv->agent.send_string, args[cur_arg + 1], newsrv->agent.send_string_len);
1093 cur_arg += 2;
1094 }
Willy Tarreau272adea2014-03-31 10:39:59 +02001095 else if (!defsrv && !strcmp(args[cur_arg], "cookie")) {
1096 newsrv->cookie = strdup(args[cur_arg + 1]);
1097 newsrv->cklen = strlen(args[cur_arg + 1]);
1098 cur_arg += 2;
1099 }
1100 else if (!defsrv && !strcmp(args[cur_arg], "redir")) {
1101 newsrv->rdr_pfx = strdup(args[cur_arg + 1]);
1102 newsrv->rdr_len = strlen(args[cur_arg + 1]);
1103 cur_arg += 2;
1104 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02001105 else if (!strcmp(args[cur_arg], "resolvers")) {
1106 newsrv->resolvers_id = strdup(args[cur_arg + 1]);
1107 cur_arg += 2;
1108 }
1109 else if (!strcmp(args[cur_arg], "resolve-prefer")) {
1110 if (!strcmp(args[cur_arg + 1], "ipv4"))
Thierry Fournierada34842016-02-17 21:25:09 +01001111 newsrv->dns_opts.family_prio = AF_INET;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02001112 else if (!strcmp(args[cur_arg + 1], "ipv6"))
Thierry Fournierada34842016-02-17 21:25:09 +01001113 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02001114 else {
1115 Alert("parsing [%s:%d]: '%s' expects either ipv4 or ipv6 as argument.\n",
1116 file, linenum, args[cur_arg]);
1117 err_code |= ERR_ALERT | ERR_FATAL;
1118 goto out;
1119 }
1120 cur_arg += 2;
1121 }
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001122 else if (!strcmp(args[cur_arg], "resolve-net")) {
1123 char *p, *e;
1124 unsigned char mask;
1125 struct dns_options *opt;
1126
1127 if (!args[cur_arg + 1] || args[cur_arg + 1][0] == '\0') {
1128 Alert("parsing [%s:%d]: '%s' expects a list of networks.\n",
1129 file, linenum, args[cur_arg]);
1130 err_code |= ERR_ALERT | ERR_FATAL;
1131 goto out;
1132 }
1133
1134 opt = &newsrv->dns_opts;
1135
1136 /* Split arguments by comma, and convert it from ipv4 or ipv6
1137 * string network in in_addr or in6_addr.
1138 */
1139 p = args[cur_arg + 1];
1140 e = p;
1141 while (*p != '\0') {
1142 /* If no room avalaible, return error. */
David Carlierd10025c2016-04-08 10:26:44 +01001143 if (opt->pref_net_nb >= SRV_MAX_PREF_NET) {
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001144 Alert("parsing [%s:%d]: '%s' exceed %d networks.\n",
1145 file, linenum, args[cur_arg], SRV_MAX_PREF_NET);
1146 err_code |= ERR_ALERT | ERR_FATAL;
1147 goto out;
1148 }
1149 /* look for end or comma. */
1150 while (*e != ',' && *e != '\0')
1151 e++;
1152 if (*e == ',') {
1153 *e = '\0';
1154 e++;
1155 }
1156 if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4,
1157 &opt->pref_net[opt->pref_net_nb].mask.in4)) {
1158 /* Try to convert input string from ipv4 or ipv6 network. */
1159 opt->pref_net[opt->pref_net_nb].family = AF_INET;
1160 } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6,
1161 &mask)) {
1162 /* Try to convert input string from ipv6 network. */
1163 len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6);
1164 opt->pref_net[opt->pref_net_nb].family = AF_INET6;
1165 } else {
1166 /* All network conversions fail, retrun error. */
1167 Alert("parsing [%s:%d]: '%s': invalid network '%s'.\n",
1168 file, linenum, args[cur_arg], p);
1169 err_code |= ERR_ALERT | ERR_FATAL;
1170 goto out;
1171 }
1172 opt->pref_net_nb++;
1173 p = e;
1174 }
1175
1176 cur_arg += 2;
1177 }
Willy Tarreau272adea2014-03-31 10:39:59 +02001178 else if (!strcmp(args[cur_arg], "rise")) {
1179 if (!*args[cur_arg + 1]) {
1180 Alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
1181 file, linenum, args[cur_arg]);
1182 err_code |= ERR_ALERT | ERR_FATAL;
1183 goto out;
1184 }
1185
1186 newsrv->check.rise = atol(args[cur_arg + 1]);
1187 if (newsrv->check.rise <= 0) {
1188 Alert("parsing [%s:%d]: '%s' has to be > 0.\n",
1189 file, linenum, args[cur_arg]);
1190 err_code |= ERR_ALERT | ERR_FATAL;
1191 goto out;
1192 }
1193
1194 if (newsrv->check.health)
1195 newsrv->check.health = newsrv->check.rise;
1196 cur_arg += 2;
1197 }
1198 else if (!strcmp(args[cur_arg], "fall")) {
1199 newsrv->check.fall = atol(args[cur_arg + 1]);
1200
1201 if (!*args[cur_arg + 1]) {
1202 Alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
1203 file, linenum, args[cur_arg]);
1204 err_code |= ERR_ALERT | ERR_FATAL;
1205 goto out;
1206 }
1207
1208 if (newsrv->check.fall <= 0) {
1209 Alert("parsing [%s:%d]: '%s' has to be > 0.\n",
1210 file, linenum, args[cur_arg]);
1211 err_code |= ERR_ALERT | ERR_FATAL;
1212 goto out;
1213 }
1214
1215 cur_arg += 2;
1216 }
1217 else if (!strcmp(args[cur_arg], "inter")) {
1218 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
1219 if (err) {
1220 Alert("parsing [%s:%d] : unexpected character '%c' in 'inter' argument of server %s.\n",
1221 file, linenum, *err, newsrv->id);
1222 err_code |= ERR_ALERT | ERR_FATAL;
1223 goto out;
1224 }
1225 if (val <= 0) {
1226 Alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
1227 file, linenum, val, args[cur_arg], newsrv->id);
1228 err_code |= ERR_ALERT | ERR_FATAL;
1229 goto out;
1230 }
1231 newsrv->check.inter = val;
1232 cur_arg += 2;
1233 }
1234 else if (!strcmp(args[cur_arg], "fastinter")) {
1235 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
1236 if (err) {
1237 Alert("parsing [%s:%d]: unexpected character '%c' in 'fastinter' argument of server %s.\n",
1238 file, linenum, *err, newsrv->id);
1239 err_code |= ERR_ALERT | ERR_FATAL;
1240 goto out;
1241 }
1242 if (val <= 0) {
1243 Alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
1244 file, linenum, val, args[cur_arg], newsrv->id);
1245 err_code |= ERR_ALERT | ERR_FATAL;
1246 goto out;
1247 }
1248 newsrv->check.fastinter = val;
1249 cur_arg += 2;
1250 }
1251 else if (!strcmp(args[cur_arg], "downinter")) {
1252 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
1253 if (err) {
1254 Alert("parsing [%s:%d]: unexpected character '%c' in 'downinter' argument of server %s.\n",
1255 file, linenum, *err, newsrv->id);
1256 err_code |= ERR_ALERT | ERR_FATAL;
1257 goto out;
1258 }
1259 if (val <= 0) {
1260 Alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
1261 file, linenum, val, args[cur_arg], newsrv->id);
1262 err_code |= ERR_ALERT | ERR_FATAL;
1263 goto out;
1264 }
1265 newsrv->check.downinter = val;
1266 cur_arg += 2;
1267 }
1268 else if (!defsrv && !strcmp(args[cur_arg], "addr")) {
1269 struct sockaddr_storage *sk;
1270 int port1, port2;
1271 struct protocol *proto;
1272
Thierry FOURNIER7fe3be72015-09-26 20:03:36 +02001273 sk = str2sa_range(args[cur_arg + 1], &port1, &port2, &errmsg, NULL, NULL, 1);
Willy Tarreau272adea2014-03-31 10:39:59 +02001274 if (!sk) {
1275 Alert("parsing [%s:%d] : '%s' : %s\n",
1276 file, linenum, args[cur_arg], errmsg);
1277 err_code |= ERR_ALERT | ERR_FATAL;
1278 goto out;
1279 }
1280
1281 proto = protocol_by_family(sk->ss_family);
1282 if (!proto || !proto->connect) {
1283 Alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
1284 file, linenum, args[cur_arg], args[cur_arg + 1]);
1285 err_code |= ERR_ALERT | ERR_FATAL;
1286 goto out;
1287 }
1288
1289 if (port1 != port2) {
1290 Alert("parsing [%s:%d] : '%s' : port ranges and offsets are not allowed in '%s'\n",
1291 file, linenum, args[cur_arg], args[cur_arg + 1]);
1292 err_code |= ERR_ALERT | ERR_FATAL;
1293 goto out;
1294 }
1295
Simon Horman41f58762015-01-30 11:22:56 +09001296 newsrv->check.addr = newsrv->agent.addr = *sk;
Baptiste Assmann6b453f12016-08-11 23:12:18 +02001297 newsrv->flags |= SRV_F_CHECKADDR;
1298 newsrv->flags |= SRV_F_AGENTADDR;
Willy Tarreau272adea2014-03-31 10:39:59 +02001299 cur_arg += 2;
1300 }
1301 else if (!strcmp(args[cur_arg], "port")) {
1302 newsrv->check.port = atol(args[cur_arg + 1]);
Baptiste Assmann6b453f12016-08-11 23:12:18 +02001303 newsrv->flags |= SRV_F_CHECKPORT;
Willy Tarreau272adea2014-03-31 10:39:59 +02001304 cur_arg += 2;
1305 }
1306 else if (!defsrv && !strcmp(args[cur_arg], "backup")) {
Willy Tarreauc93cd162014-05-13 15:54:22 +02001307 newsrv->flags |= SRV_F_BACKUP;
Willy Tarreau272adea2014-03-31 10:39:59 +02001308 cur_arg ++;
1309 }
1310 else if (!defsrv && !strcmp(args[cur_arg], "non-stick")) {
Willy Tarreauc93cd162014-05-13 15:54:22 +02001311 newsrv->flags |= SRV_F_NON_STICK;
Willy Tarreau272adea2014-03-31 10:39:59 +02001312 cur_arg ++;
1313 }
1314 else if (!defsrv && !strcmp(args[cur_arg], "send-proxy")) {
David Safb76832014-05-08 23:42:08 -04001315 newsrv->pp_opts |= SRV_PP_V1;
Willy Tarreau272adea2014-03-31 10:39:59 +02001316 cur_arg ++;
1317 }
David Safb76832014-05-08 23:42:08 -04001318 else if (!defsrv && !strcmp(args[cur_arg], "send-proxy-v2")) {
1319 newsrv->pp_opts |= SRV_PP_V2;
1320 cur_arg ++;
1321 }
Willy Tarreau272adea2014-03-31 10:39:59 +02001322 else if (!defsrv && !strcmp(args[cur_arg], "check-send-proxy")) {
1323 newsrv->check.send_proxy = 1;
1324 cur_arg ++;
1325 }
1326 else if (!strcmp(args[cur_arg], "weight")) {
1327 int w;
1328 w = atol(args[cur_arg + 1]);
1329 if (w < 0 || w > SRV_UWGHT_MAX) {
1330 Alert("parsing [%s:%d] : weight of server %s is not within 0 and %d (%d).\n",
1331 file, linenum, newsrv->id, SRV_UWGHT_MAX, w);
1332 err_code |= ERR_ALERT | ERR_FATAL;
1333 goto out;
1334 }
1335 newsrv->uweight = newsrv->iweight = w;
1336 cur_arg += 2;
1337 }
1338 else if (!strcmp(args[cur_arg], "minconn")) {
1339 newsrv->minconn = atol(args[cur_arg + 1]);
1340 cur_arg += 2;
1341 }
1342 else if (!strcmp(args[cur_arg], "maxconn")) {
1343 newsrv->maxconn = atol(args[cur_arg + 1]);
1344 cur_arg += 2;
1345 }
1346 else if (!strcmp(args[cur_arg], "maxqueue")) {
1347 newsrv->maxqueue = atol(args[cur_arg + 1]);
1348 cur_arg += 2;
1349 }
1350 else if (!strcmp(args[cur_arg], "slowstart")) {
1351 /* slowstart is stored in seconds */
1352 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
1353 if (err) {
1354 Alert("parsing [%s:%d] : unexpected character '%c' in 'slowstart' argument of server %s.\n",
1355 file, linenum, *err, newsrv->id);
1356 err_code |= ERR_ALERT | ERR_FATAL;
1357 goto out;
1358 }
1359 newsrv->slowstart = (val + 999) / 1000;
1360 cur_arg += 2;
1361 }
1362 else if (!defsrv && !strcmp(args[cur_arg], "track")) {
1363
1364 if (!*args[cur_arg + 1]) {
1365 Alert("parsing [%s:%d]: 'track' expects [<proxy>/]<server> as argument.\n",
1366 file, linenum);
1367 err_code |= ERR_ALERT | ERR_FATAL;
1368 goto out;
1369 }
1370
1371 newsrv->trackit = strdup(args[cur_arg + 1]);
1372
1373 cur_arg += 2;
1374 }
1375 else if (!defsrv && !strcmp(args[cur_arg], "check")) {
1376 global.maxsock++;
1377 do_check = 1;
1378 cur_arg += 1;
1379 }
1380 else if (!defsrv && !strcmp(args[cur_arg], "disabled")) {
Baptiste Assmann9f5ada32015-08-08 15:49:13 +02001381 newsrv->admin |= SRV_ADMF_CMAINT;
Baptiste Assmann54a47302015-09-18 10:30:03 +02001382 newsrv->admin |= SRV_ADMF_FMAINT;
Willy Tarreau892337c2014-05-13 23:41:20 +02001383 newsrv->state = SRV_ST_STOPPED;
Willy Tarreau272adea2014-03-31 10:39:59 +02001384 newsrv->check.state |= CHK_ST_PAUSED;
1385 newsrv->check.health = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02001386 cur_arg += 1;
1387 }
1388 else if (!defsrv && !strcmp(args[cur_arg], "observe")) {
1389 if (!strcmp(args[cur_arg + 1], "none"))
1390 newsrv->observe = HANA_OBS_NONE;
1391 else if (!strcmp(args[cur_arg + 1], "layer4"))
1392 newsrv->observe = HANA_OBS_LAYER4;
1393 else if (!strcmp(args[cur_arg + 1], "layer7")) {
1394 if (curproxy->mode != PR_MODE_HTTP) {
1395 Alert("parsing [%s:%d]: '%s' can only be used in http proxies.\n",
1396 file, linenum, args[cur_arg + 1]);
1397 err_code |= ERR_ALERT;
1398 }
1399 newsrv->observe = HANA_OBS_LAYER7;
1400 }
1401 else {
1402 Alert("parsing [%s:%d]: '%s' expects one of 'none', "
1403 "'layer4', 'layer7' but got '%s'\n",
1404 file, linenum, args[cur_arg], args[cur_arg + 1]);
1405 err_code |= ERR_ALERT | ERR_FATAL;
1406 goto out;
1407 }
1408
1409 cur_arg += 2;
1410 }
1411 else if (!strcmp(args[cur_arg], "on-error")) {
1412 if (!strcmp(args[cur_arg + 1], "fastinter"))
1413 newsrv->onerror = HANA_ONERR_FASTINTER;
1414 else if (!strcmp(args[cur_arg + 1], "fail-check"))
1415 newsrv->onerror = HANA_ONERR_FAILCHK;
1416 else if (!strcmp(args[cur_arg + 1], "sudden-death"))
1417 newsrv->onerror = HANA_ONERR_SUDDTH;
1418 else if (!strcmp(args[cur_arg + 1], "mark-down"))
1419 newsrv->onerror = HANA_ONERR_MARKDWN;
1420 else {
1421 Alert("parsing [%s:%d]: '%s' expects one of 'fastinter', "
1422 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'\n",
1423 file, linenum, args[cur_arg], args[cur_arg + 1]);
1424 err_code |= ERR_ALERT | ERR_FATAL;
1425 goto out;
1426 }
1427
1428 cur_arg += 2;
1429 }
1430 else if (!strcmp(args[cur_arg], "on-marked-down")) {
1431 if (!strcmp(args[cur_arg + 1], "shutdown-sessions"))
1432 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
1433 else {
1434 Alert("parsing [%s:%d]: '%s' expects 'shutdown-sessions' but got '%s'\n",
1435 file, linenum, args[cur_arg], args[cur_arg + 1]);
1436 err_code |= ERR_ALERT | ERR_FATAL;
1437 goto out;
1438 }
1439
1440 cur_arg += 2;
1441 }
1442 else if (!strcmp(args[cur_arg], "on-marked-up")) {
1443 if (!strcmp(args[cur_arg + 1], "shutdown-backup-sessions"))
1444 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
1445 else {
1446 Alert("parsing [%s:%d]: '%s' expects 'shutdown-backup-sessions' but got '%s'\n",
1447 file, linenum, args[cur_arg], args[cur_arg + 1]);
1448 err_code |= ERR_ALERT | ERR_FATAL;
1449 goto out;
1450 }
1451
1452 cur_arg += 2;
1453 }
1454 else if (!strcmp(args[cur_arg], "error-limit")) {
1455 if (!*args[cur_arg + 1]) {
1456 Alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
1457 file, linenum, args[cur_arg]);
1458 err_code |= ERR_ALERT | ERR_FATAL;
1459 goto out;
1460 }
1461
1462 newsrv->consecutive_errors_limit = atoi(args[cur_arg + 1]);
1463
1464 if (newsrv->consecutive_errors_limit <= 0) {
1465 Alert("parsing [%s:%d]: %s has to be > 0.\n",
1466 file, linenum, args[cur_arg]);
1467 err_code |= ERR_ALERT | ERR_FATAL;
1468 goto out;
1469 }
1470 cur_arg += 2;
1471 }
1472 else if (!defsrv && !strcmp(args[cur_arg], "source")) { /* address to which we bind when connecting */
1473 int port_low, port_high;
1474 struct sockaddr_storage *sk;
1475 struct protocol *proto;
1476
1477 if (!*args[cur_arg + 1]) {
1478 Alert("parsing [%s:%d] : '%s' expects <addr>[:<port>[-<port>]], and optionally '%s' <addr>, and '%s' <name> as argument.\n",
1479 file, linenum, "source", "usesrc", "interface");
1480 err_code |= ERR_ALERT | ERR_FATAL;
1481 goto out;
1482 }
1483
1484 newsrv->conn_src.opts |= CO_SRC_BIND;
Thierry FOURNIER7fe3be72015-09-26 20:03:36 +02001485 sk = str2sa_range(args[cur_arg + 1], &port_low, &port_high, &errmsg, NULL, NULL, 1);
Willy Tarreau272adea2014-03-31 10:39:59 +02001486 if (!sk) {
1487 Alert("parsing [%s:%d] : '%s %s' : %s\n",
1488 file, linenum, args[cur_arg], args[cur_arg+1], errmsg);
1489 err_code |= ERR_ALERT | ERR_FATAL;
1490 goto out;
1491 }
1492
1493 proto = protocol_by_family(sk->ss_family);
1494 if (!proto || !proto->connect) {
1495 Alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
1496 file, linenum, args[cur_arg], args[cur_arg+1]);
1497 err_code |= ERR_ALERT | ERR_FATAL;
1498 goto out;
1499 }
1500
1501 newsrv->conn_src.source_addr = *sk;
1502
1503 if (port_low != port_high) {
1504 int i;
1505
1506 if (!port_low || !port_high) {
1507 Alert("parsing [%s:%d] : %s does not support port offsets (found '%s').\n",
1508 file, linenum, args[cur_arg], args[cur_arg + 1]);
1509 err_code |= ERR_ALERT | ERR_FATAL;
1510 goto out;
1511 }
1512
1513 if (port_low <= 0 || port_low > 65535 ||
1514 port_high <= 0 || port_high > 65535 ||
1515 port_low > port_high) {
1516 Alert("parsing [%s:%d] : invalid source port range %d-%d.\n",
1517 file, linenum, port_low, port_high);
1518 err_code |= ERR_ALERT | ERR_FATAL;
1519 goto out;
1520 }
1521 newsrv->conn_src.sport_range = port_range_alloc_range(port_high - port_low + 1);
1522 for (i = 0; i < newsrv->conn_src.sport_range->size; i++)
1523 newsrv->conn_src.sport_range->ports[i] = port_low + i;
1524 }
1525
1526 cur_arg += 2;
1527 while (*(args[cur_arg])) {
1528 if (!strcmp(args[cur_arg], "usesrc")) { /* address to use outside */
Willy Tarreau29fbe512015-08-20 19:35:14 +02001529#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreau272adea2014-03-31 10:39:59 +02001530 if (!*args[cur_arg + 1]) {
1531 Alert("parsing [%s:%d] : '%s' expects <addr>[:<port>], 'client', 'clientip', or 'hdr_ip(name,#)' as argument.\n",
1532 file, linenum, "usesrc");
1533 err_code |= ERR_ALERT | ERR_FATAL;
1534 goto out;
1535 }
1536 if (!strcmp(args[cur_arg + 1], "client")) {
1537 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1538 newsrv->conn_src.opts |= CO_SRC_TPROXY_CLI;
1539 } else if (!strcmp(args[cur_arg + 1], "clientip")) {
1540 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1541 newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP;
1542 } else if (!strncmp(args[cur_arg + 1], "hdr_ip(", 7)) {
1543 char *name, *end;
1544
1545 name = args[cur_arg+1] + 7;
1546 while (isspace(*name))
1547 name++;
1548
1549 end = name;
1550 while (*end && !isspace(*end) && *end != ',' && *end != ')')
1551 end++;
1552
1553 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1554 newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN;
1555 newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1);
1556 newsrv->conn_src.bind_hdr_len = end - name;
1557 memcpy(newsrv->conn_src.bind_hdr_name, name, end - name);
1558 newsrv->conn_src.bind_hdr_name[end-name] = '\0';
1559 newsrv->conn_src.bind_hdr_occ = -1;
1560
1561 /* now look for an occurrence number */
1562 while (isspace(*end))
1563 end++;
1564 if (*end == ',') {
1565 end++;
1566 name = end;
1567 if (*end == '-')
1568 end++;
1569 while (isdigit((int)*end))
1570 end++;
1571 newsrv->conn_src.bind_hdr_occ = strl2ic(name, end-name);
1572 }
1573
1574 if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) {
1575 Alert("parsing [%s:%d] : usesrc hdr_ip(name,num) does not support negative"
1576 " occurrences values smaller than %d.\n",
1577 file, linenum, MAX_HDR_HISTORY);
1578 err_code |= ERR_ALERT | ERR_FATAL;
1579 goto out;
1580 }
1581 } else {
1582 struct sockaddr_storage *sk;
1583 int port1, port2;
1584
Thierry FOURNIER7fe3be72015-09-26 20:03:36 +02001585 sk = str2sa_range(args[cur_arg + 1], &port1, &port2, &errmsg, NULL, NULL, 1);
Willy Tarreau272adea2014-03-31 10:39:59 +02001586 if (!sk) {
1587 Alert("parsing [%s:%d] : '%s %s' : %s\n",
1588 file, linenum, args[cur_arg], args[cur_arg+1], errmsg);
1589 err_code |= ERR_ALERT | ERR_FATAL;
1590 goto out;
1591 }
1592
1593 proto = protocol_by_family(sk->ss_family);
1594 if (!proto || !proto->connect) {
1595 Alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
1596 file, linenum, args[cur_arg], args[cur_arg+1]);
1597 err_code |= ERR_ALERT | ERR_FATAL;
1598 goto out;
1599 }
1600
1601 if (port1 != port2) {
1602 Alert("parsing [%s:%d] : '%s' : port ranges and offsets are not allowed in '%s'\n",
1603 file, linenum, args[cur_arg], args[cur_arg + 1]);
1604 err_code |= ERR_ALERT | ERR_FATAL;
1605 goto out;
1606 }
1607 newsrv->conn_src.tproxy_addr = *sk;
1608 newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR;
1609 }
1610 global.last_checks |= LSTCHK_NETADM;
Willy Tarreau272adea2014-03-31 10:39:59 +02001611 cur_arg += 2;
1612 continue;
1613#else /* no TPROXY support */
1614 Alert("parsing [%s:%d] : '%s' not allowed here because support for TPROXY was not compiled in.\n",
1615 file, linenum, "usesrc");
1616 err_code |= ERR_ALERT | ERR_FATAL;
1617 goto out;
Willy Tarreau29fbe512015-08-20 19:35:14 +02001618#endif /* defined(CONFIG_HAP_TRANSPARENT) */
Willy Tarreau272adea2014-03-31 10:39:59 +02001619 } /* "usesrc" */
1620
1621 if (!strcmp(args[cur_arg], "interface")) { /* specifically bind to this interface */
1622#ifdef SO_BINDTODEVICE
1623 if (!*args[cur_arg + 1]) {
1624 Alert("parsing [%s:%d] : '%s' : missing interface name.\n",
1625 file, linenum, args[0]);
1626 err_code |= ERR_ALERT | ERR_FATAL;
1627 goto out;
1628 }
1629 free(newsrv->conn_src.iface_name);
1630 newsrv->conn_src.iface_name = strdup(args[cur_arg + 1]);
1631 newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name);
1632 global.last_checks |= LSTCHK_NETADM;
1633#else
1634 Alert("parsing [%s:%d] : '%s' : '%s' option not implemented.\n",
1635 file, linenum, args[0], args[cur_arg]);
1636 err_code |= ERR_ALERT | ERR_FATAL;
1637 goto out;
1638#endif
1639 cur_arg += 2;
1640 continue;
1641 }
1642 /* this keyword in not an option of "source" */
1643 break;
1644 } /* while */
1645 }
1646 else if (!defsrv && !strcmp(args[cur_arg], "usesrc")) { /* address to use outside: needs "source" first */
1647 Alert("parsing [%s:%d] : '%s' only allowed after a '%s' statement.\n",
1648 file, linenum, "usesrc", "source");
1649 err_code |= ERR_ALERT | ERR_FATAL;
1650 goto out;
1651 }
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001652 else if (!defsrv && !strcmp(args[cur_arg], "namespace")) {
1653#ifdef CONFIG_HAP_NS
1654 char *arg = args[cur_arg + 1];
1655 if (!strcmp(arg, "*")) {
1656 newsrv->flags |= SRV_F_USE_NS_FROM_PP;
1657 } else {
1658 newsrv->netns = netns_store_lookup(arg, strlen(arg));
1659
1660 if (newsrv->netns == NULL)
1661 newsrv->netns = netns_store_insert(arg);
1662
1663 if (newsrv->netns == NULL) {
1664 Alert("Cannot open namespace '%s'.\n", args[cur_arg + 1]);
1665 err_code |= ERR_ALERT | ERR_FATAL;
1666 goto out;
1667 }
1668 }
1669#else
1670 Alert("parsing [%s:%d] : '%s' : '%s' option not implemented.\n",
1671 file, linenum, args[0], args[cur_arg]);
1672 err_code |= ERR_ALERT | ERR_FATAL;
1673 goto out;
1674#endif
1675 cur_arg += 2;
1676 }
Willy Tarreau272adea2014-03-31 10:39:59 +02001677 else {
1678 static int srv_dumped;
1679 struct srv_kw *kw;
1680 char *err;
1681
1682 kw = srv_find_kw(args[cur_arg]);
1683 if (kw) {
1684 char *err = NULL;
1685 int code;
1686
1687 if (!kw->parse) {
1688 Alert("parsing [%s:%d] : '%s %s' : '%s' option is not implemented in this version (check build options).\n",
1689 file, linenum, args[0], args[1], args[cur_arg]);
1690 cur_arg += 1 + kw->skip ;
1691 err_code |= ERR_ALERT | ERR_FATAL;
1692 goto out;
1693 }
1694
1695 if (defsrv && !kw->default_ok) {
1696 Alert("parsing [%s:%d] : '%s %s' : '%s' option is not accepted in default-server sections.\n",
1697 file, linenum, args[0], args[1], args[cur_arg]);
1698 cur_arg += 1 + kw->skip ;
1699 err_code |= ERR_ALERT;
1700 continue;
1701 }
1702
1703 code = kw->parse(args, &cur_arg, curproxy, newsrv, &err);
1704 err_code |= code;
1705
1706 if (code) {
1707 if (err && *err) {
1708 indent_msg(&err, 2);
1709 Alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], err);
1710 }
1711 else
1712 Alert("parsing [%s:%d] : '%s %s' : error encountered while processing '%s'.\n",
1713 file, linenum, args[0], args[1], args[cur_arg]);
1714 if (code & ERR_FATAL) {
1715 free(err);
1716 cur_arg += 1 + kw->skip;
1717 goto out;
1718 }
1719 }
1720 free(err);
1721 cur_arg += 1 + kw->skip;
1722 continue;
1723 }
1724
1725 err = NULL;
1726 if (!srv_dumped) {
1727 srv_dump_kws(&err);
1728 indent_msg(&err, 4);
1729 srv_dumped = 1;
1730 }
1731
1732 Alert("parsing [%s:%d] : '%s %s' unknown keyword '%s'.%s%s\n",
1733 file, linenum, args[0], args[1], args[cur_arg],
1734 err ? " Registered keywords :" : "", err ? err : "");
1735 free(err);
1736
1737 err_code |= ERR_ALERT | ERR_FATAL;
1738 goto out;
1739 }
1740 }
1741
Willy Tarreau272adea2014-03-31 10:39:59 +02001742 if (do_check) {
Simon Hormanb1900d52015-01-30 11:22:54 +09001743 const char *ret;
Willy Tarreau272adea2014-03-31 10:39:59 +02001744
1745 if (newsrv->trackit) {
1746 Alert("parsing [%s:%d]: unable to enable checks and tracking at the same time!\n",
1747 file, linenum);
1748 err_code |= ERR_ALERT | ERR_FATAL;
1749 goto out;
1750 }
1751
Willy Tarreau272adea2014-03-31 10:39:59 +02001752 /*
1753 * We need at least a service port, a check port or the first tcp-check rule must
Willy Tarreau5cf0b522014-05-09 23:59:19 +02001754 * be a 'connect' one when checking an IPv4/IPv6 server.
Willy Tarreau272adea2014-03-31 10:39:59 +02001755 */
Baptiste Assmann95db2bc2016-06-13 14:15:41 +02001756 if ((srv_check_healthcheck_port(&newsrv->check) == 0) &&
Simon Horman41f58762015-01-30 11:22:56 +09001757 (is_inet_addr(&newsrv->check.addr) ||
1758 (!is_addr(&newsrv->check.addr) && is_inet_addr(&newsrv->addr)))) {
Willy Tarreau1a786d72016-03-08 15:20:25 +01001759 struct tcpcheck_rule *r = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001760 struct list *l;
1761
1762 r = (struct tcpcheck_rule *)newsrv->proxy->tcpcheck_rules.n;
1763 if (!r) {
1764 Alert("parsing [%s:%d] : server %s has neither service port nor check port. Check has been disabled.\n",
1765 file, linenum, newsrv->id);
1766 err_code |= ERR_ALERT | ERR_FATAL;
1767 goto out;
1768 }
Baptiste Assmannbaf97942015-12-04 06:49:31 +01001769 /* search the first action (connect / send / expect) in the list */
1770 l = &newsrv->proxy->tcpcheck_rules;
Willy Tarreau1a786d72016-03-08 15:20:25 +01001771 list_for_each_entry(r, l, list) {
Baptiste Assmannbaf97942015-12-04 06:49:31 +01001772 if (r->action != TCPCHK_ACT_COMMENT)
1773 break;
1774 }
Willy Tarreau272adea2014-03-31 10:39:59 +02001775 if ((r->action != TCPCHK_ACT_CONNECT) || !r->port) {
1776 Alert("parsing [%s:%d] : server %s has neither service port nor check port nor tcp_check rule 'connect' with port information. Check has been disabled.\n",
1777 file, linenum, newsrv->id);
1778 err_code |= ERR_ALERT | ERR_FATAL;
1779 goto out;
1780 }
1781 else {
1782 /* scan the tcp-check ruleset to ensure a port has been configured */
1783 l = &newsrv->proxy->tcpcheck_rules;
Willy Tarreau1a786d72016-03-08 15:20:25 +01001784 list_for_each_entry(r, l, list) {
Willy Tarreau272adea2014-03-31 10:39:59 +02001785 if ((r->action == TCPCHK_ACT_CONNECT) && (!r->port)) {
1786 Alert("parsing [%s:%d] : server %s has neither service port nor check port, and a tcp_check rule 'connect' with no port information. Check has been disabled.\n",
1787 file, linenum, newsrv->id);
1788 err_code |= ERR_ALERT | ERR_FATAL;
1789 goto out;
1790 }
1791 }
1792 }
1793 }
1794
1795 /* note: check type will be set during the config review phase */
Simon Hormanb1900d52015-01-30 11:22:54 +09001796 ret = init_check(&newsrv->check, 0);
Willy Tarreau272adea2014-03-31 10:39:59 +02001797 if (ret) {
Simon Hormanb1900d52015-01-30 11:22:54 +09001798 Alert("parsing [%s:%d] : %s.\n", file, linenum, ret);
1799 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau272adea2014-03-31 10:39:59 +02001800 goto out;
1801 }
1802
Baptiste Assmanna68ca962015-04-14 01:15:08 +02001803 if (newsrv->resolution)
Thierry Fournierada34842016-02-17 21:25:09 +01001804 newsrv->resolution->opts = &newsrv->dns_opts;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02001805
Willy Tarreau272adea2014-03-31 10:39:59 +02001806 newsrv->check.state |= CHK_ST_CONFIGURED | CHK_ST_ENABLED;
1807 }
1808
1809 if (do_agent) {
Simon Hormanb1900d52015-01-30 11:22:54 +09001810 const char *ret;
Willy Tarreau272adea2014-03-31 10:39:59 +02001811
1812 if (!newsrv->agent.port) {
1813 Alert("parsing [%s:%d] : server %s does not have agent port. Agent check has been disabled.\n",
1814 file, linenum, newsrv->id);
1815 err_code |= ERR_ALERT | ERR_FATAL;
1816 goto out;
1817 }
1818
1819 if (!newsrv->agent.inter)
1820 newsrv->agent.inter = newsrv->check.inter;
1821
Simon Hormanb1900d52015-01-30 11:22:54 +09001822 ret = init_check(&newsrv->agent, PR_O2_LB_AGENT_CHK);
Willy Tarreau272adea2014-03-31 10:39:59 +02001823 if (ret) {
Simon Hormanb1900d52015-01-30 11:22:54 +09001824 Alert("parsing [%s:%d] : %s.\n", file, linenum, ret);
1825 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau272adea2014-03-31 10:39:59 +02001826 goto out;
1827 }
1828
1829 newsrv->agent.state |= CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_AGENT;
1830 }
1831
1832 if (!defsrv) {
Willy Tarreauc93cd162014-05-13 15:54:22 +02001833 if (newsrv->flags & SRV_F_BACKUP)
Willy Tarreau272adea2014-03-31 10:39:59 +02001834 curproxy->srv_bck++;
1835 else
1836 curproxy->srv_act++;
1837
Willy Tarreauc5150da2014-05-13 19:27:31 +02001838 srv_lb_commit_status(newsrv);
Willy Tarreau272adea2014-03-31 10:39:59 +02001839 }
1840 }
Willy Tarreau07101d52015-09-08 16:16:35 +02001841 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02001842 return 0;
1843
1844 out:
Willy Tarreau07101d52015-09-08 16:16:35 +02001845 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02001846 free(errmsg);
1847 return err_code;
1848}
1849
Baptiste Assmann19a106d2015-07-08 22:03:56 +02001850/* Returns a pointer to the first server matching either id <id>.
1851 * NULL is returned if no match is found.
1852 * the lookup is performed in the backend <bk>
1853 */
1854struct server *server_find_by_id(struct proxy *bk, int id)
1855{
1856 struct eb32_node *eb32;
1857 struct server *curserver;
1858
1859 if (!bk || (id ==0))
1860 return NULL;
1861
1862 /* <bk> has no backend capabilities, so it can't have a server */
1863 if (!(bk->cap & PR_CAP_BE))
1864 return NULL;
1865
1866 curserver = NULL;
1867
1868 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
1869 if (eb32)
1870 curserver = container_of(eb32, struct server, conf.id);
1871
1872 return curserver;
1873}
1874
1875/* Returns a pointer to the first server matching either name <name>, or id
1876 * if <name> starts with a '#'. NULL is returned if no match is found.
1877 * the lookup is performed in the backend <bk>
1878 */
1879struct server *server_find_by_name(struct proxy *bk, const char *name)
1880{
1881 struct server *curserver;
1882
1883 if (!bk || !name)
1884 return NULL;
1885
1886 /* <bk> has no backend capabilities, so it can't have a server */
1887 if (!(bk->cap & PR_CAP_BE))
1888 return NULL;
1889
1890 curserver = NULL;
1891 if (*name == '#') {
1892 curserver = server_find_by_id(bk, atoi(name + 1));
1893 if (curserver)
1894 return curserver;
1895 }
1896 else {
1897 curserver = bk->srv;
1898
1899 while (curserver && (strcmp(curserver->id, name) != 0))
1900 curserver = curserver->next;
1901
1902 if (curserver)
1903 return curserver;
1904 }
1905
1906 return NULL;
1907}
1908
1909struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
1910{
1911 struct server *byname;
1912 struct server *byid;
1913
1914 if (!name && !id)
1915 return NULL;
1916
1917 if (diff)
1918 *diff = 0;
1919
1920 byname = byid = NULL;
1921
1922 if (name) {
1923 byname = server_find_by_name(bk, name);
1924 if (byname && (!id || byname->puid == id))
1925 return byname;
1926 }
1927
1928 /* remaining possibilities :
1929 * - name not set
1930 * - name set but not found
1931 * - name found but ID doesn't match
1932 */
1933 if (id) {
1934 byid = server_find_by_id(bk, id);
1935 if (byid) {
1936 if (byname) {
1937 /* use id only if forced by configuration */
1938 if (byid->flags & SRV_F_FORCED_ID) {
1939 if (diff)
1940 *diff |= 2;
1941 return byid;
1942 }
1943 else {
1944 if (diff)
1945 *diff |= 1;
1946 return byname;
1947 }
1948 }
1949
1950 /* remaining possibilities:
1951 * - name not set
1952 * - name set but not found
1953 */
1954 if (name && diff)
1955 *diff |= 2;
1956 return byid;
1957 }
1958
1959 /* id bot found */
1960 if (byname) {
1961 if (diff)
1962 *diff |= 1;
1963 return byname;
1964 }
1965 }
1966
1967 return NULL;
1968}
1969
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02001970/* Update a server state using the parameters available in the params list */
1971static void srv_update_state(struct server *srv, int version, char **params)
1972{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02001973 char *p;
Willy Tarreau31138fa2015-09-29 18:38:47 +02001974 struct chunk *msg;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02001975
1976 /* fields since version 1
1977 * and common to all other upcoming versions
1978 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02001979 enum srv_state srv_op_state;
1980 enum srv_admin srv_admin_state;
1981 unsigned srv_uweight, srv_iweight;
1982 unsigned long srv_last_time_change;
1983 short srv_check_status;
1984 enum chk_result srv_check_result;
1985 int srv_check_health;
1986 int srv_check_state, srv_agent_state;
1987 int bk_f_forced_id;
1988 int srv_f_forced_id;
1989
Willy Tarreau31138fa2015-09-29 18:38:47 +02001990 msg = get_trash_chunk();
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02001991 switch (version) {
1992 case 1:
1993 /*
1994 * now we can proceed with server's state update:
1995 * srv_addr: params[0]
1996 * srv_op_state: params[1]
1997 * srv_admin_state: params[2]
1998 * srv_uweight: params[3]
1999 * srv_iweight: params[4]
2000 * srv_last_time_change: params[5]
2001 * srv_check_status: params[6]
2002 * srv_check_result: params[7]
2003 * srv_check_health: params[8]
2004 * srv_check_state: params[9]
2005 * srv_agent_state: params[10]
2006 * bk_f_forced_id: params[11]
2007 * srv_f_forced_id: params[12]
2008 */
2009
2010 /* validating srv_op_state */
2011 p = NULL;
2012 errno = 0;
2013 srv_op_state = strtol(params[1], &p, 10);
2014 if ((p == params[1]) || errno == EINVAL || errno == ERANGE ||
2015 (srv_op_state != SRV_ST_STOPPED &&
2016 srv_op_state != SRV_ST_STARTING &&
2017 srv_op_state != SRV_ST_RUNNING &&
2018 srv_op_state != SRV_ST_STOPPING)) {
2019 chunk_appendf(msg, ", invalid srv_op_state value '%s'", params[1]);
2020 }
2021
2022 /* validating srv_admin_state */
2023 p = NULL;
2024 errno = 0;
2025 srv_admin_state = strtol(params[2], &p, 10);
2026 if ((p == params[2]) || errno == EINVAL || errno == ERANGE ||
2027 (srv_admin_state != 0 &&
2028 srv_admin_state != SRV_ADMF_FMAINT &&
2029 srv_admin_state != SRV_ADMF_IMAINT &&
2030 srv_admin_state != SRV_ADMF_CMAINT &&
2031 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT) &&
Willy Tarreaue1bde142016-11-03 18:33:25 +01002032 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FDRAIN) &&
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002033 srv_admin_state != SRV_ADMF_FDRAIN &&
2034 srv_admin_state != SRV_ADMF_IDRAIN)) {
2035 chunk_appendf(msg, ", invalid srv_admin_state value '%s'", params[2]);
2036 }
2037
2038 /* validating srv_uweight */
2039 p = NULL;
2040 errno = 0;
2041 srv_uweight = strtol(params[3], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002042 if ((p == params[3]) || errno == EINVAL || errno == ERANGE || (srv_uweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002043 chunk_appendf(msg, ", invalid srv_uweight value '%s'", params[3]);
2044
2045 /* validating srv_iweight */
2046 p = NULL;
2047 errno = 0;
2048 srv_iweight = strtol(params[4], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002049 if ((p == params[4]) || errno == EINVAL || errno == ERANGE || (srv_iweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002050 chunk_appendf(msg, ", invalid srv_iweight value '%s'", params[4]);
2051
2052 /* validating srv_last_time_change */
2053 p = NULL;
2054 errno = 0;
2055 srv_last_time_change = strtol(params[5], &p, 10);
2056 if ((p == params[5]) || errno == EINVAL || errno == ERANGE)
2057 chunk_appendf(msg, ", invalid srv_last_time_change value '%s'", params[5]);
2058
2059 /* validating srv_check_status */
2060 p = NULL;
2061 errno = 0;
2062 srv_check_status = strtol(params[6], &p, 10);
2063 if (p == params[6] || errno == EINVAL || errno == ERANGE ||
2064 (srv_check_status >= HCHK_STATUS_SIZE))
2065 chunk_appendf(msg, ", invalid srv_check_status value '%s'", params[6]);
2066
2067 /* validating srv_check_result */
2068 p = NULL;
2069 errno = 0;
2070 srv_check_result = strtol(params[7], &p, 10);
2071 if ((p == params[7]) || errno == EINVAL || errno == ERANGE ||
2072 (srv_check_result != CHK_RES_UNKNOWN &&
2073 srv_check_result != CHK_RES_NEUTRAL &&
2074 srv_check_result != CHK_RES_FAILED &&
2075 srv_check_result != CHK_RES_PASSED &&
2076 srv_check_result != CHK_RES_CONDPASS)) {
2077 chunk_appendf(msg, ", invalid srv_check_result value '%s'", params[7]);
2078 }
2079
2080 /* validating srv_check_health */
2081 p = NULL;
2082 errno = 0;
2083 srv_check_health = strtol(params[8], &p, 10);
2084 if (p == params[8] || errno == EINVAL || errno == ERANGE)
2085 chunk_appendf(msg, ", invalid srv_check_health value '%s'", params[8]);
2086
2087 /* validating srv_check_state */
2088 p = NULL;
2089 errno = 0;
2090 srv_check_state = strtol(params[9], &p, 10);
2091 if (p == params[9] || errno == EINVAL || errno == ERANGE ||
2092 (srv_check_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2093 chunk_appendf(msg, ", invalid srv_check_state value '%s'", params[9]);
2094
2095 /* validating srv_agent_state */
2096 p = NULL;
2097 errno = 0;
2098 srv_agent_state = strtol(params[10], &p, 10);
2099 if (p == params[10] || errno == EINVAL || errno == ERANGE ||
2100 (srv_agent_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2101 chunk_appendf(msg, ", invalid srv_agent_state value '%s'", params[10]);
2102
2103 /* validating bk_f_forced_id */
2104 p = NULL;
2105 errno = 0;
2106 bk_f_forced_id = strtol(params[11], &p, 10);
2107 if (p == params[11] || errno == EINVAL || errno == ERANGE || !((bk_f_forced_id == 0) || (bk_f_forced_id == 1)))
2108 chunk_appendf(msg, ", invalid bk_f_forced_id value '%s'", params[11]);
2109
2110 /* validating srv_f_forced_id */
2111 p = NULL;
2112 errno = 0;
2113 srv_f_forced_id = strtol(params[12], &p, 10);
2114 if (p == params[12] || errno == EINVAL || errno == ERANGE || !((srv_f_forced_id == 0) || (srv_f_forced_id == 1)))
2115 chunk_appendf(msg, ", invalid srv_f_forced_id value '%s'", params[12]);
2116
2117
2118 /* don't apply anything if one error has been detected */
Willy Tarreau31138fa2015-09-29 18:38:47 +02002119 if (msg->len)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002120 goto out;
2121
2122 /* recover operational state and apply it to this server
2123 * and all servers tracking this one */
2124 switch (srv_op_state) {
2125 case SRV_ST_STOPPED:
2126 srv->check.health = 0;
2127 srv_set_stopped(srv, "changed from server-state after a reload");
2128 break;
2129 case SRV_ST_STARTING:
2130 srv->state = srv_op_state;
2131 break;
2132 case SRV_ST_STOPPING:
2133 srv->check.health = srv->check.rise + srv->check.fall - 1;
2134 srv_set_stopping(srv, "changed from server-state after a reload");
2135 break;
2136 case SRV_ST_RUNNING:
2137 srv->check.health = srv->check.rise + srv->check.fall - 1;
2138 srv_set_running(srv, "");
2139 break;
2140 }
2141
2142 /* When applying server state, the following rules apply:
2143 * - in case of a configuration change, we apply the setting from the new
2144 * configuration, regardless of old running state
2145 * - if no configuration change, we apply old running state only if old running
2146 * state is different from new configuration state
2147 */
2148 /* configuration has changed */
2149 if ((srv_admin_state & SRV_ADMF_CMAINT) != (srv->admin & SRV_ADMF_CMAINT)) {
2150 if (srv->admin & SRV_ADMF_CMAINT)
2151 srv_adm_set_maint(srv);
2152 else
2153 srv_adm_set_ready(srv);
2154 }
2155 /* configuration is the same, let's compate old running state and new conf state */
2156 else {
2157 if (srv_admin_state & SRV_ADMF_FMAINT && !(srv->admin & SRV_ADMF_CMAINT))
2158 srv_adm_set_maint(srv);
2159 else if (!(srv_admin_state & SRV_ADMF_FMAINT) && (srv->admin & SRV_ADMF_CMAINT))
2160 srv_adm_set_ready(srv);
2161 }
2162 /* apply drain mode if server is currently enabled */
2163 if (!(srv->admin & SRV_ADMF_FMAINT) && (srv_admin_state & SRV_ADMF_FDRAIN)) {
2164 /* The SRV_ADMF_FDRAIN flag is inherited when srv->iweight is 0
Willy Tarreau22cace22016-11-03 18:19:49 +01002165 * (srv->iweight is the weight set up in configuration).
2166 * There are two possible reasons for FDRAIN to have been present :
2167 * - previous config weight was zero
2168 * - "set server b/s drain" was sent to the CLI
2169 *
2170 * In the first case, we simply want to drop this drain state
2171 * if the new weight is not zero anymore, meaning the administrator
2172 * has intentionally turned the weight back to a positive value to
2173 * enable the server again after an operation. In the second case,
2174 * the drain state was forced on the CLI regardless of the config's
2175 * weight so we don't want a change to the config weight to lose this
2176 * status. What this means is :
2177 * - if previous weight was 0 and new one is >0, drop the DRAIN state.
2178 * - if the previous weight was >0, keep it.
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002179 */
Willy Tarreau22cace22016-11-03 18:19:49 +01002180 if (srv_iweight > 0 || srv->iweight == 0)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002181 srv_adm_set_drain(srv);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002182 }
2183
2184 srv->last_change = date.tv_sec - srv_last_time_change;
2185 srv->check.status = srv_check_status;
2186 srv->check.result = srv_check_result;
2187 srv->check.health = srv_check_health;
2188
2189 /* Only case we want to apply is removing ENABLED flag which could have been
2190 * done by the "disable health" command over the stats socket
2191 */
2192 if ((srv->check.state & CHK_ST_CONFIGURED) &&
2193 (srv_check_state & CHK_ST_CONFIGURED) &&
2194 !(srv_check_state & CHK_ST_ENABLED))
2195 srv->check.state &= ~CHK_ST_ENABLED;
2196
2197 /* Only case we want to apply is removing ENABLED flag which could have been
2198 * done by the "disable agent" command over the stats socket
2199 */
2200 if ((srv->agent.state & CHK_ST_CONFIGURED) &&
2201 (srv_agent_state & CHK_ST_CONFIGURED) &&
2202 !(srv_agent_state & CHK_ST_ENABLED))
2203 srv->agent.state &= ~CHK_ST_ENABLED;
2204
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002205 /* We want to apply the previous 'running' weight (srv_uweight) only if there
2206 * was no change in the configuration: both previous and new iweight are equals
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002207 *
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002208 * It means that a configuration file change has precedence over a unix socket change
2209 * for server's weight
2210 *
2211 * by default, HAProxy applies the following weight when parsing the configuration
2212 * srv->uweight = srv->iweight
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002213 */
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002214 if (srv_iweight == srv->iweight) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002215 srv->uweight = srv_uweight;
2216 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002217 server_recalc_eweight(srv);
2218
2219 /* update server IP only if DNS resolution is used on the server */
2220 if (srv->resolution) {
Baptiste Assmanna875b1f2016-01-21 00:17:09 +01002221 struct sockaddr_storage addr;
2222
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002223 memset(&addr, 0, sizeof(struct sockaddr_storage));
Baptiste Assmanna875b1f2016-01-21 00:17:09 +01002224
2225 if (str2ip2(params[0], &addr, AF_UNSPEC)) {
2226 int port;
2227
2228 /* save the port, applies the new IP then reconfigure the port */
Willy Tarreauf3c7a832016-01-21 13:51:56 +01002229 port = get_host_port(&srv->addr);
Baptiste Assmanna875b1f2016-01-21 00:17:09 +01002230 srv->addr.ss_family = addr.ss_family;
2231 str2ip2(params[0], &srv->addr, srv->addr.ss_family);
2232 set_host_port(&srv->addr, port);
2233 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002234 else
2235 chunk_appendf(msg, ", can't parse IP: %s", params[0]);
2236 }
2237 break;
2238 default:
2239 chunk_appendf(msg, ", version '%d' not supported", version);
2240 }
2241
2242 out:
Baptiste Assmann0821bb92016-01-21 00:20:50 +01002243 if (msg->len) {
2244 chunk_appendf(msg, "\n");
Willy Tarreau31138fa2015-09-29 18:38:47 +02002245 Warning("server-state application failed for server '%s/%s'%s",
2246 srv->proxy->id, srv->id, msg->str);
Baptiste Assmann0821bb92016-01-21 00:20:50 +01002247 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002248}
2249
2250/* This function parses all the proxies and only take care of the backends (since we're looking for server)
2251 * For each proxy, it does the following:
2252 * - opens its server state file (either one or local one)
2253 * - read whole file, line by line
2254 * - analyse each line to check if it matches our current backend:
2255 * - backend name matches
2256 * - backend id matches if id is forced and name doesn't match
2257 * - if the server pointed by the line is found, then state is applied
2258 *
2259 * If the running backend uuid or id differs from the state file, then HAProxy reports
2260 * a warning.
2261 */
2262void apply_server_state(void)
2263{
2264 char *cur, *end;
2265 char mybuf[SRV_STATE_LINE_MAXLEN];
2266 int mybuflen;
2267 char *params[SRV_STATE_FILE_MAX_FIELDS];
2268 char *srv_params[SRV_STATE_FILE_MAX_FIELDS];
2269 int arg, srv_arg, version, diff;
2270 FILE *f;
2271 char *filepath;
2272 char globalfilepath[MAXPATHLEN + 1];
2273 char localfilepath[MAXPATHLEN + 1];
2274 int len, fileopenerr, globalfilepathlen, localfilepathlen;
2275 extern struct proxy *proxy;
2276 struct proxy *curproxy, *bk;
2277 struct server *srv;
2278
2279 globalfilepathlen = 0;
2280 /* create the globalfilepath variable */
2281 if (global.server_state_file) {
2282 /* absolute path or no base directory provided */
2283 if ((global.server_state_file[0] == '/') || (!global.server_state_base)) {
2284 len = strlen(global.server_state_file);
2285 if (len > MAXPATHLEN) {
2286 globalfilepathlen = 0;
2287 goto globalfileerror;
2288 }
2289 memcpy(globalfilepath, global.server_state_file, len);
2290 globalfilepath[len] = '\0';
2291 globalfilepathlen = len;
2292 }
2293 else if (global.server_state_base) {
2294 len = strlen(global.server_state_base);
2295 globalfilepathlen += len;
2296
2297 if (globalfilepathlen > MAXPATHLEN) {
2298 globalfilepathlen = 0;
2299 goto globalfileerror;
2300 }
2301 strncpy(globalfilepath, global.server_state_base, len);
2302 globalfilepath[globalfilepathlen] = 0;
2303
2304 /* append a slash if needed */
2305 if (!globalfilepathlen || globalfilepath[globalfilepathlen - 1] != '/') {
2306 if (globalfilepathlen + 1 > MAXPATHLEN) {
2307 globalfilepathlen = 0;
2308 goto globalfileerror;
2309 }
2310 globalfilepath[globalfilepathlen++] = '/';
2311 }
2312
2313 len = strlen(global.server_state_file);
2314 if (globalfilepathlen + len > MAXPATHLEN) {
2315 globalfilepathlen = 0;
2316 goto globalfileerror;
2317 }
2318 memcpy(globalfilepath + globalfilepathlen, global.server_state_file, len);
2319 globalfilepathlen += len;
2320 globalfilepath[globalfilepathlen++] = 0;
2321 }
2322 }
2323 globalfileerror:
2324 if (globalfilepathlen == 0)
2325 globalfilepath[0] = '\0';
2326
2327 /* read servers state from local file */
2328 for (curproxy = proxy; curproxy != NULL; curproxy = curproxy->next) {
2329 /* servers are only in backends */
2330 if (!(curproxy->cap & PR_CAP_BE))
2331 continue;
2332 fileopenerr = 0;
2333 filepath = NULL;
2334
2335 /* search server state file path and name */
2336 switch (curproxy->load_server_state_from_file) {
2337 /* read servers state from global file */
2338 case PR_SRV_STATE_FILE_GLOBAL:
2339 /* there was an error while generating global server state file path */
2340 if (globalfilepathlen == 0)
2341 continue;
2342 filepath = globalfilepath;
2343 fileopenerr = 1;
2344 break;
2345 /* this backend has its own file */
2346 case PR_SRV_STATE_FILE_LOCAL:
2347 localfilepathlen = 0;
2348 localfilepath[0] = '\0';
2349 len = 0;
2350 /* create the localfilepath variable */
2351 /* absolute path or no base directory provided */
2352 if ((curproxy->server_state_file_name[0] == '/') || (!global.server_state_base)) {
2353 len = strlen(curproxy->server_state_file_name);
2354 if (len > MAXPATHLEN) {
2355 localfilepathlen = 0;
2356 goto localfileerror;
2357 }
2358 memcpy(localfilepath, curproxy->server_state_file_name, len);
2359 localfilepath[len] = '\0';
2360 localfilepathlen = len;
2361 }
2362 else if (global.server_state_base) {
2363 len = strlen(global.server_state_base);
2364 localfilepathlen += len;
2365
2366 if (localfilepathlen > MAXPATHLEN) {
2367 localfilepathlen = 0;
2368 goto localfileerror;
2369 }
2370 strncpy(localfilepath, global.server_state_base, len);
2371 localfilepath[localfilepathlen] = 0;
2372
2373 /* append a slash if needed */
2374 if (!localfilepathlen || localfilepath[localfilepathlen - 1] != '/') {
2375 if (localfilepathlen + 1 > MAXPATHLEN) {
2376 localfilepathlen = 0;
2377 goto localfileerror;
2378 }
2379 localfilepath[localfilepathlen++] = '/';
2380 }
2381
2382 len = strlen(curproxy->server_state_file_name);
2383 if (localfilepathlen + len > MAXPATHLEN) {
2384 localfilepathlen = 0;
2385 goto localfileerror;
2386 }
2387 memcpy(localfilepath + localfilepathlen, curproxy->server_state_file_name, len);
2388 localfilepathlen += len;
2389 localfilepath[localfilepathlen++] = 0;
2390 }
2391 filepath = localfilepath;
2392 localfileerror:
2393 if (localfilepathlen == 0)
2394 localfilepath[0] = '\0';
2395
2396 break;
2397 case PR_SRV_STATE_FILE_NONE:
2398 default:
2399 continue;
2400 }
2401
2402 /* preload global state file */
2403 errno = 0;
2404 f = fopen(filepath, "r");
2405 if (errno && fileopenerr)
2406 Warning("Can't open server state file '%s': %s\n", filepath, strerror(errno));
2407 if (!f)
2408 continue;
2409
2410 mybuf[0] = '\0';
2411 mybuflen = 0;
2412 version = 0;
2413
2414 /* first character of first line of the file must contain the version of the export */
Dragan Dosencf4fb032015-11-04 23:03:26 +01002415 if (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f) == NULL) {
2416 Warning("Can't read first line of the server state file '%s'\n", filepath);
2417 goto fileclose;
2418 }
2419
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002420 cur = mybuf;
2421 version = atoi(cur);
2422 if ((version < SRV_STATE_FILE_VERSION_MIN) ||
2423 (version > SRV_STATE_FILE_VERSION_MAX))
Dragan Dosencf4fb032015-11-04 23:03:26 +01002424 goto fileclose;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002425
2426 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
2427 int bk_f_forced_id = 0;
2428 int check_id = 0;
2429 int check_name = 0;
2430
2431 mybuflen = strlen(mybuf);
2432 cur = mybuf;
2433 end = cur + mybuflen;
2434
2435 bk = NULL;
2436 srv = NULL;
2437
2438 /* we need at least one character */
2439 if (mybuflen == 0)
2440 continue;
2441
2442 /* ignore blank characters at the beginning of the line */
2443 while (isspace(*cur))
2444 ++cur;
2445
2446 if (cur == end)
2447 continue;
2448
2449 /* ignore comment line */
2450 if (*cur == '#')
2451 continue;
2452
2453 /* we're now ready to move the line into *srv_params[] */
2454 params[0] = cur;
2455 arg = 1;
2456 srv_arg = 0;
2457 while (*cur && arg < SRV_STATE_FILE_MAX_FIELDS) {
2458 if (isspace(*cur)) {
2459 *cur = '\0';
2460 ++cur;
2461 while (isspace(*cur))
2462 ++cur;
2463 switch (version) {
2464 case 1:
2465 /*
2466 * srv_addr: params[4] => srv_params[0]
2467 * srv_op_state: params[5] => srv_params[1]
2468 * srv_admin_state: params[6] => srv_params[2]
2469 * srv_uweight: params[7] => srv_params[3]
2470 * srv_iweight: params[8] => srv_params[4]
2471 * srv_last_time_change: params[9] => srv_params[5]
2472 * srv_check_status: params[10] => srv_params[6]
2473 * srv_check_result: params[11] => srv_params[7]
2474 * srv_check_health: params[12] => srv_params[8]
2475 * srv_check_state: params[13] => srv_params[9]
2476 * srv_agent_state: params[14] => srv_params[10]
2477 * bk_f_forced_id: params[15] => srv_params[11]
2478 * srv_f_forced_id: params[16] => srv_params[12]
2479 */
2480 if (arg >= 4) {
2481 srv_params[srv_arg] = cur;
2482 ++srv_arg;
2483 }
2484 break;
2485 }
2486
2487 params[arg] = cur;
2488 ++arg;
2489 }
2490 else {
2491 ++cur;
2492 }
2493 }
2494
2495 /* if line is incomplete line, then ignore it.
2496 * otherwise, update useful flags */
2497 switch (version) {
2498 case 1:
2499 if (arg < SRV_STATE_FILE_NB_FIELDS_VERSION_1)
2500 continue;
2501 bk_f_forced_id = (atoi(params[15]) & PR_O_FORCED_ID);
2502 check_id = (atoi(params[0]) == curproxy->uuid);
2503 check_name = (strcmp(curproxy->id, params[1]) == 0);
2504 break;
2505 }
2506
2507 diff = 0;
2508 bk = curproxy;
2509
2510 /* if backend can't be found, let's continue */
2511 if (!check_id && !check_name)
2512 continue;
2513 else if (!check_id && check_name) {
2514 Warning("backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
2515 send_log(bk, LOG_NOTICE, "backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
2516 }
2517 else if (check_id && !check_name) {
2518 Warning("backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
2519 send_log(bk, LOG_NOTICE, "backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
2520 /* if name doesn't match, we still want to update curproxy if the backend id
2521 * was forced in previous the previous configuration */
2522 if (!bk_f_forced_id)
2523 continue;
2524 }
2525
2526 /* look for the server by its id: param[2] */
2527 /* else look for the server by its name: param[3] */
2528 diff = 0;
2529 srv = server_find_best_match(bk, params[3], atoi(params[2]), &diff);
2530
2531 if (!srv) {
2532 /* if no server found, then warning and continue with next line */
2533 Warning("can't find server '%s' with id '%s' in backend with id '%s' or name '%s'\n",
2534 params[3], params[2], params[0], params[1]);
2535 send_log(bk, LOG_NOTICE, "can't find server '%s' with id '%s' in backend with id '%s' or name '%s'\n",
2536 params[3], params[2], params[0], params[1]);
2537 continue;
2538 }
2539 else if (diff & PR_FBM_MISMATCH_ID) {
2540 Warning("In backend '%s' (id: '%d'): server ID mismatch: from server state file: '%s', from running config %d\n", bk->id, bk->uuid, params[2], srv->puid);
2541 send_log(bk, LOG_NOTICE, "In backend '%s' (id: %d): server ID mismatch: from server state file: '%s', from running config %d\n", bk->id, bk->uuid, params[2], srv->puid);
2542 }
2543 else if (diff & PR_FBM_MISMATCH_NAME) {
2544 Warning("In backend '%s' (id: %d): server name mismatch: from server state file: '%s', from running config '%s'\n", bk->id, bk->uuid, params[3], srv->id);
2545 send_log(bk, LOG_NOTICE, "In backend '%s' (id: %d): server name mismatch: from server state file: '%s', from running config '%s'\n", bk->id, bk->uuid, params[3], srv->id);
2546 }
2547
2548 /* now we can proceed with server's state update */
2549 srv_update_state(srv, version, srv_params);
2550 }
Dragan Dosencf4fb032015-11-04 23:03:26 +01002551fileclose:
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002552 fclose(f);
2553 }
2554}
2555
Simon Horman7d09b9a2013-02-12 10:45:51 +09002556/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02002557 * update a server's current IP address.
2558 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
2559 * ip is in network format.
2560 * updater is a string which contains an information about the requester of the update.
2561 * updater is used if not NULL.
2562 *
2563 * A log line and a stderr warning message is generated based on server's backend options.
2564 */
Thierry Fournierd35b7a62016-02-24 08:23:22 +01002565int update_server_addr(struct server *s, void *ip, int ip_sin_family, const char *updater)
Baptiste Assmann14e40142015-04-14 01:13:07 +02002566{
2567 /* generates a log line and a warning on stderr */
2568 if (1) {
2569 /* book enough space for both IPv4 and IPv6 */
2570 char oldip[INET6_ADDRSTRLEN];
2571 char newip[INET6_ADDRSTRLEN];
2572
2573 memset(oldip, '\0', INET6_ADDRSTRLEN);
2574 memset(newip, '\0', INET6_ADDRSTRLEN);
2575
2576 /* copy old IP address in a string */
2577 switch (s->addr.ss_family) {
2578 case AF_INET:
2579 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
2580 break;
2581 case AF_INET6:
2582 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
2583 break;
2584 };
2585
2586 /* copy new IP address in a string */
2587 switch (ip_sin_family) {
2588 case AF_INET:
2589 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
2590 break;
2591 case AF_INET6:
2592 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
2593 break;
2594 };
2595
2596 /* save log line into a buffer */
2597 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
2598 s->proxy->id, s->id, oldip, newip, updater);
2599
2600 /* write the buffer on stderr */
2601 Warning("%s.\n", trash.str);
2602
2603 /* send a log */
2604 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
2605 }
2606
2607 /* save the new IP family */
2608 s->addr.ss_family = ip_sin_family;
2609 /* save the new IP address */
2610 switch (ip_sin_family) {
2611 case AF_INET:
Willy Tarreaueec1d382016-07-13 11:59:39 +02002612 memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4);
Baptiste Assmann14e40142015-04-14 01:13:07 +02002613 break;
2614 case AF_INET6:
2615 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
2616 break;
2617 };
2618
2619 return 0;
2620}
2621
2622/*
Baptiste Assmannd458adc2016-08-02 08:18:55 +02002623 * This function update a server's addr and port only for AF_INET and AF_INET6 families.
2624 *
2625 * Caller can pass its name through <updater> to get it integrated in the response message
2626 * returned by the function.
2627 *
2628 * The function first does the following, in that order:
2629 * - validates the new addr and/or port
2630 * - checks if an update is required (new IP or port is different than current ones)
2631 * - checks the update is allowed:
2632 * - don't switch from/to a family other than AF_INET4 and AF_INET6
2633 * - allow all changes if no CHECKS are configured
2634 * - if CHECK is configured:
2635 * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports
2636 * - applies required changes to both ADDR and PORT if both 'required' and 'allowed'
2637 * conditions are met
2638 */
2639const char *update_server_addr_port(struct server *s, const char *addr, const char *port, char *updater)
2640{
2641 struct sockaddr_storage sa;
2642 int ret, port_change_required;
2643 char current_addr[INET6_ADDRSTRLEN];
2644 u_int16_t current_port, new_port;
2645 struct chunk *msg;
2646
2647 msg = get_trash_chunk();
2648 chunk_reset(msg);
2649
2650 if (addr) {
2651 memset(&sa, 0, sizeof(struct sockaddr_storage));
2652 if (str2ip2(addr, &sa, 0) == NULL) {
2653 chunk_printf(msg, "Invalid addr '%s'", addr);
2654 goto out;
2655 }
2656
2657 /* changes are allowed on AF_INET* families only */
2658 if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) {
2659 chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file");
2660 goto out;
2661 }
2662
2663 /* collecting data currently setup */
2664 memset(current_addr, '\0', sizeof(current_addr));
2665 ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr));
2666 /* changes are allowed on AF_INET* families only */
2667 if ((ret != AF_INET) && (ret != AF_INET6)) {
2668 chunk_printf(msg, "Update for the current server address family is only supported through configuration file");
2669 goto out;
2670 }
2671
2672 /* applying ADDR changes if required and allowed
2673 * ipcmp returns 0 when both ADDR are the same
2674 */
2675 if (ipcmp(&s->addr, &sa) == 0) {
2676 chunk_appendf(msg, "no need to change the addr");
2677 goto port;
2678 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02002679 ipcpy(&sa, &s->addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02002680
2681 /* we also need to update check's ADDR only if it uses the server's one */
2682 if ((s->check.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_CHECKADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02002683 ipcpy(&sa, &s->check.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02002684 }
2685
2686 /* we also need to update agent ADDR only if it use the server's one */
2687 if ((s->agent.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_AGENTADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02002688 ipcpy(&sa, &s->agent.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02002689 }
2690
2691 /* update report for caller */
2692 chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr);
2693 }
2694
2695 port:
2696 if (port) {
2697 char sign = '\0';
2698 char *endptr;
2699
2700 if (addr)
2701 chunk_appendf(msg, ", ");
2702
2703 /* collecting data currently setup */
2704 current_port = get_host_port(&s->addr);
2705
2706 /* check if PORT change is required */
2707 port_change_required = 0;
2708
2709 sign = *port;
2710 new_port = strtol(port, &endptr, 10);
2711 if ((errno != 0) || (port == endptr)) {
2712 chunk_appendf(msg, "problem converting port '%s' to an int", port);
2713 goto out;
2714 }
2715
2716 /* check if caller triggers a port mapped or offset */
2717 if (sign == '-' || (sign == '+')) {
2718 /* check if server currently uses port map */
2719 if (!(s->flags & SRV_F_MAPPORTS)) {
2720 /* switch from fixed port to port map mandatorily triggers
2721 * a port change */
2722 port_change_required = 1;
2723 /* check is configured
2724 * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port
2725 * prevent PORT change if check doesn't have it's dedicated port while switching
2726 * to port mapping */
2727 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
2728 chunk_appendf(msg, "can't change <port> to port map because it is incompatible with current health check port configuration (use 'port' statement from the 'server' directive.");
2729 goto out;
2730 }
2731 }
2732 /* we're already using port maps */
2733 else {
2734 port_change_required = current_port != new_port;
2735 }
2736 }
2737 /* fixed port */
2738 else {
2739 port_change_required = current_port != new_port;
2740 }
2741
2742 /* applying PORT changes if required and update response message */
2743 if (port_change_required) {
2744 /* apply new port */
2745 set_host_port(&s->addr, new_port);
2746
2747 /* prepare message */
2748 chunk_appendf(msg, "port changed from '");
2749 if (s->flags & SRV_F_MAPPORTS)
2750 chunk_appendf(msg, "+");
2751 chunk_appendf(msg, "%d' to '", current_port);
2752
2753 if (sign == '-') {
2754 s->flags |= SRV_F_MAPPORTS;
2755 chunk_appendf(msg, "%c", sign);
2756 /* just use for result output */
2757 new_port = -new_port;
2758 }
2759 else if (sign == '+') {
2760 s->flags |= SRV_F_MAPPORTS;
2761 chunk_appendf(msg, "%c", sign);
2762 }
2763 else {
2764 s->flags &= ~SRV_F_MAPPORTS;
2765 }
2766
2767 chunk_appendf(msg, "%d'", new_port);
2768
2769 /* we also need to update health checks port only if it uses server's realport */
2770 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
2771 s->check.port = new_port;
2772 }
2773 }
2774 else {
2775 chunk_appendf(msg, "no need to change the port");
2776 }
2777 }
2778
2779out:
2780 if (updater)
2781 chunk_appendf(msg, " by '%s'", updater);
2782 chunk_appendf(msg, "\n");
2783 return msg->str;
2784}
2785
2786
2787/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002788 * update server status based on result of name resolution
2789 * returns:
2790 * 0 if server status is updated
2791 * 1 if server status has not changed
2792 */
2793int snr_update_srv_status(struct server *s)
2794{
2795 struct dns_resolution *resolution = s->resolution;
2796
2797 switch (resolution->status) {
2798 case RSLV_STATUS_NONE:
2799 /* status when HAProxy has just (re)started */
2800 trigger_resolution(s);
2801 break;
2802
2803 default:
2804 break;
2805 }
2806
2807 return 1;
2808}
2809
2810/*
2811 * Server Name Resolution valid response callback
2812 * It expects:
2813 * - <nameserver>: the name server which answered the valid response
2814 * - <response>: buffer containing a valid DNS response
2815 * - <response_len>: size of <response>
2816 * It performs the following actions:
2817 * - ignore response if current ip found and server family not met
2818 * - update with first new ip found if family is met and current IP is not found
2819 * returns:
2820 * 0 on error
2821 * 1 when no error or safe ignore
2822 */
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +02002823int snr_resolution_cb(struct dns_resolution *resolution, struct dns_nameserver *nameserver, struct dns_response_packet *dns_p)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002824{
2825 struct server *s;
2826 void *serverip, *firstip;
2827 short server_sin_family, firstip_sin_family;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002828 int ret;
2829 struct chunk *chk = get_trash_chunk();
2830
2831 /* initializing variables */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002832 firstip = NULL; /* pointer to the first valid response found */
2833 /* it will be used as the new IP if a change is required */
2834 firstip_sin_family = AF_UNSPEC;
2835 serverip = NULL; /* current server IP address */
2836
2837 /* shortcut to the server whose name is being resolved */
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02002838 s = resolution->requester;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002839
2840 /* initializing server IP pointer */
2841 server_sin_family = s->addr.ss_family;
2842 switch (server_sin_family) {
2843 case AF_INET:
2844 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
2845 break;
2846
2847 case AF_INET6:
2848 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
2849 break;
2850
2851 default:
2852 goto invalid;
2853 }
2854
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +02002855 ret = dns_get_ip_from_response(dns_p, resolution,
Thierry Fournierada34842016-02-17 21:25:09 +01002856 serverip, server_sin_family, &firstip,
2857 &firstip_sin_family);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002858
2859 switch (ret) {
2860 case DNS_UPD_NO:
2861 if (resolution->status != RSLV_STATUS_VALID) {
2862 resolution->status = RSLV_STATUS_VALID;
2863 resolution->last_status_change = now_ms;
2864 }
2865 goto stop_resolution;
2866
2867 case DNS_UPD_SRVIP_NOT_FOUND:
2868 goto save_ip;
2869
2870 case DNS_UPD_CNAME:
2871 if (resolution->status != RSLV_STATUS_VALID) {
2872 resolution->status = RSLV_STATUS_VALID;
2873 resolution->last_status_change = now_ms;
2874 }
2875 goto invalid;
2876
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02002877 case DNS_UPD_NO_IP_FOUND:
2878 if (resolution->status != RSLV_STATUS_OTHER) {
2879 resolution->status = RSLV_STATUS_OTHER;
2880 resolution->last_status_change = now_ms;
2881 }
2882 goto stop_resolution;
2883
Baptiste Assmannfad03182015-10-28 02:03:32 +01002884 case DNS_UPD_NAME_ERROR:
2885 /* if this is not the last expected response, we ignore it */
2886 if (resolution->nb_responses < nameserver->resolvers->count_nameservers)
2887 return 0;
2888 /* update resolution status to OTHER error type */
2889 if (resolution->status != RSLV_STATUS_OTHER) {
2890 resolution->status = RSLV_STATUS_OTHER;
2891 resolution->last_status_change = now_ms;
2892 }
2893 goto stop_resolution;
2894
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002895 default:
2896 goto invalid;
2897
2898 }
2899
2900 save_ip:
2901 nameserver->counters.update += 1;
2902 if (resolution->status != RSLV_STATUS_VALID) {
2903 resolution->status = RSLV_STATUS_VALID;
2904 resolution->last_status_change = now_ms;
2905 }
2906
2907 /* save the first ip we found */
2908 chunk_printf(chk, "%s/%s", nameserver->resolvers->id, nameserver->id);
2909 update_server_addr(s, firstip, firstip_sin_family, (char *)chk->str);
2910
2911 stop_resolution:
2912 /* update last resolution date and time */
2913 resolution->last_resolution = now_ms;
2914 /* reset current status flag */
2915 resolution->step = RSLV_STEP_NONE;
2916 /* reset values */
2917 dns_reset_resolution(resolution);
2918
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002919 dns_update_resolvers_timeout(nameserver->resolvers);
2920
2921 snr_update_srv_status(s);
2922 return 0;
2923
2924 invalid:
2925 nameserver->counters.invalid += 1;
2926 if (resolution->nb_responses >= nameserver->resolvers->count_nameservers)
2927 goto stop_resolution;
2928
2929 snr_update_srv_status(s);
2930 return 0;
2931}
2932
2933/*
2934 * Server Name Resolution error management callback
2935 * returns:
2936 * 0 on error
2937 * 1 when no error or safe ignore
2938 */
2939int snr_resolution_error_cb(struct dns_resolution *resolution, int error_code)
2940{
2941 struct server *s;
2942 struct dns_resolvers *resolvers;
Andrew Hayworthe6a4a322015-10-19 22:29:51 +00002943 int res_preferred_afinet, res_preferred_afinet6;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002944
2945 /* shortcut to the server whose name is being resolved */
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02002946 s = resolution->requester;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002947 resolvers = resolution->resolvers;
2948
2949 /* can be ignored if this is not the last response */
2950 if ((error_code != DNS_RESP_TIMEOUT) && (resolution->nb_responses < resolvers->count_nameservers)) {
2951 return 1;
2952 }
2953
2954 switch (error_code) {
2955 case DNS_RESP_INVALID:
2956 case DNS_RESP_WRONG_NAME:
2957 if (resolution->status != RSLV_STATUS_INVALID) {
2958 resolution->status = RSLV_STATUS_INVALID;
2959 resolution->last_status_change = now_ms;
2960 }
2961 break;
2962
2963 case DNS_RESP_ANCOUNT_ZERO:
Baptiste Assmann0df5d962015-09-02 21:58:32 +02002964 case DNS_RESP_TRUNCATED:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002965 case DNS_RESP_ERROR:
Baptiste Assmann96972bc2015-09-09 00:46:58 +02002966 case DNS_RESP_NO_EXPECTED_RECORD:
Baptiste Assmann65ce3f52016-09-05 08:38:57 +02002967 case DNS_RESP_CNAME_ERROR:
Thierry Fournierada34842016-02-17 21:25:09 +01002968 res_preferred_afinet = resolution->opts->family_prio == AF_INET && resolution->query_type == DNS_RTYPE_A;
2969 res_preferred_afinet6 = resolution->opts->family_prio == AF_INET6 && resolution->query_type == DNS_RTYPE_AAAA;
Baptiste Assmann90447582015-09-02 22:20:56 +02002970
Andrew Hayworthe6a4a322015-10-19 22:29:51 +00002971 if ((res_preferred_afinet || res_preferred_afinet6)
Baptiste Assmannf778bb42015-09-09 00:54:38 +02002972 || (resolution->try > 0)) {
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002973 /* let's change the query type */
Andrew Hayworthe6a4a322015-10-19 22:29:51 +00002974 if (res_preferred_afinet6) {
Baptiste Assmann90447582015-09-02 22:20:56 +02002975 /* fallback from AAAA to A */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002976 resolution->query_type = DNS_RTYPE_A;
Baptiste Assmann90447582015-09-02 22:20:56 +02002977 }
2978 else if (res_preferred_afinet) {
2979 /* fallback from A to AAAA */
2980 resolution->query_type = DNS_RTYPE_AAAA;
2981 }
Baptiste Assmannf778bb42015-09-09 00:54:38 +02002982 else {
2983 resolution->try -= 1;
Thierry Fournierada34842016-02-17 21:25:09 +01002984 if (resolution->opts->family_prio == AF_INET) {
Andrew Hayworthe6a4a322015-10-19 22:29:51 +00002985 resolution->query_type = DNS_RTYPE_A;
2986 } else {
2987 resolution->query_type = DNS_RTYPE_AAAA;
2988 }
Baptiste Assmannf778bb42015-09-09 00:54:38 +02002989 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002990
2991 dns_send_query(resolution);
2992
2993 /*
2994 * move the resolution to the last element of the FIFO queue
2995 * and update timeout wakeup based on the new first entry
2996 */
2997 if (dns_check_resolution_queue(resolvers) > 1) {
2998 /* second resolution becomes first one */
Baptiste Assmann11c4e4e2015-09-02 22:15:58 +02002999 LIST_DEL(&resolution->list);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003000 /* ex first resolution goes to the end of the queue */
3001 LIST_ADDQ(&resolvers->curr_resolution, &resolution->list);
3002 }
3003 dns_update_resolvers_timeout(resolvers);
3004 goto leave;
3005 }
3006 else {
3007 if (resolution->status != RSLV_STATUS_OTHER) {
3008 resolution->status = RSLV_STATUS_OTHER;
3009 resolution->last_status_change = now_ms;
3010 }
3011 }
3012 break;
3013
3014 case DNS_RESP_NX_DOMAIN:
3015 if (resolution->status != RSLV_STATUS_NX) {
3016 resolution->status = RSLV_STATUS_NX;
3017 resolution->last_status_change = now_ms;
3018 }
3019 break;
3020
3021 case DNS_RESP_REFUSED:
3022 if (resolution->status != RSLV_STATUS_REFUSED) {
3023 resolution->status = RSLV_STATUS_REFUSED;
3024 resolution->last_status_change = now_ms;
3025 }
3026 break;
3027
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003028 case DNS_RESP_TIMEOUT:
3029 if (resolution->status != RSLV_STATUS_TIMEOUT) {
3030 resolution->status = RSLV_STATUS_TIMEOUT;
3031 resolution->last_status_change = now_ms;
3032 }
3033 break;
3034 }
3035
3036 /* update last resolution date and time */
3037 resolution->last_resolution = now_ms;
3038 /* reset current status flag */
3039 resolution->step = RSLV_STEP_NONE;
3040 /* reset values */
3041 dns_reset_resolution(resolution);
3042
3043 LIST_DEL(&resolution->list);
3044 dns_update_resolvers_timeout(resolvers);
3045
3046 leave:
3047 snr_update_srv_status(s);
3048 return 1;
3049}
3050
3051/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02003052 * Local variables:
3053 * c-indent-level: 8
3054 * c-basic-offset: 8
3055 * End:
3056 */