185 lines
5.9 KiB
Diff
185 lines
5.9 KiB
Diff
From 806c921c8be6d76bb8d01cf290112bceca513b42 Mon Sep 17 00:00:00 2001
|
|
From: Isaac Boukris <iboukris@gmail.com>
|
|
Date: Sat, 19 Oct 2019 23:48:19 +0300
|
|
Subject: [PATCH 174/187] smbdes: add des_crypt56_gnutls() using DES-CBC with
|
|
zeroed IV
|
|
|
|
Signed-off-by: Isaac Boukris <iboukris@samba.org>
|
|
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
|
|
(cherry picked from commit 0f855f1ab955e3ecf47689c5e4578eb67ebe8f27)
|
|
---
|
|
libcli/auth/proto.h | 4 +++
|
|
libcli/auth/smbdes.c | 57 ++++++++++++++++++++++++++++++++
|
|
libcli/auth/tests/test_gnutls.c | 9 +++++
|
|
libcli/auth/wscript_build | 2 +-
|
|
source3/passdb/wscript_build | 2 +-
|
|
source3/rpc_server/wscript_build | 3 +-
|
|
6 files changed, 74 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/libcli/auth/proto.h b/libcli/auth/proto.h
|
|
index eb725c83d15..e7c9923abf3 100644
|
|
--- a/libcli/auth/proto.h
|
|
+++ b/libcli/auth/proto.h
|
|
@@ -4,6 +4,8 @@
|
|
#undef _PRINTF_ATTRIBUTE
|
|
#define _PRINTF_ATTRIBUTE(a1, a2) PRINTF_ATTRIBUTE(a1, a2)
|
|
|
|
+#include "lib/crypto/gnutls_helpers.h"
|
|
+
|
|
/* this file contains prototypes for functions that are private
|
|
* to this subsystem or library. These functions should not be
|
|
* used outside this particular subsystem! */
|
|
@@ -217,6 +219,8 @@ WERROR decode_wkssvc_join_password_buffer(TALLOC_CTX *mem_ctx,
|
|
/* The following definitions come from /home/jeremy/src/samba/git/master/source3/../source4/../libcli/auth/smbdes.c */
|
|
|
|
void des_crypt56(uint8_t out[8], const uint8_t in[8], const uint8_t key[7], int forw);
|
|
+int des_crypt56_gnutls(uint8_t out[8], const uint8_t in[8], const uint8_t key[7],
|
|
+ enum samba_gnutls_direction encrypt);
|
|
void E_P16(const uint8_t *p14,uint8_t *p16);
|
|
void E_P24(const uint8_t *p21, const uint8_t *c8, uint8_t *p24);
|
|
void D_P16(const uint8_t *p14, const uint8_t *in, uint8_t *out);
|
|
diff --git a/libcli/auth/smbdes.c b/libcli/auth/smbdes.c
|
|
index 59cb45d81f0..f384ef132a7 100644
|
|
--- a/libcli/auth/smbdes.c
|
|
+++ b/libcli/auth/smbdes.c
|
|
@@ -23,6 +23,9 @@
|
|
#include "includes.h"
|
|
#include "libcli/auth/libcli_auth.h"
|
|
|
|
+#include <gnutls/gnutls.h>
|
|
+#include <gnutls/crypto.h>
|
|
+
|
|
/* NOTES:
|
|
|
|
This code makes no attempt to be fast! In fact, it is a very
|
|
@@ -273,6 +276,60 @@ static void str_to_key(const uint8_t *str,uint8_t *key)
|
|
}
|
|
}
|
|
|
|
+int des_crypt56_gnutls(uint8_t out[8], const uint8_t in[8],
|
|
+ const uint8_t key_in[7],
|
|
+ enum samba_gnutls_direction encrypt)
|
|
+{
|
|
+ /*
|
|
+ * A single block DES-CBC op, with an all-zero IV is the same as DES
|
|
+ * because the IV is combined with the data using XOR.
|
|
+ * This allows us to use GNUTLS_CIPHER_DES_CBC from GnuTLS and not
|
|
+ * implement single-DES in Samba.
|
|
+ *
|
|
+ * In turn this is used to build DES-ECB, which is used
|
|
+ * for example in the NTLM challenge/response calculation.
|
|
+ */
|
|
+ static const uint8_t iv8[8];
|
|
+ gnutls_datum_t iv = { discard_const(iv8), 8 };
|
|
+ gnutls_datum_t key;
|
|
+ gnutls_cipher_hd_t ctx;
|
|
+ uint8_t key2[8];
|
|
+ uint8_t outb[8];
|
|
+ int ret;
|
|
+
|
|
+ memset(out, 0, 8);
|
|
+
|
|
+ str_to_key(key_in, key2);
|
|
+
|
|
+ key.data = key2;
|
|
+ key.size = 8;
|
|
+
|
|
+ ret = gnutls_global_init();
|
|
+ if (ret != 0) {
|
|
+ return ret;
|
|
+ }
|
|
+
|
|
+ ret = gnutls_cipher_init(&ctx, GNUTLS_CIPHER_DES_CBC, &key, &iv);
|
|
+ if (ret != 0) {
|
|
+ return ret;
|
|
+ }
|
|
+
|
|
+ memcpy(outb, in, 8);
|
|
+ if (encrypt == SAMBA_GNUTLS_ENCRYPT) {
|
|
+ ret = gnutls_cipher_encrypt(ctx, outb, 8);
|
|
+ } else {
|
|
+ ret = gnutls_cipher_decrypt(ctx, outb, 8);
|
|
+ }
|
|
+
|
|
+ if (ret == 0) {
|
|
+ memcpy(out, outb, 8);
|
|
+ }
|
|
+
|
|
+ gnutls_cipher_deinit(ctx);
|
|
+
|
|
+ return ret;
|
|
+}
|
|
+
|
|
/*
|
|
basic des crypt using a 56 bit (7 byte) key
|
|
*/
|
|
diff --git a/libcli/auth/tests/test_gnutls.c b/libcli/auth/tests/test_gnutls.c
|
|
index d9ce8a765cf..121848341e6 100644
|
|
--- a/libcli/auth/tests/test_gnutls.c
|
|
+++ b/libcli/auth/tests/test_gnutls.c
|
|
@@ -242,12 +242,21 @@ static void torture_gnutls_des_crypt56(void **state)
|
|
|
|
uint8_t crypt[8];
|
|
uint8_t decrypt[8];
|
|
+ int rc;
|
|
|
|
des_crypt56(crypt, clear, key, 1);
|
|
assert_memory_equal(crypt, crypt_expected, 8);
|
|
|
|
des_crypt56(decrypt, crypt, key, 0);
|
|
assert_memory_equal(decrypt, clear, 8);
|
|
+
|
|
+ rc = des_crypt56_gnutls(crypt, clear, key, SAMBA_GNUTLS_ENCRYPT);
|
|
+ assert_int_equal(rc, 0);
|
|
+ assert_memory_equal(crypt, crypt_expected, 8);
|
|
+
|
|
+ rc = des_crypt56_gnutls(decrypt, crypt, key, SAMBA_GNUTLS_DECRYPT);
|
|
+ assert_int_equal(rc, 0);
|
|
+ assert_memory_equal(decrypt, clear, 8);
|
|
}
|
|
|
|
static void torture_gnutls_E_P16(void **state)
|
|
diff --git a/libcli/auth/wscript_build b/libcli/auth/wscript_build
|
|
index 8e856d07ddf..0a3de9a1f7b 100644
|
|
--- a/libcli/auth/wscript_build
|
|
+++ b/libcli/auth/wscript_build
|
|
@@ -13,7 +13,7 @@ bld.SAMBA_SUBSYSTEM('MSRPC_PARSE',
|
|
|
|
bld.SAMBA_SUBSYSTEM('NTLM_CHECK',
|
|
source='ntlm_check.c',
|
|
- deps = 'talloc'
|
|
+ deps = 'talloc LIBCLI_AUTH'
|
|
)
|
|
|
|
bld.SAMBA_SUBSYSTEM('LIBCLI_AUTH',
|
|
diff --git a/source3/passdb/wscript_build b/source3/passdb/wscript_build
|
|
index faa0cc4b495..7facc1fed79 100644
|
|
--- a/source3/passdb/wscript_build
|
|
+++ b/source3/passdb/wscript_build
|
|
@@ -10,7 +10,7 @@ bld.SAMBA3_MODULE('pdb_tdbsam',
|
|
|
|
bld.SAMBA3_MODULE('pdb_ldapsam',
|
|
subsystem='pdb',
|
|
- deps='smbldap smbldaphelper',
|
|
+ deps='smbldap smbldaphelper LIBCLI_AUTH',
|
|
source='pdb_ldap.c pdb_nds.c',
|
|
init_function='',
|
|
internal_module=bld.SAMBA3_IS_STATIC_MODULE('pdb_ldapsam'),
|
|
diff --git a/source3/rpc_server/wscript_build b/source3/rpc_server/wscript_build
|
|
index 3dec6ee3f5b..357d9c3a29f 100644
|
|
--- a/source3/rpc_server/wscript_build
|
|
+++ b/source3/rpc_server/wscript_build
|
|
@@ -86,7 +86,8 @@ bld.SAMBA3_SUBSYSTEM('RPC_NETDFS',
|
|
|
|
bld.SAMBA3_SUBSYSTEM('RPC_NETLOGON',
|
|
source='''netlogon/srv_netlog_nt.c
|
|
- ../../librpc/gen_ndr/srv_netlogon.c''')
|
|
+ ../../librpc/gen_ndr/srv_netlogon.c''',
|
|
+ deps='LIBCLI_AUTH')
|
|
|
|
bld.SAMBA3_SUBSYSTEM('RPC_NTSVCS',
|
|
source='''ntsvcs/srv_ntsvcs_nt.c
|
|
--
|
|
2.23.0
|
|
|