Skip to content

Commit c7d31b3

Browse files
committed
Compatible with OpenSSL 3.0.
1 parent 9cef6c4 commit c7d31b3

File tree

3 files changed

+81
-1
lines changed

3 files changed

+81
-1
lines changed

configure.ac

+10
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ dnl Choice SSL library
6161
dnl ----------------------------------------------
6262
auth_lib=na
6363
nettle_lib=no
64+
use_openssl_30=no
6465

6566
dnl
6667
dnl nettle library
@@ -189,6 +190,14 @@ case "${auth_lib}" in
189190
openssl)
190191
AC_MSG_RESULT(OpenSSL)
191192
PKG_CHECK_MODULES([DEPS], [fuse >= ${min_fuse_version} libcurl >= 7.0 libxml-2.0 >= 2.6 libcrypto >= 0.9 ])
193+
AC_MSG_CHECKING([openssl 3.0 or later])
194+
AC_COMPILE_IFELSE(
195+
[AC_LANG_PROGRAM([[#include <openssl/opensslv.h>
196+
#if !defined(LIBRESSL_VERSION_NUMBER) && OPENSSL_VERSION_NUMBER >= 0x30000000L
197+
#error "found openssl is 3.0 or later(so compiling is stopped with error)"
198+
#endif]], [[]])],
199+
[AC_MSG_RESULT(no)],
200+
[AC_MSG_RESULT(yes); use_openssl_30=yes])
192201
;;
193202
gnutls)
194203
AC_MSG_RESULT(GnuTLS-gcrypt)
@@ -228,6 +237,7 @@ nss)
228237
esac
229238

230239
AM_CONDITIONAL([USE_SSL_OPENSSL], [test "$auth_lib" = openssl])
240+
AM_CONDITIONAL([USE_SSL_OPENSSL_30], [test "$use_openssl_30" = yes])
231241
AM_CONDITIONAL([USE_SSL_GNUTLS], [test "$auth_lib" = gnutls -o "$auth_lib" = nettle])
232242
AM_CONDITIONAL([USE_GNUTLS_NETTLE], [test "$auth_lib" = nettle])
233243
AM_CONDITIONAL([USE_SSL_NSS], [test "$auth_lib" = nss])

src/Makefile.am

+3
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ AM_CPPFLAGS = $(DEPS_CFLAGS)
2323
if USE_GNUTLS_NETTLE
2424
AM_CPPFLAGS += -DUSE_GNUTLS_NETTLE
2525
endif
26+
if USE_SSL_OPENSSL_30
27+
AM_CPPFLAGS += -DUSE_OPENSSL_30
28+
endif
2629

2730
ossfs_SOURCES = \
2831
s3fs.cpp \

src/openssl_auth.cpp

+68-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,14 @@ const char* s3fs_crypt_lib_name()
5858
bool s3fs_init_global_ssl()
5959
{
6060
ERR_load_crypto_strings();
61+
62+
// [NOTE]
63+
// OpenSSL 3.0 loads error strings automatically so these functions are not needed.
64+
//
65+
#ifndef USE_OPENSSL_30
6166
ERR_load_BIO_strings();
67+
#endif
68+
6269
OpenSSL_add_all_algorithms();
6370
return true;
6471
}
@@ -245,8 +252,67 @@ bool s3fs_HMAC256(const void* key, size_t keylen, const unsigned char* data, siz
245252
return s3fs_HMAC_RAW(key, keylen, data, datalen, digest, digestlen, true);
246253
}
247254

255+
#ifdef USE_OPENSSL_30
248256
//-------------------------------------------------------------------
249-
// Utility Function for MD5
257+
// Utility Function for MD5 (OpenSSL >= 3.0)
258+
//-------------------------------------------------------------------
259+
// [NOTE]
260+
// OpenSSL 3.0 deprecated the MD5_*** low-level encryption functions,
261+
// so we should use the high-level EVP API instead.
262+
//
263+
size_t get_md5_digest_length()
264+
{
265+
return EVP_MD_size(EVP_md5());
266+
}
267+
268+
unsigned char* s3fs_md5_fd(int fd, off_t start, off_t size)
269+
{
270+
EVP_MD_CTX* mdctx;
271+
unsigned char* md5_digest;
272+
unsigned int md5_digest_len = get_md5_digest_length();
273+
off_t bytes;
274+
275+
if(-1 == size){
276+
struct stat st;
277+
if(-1 == fstat(fd, &st)){
278+
return NULL;
279+
}
280+
size = st.st_size;
281+
}
282+
283+
// instead of MD5_Init
284+
mdctx = EVP_MD_CTX_new();
285+
EVP_DigestInit_ex(mdctx, EVP_md5(), NULL);
286+
287+
for(off_t total = 0; total < size; total += bytes){
288+
const off_t len = 512;
289+
char buf[len];
290+
bytes = len < (size - total) ? len : (size - total);
291+
bytes = pread(fd, buf, bytes, start + total);
292+
if(0 == bytes){
293+
// end of file
294+
break;
295+
}else if(-1 == bytes){
296+
// error
297+
S3FS_PRN_ERR("file read error(%d)", errno);
298+
EVP_MD_CTX_free(mdctx);
299+
return NULL;
300+
}
301+
// instead of MD5_Update
302+
EVP_DigestUpdate(mdctx, buf, bytes);
303+
}
304+
305+
// instead of MD5_Final
306+
md5_digest = new unsigned char[md5_digest_len];
307+
EVP_DigestFinal_ex(mdctx, md5_digest, &md5_digest_len);
308+
EVP_MD_CTX_free(mdctx);
309+
310+
return md5_digest;
311+
}
312+
313+
#else
314+
//-------------------------------------------------------------------
315+
// Utility Function for MD5 (OpenSSL < 3.0)
250316
//-------------------------------------------------------------------
251317
size_t get_md5_digest_length()
252318
{
@@ -290,6 +356,7 @@ unsigned char* s3fs_md5_fd(int fd, off_t start, off_t size)
290356

291357
return result;
292358
}
359+
#endif
293360

294361
//-------------------------------------------------------------------
295362
// Utility Function for SHA256

0 commit comments

Comments
 (0)