1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
/* Copyright (C) 2015-2025 maClara, LLC <info@maclara-llc.com>
This file is part of the JWT C Library
SPDX-License-Identifier: MPL-2.0
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <jwt.h>
#include "jwt-private.h"
static jwt_malloc_t pfn_malloc;
static jwt_free_t pfn_free;
void *jwt_malloc(size_t size)
{
if (pfn_malloc)
return pfn_malloc(size);
return malloc(size);
}
int jwt_set_alloc(jwt_malloc_t pmalloc, jwt_free_t pfree)
{
/* Set allocator functions for LibJWT. */
pfn_malloc = pmalloc;
pfn_free = pfree;
/* Set same allocator functions for Jansson. */
json_set_alloc_funcs(jwt_malloc, __jwt_freemem);
return 0;
}
void jwt_get_alloc(jwt_malloc_t *pmalloc, jwt_free_t *pfree)
{
if (pmalloc)
*pmalloc = pfn_malloc;
if (pfree)
*pfree = pfn_free;
}
/* Should call the macros instead */
void __jwt_freemem(void *ptr)
{
if (pfn_free)
pfn_free(ptr);
else
free(ptr);
}
|