varnish-cache/lib/libvarnish/vcli_serve.c
0
/*-
1
 * Copyright (c) 2006 Verdens Gang AS
2
 * Copyright (c) 2006-2011 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
 * Stuff for handling the CLI protocol
31
 */
32
33
#include "config.h"
34
35
#include <time.h>
36
#include <ctype.h>
37
#include <poll.h>
38
#include <stdarg.h>
39
#include <stdint.h>
40
#include <stdio.h>
41
#include <stdlib.h>
42
#include <string.h>
43
#include <unistd.h>
44
45
#include "vdef.h"
46
#include "vas.h"
47
#include "vqueue.h"
48
#include "miniobj.h"
49
50
#include "vav.h"
51
#include "vcli_serve.h"
52
#include "vsb.h"
53
#include "vtim.h"
54
55
struct VCLS_fd {
56
        unsigned                        magic;
57
#define VCLS_FD_MAGIC                   0x010dbd1e
58
        VTAILQ_ENTRY(VCLS_fd)           list;
59
        int                             fdi, fdo;
60
        struct VCLS                     *cls;
61
        struct cli                      *cli, clis;
62
        cls_cb_f                        *closefunc;
63
        void                            *priv;
64
        struct vsb                      *last_arg;
65
        char                            **argv;
66
        int                             argc;
67
        char                            *match;
68
};
69
70
struct VCLS {
71
        unsigned                        magic;
72
#define VCLS_MAGIC                      0x60f044a3
73
        VTAILQ_HEAD(,VCLS_fd)           fds;
74
        unsigned                        nfd;
75
        VTAILQ_HEAD(,cli_proto)         funcs;
76
        cls_cbc_f                       *before, *after;
77
        volatile unsigned               *limit;
78
        struct cli_proto                *wildcard;
79
};
80
81
/*--------------------------------------------------------------------*/
82
83
void v_matchproto_(cli_func_t)
84 75
VCLS_func_close(struct cli *cli, const char *const *av, void *priv)
85
{
86
87 75
        (void)av;
88 75
        (void)priv;
89 75
        VCLI_Out(cli, "Closing CLI connection");
90 75
        VCLI_SetResult(cli, CLIS_CLOSE);
91 75
}
92
93
/*--------------------------------------------------------------------*/
94
95
void v_matchproto_(cli_func_t)
96 5576
VCLS_func_ping(struct cli *cli, const char * const *av, void *priv)
97
{
98
        time_t t;
99
100 5576
        (void)av;
101 5576
        (void)priv;
102 5576
        t = time(NULL);
103 5576
        VCLI_Out(cli, "PONG %jd 1.0", (intmax_t)t);
104 5576
}
105
106
void v_matchproto_(cli_func_t)
107 50
VCLS_func_ping_json(struct cli *cli, const char * const *av, void *priv)
108
{
109 50
        (void)av;
110 50
        (void)priv;
111 50
        VCLI_JSON_begin(cli, 2, av);
112 50
        VCLI_Out(cli, ", \"PONG\"\n");
113 50
        VCLI_JSON_end(cli);
114 50
}
115
116
/*--------------------------------------------------------------------*/
117
118
static void
119 5125
help_helper(struct cli *cli, struct cli_proto *clp, const char * const *av)
120
{
121 5125
        AN(clp->desc->syntax);
122 5125
        if (av[0] != NULL)
123 75
                VCLI_Out(cli, "%s\n%s\n", clp->desc->syntax, clp->desc->help);
124
        else
125 5050
                VCLI_Out(cli, "%s\n", clp->desc->syntax);
126 5125
}
127
128
void v_matchproto_(cli_func_t)
129 425
VCLS_func_help(struct cli *cli, const char * const *av, void *priv)
130
{
131
        struct cli_proto *clp;
132 425
        unsigned filter = 1, d;
133
        struct VCLS *cs;
134
135 425
        (void)priv;
136 425
        cs = cli->cls;
137 425
        CHECK_OBJ_NOTNULL(cs, VCLS_MAGIC);
138
139 525
        for (av += 2; av[0] != NULL && av[0][0] == '-'; av++) {
140 150
                if (!strcmp(av[0], "-a")) {
141 50
                        filter = 3;
142 150
                } else if (!strcmp(av[0], "-d")) {
143 50
                        filter = 2;
144 50
                } else {
145 50
                        VCLI_Out(cli, "Unknown flag\n");
146 50
                        VCLI_SetResult(cli, CLIS_UNKNOWN);
147 50
                        return;
148
                }
149 100
        }
150 9950
        VTAILQ_FOREACH(clp, &cs->funcs, list) {
151 9650
                if (clp->auth > cli->auth)
152 0
                        continue;
153 9650
                if (av[0] != NULL && !strcmp(clp->desc->request, av[0])) {
154 75
                        help_helper(cli, clp, av);
155 75
                        return;
156 9575
                } else if (av[0] == NULL) {
157 6900
                        d = strchr(clp->flags, 'd') != NULL ? 2 : 1;
158 6900
                        if (filter & d)
159 5050
                                help_helper(cli, clp, av);
160 6900
                }
161 9575
        }
162 300
        if (av[0] != NULL) {
163 50
                VCLI_Out(cli, "Unknown request.\nType 'help' for more info.\n");
164 50
                VCLI_SetResult(cli, CLIS_UNKNOWN);
165 50
        }
166 425
}
167
168
void v_matchproto_(cli_func_t)
169 150
VCLS_func_help_json(struct cli *cli, const char * const *av, void *priv)
170
{
171
        struct cli_proto *clp;
172
        struct VCLS *cs;
173
174 150
        (void)priv;
175 150
        cs = cli->cls;
176 150
        CHECK_OBJ_NOTNULL(cs, VCLS_MAGIC);
177
178 150
        VCLI_JSON_begin(cli, 2, av);
179 5850
        VTAILQ_FOREACH(clp, &cs->funcs, list) {
180 5700
                if (clp->auth > cli->auth)
181 0
                        continue;
182 5700
                VCLI_Out(cli, ",\n  {\n");
183 5700
                VSB_indent(cli->sb, 2);
184 5700
                VCLI_Out(cli, "\"request\": ");
185 5700
                VCLI_JSON_str(cli, clp->desc->request);
186 5700
                VCLI_Out(cli, ",\n");
187 5700
                VCLI_Out(cli, "\"syntax\": ");
188 5700
                VCLI_JSON_str(cli, clp->desc->syntax);
189 5700
                VCLI_Out(cli, ",\n");
190 5700
                VCLI_Out(cli, "\"help\": ");
191 5700
                VCLI_JSON_str(cli, clp->desc->help);
192 5700
                VCLI_Out(cli, ",\n");
193 5700
                VCLI_Out(cli, "\"minarg\": %d", clp->desc->minarg);
194 5700
                VCLI_Out(cli, ",\n");
195 5700
                VCLI_Out(cli, "\"maxarg\": %d", clp->desc->maxarg);
196 5700
                VCLI_Out(cli, ",\n");
197 5700
                VCLI_Out(cli, "\"flags\": ");
198 5700
                VCLI_JSON_str(cli, clp->flags);
199 5700
                VCLI_Out(cli, ",\n");
200 11400
                VCLI_Out(cli, "\"json\": %s",
201 5700
                    clp->jsonfunc == NULL ? "false" : "true");
202 5700
                VCLI_Out(cli, "\n");
203 5700
                VSB_indent(cli->sb, -2);
204 5700
                VCLI_Out(cli, "}");
205 5700
        }
206 150
        VCLI_JSON_end(cli);
207 150
}
208
209
/*--------------------------------------------------------------------
210
 * Look for a CLI command to execute
211
 */
