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
|
/* crypto interfaces
* Copyright (C) 1998-2001 D. Hugh Redelmeier.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
*
* This program 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 General Public License
* for more details.
*
* RCSID $Id: crypto.c,v 1.25 2002/04/24 07:55:32 mcr Exp $
*/
#include <stdio.h>
#include <string.h>
#include <stddef.h>
#include <sys/types.h>
#include <freeswan.h>
#define HEADER_DES_LOCL_H /* stupid trick to force prototype decl in <des.h> */
#include <crypto/des.h>
#include "constants.h"
#include "defs.h"
#include "state.h"
#include "log.h"
#include "md5.h"
#include "sha1.h"
#include "crypto.h" /* requires sha1.h and md5.h */
/* moduli and generator. */
static MP_INT
#if 0 /* modp768 not sufficiently strong */
modp768_modulus,
#endif
modp1024_modulus,
modp1536_modulus;
MP_INT groupgenerator; /* MODP group generator (2) */
void
init_crypto(void)
{
if (mpz_init_set_str(&groupgenerator, MODP_GENERATOR, 10) != 0
#if 0 /* modp768 not sufficiently strong */
|| mpz_init_set_str(&modp768_modulus, MODP768_MODULUS, 16) != 0
#endif
|| mpz_init_set_str(&modp1024_modulus, MODP1024_MODULUS, 16) != 0
|| mpz_init_set_str(&modp1536_modulus, MODP1536_MODULUS, 16) != 0)
exit_log("mpz_init_set_str() failed in init_crypto()");
}
/* Oakley group description
*
* See RFC2409 "The Internet key exchange (IKE)" 6.
*/
const struct oakley_group_desc unset_group = {0, NULL, 0}; /* magic signifier */
static const struct oakley_group_desc oakley_group[] = {
# define BYTES(bits) (((bits) + BITS_PER_BYTE - 1) / BITS_PER_BYTE)
#if 0 /* modp768 not sufficiently strong */
{ OAKLEY_GROUP_MODP768, &modp768_modulus, BYTES(768) },
#endif
{ OAKLEY_GROUP_MODP1024, &modp1024_modulus, BYTES(1024) },
{ OAKLEY_GROUP_MODP1536, &modp1536_modulus, BYTES(1536) },
# undef BYTES
};
const struct oakley_group_desc *
lookup_group(u_int16_t group)
{
int i;
for (i = 0; i != elemsof(oakley_group); i++)
if (group == oakley_group[i].group)
return &oakley_group[i];
return NULL;
}
/* Encryption Routines
*
* Each uses and updates the state object's st_new_iv.
* This must already be initialized.
*/
/* encrypt or decrypt part of an IKE message using DES
* See RFC 2409 "IKE" Appendix B
*/
static void
do_des(bool enc, void *buf, size_t buf_len, struct state *st)
{
des_key_schedule ks;
(void) des_set_key((des_cblock *)st->st_enc_key.ptr, ks);
passert(st->st_new_iv_len >= DES_CBC_BLOCK_SIZE);
st->st_new_iv_len = DES_CBC_BLOCK_SIZE; /* truncate */
des_ncbc_encrypt((des_cblock *)buf, (des_cblock *)buf, buf_len,
ks,
(des_cblock *)st->st_new_iv, enc);
}
/* encrypt or decrypt part of an IKE message using 3DES
* See RFC 2409 "IKE" Appendix B
*/
static void
do_3des(bool enc, void *buf, size_t buf_len, struct state *st)
{
des_key_schedule ks[3];
(void) des_set_key((des_cblock *)st->st_enc_key.ptr + 0, ks[0]);
(void) des_set_key((des_cblock *)st->st_enc_key.ptr + 1, ks[1]);
(void) des_set_key((des_cblock *)st->st_enc_key.ptr + 2, ks[2]);
passert(st->st_new_iv_len >= DES_CBC_BLOCK_SIZE);
st->st_new_iv_len = DES_CBC_BLOCK_SIZE; /* truncate */
des_ede3_cbc_encrypt((des_cblock *)buf, (des_cblock *)buf, buf_len,
ks[0], ks[1], ks[2],
(des_cblock *)st->st_new_iv, enc);
}
const struct encrypt_desc oakley_encrypter[OAKLEY_CAST_CBC + 1] = {
/* (none) */
{ 0, 0, NULL },
/* OAKLEY_DES_CBC */
{ DES_CBC_BLOCK_SIZE, DES_CBC_BLOCK_SIZE, do_des },
/* OAKLEY_IDEA_CBC */
{ 0, 0, NULL },
/* OAKLEY_BLOWFISH_CBC */
{ 0, 0, NULL },
/* OAKLEY_RC5_R16_B64_CBC */
{ 0, 0, NULL },
/* OAKLEY_3DES_CBC */
{ DES_CBC_BLOCK_SIZE, DES_CBC_BLOCK_SIZE * 3, do_3des },
/* OAKLEY_CAST_CBC */
{ 0, 0, NULL },
};
/* hash and prf routines */
const struct hash_desc oakley_hasher[OAKLEY_TIGER+1] = {
{ 0, NULL, NULL, NULL }, /* no specified hasher */
{ MD5_DIGEST_SIZE,
(void (*)(union hash_ctx *)) MD5Init,
(void (*)(union hash_ctx *, const u_char *, unsigned int)) MD5Update,
(void (*)(u_char *, union hash_ctx *)) MD5Final}, /* OAKLEY_MD5 */
{ SHA1_DIGEST_SIZE,
(void (*)(union hash_ctx *)) SHA1Init,
(void (*)(union hash_ctx *, const u_char *, unsigned int)) SHA1Update,
(void (*)(u_char *, union hash_ctx *)) SHA1Final}, /* OAKLEY_SHA */
{ 0, NULL, NULL, NULL } /* OAKLEY_TIGER */
};
/* HMAC package
* rfc2104.txt specifies how HMAC works.
*/
void
hmac_init(struct hmac_ctx *ctx,
const struct hash_desc *h,
const u_char *key, size_t key_len)
{
int k;
ctx->h = h;
ctx->hmac_digest_len = h->hash_digest_len;
/* Prepare the two pads for the HMAC */
memset(ctx->buf1, '\0', HMAC_BUFSIZE);
if (key_len <= HMAC_BUFSIZE)
{
memcpy(ctx->buf1, key, key_len);
}
else
{
h->hash_init(&ctx->hash_ctx);
h->hash_update(&ctx->hash_ctx, key, key_len);
h->hash_final(ctx->buf1, &ctx->hash_ctx);
}
memcpy(ctx->buf2, ctx->buf1, HMAC_BUFSIZE);
for (k = 0; k < HMAC_BUFSIZE; k++)
{
ctx->buf1[k] ^= HMAC_IPAD;
ctx->buf2[k] ^= HMAC_OPAD;
}
hmac_reinit(ctx);
}
void
hmac_reinit(struct hmac_ctx *ctx)
{
ctx->h->hash_init(&ctx->hash_ctx);
ctx->h->hash_update(&ctx->hash_ctx, ctx->buf1, HMAC_BUFSIZE);
}
void
hmac_update(struct hmac_ctx *ctx,
const u_char *data, size_t data_len)
{
ctx->h->hash_update(&ctx->hash_ctx, data, data_len);
}
void
hmac_final(u_char *output, struct hmac_ctx *ctx)
{
const struct hash_desc *h = ctx->h;
h->hash_final(output, &ctx->hash_ctx);
h->hash_init(&ctx->hash_ctx);
h->hash_update(&ctx->hash_ctx, ctx->buf2, HMAC_BUFSIZE);
h->hash_update(&ctx->hash_ctx, output, h->hash_digest_len);
h->hash_final(output, &ctx->hash_ctx);
}
|