varnish-cache/bin/varnishd/cache/cache_director.c
0
/*-
1
 * Copyright (c) 2006 Verdens Gang AS
2
 * Copyright (c) 2006-2015 Varnish Software AS
3
 * All rights reserved.
4
 *
5
 * Author: Poul-Henning Kamp <phk@phk.freebsd.dk>
6
 *
7
 * SPDX-License-Identifier: BSD-2-Clause
8
 *
9
 * Redistribution and use in source and binary forms, with or without
10
 * modification, are permitted provided that the following conditions
11
 * are met:
12
 * 1. Redistributions of source code must retain the above copyright
13
 *    notice, this list of conditions and the following disclaimer.
14
 * 2. Redistributions in binary form must reproduce the above copyright
15
 *    notice, this list of conditions and the following disclaimer in the
16
 *    documentation and/or other materials provided with the distribution.
17
 *
18
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21
 * ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
22
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28
 * SUCH DAMAGE.
29
 *
30
 * Abstract director API
31
 *
32
 * The abstract director API does not know how we talk to the backend or
33
 * if there even is one in the usual meaning of the word.
34
 *
35
 */
36
37
#include "config.h"
38
39
#include "cache_varnishd.h"
40
#include "cache_director.h"
41
42
#include "vcli_serve.h"
43
#include "vte.h"
44
#include "vtim.h"
45
46
/* -------------------------------------------------------------------*/
47
48
struct vdi_ahealth {
49
        const char              *name;
50
        int                     health;
51
};
52
53
#define VBE_AHEALTH(l,u,h)                                              \
54
        static const struct vdi_ahealth vdi_ah_##l[1] = {{#l,h}};       \
55
        const struct vdi_ahealth * const VDI_AH_##u = vdi_ah_##l;
