X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/6db8b72c861b99114bdcb9188abfe20bc77e67d2..a85c067ba6c6940512cf57ec213277a370d87e70:/src/src/lookups/json.c diff --git a/src/src/lookups/json.c b/src/src/lookups/json.c index 0b28b731e..b1e5fb742 100644 --- a/src/src/lookups/json.c +++ b/src/src/lookups/json.c @@ -2,8 +2,10 @@ * Exim - an Internet mail transport agent * *************************************************/ -/* Copyright (c) Jeremy Harris 2019 */ +/* Copyright (c) The Exim Maintainers 2021 - 2022 */ +/* Copyright (c) Jeremy Harris 2019 - 2020 */ /* See the file NOTICE for conditions of use and distribution. */ +/* SPDX-License-Identifier: GPL-2.0-only */ #include "../exim.h" #include "lf_functions.h" @@ -16,12 +18,14 @@ which is freed once by search_tidyup(). Make the free call a dummy. This burns some 300kB in handling a 37kB JSON file, for the benefit of a fast free. The alternative of staying with malloc is nearly as bad, eyeballing the activity there are 20% the number of free vs. alloc -calls (before the big bunch at the end). */ +calls (before the big bunch at the end). + +Assume that the file is trusted, so no tainting */ static void * json_malloc(size_t nbytes) { -void * p = store_get((int)nbytes); +void * p = store_get((int)nbytes, GET_UNTAINTED); /* debug_printf("%s %d: %p\n", __FUNCTION__, (int)nbytes, p); */ return p; } @@ -38,19 +42,14 @@ json_free(void * p) /* See local README for interface description */ static void * -json_open(uschar *filename, uschar **errmsg) +json_open(const uschar * filename, uschar ** errmsg) { FILE * f; json_set_alloc_funcs(json_malloc, json_free); if (!(f = Ufopen(filename, "rb"))) - { - int save_errno = errno; - *errmsg = string_open_failed(errno, "%s for json search", filename); - errno = save_errno; - return NULL; - } + *errmsg = string_open_failed("%s for json search", filename); return f; } @@ -61,7 +60,7 @@ return f; *************************************************/ static BOOL -json_check(void *handle, uschar *filename, int modemask, uid_t *owners, +json_check(void *handle, const uschar *filename, int modemask, uid_t *owners, gid_t *owngroups, uschar **errmsg) { return lf_check_file(fileno((FILE *)handle), filename, S_IFREG, modemask, @@ -77,8 +76,9 @@ return lf_check_file(fileno((FILE *)handle), filename, S_IFREG, modemask, /* See local README for interface description */ static int -json_find(void *handle, uschar *filename, const uschar *keystring, int length, - uschar **result, uschar **errmsg, uint *do_cache) +json_find(void * handle, const uschar * filename, const uschar * keystring, + int length, uschar ** result, uschar ** errmsg, uint * do_cache, + const uschar * opts) { FILE * f = handle; json_t * j, * j0; @@ -86,9 +86,6 @@ json_error_t jerr; uschar * key; int sep = 0; -length = length; /* Keep picky compilers happy */ -do_cache = do_cache; /* Keep picky compilers happy */ - rewind(f); if (!(j = json_loadf(f, 0, &jerr))) { @@ -108,7 +105,7 @@ for (int k = 1; (key = string_nextinlist(&keystring, &sep, NULL, 0)); k++) : json_object_get(j, CCS key) ) ) { - DEBUG(D_lookup) debug_printf("%s, for key %d: '%s'\n", + DEBUG(D_lookup) debug_printf_indent("%s, for key %d: '%s'\n", numeric ? US"bad index, or not json array" : US"no such key, or not json object", @@ -162,23 +159,23 @@ json_close(void *handle) #include "../version.h" -void -json_version_report(FILE *f) +gstring * +json_version_report(gstring * g) { -fprintf(f, "Library version: json: Jansonn version %s\n", JANSSON_VERSION); +return string_fmt_append(g, "Library version: json: Jansonn version %s\n", JANSSON_VERSION); } static lookup_info json_lookup_info = { - US"json", /* lookup name */ - lookup_absfile, /* uses absolute file name */ - json_open, /* open function */ - json_check, /* check function */ - json_find, /* find function */ - json_close, /* close function */ - NULL, /* no tidy function */ - NULL, /* no quoting function */ - json_version_report /* version reporting */ + .name = US"json", /* lookup name */ + .type = lookup_absfile, /* uses absolute file name */ + .open = json_open, /* open function */ + .check = json_check, /* check function */ + .find = json_find, /* find function */ + .close = json_close, /* close function */ + .tidy = NULL, /* no tidy function */ + .quote = NULL, /* no quoting function */ + .version_report = json_version_report /* version reporting */ };