212
213
static void
214 502551
cls_dispatch(struct cli *cli, struct VCLS *cs, char * const * av, int ac)
215
{
216 502551
        int json = 0;
217
        struct cli_proto *cp;
218
219 502551
        AN(av);
220 502551
        assert(ac >= 0);
221 502551
        AZ(av[0]);
222 502551
        AN(av[1]);
223
224 9176748
        VTAILQ_FOREACH(cp, &cs->funcs, list) {
225 9079823
                if (cp->auth > cli->auth)
226 0
                        continue;
227 9079823
                if (!strcmp(cp->desc->request, av[1]))
228 405626
                        break;
229 8674197
        }
230
231 502551
        if (cp == NULL && cs->wildcard && cs->wildcard->auth <= cli->auth)
232 96900
                cp = cs->wildcard;
233
234 502551
        if (cp == NULL) {
235 25
                VCLI_Out(cli, "Unknown request.\nType 'help' for more info.\n");
236 25
                return;
237
        }
238
239 502526
        VSB_clear(cli->sb);
240
241 502526
        if (ac > 1 && !strcmp(av[2], "-j"))
242 1950
                json = 1;
243
244 502526
        if (cp->func == NULL && !json) {
245 0
                VCLI_Out(cli, "Unimplemented\n");
246 0
                VCLI_SetResult(cli, CLIS_UNIMPL);
247 0
                return;
248
        }
249 502526
        if (cp->jsonfunc == NULL && json) {
250 25
                VCLI_Out(cli, "JSON unimplemented\n");
251 25
                VCLI_SetResult(cli, CLIS_UNIMPL);
252 25
                return;
253
        }
254
255 502501
        if (ac - 1 < cp->desc->minarg + json) {
256 100
                VCLI_Out(cli, "Too few parameters\n");
257 100
                VCLI_SetResult(cli, CLIS_TOOFEW);
258 100
                return;
259
        }
260
261 502401
        if (cp->desc->maxarg >= 0 && ac - 1 > cp->desc->maxarg + json) {
262 50
                VCLI_Out(cli, "Too many parameters\n");
263 50
                VCLI_SetResult(cli, CLIS_TOOMANY);
264 50
                return;
265
        }
266
267 502351
        cli->result = CLIS_OK;
268 502351
        cli->cls = cs;
269 502351
        if (json)
270 1925
                cp->jsonfunc(cli, (const char * const *)av, cp->priv);
271
        else
272 500426
                cp->func(cli, (const char * const *)av, cp->priv);
273 502351
        cli->cls = NULL;
274 502551
}
275
276
/*--------------------------------------------------------------------
277
 * We have collected a full cli line, parse it and execute, if possible.
278
 */
