mirror of
https://gitlab.kit.edu/kit/scc/sys/mail/exim-encrypt-dlfunc.git
synced 2025-12-06 08:43:55 +01:00
…
This commit is contained in:
@ -6,6 +6,9 @@
|
|||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
|
/* Exim4 dlfunc API header */
|
||||||
|
#include <local_scan.h>
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This is a set of workarounds for the different exim local_scan ABI versions, distribution patches and missing
|
* This is a set of workarounds for the different exim local_scan ABI versions, distribution patches and missing
|
||||||
* definitions which prevent late binding.
|
* definitions which prevent late binding.
|
||||||
@ -30,7 +33,7 @@
|
|||||||
#define store_get_untainted(size) store_get(size, FALSE)
|
#define store_get_untainted(size) store_get(size, FALSE)
|
||||||
#define store_get_tainted(size) store_get(size, TRUE)
|
#define store_get_tainted(size) store_get(size, TRUE)
|
||||||
|
|
||||||
#define string_copy(s) string_copy_function(s)
|
# define string_copy(s) string_copy_function(s)
|
||||||
extern uschar * string_copy_function(const uschar *);
|
extern uschar * string_copy_function(const uschar *);
|
||||||
|
|
||||||
// local_scan ABI version > 3
|
// local_scan ABI version > 3
|
||||||
@ -38,12 +41,8 @@ extern uschar * string_copy_function(const uschar *);
|
|||||||
#define DLFUNC_IMPL
|
#define DLFUNC_IMPL
|
||||||
#define store_get_untainted(size) store_get(size, FALSE)
|
#define store_get_untainted(size) store_get(size, FALSE)
|
||||||
#define store_get_tainted(size) store_get(size, TRUE)
|
#define store_get_tainted(size) store_get(size, TRUE)
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Exim4 dlfunc API header */
|
|
||||||
#include <local_scan.h>
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Encrypt message using crypto_secretbox_easy().
|
* Encrypt message using crypto_secretbox_easy().
|
||||||
*
|
*
|
||||||
@ -90,8 +89,7 @@ int sodium_crypto_secretbox_encrypt_password(uschar **yield, int argc, uschar *a
|
|||||||
unsigned char nonce[crypto_secretbox_NONCEBYTES];
|
unsigned char nonce[crypto_secretbox_NONCEBYTES];
|
||||||
randombytes_buf(nonce, sizeof nonce);
|
randombytes_buf(nonce, sizeof nonce);
|
||||||
if (crypto_secretbox_easy(ciphertext, message, messagelen, nonce, keybytes) != 0) {
|
if (crypto_secretbox_easy(ciphertext, message, messagelen, nonce, keybytes) != 0) {
|
||||||
*yield = string_copy(US
|
*yield = string_copy((unsigned char *) "Encryption error after crypto_secretbox_easy()");
|
||||||
"Encryption error after crypto_secretbox_easy()");
|
|
||||||
return ERROR;
|
return ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -111,8 +109,7 @@ int sodium_crypto_secretbox_encrypt_password(uschar **yield, int argc, uschar *a
|
|||||||
sodium_base64_VARIANT_ORIGINAL);
|
sodium_base64_VARIANT_ORIGINAL);
|
||||||
|
|
||||||
// return base64-encoded ciphertext
|
// return base64-encoded ciphertext
|
||||||
*yield = string_copy(US
|
*yield = string_copy(outstring);
|
||||||
outstring);
|
|
||||||
return OK;
|
return OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -130,7 +127,9 @@ int sodium_crypto_secretbox_decrypt_password(uschar **yield, int argc, uschar *a
|
|||||||
}
|
}
|
||||||
// check argument count
|
// check argument count
|
||||||
if (argc != 2) {
|
if (argc != 2) {
|
||||||
*yield = string_sprintf("Wrong number of arguments (got %i, expected 2)", argc);
|
*yield =
|
||||||
|
string_sprintf
|
||||||
|
("Wrong number of arguments (got %i, expected 2)", argc);
|
||||||
return ERROR;
|
return ERROR;
|
||||||
}
|
}
|
||||||
// get password
|
// get password
|
||||||
@ -157,8 +156,7 @@ int sodium_crypto_secretbox_decrypt_password(uschar **yield, int argc, uschar *a
|
|||||||
NULL, &combined_message_len, NULL,
|
NULL, &combined_message_len, NULL,
|
||||||
sodium_base64_VARIANT_ORIGINAL);
|
sodium_base64_VARIANT_ORIGINAL);
|
||||||
if (b64err != 0) {
|
if (b64err != 0) {
|
||||||
*yield = string_copy(US
|
*yield = string_copy((unsigned char *) "Error decoding base64 encoded ciphertext");
|
||||||
"Error decoding base64 encoded ciphertext");
|
|
||||||
return ERROR;
|
return ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -174,14 +172,12 @@ int sodium_crypto_secretbox_decrypt_password(uschar **yield, int argc, uschar *a
|
|||||||
// decrypt message
|
// decrypt message
|
||||||
if (crypto_secretbox_open_easy(cleartext, &combined_message[crypto_secretbox_NONCEBYTES],
|
if (crypto_secretbox_open_easy(cleartext, &combined_message[crypto_secretbox_NONCEBYTES],
|
||||||
combined_message_len - crypto_secretbox_NONCEBYTES, nonce, keybytes) != 0) {
|
combined_message_len - crypto_secretbox_NONCEBYTES, nonce, keybytes) != 0) {
|
||||||
*yield = string_copy(US
|
*yield = string_copy((unsigned char *) "Decryption error after crypto_secretbox_open_easy()");
|
||||||
"Decryption error after crypto_secretbox_open_easy()");
|
|
||||||
return ERROR;
|
return ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
// return cleartext
|
// return cleartext
|
||||||
*yield = string_copy(US
|
*yield = string_copy(cleartext);
|
||||||
cleartext);
|
|
||||||
return OK;
|
return OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user