blob: 503d53ab36fc5688454b53dd0d7e88577df6ca46 [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>
15
16#include <common/cfgparse.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020017#include <common/config.h>
Willy Tarreaudff55432012-10-10 17:51:05 +020018#include <common/errors.h>
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +010019#include <common/namespace.h>
Krzysztof Oledzki85130942007-10-22 16:21:10 +020020#include <common/time.h>
21
Willy Tarreau272adea2014-03-31 10:39:59 +020022#include <types/global.h>
Baptiste Assmanna68ca962015-04-14 01:15:08 +020023#include <types/dns.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020024
Simon Hormanb1900d52015-01-30 11:22:54 +090025#include <proto/checks.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020026#include <proto/port_range.h>
27#include <proto/protocol.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020028#include <proto/queue.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020029#include <proto/raw_sock.h>
Willy Tarreauec6c5df2008-07-15 00:22:45 +020030#include <proto/server.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020031#include <proto/stream.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020032#include <proto/task.h>
Baptiste Assmanna68ca962015-04-14 01:15:08 +020033#include <proto/dns.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020034
Willy Tarreaubaaee002006-06-26 02:48:02 +020035
Willy Tarreau21faa912012-10-10 08:27:36 +020036/* List head of all known server keywords */
37static struct srv_kw_list srv_keywords = {
38 .list = LIST_HEAD_INIT(srv_keywords.list)
39};
Krzysztof Oledzki85130942007-10-22 16:21:10 +020040
Simon Hormana3608442013-11-01 16:46:15 +090041int srv_downtime(const struct server *s)
Willy Tarreau21faa912012-10-10 08:27:36 +020042{
Willy Tarreau892337c2014-05-13 23:41:20 +020043 if ((s->state != SRV_ST_STOPPED) && s->last_change < now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +020044 return s->down_time;
45
46 return now.tv_sec - s->last_change + s->down_time;
47}
Willy Tarreaubaaee002006-06-26 02:48:02 +020048
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050049int srv_lastsession(const struct server *s)
50{
51 if (s->counters.last_sess)
52 return now.tv_sec - s->counters.last_sess;
53
54 return -1;
55}
56
Simon Horman4a741432013-02-23 15:35:38 +090057int srv_getinter(const struct check *check)
Willy Tarreau21faa912012-10-10 08:27:36 +020058{
Simon Horman4a741432013-02-23 15:35:38 +090059 const struct server *s = check->server;
60
Willy Tarreauff5ae352013-12-11 20:36:34 +010061 if ((check->state & CHK_ST_CONFIGURED) && (check->health == check->rise + check->fall - 1))
Simon Horman4a741432013-02-23 15:35:38 +090062 return check->inter;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +010063
Willy Tarreau892337c2014-05-13 23:41:20 +020064 if ((s->state == SRV_ST_STOPPED) && check->health == 0)
Simon Horman4a741432013-02-23 15:35:38 +090065 return (check->downinter)?(check->downinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +010066
Simon Horman4a741432013-02-23 15:35:38 +090067 return (check->fastinter)?(check->fastinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +010068}
69
Willy Tarreau21faa912012-10-10 08:27:36 +020070/*
71 * Registers the server keyword list <kwl> as a list of valid keywords for next
72 * parsing sessions.
73 */
74void srv_register_keywords(struct srv_kw_list *kwl)
75{
76 LIST_ADDQ(&srv_keywords.list, &kwl->list);
77}
78
79/* Return a pointer to the server keyword <kw>, or NULL if not found. If the
80 * keyword is found with a NULL ->parse() function, then an attempt is made to
81 * find one with a valid ->parse() function. This way it is possible to declare
82 * platform-dependant, known keywords as NULL, then only declare them as valid
83 * if some options are met. Note that if the requested keyword contains an
84 * opening parenthesis, everything from this point is ignored.
85 */
86struct srv_kw *srv_find_kw(const char *kw)
87{
88 int index;
89 const char *kwend;
90 struct srv_kw_list *kwl;
91 struct srv_kw *ret = NULL;
92
93 kwend = strchr(kw, '(');
94 if (!kwend)
95 kwend = kw + strlen(kw);
96
97 list_for_each_entry(kwl, &srv_keywords.list, list) {
98 for (index = 0; kwl->kw[index].kw != NULL; index++) {
99 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
100 kwl->kw[index].kw[kwend-kw] == 0) {
101 if (kwl->kw[index].parse)
102 return &kwl->kw[index]; /* found it !*/
103 else
104 ret = &kwl->kw[index]; /* may be OK */
105 }
106 }
107 }
108 return ret;
109}
110
111/* Dumps all registered "server" keywords to the <out> string pointer. The
112 * unsupported keywords are only dumped if their supported form was not
113 * found.
114 */
115void srv_dump_kws(char **out)
116{
117 struct srv_kw_list *kwl;
118 int index;
119
120 *out = NULL;
121 list_for_each_entry(kwl, &srv_keywords.list, list) {
122 for (index = 0; kwl->kw[index].kw != NULL; index++) {
123 if (kwl->kw[index].parse ||
124 srv_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
125 memprintf(out, "%s[%4s] %s%s%s%s\n", *out ? *out : "",
126 kwl->scope,
127 kwl->kw[index].kw,
128 kwl->kw[index].skip ? " <arg>" : "",
129 kwl->kw[index].default_ok ? " [dflt_ok]" : "",
130 kwl->kw[index].parse ? "" : " (not supported)");
131 }
132 }
133 }
134}
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100135
Willy Tarreaudff55432012-10-10 17:51:05 +0200136/* parse the "id" server keyword */
137static int srv_parse_id(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
138{
139 struct eb32_node *node;
140
141 if (!*args[*cur_arg + 1]) {
142 memprintf(err, "'%s' : expects an integer argument", args[*cur_arg]);
143 return ERR_ALERT | ERR_FATAL;
144 }
145
146 newsrv->puid = atol(args[*cur_arg + 1]);
147 newsrv->conf.id.key = newsrv->puid;
148
149 if (newsrv->puid <= 0) {
150 memprintf(err, "'%s' : custom id has to be > 0", args[*cur_arg]);
151 return ERR_ALERT | ERR_FATAL;
152 }
153
154 node = eb32_lookup(&curproxy->conf.used_server_id, newsrv->puid);
155 if (node) {
156 struct server *target = container_of(node, struct server, conf.id);
157 memprintf(err, "'%s' : custom id %d already used at %s:%d ('server %s')",
158 args[*cur_arg], newsrv->puid, target->conf.file, target->conf.line,
159 target->id);
160 return ERR_ALERT | ERR_FATAL;
161 }
162
163 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Baptiste Assmann7cc419a2015-07-07 22:02:20 +0200164 newsrv->flags |= SRV_F_FORCED_ID;
Willy Tarreaudff55432012-10-10 17:51:05 +0200165 return 0;
166}
167
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200168/* Shutdown all connections of a server. The caller must pass a termination
Willy Tarreaue7dff022015-04-03 01:14:29 +0200169 * code in <why>, which must be one of SF_ERR_* indicating the reason for the
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200170 * shutdown.
171 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200172void srv_shutdown_streams(struct server *srv, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200173{
Willy Tarreau87b09662015-04-03 00:22:06 +0200174 struct stream *stream, *stream_bck;
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200175
Willy Tarreau87b09662015-04-03 00:22:06 +0200176 list_for_each_entry_safe(stream, stream_bck, &srv->actconns, by_srv)
177 if (stream->srv_conn == srv)
178 stream_shutdown(stream, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200179}
180
181/* Shutdown all connections of all backup servers of a proxy. The caller must
Willy Tarreaue7dff022015-04-03 01:14:29 +0200182 * pass a termination code in <why>, which must be one of SF_ERR_* indicating
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200183 * the reason for the shutdown.
184 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200185void srv_shutdown_backup_streams(struct proxy *px, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200186{
187 struct server *srv;
188
189 for (srv = px->srv; srv != NULL; srv = srv->next)
190 if (srv->flags & SRV_F_BACKUP)
Willy Tarreau87b09662015-04-03 00:22:06 +0200191 srv_shutdown_streams(srv, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200192}
193
Willy Tarreaubda92272014-05-20 21:55:30 +0200194/* Appends some information to a message string related to a server going UP or
195 * DOWN. If both <forced> and <reason> are null and the server tracks another
196 * one, a "via" information will be provided to know where the status came from.
197 * If <reason> is non-null, the entire string will be appended after a comma and
198 * a space (eg: to report some information from the check that changed the state).
Willy Tarreau87b09662015-04-03 00:22:06 +0200199 * If <xferred> is non-negative, some information about requeued streams are
Willy Tarreaubda92272014-05-20 21:55:30 +0200200 * provided.
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200201 */
Willy Tarreaubda92272014-05-20 21:55:30 +0200202void srv_append_status(struct chunk *msg, struct server *s, const char *reason, int xferred, int forced)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200203{
Willy Tarreaubda92272014-05-20 21:55:30 +0200204 if (reason)
205 chunk_appendf(msg, ", %s", reason);
206 else if (!forced && s->track)
207 chunk_appendf(msg, " via %s/%s", s->track->proxy->id, s->track->id);
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200208
209 if (xferred >= 0) {
210 if (s->state == SRV_ST_STOPPED)
211 chunk_appendf(msg, ". %d active and %d backup servers left.%s"
212 " %d sessions active, %d requeued, %d remaining in queue",
213 s->proxy->srv_act, s->proxy->srv_bck,
214 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
215 s->cur_sess, xferred, s->nbpend);
216 else
217 chunk_appendf(msg, ". %d active and %d backup servers online.%s"
218 " %d sessions requeued, %d total in queue",
219 s->proxy->srv_act, s->proxy->srv_bck,
220 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
221 xferred, s->nbpend);
222 }
223}
224
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200225/* Marks server <s> down, regardless of its checks' statuses, notifies by all
226 * available means, recounts the remaining servers on the proxy and transfers
Willy Tarreau87b09662015-04-03 00:22:06 +0200227 * queued streams whenever possible to other servers. It automatically
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200228 * recomputes the number of servers, but not the map. Maintenance servers are
229 * ignored. It reports <reason> if non-null as the reason for going down. Note
230 * that it makes use of the trash to build the log strings, so <reason> must
231 * not be placed there.
232 */
233void srv_set_stopped(struct server *s, const char *reason)
234{
235 struct server *srv;
236 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
237 int srv_was_stopping = (s->state == SRV_ST_STOPPING);
Simon Horman64e34162015-02-06 11:11:57 +0900238 int log_level;
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200239 int xferred;
240
241 if ((s->admin & SRV_ADMF_MAINT) || s->state == SRV_ST_STOPPED)
242 return;
243
244 s->last_change = now.tv_sec;
245 s->state = SRV_ST_STOPPED;
246 if (s->proxy->lbprm.set_server_status_down)
247 s->proxy->lbprm.set_server_status_down(s);
248
249 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
Willy Tarreaue7dff022015-04-03 01:14:29 +0200250 srv_shutdown_streams(s, SF_ERR_DOWN);
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200251
Willy Tarreau87b09662015-04-03 00:22:06 +0200252 /* we might have streams queued on this server and waiting for
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200253 * a connection. Those which are redispatchable will be queued
254 * to another server or to the proxy itself.
255 */
256 xferred = pendconn_redistribute(s);
257
258 chunk_printf(&trash,
259 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
260 s->proxy->id, s->id);
261
262 srv_append_status(&trash, s, reason, xferred, 0);
263 Warning("%s.\n", trash.str);
264
265 /* we don't send an alert if the server was previously paused */
Simon Horman64e34162015-02-06 11:11:57 +0900266 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
267 send_log(s->proxy, log_level, "%s.\n", trash.str);
268 send_email_alert(s, log_level, "%s", trash.str);
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200269
270 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
271 set_backend_down(s->proxy);
272
273 s->counters.down_trans++;
274
275 for (srv = s->trackers; srv; srv = srv->tracknext)
276 srv_set_stopped(srv, NULL);
277}
278
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200279/* Marks server <s> up regardless of its checks' statuses and provided it isn't
280 * in maintenance. Notifies by all available means, recounts the remaining
281 * servers on the proxy and tries to grab requests from the proxy. It
282 * automatically recomputes the number of servers, but not the map. Maintenance
283 * servers are ignored. It reports <reason> if non-null as the reason for going
284 * up. Note that it makes use of the trash to build the log strings, so <reason>
285 * must not be placed there.
286 */
287void srv_set_running(struct server *s, const char *reason)
288{
289 struct server *srv;
290 int xferred;
291
292 if (s->admin & SRV_ADMF_MAINT)
293 return;
294
295 if (s->state == SRV_ST_STARTING || s->state == SRV_ST_RUNNING)
296 return;
297
298 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
299 if (s->proxy->last_change < now.tv_sec) // ignore negative times
300 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
301 s->proxy->last_change = now.tv_sec;
302 }
303
304 if (s->state == SRV_ST_STOPPED && s->last_change < now.tv_sec) // ignore negative times
305 s->down_time += now.tv_sec - s->last_change;
306
307 s->last_change = now.tv_sec;
308
309 s->state = SRV_ST_STARTING;
310 if (s->slowstart > 0)
311 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
312 else
313 s->state = SRV_ST_RUNNING;
314
315 server_recalc_eweight(s);
316
317 /* If the server is set with "on-marked-up shutdown-backup-sessions",
318 * and it's not a backup server and its effective weight is > 0,
Willy Tarreau87b09662015-04-03 00:22:06 +0200319 * then it can accept new connections, so we shut down all streams
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200320 * on all backup servers.
321 */
322 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
323 !(s->flags & SRV_F_BACKUP) && s->eweight)
Willy Tarreaue7dff022015-04-03 01:14:29 +0200324 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200325
326 /* check if we can handle some connections queued at the proxy. We
327 * will take as many as we can handle.
328 */
329 xferred = pendconn_grab_from_px(s);
330
331 chunk_printf(&trash,
332 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
333 s->proxy->id, s->id);
334
335 srv_append_status(&trash, s, reason, xferred, 0);
336 Warning("%s.\n", trash.str);
337 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
Simon Horman4cd477f2015-04-30 13:10:34 +0900338 send_email_alert(s, LOG_NOTICE, "%s", trash.str);
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200339
340 for (srv = s->trackers; srv; srv = srv->tracknext)
341 srv_set_running(srv, NULL);
342}
343
Willy Tarreau8eb77842014-05-21 13:54:57 +0200344/* Marks server <s> stopping regardless of its checks' statuses and provided it
345 * isn't in maintenance. Notifies by all available means, recounts the remaining
346 * servers on the proxy and tries to grab requests from the proxy. It
347 * automatically recomputes the number of servers, but not the map. Maintenance
348 * servers are ignored. It reports <reason> if non-null as the reason for going
349 * up. Note that it makes use of the trash to build the log strings, so <reason>
350 * must not be placed there.
351 */
352void srv_set_stopping(struct server *s, const char *reason)
353{
354 struct server *srv;
355 int xferred;
356
357 if (s->admin & SRV_ADMF_MAINT)
358 return;
359
360 if (s->state == SRV_ST_STOPPING)
361 return;
362
363 s->last_change = now.tv_sec;
364 s->state = SRV_ST_STOPPING;
365 if (s->proxy->lbprm.set_server_status_down)
366 s->proxy->lbprm.set_server_status_down(s);
367
Willy Tarreau87b09662015-04-03 00:22:06 +0200368 /* we might have streams queued on this server and waiting for
Willy Tarreau8eb77842014-05-21 13:54:57 +0200369 * a connection. Those which are redispatchable will be queued
370 * to another server or to the proxy itself.
371 */
372 xferred = pendconn_redistribute(s);
373
374 chunk_printf(&trash,
375 "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "",
376 s->proxy->id, s->id);
377
378 srv_append_status(&trash, s, reason, xferred, 0);
379
380 Warning("%s.\n", trash.str);
381 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
382
383 if (!s->proxy->srv_bck && !s->proxy->srv_act)
384 set_backend_down(s->proxy);
385
386 for (srv = s->trackers; srv; srv = srv->tracknext)
387 srv_set_stopping(srv, NULL);
388}
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200389
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200390/* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
391 * enforce either maint mode or drain mode. It is not allowed to set more than
392 * one flag at once. The equivalent "inherited" flag is propagated to all
393 * tracking servers. Maintenance mode disables health checks (but not agent
394 * checks). When either the flag is already set or no flag is passed, nothing
395 * is done.
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200396 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200397void srv_set_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200398{
399 struct check *check = &s->check;
400 struct server *srv;
401 int xferred;
402
403 if (!mode)
404 return;
405
406 /* stop going down as soon as we meet a server already in the same state */
407 if (s->admin & mode)
408 return;
409
410 s->admin |= mode;
411
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200412 /* stop going down if the equivalent flag was already present (forced or inherited) */
413 if (((mode & SRV_ADMF_MAINT) && (s->admin & ~mode & SRV_ADMF_MAINT)) ||
414 ((mode & SRV_ADMF_DRAIN) && (s->admin & ~mode & SRV_ADMF_DRAIN)))
415 return;
416
417 /* Maintenance must also disable health checks */
418 if (mode & SRV_ADMF_MAINT) {
419 if (s->check.state & CHK_ST_ENABLED) {
420 s->check.state |= CHK_ST_PAUSED;
421 check->health = 0;
422 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200423
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200424 if (s->state == SRV_ST_STOPPED) { /* server was already down */
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200425 chunk_printf(&trash,
426 "%sServer %s/%s was DOWN and now enters maintenance",
427 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id);
428
Willy Tarreaubda92272014-05-20 21:55:30 +0200429 srv_append_status(&trash, s, NULL, -1, (mode & SRV_ADMF_FMAINT));
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200430
431 Warning("%s.\n", trash.str);
432 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
433 }
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200434 else { /* server was still running */
435 int srv_was_stopping = (s->state == SRV_ST_STOPPING) || (s->admin & SRV_ADMF_DRAIN);
436 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
437
438 check->health = 0; /* failure */
439 s->last_change = now.tv_sec;
440 s->state = SRV_ST_STOPPED;
441 if (s->proxy->lbprm.set_server_status_down)
442 s->proxy->lbprm.set_server_status_down(s);
443
444 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
Willy Tarreaue7dff022015-04-03 01:14:29 +0200445 srv_shutdown_streams(s, SF_ERR_DOWN);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200446
Willy Tarreau87b09662015-04-03 00:22:06 +0200447 /* we might have streams queued on this server and waiting for
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200448 * a connection. Those which are redispatchable will be queued
449 * to another server or to the proxy itself.
450 */
451 xferred = pendconn_redistribute(s);
452
453 chunk_printf(&trash,
454 "%sServer %s/%s is going DOWN for maintenance",
455 s->flags & SRV_F_BACKUP ? "Backup " : "",
456 s->proxy->id, s->id);
457
458 srv_append_status(&trash, s, NULL, xferred, (mode & SRV_ADMF_FMAINT));
459
460 Warning("%s.\n", trash.str);
461 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n", trash.str);
462
463 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
464 set_backend_down(s->proxy);
465
466 s->counters.down_trans++;
467 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200468 }
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200469
470 /* drain state is applied only if not yet in maint */
471 if ((mode & SRV_ADMF_DRAIN) && !(s->admin & SRV_ADMF_MAINT)) {
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200472 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
473
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200474 s->last_change = now.tv_sec;
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200475 if (s->proxy->lbprm.set_server_status_down)
476 s->proxy->lbprm.set_server_status_down(s);
477
Willy Tarreau87b09662015-04-03 00:22:06 +0200478 /* we might have streams queued on this server and waiting for
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200479 * a connection. Those which are redispatchable will be queued
480 * to another server or to the proxy itself.
481 */
482 xferred = pendconn_redistribute(s);
483
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200484 chunk_printf(&trash, "%sServer %s/%s enters drain state",
485 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id);
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200486
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200487 srv_append_status(&trash, s, NULL, xferred, (mode & SRV_ADMF_FDRAIN));
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200488
489 Warning("%s.\n", trash.str);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200490 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
Simon Horman4cd477f2015-04-30 13:10:34 +0900491 send_email_alert(s, LOG_NOTICE, "%s", trash.str);
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200492
493 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
494 set_backend_down(s->proxy);
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200495 }
496
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200497 /* compute the inherited flag to propagate */
498 if (mode & SRV_ADMF_MAINT)
499 mode = SRV_ADMF_IMAINT;
500 else if (mode & SRV_ADMF_DRAIN)
501 mode = SRV_ADMF_IDRAIN;
502
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200503 for (srv = s->trackers; srv; srv = srv->tracknext)
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200504 srv_set_admin_flag(srv, mode);
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200505}
506
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200507/* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
508 * stop enforcing either maint mode or drain mode. It is not allowed to set more
509 * than one flag at once. The equivalent "inherited" flag is propagated to all
510 * tracking servers. Leaving maintenance mode re-enables health checks. When
511 * either the flag is already cleared or no flag is passed, nothing is done.
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200512 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200513void srv_clr_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200514{
515 struct check *check = &s->check;
516 struct server *srv;
517 int xferred = -1;
518
519 if (!mode)
520 return;
521
522 /* stop going down as soon as we see the flag is not there anymore */
523 if (!(s->admin & mode))
524 return;
525
526 s->admin &= ~mode;
527
528 if (s->admin & SRV_ADMF_MAINT) {
529 /* remaining in maintenance mode, let's inform precisely about the
530 * situation.
531 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200532 if (mode & SRV_ADMF_FMAINT) {
533 chunk_printf(&trash,
534 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
535 s->flags & SRV_F_BACKUP ? "Backup " : "",
536 s->proxy->id, s->id);
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200537
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200538 if (s->track) /* normally it's mandatory here */
539 chunk_appendf(&trash, " via %s/%s",
540 s->track->proxy->id, s->track->id);
541 Warning("%s.\n", trash.str);
542 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
543 }
544 else if (mode & SRV_ADMF_IMAINT) {
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200545 chunk_printf(&trash,
546 "%sServer %s/%s remains in forced maintenance",
547 s->flags & SRV_F_BACKUP ? "Backup " : "",
548 s->proxy->id, s->id);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200549 Warning("%s.\n", trash.str);
550 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
551 }
552 /* don't report anything when leaving drain mode and remaining in maintenance */
553 }
554 else if (mode & SRV_ADMF_MAINT) {
555 /* OK here we're leaving maintenance, we have many things to check,
556 * because the server might possibly be coming back up depending on
557 * its state. In practice, leaving maintenance means that we should
558 * immediately turn to UP (more or less the slowstart) under the
559 * following conditions :
560 * - server is neither checked nor tracked
561 * - server tracks another server which is not checked
562 * - server tracks another server which is already up
563 * Which sums up as something simpler :
564 * "either the tracking server is up or the server's checks are disabled
565 * or up". Otherwise we only re-enable health checks. There's a special
566 * case associated to the stopping state which can be inherited. Note
567 * that the server might still be in drain mode, which is naturally dealt
568 * with by the lower level functions.
569 */
570
571 if (s->check.state & CHK_ST_ENABLED) {
572 s->check.state &= ~CHK_ST_PAUSED;
573 check->health = check->rise; /* start OK but check immediately */
574 }
575
576 if ((!s->track || s->track->state != SRV_ST_STOPPED) &&
577 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
578 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
579 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
580 if (s->proxy->last_change < now.tv_sec) // ignore negative times
581 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
582 s->proxy->last_change = now.tv_sec;
583 }
584
585 if (s->last_change < now.tv_sec) // ignore negative times
586 s->down_time += now.tv_sec - s->last_change;
587 s->last_change = now.tv_sec;
588
589 if (s->track && s->track->state == SRV_ST_STOPPING)
590 s->state = SRV_ST_STOPPING;
591 else {
592 s->state = SRV_ST_STARTING;
593 if (s->slowstart > 0)
594 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
595 else
596 s->state = SRV_ST_RUNNING;
597 }
598
599 server_recalc_eweight(s);
600
601 /* If the server is set with "on-marked-up shutdown-backup-sessions",
602 * and it's not a backup server and its effective weight is > 0,
Willy Tarreau87b09662015-04-03 00:22:06 +0200603 * then it can accept new connections, so we shut down all streams
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200604 * on all backup servers.
605 */
606 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
607 !(s->flags & SRV_F_BACKUP) && s->eweight)
Willy Tarreaue7dff022015-04-03 01:14:29 +0200608 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200609
610 /* check if we can handle some connections queued at the proxy. We
611 * will take as many as we can handle.
612 */
613 xferred = pendconn_grab_from_px(s);
614 }
615
616 if (mode & SRV_ADMF_FMAINT) {
617 chunk_printf(&trash,
618 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
619 s->flags & SRV_F_BACKUP ? "Backup " : "",
620 s->proxy->id, s->id,
621 (s->state == SRV_ST_STOPPED) ? "DOWN" : "UP",
622 (s->admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200623 }
624 else {
625 chunk_printf(&trash,
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200626 "%sServer %s/%s is %s/%s (leaving maintenance)",
627 s->flags & SRV_F_BACKUP ? "Backup " : "",
628 s->proxy->id, s->id,
629 (s->state == SRV_ST_STOPPED) ? "DOWN" : "UP",
630 (s->admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
631 srv_append_status(&trash, s, NULL, xferred, 0);
632 }
633 Warning("%s.\n", trash.str);
634 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
635 }
636 else if ((mode & SRV_ADMF_DRAIN) && (s->admin & SRV_ADMF_DRAIN)) {
637 /* remaining in drain mode after removing one of its flags */
638
639 if (mode & SRV_ADMF_FDRAIN) {
640 chunk_printf(&trash,
641 "%sServer %s/%s is leaving forced drain but remains in drain mode",
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200642 s->flags & SRV_F_BACKUP ? "Backup " : "",
643 s->proxy->id, s->id);
644
645 if (s->track) /* normally it's mandatory here */
646 chunk_appendf(&trash, " via %s/%s",
647 s->track->proxy->id, s->track->id);
648 }
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200649 else {
650 chunk_printf(&trash,
651 "%sServer %s/%s remains in forced drain mode",
652 s->flags & SRV_F_BACKUP ? "Backup " : "",
653 s->proxy->id, s->id);
654 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200655 Warning("%s.\n", trash.str);
656 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200657 }
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200658 else if (mode & SRV_ADMF_DRAIN) {
659 /* OK completely leaving drain mode */
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200660 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
661 if (s->proxy->last_change < now.tv_sec) // ignore negative times
662 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
663 s->proxy->last_change = now.tv_sec;
664 }
665
666 if (s->last_change < now.tv_sec) // ignore negative times
667 s->down_time += now.tv_sec - s->last_change;
668 s->last_change = now.tv_sec;
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200669 server_recalc_eweight(s);
670
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200671 if (mode & SRV_ADMF_FDRAIN) {
672 chunk_printf(&trash,
673 "%sServer %s/%s is %s (leaving forced drain)",
674 s->flags & SRV_F_BACKUP ? "Backup " : "",
675 s->proxy->id, s->id,
676 (s->state == SRV_ST_STOPPED) ? "DOWN" : "UP");
677 }
678 else {
679 chunk_printf(&trash,
680 "%sServer %s/%s is %s (leaving drain)",
681 s->flags & SRV_F_BACKUP ? "Backup " : "",
682 s->proxy->id, s->id,
683 (s->state == SRV_ST_STOPPED) ? "DOWN" : "UP");
684 if (s->track) /* normally it's mandatory here */
685 chunk_appendf(&trash, " via %s/%s",
686 s->track->proxy->id, s->track->id);
687 }
688 Warning("%s.\n", trash.str);
689 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200690 }
691
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200692 /* stop going down if the equivalent flag is still present (forced or inherited) */
693 if (((mode & SRV_ADMF_MAINT) && (s->admin & SRV_ADMF_MAINT)) ||
694 ((mode & SRV_ADMF_DRAIN) && (s->admin & SRV_ADMF_DRAIN)))
695 return;
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200696
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200697 if (mode & SRV_ADMF_MAINT)
698 mode = SRV_ADMF_IMAINT;
699 else if (mode & SRV_ADMF_DRAIN)
700 mode = SRV_ADMF_IDRAIN;
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200701
702 for (srv = s->trackers; srv; srv = srv->tracknext)
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200703 srv_clr_admin_flag(srv, mode);
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200704}
705
Willy Tarreaudff55432012-10-10 17:51:05 +0200706/* Note: must not be declared <const> as its list will be overwritten.
707 * Please take care of keeping this list alphabetically sorted, doing so helps
708 * all code contributors.
709 * Optional keywords are also declared with a NULL ->parse() function so that
710 * the config parser can report an appropriate error when a known keyword was
711 * not enabled.
712 */
713static struct srv_kw_list srv_kws = { "ALL", { }, {
714 { "id", srv_parse_id, 1, 0 }, /* set id# of server */
715 { NULL, NULL, 0 },
716}};
717
718__attribute__((constructor))
719static void __listener_init(void)
720{
721 srv_register_keywords(&srv_kws);
722}
723
Willy Tarreau004e0452013-11-21 11:22:01 +0100724/* Recomputes the server's eweight based on its state, uweight, the current time,
725 * and the proxy's algorihtm. To be used after updating sv->uweight. The warmup
726 * state is automatically disabled if the time is elapsed.
727 */
728void server_recalc_eweight(struct server *sv)
729{
730 struct proxy *px = sv->proxy;
731 unsigned w;
732
733 if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) {
734 /* go to full throttle if the slowstart interval is reached */
Willy Tarreau892337c2014-05-13 23:41:20 +0200735 if (sv->state == SRV_ST_STARTING)
736 sv->state = SRV_ST_RUNNING;
Willy Tarreau004e0452013-11-21 11:22:01 +0100737 }
738
739 /* We must take care of not pushing the server to full throttle during slow starts.
740 * It must also start immediately, at least at the minimal step when leaving maintenance.
741 */
Willy Tarreau892337c2014-05-13 23:41:20 +0200742 if ((sv->state == SRV_ST_STARTING) && (px->lbprm.algo & BE_LB_PROP_DYN))
Willy Tarreau004e0452013-11-21 11:22:01 +0100743 w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart;
744 else
745 w = px->lbprm.wdiv;
746
747 sv->eweight = (sv->uweight * w + px->lbprm.wmult - 1) / px->lbprm.wmult;
748
749 /* now propagate the status change to any LB algorithms */
750 if (px->lbprm.update_server_eweight)
751 px->lbprm.update_server_eweight(sv);
Willy Tarreau9943d312014-05-22 16:20:59 +0200752 else if (srv_is_usable(sv)) {
Willy Tarreau004e0452013-11-21 11:22:01 +0100753 if (px->lbprm.set_server_status_up)
754 px->lbprm.set_server_status_up(sv);
755 }
756 else {
757 if (px->lbprm.set_server_status_down)
758 px->lbprm.set_server_status_down(sv);
759 }
760}
761
Willy Tarreaubaaee002006-06-26 02:48:02 +0200762/*
Simon Horman7d09b9a2013-02-12 10:45:51 +0900763 * Parses weight_str and configures sv accordingly.
764 * Returns NULL on success, error message string otherwise.
765 */
766const char *server_parse_weight_change_request(struct server *sv,
767 const char *weight_str)
768{
769 struct proxy *px;
Simon Hormanb796afa2013-02-12 10:45:53 +0900770 long int w;
771 char *end;
Simon Horman7d09b9a2013-02-12 10:45:51 +0900772
773 px = sv->proxy;
774
775 /* if the weight is terminated with '%', it is set relative to
776 * the initial weight, otherwise it is absolute.
777 */
778 if (!*weight_str)
779 return "Require <weight> or <weight%>.\n";
780
Simon Hormanb796afa2013-02-12 10:45:53 +0900781 w = strtol(weight_str, &end, 10);
782 if (end == weight_str)
783 return "Empty weight string empty or preceded by garbage";
784 else if (end[0] == '%' && end[1] == '\0') {
Simon Horman58b5d292013-02-12 10:45:52 +0900785 if (w < 0)
Simon Horman7d09b9a2013-02-12 10:45:51 +0900786 return "Relative weight must be positive.\n";
Simon Horman58b5d292013-02-12 10:45:52 +0900787 /* Avoid integer overflow */
788 if (w > 25600)
789 w = 25600;
Simon Horman7d09b9a2013-02-12 10:45:51 +0900790 w = sv->iweight * w / 100;
Simon Horman58b5d292013-02-12 10:45:52 +0900791 if (w > 256)
792 w = 256;
Simon Horman7d09b9a2013-02-12 10:45:51 +0900793 }
794 else if (w < 0 || w > 256)
795 return "Absolute weight can only be between 0 and 256 inclusive.\n";
Simon Hormanb796afa2013-02-12 10:45:53 +0900796 else if (end[0] != '\0')
797 return "Trailing garbage in weight string";
Simon Horman7d09b9a2013-02-12 10:45:51 +0900798
799 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN))
800 return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
801
802 sv->uweight = w;
Willy Tarreau004e0452013-11-21 11:22:01 +0100803 server_recalc_eweight(sv);
Simon Horman7d09b9a2013-02-12 10:45:51 +0900804
805 return NULL;
806}
807
Baptiste Assmann3d8f8312015-04-13 22:54:33 +0200808/*
809 * Parses <addr_str> and configures <sv> accordingly.
810 * Returns:
811 * - error string on error
812 * - NULL on success
813 */
814const char *server_parse_addr_change_request(struct server *sv,
815 const char *addr_str)
816{
817 unsigned char ip[INET6_ADDRSTRLEN];
818
819 if (inet_pton(AF_INET6, addr_str, ip)) {
820 update_server_addr(sv, ip, AF_INET6, "stats command\n");
821 return NULL;
822 }
823 if (inet_pton(AF_INET, addr_str, ip)) {
824 update_server_addr(sv, ip, AF_INET, "stats command\n");
825 return NULL;
826 }
827
828 return "Could not understand IP address format.\n";
829}
830
Willy Tarreau272adea2014-03-31 10:39:59 +0200831int parse_server(const char *file, int linenum, char **args, struct proxy *curproxy, struct proxy *defproxy)
832{
833 struct server *newsrv = NULL;
834 const char *err;
835 char *errmsg = NULL;
836 int err_code = 0;
837 unsigned val;
838
839 if (!strcmp(args[0], "server") || !strcmp(args[0], "default-server")) { /* server address */
840 int cur_arg;
841 short realport = 0;
842 int do_agent = 0, do_check = 0, defsrv = (*args[0] == 'd');
843
844 if (!defsrv && curproxy == defproxy) {
845 Alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]);
846 err_code |= ERR_ALERT | ERR_FATAL;
847 goto out;
848 }
849 else if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL))
850 err_code |= ERR_ALERT | ERR_FATAL;
851
852 if (!*args[2]) {
853 Alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
854 file, linenum, args[0]);
855 err_code |= ERR_ALERT | ERR_FATAL;
856 goto out;
857 }
858
859 err = invalid_char(args[1]);
860 if (err && !defsrv) {
861 Alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
862 file, linenum, *err, args[1]);
863 err_code |= ERR_ALERT | ERR_FATAL;
864 goto out;
865 }
866
867 if (!defsrv) {
868 struct sockaddr_storage *sk;
869 int port1, port2;
870 struct protocol *proto;
Baptiste Assmanna68ca962015-04-14 01:15:08 +0200871 struct dns_resolution *curr_resolution;
Willy Tarreau272adea2014-03-31 10:39:59 +0200872
873 if ((newsrv = (struct server *)calloc(1, sizeof(struct server))) == NULL) {
874 Alert("parsing [%s:%d] : out of memory.\n", file, linenum);
875 err_code |= ERR_ALERT | ERR_ABORT;
876 goto out;
877 }
878
879 /* the servers are linked backwards first */
880 newsrv->next = curproxy->srv;
881 curproxy->srv = newsrv;
882 newsrv->proxy = curproxy;
883 newsrv->conf.file = strdup(file);
884 newsrv->conf.line = linenum;
885
886 newsrv->obj_type = OBJ_TYPE_SERVER;
887 LIST_INIT(&newsrv->actconns);
888 LIST_INIT(&newsrv->pendconns);
889 do_check = 0;
890 do_agent = 0;
Willy Tarreauc93cd162014-05-13 15:54:22 +0200891 newsrv->flags = 0;
Willy Tarreau20125212014-05-13 19:44:56 +0200892 newsrv->admin = 0;
Willy Tarreau892337c2014-05-13 23:41:20 +0200893 newsrv->state = SRV_ST_RUNNING; /* early server setup */
Willy Tarreau272adea2014-03-31 10:39:59 +0200894 newsrv->last_change = now.tv_sec;
895 newsrv->id = strdup(args[1]);
896
897 /* several ways to check the port component :
898 * - IP => port=+0, relative (IPv4 only)
899 * - IP: => port=+0, relative
900 * - IP:N => port=N, absolute
901 * - IP:+N => port=+N, relative
902 * - IP:-N => port=-N, relative
903 */
904 sk = str2sa_range(args[2], &port1, &port2, &errmsg, NULL);
905 if (!sk) {
906 Alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
907 err_code |= ERR_ALERT | ERR_FATAL;
908 goto out;
909 }
910
911 proto = protocol_by_family(sk->ss_family);
912 if (!proto || !proto->connect) {
913 Alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
914 file, linenum, args[0], args[1]);
915 err_code |= ERR_ALERT | ERR_FATAL;
916 goto out;
917 }
918
919 if (!port1 || !port2) {
920 /* no port specified, +offset, -offset */
Willy Tarreauc93cd162014-05-13 15:54:22 +0200921 newsrv->flags |= SRV_F_MAPPORTS;
Willy Tarreau272adea2014-03-31 10:39:59 +0200922 }
923 else if (port1 != port2) {
924 /* port range */
925 Alert("parsing [%s:%d] : '%s %s' : port ranges are not allowed in '%s'\n",
926 file, linenum, args[0], args[1], args[2]);
927 err_code |= ERR_ALERT | ERR_FATAL;
928 goto out;
929 }
930 else {
931 /* used by checks */
932 realport = port1;
933 }
934
Baptiste Assmanna68ca962015-04-14 01:15:08 +0200935 /* save hostname and create associated name resolution */
936 switch (sk->ss_family) {
937 case AF_INET: {
938 /* remove the port if any */
939 char *c;
940 if ((c = rindex(args[2], ':')) != NULL) {
941 newsrv->hostname = my_strndup(args[2], c - args[2]);
942 }
943 else {
944 newsrv->hostname = strdup(args[2]);
945 }
946 }
947 break;
948 case AF_INET6:
949 newsrv->hostname = strdup(args[2]);
950 break;
951 default:
952 goto skip_name_resolution;
953 }
954
955 /* no name resolution if an IP has been provided */
956 if (inet_pton(sk->ss_family, newsrv->hostname, trash.str) == 1)
957 goto skip_name_resolution;
958
959 if ((curr_resolution = calloc(1, sizeof(struct dns_resolution))) == NULL)
960 goto skip_name_resolution;
961
962 curr_resolution->hostname_dn_len = dns_str_to_dn_label_len(newsrv->hostname);
963 if ((curr_resolution->hostname_dn = calloc(curr_resolution->hostname_dn_len + 1, sizeof(char))) == NULL)
964 goto skip_name_resolution;
965 if ((dns_str_to_dn_label(newsrv->hostname, curr_resolution->hostname_dn, curr_resolution->hostname_dn_len + 1)) == NULL) {
966 Alert("parsing [%s:%d] : Invalid hostname '%s'\n",
967 file, linenum, args[2]);
968 err_code |= ERR_ALERT | ERR_FATAL;
969 goto out;
970 }
971
972 curr_resolution->requester = newsrv;
973 curr_resolution->requester_cb = snr_resolution_cb;
974 curr_resolution->requester_error_cb = snr_resolution_error_cb;
975 curr_resolution->status = RSLV_STATUS_NONE;
976 curr_resolution->step = RSLV_STEP_NONE;
977 /* a first resolution has been done by the configuration parser */
978 curr_resolution->last_resolution = now_ms;
979 newsrv->resolution = curr_resolution;
980
981 skip_name_resolution:
Willy Tarreau272adea2014-03-31 10:39:59 +0200982 newsrv->addr = *sk;
Cyril Bonté9ce13112014-11-15 22:41:27 +0100983 newsrv->xprt = newsrv->check.xprt = newsrv->agent.xprt = &raw_sock;
Willy Tarreau272adea2014-03-31 10:39:59 +0200984
Thierry FOURNIERbb2ae642015-01-14 11:31:49 +0100985 if (!protocol_by_family(newsrv->addr.ss_family)) {
Willy Tarreau272adea2014-03-31 10:39:59 +0200986 Alert("parsing [%s:%d] : Unknown protocol family %d '%s'\n",
987 file, linenum, newsrv->addr.ss_family, args[2]);
988 err_code |= ERR_ALERT | ERR_FATAL;
989 goto out;
990 }
991
992 newsrv->check.use_ssl = curproxy->defsrv.check.use_ssl;
993 newsrv->check.port = curproxy->defsrv.check.port;
994 newsrv->check.inter = curproxy->defsrv.check.inter;
995 newsrv->check.fastinter = curproxy->defsrv.check.fastinter;
996 newsrv->check.downinter = curproxy->defsrv.check.downinter;
997 newsrv->agent.use_ssl = curproxy->defsrv.agent.use_ssl;
998 newsrv->agent.port = curproxy->defsrv.agent.port;
999 newsrv->agent.inter = curproxy->defsrv.agent.inter;
1000 newsrv->agent.fastinter = curproxy->defsrv.agent.fastinter;
1001 newsrv->agent.downinter = curproxy->defsrv.agent.downinter;
1002 newsrv->maxqueue = curproxy->defsrv.maxqueue;
1003 newsrv->minconn = curproxy->defsrv.minconn;
1004 newsrv->maxconn = curproxy->defsrv.maxconn;
1005 newsrv->slowstart = curproxy->defsrv.slowstart;
1006 newsrv->onerror = curproxy->defsrv.onerror;
1007 newsrv->onmarkeddown = curproxy->defsrv.onmarkeddown;
1008 newsrv->onmarkedup = curproxy->defsrv.onmarkedup;
1009 newsrv->consecutive_errors_limit
1010 = curproxy->defsrv.consecutive_errors_limit;
1011#ifdef OPENSSL
1012 newsrv->use_ssl = curproxy->defsrv.use_ssl;
1013#endif
1014 newsrv->uweight = newsrv->iweight
1015 = curproxy->defsrv.iweight;
1016
1017 newsrv->check.status = HCHK_STATUS_INI;
1018 newsrv->check.rise = curproxy->defsrv.check.rise;
1019 newsrv->check.fall = curproxy->defsrv.check.fall;
1020 newsrv->check.health = newsrv->check.rise; /* up, but will fall down at first failure */
1021 newsrv->check.server = newsrv;
Simon Hormane16c1b32015-01-30 11:22:57 +09001022 newsrv->check.tcpcheck_rules = &curproxy->tcpcheck_rules;
Willy Tarreau272adea2014-03-31 10:39:59 +02001023
1024 newsrv->agent.status = HCHK_STATUS_INI;
1025 newsrv->agent.rise = curproxy->defsrv.agent.rise;
1026 newsrv->agent.fall = curproxy->defsrv.agent.fall;
1027 newsrv->agent.health = newsrv->agent.rise; /* up, but will fall down at first failure */
1028 newsrv->agent.server = newsrv;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02001029 newsrv->resolver_family_priority = curproxy->defsrv.resolver_family_priority;
1030 if (newsrv->resolver_family_priority == AF_UNSPEC)
1031 newsrv->resolver_family_priority = AF_INET6;
Willy Tarreau272adea2014-03-31 10:39:59 +02001032
1033 cur_arg = 3;
1034 } else {
1035 newsrv = &curproxy->defsrv;
1036 cur_arg = 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02001037 newsrv->resolver_family_priority = AF_INET6;
Willy Tarreau272adea2014-03-31 10:39:59 +02001038 }
1039
1040 while (*args[cur_arg]) {
1041 if (!strcmp(args[cur_arg], "agent-check")) {
1042 global.maxsock++;
1043 do_agent = 1;
1044 cur_arg += 1;
1045 } else if (!strcmp(args[cur_arg], "agent-inter")) {
1046 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
1047 if (err) {
1048 Alert("parsing [%s:%d] : unexpected character '%c' in 'agent-inter' argument of server %s.\n",
1049 file, linenum, *err, newsrv->id);
1050 err_code |= ERR_ALERT | ERR_FATAL;
1051 goto out;
1052 }
1053 if (val <= 0) {
1054 Alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
1055 file, linenum, val, args[cur_arg], newsrv->id);
1056 err_code |= ERR_ALERT | ERR_FATAL;
1057 goto out;
1058 }
1059 newsrv->agent.inter = val;
1060 cur_arg += 2;
1061 }
1062 else if (!strcmp(args[cur_arg], "agent-port")) {
1063 global.maxsock++;
1064 newsrv->agent.port = atol(args[cur_arg + 1]);
1065 cur_arg += 2;
1066 }
1067 else if (!defsrv && !strcmp(args[cur_arg], "cookie")) {
1068 newsrv->cookie = strdup(args[cur_arg + 1]);
1069 newsrv->cklen = strlen(args[cur_arg + 1]);
1070 cur_arg += 2;
1071 }
1072 else if (!defsrv && !strcmp(args[cur_arg], "redir")) {
1073 newsrv->rdr_pfx = strdup(args[cur_arg + 1]);
1074 newsrv->rdr_len = strlen(args[cur_arg + 1]);
1075 cur_arg += 2;
1076 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02001077 else if (!strcmp(args[cur_arg], "resolvers")) {
1078 newsrv->resolvers_id = strdup(args[cur_arg + 1]);
1079 cur_arg += 2;
1080 }
1081 else if (!strcmp(args[cur_arg], "resolve-prefer")) {
1082 if (!strcmp(args[cur_arg + 1], "ipv4"))
1083 newsrv->resolver_family_priority = AF_INET;
1084 else if (!strcmp(args[cur_arg + 1], "ipv6"))
1085 newsrv->resolver_family_priority = AF_INET6;
1086 else {
1087 Alert("parsing [%s:%d]: '%s' expects either ipv4 or ipv6 as argument.\n",
1088 file, linenum, args[cur_arg]);
1089 err_code |= ERR_ALERT | ERR_FATAL;
1090 goto out;
1091 }
1092 cur_arg += 2;
1093 }
Willy Tarreau272adea2014-03-31 10:39:59 +02001094 else if (!strcmp(args[cur_arg], "rise")) {
1095 if (!*args[cur_arg + 1]) {
1096 Alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
1097 file, linenum, args[cur_arg]);
1098 err_code |= ERR_ALERT | ERR_FATAL;
1099 goto out;
1100 }
1101
1102 newsrv->check.rise = atol(args[cur_arg + 1]);
1103 if (newsrv->check.rise <= 0) {
1104 Alert("parsing [%s:%d]: '%s' has to be > 0.\n",
1105 file, linenum, args[cur_arg]);
1106 err_code |= ERR_ALERT | ERR_FATAL;
1107 goto out;
1108 }
1109
1110 if (newsrv->check.health)
1111 newsrv->check.health = newsrv->check.rise;
1112 cur_arg += 2;
1113 }
1114 else if (!strcmp(args[cur_arg], "fall")) {
1115 newsrv->check.fall = atol(args[cur_arg + 1]);
1116
1117 if (!*args[cur_arg + 1]) {
1118 Alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
1119 file, linenum, args[cur_arg]);
1120 err_code |= ERR_ALERT | ERR_FATAL;
1121 goto out;
1122 }
1123
1124 if (newsrv->check.fall <= 0) {
1125 Alert("parsing [%s:%d]: '%s' has to be > 0.\n",
1126 file, linenum, args[cur_arg]);
1127 err_code |= ERR_ALERT | ERR_FATAL;
1128 goto out;
1129 }
1130
1131 cur_arg += 2;
1132 }
1133 else if (!strcmp(args[cur_arg], "inter")) {
1134 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
1135 if (err) {
1136 Alert("parsing [%s:%d] : unexpected character '%c' in 'inter' argument of server %s.\n",
1137 file, linenum, *err, newsrv->id);
1138 err_code |= ERR_ALERT | ERR_FATAL;
1139 goto out;
1140 }
1141 if (val <= 0) {
1142 Alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
1143 file, linenum, val, args[cur_arg], newsrv->id);
1144 err_code |= ERR_ALERT | ERR_FATAL;
1145 goto out;
1146 }
1147 newsrv->check.inter = val;
1148 cur_arg += 2;
1149 }
1150 else if (!strcmp(args[cur_arg], "fastinter")) {
1151 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
1152 if (err) {
1153 Alert("parsing [%s:%d]: unexpected character '%c' in 'fastinter' argument of server %s.\n",
1154 file, linenum, *err, newsrv->id);
1155 err_code |= ERR_ALERT | ERR_FATAL;
1156 goto out;
1157 }
1158 if (val <= 0) {
1159 Alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
1160 file, linenum, val, args[cur_arg], newsrv->id);
1161 err_code |= ERR_ALERT | ERR_FATAL;
1162 goto out;
1163 }
1164 newsrv->check.fastinter = val;
1165 cur_arg += 2;
1166 }
1167 else if (!strcmp(args[cur_arg], "downinter")) {
1168 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
1169 if (err) {
1170 Alert("parsing [%s:%d]: unexpected character '%c' in 'downinter' argument of server %s.\n",
1171 file, linenum, *err, newsrv->id);
1172 err_code |= ERR_ALERT | ERR_FATAL;
1173 goto out;
1174 }
1175 if (val <= 0) {
1176 Alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
1177 file, linenum, val, args[cur_arg], newsrv->id);
1178 err_code |= ERR_ALERT | ERR_FATAL;
1179 goto out;
1180 }
1181 newsrv->check.downinter = val;
1182 cur_arg += 2;
1183 }
1184 else if (!defsrv && !strcmp(args[cur_arg], "addr")) {
1185 struct sockaddr_storage *sk;
1186 int port1, port2;
1187 struct protocol *proto;
1188
1189 sk = str2sa_range(args[cur_arg + 1], &port1, &port2, &errmsg, NULL);
1190 if (!sk) {
1191 Alert("parsing [%s:%d] : '%s' : %s\n",
1192 file, linenum, args[cur_arg], errmsg);
1193 err_code |= ERR_ALERT | ERR_FATAL;
1194 goto out;
1195 }
1196
1197 proto = protocol_by_family(sk->ss_family);
1198 if (!proto || !proto->connect) {
1199 Alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
1200 file, linenum, args[cur_arg], args[cur_arg + 1]);
1201 err_code |= ERR_ALERT | ERR_FATAL;
1202 goto out;
1203 }
1204
1205 if (port1 != port2) {
1206 Alert("parsing [%s:%d] : '%s' : port ranges and offsets are not allowed in '%s'\n",
1207 file, linenum, args[cur_arg], args[cur_arg + 1]);
1208 err_code |= ERR_ALERT | ERR_FATAL;
1209 goto out;
1210 }
1211
Simon Horman41f58762015-01-30 11:22:56 +09001212 newsrv->check.addr = newsrv->agent.addr = *sk;
Willy Tarreau272adea2014-03-31 10:39:59 +02001213 cur_arg += 2;
1214 }
1215 else if (!strcmp(args[cur_arg], "port")) {
1216 newsrv->check.port = atol(args[cur_arg + 1]);
1217 cur_arg += 2;
1218 }
1219 else if (!defsrv && !strcmp(args[cur_arg], "backup")) {
Willy Tarreauc93cd162014-05-13 15:54:22 +02001220 newsrv->flags |= SRV_F_BACKUP;
Willy Tarreau272adea2014-03-31 10:39:59 +02001221 cur_arg ++;
1222 }
1223 else if (!defsrv && !strcmp(args[cur_arg], "non-stick")) {
Willy Tarreauc93cd162014-05-13 15:54:22 +02001224 newsrv->flags |= SRV_F_NON_STICK;
Willy Tarreau272adea2014-03-31 10:39:59 +02001225 cur_arg ++;
1226 }
1227 else if (!defsrv && !strcmp(args[cur_arg], "send-proxy")) {
David Safb76832014-05-08 23:42:08 -04001228 newsrv->pp_opts |= SRV_PP_V1;
Willy Tarreau272adea2014-03-31 10:39:59 +02001229 cur_arg ++;
1230 }
David Safb76832014-05-08 23:42:08 -04001231 else if (!defsrv && !strcmp(args[cur_arg], "send-proxy-v2")) {
1232 newsrv->pp_opts |= SRV_PP_V2;
1233 cur_arg ++;
1234 }
Willy Tarreau272adea2014-03-31 10:39:59 +02001235 else if (!defsrv && !strcmp(args[cur_arg], "check-send-proxy")) {
1236 newsrv->check.send_proxy = 1;
1237 cur_arg ++;
1238 }
1239 else if (!strcmp(args[cur_arg], "weight")) {
1240 int w;
1241 w = atol(args[cur_arg + 1]);
1242 if (w < 0 || w > SRV_UWGHT_MAX) {
1243 Alert("parsing [%s:%d] : weight of server %s is not within 0 and %d (%d).\n",
1244 file, linenum, newsrv->id, SRV_UWGHT_MAX, w);
1245 err_code |= ERR_ALERT | ERR_FATAL;
1246 goto out;
1247 }
1248 newsrv->uweight = newsrv->iweight = w;
1249 cur_arg += 2;
1250 }
1251 else if (!strcmp(args[cur_arg], "minconn")) {
1252 newsrv->minconn = atol(args[cur_arg + 1]);
1253 cur_arg += 2;
1254 }
1255 else if (!strcmp(args[cur_arg], "maxconn")) {
1256 newsrv->maxconn = atol(args[cur_arg + 1]);
1257 cur_arg += 2;
1258 }
1259 else if (!strcmp(args[cur_arg], "maxqueue")) {
1260 newsrv->maxqueue = atol(args[cur_arg + 1]);
1261 cur_arg += 2;
1262 }
1263 else if (!strcmp(args[cur_arg], "slowstart")) {
1264 /* slowstart is stored in seconds */
1265 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
1266 if (err) {
1267 Alert("parsing [%s:%d] : unexpected character '%c' in 'slowstart' argument of server %s.\n",
1268 file, linenum, *err, newsrv->id);
1269 err_code |= ERR_ALERT | ERR_FATAL;
1270 goto out;
1271 }
1272 newsrv->slowstart = (val + 999) / 1000;
1273 cur_arg += 2;
1274 }
1275 else if (!defsrv && !strcmp(args[cur_arg], "track")) {
1276
1277 if (!*args[cur_arg + 1]) {
1278 Alert("parsing [%s:%d]: 'track' expects [<proxy>/]<server> as argument.\n",
1279 file, linenum);
1280 err_code |= ERR_ALERT | ERR_FATAL;
1281 goto out;
1282 }
1283
1284 newsrv->trackit = strdup(args[cur_arg + 1]);
1285
1286 cur_arg += 2;
1287 }
1288 else if (!defsrv && !strcmp(args[cur_arg], "check")) {
1289 global.maxsock++;
1290 do_check = 1;
1291 cur_arg += 1;
1292 }
1293 else if (!defsrv && !strcmp(args[cur_arg], "disabled")) {
Willy Tarreau20125212014-05-13 19:44:56 +02001294 newsrv->admin |= SRV_ADMF_FMAINT;
Willy Tarreau892337c2014-05-13 23:41:20 +02001295 newsrv->state = SRV_ST_STOPPED;
Willy Tarreau272adea2014-03-31 10:39:59 +02001296 newsrv->check.state |= CHK_ST_PAUSED;
1297 newsrv->check.health = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02001298 cur_arg += 1;
1299 }
1300 else if (!defsrv && !strcmp(args[cur_arg], "observe")) {
1301 if (!strcmp(args[cur_arg + 1], "none"))
1302 newsrv->observe = HANA_OBS_NONE;
1303 else if (!strcmp(args[cur_arg + 1], "layer4"))
1304 newsrv->observe = HANA_OBS_LAYER4;
1305 else if (!strcmp(args[cur_arg + 1], "layer7")) {
1306 if (curproxy->mode != PR_MODE_HTTP) {
1307 Alert("parsing [%s:%d]: '%s' can only be used in http proxies.\n",
1308 file, linenum, args[cur_arg + 1]);
1309 err_code |= ERR_ALERT;
1310 }
1311 newsrv->observe = HANA_OBS_LAYER7;
1312 }
1313 else {
1314 Alert("parsing [%s:%d]: '%s' expects one of 'none', "
1315 "'layer4', 'layer7' but got '%s'\n",
1316 file, linenum, args[cur_arg], args[cur_arg + 1]);
1317 err_code |= ERR_ALERT | ERR_FATAL;
1318 goto out;
1319 }
1320
1321 cur_arg += 2;
1322 }
1323 else if (!strcmp(args[cur_arg], "on-error")) {
1324 if (!strcmp(args[cur_arg + 1], "fastinter"))
1325 newsrv->onerror = HANA_ONERR_FASTINTER;
1326 else if (!strcmp(args[cur_arg + 1], "fail-check"))
1327 newsrv->onerror = HANA_ONERR_FAILCHK;
1328 else if (!strcmp(args[cur_arg + 1], "sudden-death"))
1329 newsrv->onerror = HANA_ONERR_SUDDTH;
1330 else if (!strcmp(args[cur_arg + 1], "mark-down"))
1331 newsrv->onerror = HANA_ONERR_MARKDWN;
1332 else {
1333 Alert("parsing [%s:%d]: '%s' expects one of 'fastinter', "
1334 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'\n",
1335 file, linenum, args[cur_arg], args[cur_arg + 1]);
1336 err_code |= ERR_ALERT | ERR_FATAL;
1337 goto out;
1338 }
1339
1340 cur_arg += 2;
1341 }
1342 else if (!strcmp(args[cur_arg], "on-marked-down")) {
1343 if (!strcmp(args[cur_arg + 1], "shutdown-sessions"))
1344 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
1345 else {
1346 Alert("parsing [%s:%d]: '%s' expects 'shutdown-sessions' but got '%s'\n",
1347 file, linenum, args[cur_arg], args[cur_arg + 1]);
1348 err_code |= ERR_ALERT | ERR_FATAL;
1349 goto out;
1350 }
1351
1352 cur_arg += 2;
1353 }
1354 else if (!strcmp(args[cur_arg], "on-marked-up")) {
1355 if (!strcmp(args[cur_arg + 1], "shutdown-backup-sessions"))
1356 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
1357 else {
1358 Alert("parsing [%s:%d]: '%s' expects 'shutdown-backup-sessions' but got '%s'\n",
1359 file, linenum, args[cur_arg], args[cur_arg + 1]);
1360 err_code |= ERR_ALERT | ERR_FATAL;
1361 goto out;
1362 }
1363
1364 cur_arg += 2;
1365 }
1366 else if (!strcmp(args[cur_arg], "error-limit")) {
1367 if (!*args[cur_arg + 1]) {
1368 Alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
1369 file, linenum, args[cur_arg]);
1370 err_code |= ERR_ALERT | ERR_FATAL;
1371 goto out;
1372 }
1373
1374 newsrv->consecutive_errors_limit = atoi(args[cur_arg + 1]);
1375
1376 if (newsrv->consecutive_errors_limit <= 0) {
1377 Alert("parsing [%s:%d]: %s has to be > 0.\n",
1378 file, linenum, args[cur_arg]);
1379 err_code |= ERR_ALERT | ERR_FATAL;
1380 goto out;
1381 }
1382 cur_arg += 2;
1383 }
1384 else if (!defsrv && !strcmp(args[cur_arg], "source")) { /* address to which we bind when connecting */
1385 int port_low, port_high;
1386 struct sockaddr_storage *sk;
1387 struct protocol *proto;
1388
1389 if (!*args[cur_arg + 1]) {
1390 Alert("parsing [%s:%d] : '%s' expects <addr>[:<port>[-<port>]], and optionally '%s' <addr>, and '%s' <name> as argument.\n",
1391 file, linenum, "source", "usesrc", "interface");
1392 err_code |= ERR_ALERT | ERR_FATAL;
1393 goto out;
1394 }
1395
1396 newsrv->conn_src.opts |= CO_SRC_BIND;
1397 sk = str2sa_range(args[cur_arg + 1], &port_low, &port_high, &errmsg, NULL);
1398 if (!sk) {
1399 Alert("parsing [%s:%d] : '%s %s' : %s\n",
1400 file, linenum, args[cur_arg], args[cur_arg+1], errmsg);
1401 err_code |= ERR_ALERT | ERR_FATAL;
1402 goto out;
1403 }
1404
1405 proto = protocol_by_family(sk->ss_family);
1406 if (!proto || !proto->connect) {
1407 Alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
1408 file, linenum, args[cur_arg], args[cur_arg+1]);
1409 err_code |= ERR_ALERT | ERR_FATAL;
1410 goto out;
1411 }
1412
1413 newsrv->conn_src.source_addr = *sk;
1414
1415 if (port_low != port_high) {
1416 int i;
1417
1418 if (!port_low || !port_high) {
1419 Alert("parsing [%s:%d] : %s does not support port offsets (found '%s').\n",
1420 file, linenum, args[cur_arg], args[cur_arg + 1]);
1421 err_code |= ERR_ALERT | ERR_FATAL;
1422 goto out;
1423 }
1424
1425 if (port_low <= 0 || port_low > 65535 ||
1426 port_high <= 0 || port_high > 65535 ||
1427 port_low > port_high) {
1428 Alert("parsing [%s:%d] : invalid source port range %d-%d.\n",
1429 file, linenum, port_low, port_high);
1430 err_code |= ERR_ALERT | ERR_FATAL;
1431 goto out;
1432 }
1433 newsrv->conn_src.sport_range = port_range_alloc_range(port_high - port_low + 1);
1434 for (i = 0; i < newsrv->conn_src.sport_range->size; i++)
1435 newsrv->conn_src.sport_range->ports[i] = port_low + i;
1436 }
1437
1438 cur_arg += 2;
1439 while (*(args[cur_arg])) {
1440 if (!strcmp(args[cur_arg], "usesrc")) { /* address to use outside */
1441#if defined(CONFIG_HAP_CTTPROXY) || defined(CONFIG_HAP_TRANSPARENT)
1442#if !defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +02001443 if (!is_inet_addr(&newsrv->conn_src.source_addr)) {
Willy Tarreau272adea2014-03-31 10:39:59 +02001444 Alert("parsing [%s:%d] : '%s' requires an explicit '%s' address.\n",
1445 file, linenum, "usesrc", "source");
1446 err_code |= ERR_ALERT | ERR_FATAL;
1447 goto out;
1448 }
1449#endif
1450 if (!*args[cur_arg + 1]) {
1451 Alert("parsing [%s:%d] : '%s' expects <addr>[:<port>], 'client', 'clientip', or 'hdr_ip(name,#)' as argument.\n",
1452 file, linenum, "usesrc");
1453 err_code |= ERR_ALERT | ERR_FATAL;
1454 goto out;
1455 }
1456 if (!strcmp(args[cur_arg + 1], "client")) {
1457 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1458 newsrv->conn_src.opts |= CO_SRC_TPROXY_CLI;
1459 } else if (!strcmp(args[cur_arg + 1], "clientip")) {
1460 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1461 newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP;
1462 } else if (!strncmp(args[cur_arg + 1], "hdr_ip(", 7)) {
1463 char *name, *end;
1464
1465 name = args[cur_arg+1] + 7;
1466 while (isspace(*name))
1467 name++;
1468
1469 end = name;
1470 while (*end && !isspace(*end) && *end != ',' && *end != ')')
1471 end++;
1472
1473 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1474 newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN;
1475 newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1);
1476 newsrv->conn_src.bind_hdr_len = end - name;
1477 memcpy(newsrv->conn_src.bind_hdr_name, name, end - name);
1478 newsrv->conn_src.bind_hdr_name[end-name] = '\0';
1479 newsrv->conn_src.bind_hdr_occ = -1;
1480
1481 /* now look for an occurrence number */
1482 while (isspace(*end))
1483 end++;
1484 if (*end == ',') {
1485 end++;
1486 name = end;
1487 if (*end == '-')
1488 end++;
1489 while (isdigit((int)*end))
1490 end++;
1491 newsrv->conn_src.bind_hdr_occ = strl2ic(name, end-name);
1492 }
1493
1494 if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) {
1495 Alert("parsing [%s:%d] : usesrc hdr_ip(name,num) does not support negative"
1496 " occurrences values smaller than %d.\n",
1497 file, linenum, MAX_HDR_HISTORY);
1498 err_code |= ERR_ALERT | ERR_FATAL;
1499 goto out;
1500 }
1501 } else {
1502 struct sockaddr_storage *sk;
1503 int port1, port2;
1504
1505 sk = str2sa_range(args[cur_arg + 1], &port1, &port2, &errmsg, NULL);
1506 if (!sk) {
1507 Alert("parsing [%s:%d] : '%s %s' : %s\n",
1508 file, linenum, args[cur_arg], args[cur_arg+1], errmsg);
1509 err_code |= ERR_ALERT | ERR_FATAL;
1510 goto out;
1511 }
1512
1513 proto = protocol_by_family(sk->ss_family);
1514 if (!proto || !proto->connect) {
1515 Alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
1516 file, linenum, args[cur_arg], args[cur_arg+1]);
1517 err_code |= ERR_ALERT | ERR_FATAL;
1518 goto out;
1519 }
1520
1521 if (port1 != port2) {
1522 Alert("parsing [%s:%d] : '%s' : port ranges and offsets are not allowed in '%s'\n",
1523 file, linenum, args[cur_arg], args[cur_arg + 1]);
1524 err_code |= ERR_ALERT | ERR_FATAL;
1525 goto out;
1526 }
1527 newsrv->conn_src.tproxy_addr = *sk;
1528 newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR;
1529 }
1530 global.last_checks |= LSTCHK_NETADM;
1531#if !defined(CONFIG_HAP_TRANSPARENT)
1532 global.last_checks |= LSTCHK_CTTPROXY;
1533#endif
1534 cur_arg += 2;
1535 continue;
1536#else /* no TPROXY support */
1537 Alert("parsing [%s:%d] : '%s' not allowed here because support for TPROXY was not compiled in.\n",
1538 file, linenum, "usesrc");
1539 err_code |= ERR_ALERT | ERR_FATAL;
1540 goto out;
1541#endif /* defined(CONFIG_HAP_CTTPROXY) || defined(CONFIG_HAP_TRANSPARENT) */
1542 } /* "usesrc" */
1543
1544 if (!strcmp(args[cur_arg], "interface")) { /* specifically bind to this interface */
1545#ifdef SO_BINDTODEVICE
1546 if (!*args[cur_arg + 1]) {
1547 Alert("parsing [%s:%d] : '%s' : missing interface name.\n",
1548 file, linenum, args[0]);
1549 err_code |= ERR_ALERT | ERR_FATAL;
1550 goto out;
1551 }
1552 free(newsrv->conn_src.iface_name);
1553 newsrv->conn_src.iface_name = strdup(args[cur_arg + 1]);
1554 newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name);
1555 global.last_checks |= LSTCHK_NETADM;
1556#else
1557 Alert("parsing [%s:%d] : '%s' : '%s' option not implemented.\n",
1558 file, linenum, args[0], args[cur_arg]);
1559 err_code |= ERR_ALERT | ERR_FATAL;
1560 goto out;
1561#endif
1562 cur_arg += 2;
1563 continue;
1564 }
1565 /* this keyword in not an option of "source" */
1566 break;
1567 } /* while */
1568 }
1569 else if (!defsrv && !strcmp(args[cur_arg], "usesrc")) { /* address to use outside: needs "source" first */
1570 Alert("parsing [%s:%d] : '%s' only allowed after a '%s' statement.\n",
1571 file, linenum, "usesrc", "source");
1572 err_code |= ERR_ALERT | ERR_FATAL;
1573 goto out;
1574 }
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001575 else if (!defsrv && !strcmp(args[cur_arg], "namespace")) {
1576#ifdef CONFIG_HAP_NS
1577 char *arg = args[cur_arg + 1];
1578 if (!strcmp(arg, "*")) {
1579 newsrv->flags |= SRV_F_USE_NS_FROM_PP;
1580 } else {
1581 newsrv->netns = netns_store_lookup(arg, strlen(arg));
1582
1583 if (newsrv->netns == NULL)
1584 newsrv->netns = netns_store_insert(arg);
1585
1586 if (newsrv->netns == NULL) {
1587 Alert("Cannot open namespace '%s'.\n", args[cur_arg + 1]);
1588 err_code |= ERR_ALERT | ERR_FATAL;
1589 goto out;
1590 }
1591 }
1592#else
1593 Alert("parsing [%s:%d] : '%s' : '%s' option not implemented.\n",
1594 file, linenum, args[0], args[cur_arg]);
1595 err_code |= ERR_ALERT | ERR_FATAL;
1596 goto out;
1597#endif
1598 cur_arg += 2;
1599 }
Willy Tarreau272adea2014-03-31 10:39:59 +02001600 else {
1601 static int srv_dumped;
1602 struct srv_kw *kw;
1603 char *err;
1604
1605 kw = srv_find_kw(args[cur_arg]);
1606 if (kw) {
1607 char *err = NULL;
1608 int code;
1609
1610 if (!kw->parse) {
1611 Alert("parsing [%s:%d] : '%s %s' : '%s' option is not implemented in this version (check build options).\n",
1612 file, linenum, args[0], args[1], args[cur_arg]);
1613 cur_arg += 1 + kw->skip ;
1614 err_code |= ERR_ALERT | ERR_FATAL;
1615 goto out;
1616 }
1617
1618 if (defsrv && !kw->default_ok) {
1619 Alert("parsing [%s:%d] : '%s %s' : '%s' option is not accepted in default-server sections.\n",
1620 file, linenum, args[0], args[1], args[cur_arg]);
1621 cur_arg += 1 + kw->skip ;
1622 err_code |= ERR_ALERT;
1623 continue;
1624 }
1625
1626 code = kw->parse(args, &cur_arg, curproxy, newsrv, &err);
1627 err_code |= code;
1628
1629 if (code) {
1630 if (err && *err) {
1631 indent_msg(&err, 2);
1632 Alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], err);
1633 }
1634 else
1635 Alert("parsing [%s:%d] : '%s %s' : error encountered while processing '%s'.\n",
1636 file, linenum, args[0], args[1], args[cur_arg]);
1637 if (code & ERR_FATAL) {
1638 free(err);
1639 cur_arg += 1 + kw->skip;
1640 goto out;
1641 }
1642 }
1643 free(err);
1644 cur_arg += 1 + kw->skip;
1645 continue;
1646 }
1647
1648 err = NULL;
1649 if (!srv_dumped) {
1650 srv_dump_kws(&err);
1651 indent_msg(&err, 4);
1652 srv_dumped = 1;
1653 }
1654
1655 Alert("parsing [%s:%d] : '%s %s' unknown keyword '%s'.%s%s\n",
1656 file, linenum, args[0], args[1], args[cur_arg],
1657 err ? " Registered keywords :" : "", err ? err : "");
1658 free(err);
1659
1660 err_code |= ERR_ALERT | ERR_FATAL;
1661 goto out;
1662 }
1663 }
1664
Willy Tarreau272adea2014-03-31 10:39:59 +02001665 if (do_check) {
Simon Hormanb1900d52015-01-30 11:22:54 +09001666 const char *ret;
Willy Tarreau272adea2014-03-31 10:39:59 +02001667
1668 if (newsrv->trackit) {
1669 Alert("parsing [%s:%d]: unable to enable checks and tracking at the same time!\n",
1670 file, linenum);
1671 err_code |= ERR_ALERT | ERR_FATAL;
1672 goto out;
1673 }
1674
1675 /* If neither a port nor an addr was specified and no check transport
1676 * layer is forced, then the transport layer used by the checks is the
1677 * same as for the production traffic. Otherwise we use raw_sock by
1678 * default, unless one is specified.
1679 */
Simon Horman41f58762015-01-30 11:22:56 +09001680 if (!newsrv->check.port && !is_addr(&newsrv->check.addr)) {
Willy Tarreau272adea2014-03-31 10:39:59 +02001681#ifdef USE_OPENSSL
1682 newsrv->check.use_ssl |= (newsrv->use_ssl || (newsrv->proxy->options & PR_O_TCPCHK_SSL));
1683#endif
David Safb76832014-05-08 23:42:08 -04001684 newsrv->check.send_proxy |= (newsrv->pp_opts);
Willy Tarreau272adea2014-03-31 10:39:59 +02001685 }
1686 /* try to get the port from check_core.addr if check.port not set */
1687 if (!newsrv->check.port)
Simon Horman41f58762015-01-30 11:22:56 +09001688 newsrv->check.port = get_host_port(&newsrv->check.addr);
Willy Tarreau272adea2014-03-31 10:39:59 +02001689
1690 if (!newsrv->check.port)
1691 newsrv->check.port = realport; /* by default */
1692
1693 if (!newsrv->check.port) {
1694 /* not yet valid, because no port was set on
1695 * the server either. We'll check if we have
1696 * a known port on the first listener.
1697 */
1698 struct listener *l;
1699
1700 list_for_each_entry(l, &curproxy->conf.listeners, by_fe) {
1701 newsrv->check.port = get_host_port(&l->addr);
1702 if (newsrv->check.port)
1703 break;
1704 }
1705 }
1706 /*
1707 * We need at least a service port, a check port or the first tcp-check rule must
Willy Tarreau5cf0b522014-05-09 23:59:19 +02001708 * be a 'connect' one when checking an IPv4/IPv6 server.
Willy Tarreau272adea2014-03-31 10:39:59 +02001709 */
Willy Tarreau5cf0b522014-05-09 23:59:19 +02001710 if (!newsrv->check.port &&
Simon Horman41f58762015-01-30 11:22:56 +09001711 (is_inet_addr(&newsrv->check.addr) ||
1712 (!is_addr(&newsrv->check.addr) && is_inet_addr(&newsrv->addr)))) {
Willy Tarreau272adea2014-03-31 10:39:59 +02001713 struct tcpcheck_rule *n = NULL, *r = NULL;
1714 struct list *l;
1715
1716 r = (struct tcpcheck_rule *)newsrv->proxy->tcpcheck_rules.n;
1717 if (!r) {
1718 Alert("parsing [%s:%d] : server %s has neither service port nor check port. Check has been disabled.\n",
1719 file, linenum, newsrv->id);
1720 err_code |= ERR_ALERT | ERR_FATAL;
1721 goto out;
1722 }
1723 if ((r->action != TCPCHK_ACT_CONNECT) || !r->port) {
1724 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",
1725 file, linenum, newsrv->id);
1726 err_code |= ERR_ALERT | ERR_FATAL;
1727 goto out;
1728 }
1729 else {
1730 /* scan the tcp-check ruleset to ensure a port has been configured */
1731 l = &newsrv->proxy->tcpcheck_rules;
1732 list_for_each_entry(n, l, list) {
1733 r = (struct tcpcheck_rule *)n->list.p;
1734 if ((r->action == TCPCHK_ACT_CONNECT) && (!r->port)) {
1735 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",
1736 file, linenum, newsrv->id);
1737 err_code |= ERR_ALERT | ERR_FATAL;
1738 goto out;
1739 }
1740 }
1741 }
1742 }
1743
1744 /* note: check type will be set during the config review phase */
Simon Hormanb1900d52015-01-30 11:22:54 +09001745 ret = init_check(&newsrv->check, 0);
Willy Tarreau272adea2014-03-31 10:39:59 +02001746 if (ret) {
Simon Hormanb1900d52015-01-30 11:22:54 +09001747 Alert("parsing [%s:%d] : %s.\n", file, linenum, ret);
1748 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau272adea2014-03-31 10:39:59 +02001749 goto out;
1750 }
1751
Baptiste Assmanna68ca962015-04-14 01:15:08 +02001752 if (newsrv->resolution)
1753 newsrv->resolution->resolver_family_priority = newsrv->resolver_family_priority;
1754
Willy Tarreau272adea2014-03-31 10:39:59 +02001755 newsrv->check.state |= CHK_ST_CONFIGURED | CHK_ST_ENABLED;
1756 }
1757
1758 if (do_agent) {
Simon Hormanb1900d52015-01-30 11:22:54 +09001759 const char *ret;
Willy Tarreau272adea2014-03-31 10:39:59 +02001760
1761 if (!newsrv->agent.port) {
1762 Alert("parsing [%s:%d] : server %s does not have agent port. Agent check has been disabled.\n",
1763 file, linenum, newsrv->id);
1764 err_code |= ERR_ALERT | ERR_FATAL;
1765 goto out;
1766 }
1767
1768 if (!newsrv->agent.inter)
1769 newsrv->agent.inter = newsrv->check.inter;
1770
Simon Hormanb1900d52015-01-30 11:22:54 +09001771 ret = init_check(&newsrv->agent, PR_O2_LB_AGENT_CHK);
Willy Tarreau272adea2014-03-31 10:39:59 +02001772 if (ret) {
Simon Hormanb1900d52015-01-30 11:22:54 +09001773 Alert("parsing [%s:%d] : %s.\n", file, linenum, ret);
1774 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau272adea2014-03-31 10:39:59 +02001775 goto out;
1776 }
1777
1778 newsrv->agent.state |= CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_AGENT;
1779 }
1780
1781 if (!defsrv) {
Willy Tarreauc93cd162014-05-13 15:54:22 +02001782 if (newsrv->flags & SRV_F_BACKUP)
Willy Tarreau272adea2014-03-31 10:39:59 +02001783 curproxy->srv_bck++;
1784 else
1785 curproxy->srv_act++;
1786
Willy Tarreauc5150da2014-05-13 19:27:31 +02001787 srv_lb_commit_status(newsrv);
Willy Tarreau272adea2014-03-31 10:39:59 +02001788 }
1789 }
1790 return 0;
1791
1792 out:
1793 free(errmsg);
1794 return err_code;
1795}
1796
Baptiste Assmann19a106d2015-07-08 22:03:56 +02001797/* Returns a pointer to the first server matching either id <id>.
1798 * NULL is returned if no match is found.
1799 * the lookup is performed in the backend <bk>
1800 */
1801struct server *server_find_by_id(struct proxy *bk, int id)
1802{
1803 struct eb32_node *eb32;
1804 struct server *curserver;
1805
1806 if (!bk || (id ==0))
1807 return NULL;
1808
1809 /* <bk> has no backend capabilities, so it can't have a server */
1810 if (!(bk->cap & PR_CAP_BE))
1811 return NULL;
1812
1813 curserver = NULL;
1814
1815 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
1816 if (eb32)
1817 curserver = container_of(eb32, struct server, conf.id);
1818
1819 return curserver;
1820}
1821
1822/* Returns a pointer to the first server matching either name <name>, or id
1823 * if <name> starts with a '#'. NULL is returned if no match is found.
1824 * the lookup is performed in the backend <bk>
1825 */
1826struct server *server_find_by_name(struct proxy *bk, const char *name)
1827{
1828 struct server *curserver;
1829
1830 if (!bk || !name)
1831 return NULL;
1832
1833 /* <bk> has no backend capabilities, so it can't have a server */
1834 if (!(bk->cap & PR_CAP_BE))
1835 return NULL;
1836
1837 curserver = NULL;
1838 if (*name == '#') {
1839 curserver = server_find_by_id(bk, atoi(name + 1));
1840 if (curserver)
1841 return curserver;
1842 }
1843 else {
1844 curserver = bk->srv;
1845
1846 while (curserver && (strcmp(curserver->id, name) != 0))
1847 curserver = curserver->next;
1848
1849 if (curserver)
1850 return curserver;
1851 }
1852
1853 return NULL;
1854}
1855
1856struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
1857{
1858 struct server *byname;
1859 struct server *byid;
1860
1861 if (!name && !id)
1862 return NULL;
1863
1864 if (diff)
1865 *diff = 0;
1866
1867 byname = byid = NULL;
1868
1869 if (name) {
1870 byname = server_find_by_name(bk, name);
1871 if (byname && (!id || byname->puid == id))
1872 return byname;
1873 }
1874
1875 /* remaining possibilities :
1876 * - name not set
1877 * - name set but not found
1878 * - name found but ID doesn't match
1879 */
1880 if (id) {
1881 byid = server_find_by_id(bk, id);
1882 if (byid) {
1883 if (byname) {
1884 /* use id only if forced by configuration */
1885 if (byid->flags & SRV_F_FORCED_ID) {
1886 if (diff)
1887 *diff |= 2;
1888 return byid;
1889 }
1890 else {
1891 if (diff)
1892 *diff |= 1;
1893 return byname;
1894 }
1895 }
1896
1897 /* remaining possibilities:
1898 * - name not set
1899 * - name set but not found
1900 */
1901 if (name && diff)
1902 *diff |= 2;
1903 return byid;
1904 }
1905
1906 /* id bot found */
1907 if (byname) {
1908 if (diff)
1909 *diff |= 1;
1910 return byname;
1911 }
1912 }
1913
1914 return NULL;
1915}
1916
Simon Horman7d09b9a2013-02-12 10:45:51 +09001917/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02001918 * update a server's current IP address.
1919 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
1920 * ip is in network format.
1921 * updater is a string which contains an information about the requester of the update.
1922 * updater is used if not NULL.
1923 *
1924 * A log line and a stderr warning message is generated based on server's backend options.
1925 */
1926int update_server_addr(struct server *s, void *ip, int ip_sin_family, char *updater)
1927{
1928 /* generates a log line and a warning on stderr */
1929 if (1) {
1930 /* book enough space for both IPv4 and IPv6 */
1931 char oldip[INET6_ADDRSTRLEN];
1932 char newip[INET6_ADDRSTRLEN];
1933
1934 memset(oldip, '\0', INET6_ADDRSTRLEN);
1935 memset(newip, '\0', INET6_ADDRSTRLEN);
1936
1937 /* copy old IP address in a string */
1938 switch (s->addr.ss_family) {
1939 case AF_INET:
1940 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
1941 break;
1942 case AF_INET6:
1943 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
1944 break;
1945 };
1946
1947 /* copy new IP address in a string */
1948 switch (ip_sin_family) {
1949 case AF_INET:
1950 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
1951 break;
1952 case AF_INET6:
1953 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
1954 break;
1955 };
1956
1957 /* save log line into a buffer */
1958 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
1959 s->proxy->id, s->id, oldip, newip, updater);
1960
1961 /* write the buffer on stderr */
1962 Warning("%s.\n", trash.str);
1963
1964 /* send a log */
1965 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
1966 }
1967
1968 /* save the new IP family */
1969 s->addr.ss_family = ip_sin_family;
1970 /* save the new IP address */
1971 switch (ip_sin_family) {
1972 case AF_INET:
1973 ((struct sockaddr_in *)&s->addr)->sin_addr.s_addr = *(uint32_t *)ip;
1974 break;
1975 case AF_INET6:
1976 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
1977 break;
1978 };
1979
1980 return 0;
1981}
1982
1983/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02001984 * update server status based on result of name resolution
1985 * returns:
1986 * 0 if server status is updated
1987 * 1 if server status has not changed
1988 */
1989int snr_update_srv_status(struct server *s)
1990{
1991 struct dns_resolution *resolution = s->resolution;
1992
1993 switch (resolution->status) {
1994 case RSLV_STATUS_NONE:
1995 /* status when HAProxy has just (re)started */
1996 trigger_resolution(s);
1997 break;
1998
1999 default:
2000 break;
2001 }
2002
2003 return 1;
2004}
2005
2006/*
2007 * Server Name Resolution valid response callback
2008 * It expects:
2009 * - <nameserver>: the name server which answered the valid response
2010 * - <response>: buffer containing a valid DNS response
2011 * - <response_len>: size of <response>
2012 * It performs the following actions:
2013 * - ignore response if current ip found and server family not met
2014 * - update with first new ip found if family is met and current IP is not found
2015 * returns:
2016 * 0 on error
2017 * 1 when no error or safe ignore
2018 */
2019int snr_resolution_cb(struct dns_resolution *resolution, struct dns_nameserver *nameserver, unsigned char *response, int response_len)
2020{
2021 struct server *s;
2022 void *serverip, *firstip;
2023 short server_sin_family, firstip_sin_family;
2024 unsigned char *response_end;
2025 int ret;
2026 struct chunk *chk = get_trash_chunk();
2027
2028 /* initializing variables */
2029 response_end = response + response_len; /* pointer to mark the end of the response */
2030 firstip = NULL; /* pointer to the first valid response found */
2031 /* it will be used as the new IP if a change is required */
2032 firstip_sin_family = AF_UNSPEC;
2033 serverip = NULL; /* current server IP address */
2034
2035 /* shortcut to the server whose name is being resolved */
2036 s = (struct server *)resolution->requester;
2037
2038 /* initializing server IP pointer */
2039 server_sin_family = s->addr.ss_family;
2040 switch (server_sin_family) {
2041 case AF_INET:
2042 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
2043 break;
2044
2045 case AF_INET6:
2046 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
2047 break;
2048
2049 default:
2050 goto invalid;
2051 }
2052
2053 ret = dns_get_ip_from_response(response, response_end, resolution->hostname_dn, resolution->hostname_dn_len,
2054 serverip, server_sin_family, resolution->resolver_family_priority, &firstip,
2055 &firstip_sin_family);
2056
2057 switch (ret) {
2058 case DNS_UPD_NO:
2059 if (resolution->status != RSLV_STATUS_VALID) {
2060 resolution->status = RSLV_STATUS_VALID;
2061 resolution->last_status_change = now_ms;
2062 }
2063 goto stop_resolution;
2064
2065 case DNS_UPD_SRVIP_NOT_FOUND:
2066 goto save_ip;
2067
2068 case DNS_UPD_CNAME:
2069 if (resolution->status != RSLV_STATUS_VALID) {
2070 resolution->status = RSLV_STATUS_VALID;
2071 resolution->last_status_change = now_ms;
2072 }
2073 goto invalid;
2074
2075 default:
2076 goto invalid;
2077
2078 }
2079
2080 save_ip:
2081 nameserver->counters.update += 1;
2082 if (resolution->status != RSLV_STATUS_VALID) {
2083 resolution->status = RSLV_STATUS_VALID;
2084 resolution->last_status_change = now_ms;
2085 }
2086
2087 /* save the first ip we found */
2088 chunk_printf(chk, "%s/%s", nameserver->resolvers->id, nameserver->id);
2089 update_server_addr(s, firstip, firstip_sin_family, (char *)chk->str);
2090
2091 stop_resolution:
2092 /* update last resolution date and time */
2093 resolution->last_resolution = now_ms;
2094 /* reset current status flag */
2095 resolution->step = RSLV_STEP_NONE;
2096 /* reset values */
2097 dns_reset_resolution(resolution);
2098
2099 LIST_DEL(&resolution->list);
2100 dns_update_resolvers_timeout(nameserver->resolvers);
2101
2102 snr_update_srv_status(s);
2103 return 0;
2104
2105 invalid:
2106 nameserver->counters.invalid += 1;
2107 if (resolution->nb_responses >= nameserver->resolvers->count_nameservers)
2108 goto stop_resolution;
2109
2110 snr_update_srv_status(s);
2111 return 0;
2112}
2113
2114/*
2115 * Server Name Resolution error management callback
2116 * returns:
2117 * 0 on error
2118 * 1 when no error or safe ignore
2119 */
2120int snr_resolution_error_cb(struct dns_resolution *resolution, int error_code)
2121{
2122 struct server *s;
2123 struct dns_resolvers *resolvers;
2124
2125 /* shortcut to the server whose name is being resolved */
2126 s = (struct server *)resolution->requester;
2127 resolvers = resolution->resolvers;
2128
2129 /* can be ignored if this is not the last response */
2130 if ((error_code != DNS_RESP_TIMEOUT) && (resolution->nb_responses < resolvers->count_nameservers)) {
2131 return 1;
2132 }
2133
2134 switch (error_code) {
2135 case DNS_RESP_INVALID:
2136 case DNS_RESP_WRONG_NAME:
2137 if (resolution->status != RSLV_STATUS_INVALID) {
2138 resolution->status = RSLV_STATUS_INVALID;
2139 resolution->last_status_change = now_ms;
2140 }
2141 break;
2142
2143 case DNS_RESP_ANCOUNT_ZERO:
2144 case DNS_RESP_ERROR:
2145 if (resolution->query_type == DNS_RTYPE_ANY) {
2146 /* let's change the query type */
2147 if (resolution->resolver_family_priority == AF_INET6)
2148 resolution->query_type = DNS_RTYPE_AAAA;
2149 else
2150 resolution->query_type = DNS_RTYPE_A;
2151
2152 dns_send_query(resolution);
2153
2154 /*
2155 * move the resolution to the last element of the FIFO queue
2156 * and update timeout wakeup based on the new first entry
2157 */
2158 if (dns_check_resolution_queue(resolvers) > 1) {
2159 /* second resolution becomes first one */
2160 LIST_DEL(&resolvers->curr_resolution);
2161 /* ex first resolution goes to the end of the queue */
2162 LIST_ADDQ(&resolvers->curr_resolution, &resolution->list);
2163 }
2164 dns_update_resolvers_timeout(resolvers);
2165 goto leave;
2166 }
2167 else {
2168 if (resolution->status != RSLV_STATUS_OTHER) {
2169 resolution->status = RSLV_STATUS_OTHER;
2170 resolution->last_status_change = now_ms;
2171 }
2172 }
2173 break;
2174
2175 case DNS_RESP_NX_DOMAIN:
2176 if (resolution->status != RSLV_STATUS_NX) {
2177 resolution->status = RSLV_STATUS_NX;
2178 resolution->last_status_change = now_ms;
2179 }
2180 break;
2181
2182 case DNS_RESP_REFUSED:
2183 if (resolution->status != RSLV_STATUS_REFUSED) {
2184 resolution->status = RSLV_STATUS_REFUSED;
2185 resolution->last_status_change = now_ms;
2186 }
2187 break;
2188
2189 case DNS_RESP_CNAME_ERROR:
2190 break;
2191
2192 case DNS_RESP_TIMEOUT:
2193 if (resolution->status != RSLV_STATUS_TIMEOUT) {
2194 resolution->status = RSLV_STATUS_TIMEOUT;
2195 resolution->last_status_change = now_ms;
2196 }
2197 break;
2198 }
2199
2200 /* update last resolution date and time */
2201 resolution->last_resolution = now_ms;
2202 /* reset current status flag */
2203 resolution->step = RSLV_STEP_NONE;
2204 /* reset values */
2205 dns_reset_resolution(resolution);
2206
2207 LIST_DEL(&resolution->list);
2208 dns_update_resolvers_timeout(resolvers);
2209
2210 leave:
2211 snr_update_srv_status(s);
2212 return 1;
2213}
2214
2215/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02002216 * Local variables:
2217 * c-indent-level: 8
2218 * c-basic-offset: 8
2219 * End:
2220 */