varnish-cache/lib/libvcc/vcc_vmod.c
0
/*-
1
 * Copyright (c) 2010-2015 Varnish Software AS
2
 * All rights reserved.
3
 *
4
 * Author: Poul-Henning Kamp <phk@phk.freebsd.dk>
5
 *
6
 * SPDX-License-Identifier: BSD-2-Clause
7
 *
8
 * Redistribution and use in source and binary forms, with or without
9
 * modification, are permitted provided that the following conditions
10
 * are met:
11
 * 1. Redistributions of source code must retain the above copyright
12
 *    notice, this list of conditions and the following disclaimer.
13
 * 2. Redistributions in binary form must reproduce the above copyright
14
 *    notice, this list of conditions and the following disclaimer in the
15
 *    documentation and/or other materials provided with the distribution.
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20
 * ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
21
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27
 * SUCH DAMAGE.
28
 *
29
 * Parse `import`, check metadata and versioning.
30
 *
31
 */
32
33
#include "config.h"
34
35
#include <stdlib.h>
36
#include <string.h>
37
38
#include "vcc_compile.h"
39
40
#include "libvcc.h"
41
#include "vfil.h"
42
#include "vjsn.h"
43
#include "vmod_abi.h"
44
45
#include "vcc_vmod.h"
46
47
struct vmod_import {
48
        unsigned                        magic;
49
#define VMOD_IMPORT_MAGIC               0x31803a5d
50
        const char                      *err;
51
        struct vsb                      *json;
52
        char                            *path;
53
        VTAILQ_ENTRY(vmod_import)       list;
54
        int                             from_vext;
55
        int                             unimported_vext;
56
57
        // From $VMOD
58
        double                          vmod_syntax;
59
        char                            *name;
60
        char                            *func_name;
61
        char                            *file_id;
62
        char                            *abi;
63
        unsigned                        major;
64
        unsigned                        minor;
65
66
        struct symbol                   *sym;
67
        const struct token              *t_mod;
68
        struct vjsn                     *vj;
69
#define STANZA(UU, ll, ss)              int n_##ll;
70
        STANZA_TBL
71
#undef STANZA
72
};
73
74
static VTAILQ_HEAD(,vmod_import) imports = VTAILQ_HEAD_INITIALIZER(imports);
75
76
typedef void vcc_do_stanza_f(struct vcc *tl, const struct vmod_import *vim,
77
    const struct vjsn_val *vv);
