]> Git Repo - secp256k1.git/blob - src/scratch_impl.h
Clear field elements when writing infinity
[secp256k1.git] / src / scratch_impl.h
1 /**********************************************************************
2  * Copyright (c) 2017 Andrew Poelstra                                 *
3  * Distributed under the MIT software license, see the accompanying   *
4  * file COPYING or http://www.opensource.org/licenses/mit-license.php.*
5  **********************************************************************/
6
7 #ifndef _SECP256K1_SCRATCH_IMPL_H_
8 #define _SECP256K1_SCRATCH_IMPL_H_
9
10 #include "util.h"
11 #include "scratch.h"
12
13 static secp256k1_scratch* secp256k1_scratch_create(const secp256k1_callback* error_callback, size_t size) {
14     const size_t base_alloc = ((sizeof(secp256k1_scratch) + ALIGNMENT - 1) / ALIGNMENT) * ALIGNMENT;
15     void *alloc = checked_malloc(error_callback, base_alloc + size);
16     secp256k1_scratch* ret = (secp256k1_scratch *)alloc;
17     if (ret != NULL) {
18         memset(ret, 0, sizeof(*ret));
19         memcpy(ret->magic, "scratch", 8);
20         ret->data = (void *) ((char *) alloc + base_alloc);
21         ret->max_size = size;
22     }
23     return ret;
24 }
25
26 static void secp256k1_scratch_destroy(const secp256k1_callback* error_callback, secp256k1_scratch* scratch) {
27     if (scratch != NULL) {
28         VERIFY_CHECK(scratch->alloc_size == 0); /* all checkpoints should be applied */
29         if (memcmp(scratch->magic, "scratch", 8) != 0) {
30             secp256k1_callback_call(error_callback, "invalid scratch space");
31             return;
32         }
33         memset(scratch->magic, 0, sizeof(scratch->magic));
34         free(scratch);
35     }
36 }
37
38 static size_t secp256k1_scratch_checkpoint(const secp256k1_callback* error_callback, const secp256k1_scratch* scratch) {
39     if (memcmp(scratch->magic, "scratch", 8) != 0) {
40         secp256k1_callback_call(error_callback, "invalid scratch space");
41         return 0;
42     }
43     return scratch->alloc_size;
44 }
45
46 static void secp256k1_scratch_apply_checkpoint(const secp256k1_callback* error_callback, secp256k1_scratch* scratch, size_t checkpoint) {
47     if (memcmp(scratch->magic, "scratch", 8) != 0) {
48         secp256k1_callback_call(error_callback, "invalid scratch space");
49         return;
50     }
51     if (checkpoint > scratch->alloc_size) {
52         secp256k1_callback_call(error_callback, "invalid checkpoint");
53         return;
54     }
55     scratch->alloc_size = checkpoint;
56 }
57
58 static size_t secp256k1_scratch_max_allocation(const secp256k1_callback* error_callback, const secp256k1_scratch* scratch, size_t objects) {
59     if (memcmp(scratch->magic, "scratch", 8) != 0) {
60         secp256k1_callback_call(error_callback, "invalid scratch space");
61         return 0;
62     }
63     if (scratch->max_size - scratch->alloc_size <= objects * (ALIGNMENT - 1)) {
64         return 0;
65     }
66     return scratch->max_size - scratch->alloc_size - objects * (ALIGNMENT - 1);
67 }
68
69 static void *secp256k1_scratch_alloc(const secp256k1_callback* error_callback, secp256k1_scratch* scratch, size_t size) {
70     void *ret;
71     size = ROUND_TO_ALIGN(size);
72
73     if (memcmp(scratch->magic, "scratch", 8) != 0) {
74         secp256k1_callback_call(error_callback, "invalid scratch space");
75         return NULL;
76     }
77
78     if (size > scratch->max_size - scratch->alloc_size) {
79         return NULL;
80     }
81     ret = (void *) ((char *) scratch->data + scratch->alloc_size);
82     memset(ret, 0, size);
83     scratch->alloc_size += size;
84
85     return ret;
86 }
87
88 #endif
This page took 0.027824 seconds and 4 git commands to generate.