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