78
79
static int
80 10013
vcc_Extract_JSON(struct vmod_import *vim, const char *filename)
81
{
82 10013
        const char *magic = "VMOD_JSON_SPEC\x02", *p;
83
        int c;
84
        FILE *f;
85
86 10013
        CHECK_OBJ_NOTNULL(vim, VMOD_IMPORT_MAGIC);
87 10013
        AN(filename);
88
89 10013
        f = fopen(filename, "rb");
90 10013
        if (f == NULL) {
91 17
                vim->err = strerror(errno);
92 17
                return (-1);
93
        }
94
95 9996
        p = magic;
96 9996
        vim->err = "No VMOD JSON found";
97 784669
        while (1) {
98 195192249
                c = getc(f);
99 195192249
                if (c == EOF) {
100 17
                        AZ(fclose(f));
101 17
                        vim->err = "No VMOD JSON found";
102 17
                        return (-1);
103
                }
104 195192232
                if (c != *p) {
105 194407580
                        p = magic;
106 194407580
                        continue;
107
                }
108 784652
                p++;
109 784652
                if (*p == '\0')
110 9979
                        break;
111
        }
112
113 9979
        vim->json = VSB_new_auto();
114 9979
        AN(vim->json);
115
116 185345407
        while (1) {
117 185345407
                c = getc(f);
118 185345407
                if (c == EOF) {
119 17
                        AZ(fclose(f));
120 17
                        vim->err = "Truncated VMOD JSON";
121 17
                        VSB_destroy(&vim->json);
122 17
                        return (-1);
123
                }
124 185345390
                if (c == '\x03')
125 9962
                        break;
126 185335428
                VSB_putc(vim->json, c);
127
        }
128 9962
        AZ(fclose(f));
129 9962
        AZ(VSB_finish(vim->json));
130 9962
        return (0);
131 10013
}
132
133
static const char *
134 9962
vcc_ParseJSON(const struct vcc *tl, const char *jsn, struct vmod_import *vim)
135
{
136
        const struct vjsn_val *vv, *vv2, *vv3;
137
        const char *err;
138
        char *p;
139
140 9962
        vim->vj = vjsn_parse(jsn, &err);
141 9962
        if (err != NULL)
142 17
                return (err);
143 9945
        AN(vim->vj);
144
145 9945
        vv = vim->vj->value;
146 9945
        if (!vjsn_is_array(vv))
147 17
                return ("Not array[0]");
148
149 9928
        vv2 = VTAILQ_FIRST(&vv->children);
150 9928
        AN(vv2);
151 9928
        if (!vjsn_is_array(vv2))
152 17
                return ("Not array[1]");
153 9911
        vv3 = VTAILQ_FIRST(&vv2->children);
154 9911
        AN(vv3);
155 9911
        if (!vjsn_is_string(vv3))
156 17
                return ("Not string[2]");
157 9894
        if (strcmp(vv3->value, "$VMOD"))
158 17
                return ("Not $VMOD[3]");
159
160 9877
        vv3 = VTAILQ_NEXT(vv3, list);
161 9877
        AN(vv3);
162 9877
        assert(vjsn_is_string(vv3));
163 9877
        vim->vmod_syntax = strtod(vv3->value, NULL);
164 9877
        assert (vim->vmod_syntax == 1.0);
165
166 9877
        vv3 = VTAILQ_NEXT(vv3, list);
167 9877
        AN(vv3);
168 9877
        assert(vjsn_is_string(vv3));
169 9877
        vim->name = vv3->value;
170
171 9877
        vv3 = VTAILQ_NEXT(vv3, list);
172 9877
        AN(vv3);
173 9877
        assert(vjsn_is_string(vv3));
174 9877
        vim->func_name = vv3->value;
175
176 9877
        vv3 = VTAILQ_NEXT(vv3, list);
177 9877
        AN(vv3);
178 9877
        assert(vjsn_is_string(vv3));
179 9877
        vim->file_id = vv3->value;
180
181 9877
        vv3 = VTAILQ_NEXT(vv3, list);
182 9877
        AN(vv3);
183 9877
        assert(vjsn_is_string(vv3));
184 9877
        vim->abi = vv3->value;
185
186 9877
        vv3 = VTAILQ_NEXT(vv3, list);
187 9877
        AN(vv3);
188 9877
        assert(vjsn_is_string(vv3));
189 9877
        vim->major = strtoul(vv3->value, &p, 10);
190 9877
        assert(p == NULL || *p == '\0' || *p == 'U');
191
192 9877
        vv3 = VTAILQ_NEXT(vv3, list);
193 9877
        AN(vv3);
194 9877
        assert(vjsn_is_string(vv3));
195 9877
        vim->minor = strtoul(vv3->value, &p, 10);
196 9877
        assert(p == NULL || *p == '\0' || *p == 'U');
197
198
199 9877
        if (vim->major == 0 && vim->minor == 0 &&
200 7599
            strcmp(vim->abi, VMOD_ABI_Version)) {
201 17
                VSB_printf(tl->sb, "Incompatible VMOD %.*s\n", PF(vim->t_mod));
202 17
                VSB_printf(tl->sb, "\tFile name: %s\n", vim->path);
203 34
                VSB_printf(tl->sb, "\tABI mismatch, expected <%s>, got <%s>\n",
204 17
                           VMOD_ABI_Version, vim->abi);
205 17
                return ("");
206
        }
207 12121
        if (vim->major != 0 &&
208 2278
            (vim->major != VRT_MAJOR_VERSION ||
209 2261
            vim->minor > VRT_MINOR_VERSION)) {
210 17
                VSB_printf(tl->sb, "Incompatible VMOD %.*s\n", PF(vim->t_mod));
211 17
                VSB_printf(tl->sb, "\tFile name: %s\n", vim->path);
212 34
                VSB_printf(tl->sb, "\tVMOD wants ABI version %u.%u\n",
213 17
                    vim->major, vim->minor);
214 17
                VSB_printf(tl->sb, "\tvarnishd provides ABI version %u.%u\n",
215
                    VRT_MAJOR_VERSION, VRT_MINOR_VERSION);
216 17
                return ("");
217
        }
218
219
220 367251
        VTAILQ_FOREACH(vv2, &vv->children, list) {
221 357425
                assert (vjsn_is_array(vv2));
222 357425
                vv3 = VTAILQ_FIRST(&vv2->children);
223 357425
                assert(vjsn_is_string(vv3));
224 357425
                assert(vv3->value[0] == '$');
225
#define STANZA(UU, ll, ss) \
226
    if (!strcmp(vv3->value, "$" #UU)) {vim->n_##ll++; continue;}
227 357425
                STANZA_TBL
228
#undef STANZA
229 17
                return ("Unknown metadata stanza.");
230
        }
231 9826
        if (vim->n_cproto != 1)
232 17
                return ("Bad cproto stanza(s)");
233 9809
        if (vim->n_vmod != 1)
234 17
                return ("Bad vmod stanza(s)");
235 9792
        return (NULL);
236 9962
}
237
238
/*
239
 * Load and check the metadata from the objectfile containing the vmod
240
 */
241
242
static int
243 9962
vcc_VmodLoad(struct vcc *tl, struct vmod_import *vim)
244
{
245
        static const char *err;
246
        struct vmod_import *vim2;
247
248 9962
        CHECK_OBJ_NOTNULL(vim, VMOD_IMPORT_MAGIC);
249
250 9962
        err = vcc_ParseJSON(tl, VSB_data(vim->json), vim);
251 9962
        if (err != NULL && *err != '\0') {
252 272
                VSB_printf(tl->sb,
253 136
                    "VMOD %.*s: bad metadata\n", PF(vim->t_mod));
254 136
                VSB_printf(tl->sb, "\t(%s)\n", err);
255 136
                VSB_printf(tl->sb, "\tFile name: %s\n", vim->path);
256 136
        }
257
258 9962
        if (err != NULL)
259 170
                return (-1);
260
261 12257
        VTAILQ_FOREACH(vim2, &imports, list) {
262 2533
                if (strcmp(vim->name, vim2->name))
263 2465
                        continue;
264 68
                if (!strcmp(vim->file_id, vim2->file_id)) {
265
                        // (Truly) duplicate imports are OK
266 51
                        return (0);
267
                }
268 34
                VSB_printf(tl->sb,
269
                    "Different version of VMOD %.*s already loaded\n",
270 17
                    PF(vim->t_mod));
271 17
                vcc_ErrWhere(tl, vim->t_mod);
272 17
                VSB_cat(tl->sb, "Previous import at:\n");
273 17
                vcc_ErrWhere(tl, vim2->t_mod);
274 17
                vcc_Warn(tl);
275 17
                break;
276
        }
277 9741
        VTAILQ_INSERT_TAIL(&imports, vim, list);
278
279 9741
        return (0);
280 9962
}
281
282
static void v_matchproto_(vcc_do_stanza_f)
283 2091
vcc_do_event(struct vcc *tl, const struct vmod_import *vim,
284
    const struct vjsn_val *vv)
285
{
286
        struct inifin *ifp;
287
288 2091
        ifp = New_IniFin(tl);
289 4182
        VSB_printf(ifp->ini,
290
            "\tif (%s(ctx, &vmod_priv_%s, VCL_EVENT_LOAD))\n"
291
            "\t\treturn(1);",
292 2091
            vv->value, vim->sym->vmod_name);
293 4182
        VSB_printf(ifp->fin,
294
            "\t\t(void)%s(ctx, &vmod_priv_%s,\n"
295
            "\t\t\t    VCL_EVENT_DISCARD);",
296 2091
            vv->value, vim->sym->vmod_name);
297 4182
        VSB_printf(ifp->event, "%s(ctx, &vmod_priv_%s, ev)",
298 2091
            vv->value, vim->sym->vmod_name);
299 2091
}
300
301
static void v_matchproto_(vcc_do_stanza_f)
302 9673
vcc_do_cproto(struct vcc *tl, const struct vmod_import *vim,
303
    const struct vjsn_val *vv)
304
{
305 9673
        (void)vim;
306 9673
        do {
307 1842528
                assert (vjsn_is_string(vv));
308 1842528
                Fh(tl, 0, "%s\n", vv->value);
309 1842528
                vv = VTAILQ_NEXT(vv, list);
310 1842528
        } while(vv != NULL);
311 9673
}
312
313
static void
314 19346
vcc_vj_foreach(struct vcc *tl, const struct vmod_import *vim,
315
    const char *stanza, vcc_do_stanza_f *func)
316
{
317
        const struct vjsn_val *vv, *vv2, *vv3;
318
319 19346
        vv = vim->vj->value;
320 19346
        assert (vjsn_is_array(vv));
321 720766
        VTAILQ_FOREACH(vv2, &vv->children, list) {
322 701420
                assert (vjsn_is_array(vv2));
323 701420
                vv3 = VTAILQ_FIRST(&vv2->children);
324 701420
                assert (vjsn_is_string(vv3));
325 701420
                if (!strcmp(vv3->value, stanza))
326 11764
                        func(tl, vim, VTAILQ_NEXT(vv3, list));
327 701420
        }
328 19346
}
329
330
static void
331 9673
vcc_emit_setup(struct vcc *tl, const struct vmod_import *vim)
332
{
333
        struct inifin *ifp;
334 9673
        const struct token *mod = vim->t_mod;
335
336 9673
        ifp = New_IniFin(tl);
337
338 9673
        VSB_cat(ifp->ini, "\tif (VPI_Vmod_Init(ctx,\n");
339 9673
        VSB_printf(ifp->ini, "\t    &VGC_vmod_%.*s,\n", PF(mod));
340 9673
        VSB_printf(ifp->ini, "\t    %u,\n", tl->vmod_count++);
341 9673
        VSB_printf(ifp->ini, "\t    &%s,\n", vim->func_name);
342 9673
        VSB_printf(ifp->ini, "\t    sizeof(%s),\n", vim->func_name);
343 9673
        VSB_printf(ifp->ini, "\t    \"%.*s\",\n", PF(mod));
344 9673
        VSB_cat(ifp->ini, "\t    ");
345 9673
        VSB_quote(ifp->ini, vim->path, -1, VSB_QUOTE_CSTR);
346 9673
        VSB_cat(ifp->ini, ",\n");
347 9673
        AN(vim->file_id);
348 9673
        VSB_printf(ifp->ini, "\t    \"%s\",\n", vim->file_id);
349 9673
        if (vim->from_vext) {
350 17
                VSB_cat(ifp->ini, "\t    ");
351 17
                VSB_quote(ifp->ini, vim->path, -1, VSB_QUOTE_CSTR);
352 17
                VSB_cat(ifp->ini, "\n");
353 17
        } else {
354 19312
                VSB_printf(ifp->ini, "\t    \"./vmod_cache/_vmod_%.*s.%s\"\n",
355 9656
                    PF(mod), vim->file_id);
356
        }
357 9673
        VSB_cat(ifp->ini, "\t    ))\n");
358 9673
        VSB_cat(ifp->ini, "\t\treturn(1);");
359
360 9673
        VSB_cat(tl->symtab, ",\n    {\n");
361 9673
        VSB_cat(tl->symtab, "\t\"dir\": \"import\",\n");
362 9673
        VSB_cat(tl->symtab, "\t\"type\": \"$VMOD\",\n");
363 9673
        VSB_printf(tl->symtab, "\t\"name\": \"%.*s\",\n", PF(mod));
364 9673
        if (vim->from_vext)
365 17
                VSB_cat(tl->symtab, "\t\"vext\": true,\n");
366
        else
367 9656
                VSB_cat(tl->symtab, "\t\"vext\": false,\n");
368 9673
        VSB_printf(tl->symtab, "\t\"file\": \"%s\",\n", vim->path);
369 19346
        VSB_printf(tl->symtab, "\t\"dst\": \"./vmod_cache/_vmod_%.*s.%s\"\n",
370 9673
            PF(mod), vim->file_id);
371 9673
        VSB_cat(tl->symtab, "    }");
372
373
        /* XXX: zero the function pointer structure ?*/
374 19346
        VSB_printf(ifp->fin, "\t\tVRT_priv_fini(ctx, &vmod_priv_%.*s);",
375 9673
            PF(mod));
376 19346
        VSB_printf(ifp->final, "\t\tVPI_Vmod_Unload(ctx, &VGC_vmod_%.*s);",
377 9673
            PF(mod));
378
379 9673
        vcc_vj_foreach(tl, vim, "$EVENT", vcc_do_event);
380
381 9673
        Fh(tl, 0, "\n/* --- BEGIN VMOD %.*s --- */\n\n", PF(mod));
382 9673
        Fh(tl, 0, "static struct vmod *VGC_vmod_%.*s;\n", PF(mod));
383 9673
        Fh(tl, 0, "static struct vmod_priv vmod_priv_%.*s;\n", PF(mod));
384
385 9673
        vcc_vj_foreach(tl, vim, "$CPROTO", vcc_do_cproto);
386
387 9673
        Fh(tl, 0, "\n/* --- END VMOD %.*s --- */\n\n", PF(mod));
388 9673
}
389
390
static void
391 340
vcc_vim_destroy(struct vmod_import **vimp)
392
{
393
        struct vmod_import *vim;
394
395 340
        TAKE_OBJ_NOTNULL(vim, vimp, VMOD_IMPORT_MAGIC);
396 340
        if (vim->path)
397 323
                free(vim->path);
398 340
        if (vim->vj)
399 255
                vjsn_delete(&vim->vj);
400 340
        if (vim->json)
401 272
                VSB_destroy(&vim->json);
402 340
        FREE_OBJ(vim);
403 340
}
404
405
static int
406 9996
vcc_path_open(void *priv, const char *fn)
407
{
408
        struct vmod_import *vim;
409
410 9996
        CAST_OBJ_NOTNULL(vim, priv, VMOD_IMPORT_MAGIC);
411 9996
        AN(fn);
412
413 9996
        return (vcc_Extract_JSON(vim, fn));
414
}
415
416
void
417 10081
vcc_ParseImport(struct vcc *tl)
418
{
419
        char fn[1024];
420
        const char *p;
421
        struct token *mod, *tmod, *t1;
422
        struct symbol *msym, *vsym;
423 10081
        struct vmod_import *vim = NULL;
424
        const struct vmod_import *vimold;
425
426 10081
        t1 = tl->t;
427 10081
        SkipToken(tl, ID);              /* "import" */
428
429 10081
        ExpectErr(tl, ID);              /* "vmod_name" */
430 10081
        mod = tl->t;
431 10081
        tmod = vcc_PeekTokenFrom(tl, mod);
432 10081
        AN(tmod);
433 10081
        if (tmod->tok == ID && vcc_IdIs(tmod, "as")) {
434 85
                vcc_NextToken(tl);              /* "vmod_name" */
435 85
                vcc_NextToken(tl);              /* "as" */
436 85
                ExpectErr(tl, ID);              /* "vcl_name" */
437 85
        }
438 10081
        tmod = tl->t;
439
440 10081
        msym = VCC_SymbolGet(tl, SYM_MAIN, SYM_VMOD, SYMTAB_CREATE, XREF_NONE);
441 10081
        ERRCHK(tl);
442 10064
        AN(msym);
443
444 10064
        bprintf(fn, "libvmod_%.*s.so", PF(mod));
445 10064
        if (tl->t->tok == ID) {
446 85
                if (!vcc_IdIs(tl->t, "from")) {
447 17
                        VSB_cat(tl->sb, "Expected 'from path ...'\n");
448 17
                        vcc_ErrWhere(tl, tl->t);
449 17
                        return;
450
                }
451 68
                vcc_NextToken(tl);
452 68
                if (!tl->unsafe_path && strchr(tl->t->dec, '/')) {
453 17
                        VSB_cat(tl->sb,
454
                            "'import ... from path ...' is unsafe.\nAt:");
455 17
                        vcc_ErrToken(tl, tl->t);
456 17
                        vcc_ErrWhere(tl, tl->t);
457 17
                        return;
458
                }
459 51
                ExpectErr(tl, CSTR);
460 51
                p = strrchr(tl->t->dec, '/');
461 51
                if (p != NULL && p[1] == '\0')
462 17
                        bprintf(fn, "%slibvmod_%.*s.so", tl->t->dec, PF(mod));
463
                else
464 34
                        bprintf(fn, "%s", tl->t->dec);
465 51
                vcc_NextToken(tl);
466 51
        } else {
467 12546
                VTAILQ_FOREACH(vim, &imports, list) {
468 2584
                        if (!vcc_IdIs(mod, vim->name))
469 2516
                                continue;
470 68
                        if (!vim->unimported_vext)
471 51
                                continue;
472 17
                        fprintf(stderr, "IMPORT %s from VEXT\n", vim->name);
473 17
                        vim->unimported_vext = 0;
474 17
                        vim->t_mod = mod;
475 17
                        vim->sym = msym;
476 17
                        break;
477
                }
478
        }
479
480 10030
        SkipToken(tl, ';');
481
482 10030
        if (vim == NULL) {
483 10013
                ALLOC_OBJ(vim, VMOD_IMPORT_MAGIC);
484 10013
                AN(vim);
485 10013
                vim->t_mod = mod;
486 10013
                vim->sym = msym;
487
488 10013
                if (VFIL_searchpath(tl->vmod_path, vcc_path_open, vim, fn, &vim->path)) {
489 68
                        if (vim->err == NULL) {
490 34
                                VSB_printf(tl->sb,
491 17
                                    "Could not find VMOD %.*s\n", PF(mod));
492 17
                        } else {
493 102
                                VSB_printf(tl->sb,
494 51
                                    "Could not open VMOD %.*s\n", PF(mod));
495 102
                                VSB_printf(tl->sb, "\tFile name: %s\n",
496 51
                                    vim->path != NULL ? vim->path : fn);
497 51
                                VSB_printf(tl->sb, "\tError: %s\n", vim->err);
498
                        }
499 68
                        vcc_ErrWhere(tl, mod);
500 68
                        vcc_vim_destroy(&vim);
501 68
                        return;
502
                }
503
504 9945
                if (vcc_VmodLoad(tl, vim) < 0 || tl->err) {
505 170
                        vcc_ErrWhere(tl, vim->t_mod);
506 170
                        vcc_vim_destroy(&vim);
507 170
                        return;
508
                }
509 9775
        }
510
511 9792
        if (!vcc_IdIs(vim->t_mod, vim->name)) {
512 34
                vcc_ErrWhere(tl, vim->t_mod);
513 68
                VSB_printf(tl->sb, "Wrong file for VMOD %.*s\n",
514 34
                    PF(vim->t_mod));
515 34
                VSB_printf(tl->sb, "\tFile name: %s\n", vim->path);
516 34
                VSB_printf(tl->sb, "\tContains vmod \"%s\"\n", vim->name);
517 34
                vcc_vim_destroy(&vim);
518 34
                return;
519
        }
520
521 9758
        vimold = msym->import;
522 9758
        if (vimold != NULL) {
523 51
                CHECK_OBJ(vimold, VMOD_IMPORT_MAGIC);
524 51
                if (!strcmp(vimold->file_id, vim->file_id)) {
525
                        /* Identical import is OK */
526 34
                } else {
527 34
                        VSB_printf(tl->sb,
528
                            "Another module already imported as %.*s.\n",
529 17
                            PF(tmod));
530 17
                        vcc_ErrWhere2(tl, t1, tl->t);
531
                }
532 51
                vcc_vim_destroy(&vim);
533 51
                return;
534
        }
535 9707
        msym->def_b = t1;
536 9707
        msym->def_e = tl->t;
537
538 12138
        VTAILQ_FOREACH(vsym, &tl->sym_vmods, sideways) {
539 2448
                assert(vsym->kind == SYM_VMOD);
540 2448
                vimold = vsym->import;
541 2448
                CHECK_OBJ_NOTNULL(vimold, VMOD_IMPORT_MAGIC);
542 2448
                if (!strcmp(vimold->file_id, vim->file_id)) {
543
                        /* Already loaded under different name */
544 17
                        msym->eval_priv = vsym->eval_priv;
545 17
                        msym->import = vsym->import;
546 17
                        msym->vmod_name = vsym->vmod_name;
547 17
                        vcc_VmodSymbols(tl, msym);
548 17
                        AZ(tl->err);
549
                        // XXX: insert msym in sideways ?
550 17
                        vcc_vim_destroy(&vim);
551 17
                        return;
552
                }
553 2431
        }
554
555 9690
        VTAILQ_INSERT_TAIL(&tl->sym_vmods, msym, sideways);
556
557 9690
        msym->eval_priv = vim->vj;
558 9690
        msym->import = vim;
559 9690
        msym->vmod_name = TlDup(tl, vim->name);
560 9690
        vcc_VmodSymbols(tl, msym);
561 9690
        ERRCHK(tl);
562
563 9673
        vcc_emit_setup(tl, vim);
564 10081
}
565
566
void
567 17
vcc_ImportVext(struct vcc *tl, const char *filename)
568
{
569
        struct vmod_import *vim;
570
571 17
        ALLOC_OBJ(vim, VMOD_IMPORT_MAGIC);
572 17
        AN(vim);
573
574 17
        if (vcc_Extract_JSON(vim, filename)) {
575 0
                FREE_OBJ(vim);
576 0
                return;
577
        }
578 17
        fprintf(stderr, "FOUND VMOD in VEXT %s\n", filename);
579 17
        if (vcc_VmodLoad(tl, vim) < 0 || tl->err) {
580
                // vcc_ErrWhere(tl, vim->t_mod);
581 0
                vcc_vim_destroy(&vim);
582 0
                return;
583
        }
584 17
        vim->from_vext = 1;
585 17
        vim->unimported_vext = 1;
586 17
        vim->path = strdup(filename);
587 17
        vim->path += 1;
588 17
        AN(vim->path);
589 17
        fprintf(stderr, "GOOD VMOD %s in VEXT %s\n", vim->name, filename);
590 17
}