2017-07-22 18:03:17 +00:00
|
|
|
/**********************************************************************
|
|
|
|
* Copyright (c) 2017 Andrew Poelstra *
|
|
|
|
* Distributed under the MIT software license, see the accompanying *
|
|
|
|
* file COPYING or http://www.opensource.org/licenses/mit-license.php.*
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
#ifndef _SECP256K1_SCRATCH_IMPL_H_
|
|
|
|
#define _SECP256K1_SCRATCH_IMPL_H_
|
|
|
|
|
2018-10-18 19:09:51 +02:00
|
|
|
#include "util.h"
|
2017-07-22 18:03:17 +00:00
|
|
|
#include "scratch.h"
|
|
|
|
|
2018-03-20 13:21:33 +00:00
|
|
|
static secp256k1_scratch* secp256k1_scratch_create(const secp256k1_callback* error_callback, size_t max_size) {
|
2017-07-22 18:03:17 +00:00
|
|
|
secp256k1_scratch* ret = (secp256k1_scratch*)checked_malloc(error_callback, sizeof(*ret));
|
|
|
|
if (ret != NULL) {
|
2018-03-20 13:21:33 +00:00
|
|
|
memset(ret, 0, sizeof(*ret));
|
2019-03-13 22:19:41 +00:00
|
|
|
ret->data = (secp256k1_scratch*)checked_malloc(error_callback, max_size);
|
2017-07-22 18:03:17 +00:00
|
|
|
ret->max_size = max_size;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void secp256k1_scratch_destroy(secp256k1_scratch* scratch) {
|
|
|
|
if (scratch != NULL) {
|
2018-03-20 13:21:33 +00:00
|
|
|
VERIFY_CHECK(scratch->frame == 0);
|
2019-03-13 22:19:41 +00:00
|
|
|
free(scratch->data);
|
2017-07-22 18:03:17 +00:00
|
|
|
free(scratch);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static size_t secp256k1_scratch_max_allocation(const secp256k1_scratch* scratch, size_t objects) {
|
2018-03-20 13:21:33 +00:00
|
|
|
size_t i = 0;
|
|
|
|
size_t allocated = 0;
|
|
|
|
for (i = 0; i < scratch->frame; i++) {
|
|
|
|
allocated += scratch->frame_size[i];
|
|
|
|
}
|
|
|
|
if (scratch->max_size - allocated <= objects * ALIGNMENT) {
|
2017-07-22 18:03:17 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2018-03-20 13:21:33 +00:00
|
|
|
return scratch->max_size - allocated - objects * ALIGNMENT;
|
2017-07-22 18:03:17 +00:00
|
|
|
}
|
|
|
|
|
2018-03-20 13:21:33 +00:00
|
|
|
static int secp256k1_scratch_allocate_frame(secp256k1_scratch* scratch, size_t n, size_t objects) {
|
|
|
|
VERIFY_CHECK(scratch->frame < SECP256K1_SCRATCH_MAX_FRAMES);
|
|
|
|
|
|
|
|
if (n <= secp256k1_scratch_max_allocation(scratch, objects)) {
|
|
|
|
n += objects * ALIGNMENT;
|
2019-03-13 22:19:41 +00:00
|
|
|
scratch->current_frame = scratch->data;
|
|
|
|
scratch->data = (void *) ((char *) scratch->data + n);
|
2018-03-20 13:21:33 +00:00
|
|
|
scratch->frame_size[scratch->frame] = n;
|
|
|
|
scratch->offset[scratch->frame] = 0;
|
|
|
|
scratch->frame++;
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
return 0;
|
2017-07-22 18:03:17 +00:00
|
|
|
}
|
2018-03-20 13:21:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void secp256k1_scratch_deallocate_frame(secp256k1_scratch* scratch) {
|
|
|
|
VERIFY_CHECK(scratch->frame > 0);
|
2019-03-13 22:19:41 +00:00
|
|
|
scratch->frame--;
|
|
|
|
scratch->data = (void *) ((char *) scratch->data - scratch->frame_size[scratch->frame]);
|
2017-07-22 18:03:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void *secp256k1_scratch_alloc(secp256k1_scratch* scratch, size_t size) {
|
|
|
|
void *ret;
|
2018-03-20 13:21:33 +00:00
|
|
|
size_t frame = scratch->frame - 1;
|
2018-10-18 19:09:51 +02:00
|
|
|
size = ROUND_TO_ALIGN(size);
|
2018-03-20 13:21:33 +00:00
|
|
|
|
|
|
|
if (scratch->frame == 0 || size + scratch->offset[frame] > scratch->frame_size[frame]) {
|
2017-07-22 18:03:17 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2019-03-13 22:19:41 +00:00
|
|
|
ret = (void *) ((char *) scratch->current_frame + scratch->offset[frame]);
|
2017-07-22 18:03:17 +00:00
|
|
|
memset(ret, 0, size);
|
2018-03-20 13:21:33 +00:00
|
|
|
scratch->offset[frame] += size;
|
2017-07-22 18:03:17 +00:00
|
|
|
|
2018-03-20 13:21:33 +00:00
|
|
|
return ret;
|
2017-07-22 18:03:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|