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 1758
vcc_Extract_JSON(struct vmod_import *vim, const char *filename)
81
{
82 1758
        const char *magic = "VMOD_JSON_SPEC\x02", *p;
83
        int c;
84
        FILE *f;
85
86 1758
        CHECK_OBJ_NOTNULL(vim, VMOD_IMPORT_MAGIC);
87 1758
        AN(filename);
88
89 1758
        f = fopen(filename, "rb");
90 1758
        if (f == NULL) {
91 3
                vim->err = strerror(errno);
92 3
                return (-1);
93
        }
94
95 1755
        p = magic;
96 1755
        vim->err = "No VMOD JSON found";
97 137304
        while (1) {
98 34151604
                c = getc(f);
99 34151604
                if (c == EOF) {
100 3
                        AZ(fclose(f));
101 3
                        vim->err = "No VMOD JSON found";
102 3
                        return (-1);
103
                }
104 34151601
                if (c != *p) {
105 34014300
                        p = magic;
106 34014300
                        continue;
107
                }
108 137301
                p++;
109 137301
                if (*p == '\0')
110 1752
                        break;
111
        }
112
113 1752
        vim->json = VSB_new_auto();
114 1752
        AN(vim->json);
115
116 32354685
        while (1) {
117 32354685
                c = getc(f);
118 32354685
                if (c == EOF) {
119 3
                        AZ(fclose(f));
120 3
                        vim->err = "Truncated VMOD JSON";
121 3
                        VSB_destroy(&vim->json);
122 3
                        return (-1);
123
                }
124 32354682
                if (c == '\x03')
125 1749
                        break;
126 32352933
                VSB_putc(vim->json, c);
127
        }
128 1749
        AZ(fclose(f));
129 1749
        AZ(VSB_finish(vim->json));
130 1749
        return (0);
131 1758
}
132
133
static const char *
134 1749
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 1749
        vim->vj = vjsn_parse(jsn, &err);
141 1749
        if (err != NULL)
142 3
                return (err);
143 1746
        AN(vim->vj);
144
145 1746
        vv = vim->vj->value;
146 1746
        if (!vjsn_is_array(vv))
147 3
                return ("Not array[0]");
148
149 1743
        vv2 = VTAILQ_FIRST(&vv->children);
150 1743
        AN(vv2);
151 1743
        if (!vjsn_is_array(vv2))
152 3
                return ("Not array[1]");
153 1740
        vv3 = VTAILQ_FIRST(&vv2->children);
154 1740
        AN(vv3);
155 1740
        if (!vjsn_is_string(vv3))
156 3
                return ("Not string[2]");
157 1737
        if (strcmp(vv3->value, "$VMOD"))
158 3
                return ("Not $VMOD[3]");
159
160 1734
        vv3 = VTAILQ_NEXT(vv3, list);
161 1734
        AN(vv3);
162 1734
        assert(vjsn_is_string(vv3));
163 1734
        vim->vmod_syntax = strtod(vv3->value, NULL);
164 1734
        assert (vim->vmod_syntax == 1.0);
165
166 1734
        vv3 = VTAILQ_NEXT(vv3, list);
167 1734
        AN(vv3);
168 1734
        assert(vjsn_is_string(vv3));
169 1734
        vim->name = vv3->value;
170
171 1734
        vv3 = VTAILQ_NEXT(vv3, list);
172 1734
        AN(vv3);
173 1734
        assert(vjsn_is_string(vv3));
174 1734
        vim->func_name = vv3->value;
175
176 1734
        vv3 = VTAILQ_NEXT(vv3, list);
177 1734
        AN(vv3);
178 1734
        assert(vjsn_is_string(vv3));
179 1734
        vim->file_id = vv3->value;
180
181 1734
        vv3 = VTAILQ_NEXT(vv3, list);
182 1734
        AN(vv3);
183 1734
        assert(vjsn_is_string(vv3));
184 1734
        vim->abi = vv3->value;
