794d860db8db72f097798f77876ea9d48fa28493
[openafs.git] / src / crypto / hcrypto / kernel / alloc.c
1 /*
2  * Copyright (c) 2010 Your File System Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR `AS IS'' AND ANY EXPRESS OR
14  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23  */
24
25 #include "config.h"
26
27 void *
28 _afscrypto_calloc(int num, size_t len)
29 {
30     void *ptr;
31
32     ptr = afs_osi_Alloc(num * len);
33
34     return ptr;
35 }
36
37 void *
38 _afscrypto_malloc(size_t len)
39 {
40     void *ptr;
41
42     ptr = afs_osi_Alloc(len);
43
44     return ptr;
45 }
46
47 void
48 _afscrypto_free(void *ptr)
49 {
50     if (ptr != NULL)
51         afs_osi_Free(ptr, 0);
52 }
53
54 char*
55 _afscrypto_strdup(const char *str) {
56     char *ptr;
57
58     ptr = malloc(strlen(str) + 1);
59     if (ptr == NULL)
60        return ptr;
61     memcpy(ptr, str, strlen(str) + 1);
62
63     return ptr;
64 }
65
66 /* This is a horrible, horrible bodge, but the crypto code uses realloc,
67  * so we need to handle it too.
68  *
69  * There are two different call sites for realloc. Firstly, it's used
70  * in the decrypt case to shrink the size of the allotted buffer. In
71  * this case, we can just ignore the realloc and return the original
72  * pointer.
73  *
74  * Secondly, it's used when computing derived keys. In this case, the
75  * first call will be with a NULL input, and the size of a single
76  * derived key. So, we just give back space for 20 keys, and pray.
77  */
78
79 void *
80 _afscrypto_realloc(void *ptr, size_t len) {
81    if (ptr == NULL)
82         return calloc(20, len);
83    return ptr;
84 }