279
280
static int
281 502701
cls_exec(struct VCLS_fd *cfd, char * const *av, int ac)
282
{
283
        struct VCLS *cs;
284
        struct cli *cli;
285
        ssize_t len;
286
        char *s;
287
        unsigned lim;
288 502701
        int retval = 0;
289
290 502701
        CHECK_OBJ_NOTNULL(cfd, VCLS_FD_MAGIC);
291 502701
        cs = cfd->cls;
292 502701
        CHECK_OBJ_NOTNULL(cs, VCLS_MAGIC);
293
294 502701
        cli = cfd->cli;
295 502701
        CHECK_OBJ_NOTNULL(cli, CLI_MAGIC);
296 502701
        AN(cli->cmd);
297
298 502701
        cli->result = CLIS_UNKNOWN;
299 502701
        VSB_clear(cli->sb);
300
301 502701
        if (cs->before != NULL)
302 502701
                cs->before(cli);
303
304 502701
        do {
305 502701
                if (av[0] != NULL) {
306 50
                        VCLI_Out(cli, "Syntax Error: %s\n", av[0]);
307 50
                        VCLI_SetResult(cli, CLIS_SYNTAX);
308 50
                        break;
309
                }
310
311 502651
                if (av[1] == NULL) {
312 25
                        VCLI_Out(cli, "Empty CLI command.\n");
313 25
                        VCLI_SetResult(cli, CLIS_SYNTAX);
314 25
                        break;
315
                }
316
317 502626
                if (!islower(av[1][0])) {
318 75
                        VCLI_Out(cli, "All commands are in lower-case.\n");
319 75
                        VCLI_SetResult(cli, CLIS_UNKNOWN);
320 75
                        break;
321
                }
322
323 502551
                cls_dispatch(cli, cs, av, ac);
324
325 502551
        } while (0);
326
327 502701
        AZ(VSB_finish(cli->sb));
328
329 502701
        if (cs->after != NULL)
330 502651
                cs->after(cli);
331
332 502701
        s = VSB_data(cli->sb);
333 502701
        len = VSB_len(cli->sb);
334 502701
        lim = *cs->limit;
335 502701
        if (len > lim) {
336 125
                if (cli->result == CLIS_OK)
337 0
                        cli->result = CLIS_TRUNCATED;
338 125
                s[lim - 1] = '\0';
339 125
                assert(strlen(s) <= lim);
340 125
        }
341 502701
        if (VCLI_WriteResult(cfd->fdo, cli->result, s) ||
342 502626
            cli->result == CLIS_CLOSE)
343 75
                retval = 1;
344
345
        /*
346
         * In unauthenticated mode we are very intolerant, and close the
347
         * connection at the least provocation.
348
         */
349 502701
        if (cli->auth == 0 && cli->result != CLIS_OK)
350 0
                retval = 1;
351
352 502701
        return (retval);
353
}
354
355
static int
356 798362
cls_feed(struct VCLS_fd *cfd, const char *p, const char *e)
357
{
358
        struct cli *cli;
359 798362
        int i, retval = 0, ac;
360
        char **av, *q;
361
362 798362
        CHECK_OBJ_NOTNULL(cfd, VCLS_FD_MAGIC);
363 798362
        AN(p);
364 798362
        assert(e > p);
365
366 798362
        cli = cfd->cli;
367 798362
        CHECK_OBJ_NOTNULL(cli, CLI_MAGIC);
368
369 22315567
        for (;p < e; p++) {
370 21517280
                if (cli->cmd == NULL && isspace(*p)) {
371
                        /* Ignore all leading space before cmd */
372 58150
                        continue;
373
                }
374 21459130
                if (cfd->argv == NULL) {
375
376
                        /* Collect first line up to \n or \r */
377 10315690
                        if (cli->cmd == NULL) {
378 502751
                                cli->cmd = VSB_new_auto();
379 502751
                                AN(cli->cmd);
380 502751
                        }
381
382
                        /* Until authenticated, limit length hard */
383 11944090
                        if (*p != '\n' && *p != '\r' &&
384 9813039
                            (cli->auth > 0 || VSB_len(cli->cmd) < 80)) {
385 9813039
                                VSB_putc(cli->cmd, *p);
386 9813039
                                continue;
387
                        }
388
389 502651
                        AZ(VSB_finish(cli->cmd));
390
391
                        /* Ignore leading '-' */
392 502651
                        q = VSB_data(cli->cmd);
393 502651
                        if (*q == '-')
394 100
                                q++;
395 502651
                        av = VAV_Parse(q, &ac, 0);
396 502651
                        AN(av);
397
398 538051
                        if (cli->auth > 0 &&
399 479126
                            av[0] == NULL &&
400 479076
                            ac >= 3 &&
401 193500
                            !strcmp(av[ac-2], "<<") &&
402 35400
                            *av[ac - 1] != '\0') {
403
                                /* Go to "<< nonce" mode */
404 35400
                                cfd->argv = av;
405 35400
                                cfd->argc = ac;
406 35400
                                cfd->match = av[ac - 1];
407 35400
                                cfd->last_arg = VSB_new_auto();
408 35400
                                AN(cfd->last_arg);
409 35400
                        } else {
410
                                /* Plain command */
411 467251
                                i = cls_exec(cfd, av, ac - 1);
412 467251
                                VAV_Free(av);
413 467251
                                VSB_destroy(&cli->cmd);
414 467251
                                if (i)
415 75
                                        return (i);
416
                        }
417 502576
                } else {
418
                        /* "<< nonce" mode */
419 11143440
                        AN(cfd->argv);
420 11143440
                        AN(cfd->argc);
421 11143440
                        AN(cfd->match);
422 11143440
                        AN(cfd->last_arg);
423 11143440
                        if (*cfd->match == '\0' && (*p == '\r' || *p == '\n')) {
424 35375
                                AZ(VSB_finish(cfd->last_arg));
425
                                // NB: VAV lib internals trusted
426 35375
                                cfd->match = NULL;
427 35375
                                REPLACE(cfd->argv[cfd->argc - 1], NULL);
428 35375
                                REPLACE(cfd->argv[cfd->argc - 2], NULL);
429 35375
                                cfd->argv[cfd->argc - 2] =
430 35375
                                    VSB_data(cfd->last_arg);
431 35375
                                i = cls_exec(cfd, cfd->argv, cfd->argc - 2);
432 35375
                                cfd->argv[cfd->argc - 2] = NULL;
433 35375
                                VAV_Free(cfd->argv);
434 35375
                                cfd->argv = NULL;
435 35375
                                VSB_destroy(&cfd->last_arg);
436 35375
                                VSB_destroy(&cli->cmd);
437 35375
                                if (i)
438 0
                                        return (i);
439 11143440
                        } else if (*p == *cfd->match) {
440 636425
                                cfd->match++;
441 11108065
                        } else if (cfd->match != cfd->argv[cfd->argc - 1]) {
442 71075
                                q = cfd->argv[cfd->argc - 1];
443 71075
                                VSB_bcat(cfd->last_arg, q, cfd->match - q);
444 71075
                                cfd->match = q;
445 71075
                                VSB_putc(cfd->last_arg, *p);
446 71075
                        } else {
447 10400565
                                VSB_putc(cfd->last_arg, *p);
448
                        }
449
                }
450 11646016
        }
451 798287
        return (retval);
452 798362
}
453
454
struct VCLS *
455 46997
VCLS_New(struct VCLS *model)
456
{
457
        struct VCLS *cs;
458
459 46997
        CHECK_OBJ_ORNULL(model, VCLS_MAGIC);
460
461 46997
        ALLOC_OBJ(cs, VCLS_MAGIC);
462 46997
        AN(cs);
463 46997
        VTAILQ_INIT(&cs->fds);
464 46997
        VTAILQ_INIT(&cs->funcs);
465 46997
        if (model != NULL)
466 22197
                VTAILQ_CONCAT(&cs->funcs, &model->funcs, list);
467 46997
        return (cs);
468
}
469
470
void
471 45347
VCLS_SetLimit(struct VCLS *cs, volatile unsigned *limit)
472
{
473 45347
        CHECK_OBJ_NOTNULL(cs, VCLS_MAGIC);
474 45347
        cs->limit = limit;
475 45347
}
476
477
void
478 46997
VCLS_SetHooks(struct VCLS *cs, cls_cbc_f *before, cls_cbc_f *after)
479
{
480
481 46997
        CHECK_OBJ_NOTNULL(cs, VCLS_MAGIC);
482 46997
        cs->before = before;
483 46997
        cs->after = after;
484 46997
}
485
486
struct cli *
487 68500
VCLS_AddFd(struct VCLS *cs, int fdi, int fdo, cls_cb_f *closefunc, void *priv)
488
{
489
        struct VCLS_fd *cfd;
490
491 68500
        CHECK_OBJ_NOTNULL(cs, VCLS_MAGIC);
492 68500
        assert(fdi >= 0);
493 68500
        assert(fdo >= 0);
494 68500
        ALLOC_OBJ(cfd, VCLS_FD_MAGIC);
495 68500
        AN(cfd);
496 68500
        cfd->cls = cs;
497 68500
        cfd->fdi = fdi;
498 68500
        cfd->fdo = fdo;
499 68500
        cfd->cli = &cfd->clis;
500 68500
        cfd->cli->magic = CLI_MAGIC;
501 68500
        cfd->cli->sb = VSB_new_auto();
502 68500
        AN(cfd->cli->sb);
503 68500
        cfd->cli->limit = cs->limit;
504 68500
        cfd->cli->priv = priv;
505 68500
        cfd->closefunc = closefunc;
506 68500
        cfd->priv = priv;
507 68500
        VTAILQ_INSERT_TAIL(&cs->fds, cfd, list);
508 68500
        cs->nfd++;
509 68500
        return (cfd->cli);
510
}
511
512
static int
513 68225
cls_close_fd(struct VCLS *cs, struct VCLS_fd *cfd)
514
{
515 68225
        int retval = 0;
516
517 68225
        CHECK_OBJ_NOTNULL(cs, VCLS_MAGIC);
518 68225
        CHECK_OBJ_NOTNULL(cfd, VCLS_FD_MAGIC);
519
520 68225
        VTAILQ_REMOVE(&cs->fds, cfd, list);
521 68225
        if (cfd->match != NULL) {
522 50
                cfd->cli->result = CLIS_TRUNCATED;
523 50
                if (cs->after != NULL)
524 25
                        cs->after(cfd->cli);
525 50
                VSB_destroy(&cfd->last_arg);
526 68225
        } else if (cfd->cli->cmd != NULL) {
527 25
                (void)VSB_finish(cfd->cli->cmd);
528 25
                cfd->cli->result = CLIS_TRUNCATED;
529 25
                if (cs->after != NULL)
530 25
                        cs->after(cfd->cli);
531 25
                VSB_destroy(&cfd->cli->cmd);
532 25
        }
533 68175
        cs->nfd--;
534 68175
        VSB_destroy(&cfd->cli->sb);
535 68175
        if (cfd->closefunc != NULL)
536 45300
                retval = cfd->closefunc(cfd->priv);
537 68175
        (void)close(cfd->fdi);
538 68175
        if (cfd->fdo != cfd->fdi)
539 22675
                (void)close(cfd->fdo);
540 68175
        if (cfd->cli->ident != NULL)
541 46275
                free(cfd->cli->ident);
542 68175
        FREE_OBJ(cfd);
543 68175
        return (retval);
544
}
545
546
void
547 415733
VCLS_AddFunc(struct VCLS *cs, unsigned auth, struct cli_proto *clp)
548
{
549
        struct cli_proto *clp2;
550
        int i;
551
552 415733
        CHECK_OBJ_NOTNULL(cs, VCLS_MAGIC);
553 415733
        AN(clp);
554
555 1521218
        for (;clp->desc != NULL; clp++) {
556 1105485
                clp->auth = auth;
557 1105485
                if (!strcmp(clp->desc->request, "*")) {
558 24800
                        cs->wildcard = clp;
559 24800
                } else {
560 1080685
                        i = 0;
561 11287660
                        VTAILQ_FOREACH(clp2, &cs->funcs, list) {
562 22287770
                                i = strcmp(clp->desc->request,
563 11143885
                                    clp2->desc->request);
564 11143885
                                if (i <= 0)
565 936910
                                        break;
566 10206975
                        }
567 1080685
                        if (clp2 != NULL && i == 0) {
568 199770
                                VTAILQ_INSERT_BEFORE(clp2, clp, list);
569 199770
                                VTAILQ_REMOVE(&cs->funcs, clp2, list);
570 1080685
                        } else if (clp2 != NULL)
571 737140
                                VTAILQ_INSERT_BEFORE(clp2, clp, list);
572
                        else
573 143775
                                VTAILQ_INSERT_TAIL(&cs->funcs, clp, list);
574
                }
575 1105485
        }
576 415733
}
577
578
int
579 864875
VCLS_Poll(struct VCLS *cs, const struct cli *cli, int timeout)
580
{
581
        struct VCLS_fd *cfd;
582
        struct pollfd pfd[1];
583
        int i, j, k;
584
        char buf[BUFSIZ];
585
586 864875
        CHECK_OBJ_NOTNULL(cs, VCLS_MAGIC);
587 864875
        if (cs->nfd == 0) {
588 0
                errno = 0;
589 0
                return (-1);
590
        }
591 864875
        assert(cs->nfd > 0);
592
593 864875
        i = 0;
594 1500365
        VTAILQ_FOREACH(cfd, &cs->fds, list) {
595 1500215
                if (cfd->cli != cli)
596 635490
                        continue;
597 864725
                pfd[i].fd = cfd->fdi;
598 864725
                pfd[i].events = POLLIN;
599 864725
                pfd[i].revents = 0;
600 864725
                i++;
601 864725
                break;
602
        }
603 864875
        assert(i == 1);
604 864575
        CHECK_OBJ_NOTNULL(cfd, VCLS_FD_MAGIC);
605
606 864575
        j = poll(pfd, 1, timeout);
607 864575
        if (j <= 0)
608 0
                return (j);
609 864575
        if (pfd[0].revents & POLLHUP)
610 44500
                k = 1;
611
        else {
612 820075
                i = read(cfd->fdi, buf, sizeof buf);
613 820075
                if (i <= 0)
614 21638
                        k = 1;
615
                else
616 798437
                        k = cls_feed(cfd, buf, buf + i);
617
        }
618 864575
        if (k) {
619 66213
                i = cls_close_fd(cs, cfd);
620 66213
                if (i < 0)
621 22625
                        k = i;
622 66213
        }
623 864575
        return (k);
624 864575
}
625
626
void
627 22700
VCLS_Destroy(struct VCLS **csp)
628
{
629
        struct VCLS *cs;
630
        struct VCLS_fd *cfd, *cfd2;
631
        struct cli_proto *clp;
632
633 22700
        TAKE_OBJ_NOTNULL(cs, csp, VCLS_MAGIC);
634 24712
        VTAILQ_FOREACH_SAFE(cfd, &cs->fds, list, cfd2)
635 2012
                (void)cls_close_fd(cs, cfd);
636
637 590200
        while (!VTAILQ_EMPTY(&cs->funcs)) {
638 567500
                clp = VTAILQ_FIRST(&cs->funcs);
639 567500
                VTAILQ_REMOVE(&cs->funcs, clp, list);
640
        }
641 22700
        FREE_OBJ(cs);
642 22700
}
643
644
/**********************************************************************
645
 * Utility functions for implementing CLI commands
646
 */