185
186 1734
        vv3 = VTAILQ_NEXT(vv3, list);
187 1734
        AN(vv3);
188 1734
        assert(vjsn_is_string(vv3));
189 1734
        vim->major = strtoul(vv3->value, &p, 10);
190 1734
        assert(p == NULL || *p == '\0' || *p == 'U');
191
192 1734
        vv3 = VTAILQ_NEXT(vv3, list);
193 1734
        AN(vv3);
194 1734
        assert(vjsn_is_string(vv3));
195 1734
        vim->minor = strtoul(vv3->value, &p, 10);
196 1734
        assert(p == NULL || *p == '\0' || *p == 'U');
197
198
199 1734
        if (vim->major == 0 && vim->minor == 0 &&
200 1335
            strcmp(vim->abi, VMOD_ABI_Version)) {
201 3
                VSB_printf(tl->sb, "Incompatible VMOD %.*s\n", PF(vim->t_mod));
202 3
                VSB_printf(tl->sb, "\tFile name: %s\n", vim->path);
203 6
                VSB_printf(tl->sb, "\tABI mismatch, expected <%s>, got <%s>\n",
204 3
                           VMOD_ABI_Version, vim->abi);
205 3
                return ("");
206
        }
207 2127
        if (vim->major != 0 &&
208 399
            (vim->major != VRT_MAJOR_VERSION ||
209 396
            vim->minor > VRT_MINOR_VERSION)) {
210 3
                VSB_printf(tl->sb, "Incompatible VMOD %.*s\n", PF(vim->t_mod));
211 3
                VSB_printf(tl->sb, "\tFile name: %s\n", vim->path);
212 6
                VSB_printf(tl->sb, "\tVMOD wants ABI version %u.%u\n",
213 3
                    vim->major, vim->minor);
214 3
                VSB_printf(tl->sb, "\tvarnishd provides ABI version %u.%u\n",
215
                    VRT_MAJOR_VERSION, VRT_MINOR_VERSION);
216 3
                return ("");
217
        }