56
VBE_AHEALTH_LIST
57
#undef VBE_AHEALTH
58
59
static const struct vdi_ahealth *
60 714
vdi_str2ahealth(const char *t)
61
{
62
#define VBE_AHEALTH(l,u,h) if (!strcasecmp(t, #l)) return (VDI_AH_##u);
63 714
VBE_AHEALTH_LIST
64
#undef VBE_AHEALTH
65 68
        return (NULL);
66 714
}
67
68
static const char *
69 21947
VDI_Ahealth(const struct director *d)
70
{
71
72 21947
        CHECK_OBJ_NOTNULL(d, DIRECTOR_MAGIC);
73 21947
        AN(d->vdir->admin_health);
74 21947
        if (d->vdir->admin_health != VDI_AH_AUTO)
75 595
                return (d->vdir->admin_health->name);
76 21352
        if (d->vdir->methods->healthy != NULL)
77 2278
                return ("probe");
78 19074
        return ("healthy");
79 21947
}
80
81
/* Resolve director --------------------------------------------------*/
82
83
VCL_BACKEND
84 38590
VRT_DirectorResolve(VRT_CTX, VCL_BACKEND d)
85
{
86 38590
        CHECK_OBJ_NOTNULL(ctx, VRT_CTX_MAGIC);
87
88 40664
        while (d != NULL) {
89 40630
                CHECK_OBJ(d, DIRECTOR_MAGIC);
90 40630
                AN(d->vdir);
91 40630
                if (d->vdir->methods->resolve == NULL)
92 38556
                        break;
93 2074
                d = d->vdir->methods->resolve(ctx, d);
94
        }
95 38590
        if (d == NULL)
96 34
                return (NULL);
97
98 38556
        CHECK_OBJ(d, DIRECTOR_MAGIC);
99 38556
        AN(d->vdir);
100 38556
        return (d);
101 38590
}
102
103
static VCL_BACKEND
104 39678
VDI_Resolve(VRT_CTX)
105
{
106
        VCL_BACKEND d;
107
        struct busyobj *bo;
108
109 39678
        CHECK_OBJ_NOTNULL(ctx, VRT_CTX_MAGIC);
110 39678
        bo = ctx->bo;
111 39678
        CHECK_OBJ_NOTNULL(bo, BUSYOBJ_MAGIC);
112
113 39678
        if (bo->director_req == NULL) {
114 1343
                VSLb(bo->vsl, SLT_FetchError, "No backend");
115 1343
                return (NULL);
116
        }
117
118 38335
        CHECK_OBJ(bo->director_req, DIRECTOR_MAGIC);
119 38335
        d = VRT_DirectorResolve(ctx, bo->director_req);
120 38335
        if (d != NULL)
121 38301
                return (d);
122
123 68
        VSLb(bo->vsl, SLT_FetchError,
124 34
            "Director %s returned no backend", bo->director_req->vcl_name);
125 34
        return (NULL);
126 39678
}
127
128
/* Get a set of response headers -------------------------------------*/
129
130
int
131 39270
VDI_GetHdr(struct busyobj *bo)
132
{
133
        const struct director *d;
134
        struct vrt_ctx ctx[1];
135 39270
        int i = -1;
136
137 39270
        CHECK_OBJ_NOTNULL(bo, BUSYOBJ_MAGIC);
138 39270
        INIT_OBJ(ctx, VRT_CTX_MAGIC);
139 39270
        VCL_Bo2Ctx(ctx, bo);
140
141 39270
        d = VDI_Resolve(ctx);
142 39270
        if (d != NULL) {
143 37893
                VRT_Assign_Backend(&bo->director_resp, d);
144 37893
                AN(d->vdir->methods->gethdrs);
145 37893
                bo->director_state = DIR_S_HDRS;
146 37893
                i = d->vdir->methods->gethdrs(ctx, d);
147 37893
        }
148 39270
        if (i)
149 4573
                bo->director_state = DIR_S_NULL;
150 39270
        return (i);
151
}
152
153
/* Get IP number (if any ) -------------------------------------------*/
154
155
VCL_IP
156 17
VDI_GetIP(struct busyobj *bo)
157
{
158
        const struct director *d;
159
        struct vrt_ctx ctx[1];
160
161 17
        CHECK_OBJ_NOTNULL(bo, BUSYOBJ_MAGIC);
162 17
        INIT_OBJ(ctx, VRT_CTX_MAGIC);
163 17
        VCL_Bo2Ctx(ctx, bo);
164
165 17
        d = bo->director_resp;
166 17
        CHECK_OBJ_NOTNULL(d, DIRECTOR_MAGIC);
167 17
        assert(bo->director_state == DIR_S_HDRS ||
168
           bo->director_state == DIR_S_BODY);
169 17
        AZ(d->vdir->methods->resolve);
170 17
        if (d->vdir->methods->getip == NULL)
171 0
                return (NULL);
172 17
        return (d->vdir->methods->getip(ctx, d));
173 17
}
174
175
/* Finish fetch ------------------------------------------------------*/
176
177
void
178 34678
VDI_Finish(struct busyobj *bo)
179
{
180
        const struct director *d;
181
        struct vrt_ctx ctx[1];
182
183 34678
        CHECK_OBJ_NOTNULL(bo, BUSYOBJ_MAGIC);
184 34678
        INIT_OBJ(ctx, VRT_CTX_MAGIC);
185 34678
        VCL_Bo2Ctx(ctx, bo);
186
187 34678
        d = bo->director_resp;
188 34678
        CHECK_OBJ_NOTNULL(d, DIRECTOR_MAGIC);
189
190 34678
        AZ(d->vdir->methods->resolve);
191 34678
        AN(d->vdir->methods->finish);
192
193 34678
        assert(bo->director_state != DIR_S_NULL);
194 34678
        d->vdir->methods->finish(ctx, d);
195 34678
        bo->director_state = DIR_S_NULL;
196 34678
}
197
198
/* Get a connection --------------------------------------------------*/
199
200
stream_close_t
201 408
VDI_Http1Pipe(struct req *req, struct busyobj *bo)
202
{
203
        const struct director *d;
204
        struct vrt_ctx ctx[1];
205
206 408
        CHECK_OBJ_NOTNULL(req, REQ_MAGIC);
207 408
        CHECK_OBJ_NOTNULL(bo, BUSYOBJ_MAGIC);
208 408
        INIT_OBJ(ctx, VRT_CTX_MAGIC);
209 408
        VCL_Bo2Ctx(ctx, bo);
210 408
        VCL_Req2Ctx(ctx, req);
211
212 408
        d = VDI_Resolve(ctx);
213 408
        if (d == NULL || d->vdir->methods->http1pipe == NULL) {
214 0
                VSLb(bo->vsl, SLT_VCL_Error, "Backend does not support pipe");
215 0
                return (SC_TX_ERROR);
216
        }
217 408
        VRT_Assign_Backend(&bo->director_resp, d);
218 408
        return (d->vdir->methods->http1pipe(ctx, d));
219 408
}
220
221
/* Check health --------------------------------------------------------
222
 *
223
 * If director has no healthy method, we just assume it is healthy.
224
 */