647
648
static void
649 2504342
vcli_outv(struct cli *cli, const char *fmt, va_list ap)
650
{
651
652 2504342
        if (VSB_len(cli->sb) < *cli->limit)
653 2476842
                (void)VSB_vprintf(cli->sb, fmt, ap);
654 27500
        else if (cli->result == CLIS_OK)
655 125
                cli->result = CLIS_TRUNCATED;
656 2504342
}
657
658
/*lint -e{818} cli could be const */
659
void
660 2246199
VCLI_Out(struct cli *cli, const char *fmt, ...)
661
{
662
        va_list ap;
663
664 2246199
        CHECK_OBJ_NOTNULL(cli, CLI_MAGIC);
665 2246199
        AN(fmt);
666
667 2246199
        va_start(ap, fmt);
668 2246199
        vcli_outv(cli, fmt, ap);
669 2246199
        va_end(ap);
670 2246199
}
671
672
int v_matchproto_(VTE_format_f)
673 258143
VCLI_VTE_format(void *priv, const char *fmt, ...)
674
{
675
        struct cli *cli;
676
        va_list ap;
677
678 258143
        CAST_OBJ_NOTNULL(cli, priv, CLI_MAGIC);
679 258143
        AN(fmt);
680
681 258143
        va_start(ap, fmt);
682 258143
        vcli_outv(cli, fmt, ap);
683 258143
        va_end(ap);
684
685 258143
        return (0);
686
}
687
688
/*lint -e{818} cli could be const */
689
int
690 6900
VCLI_Overflow(struct cli *cli)
691
{
692 6900
        CHECK_OBJ_NOTNULL(cli, CLI_MAGIC);
693 6900
        if (cli->result == CLIS_TRUNCATED ||
694 6900
            VSB_len(cli->sb) >= *cli->limit)
695 0
                return (1);
696 6900
        return (0);
697 6900
}
698
699
/*lint -e{818} cli could be const */
700
void
701 55975
VCLI_JSON_str(struct cli *cli, const char *s)
702
{
703
704 55975
        CHECK_OBJ_NOTNULL(cli, CLI_MAGIC);
705 55975
        VSB_putc(cli->sb, '"');
706 55975
        VSB_quote(cli->sb, s, -1, VSB_QUOTE_JSON);
707 55975
        VSB_putc(cli->sb, '"');
708 55975
}
709
710
/*lint -e{818} cli could be const */
711
void
712 1325
VCLI_JSON_begin(struct cli *cli, unsigned ver, const char * const * av)
713
{
714
        int i;
715
716 1325
        CHECK_OBJ_NOTNULL(cli, CLI_MAGIC);
717 1325
        VCLI_Out(cli, "[ %u, [", ver);
718 4225
        for (i = 1; av[i] != NULL; i++) {
719 2900
                VCLI_JSON_str(cli, av[i]);
720 2900
                if (av[i + 1] != NULL)
721 1575
                        VCLI_Out(cli, ", ");
722 2900
        }
723 1325
        VCLI_Out(cli, "], %.3f", VTIM_real());
724 1325
        VSB_indent(cli->sb, 2);
725 1325
}
726
727
void
728 1325
VCLI_JSON_end(struct cli *cli)
729
{
730 1325
        VSB_indent(cli->sb, -2);
731 1325
        VCLI_Out(cli, "\n");
732 1325
        VCLI_Out(cli, "]\n");
733 1325
}
734
735
/*lint -e{818} cli could be const */
736
void
737 325
VCLI_Quote(struct cli *cli, const char *s)
738
{
739
740 325
        CHECK_OBJ_NOTNULL(cli, CLI_MAGIC);
741 325
        VSB_quote(cli->sb, s, -1, 0);
742 325
}
743
744
void
745 229800
VCLI_SetResult(struct cli *cli, unsigned res)
746
{
747
748 229800
        if (cli != NULL) {
749 229800
                CHECK_OBJ_NOTNULL(cli, CLI_MAGIC);
750 229800
                if (cli->result != CLIS_TRUNCATED || res != CLIS_OK)
751 229775
                        cli->result = res;      /*lint !e64 type mismatch */
752 229800
        } else {
753 0
                printf("CLI result = %u\n", res);
754
        }
755 229800
}