218
219
220 63993
        VTAILQ_FOREACH(vv2, &vv->children, list) {
221 62268
                assert (vjsn_is_array(vv2));
222 62268
                vv3 = VTAILQ_FIRST(&vv2->children);
223 62268
                assert(vjsn_is_string(vv3));
224 62268
                assert(vv3->value[0] == '$');
225
#define STANZA(UU, ll, ss) \
226
    if (!strcmp(vv3->value, "$" #UU)) {vim->n_##ll++; continue;}
227 62268
                STANZA_TBL
228
#undef STANZA
229 3
                return ("Unknown metadata stanza.");
230
        }
231 1725
        if (vim->n_cproto != 1)
232 3
                return ("Bad cproto stanza(s)");
233 1722
        if (vim->n_vmod != 1)
234 3
                return ("Bad vmod stanza(s)");
235 1719
        return (NULL);
236 1749
}
237
238
/*
239
 * Load and check the metadata from the objectfile containing the vmod
240
 */
241
242
static int
243 1749
vcc_VmodLoad(struct vcc *tl, struct vmod_import *vim)
244
{
245
        static const char *err;
246
        struct vmod_import *vim2;
247
248 1749
        CHECK_OBJ_NOTNULL(vim, VMOD_IMPORT_MAGIC);
249
250 1749
        err = vcc_ParseJSON(tl, VSB_data(vim->json), vim);
251 1749
        if (err != NULL && *err != '\0') {
252 48
                VSB_printf(tl->sb,
253 24
                    "VMOD %.*s: bad metadata\n", PF(vim->t_mod));
254 24
                VSB_printf(tl->sb, "\t(%s)\n", err);
255 24
                VSB_printf(tl->sb, "\tFile name: %s\n", vim->path);
256 24
        }
257
258 1749
        if (err != NULL)
259 30
                return (-1);
260
261 2151
        VTAILQ_FOREACH(vim2, &imports, list) {
262 444
                if (strcmp(vim->name, vim2->name))
263 432
                        continue;
264 12
                if (!strcmp(vim->file_id, vim2->file_id)) {
265
                        // (Truly) duplicate imports are OK
266 9
                        return (0);
267
                }
268 6
                VSB_printf(tl->sb,
269
                    "Different version of VMOD %.*s already loaded\n",
270 3
                    PF(vim->t_mod));
271 3
                vcc_ErrWhere(tl, vim->t_mod);
272 3
                VSB_cat(tl->sb, "Previous import at:\n");
273 3
                vcc_ErrWhere(tl, vim2->t_mod);
274 3
                vcc_Warn(tl);
275 3
                break;
276
        }
277 1710
        VTAILQ_INSERT_TAIL(&imports, vim, list);
278
279 1710
        return (0);
280 1749
}
281
282
static void v_matchproto_(vcc_do_stanza_f)
283 366
vcc_do_event(struct vcc *tl, const struct vmod_import *vim,
284
    const struct vjsn_val *vv)
285
{
286
        struct inifin *ifp;
287
288 366
        ifp = New_IniFin(tl);
289 732
        VSB_printf(ifp->ini,
290
            "\tif (%s(ctx, &vmod_priv_%s, VCL_EVENT_LOAD))\n"
291
            "\t\treturn(1);",
292 366
            vv->value, vim->sym->vmod_name);
293 732
        VSB_printf(ifp->fin,
294
            "\t\t(void)%s(ctx, &vmod_priv_%s,\n"
295
            "\t\t\t    VCL_EVENT_DISCARD);",
296 366
            vv->value, vim->sym->vmod_name);
297 732
        VSB_printf(ifp->event, "%s(ctx, &vmod_priv_%s, ev)",
298 366
            vv->value, vim->sym->vmod_name);
299 366
}
300
301
static void v_matchproto_(vcc_do_stanza_f)
302 1698
vcc_do_cproto(struct vcc *tl, const struct vmod_import *vim,
303
    const struct vjsn_val *vv)
304
{
305 1698
        (void)vim;
306 1698
        do {
307 322272
                assert (vjsn_is_string(vv));
308 322272
                Fh(tl, 0, "%s\n", vv->value);
309 322272
                vv = VTAILQ_NEXT(vv, list);
310 322272
        } while(vv != NULL);
311 1698
}
312
313
static void
314 3396
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 3396
        vv = vim->vj->value;
320 3396
        assert (vjsn_is_array(vv));
321 125592
        VTAILQ_FOREACH(vv2, &vv->children, list) {
322 122196
                assert (vjsn_is_array(vv2));
323 122196
                vv3 = VTAILQ_FIRST(&vv2->children);
324 122196
                assert (vjsn_is_string(vv3));
325 122196
                if (!strcmp(vv3->value, stanza))
326 2064
                        func(tl, vim, VTAILQ_NEXT(vv3, list));
327 122196
        }
328 3396
}
329
330
static void
331 1698
vcc_emit_setup(struct vcc *tl, const struct vmod_import *vim)
332
{
333
        struct inifin *ifp;
334 1698
        const struct token *mod = vim->t_mod;
335
336 1698
        ifp = New_IniFin(tl);
337
338 1698
        VSB_cat(ifp->ini, "\tif (VPI_Vmod_Init(ctx,\n");
339 1698
        VSB_printf(ifp->ini, "\t    &VGC_vmod_%.*s,\n", PF(mod));
340 1698
        VSB_printf(ifp->ini, "\t    %u,\n", tl->vmod_count++);
341 1698
        VSB_printf(ifp->ini, "\t    &%s,\n", vim->func_name);
342 1698
        VSB_printf(ifp->ini, "\t    sizeof(%s),\n", vim->func_name);
343 1698
        VSB_printf(ifp->ini, "\t    \"%.*s\",\n", PF(mod));
344 1698
        VSB_cat(ifp->ini, "\t    ");
345 1698
        VSB_quote(ifp->ini, vim->path, -1, VSB_QUOTE_CSTR);
346 1698
        VSB_cat(ifp->ini, ",\n");
347 1698
        AN(vim->file_id);
348 1698
        VSB_printf(ifp->ini, "\t    \"%s\",\n", vim->file_id);
349 1698
        if (vim->from_vext) {
350 3
                VSB_cat(ifp->ini, "\t    ");
351 3
                VSB_quote(ifp->ini, vim->path, -1, VSB_QUOTE_CSTR);
352 3
                VSB_cat(ifp->ini, "\n");
353 3
        } else {
354 3390
                VSB_printf(ifp->ini, "\t    \"./vmod_cache/_vmod_%.*s.%s\"\n",
355 1695
                    PF(mod), vim->file_id);
356
        }
357 1698
        VSB_cat(ifp->ini, "\t    ))\n");
358 1698
        VSB_cat(ifp->ini, "\t\treturn(1);");
359
360 1698
        VSB_cat(tl->symtab, ",\n    {\n");
361 1698
        VSB_cat(tl->symtab, "\t\"dir\": \"import\",\n");
362 1698
        VSB_cat(tl->symtab, "\t\"type\": \"$VMOD\",\n");
363 1698
        VSB_printf(tl->symtab, "\t\"name\": \"%.*s\",\n", PF(mod));
364 1698
        if (vim->from_vext)
365 3
                VSB_cat(tl->symtab, "\t\"vext\": true,\n");
366
        else
367 1695
                VSB_cat(tl->symtab, "\t\"vext\": false,\n");
368 1698
        VSB_printf(tl->symtab, "\t\"file\": \"%s\",\n", vim->path);
369 3396
        VSB_printf(tl->symtab, "\t\"dst\": \"./vmod_cache/_vmod_%.*s.%s\"\n",
370 1698
            PF(mod), vim->file_id);
371 1698
        VSB_cat(tl->symtab, "    }");
372
373
        /* XXX: zero the function pointer structure ?*/
374 3396
        VSB_printf(ifp->fin, "\t\tVRT_priv_fini(ctx, &vmod_priv_%.*s);",
375 1698
            PF(mod));
376 3396
        VSB_printf(ifp->final, "\t\tVPI_Vmod_Unload(ctx, &VGC_vmod_%.*s);",
377 1698
            PF(mod));
378
379 1698
        vcc_vj_foreach(tl, vim, "$EVENT", vcc_do_event);
380
381 1698
        Fh(tl, 0, "\n/* --- BEGIN VMOD %.*s --- */\n\n", PF(mod));
382 1698
        Fh(tl, 0, "static struct vmod *VGC_vmod_%.*s;\n", PF(mod));
383 1698
        Fh(tl, 0, "static struct vmod_priv vmod_priv_%.*s;\n", PF(mod));
384
385 1698
        vcc_vj_foreach(tl, vim, "$CPROTO", vcc_do_cproto);
386
387 1698
        Fh(tl, 0, "\n/* --- END VMOD %.*s --- */\n\n", PF(mod));
388 1698
}
389
390
static void
391 60
vcc_vim_destroy(struct vmod_import **vimp)
392
{
393
        struct vmod_import *vim;
394
395 60
        TAKE_OBJ_NOTNULL(vim, vimp, VMOD_IMPORT_MAGIC);
396 60
        if (vim->path)
397 57
                free(vim->path);
398 60
        if (vim->vj)
399 45
                vjsn_delete(&vim->vj);
400 60
        if (vim->json)
401 48
                VSB_destroy(&vim->json);
402 60
        FREE_OBJ(vim);
403 60
}
404
405
static int
406 1755
vcc_path_open(void *priv, const char *fn)
407
{
408
        struct vmod_import *vim;
409
410 1755
        CAST_OBJ_NOTNULL(vim, priv, VMOD_IMPORT_MAGIC);
411 1755
        AN(fn);
412
413 1755
        return (vcc_Extract_JSON(vim, fn));
414
}
415
416
void
417 1770
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 1770
        struct vmod_import *vim = NULL;