225
226
/*--------------------------------------------------------------------
227
 * Test if backend is healthy and report when that last changed
228
 */
229
230
VCL_BOOL
231 51815
VRT_Healthy(VRT_CTX, VCL_BACKEND d, VCL_TIME *changed)
232
{
233
234 51815
        CHECK_OBJ_NOTNULL(ctx, VRT_CTX_MAGIC);
235 51815
        if (d == NULL)
236 0
                return (0);
237 51815
        CHECK_OBJ_NOTNULL(d, DIRECTOR_MAGIC);
238
239 51815
        if (d->vdir->admin_health->health >= 0) {
240 1716
                if (changed != NULL)
241 969
                        *changed = d->vdir->health_changed;
242 1716
                return (d->vdir->admin_health->health);
243
        }
244
245 50099
        if (d->vdir->methods->healthy == NULL) {
246 47821
                if (changed != NULL)
247 9112
                        *changed = d->vdir->health_changed;
248 47821
                return (1);
249
        }
250
251 2278
        return (d->vdir->methods->healthy(ctx, d, changed));
252 51815
}
253
254
/*--------------------------------------------------------------------
255
 * Update health_changed.
256
 */
257
VCL_VOID
258 1904
VRT_SetChanged(VCL_BACKEND d, VCL_TIME changed)
259
{
260
261 1904
        CHECK_OBJ_ORNULL(d, DIRECTOR_MAGIC);
262
263 1904
        if (d != NULL && changed > d->vdir->health_changed)
264 136
                d->vdir->health_changed = changed;
265 1904
}
266
267
/* Send Event ----------------------------------------------------------
268
 */
269
270
void
271 29578
VDI_Event(const struct director *d, enum vcl_event_e ev)
272
{
273
274 29578
        CHECK_OBJ_NOTNULL(d, DIRECTOR_MAGIC);
275 29578
        if (d->vdir->methods->event != NULL)
276 26705
                d->vdir->methods->event(d, ev);
277 29578
}
278
279
/* Dump panic info -----------------------------------------------------
280
 */
