From 67122f04e8b3f4bd6ced95a34d94509479d62e9e Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Fri, 10 May 2024 23:26:01 +0200 Subject: Accept an element size argument to allocators --- lib/alloc/alloc_arena.c | 5 +++-- lib/alloc/alloc_heap.c | 15 ++++++++++----- lib/unicode/string/u8casefold.c | 4 ++-- lib/unicode/string/u8lower.c | 4 ++-- lib/unicode/string/u8title.c | 4 ++-- lib/unicode/string/u8upper.c | 4 ++-- 6 files changed, 21 insertions(+), 15 deletions(-) (limited to 'lib') diff --git a/lib/alloc/alloc_arena.c b/lib/alloc/alloc_arena.c index 52d0df9..8d2aa11 100644 --- a/lib/alloc/alloc_arena.c +++ b/lib/alloc/alloc_arena.c @@ -5,13 +5,14 @@ #include "macros.h" void * -alloc_arena(void *raw_ctx, void *ptr, size_t old, size_t new, size_t align) +alloc_arena(void *raw_ctx, void *ptr, size_t old, size_t new, size_t elemsz, + size_t align) { struct arena_ctx *ctx = raw_ctx; ASSUME(ctx != nullptr); ASSUME(ctx->a != nullptr); - void *p = arena_realloc(ctx->a, ptr, old, new, 1, align); + void *p = arena_realloc(ctx->a, ptr, old, new, elemsz, align); if (new == 0 || p != nullptr) return p; diff --git a/lib/alloc/alloc_heap.c b/lib/alloc/alloc_heap.c index 46fbdc9..fccfcfc 100644 --- a/lib/alloc/alloc_heap.c +++ b/lib/alloc/alloc_heap.c @@ -1,21 +1,26 @@ -#include +#include #include +#include +#include #include #include "alloc.h" #include "errors.h" void * -alloc_heap(void *raw_ctx, void *ptr, size_t, size_t new, size_t) +alloc_heap(void *raw_ctx, void *ptr, size_t, size_t new, size_t elemsz, size_t) { if (new == 0) { free(ptr); return nullptr; } - void *p = realloc(ptr, new); - if (p != nullptr) - return p; + if (!ckd_mul(&new, new, elemsz)) { + void *p = realloc(ptr, new); + if (p != nullptr) + return p; + } else + errno = EOVERFLOW; struct heap_ctx *ctx = raw_ctx; if (ctx == nullptr || ctx->jmp == nullptr) diff --git a/lib/unicode/string/u8casefold.c b/lib/unicode/string/u8casefold.c index b4afe50..c7694a9 100644 --- a/lib/unicode/string/u8casefold.c +++ b/lib/unicode/string/u8casefold.c @@ -19,7 +19,7 @@ u8casefold(size_t *dstn, struct u8view sv, enum caseflags flags, alloc_fn alloc, return nullptr; } - char8_t *dst = alloc(alloc_ctx, nullptr, 0, bufsz, alignof(char8_t)); + char8_t *dst = alloc(alloc_ctx, nullptr, 0, bufsz, 1, alignof(char8_t)); rune ch; size_t n = 0; @@ -30,5 +30,5 @@ u8casefold(size_t *dstn, struct u8view sv, enum caseflags flags, alloc_fn alloc, } *dstn = n; - return alloc(alloc_ctx, dst, bufsz, n, alignof(char8_t)); + return alloc(alloc_ctx, dst, bufsz, n, 1, alignof(char8_t)); } diff --git a/lib/unicode/string/u8lower.c b/lib/unicode/string/u8lower.c index 45309b6..cd6a79f 100644 --- a/lib/unicode/string/u8lower.c +++ b/lib/unicode/string/u8lower.c @@ -46,7 +46,7 @@ u8lower(size_t *dstn, struct u8view sv, enum caseflags flags, alloc_fn alloc, return nullptr; } - char8_t *dst = alloc(alloc_ctx, nullptr, 0, bufsz, alignof(char8_t)); + char8_t *dst = alloc(alloc_ctx, nullptr, 0, bufsz, 1, alignof(char8_t)); while (u8next(&ch, &sv)) { rune next = 0; @@ -103,5 +103,5 @@ u8lower(size_t *dstn, struct u8view sv, enum caseflags flags, alloc_fn alloc, } *dstn = n; - return alloc(alloc_ctx, dst, bufsz, n, alignof(char8_t)); + return alloc(alloc_ctx, dst, bufsz, n, 1, alignof(char8_t)); } diff --git a/lib/unicode/string/u8title.c b/lib/unicode/string/u8title.c index 5710920..53855b6 100644 --- a/lib/unicode/string/u8title.c +++ b/lib/unicode/string/u8title.c @@ -52,7 +52,7 @@ u8title(size_t *dstn, struct u8view sv, enum caseflags flags, alloc_fn alloc, return nullptr; } - char8_t *dst = alloc(alloc_ctx, nullptr, 0, bufsz, alignof(char8_t)); + char8_t *dst = alloc(alloc_ctx, nullptr, 0, bufsz, 1, alignof(char8_t)); while (u8next(&ch, &sv)) { if (sv.p > word.p + word.len) { @@ -134,5 +134,5 @@ u8title(size_t *dstn, struct u8view sv, enum caseflags flags, alloc_fn alloc, } *dstn = n; - return alloc(alloc_ctx, dst, bufsz, n, alignof(char8_t)); + return alloc(alloc_ctx, dst, bufsz, n, 1, alignof(char8_t)); } diff --git a/lib/unicode/string/u8upper.c b/lib/unicode/string/u8upper.c index 91ae679..4c47613 100644 --- a/lib/unicode/string/u8upper.c +++ b/lib/unicode/string/u8upper.c @@ -25,7 +25,7 @@ u8upper(size_t *dstn, struct u8view sv, enum caseflags flags, alloc_fn alloc, return nullptr; } - char8_t *dst = alloc(alloc_ctx, nullptr, 0, bufsz, alignof(char8_t)); + char8_t *dst = alloc(alloc_ctx, nullptr, 0, bufsz, 1, alignof(char8_t)); rune ch; size_t n = 0; @@ -43,5 +43,5 @@ u8upper(size_t *dstn, struct u8view sv, enum caseflags flags, alloc_fn alloc, } *dstn = n; - return alloc(alloc_ctx, dst, bufsz, n, alignof(char8_t)); + return alloc(alloc_ctx, dst, bufsz, n, 1, alignof(char8_t)); } -- cgit v1.2.3