mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
Add :pass and :flags to gnutls-boot for :keylist
* lisp/net/gnutls.el (gnutls-boot-parameters): Add the keys :pass and :flags, and update the documentation. * src/gnutls.c (gnutls-boot): Add the keys :pass and :flags, and update the documentation. (syms_of_gnutls): Add the symbols :pass, :flags, and the symbols that correspond to the enumeration constants of the GnuTLS enum `gnutls_pkcs_encrypt_flags_t'. (key_file2_aux): Private helper function that translates a list of symbols to its corresponding `unsigned int' value of the GnuTLS C enum `gnutls_pkcs_encrypt_flags_t'. (Bug#50507)
This commit is contained in:
parent
7493b4026f
commit
e9983b1b63
2 changed files with 130 additions and 0 deletions
|
|
@ -262,6 +262,7 @@ For the meaning of the rest of the parameters, see `gnutls-boot-parameters'."
|
|||
&key type hostname priority-string
|
||||
trustfiles crlfiles keylist min-prime-bits
|
||||
verify-flags verify-error verify-hostname-error
|
||||
pass flags
|
||||
&allow-other-keys)
|
||||
"Return a keyword list of parameters suitable for passing to `gnutls-boot'.
|
||||
|
||||
|
|
@ -278,6 +279,13 @@ default.
|
|||
VERIFY-HOSTNAME-ERROR is a backwards compatibility option for
|
||||
putting `:hostname' in VERIFY-ERROR.
|
||||
|
||||
PASS is a string, the password of the key. It may also be nil,
|
||||
for a NULL password.
|
||||
|
||||
FLAGS is a list of symbols corresponding to the equivalent ORed
|
||||
bitflag of the gnutls_pkcs_encrypt_flags_t enum of GnuTLS. The
|
||||
empty list corresponds to the bitflag with value 0.
|
||||
|
||||
When VERIFY-ERROR is t or a list containing `:trustfiles', an
|
||||
error will be raised when the peer certificate verification fails
|
||||
as per GnuTLS' gnutls_certificate_verify_peers2. Otherwise, only
|
||||
|
|
@ -355,6 +363,8 @@ defaults to GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT."
|
|||
:keylist ,keylist
|
||||
:verify-flags ,verify-flags
|
||||
:verify-error ,verify-error
|
||||
:pass ,pass
|
||||
:flags ,flags
|
||||
:callbacks nil)))
|
||||
|
||||
(defun gnutls--get-files (files)
|
||||
|
|
|
|||
120
src/gnutls.c
120
src/gnutls.c
|
|
@ -34,6 +34,7 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
|
|||
# endif
|
||||
|
||||
# if GNUTLS_VERSION_NUMBER >= 0x030200
|
||||
# define HAVE_GNUTLS_CERTIFICATE_SET_X509_KEY_FILE2
|
||||
# define HAVE_GNUTLS_CIPHER_GET_IV_SIZE
|
||||
# endif
|
||||
|
||||
|
|
@ -121,6 +122,11 @@ DEF_DLL_FN (int, gnutls_certificate_set_x509_crl_file,
|
|||
DEF_DLL_FN (int, gnutls_certificate_set_x509_key_file,
|
||||
(gnutls_certificate_credentials_t, const char *, const char *,
|
||||
gnutls_x509_crt_fmt_t));
|
||||
# ifdef HAVE_GNUTLS_CERTIFICATE_SET_X509_KEY_FILE2
|
||||
DEF_DLL_FN (int, gnutls_certificate_set_x509_key_file2,
|
||||
(gnutls_certificate_credentials_t, const char *, const char *,
|
||||
gnutls_x509_crt_fmt_t, const char *, unsigned int));
|
||||
# endif
|
||||
# ifdef HAVE_GNUTLS_X509_SYSTEM_TRUST
|
||||
DEF_DLL_FN (int, gnutls_certificate_set_x509_system_trust,
|
||||
(gnutls_certificate_credentials_t));
|
||||
|
|
@ -314,6 +320,9 @@ init_gnutls_functions (void)
|
|||
LOAD_DLL_FN (library, gnutls_certificate_set_verify_flags);
|
||||
LOAD_DLL_FN (library, gnutls_certificate_set_x509_crl_file);
|
||||
LOAD_DLL_FN (library, gnutls_certificate_set_x509_key_file);
|
||||
# ifdef HAVE_GNUTLS_CERTIFICATE_SET_X509_KEY_FILE2
|
||||
LOAD_DLL_FN (library, gnutls_certificate_set_x509_key_file2);
|
||||
# endif
|
||||
# ifdef HAVE_GNUTLS_X509_SYSTEM_TRUST
|
||||
LOAD_DLL_FN (library, gnutls_certificate_set_x509_system_trust);
|
||||
# endif
|
||||
|
|
@ -455,6 +464,9 @@ init_gnutls_functions (void)
|
|||
# define gnutls_certificate_set_verify_flags fn_gnutls_certificate_set_verify_flags
|
||||
# define gnutls_certificate_set_x509_crl_file fn_gnutls_certificate_set_x509_crl_file
|
||||
# define gnutls_certificate_set_x509_key_file fn_gnutls_certificate_set_x509_key_file
|
||||
# ifdef HAVE_GNUTLS_CERTIFICATE_SET_X509_KEY_FILE2
|
||||
# define gnutls_certificate_set_x509_key_file2 fn_gnutls_certificate_set_x509_key_file2
|
||||
# endif
|
||||
# define gnutls_certificate_set_x509_system_trust fn_gnutls_certificate_set_x509_system_trust
|
||||
# define gnutls_certificate_set_x509_trust_file fn_gnutls_certificate_set_x509_trust_file
|
||||
# define gnutls_certificate_type_get fn_gnutls_certificate_type_get
|
||||
|
|
@ -1774,6 +1786,61 @@ gnutls_verify_boot (Lisp_Object proc, Lisp_Object proplist)
|
|||
return gnutls_make_error (ret);
|
||||
}
|
||||
|
||||
#ifdef HAVE_GNUTLS_CERTIFICATE_SET_X509_KEY_FILE2
|
||||
|
||||
/* Helper function for gnutls-boot.
|
||||
|
||||
The key :flags receives a list of symbols, each of which
|
||||
corresponds to a GnuTLS C flag, the ORed result is to be passed to
|
||||
the function gnutls_certificate_set_x509_key_file2() as its last
|
||||
argument.
|
||||
*/
|
||||
static unsigned int
|
||||
key_file2_aux (Lisp_Object flags)
|
||||
{
|
||||
unsigned int rv = 0;
|
||||
Lisp_Object tail = flags;
|
||||
FOR_EACH_TAIL_SAFE (tail)
|
||||
{
|
||||
Lisp_Object flag = XCAR (tail);
|
||||
if (EQ (flag, Qgnutls_pkcs_plain))
|
||||
rv |= GNUTLS_PKCS_PLAIN;
|
||||
else if (EQ (flag, Qgnutls_pkcs_pkcs12_3des))
|
||||
rv |= GNUTLS_PKCS_PKCS12_3DES;
|
||||
else if (EQ (flag, Qgnutls_pkcs_pkcs12_arcfour))
|
||||
rv |= GNUTLS_PKCS_PKCS12_ARCFOUR;
|
||||
else if (EQ (flag, Qgnutls_pkcs_pkcs12_rc2_40))
|
||||
rv |= GNUTLS_PKCS_PKCS12_RC2_40;
|
||||
else if (EQ (flag, Qgnutls_pkcs_pbes2_3des))
|
||||
rv |= GNUTLS_PKCS_PBES2_3DES;
|
||||
else if (EQ (flag, Qgnutls_pkcs_pbes2_aes_128))
|
||||
rv |= GNUTLS_PKCS_PBES2_AES_128;
|
||||
else if (EQ (flag, Qgnutls_pkcs_pbes2_aes_192))
|
||||
rv |= GNUTLS_PKCS_PBES2_AES_192;
|
||||
else if (EQ (flag, Qgnutls_pkcs_pbes2_aes_256))
|
||||
rv |= GNUTLS_PKCS_PBES2_AES_256;
|
||||
else if (EQ (flag, Qgnutls_pkcs_null_password))
|
||||
rv |= GNUTLS_PKCS_NULL_PASSWORD;
|
||||
else if (EQ (flag, Qgnutls_pkcs_pbes2_des))
|
||||
rv |= GNUTLS_PKCS_PBES2_DES;
|
||||
else if (EQ (flag, Qgnutls_pkcs_pbes1_des_md5))
|
||||
rv |= GNUTLS_PKCS_PBES1_DES_MD5;
|
||||
else if (EQ (flag, Qgnutls_pkcs_pbes2_gost_tc26z))
|
||||
rv |= GNUTLS_PKCS_PBES2_GOST_TC26Z;
|
||||
else if (EQ (flag, Qgnutls_pkcs_pbes2_gost_cpa))
|
||||
rv |= GNUTLS_PKCS_PBES2_GOST_CPA;
|
||||
else if (EQ (flag, Qgnutls_pkcs_pbes2_gost_cpb))
|
||||
rv |= GNUTLS_PKCS_PBES2_GOST_CPB;
|
||||
else if (EQ (flag, Qgnutls_pkcs_pbes2_gost_cpc))
|
||||
rv |= GNUTLS_PKCS_PBES2_GOST_CPC;
|
||||
else if (EQ (flag, Qgnutls_pkcs_pbes2_gost_cpd))
|
||||
rv |= GNUTLS_PKCS_PBES2_GOST_CPD;
|
||||
}
|
||||
return rv;
|
||||
}
|
||||
|
||||
#endif /* HAVE_GNUTLS_CERTIFICATE_SET_X509_KEY_FILE2 */
|
||||
|
||||
DEFUN ("gnutls-boot", Fgnutls_boot, Sgnutls_boot, 3, 3, 0,
|
||||
doc: /* Initialize GnuTLS client for process PROC with TYPE+PROPLIST.
|
||||
Currently only client mode is supported. Return a success/failure
|
||||
|
|
@ -1813,6 +1880,21 @@ accept in Diffie-Hellman key exchange.
|
|||
:complete-negotiation, if non-nil, will make negotiation complete
|
||||
before returning even on non-blocking sockets.
|
||||
|
||||
:pass, the password of the private key as per GnuTLS'
|
||||
gnutls_certificate_set_x509_key_file2. Specify as nil to have a NULL
|
||||
password.
|
||||
|
||||
:flags, a list of symbols relating to :pass, each specifying a flag:
|
||||
GNUTLS_PKCS_PLAIN, GNUTLS_PKCS_PKCS12_3DES,
|
||||
GNUTLS_PKCS_PKCS12_ARCFOUR, GNUTLS_PKCS_PKCS12_RC2_40,
|
||||
GNUTLS_PKCS_PBES2_3DES, GNUTLS_PKCS_PBES2_AES_128,
|
||||
GNUTLS_PKCS_PBES2_AES_192, GNUTLS_PKCS_PBES2_AES_256,
|
||||
GNUTLS_PKCS_NULL_PASSWORD, GNUTLS_PKCS_PBES2_DES,
|
||||
GNUTLS_PKCS_PBES2_DES_MD5, GNUTLS_PKCS_PBES2_GOST_TC26Z,
|
||||
GNUTLS_PKCS_PBES2_GOST_CPA, GNUTLS_PKCS_PBES2_GOST_CPB,
|
||||
GNUTLS_PKCS_PBES2_GOST_CPC, GNUTLS_PKCS_PBES2_GOST_CPD. If not
|
||||
specified, or if nil, the bitflag with value 0 is used.
|
||||
|
||||
The debug level will be set for this process AND globally for GnuTLS.
|
||||
So if you set it higher or lower at any point, it affects global
|
||||
debugging.
|
||||
|
|
@ -1825,6 +1907,9 @@ Processes must be initialized with this function before other GnuTLS
|
|||
functions are used. This function allocates resources which can only
|
||||
be deallocated by calling `gnutls-deinit' or by calling it again.
|
||||
|
||||
The :pass and :flags keys are ignored with old versions of GnuTLS, and
|
||||
:flags is ignored if :pass is not specified.
|
||||
|
||||
The callbacks alist can have a `verify' key, associated with a
|
||||
verification function (UNUSED).
|
||||
|
||||
|
|
@ -1842,12 +1927,15 @@ one trustfile (usually a CA bundle). */)
|
|||
Lisp_Object global_init;
|
||||
char const *priority_string_ptr = "NORMAL"; /* default priority string. */
|
||||
char *c_hostname;
|
||||
const char *c_pass;
|
||||
|
||||
/* Placeholders for the property list elements. */
|
||||
Lisp_Object priority_string;
|
||||
Lisp_Object trustfiles;
|
||||
Lisp_Object crlfiles;
|
||||
Lisp_Object keylist;
|
||||
Lisp_Object pass;
|
||||
Lisp_Object flags;
|
||||
/* Lisp_Object callbacks; */
|
||||
Lisp_Object loglevel;
|
||||
Lisp_Object hostname;
|
||||
|
|
@ -1877,6 +1965,13 @@ one trustfile (usually a CA bundle). */)
|
|||
crlfiles = plist_get (proplist, QCcrlfiles);
|
||||
loglevel = plist_get (proplist, QCloglevel);
|
||||
prime_bits = plist_get (proplist, QCmin_prime_bits);
|
||||
pass = plist_get (proplist, QCpass);
|
||||
flags = plist_get (proplist, QCflags);
|
||||
|
||||
if (STRINGP (pass))
|
||||
c_pass = SSDATA (pass);
|
||||
else
|
||||
c_pass = NULL;
|
||||
|
||||
if (!STRINGP (hostname))
|
||||
{
|
||||
|
|
@ -2037,6 +2132,13 @@ one trustfile (usually a CA bundle). */)
|
|||
# ifdef WINDOWSNT
|
||||
keyfile = ansi_encode_filename (keyfile);
|
||||
certfile = ansi_encode_filename (certfile);
|
||||
# endif
|
||||
# ifdef HAVE_GNUTLS_CERTIFICATE_SET_X509_KEY_FILE2
|
||||
if (plist_member (proplist, QCpass))
|
||||
ret = gnutls_certificate_set_x509_key_file2
|
||||
(x509_cred, SSDATA (certfile), SSDATA (keyfile), file_format,
|
||||
c_pass, key_file2_aux (flags));
|
||||
else
|
||||
# endif
|
||||
ret = gnutls_certificate_set_x509_key_file
|
||||
(x509_cred, SSDATA (certfile), SSDATA (keyfile), file_format);
|
||||
|
|
@ -2862,8 +2964,26 @@ level in the ones. For builds without libgnutls, the value is -1. */);
|
|||
DEFSYM (QCmin_prime_bits, ":min-prime-bits");
|
||||
DEFSYM (QCloglevel, ":loglevel");
|
||||
DEFSYM (QCcomplete_negotiation, ":complete-negotiation");
|
||||
DEFSYM (QCpass, ":pass");
|
||||
DEFSYM (QCflags, ":flags");
|
||||
DEFSYM (QCverify_flags, ":verify-flags");
|
||||
DEFSYM (QCverify_error, ":verify-error");
|
||||
DEFSYM (Qgnutls_pkcs_plain, "GNUTLS_PKCS_PLAIN");
|
||||
DEFSYM (Qgnutls_pkcs_pkcs12_3des, "GNUTLS_PKCS_PKCS12_3DES");
|
||||
DEFSYM (Qgnutls_pkcs_pkcs12_arcfour, "GNUTLS_PKCS_PKCS12_ARCFOUR");
|
||||
DEFSYM (Qgnutls_pkcs_pkcs12_rc2_40, "GNUTLS_PKCS_PKCS12_RC2_40");
|
||||
DEFSYM (Qgnutls_pkcs_pbes2_3des, "GNUTLS_PKCS_PBES2_3DES");
|
||||
DEFSYM (Qgnutls_pkcs_pbes2_aes_128, "GNUTLS_PKCS_PBES2_AES_128");
|
||||
DEFSYM (Qgnutls_pkcs_pbes2_aes_192, "GNUTLS_PKCS_PBES2_AES_192");
|
||||
DEFSYM (Qgnutls_pkcs_pbes2_aes_256, "GNUTLS_PKCS_PBES2_AES_256");
|
||||
DEFSYM (Qgnutls_pkcs_null_password, "GNUTLS_PKCS_NULL_PASSWORD");
|
||||
DEFSYM (Qgnutls_pkcs_pbes2_des, "GNUTLS_PKCS_PBES2_DES");
|
||||
DEFSYM (Qgnutls_pkcs_pbes1_des_md5, "GNUTLS_PKCS_PBES1_DES_MD5");
|
||||
DEFSYM (Qgnutls_pkcs_pbes2_gost_tc26z, "GNUTLS_PKCS_PBES2_GOST_TC26Z");
|
||||
DEFSYM (Qgnutls_pkcs_pbes2_gost_cpa, "GNUTLS_PKCS_PBES2_GOST_CPA");
|
||||
DEFSYM (Qgnutls_pkcs_pbes2_gost_cpb, "GNUTLS_PKCS_PBES2_GOST_CPB");
|
||||
DEFSYM (Qgnutls_pkcs_pbes2_gost_cpc, "GNUTLS_PKCS_PBES2_GOST_CPC");
|
||||
DEFSYM (Qgnutls_pkcs_pbes2_gost_cpd, "GNUTLS_PKCS_PBES2_GOST_CPD");
|
||||
|
||||
DEFSYM (QCcipher_id, ":cipher-id");
|
||||
DEFSYM (QCcipher_aead_capable, ":cipher-aead-capable");
|
||||
|
|
|
|||
Loading…
Reference in a new issue