424
        const struct vmod_import *vimold;
425
426 1770
        t1 = tl->t;
427 1770
        SkipToken(tl, ID);              /* "import" */
428
429 1770
        ExpectErr(tl, ID);              /* "vmod_name" */
430 1770
        mod = tl->t;
431 1770
        tmod = vcc_PeekTokenFrom(tl, mod);
432 1770
        AN(tmod);
433 1770
        if (tmod->tok == ID && vcc_IdIs(tmod, "as")) {
434 15
                vcc_NextToken(tl);              /* "vmod_name" */
435 15
                vcc_NextToken(tl);              /* "as" */
436 15
                ExpectErr(tl, ID);              /* "vcl_name" */
437 15
        }
438 1770
        tmod = tl->t;
439
440 1770
        msym = VCC_SymbolGet(tl, SYM_MAIN, SYM_VMOD, SYMTAB_CREATE, XREF_NONE);
441 1770
        ERRCHK(tl);
442 1767
        AN(msym);
443
444 1767
        bprintf(fn, "libvmod_%.*s.so", PF(mod));
445 1767
        if (tl->t->tok == ID) {
446 15
                if (!vcc_IdIs(tl->t, "from")) {
447 3
                        VSB_cat(tl->sb, "Expected 'from path ...'\n");
448 3
                        vcc_ErrWhere(tl, tl->t);
449 3
                        return;
450
                }
451 12
                vcc_NextToken(tl);
452 12
                if (!tl->unsafe_path && strchr(tl->t->dec, '/')) {
453 3
                        VSB_cat(tl->sb,
454
                            "'import ... from path ...' is unsafe.\nAt:");
455 3
                        vcc_ErrToken(tl, tl->t);
456 3
                        vcc_ErrWhere(tl, tl->t);
457 3
                        return;
458
                }
459 9
                ExpectErr(tl, CSTR);
460 9
                p = strrchr(tl->t->dec, '/');
461 9
                if (p != NULL && p[1] == '\0')
462 3
                        bprintf(fn, "%slibvmod_%.*s.so", tl->t->dec, PF(mod));
463
                else
464 6
                        bprintf(fn, "%s", tl->t->dec);
465 9
                vcc_NextToken(tl);
466 9
        } else {
467 2202
                VTAILQ_FOREACH(vim, &imports, list) {
468 453
                        if (!vcc_IdIs(mod, vim->name))
469 441
                                continue;
470 12
                        if (!vim->unimported_vext)
471 9
                                continue;
472 3
                        fprintf(stderr, "IMPORT %s from VEXT\n", vim->name);
473 3
                        vim->unimported_vext = 0;
474 3
                        vim->t_mod = mod;
475 3
                        vim->sym = msym;
476 3
                        break;
477
                }
478
        }