281
282
void
283 119
VDI_Panic(const struct director *d, struct vsb *vsb, const char *nm)
284
{
285 119
        if (d == NULL)
286 17
                return;
287 102
        VSB_printf(vsb, "%s = %p {\n", nm, d);
288 102
        VSB_indent(vsb, 2);
289 102
        VSB_printf(vsb, "cli_name = %s,\n", d->vdir->cli_name);
290 204
        VSB_printf(vsb, "admin_health = %s, changed = %f,\n",
291 102
            VDI_Ahealth(d), d->vdir->health_changed);
292 102
        VSB_printf(vsb, "type = %s {\n", d->vdir->methods->type);
293 102
        VSB_indent(vsb, 2);
294 102
        if (d->vdir->methods->panic != NULL)
295 102
                d->vdir->methods->panic(d, vsb);
296 102
        VSB_indent(vsb, -2);
297 102
        VSB_cat(vsb, "},\n");
298 102
        VSB_indent(vsb, -2);
299 102
        VSB_cat(vsb, "},\n");
300 119
}
301
302
303
/*---------------------------------------------------------------------*/
304
305
struct list_args {
306
        unsigned        magic;
307
#define LIST_ARGS_MAGIC 0x7e7cefeb
308
        int             p;
309
        int             j;
310
        const char      *jsep;
311
        struct vsb      *vsb;
312
        struct vte      *vte;
313
};
314
315
static const char *
316 17
cli_health(VRT_CTX, const struct director *d)
317
{
318 17
        VCL_BOOL healthy = VRT_Healthy(ctx, d, NULL);
319
320 17
        return (healthy ? "healthy" : "sick");
321
}
322
323
static int v_matchproto_(vcl_be_func)
324 21318
do_list(struct cli *cli, struct director *d, void *priv)
325
{
326
        char time_str[VTIM_FORMAT_SIZE];
327
        struct list_args *la;
328
        struct vrt_ctx *ctx;
329
330 21318
        AN(cli);
331 21318
        CAST_OBJ_NOTNULL(la, priv, LIST_ARGS_MAGIC);
332 21318
        AN(la->vsb);
333 21318
        AN(la->vte);
334 21318
        CHECK_OBJ_NOTNULL(d, DIRECTOR_MAGIC);
335
336 21318
        if (d->vdir->admin_health == VDI_AH_DELETED)
337 0
                return (0);
338
339 21318
        ctx = VCL_Get_CliCtx(0);
340
341 21318
        VTE_printf(la->vte, "%s\t%s\t", d->vdir->cli_name, VDI_Ahealth(d));
342
343 21318
        if (d->vdir->methods->list != NULL) {
344 20247
                VSB_clear(la->vsb);
345 20247
                d->vdir->methods->list(ctx, d, la->vsb, 0, 0);
346 20247
                AZ(VSB_finish(la->vsb));
347 20247
                VTE_cat(la->vte, VSB_data(la->vsb));
348 21318
        } else if (d->vdir->methods->healthy != NULL)
349 17
                VTE_printf(la->vte, "0/0\t%s", cli_health(ctx, d));
350
        else
351 1054
                VTE_cat(la->vte, "0/0\thealthy");
352
353 21318
        VTIM_format(d->vdir->health_changed, time_str);
354 21318
        VTE_printf(la->vte, "\t%s", time_str);
355 21318
        if (la->p && d->vdir->methods->list != NULL) {
356 476
                VSB_clear(la->vsb);
357 476
                d->vdir->methods->list(ctx, d, la->vsb, la->p, 0);
358 476
                AZ(VSB_finish(la->vsb));
359 476
                VTE_cat(la->vte, VSB_data(la->vsb));
360 476
        }
361
362 21318
        VTE_cat(la->vte, "\n");
363 21318
        AZ(VCL_Rel_CliCtx(&ctx));
364 21318
        AZ(ctx);
365
366 21318
        return (0);
367 21318
}
368
369
static int v_matchproto_(vcl_be_func)
370 527
do_list_json(struct cli *cli, struct director *d, void *priv)
371
{
372
        struct list_args *la;
373
        struct vrt_ctx *ctx;
374
375 527
        CAST_OBJ_NOTNULL(la, priv, LIST_ARGS_MAGIC);
376 527
        CHECK_OBJ_NOTNULL(d, DIRECTOR_MAGIC);
377
378 527
        if (d->vdir->admin_health == VDI_AH_DELETED)
379 0
                return (0);
380
381 527
        ctx = VCL_Get_CliCtx(0);
382
383 527
        VCLI_Out(cli, "%s", la->jsep);
384 527
        la->jsep = ",\n";
385 527
        VCLI_JSON_str(cli, d->vdir->cli_name);
386 527
        VCLI_Out(cli, ": {\n");
387 527
        VSB_indent(cli->sb, 2);
388 527
        VCLI_Out(cli, "\"type\": \"%s\",\n", d->vdir->methods->type);
389 527
        VCLI_Out(cli, "\"admin_health\": \"%s\",\n", VDI_Ahealth(d));
390 527
        VCLI_Out(cli, "\"probe_message\": ");
391 527
        if (d->vdir->methods->list != NULL)
392 493
                d->vdir->methods->list(ctx, d, cli->sb, 0, 1);
393 34
        else if (d->vdir->methods->healthy != NULL)
394 0
                VCLI_Out(cli, "[0, 0, \"%s\"]", cli_health(ctx, d));
395
        else
396 34
                VCLI_Out(cli, "[0, 0, \"healthy\"]");
397
398 527
        VCLI_Out(cli, ",\n");
399
400 527
        if (la->p && d->vdir->methods->list != NULL) {
401 187
                VCLI_Out(cli, "\"probe_details\": ");
402 187
                d->vdir->methods->list(ctx, d, cli->sb, la->p, 1);
403 187
        }
404 527
        VCLI_Out(cli, "\"last_change\": %.3f\n", d->vdir->health_changed);
405 527
        VSB_indent(cli->sb, -2);
406 527
        VCLI_Out(cli, "}");
407
408 527
        AZ(VCL_Rel_CliCtx(&ctx));
409 527
        AZ(ctx);
410
411 527
        return (0);
412 527
}
413
414
static void v_matchproto_(cli_func_t)
415 15997
cli_backend_list(struct cli *cli, const char * const *av, void *priv)
416
{
417
        const char *p;
418
        struct list_args la[1];
419
        int i;
420
421 15997
        (void)priv;
422 15997
        ASSERT_CLI();
423 15997
        INIT_OBJ(la, LIST_ARGS_MAGIC);
424 15997
        la->jsep = "";
425 16337
        for (i = 2; av[i] != NULL && av[i][0] == '-'; i++) {
426 697
                for(p = av[i] + 1; *p; p++) {
427 357
                        switch(*p) {
428 85
                        case 'j': la->j = 1; break;
429 272
                        case 'p': la->p = !la->p; break;
430
                        default:
431 0
                                VCLI_Out(cli, "Invalid flag %c", *p);
432 0
                                VCLI_SetResult(cli, CLIS_PARAM);
433 0
                                return;
434
                        }
435 357
                }
436 340
        }
437 15997
        if (av[i] != NULL && av[i+1] != NULL) {
438 0
                VCLI_Out(cli, "Too many arguments");
439 0
                VCLI_SetResult(cli, CLIS_PARAM);
440 0
                return;
441
        }
442 15997
        if (la->j) {
443 85
                VCLI_JSON_begin(cli, 3, av);
444 85
                VCLI_Out(cli, ",\n");
445 85
                VCLI_Out(cli, "{\n");
446 85
                VSB_indent(cli->sb, 2);
447 85
                (void)VCL_IterDirector(cli, av[i], do_list_json, la);
448 85
                VSB_indent(cli->sb, -2);
449 85
                VCLI_Out(cli, "\n");
450 85
                VCLI_Out(cli, "}");
451 85
                VCLI_JSON_end(cli);
452 85
        } else {
453 15912
                la->vsb = VSB_new_auto();
454 15912
                AN(la->vsb);
455 15912
                la->vte = VTE_new(5, 80);
456 15912
                AN(la->vte);
457 15912
                VTE_printf(la->vte, "%s\t%s\t%s\t%s\t%s\n",
458
                    "Backend name", "Admin", "Probe", "Health", "Last change");
459 15912
                (void)VCL_IterDirector(cli, av[i], do_list, la);
460 15912
                AZ(VTE_finish(la->vte));
461 15912
                AZ(VTE_format(la->vte, VCLI_VTE_format, cli));
462 15912
                VTE_destroy(&la->vte);
463 15912
                VSB_destroy(&la->vsb);
464
        }
465 15997
}
466
467
/*---------------------------------------------------------------------*/
468
469
struct set_health {
470
        unsigned                        magic;
471
#define SET_HEALTH_MAGIC                0x0c46b9fb
472
        const struct vdi_ahealth        *ah;
473
};
474
475
static int v_matchproto_(vcl_be_func)
476 595
do_set_health(struct cli *cli, struct director *d, void *priv)
477
{
478
        struct set_health *sh;
479
480 595
        (void)cli;
481 595
        CHECK_OBJ_NOTNULL(d, DIRECTOR_MAGIC);
482 595
        CAST_OBJ_NOTNULL(sh, priv, SET_HEALTH_MAGIC);
483
484 595
        if (d->vdir->admin_health == VDI_AH_DELETED)
485 0
                return (0);
486 595
        if (d->vdir->admin_health != sh->ah) {
487 544
                d->vdir->health_changed = VTIM_real();
488 544
                d->vdir->admin_health = sh->ah;
489 544
                VDI_Event(d, VDI_EVENT_SICK);
490 544
        }
491 595
        return (0);
492 595
}
493
494
static void v_matchproto_()
495 714
cli_backend_set_health(struct cli *cli, const char * const *av, void *priv)
496
{
497
        int n;
498
        struct set_health sh[1];
499
500 714
        (void)av;
501 714
        (void)priv;
502 714
        ASSERT_CLI();
503 714
        AN(av[2]);
504 714
        AN(av[3]);
505 714
        INIT_OBJ(sh, SET_HEALTH_MAGIC);
506 714
        sh->ah = vdi_str2ahealth(av[3]);
507 714
        if (sh->ah == NULL || sh->ah == VDI_AH_DELETED) {
508 68
                VCLI_Out(cli, "Invalid state %s", av[3]);
509 68
                VCLI_SetResult(cli, CLIS_PARAM);
510 68
                return;
511
        }
512 646
        n = VCL_IterDirector(cli, av[2], do_set_health, sh);
513 646
        if (n == 0) {
514 51
                VCLI_Out(cli, "No Backends matches");
515 51
                VCLI_SetResult(cli, CLIS_PARAM);
516 51
        }
517 714
}
518
519
/*---------------------------------------------------------------------*/
520
521
static struct cli_proto backend_cmds[] = {
522
        { CLICMD_BACKEND_LIST,          "",
523
             cli_backend_list, cli_backend_list },
524
        { CLICMD_BACKEND_SET_HEALTH,    "", cli_backend_set_health },
525
        { NULL }
526
};
527
528
/*---------------------------------------------------------------------*/
529
530
void
531 16215
VDI_Init(void)
532
{
533
534 16215
        CLI_AddFuncs(backend_cmds);
535 16215
}