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