blob: 8917551d314ebae99bb03d16dd5b30149b7c9b66 [file] [log] [blame]
Damien Millerd7c81e22014-08-30 04:18:28 +10001/* $Id: openssl-compat.h,v 1.31 2014/08/29 18:18:29 djm Exp $ */
Darren Tuckera55ec772005-06-09 21:45:10 +10002
3/*
4 * Copyright (c) 2005 Darren Tucker <dtucker@zip.com.au>
5 *
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
9 *
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
15 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
16 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 */
18
Damien Millerd7c81e22014-08-30 04:18:28 +100019#ifndef _OPENSSL_COMPAT_H
20#define _OPENSSL_COMPAT_H
21
Darren Tuckera55ec772005-06-09 21:45:10 +100022#include "includes.h"
Damien Miller72ef7c12015-01-15 02:21:31 +110023#ifdef WITH_OPENSSL
24
Damien Miller9a3d0dc2010-10-07 22:06:42 +110025#include <openssl/opensslv.h>
Darren Tuckera55ec772005-06-09 21:45:10 +100026#include <openssl/evp.h>
Damien Miller4b1ec832010-05-12 17:49:59 +100027#include <openssl/rsa.h>
28#include <openssl/dsa.h>
29
Darren Tucker316fac62014-06-17 23:06:07 +100030int ssh_compatible_openssl(long, long);
31
Damien Miller86687062014-07-02 15:28:02 +100032#if (OPENSSL_VERSION_NUMBER <= 0x0090805fL)
Damien Millerd7c81e22014-08-30 04:18:28 +100033# error OpenSSL 0.9.8f or greater is required
Darren Tuckercb520172007-06-14 23:21:32 +100034#endif
35
Damien Millerda5cc5d2013-01-20 22:31:29 +110036#if OPENSSL_VERSION_NUMBER < 0x10000001L
Damien Miller9a3d0dc2010-10-07 22:06:42 +110037# define LIBCRYPTO_EVP_INL_TYPE unsigned int
38#else
39# define LIBCRYPTO_EVP_INL_TYPE size_t
40#endif
41
Damien Miller51c77e22014-08-30 02:30:30 +100042#ifndef OPENSSL_RSA_MAX_MODULUS_BITS
43# define OPENSSL_RSA_MAX_MODULUS_BITS 16384
44#endif
45#ifndef OPENSSL_DSA_MAX_MODULUS_BITS
46# define OPENSSL_DSA_MAX_MODULUS_BITS 10000
47#endif
48
Darren Tucker55731712014-07-21 02:24:59 +100049#ifndef OPENSSL_HAVE_EVPCTR
Damien Millerd7c81e22014-08-30 04:18:28 +100050# define EVP_aes_128_ctr evp_aes_128_ctr
51# define EVP_aes_192_ctr evp_aes_128_ctr
52# define EVP_aes_256_ctr evp_aes_128_ctr
Darren Tucker55731712014-07-21 02:24:59 +100053const EVP_CIPHER *evp_aes_128_ctr(void);
54void ssh_aes_ctr_iv(EVP_CIPHER_CTX *, int, u_char *, size_t);
55#endif
56
Damien Millerd522c682013-01-09 16:42:47 +110057/* Avoid some #ifdef. Code that uses these is unreachable without GCM */
58#if !defined(OPENSSL_HAVE_EVPGCM) && !defined(EVP_CTRL_GCM_SET_IV_FIXED)
59# define EVP_CTRL_GCM_SET_IV_FIXED -1
60# define EVP_CTRL_GCM_IV_GEN -1
61# define EVP_CTRL_GCM_SET_TAG -1
62# define EVP_CTRL_GCM_GET_TAG -1
63#endif
64
Damien Millerb6f73b32013-02-11 10:39:12 +110065/* Replace missing EVP_CIPHER_CTX_ctrl() with something that returns failure */
66#ifndef HAVE_EVP_CIPHER_CTX_CTRL
67# ifdef OPENSSL_HAVE_EVPGCM
68# error AES-GCM enabled without EVP_CIPHER_CTX_ctrl /* shouldn't happen */
69# else
70# define EVP_CIPHER_CTX_ctrl(a,b,c,d) (0)
71# endif
72#endif
73
Darren Tuckera55ec772005-06-09 21:45:10 +100074/*
Darren Tucker41236362005-11-20 14:09:59 +110075 * We overload some of the OpenSSL crypto functions with ssh_* equivalents
Damien Miller86687062014-07-02 15:28:02 +100076 * to automatically handle OpenSSL engine initialisation.
Darren Tucker41236362005-11-20 14:09:59 +110077 *
78 * In order for the compat library to call the real functions, it must
79 * define SSH_DONT_OVERLOAD_OPENSSL_FUNCS before including this file and
80 * implement the ssh_* equivalents.
Darren Tuckera55ec772005-06-09 21:45:10 +100081 */
Darren Tuckerfabdb6c2006-02-20 20:17:35 +110082#ifndef SSH_DONT_OVERLOAD_OPENSSL_FUNCS
Darren Tuckera55ec772005-06-09 21:45:10 +100083
Darren Tucker3322e0d2006-02-22 00:00:27 +110084# ifdef USE_OPENSSL_ENGINE
Darren Tuckerd6548fe2011-05-10 11:13:36 +100085# ifdef OpenSSL_add_all_algorithms
86# undef OpenSSL_add_all_algorithms
Darren Tucker3322e0d2006-02-22 00:00:27 +110087# endif
Darren Tuckerd6548fe2011-05-10 11:13:36 +100088# define OpenSSL_add_all_algorithms() ssh_OpenSSL_add_all_algorithms()
Darren Tuckerbfaaf962008-02-28 19:13:52 +110089# endif
Darren Tuckera55ec772005-06-09 21:45:10 +100090
Darren Tuckerd6548fe2011-05-10 11:13:36 +100091void ssh_OpenSSL_add_all_algorithms(void);
Darren Tuckere9b3ad72012-01-17 14:03:34 +110092
Darren Tuckerfabdb6c2006-02-20 20:17:35 +110093#endif /* SSH_DONT_OVERLOAD_OPENSSL_FUNCS */
Damien Miller4b1ec832010-05-12 17:49:59 +100094
Damien Miller72ef7c12015-01-15 02:21:31 +110095#endif /* WITH_OPENSSL */
Damien Millerd7c81e22014-08-30 04:18:28 +100096#endif /* _OPENSSL_COMPAT_H */