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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
|
/*
* Copyright (C) 1998,1999,2000 Nikos Mavroyanopoulos
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Library General Public License as published
* by the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
/* $Id: mcrypt.c,v 1.19 2002/07/06 10:18:18 nmav Exp $ */
/* Changed by Steve Underwood 1999/12/10 to allow an arbitrary number of
* streams of encryption. Currently the resulting code is probably not
* thread safe, but as far as I could tell the previous code wasn't
* either. This version has brute force locking in a lot of places, but
* it has not been tested in a multi-threaded manner.
* The key locking issue is that the table of encryption streams could
* be moved when it is extended. Any address pre-calculated, or in
* calculation at the time of the reallocation would be screwed.
* This won't happen often, but requires lots of locks - PITA!
*/
/* Changed again at 1999/12/15 to correct the thread safeness. Now it
* seems to be thread safe. Brute force locking was removed and
* locks per thread were introduced.
* --nikos
*/
/* The above comments are too old! */
#ifndef LIBDEFS_H
#define LIBDEFS_H
#include <libdefs.h>
#endif
#include <bzero.h>
#include <xmemory.h>
#include <mcrypt_internal.h>
#if 0
static int preloaded_symbols = 0;
#endif
static int internal_end_mcrypt(MCRYPT td);
static int internal_init_mcrypt(MCRYPT td, const void *key, int lenofkey, const void *IV)
{
int *sizes = NULL;
int num_of_sizes, i, ok = 0;
int key_size = mcrypt_enc_get_key_size(td);
if (lenofkey > key_size || lenofkey==0) {
return MCRYPT_KEY_LEN_ERROR; /* error */
}
sizes = mcrypt_enc_get_supported_key_sizes(td, &num_of_sizes);
if (sizes != NULL) {
for (i = 0; i < num_of_sizes; i++) {
if (lenofkey == sizes[i]) {
ok = 1;
break;
}
}
} else { /* sizes==NULL */
if (num_of_sizes == 0
&& lenofkey <= mcrypt_enc_get_key_size(td))
ok = 1;
}
if (ok == 0) { /* not supported key size */
key_size = mcrypt_enc_get_key_size(td);
if (sizes != NULL) {
for (i = 0; i < num_of_sizes; i++) {
if (lenofkey <= sizes[i]) {
key_size = sizes[i];
break;
}
}
} else { /* well every key size is supported! */
key_size = lenofkey;
}
} else {
key_size = lenofkey;
}
free(sizes);
td->keyword_given = mxcalloc(1, mcrypt_enc_get_key_size(td));
if (td->keyword_given==NULL) return MCRYPT_MEMORY_ALLOCATION_ERROR;
memmove(td->keyword_given, key, lenofkey);
i = mcrypt_get_size(td);
td->akey = mxcalloc(1, i);
if (td->akey==NULL) {
free(td->keyword_given);
return MCRYPT_MEMORY_ALLOCATION_ERROR;
}
i = mcrypt_mode_get_size(td);
if (i > 0) {
td->abuf = mxcalloc(1, i);
if (td->abuf==NULL) {
free(td->keyword_given);
free(td->akey);
return MCRYPT_MEMORY_ALLOCATION_ERROR;
}
}
ok = init_mcrypt(td, td->abuf, key, key_size, IV);
if (ok!=0) {
free(td->keyword_given);
free(td->akey);
free(td->abuf);
return MCRYPT_UNKNOWN_ERROR; /* algorithm error */
}
ok = mcrypt_set_key(td,
(void *) td->akey,
(void *) td->keyword_given,
key_size, IV, IV!=NULL ? mcrypt_enc_get_iv_size(td) : 0);
if (ok!=0) {
internal_end_mcrypt(td);
return MCRYPT_UNKNOWN_ERROR; /* algorithm error */
}
return 0;
}
static int internal_end_mcrypt(MCRYPT td)
{
mxfree(td->keyword_given, mcrypt_enc_get_key_size(td));
td->keyword_given = NULL;
mxfree(td->akey, mcrypt_get_size(td));
td->akey = NULL;
end_mcrypt(td, td->abuf);
if (td->abuf!=NULL) mxfree(td->abuf, mcrypt_mode_get_size(td));
td->abuf = NULL;
return 0;
}
/* Generic - High level functions */
WIN32DLL_DEFINE
int mcrypt_generic_init(const MCRYPT td, const void *key, int lenofkey, const void *IV)
{
return internal_init_mcrypt(td, key, lenofkey, IV);
}
WIN32DLL_DEFINE
int mcrypt_generic(MCRYPT td, void *plaintext, int len)
{
int x;
x = mcrypt(td, td->abuf, plaintext, len);
return x;
}
WIN32DLL_DEFINE
int mdecrypt_generic(MCRYPT td, void *ciphertext, int len)
{
int x;
x = mdecrypt(td, td->abuf, ciphertext, len);
return x;
}
WIN32DLL_DEFINE
int mcrypt_generic_end( MCRYPT td)
{
if (td==NULL) return MCRYPT_UNKNOWN_ERROR;
if (td->keyword_given!=NULL)
internal_end_mcrypt(td);
mcrypt_module_close(td);
return 0;
}
WIN32DLL_DEFINE
int mcrypt_generic_deinit( MCRYPT td)
{
if (td==NULL || td->keyword_given==NULL) return MCRYPT_UNKNOWN_ERROR;
internal_end_mcrypt(td);
return 0;
}
WIN32DLL_DEFINE
void mcrypt_perror(int err)
{
switch (err) {
case MCRYPT_UNKNOWN_ERROR:
fprintf(stderr, "Unknown error.\n");
break;
case MCRYPT_ALGORITHM_MODE_INCOMPATIBILITY:
fprintf(stderr,
"Algorithm incompatible with this mode.\n");
break;
case MCRYPT_KEY_LEN_ERROR:
fprintf(stderr, "Key length is not legal.\n");
break;
case MCRYPT_MEMORY_ALLOCATION_ERROR:
fprintf(stderr, "Memory allocation failed.\n");
break;
case MCRYPT_UNKNOWN_MODE:
fprintf(stderr, "Unknown mode.\n");
break;
case MCRYPT_UNKNOWN_ALGORITHM:
fprintf(stderr, "Unknown algorithm.\n");
break;
}
return;
}
WIN32DLL_DEFINE
const char* mcrypt_strerror(int err)
{
switch (err) {
case MCRYPT_UNKNOWN_ERROR:
return "Unknown error.\n";
break;
case MCRYPT_ALGORITHM_MODE_INCOMPATIBILITY:
return "Algorithm incompatible with this mode.\n";
break;
case MCRYPT_KEY_LEN_ERROR:
return "Key length is not legal.\n";
break;
case MCRYPT_MEMORY_ALLOCATION_ERROR:
return "Memory allocation failed.\n";
break;
case MCRYPT_UNKNOWN_MODE:
return "Unknown mode.\n";
break;
case MCRYPT_UNKNOWN_ALGORITHM:
return "Unknown algorithm.\n";
break;
}
return NULL;
}
WIN32DLL_DEFINE
void mcrypt_free(void *ptr)
{
free(ptr);
}
|