479
480 1761
        SkipToken(tl, ';');
481
482 1761
        if (vim == NULL) {
483 1758
                ALLOC_OBJ(vim, VMOD_IMPORT_MAGIC);
484 1758
                AN(vim);
485 1758
                vim->t_mod = mod;
486 1758
                vim->sym = msym;
487
488 1758
                if (VFIL_searchpath(tl->vmod_path, vcc_path_open, vim, fn, &vim->path)) {
489 12
                        if (vim->err == NULL) {
490 6
                                VSB_printf(tl->sb,
491 3
                                    "Could not find VMOD %.*s\n", PF(mod));
492 3
                        } else {
493 18
                                VSB_printf(tl->sb,
494 9
                                    "Could not open VMOD %.*s\n", PF(mod));
495 18
                                VSB_printf(tl->sb, "\tFile name: %s\n",
496 9
                                    vim->path != NULL ? vim->path : fn);
497 9
                                VSB_printf(tl->sb, "\tError: %s\n", vim->err);
498
                        }
499 12
                        vcc_ErrWhere(tl, mod);
500 12
                        vcc_vim_destroy(&vim);
501 12
                        return;
502
                }
503
504 1746
                if (vcc_VmodLoad(tl, vim) < 0 || tl->err) {
505 30
                        vcc_ErrWhere(tl, vim->t_mod);
506 30
                        vcc_vim_destroy(&vim);
507 30
                        return;
508
                }
509 1716
        }
