blob: 5a3f60ae75b95fac026a9d708622c0bf362d13be [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);
Willy Tarreau600802a2015-08-04 17:19:06 +0200889 LIST_INIT(&newsrv->priv_conns);
Willy Tarreau173a1c62015-08-05 10:31:57 +0200890 LIST_INIT(&newsrv->idle_conns);
Willy Tarreau7017cb02015-08-05 16:35:23 +0200891 LIST_INIT(&newsrv->safe_conns);
Willy Tarreau272adea2014-03-31 10:39:59 +0200892 do_check = 0;
893 do_agent = 0;
Willy Tarreauc93cd162014-05-13 15:54:22 +0200894 newsrv->flags = 0;
Willy Tarreau20125212014-05-13 19:44:56 +0200895 newsrv->admin = 0;
Willy Tarreau892337c2014-05-13 23:41:20 +0200896 newsrv->state = SRV_ST_RUNNING; /* early server setup */
Willy Tarreau272adea2014-03-31 10:39:59 +0200897 newsrv->last_change = now.tv_sec;
898 newsrv->id = strdup(args[1]);
899
900 /* several ways to check the port component :
901 * - IP => port=+0, relative (IPv4 only)
902 * - IP: => port=+0, relative
903 * - IP:N => port=N, absolute
904 * - IP:+N => port=+N, relative
905 * - IP:-N => port=-N, relative
906 */
907 sk = str2sa_range(args[2], &port1, &port2, &errmsg, NULL);
908 if (!sk) {
909 Alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
910 err_code |= ERR_ALERT | ERR_FATAL;
911 goto out;
912 }
913
914 proto = protocol_by_family(sk->ss_family);
915 if (!proto || !proto->connect) {
916 Alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
917 file, linenum, args[0], args[1]);
918 err_code |= ERR_ALERT | ERR_FATAL;
919 goto out;
920 }
921
922 if (!port1 || !port2) {
923 /* no port specified, +offset, -offset */
Willy Tarreauc93cd162014-05-13 15:54:22 +0200924 newsrv->flags |= SRV_F_MAPPORTS;
Willy Tarreau272adea2014-03-31 10:39:59 +0200925 }
926 else if (port1 != port2) {
927 /* port range */
928 Alert("parsing [%s:%d] : '%s %s' : port ranges are not allowed in '%s'\n",
929 file, linenum, args[0], args[1], args[2]);
930 err_code |= ERR_ALERT | ERR_FATAL;
931 goto out;
932 }
933 else {
934 /* used by checks */
935 realport = port1;
936 }
937
Baptiste Assmanna68ca962015-04-14 01:15:08 +0200938 /* save hostname and create associated name resolution */
939 switch (sk->ss_family) {
940 case AF_INET: {
941 /* remove the port if any */
942 char *c;
943 if ((c = rindex(args[2], ':')) != NULL) {
944 newsrv->hostname = my_strndup(args[2], c - args[2]);
945 }
946 else {
947 newsrv->hostname = strdup(args[2]);
948 }
949 }
950 break;
951 case AF_INET6:
952 newsrv->hostname = strdup(args[2]);
953 break;
954 default:
955 goto skip_name_resolution;
956 }
957
958 /* no name resolution if an IP has been provided */
959 if (inet_pton(sk->ss_family, newsrv->hostname, trash.str) == 1)
960 goto skip_name_resolution;
961
962 if ((curr_resolution = calloc(1, sizeof(struct dns_resolution))) == NULL)
963 goto skip_name_resolution;
964
965 curr_resolution->hostname_dn_len = dns_str_to_dn_label_len(newsrv->hostname);
966 if ((curr_resolution->hostname_dn = calloc(curr_resolution->hostname_dn_len + 1, sizeof(char))) == NULL)
967 goto skip_name_resolution;
968 if ((dns_str_to_dn_label(newsrv->hostname, curr_resolution->hostname_dn, curr_resolution->hostname_dn_len + 1)) == NULL) {
969 Alert("parsing [%s:%d] : Invalid hostname '%s'\n",
970 file, linenum, args[2]);
971 err_code |= ERR_ALERT | ERR_FATAL;
972 goto out;
973 }
974
975 curr_resolution->requester = newsrv;
976 curr_resolution->requester_cb = snr_resolution_cb;
977 curr_resolution->requester_error_cb = snr_resolution_error_cb;
978 curr_resolution->status = RSLV_STATUS_NONE;
979 curr_resolution->step = RSLV_STEP_NONE;
980 /* a first resolution has been done by the configuration parser */
981 curr_resolution->last_resolution = now_ms;
982 newsrv->resolution = curr_resolution;
983
984 skip_name_resolution:
Willy Tarreau272adea2014-03-31 10:39:59 +0200985 newsrv->addr = *sk;
Cyril Bonté9ce13112014-11-15 22:41:27 +0100986 newsrv->xprt = newsrv->check.xprt = newsrv->agent.xprt = &raw_sock;
Willy Tarreau272adea2014-03-31 10:39:59 +0200987
Thierry FOURNIERbb2ae642015-01-14 11:31:49 +0100988 if (!protocol_by_family(newsrv->addr.ss_family)) {
Willy Tarreau272adea2014-03-31 10:39:59 +0200989 Alert("parsing [%s:%d] : Unknown protocol family %d '%s'\n",
990 file, linenum, newsrv->addr.ss_family, args[2]);
991 err_code |= ERR_ALERT | ERR_FATAL;
992 goto out;
993 }
994
995 newsrv->check.use_ssl = curproxy->defsrv.check.use_ssl;
996 newsrv->check.port = curproxy->defsrv.check.port;
997 newsrv->check.inter = curproxy->defsrv.check.inter;
998 newsrv->check.fastinter = curproxy->defsrv.check.fastinter;
999 newsrv->check.downinter = curproxy->defsrv.check.downinter;
1000 newsrv->agent.use_ssl = curproxy->defsrv.agent.use_ssl;
1001 newsrv->agent.port = curproxy->defsrv.agent.port;
1002 newsrv->agent.inter = curproxy->defsrv.agent.inter;
1003 newsrv->agent.fastinter = curproxy->defsrv.agent.fastinter;
1004 newsrv->agent.downinter = curproxy->defsrv.agent.downinter;
1005 newsrv->maxqueue = curproxy->defsrv.maxqueue;
1006 newsrv->minconn = curproxy->defsrv.minconn;
1007 newsrv->maxconn = curproxy->defsrv.maxconn;
1008 newsrv->slowstart = curproxy->defsrv.slowstart;
1009 newsrv->onerror = curproxy->defsrv.onerror;
1010 newsrv->onmarkeddown = curproxy->defsrv.onmarkeddown;
1011 newsrv->onmarkedup = curproxy->defsrv.onmarkedup;
1012 newsrv->consecutive_errors_limit
1013 = curproxy->defsrv.consecutive_errors_limit;
1014#ifdef OPENSSL
1015 newsrv->use_ssl = curproxy->defsrv.use_ssl;
1016#endif
1017 newsrv->uweight = newsrv->iweight
1018 = curproxy->defsrv.iweight;
1019
1020 newsrv->check.status = HCHK_STATUS_INI;
1021 newsrv->check.rise = curproxy->defsrv.check.rise;
1022 newsrv->check.fall = curproxy->defsrv.check.fall;
1023 newsrv->check.health = newsrv->check.rise; /* up, but will fall down at first failure */
1024 newsrv->check.server = newsrv;
Simon Hormane16c1b32015-01-30 11:22:57 +09001025 newsrv->check.tcpcheck_rules = &curproxy->tcpcheck_rules;
Willy Tarreau272adea2014-03-31 10:39:59 +02001026
1027 newsrv->agent.status = HCHK_STATUS_INI;
1028 newsrv->agent.rise = curproxy->defsrv.agent.rise;
1029 newsrv->agent.fall = curproxy->defsrv.agent.fall;
1030 newsrv->agent.health = newsrv->agent.rise; /* up, but will fall down at first failure */
1031 newsrv->agent.server = newsrv;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02001032 newsrv->resolver_family_priority = curproxy->defsrv.resolver_family_priority;
1033 if (newsrv->resolver_family_priority == AF_UNSPEC)
1034 newsrv->resolver_family_priority = AF_INET6;
Willy Tarreau272adea2014-03-31 10:39:59 +02001035
1036 cur_arg = 3;
1037 } else {
1038 newsrv = &curproxy->defsrv;
1039 cur_arg = 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02001040 newsrv->resolver_family_priority = AF_INET6;
Willy Tarreau272adea2014-03-31 10:39:59 +02001041 }
1042
1043 while (*args[cur_arg]) {
1044 if (!strcmp(args[cur_arg], "agent-check")) {
1045 global.maxsock++;
1046 do_agent = 1;
1047 cur_arg += 1;
1048 } else if (!strcmp(args[cur_arg], "agent-inter")) {
1049 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
1050 if (err) {
1051 Alert("parsing [%s:%d] : unexpected character '%c' in 'agent-inter' argument of server %s.\n",
1052 file, linenum, *err, newsrv->id);
1053 err_code |= ERR_ALERT | ERR_FATAL;
1054 goto out;
1055 }
1056 if (val <= 0) {
1057 Alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
1058 file, linenum, val, args[cur_arg], newsrv->id);
1059 err_code |= ERR_ALERT | ERR_FATAL;
1060 goto out;
1061 }
1062 newsrv->agent.inter = val;
1063 cur_arg += 2;
1064 }
1065 else if (!strcmp(args[cur_arg], "agent-port")) {
1066 global.maxsock++;
1067 newsrv->agent.port = atol(args[cur_arg + 1]);
1068 cur_arg += 2;
1069 }
1070 else if (!defsrv && !strcmp(args[cur_arg], "cookie")) {
1071 newsrv->cookie = strdup(args[cur_arg + 1]);
1072 newsrv->cklen = strlen(args[cur_arg + 1]);
1073 cur_arg += 2;
1074 }
1075 else if (!defsrv && !strcmp(args[cur_arg], "redir")) {
1076 newsrv->rdr_pfx = strdup(args[cur_arg + 1]);
1077 newsrv->rdr_len = strlen(args[cur_arg + 1]);
1078 cur_arg += 2;
1079 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02001080 else if (!strcmp(args[cur_arg], "resolvers")) {
1081 newsrv->resolvers_id = strdup(args[cur_arg + 1]);
1082 cur_arg += 2;
1083 }
1084 else if (!strcmp(args[cur_arg], "resolve-prefer")) {
1085 if (!strcmp(args[cur_arg + 1], "ipv4"))
1086 newsrv->resolver_family_priority = AF_INET;
1087 else if (!strcmp(args[cur_arg + 1], "ipv6"))
1088 newsrv->resolver_family_priority = AF_INET6;
1089 else {
1090 Alert("parsing [%s:%d]: '%s' expects either ipv4 or ipv6 as argument.\n",
1091 file, linenum, args[cur_arg]);
1092 err_code |= ERR_ALERT | ERR_FATAL;
1093 goto out;
1094 }
1095 cur_arg += 2;
1096 }
Willy Tarreau272adea2014-03-31 10:39:59 +02001097 else if (!strcmp(args[cur_arg], "rise")) {
1098 if (!*args[cur_arg + 1]) {
1099 Alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
1100 file, linenum, args[cur_arg]);
1101 err_code |= ERR_ALERT | ERR_FATAL;
1102 goto out;
1103 }
1104
1105 newsrv->check.rise = atol(args[cur_arg + 1]);
1106 if (newsrv->check.rise <= 0) {
1107 Alert("parsing [%s:%d]: '%s' has to be > 0.\n",
1108 file, linenum, args[cur_arg]);
1109 err_code |= ERR_ALERT | ERR_FATAL;
1110 goto out;
1111 }
1112
1113 if (newsrv->check.health)
1114 newsrv->check.health = newsrv->check.rise;
1115 cur_arg += 2;
1116 }
1117 else if (!strcmp(args[cur_arg], "fall")) {
1118 newsrv->check.fall = atol(args[cur_arg + 1]);
1119
1120 if (!*args[cur_arg + 1]) {
1121 Alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
1122 file, linenum, args[cur_arg]);
1123 err_code |= ERR_ALERT | ERR_FATAL;
1124 goto out;
1125 }
1126
1127 if (newsrv->check.fall <= 0) {
1128 Alert("parsing [%s:%d]: '%s' has to be > 0.\n",
1129 file, linenum, args[cur_arg]);
1130 err_code |= ERR_ALERT | ERR_FATAL;
1131 goto out;
1132 }
1133
1134 cur_arg += 2;
1135 }
1136 else if (!strcmp(args[cur_arg], "inter")) {
1137 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
1138 if (err) {
1139 Alert("parsing [%s:%d] : unexpected character '%c' in 'inter' argument of server %s.\n",
1140 file, linenum, *err, newsrv->id);
1141 err_code |= ERR_ALERT | ERR_FATAL;
1142 goto out;
1143 }
1144 if (val <= 0) {
1145 Alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
1146 file, linenum, val, args[cur_arg], newsrv->id);
1147 err_code |= ERR_ALERT | ERR_FATAL;
1148 goto out;
1149 }
1150 newsrv->check.inter = val;
1151 cur_arg += 2;
1152 }
1153 else if (!strcmp(args[cur_arg], "fastinter")) {
1154 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
1155 if (err) {
1156 Alert("parsing [%s:%d]: unexpected character '%c' in 'fastinter' argument of server %s.\n",
1157 file, linenum, *err, newsrv->id);
1158 err_code |= ERR_ALERT | ERR_FATAL;
1159 goto out;
1160 }
1161 if (val <= 0) {
1162 Alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
1163 file, linenum, val, args[cur_arg], newsrv->id);
1164 err_code |= ERR_ALERT | ERR_FATAL;
1165 goto out;
1166 }
1167 newsrv->check.fastinter = val;
1168 cur_arg += 2;
1169 }
1170 else if (!strcmp(args[cur_arg], "downinter")) {
1171 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
1172 if (err) {
1173 Alert("parsing [%s:%d]: unexpected character '%c' in 'downinter' argument of server %s.\n",
1174 file, linenum, *err, newsrv->id);
1175 err_code |= ERR_ALERT | ERR_FATAL;
1176 goto out;
1177 }
1178 if (val <= 0) {
1179 Alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
1180 file, linenum, val, args[cur_arg], newsrv->id);
1181 err_code |= ERR_ALERT | ERR_FATAL;
1182 goto out;
1183 }
1184 newsrv->check.downinter = val;
1185 cur_arg += 2;
1186 }
1187 else if (!defsrv && !strcmp(args[cur_arg], "addr")) {
1188 struct sockaddr_storage *sk;
1189 int port1, port2;
1190 struct protocol *proto;
1191
1192 sk = str2sa_range(args[cur_arg + 1], &port1, &port2, &errmsg, NULL);
1193 if (!sk) {
1194 Alert("parsing [%s:%d] : '%s' : %s\n",
1195 file, linenum, args[cur_arg], errmsg);
1196 err_code |= ERR_ALERT | ERR_FATAL;
1197 goto out;
1198 }
1199
1200 proto = protocol_by_family(sk->ss_family);
1201 if (!proto || !proto->connect) {
1202 Alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
1203 file, linenum, args[cur_arg], args[cur_arg + 1]);
1204 err_code |= ERR_ALERT | ERR_FATAL;
1205 goto out;
1206 }
1207
1208 if (port1 != port2) {
1209 Alert("parsing [%s:%d] : '%s' : port ranges and offsets are not allowed in '%s'\n",
1210 file, linenum, args[cur_arg], args[cur_arg + 1]);
1211 err_code |= ERR_ALERT | ERR_FATAL;
1212 goto out;
1213 }
1214
Simon Horman41f58762015-01-30 11:22:56 +09001215 newsrv->check.addr = newsrv->agent.addr = *sk;
Willy Tarreau272adea2014-03-31 10:39:59 +02001216 cur_arg += 2;
1217 }
1218 else if (!strcmp(args[cur_arg], "port")) {
1219 newsrv->check.port = atol(args[cur_arg + 1]);
1220 cur_arg += 2;
1221 }
1222 else if (!defsrv && !strcmp(args[cur_arg], "backup")) {
Willy Tarreauc93cd162014-05-13 15:54:22 +02001223 newsrv->flags |= SRV_F_BACKUP;
Willy Tarreau272adea2014-03-31 10:39:59 +02001224 cur_arg ++;
1225 }
1226 else if (!defsrv && !strcmp(args[cur_arg], "non-stick")) {
Willy Tarreauc93cd162014-05-13 15:54:22 +02001227 newsrv->flags |= SRV_F_NON_STICK;
Willy Tarreau272adea2014-03-31 10:39:59 +02001228 cur_arg ++;
1229 }
1230 else if (!defsrv && !strcmp(args[cur_arg], "send-proxy")) {
David Safb76832014-05-08 23:42:08 -04001231 newsrv->pp_opts |= SRV_PP_V1;
Willy Tarreau272adea2014-03-31 10:39:59 +02001232 cur_arg ++;
1233 }
David Safb76832014-05-08 23:42:08 -04001234 else if (!defsrv && !strcmp(args[cur_arg], "send-proxy-v2")) {
1235 newsrv->pp_opts |= SRV_PP_V2;
1236 cur_arg ++;
1237 }
Willy Tarreau272adea2014-03-31 10:39:59 +02001238 else if (!defsrv && !strcmp(args[cur_arg], "check-send-proxy")) {
1239 newsrv->check.send_proxy = 1;
1240 cur_arg ++;
1241 }
1242 else if (!strcmp(args[cur_arg], "weight")) {
1243 int w;
1244 w = atol(args[cur_arg + 1]);
1245 if (w < 0 || w > SRV_UWGHT_MAX) {
1246 Alert("parsing [%s:%d] : weight of server %s is not within 0 and %d (%d).\n",
1247 file, linenum, newsrv->id, SRV_UWGHT_MAX, w);
1248 err_code |= ERR_ALERT | ERR_FATAL;
1249 goto out;
1250 }
1251 newsrv->uweight = newsrv->iweight = w;
1252 cur_arg += 2;
1253 }
1254 else if (!strcmp(args[cur_arg], "minconn")) {
1255 newsrv->minconn = atol(args[cur_arg + 1]);
1256 cur_arg += 2;
1257 }
1258 else if (!strcmp(args[cur_arg], "maxconn")) {
1259 newsrv->maxconn = atol(args[cur_arg + 1]);
1260 cur_arg += 2;
1261 }
1262 else if (!strcmp(args[cur_arg], "maxqueue")) {
1263 newsrv->maxqueue = atol(args[cur_arg + 1]);
1264 cur_arg += 2;
1265 }
1266 else if (!strcmp(args[cur_arg], "slowstart")) {
1267 /* slowstart is stored in seconds */
1268 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
1269 if (err) {
1270 Alert("parsing [%s:%d] : unexpected character '%c' in 'slowstart' argument of server %s.\n",
1271 file, linenum, *err, newsrv->id);
1272 err_code |= ERR_ALERT | ERR_FATAL;
1273 goto out;
1274 }
1275 newsrv->slowstart = (val + 999) / 1000;
1276 cur_arg += 2;
1277 }
1278 else if (!defsrv && !strcmp(args[cur_arg], "track")) {
1279
1280 if (!*args[cur_arg + 1]) {
1281 Alert("parsing [%s:%d]: 'track' expects [<proxy>/]<server> as argument.\n",
1282 file, linenum);
1283 err_code |= ERR_ALERT | ERR_FATAL;
1284 goto out;
1285 }
1286
1287 newsrv->trackit = strdup(args[cur_arg + 1]);
1288
1289 cur_arg += 2;
1290 }
1291 else if (!defsrv && !strcmp(args[cur_arg], "check")) {
1292 global.maxsock++;
1293 do_check = 1;
1294 cur_arg += 1;
1295 }
1296 else if (!defsrv && !strcmp(args[cur_arg], "disabled")) {
Baptiste Assmann9f5ada32015-08-08 15:49:13 +02001297 newsrv->admin |= SRV_ADMF_CMAINT;
Willy Tarreau20125212014-05-13 19:44:56 +02001298 newsrv->admin |= SRV_ADMF_FMAINT;
Willy Tarreau892337c2014-05-13 23:41:20 +02001299 newsrv->state = SRV_ST_STOPPED;
Willy Tarreau272adea2014-03-31 10:39:59 +02001300 newsrv->check.state |= CHK_ST_PAUSED;
1301 newsrv->check.health = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02001302 cur_arg += 1;
1303 }
1304 else if (!defsrv && !strcmp(args[cur_arg], "observe")) {
1305 if (!strcmp(args[cur_arg + 1], "none"))
1306 newsrv->observe = HANA_OBS_NONE;
1307 else if (!strcmp(args[cur_arg + 1], "layer4"))
1308 newsrv->observe = HANA_OBS_LAYER4;
1309 else if (!strcmp(args[cur_arg + 1], "layer7")) {
1310 if (curproxy->mode != PR_MODE_HTTP) {
1311 Alert("parsing [%s:%d]: '%s' can only be used in http proxies.\n",
1312 file, linenum, args[cur_arg + 1]);
1313 err_code |= ERR_ALERT;
1314 }
1315 newsrv->observe = HANA_OBS_LAYER7;
1316 }
1317 else {
1318 Alert("parsing [%s:%d]: '%s' expects one of 'none', "
1319 "'layer4', 'layer7' but got '%s'\n",
1320 file, linenum, args[cur_arg], args[cur_arg + 1]);
1321 err_code |= ERR_ALERT | ERR_FATAL;
1322 goto out;
1323 }
1324
1325 cur_arg += 2;
1326 }
1327 else if (!strcmp(args[cur_arg], "on-error")) {
1328 if (!strcmp(args[cur_arg + 1], "fastinter"))
1329 newsrv->onerror = HANA_ONERR_FASTINTER;
1330 else if (!strcmp(args[cur_arg + 1], "fail-check"))
1331 newsrv->onerror = HANA_ONERR_FAILCHK;
1332 else if (!strcmp(args[cur_arg + 1], "sudden-death"))
1333 newsrv->onerror = HANA_ONERR_SUDDTH;
1334 else if (!strcmp(args[cur_arg + 1], "mark-down"))
1335 newsrv->onerror = HANA_ONERR_MARKDWN;
1336 else {
1337 Alert("parsing [%s:%d]: '%s' expects one of 'fastinter', "
1338 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'\n",
1339 file, linenum, args[cur_arg], args[cur_arg + 1]);
1340 err_code |= ERR_ALERT | ERR_FATAL;
1341 goto out;
1342 }
1343
1344 cur_arg += 2;
1345 }
1346 else if (!strcmp(args[cur_arg], "on-marked-down")) {
1347 if (!strcmp(args[cur_arg + 1], "shutdown-sessions"))
1348 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
1349 else {
1350 Alert("parsing [%s:%d]: '%s' expects 'shutdown-sessions' but got '%s'\n",
1351 file, linenum, args[cur_arg], args[cur_arg + 1]);
1352 err_code |= ERR_ALERT | ERR_FATAL;
1353 goto out;
1354 }
1355
1356 cur_arg += 2;
1357 }
1358 else if (!strcmp(args[cur_arg], "on-marked-up")) {
1359 if (!strcmp(args[cur_arg + 1], "shutdown-backup-sessions"))
1360 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
1361 else {
1362 Alert("parsing [%s:%d]: '%s' expects 'shutdown-backup-sessions' but got '%s'\n",
1363 file, linenum, args[cur_arg], args[cur_arg + 1]);
1364 err_code |= ERR_ALERT | ERR_FATAL;
1365 goto out;
1366 }
1367
1368 cur_arg += 2;
1369 }
1370 else if (!strcmp(args[cur_arg], "error-limit")) {
1371 if (!*args[cur_arg + 1]) {
1372 Alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
1373 file, linenum, args[cur_arg]);
1374 err_code |= ERR_ALERT | ERR_FATAL;
1375 goto out;
1376 }
1377
1378 newsrv->consecutive_errors_limit = atoi(args[cur_arg + 1]);
1379
1380 if (newsrv->consecutive_errors_limit <= 0) {
1381 Alert("parsing [%s:%d]: %s has to be > 0.\n",
1382 file, linenum, args[cur_arg]);
1383 err_code |= ERR_ALERT | ERR_FATAL;
1384 goto out;
1385 }
1386 cur_arg += 2;
1387 }
1388 else if (!defsrv && !strcmp(args[cur_arg], "source")) { /* address to which we bind when connecting */
1389 int port_low, port_high;
1390 struct sockaddr_storage *sk;
1391 struct protocol *proto;
1392
1393 if (!*args[cur_arg + 1]) {
1394 Alert("parsing [%s:%d] : '%s' expects <addr>[:<port>[-<port>]], and optionally '%s' <addr>, and '%s' <name> as argument.\n",
1395 file, linenum, "source", "usesrc", "interface");
1396 err_code |= ERR_ALERT | ERR_FATAL;
1397 goto out;
1398 }
1399
1400 newsrv->conn_src.opts |= CO_SRC_BIND;
1401 sk = str2sa_range(args[cur_arg + 1], &port_low, &port_high, &errmsg, NULL);
1402 if (!sk) {
1403 Alert("parsing [%s:%d] : '%s %s' : %s\n",
1404 file, linenum, args[cur_arg], args[cur_arg+1], errmsg);
1405 err_code |= ERR_ALERT | ERR_FATAL;
1406 goto out;
1407 }
1408
1409 proto = protocol_by_family(sk->ss_family);
1410 if (!proto || !proto->connect) {
1411 Alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
1412 file, linenum, args[cur_arg], args[cur_arg+1]);
1413 err_code |= ERR_ALERT | ERR_FATAL;
1414 goto out;
1415 }
1416
1417 newsrv->conn_src.source_addr = *sk;
1418
1419 if (port_low != port_high) {
1420 int i;
1421
1422 if (!port_low || !port_high) {
1423 Alert("parsing [%s:%d] : %s does not support port offsets (found '%s').\n",
1424 file, linenum, args[cur_arg], args[cur_arg + 1]);
1425 err_code |= ERR_ALERT | ERR_FATAL;
1426 goto out;
1427 }
1428
1429 if (port_low <= 0 || port_low > 65535 ||
1430 port_high <= 0 || port_high > 65535 ||
1431 port_low > port_high) {
1432 Alert("parsing [%s:%d] : invalid source port range %d-%d.\n",
1433 file, linenum, port_low, port_high);
1434 err_code |= ERR_ALERT | ERR_FATAL;
1435 goto out;
1436 }
1437 newsrv->conn_src.sport_range = port_range_alloc_range(port_high - port_low + 1);
1438 for (i = 0; i < newsrv->conn_src.sport_range->size; i++)
1439 newsrv->conn_src.sport_range->ports[i] = port_low + i;
1440 }
1441
1442 cur_arg += 2;
1443 while (*(args[cur_arg])) {
1444 if (!strcmp(args[cur_arg], "usesrc")) { /* address to use outside */
1445#if defined(CONFIG_HAP_CTTPROXY) || defined(CONFIG_HAP_TRANSPARENT)
1446#if !defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +02001447 if (!is_inet_addr(&newsrv->conn_src.source_addr)) {
Willy Tarreau272adea2014-03-31 10:39:59 +02001448 Alert("parsing [%s:%d] : '%s' requires an explicit '%s' address.\n",
1449 file, linenum, "usesrc", "source");
1450 err_code |= ERR_ALERT | ERR_FATAL;
1451 goto out;
1452 }
1453#endif
1454 if (!*args[cur_arg + 1]) {
1455 Alert("parsing [%s:%d] : '%s' expects <addr>[:<port>], 'client', 'clientip', or 'hdr_ip(name,#)' as argument.\n",
1456 file, linenum, "usesrc");
1457 err_code |= ERR_ALERT | ERR_FATAL;
1458 goto out;
1459 }
1460 if (!strcmp(args[cur_arg + 1], "client")) {
1461 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1462 newsrv->conn_src.opts |= CO_SRC_TPROXY_CLI;
1463 } else if (!strcmp(args[cur_arg + 1], "clientip")) {
1464 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1465 newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP;
1466 } else if (!strncmp(args[cur_arg + 1], "hdr_ip(", 7)) {
1467 char *name, *end;
1468
1469 name = args[cur_arg+1] + 7;
1470 while (isspace(*name))
1471 name++;
1472
1473 end = name;
1474 while (*end && !isspace(*end) && *end != ',' && *end != ')')
1475 end++;
1476
1477 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1478 newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN;
1479 newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1);
1480 newsrv->conn_src.bind_hdr_len = end - name;
1481 memcpy(newsrv->conn_src.bind_hdr_name, name, end - name);
1482 newsrv->conn_src.bind_hdr_name[end-name] = '\0';
1483 newsrv->conn_src.bind_hdr_occ = -1;
1484
1485 /* now look for an occurrence number */
1486 while (isspace(*end))
1487 end++;
1488 if (*end == ',') {
1489 end++;
1490 name = end;
1491 if (*end == '-')
1492 end++;
1493 while (isdigit((int)*end))
1494 end++;
1495 newsrv->conn_src.bind_hdr_occ = strl2ic(name, end-name);
1496 }
1497
1498 if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) {
1499 Alert("parsing [%s:%d] : usesrc hdr_ip(name,num) does not support negative"
1500 " occurrences values smaller than %d.\n",
1501 file, linenum, MAX_HDR_HISTORY);
1502 err_code |= ERR_ALERT | ERR_FATAL;
1503 goto out;
1504 }
1505 } else {
1506 struct sockaddr_storage *sk;
1507 int port1, port2;
1508
1509 sk = str2sa_range(args[cur_arg + 1], &port1, &port2, &errmsg, NULL);
1510 if (!sk) {
1511 Alert("parsing [%s:%d] : '%s %s' : %s\n",
1512 file, linenum, args[cur_arg], args[cur_arg+1], errmsg);
1513 err_code |= ERR_ALERT | ERR_FATAL;
1514 goto out;
1515 }
1516
1517 proto = protocol_by_family(sk->ss_family);
1518 if (!proto || !proto->connect) {
1519 Alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
1520 file, linenum, args[cur_arg], args[cur_arg+1]);
1521 err_code |= ERR_ALERT | ERR_FATAL;
1522 goto out;
1523 }
1524
1525 if (port1 != port2) {
1526 Alert("parsing [%s:%d] : '%s' : port ranges and offsets are not allowed in '%s'\n",
1527 file, linenum, args[cur_arg], args[cur_arg + 1]);
1528 err_code |= ERR_ALERT | ERR_FATAL;
1529 goto out;
1530 }
1531 newsrv->conn_src.tproxy_addr = *sk;
1532 newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR;
1533 }
1534 global.last_checks |= LSTCHK_NETADM;
1535#if !defined(CONFIG_HAP_TRANSPARENT)
1536 global.last_checks |= LSTCHK_CTTPROXY;
1537#endif
1538 cur_arg += 2;
1539 continue;
1540#else /* no TPROXY support */
1541 Alert("parsing [%s:%d] : '%s' not allowed here because support for TPROXY was not compiled in.\n",
1542 file, linenum, "usesrc");
1543 err_code |= ERR_ALERT | ERR_FATAL;
1544 goto out;
1545#endif /* defined(CONFIG_HAP_CTTPROXY) || defined(CONFIG_HAP_TRANSPARENT) */
1546 } /* "usesrc" */
1547
1548 if (!strcmp(args[cur_arg], "interface")) { /* specifically bind to this interface */
1549#ifdef SO_BINDTODEVICE
1550 if (!*args[cur_arg + 1]) {
1551 Alert("parsing [%s:%d] : '%s' : missing interface name.\n",
1552 file, linenum, args[0]);
1553 err_code |= ERR_ALERT | ERR_FATAL;
1554 goto out;
1555 }
1556 free(newsrv->conn_src.iface_name);
1557 newsrv->conn_src.iface_name = strdup(args[cur_arg + 1]);
1558 newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name);
1559 global.last_checks |= LSTCHK_NETADM;
1560#else
1561 Alert("parsing [%s:%d] : '%s' : '%s' option not implemented.\n",
1562 file, linenum, args[0], args[cur_arg]);
1563 err_code |= ERR_ALERT | ERR_FATAL;
1564 goto out;
1565#endif
1566 cur_arg += 2;
1567 continue;
1568 }
1569 /* this keyword in not an option of "source" */
1570 break;
1571 } /* while */
1572 }
1573 else if (!defsrv && !strcmp(args[cur_arg], "usesrc")) { /* address to use outside: needs "source" first */
1574 Alert("parsing [%s:%d] : '%s' only allowed after a '%s' statement.\n",
1575 file, linenum, "usesrc", "source");
1576 err_code |= ERR_ALERT | ERR_FATAL;
1577 goto out;
1578 }
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001579 else if (!defsrv && !strcmp(args[cur_arg], "namespace")) {
1580#ifdef CONFIG_HAP_NS
1581 char *arg = args[cur_arg + 1];
1582 if (!strcmp(arg, "*")) {
1583 newsrv->flags |= SRV_F_USE_NS_FROM_PP;
1584 } else {
1585 newsrv->netns = netns_store_lookup(arg, strlen(arg));
1586
1587 if (newsrv->netns == NULL)
1588 newsrv->netns = netns_store_insert(arg);
1589
1590 if (newsrv->netns == NULL) {
1591 Alert("Cannot open namespace '%s'.\n", args[cur_arg + 1]);
1592 err_code |= ERR_ALERT | ERR_FATAL;
1593 goto out;
1594 }
1595 }
1596#else
1597 Alert("parsing [%s:%d] : '%s' : '%s' option not implemented.\n",
1598 file, linenum, args[0], args[cur_arg]);
1599 err_code |= ERR_ALERT | ERR_FATAL;
1600 goto out;
1601#endif
1602 cur_arg += 2;
1603 }
Willy Tarreau272adea2014-03-31 10:39:59 +02001604 else {
1605 static int srv_dumped;
1606 struct srv_kw *kw;
1607 char *err;
1608
1609 kw = srv_find_kw(args[cur_arg]);
1610 if (kw) {
1611 char *err = NULL;
1612 int code;
1613
1614 if (!kw->parse) {
1615 Alert("parsing [%s:%d] : '%s %s' : '%s' option is not implemented in this version (check build options).\n",
1616 file, linenum, args[0], args[1], args[cur_arg]);
1617 cur_arg += 1 + kw->skip ;
1618 err_code |= ERR_ALERT | ERR_FATAL;
1619 goto out;
1620 }
1621
1622 if (defsrv && !kw->default_ok) {
1623 Alert("parsing [%s:%d] : '%s %s' : '%s' option is not accepted in default-server sections.\n",
1624 file, linenum, args[0], args[1], args[cur_arg]);
1625 cur_arg += 1 + kw->skip ;
1626 err_code |= ERR_ALERT;
1627 continue;
1628 }
1629
1630 code = kw->parse(args, &cur_arg, curproxy, newsrv, &err);
1631 err_code |= code;
1632
1633 if (code) {
1634 if (err && *err) {
1635 indent_msg(&err, 2);
1636 Alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], err);
1637 }
1638 else
1639 Alert("parsing [%s:%d] : '%s %s' : error encountered while processing '%s'.\n",
1640 file, linenum, args[0], args[1], args[cur_arg]);
1641 if (code & ERR_FATAL) {
1642 free(err);
1643 cur_arg += 1 + kw->skip;
1644 goto out;
1645 }
1646 }
1647 free(err);
1648 cur_arg += 1 + kw->skip;
1649 continue;
1650 }
1651
1652 err = NULL;
1653 if (!srv_dumped) {
1654 srv_dump_kws(&err);
1655 indent_msg(&err, 4);
1656 srv_dumped = 1;
1657 }
1658
1659 Alert("parsing [%s:%d] : '%s %s' unknown keyword '%s'.%s%s\n",
1660 file, linenum, args[0], args[1], args[cur_arg],
1661 err ? " Registered keywords :" : "", err ? err : "");
1662 free(err);
1663
1664 err_code |= ERR_ALERT | ERR_FATAL;
1665 goto out;
1666 }
1667 }
1668
Willy Tarreau272adea2014-03-31 10:39:59 +02001669 if (do_check) {
Simon Hormanb1900d52015-01-30 11:22:54 +09001670 const char *ret;
Willy Tarreau272adea2014-03-31 10:39:59 +02001671
1672 if (newsrv->trackit) {
1673 Alert("parsing [%s:%d]: unable to enable checks and tracking at the same time!\n",
1674 file, linenum);
1675 err_code |= ERR_ALERT | ERR_FATAL;
1676 goto out;
1677 }
1678
1679 /* If neither a port nor an addr was specified and no check transport
1680 * layer is forced, then the transport layer used by the checks is the
1681 * same as for the production traffic. Otherwise we use raw_sock by
1682 * default, unless one is specified.
1683 */
Simon Horman41f58762015-01-30 11:22:56 +09001684 if (!newsrv->check.port && !is_addr(&newsrv->check.addr)) {
Willy Tarreau272adea2014-03-31 10:39:59 +02001685#ifdef USE_OPENSSL
1686 newsrv->check.use_ssl |= (newsrv->use_ssl || (newsrv->proxy->options & PR_O_TCPCHK_SSL));
1687#endif
David Safb76832014-05-08 23:42:08 -04001688 newsrv->check.send_proxy |= (newsrv->pp_opts);
Willy Tarreau272adea2014-03-31 10:39:59 +02001689 }
1690 /* try to get the port from check_core.addr if check.port not set */
1691 if (!newsrv->check.port)
Simon Horman41f58762015-01-30 11:22:56 +09001692 newsrv->check.port = get_host_port(&newsrv->check.addr);
Willy Tarreau272adea2014-03-31 10:39:59 +02001693
1694 if (!newsrv->check.port)
1695 newsrv->check.port = realport; /* by default */
1696
1697 if (!newsrv->check.port) {
1698 /* not yet valid, because no port was set on
1699 * the server either. We'll check if we have
1700 * a known port on the first listener.
1701 */
1702 struct listener *l;
1703
1704 list_for_each_entry(l, &curproxy->conf.listeners, by_fe) {
1705 newsrv->check.port = get_host_port(&l->addr);
1706 if (newsrv->check.port)
1707 break;
1708 }
1709 }
1710 /*
1711 * We need at least a service port, a check port or the first tcp-check rule must
Willy Tarreau5cf0b522014-05-09 23:59:19 +02001712 * be a 'connect' one when checking an IPv4/IPv6 server.
Willy Tarreau272adea2014-03-31 10:39:59 +02001713 */
Willy Tarreau5cf0b522014-05-09 23:59:19 +02001714 if (!newsrv->check.port &&
Simon Horman41f58762015-01-30 11:22:56 +09001715 (is_inet_addr(&newsrv->check.addr) ||
1716 (!is_addr(&newsrv->check.addr) && is_inet_addr(&newsrv->addr)))) {
Willy Tarreau272adea2014-03-31 10:39:59 +02001717 struct tcpcheck_rule *n = NULL, *r = NULL;
1718 struct list *l;
1719
1720 r = (struct tcpcheck_rule *)newsrv->proxy->tcpcheck_rules.n;
1721 if (!r) {
1722 Alert("parsing [%s:%d] : server %s has neither service port nor check port. Check has been disabled.\n",
1723 file, linenum, newsrv->id);
1724 err_code |= ERR_ALERT | ERR_FATAL;
1725 goto out;
1726 }
1727 if ((r->action != TCPCHK_ACT_CONNECT) || !r->port) {
1728 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",
1729 file, linenum, newsrv->id);
1730 err_code |= ERR_ALERT | ERR_FATAL;
1731 goto out;
1732 }
1733 else {
1734 /* scan the tcp-check ruleset to ensure a port has been configured */
1735 l = &newsrv->proxy->tcpcheck_rules;
1736 list_for_each_entry(n, l, list) {
1737 r = (struct tcpcheck_rule *)n->list.p;
1738 if ((r->action == TCPCHK_ACT_CONNECT) && (!r->port)) {
1739 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",
1740 file, linenum, newsrv->id);
1741 err_code |= ERR_ALERT | ERR_FATAL;
1742 goto out;
1743 }
1744 }
1745 }
1746 }
1747
1748 /* note: check type will be set during the config review phase */
Simon Hormanb1900d52015-01-30 11:22:54 +09001749 ret = init_check(&newsrv->check, 0);
Willy Tarreau272adea2014-03-31 10:39:59 +02001750 if (ret) {
Simon Hormanb1900d52015-01-30 11:22:54 +09001751 Alert("parsing [%s:%d] : %s.\n", file, linenum, ret);
1752 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau272adea2014-03-31 10:39:59 +02001753 goto out;
1754 }
1755
Baptiste Assmanna68ca962015-04-14 01:15:08 +02001756 if (newsrv->resolution)
1757 newsrv->resolution->resolver_family_priority = newsrv->resolver_family_priority;
1758
Willy Tarreau272adea2014-03-31 10:39:59 +02001759 newsrv->check.state |= CHK_ST_CONFIGURED | CHK_ST_ENABLED;
1760 }
1761
1762 if (do_agent) {
Simon Hormanb1900d52015-01-30 11:22:54 +09001763 const char *ret;
Willy Tarreau272adea2014-03-31 10:39:59 +02001764
1765 if (!newsrv->agent.port) {
1766 Alert("parsing [%s:%d] : server %s does not have agent port. Agent check has been disabled.\n",
1767 file, linenum, newsrv->id);
1768 err_code |= ERR_ALERT | ERR_FATAL;
1769 goto out;
1770 }
1771
1772 if (!newsrv->agent.inter)
1773 newsrv->agent.inter = newsrv->check.inter;
1774
Simon Hormanb1900d52015-01-30 11:22:54 +09001775 ret = init_check(&newsrv->agent, PR_O2_LB_AGENT_CHK);
Willy Tarreau272adea2014-03-31 10:39:59 +02001776 if (ret) {
Simon Hormanb1900d52015-01-30 11:22:54 +09001777 Alert("parsing [%s:%d] : %s.\n", file, linenum, ret);
1778 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau272adea2014-03-31 10:39:59 +02001779 goto out;
1780 }
1781
1782 newsrv->agent.state |= CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_AGENT;
1783 }
1784
1785 if (!defsrv) {
Willy Tarreauc93cd162014-05-13 15:54:22 +02001786 if (newsrv->flags & SRV_F_BACKUP)
Willy Tarreau272adea2014-03-31 10:39:59 +02001787 curproxy->srv_bck++;
1788 else
1789 curproxy->srv_act++;
1790
Willy Tarreauc5150da2014-05-13 19:27:31 +02001791 srv_lb_commit_status(newsrv);
Willy Tarreau272adea2014-03-31 10:39:59 +02001792 }
1793 }
1794 return 0;
1795
1796 out:
1797 free(errmsg);
1798 return err_code;
1799}
1800
Baptiste Assmann19a106d2015-07-08 22:03:56 +02001801/* Returns a pointer to the first server matching either id <id>.
1802 * NULL is returned if no match is found.
1803 * the lookup is performed in the backend <bk>
1804 */
1805struct server *server_find_by_id(struct proxy *bk, int id)
1806{
1807 struct eb32_node *eb32;
1808 struct server *curserver;
1809
1810 if (!bk || (id ==0))
1811 return NULL;
1812
1813 /* <bk> has no backend capabilities, so it can't have a server */
1814 if (!(bk->cap & PR_CAP_BE))
1815 return NULL;
1816
1817 curserver = NULL;
1818
1819 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
1820 if (eb32)
1821 curserver = container_of(eb32, struct server, conf.id);
1822
1823 return curserver;
1824}
1825
1826/* Returns a pointer to the first server matching either name <name>, or id
1827 * if <name> starts with a '#'. NULL is returned if no match is found.
1828 * the lookup is performed in the backend <bk>
1829 */
1830struct server *server_find_by_name(struct proxy *bk, const char *name)
1831{
1832 struct server *curserver;
1833
1834 if (!bk || !name)
1835 return NULL;
1836
1837 /* <bk> has no backend capabilities, so it can't have a server */
1838 if (!(bk->cap & PR_CAP_BE))
1839 return NULL;
1840
1841 curserver = NULL;
1842 if (*name == '#') {
1843 curserver = server_find_by_id(bk, atoi(name + 1));
1844 if (curserver)
1845 return curserver;
1846 }
1847 else {
1848 curserver = bk->srv;
1849
1850 while (curserver && (strcmp(curserver->id, name) != 0))
1851 curserver = curserver->next;
1852
1853 if (curserver)
1854 return curserver;
1855 }
1856
1857 return NULL;
1858}
1859
1860struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
1861{
1862 struct server *byname;
1863 struct server *byid;
1864
1865 if (!name && !id)
1866 return NULL;
1867
1868 if (diff)
1869 *diff = 0;
1870
1871 byname = byid = NULL;
1872
1873 if (name) {
1874 byname = server_find_by_name(bk, name);
1875 if (byname && (!id || byname->puid == id))
1876 return byname;
1877 }
1878
1879 /* remaining possibilities :
1880 * - name not set
1881 * - name set but not found
1882 * - name found but ID doesn't match
1883 */
1884 if (id) {
1885 byid = server_find_by_id(bk, id);
1886 if (byid) {
1887 if (byname) {
1888 /* use id only if forced by configuration */
1889 if (byid->flags & SRV_F_FORCED_ID) {
1890 if (diff)
1891 *diff |= 2;
1892 return byid;
1893 }
1894 else {
1895 if (diff)
1896 *diff |= 1;
1897 return byname;
1898 }
1899 }
1900
1901 /* remaining possibilities:
1902 * - name not set
1903 * - name set but not found
1904 */
1905 if (name && diff)
1906 *diff |= 2;
1907 return byid;
1908 }
1909
1910 /* id bot found */
1911 if (byname) {
1912 if (diff)
1913 *diff |= 1;
1914 return byname;
1915 }
1916 }
1917
1918 return NULL;
1919}
1920
Simon Horman7d09b9a2013-02-12 10:45:51 +09001921/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02001922 * update a server's current IP address.
1923 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
1924 * ip is in network format.
1925 * updater is a string which contains an information about the requester of the update.
1926 * updater is used if not NULL.
1927 *
1928 * A log line and a stderr warning message is generated based on server's backend options.
1929 */
1930int update_server_addr(struct server *s, void *ip, int ip_sin_family, char *updater)
1931{
1932 /* generates a log line and a warning on stderr */
1933 if (1) {
1934 /* book enough space for both IPv4 and IPv6 */
1935 char oldip[INET6_ADDRSTRLEN];
1936 char newip[INET6_ADDRSTRLEN];
1937
1938 memset(oldip, '\0', INET6_ADDRSTRLEN);
1939 memset(newip, '\0', INET6_ADDRSTRLEN);
1940
1941 /* copy old IP address in a string */
1942 switch (s->addr.ss_family) {
1943 case AF_INET:
1944 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
1945 break;
1946 case AF_INET6:
1947 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
1948 break;
1949 };
1950
1951 /* copy new IP address in a string */
1952 switch (ip_sin_family) {
1953 case AF_INET:
1954 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
1955 break;
1956 case AF_INET6:
1957 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
1958 break;
1959 };
1960
1961 /* save log line into a buffer */
1962 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
1963 s->proxy->id, s->id, oldip, newip, updater);
1964
1965 /* write the buffer on stderr */
1966 Warning("%s.\n", trash.str);
1967
1968 /* send a log */
1969 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
1970 }
1971
1972 /* save the new IP family */
1973 s->addr.ss_family = ip_sin_family;
1974 /* save the new IP address */
1975 switch (ip_sin_family) {
1976 case AF_INET:
1977 ((struct sockaddr_in *)&s->addr)->sin_addr.s_addr = *(uint32_t *)ip;
1978 break;
1979 case AF_INET6:
1980 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
1981 break;
1982 };
1983
1984 return 0;
1985}
1986
1987/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02001988 * update server status based on result of name resolution
1989 * returns:
1990 * 0 if server status is updated
1991 * 1 if server status has not changed
1992 */
1993int snr_update_srv_status(struct server *s)
1994{
1995 struct dns_resolution *resolution = s->resolution;
1996
1997 switch (resolution->status) {
1998 case RSLV_STATUS_NONE:
1999 /* status when HAProxy has just (re)started */
2000 trigger_resolution(s);
2001 break;
2002
2003 default:
2004 break;
2005 }
2006
2007 return 1;
2008}
2009
2010/*
2011 * Server Name Resolution valid response callback
2012 * It expects:
2013 * - <nameserver>: the name server which answered the valid response
2014 * - <response>: buffer containing a valid DNS response
2015 * - <response_len>: size of <response>
2016 * It performs the following actions:
2017 * - ignore response if current ip found and server family not met
2018 * - update with first new ip found if family is met and current IP is not found
2019 * returns:
2020 * 0 on error
2021 * 1 when no error or safe ignore
2022 */
2023int snr_resolution_cb(struct dns_resolution *resolution, struct dns_nameserver *nameserver, unsigned char *response, int response_len)
2024{
2025 struct server *s;
2026 void *serverip, *firstip;
2027 short server_sin_family, firstip_sin_family;
2028 unsigned char *response_end;
2029 int ret;
2030 struct chunk *chk = get_trash_chunk();
2031
2032 /* initializing variables */
2033 response_end = response + response_len; /* pointer to mark the end of the response */
2034 firstip = NULL; /* pointer to the first valid response found */
2035 /* it will be used as the new IP if a change is required */
2036 firstip_sin_family = AF_UNSPEC;
2037 serverip = NULL; /* current server IP address */
2038
2039 /* shortcut to the server whose name is being resolved */
2040 s = (struct server *)resolution->requester;
2041
2042 /* initializing server IP pointer */
2043 server_sin_family = s->addr.ss_family;
2044 switch (server_sin_family) {
2045 case AF_INET:
2046 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
2047 break;
2048
2049 case AF_INET6:
2050 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
2051 break;
2052
2053 default:
2054 goto invalid;
2055 }
2056
2057 ret = dns_get_ip_from_response(response, response_end, resolution->hostname_dn, resolution->hostname_dn_len,
2058 serverip, server_sin_family, resolution->resolver_family_priority, &firstip,
2059 &firstip_sin_family);
2060
2061 switch (ret) {
2062 case DNS_UPD_NO:
2063 if (resolution->status != RSLV_STATUS_VALID) {
2064 resolution->status = RSLV_STATUS_VALID;
2065 resolution->last_status_change = now_ms;
2066 }
2067 goto stop_resolution;
2068
2069 case DNS_UPD_SRVIP_NOT_FOUND:
2070 goto save_ip;
2071
2072 case DNS_UPD_CNAME:
2073 if (resolution->status != RSLV_STATUS_VALID) {
2074 resolution->status = RSLV_STATUS_VALID;
2075 resolution->last_status_change = now_ms;
2076 }
2077 goto invalid;
2078
2079 default:
2080 goto invalid;
2081
2082 }
2083
2084 save_ip:
2085 nameserver->counters.update += 1;
2086 if (resolution->status != RSLV_STATUS_VALID) {
2087 resolution->status = RSLV_STATUS_VALID;
2088 resolution->last_status_change = now_ms;
2089 }
2090
2091 /* save the first ip we found */
2092 chunk_printf(chk, "%s/%s", nameserver->resolvers->id, nameserver->id);
2093 update_server_addr(s, firstip, firstip_sin_family, (char *)chk->str);
2094
2095 stop_resolution:
2096 /* update last resolution date and time */
2097 resolution->last_resolution = now_ms;
2098 /* reset current status flag */
2099 resolution->step = RSLV_STEP_NONE;
2100 /* reset values */
2101 dns_reset_resolution(resolution);
2102
2103 LIST_DEL(&resolution->list);
2104 dns_update_resolvers_timeout(nameserver->resolvers);
2105
2106 snr_update_srv_status(s);
2107 return 0;
2108
2109 invalid:
2110 nameserver->counters.invalid += 1;
2111 if (resolution->nb_responses >= nameserver->resolvers->count_nameservers)
2112 goto stop_resolution;
2113
2114 snr_update_srv_status(s);
2115 return 0;
2116}
2117
2118/*
2119 * Server Name Resolution error management callback
2120 * returns:
2121 * 0 on error
2122 * 1 when no error or safe ignore
2123 */
2124int snr_resolution_error_cb(struct dns_resolution *resolution, int error_code)
2125{
2126 struct server *s;
2127 struct dns_resolvers *resolvers;
2128
2129 /* shortcut to the server whose name is being resolved */
2130 s = (struct server *)resolution->requester;
2131 resolvers = resolution->resolvers;
2132
2133 /* can be ignored if this is not the last response */
2134 if ((error_code != DNS_RESP_TIMEOUT) && (resolution->nb_responses < resolvers->count_nameservers)) {
2135 return 1;
2136 }
2137
2138 switch (error_code) {
2139 case DNS_RESP_INVALID:
2140 case DNS_RESP_WRONG_NAME:
2141 if (resolution->status != RSLV_STATUS_INVALID) {
2142 resolution->status = RSLV_STATUS_INVALID;
2143 resolution->last_status_change = now_ms;
2144 }
2145 break;
2146
2147 case DNS_RESP_ANCOUNT_ZERO:
2148 case DNS_RESP_ERROR:
2149 if (resolution->query_type == DNS_RTYPE_ANY) {
2150 /* let's change the query type */
2151 if (resolution->resolver_family_priority == AF_INET6)
2152 resolution->query_type = DNS_RTYPE_AAAA;
2153 else
2154 resolution->query_type = DNS_RTYPE_A;
2155
2156 dns_send_query(resolution);
2157
2158 /*
2159 * move the resolution to the last element of the FIFO queue
2160 * and update timeout wakeup based on the new first entry
2161 */
2162 if (dns_check_resolution_queue(resolvers) > 1) {
2163 /* second resolution becomes first one */
2164 LIST_DEL(&resolvers->curr_resolution);
2165 /* ex first resolution goes to the end of the queue */
2166 LIST_ADDQ(&resolvers->curr_resolution, &resolution->list);
2167 }
2168 dns_update_resolvers_timeout(resolvers);
2169 goto leave;
2170 }
2171 else {
2172 if (resolution->status != RSLV_STATUS_OTHER) {
2173 resolution->status = RSLV_STATUS_OTHER;
2174 resolution->last_status_change = now_ms;
2175 }
2176 }
2177 break;
2178
2179 case DNS_RESP_NX_DOMAIN:
2180 if (resolution->status != RSLV_STATUS_NX) {
2181 resolution->status = RSLV_STATUS_NX;
2182 resolution->last_status_change = now_ms;
2183 }
2184 break;
2185
2186 case DNS_RESP_REFUSED:
2187 if (resolution->status != RSLV_STATUS_REFUSED) {
2188 resolution->status = RSLV_STATUS_REFUSED;
2189 resolution->last_status_change = now_ms;
2190 }
2191 break;
2192
2193 case DNS_RESP_CNAME_ERROR:
2194 break;
2195
2196 case DNS_RESP_TIMEOUT:
2197 if (resolution->status != RSLV_STATUS_TIMEOUT) {
2198 resolution->status = RSLV_STATUS_TIMEOUT;
2199 resolution->last_status_change = now_ms;
2200 }
2201 break;
2202 }
2203
2204 /* update last resolution date and time */
2205 resolution->last_resolution = now_ms;
2206 /* reset current status flag */
2207 resolution->step = RSLV_STEP_NONE;
2208 /* reset values */
2209 dns_reset_resolution(resolution);
2210
2211 LIST_DEL(&resolution->list);
2212 dns_update_resolvers_timeout(resolvers);
2213
2214 leave:
2215 snr_update_srv_status(s);
2216 return 1;
2217}
2218
2219/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02002220 * Local variables:
2221 * c-indent-level: 8
2222 * c-basic-offset: 8
2223 * End:
2224 */