510
511 1719
        if (!vcc_IdIs(vim->t_mod, vim->name)) {
512 6
                vcc_ErrWhere(tl, vim->t_mod);
513 12
                VSB_printf(tl->sb, "Wrong file for VMOD %.*s\n",
514 6
                    PF(vim->t_mod));
515 6
                VSB_printf(tl->sb, "\tFile name: %s\n", vim->path);
516 6
                VSB_printf(tl->sb, "\tContains vmod \"%s\"\n", vim->name);
517 6
                vcc_vim_destroy(&vim);
518 6
                return;
519
        }
520
521 1713
        vimold = msym->import;
522 1713
        if (vimold != NULL) {
523 9
                CHECK_OBJ(vimold, VMOD_IMPORT_MAGIC);
524 9
                if (!strcmp(vimold->file_id, vim->file_id)) {
525
                        /* Identical import is OK */
526 6
                } else {
527 6
                        VSB_printf(tl->sb,
528
                            "Another module already imported as %.*s.\n",
529 3
                            PF(tmod));
530 3
                        vcc_ErrWhere2(tl, t1, tl->t);
531
                }
532 9
                vcc_vim_destroy(&vim);
533 9
                return;
534
        }
535 1704
        msym->def_b = t1;
536 1704
        msym->def_e = tl->t;
537
538 2130
        VTAILQ_FOREACH(vsym, &tl->sym_vmods, sideways) {
539 429
                assert(vsym->kind == SYM_VMOD);
540 429
                vimold = vsym->import;
541 429
                CHECK_OBJ_NOTNULL(vimold, VMOD_IMPORT_MAGIC);
542 429
                if (!strcmp(vimold->file_id, vim->file_id)) {
543
                        /* Already loaded under different name */
544 3
                        msym->eval_priv = vsym->eval_priv;
545 3
                        msym->import = vsym->import;
546 3
                        msym->vmod_name = vsym->vmod_name;
547 3
                        vcc_VmodSymbols(tl, msym);
548 3
                        AZ(tl->err);
549
                        // XXX: insert msym in sideways ?
550 3
                        vcc_vim_destroy(&vim);
551 3
                        return;
552
                }
553 426
        }
554
555 1701
        VTAILQ_INSERT_TAIL(&tl->sym_vmods, msym, sideways);
556
557 1701
        msym->eval_priv = vim->vj;
558 1701
        msym->import = vim;
559 1701
        msym->vmod_name = TlDup(tl, vim->name);
560 1701
        vcc_VmodSymbols(tl, msym);
561 1701
        ERRCHK(tl);
562
563 1698
        vcc_emit_setup(tl, vim);
564 1770
}
565
566
void
567 3
vcc_ImportVext(struct vcc *tl, const char *filename)
568
{
569
        struct vmod_import *vim;
570
571 3
        ALLOC_OBJ(vim, VMOD_IMPORT_MAGIC);
572 3
        AN(vim);
573
574 3
        if (vcc_Extract_JSON(vim, filename)) {
575 0
                FREE_OBJ(vim);
576 0
                return;
577
        }
578 3
        fprintf(stderr, "FOUND VMOD in VEXT %s\n", filename);
579 3
        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 3
        vim->from_vext = 1;
585 3
        vim->unimported_vext = 1;
586 3
        vim->path = strdup(filename);
587 3
        vim->path += 1;
588 3
        AN(vim->path);
589 3
        fprintf(stderr, "GOOD VMOD %s in VEXT %s\n", vim->name, filename);
590 3
}