md4.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
  9. *
  10. * This software is licensed as described in the file COPYING, which
  11. * you should have received as part of this distribution. The terms
  12. * are also available at https://curl.se/docs/copyright.html.
  13. *
  14. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. * copies of the Software, and permit persons to whom the Software is
  16. * furnished to do so, under the terms of the COPYING file.
  17. *
  18. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. * KIND, either express or implied.
  20. *
  21. * SPDX-License-Identifier: curl
  22. *
  23. ***************************************************************************/
  24. #include "curl_setup.h"
  25. #if defined(USE_CURL_NTLM_CORE)
  26. #include <string.h>
  27. #include "strdup.h"
  28. #include "curl_md4.h"
  29. #include "warnless.h"
  30. #ifdef USE_OPENSSL
  31. #include <openssl/opensslv.h>
  32. #if (OPENSSL_VERSION_NUMBER >= 0x30000000L) && !defined(USE_AMISSL)
  33. /* OpenSSL 3.0.0 marks the MD4 functions as deprecated */
  34. #define OPENSSL_NO_MD4
  35. #endif
  36. #endif /* USE_OPENSSL */
  37. #ifdef USE_WOLFSSL
  38. #include <wolfssl/options.h>
  39. #define VOID_MD4_INIT
  40. #ifdef NO_MD4
  41. #define WOLFSSL_NO_MD4
  42. #endif
  43. #endif
  44. #ifdef USE_MBEDTLS
  45. #include <mbedtls/version.h>
  46. #if MBEDTLS_VERSION_NUMBER >= 0x03000000
  47. #include <mbedtls/mbedtls_config.h>
  48. #else
  49. #include <mbedtls/config.h>
  50. #endif
  51. #if(MBEDTLS_VERSION_NUMBER >= 0x02070000) && \
  52. (MBEDTLS_VERSION_NUMBER < 0x03000000)
  53. #define HAS_MBEDTLS_RESULT_CODE_BASED_FUNCTIONS
  54. #endif
  55. #endif /* USE_MBEDTLS */
  56. #if defined(USE_GNUTLS)
  57. #include <nettle/md4.h>
  58. /* When OpenSSL or wolfSSL is available, we use their MD4 functions. */
  59. #elif defined(USE_WOLFSSL) && !defined(WOLFSSL_NO_MD4)
  60. #include <wolfssl/openssl/md4.h>
  61. #elif defined(USE_OPENSSL) && !defined(OPENSSL_NO_MD4)
  62. #include <openssl/md4.h>
  63. #elif (defined(__MAC_OS_X_VERSION_MAX_ALLOWED) && \
  64. (__MAC_OS_X_VERSION_MAX_ALLOWED >= 1040) && \
  65. defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && \
  66. (__MAC_OS_X_VERSION_MIN_REQUIRED < 101500)) || \
  67. (defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && \
  68. (__IPHONE_OS_VERSION_MAX_ALLOWED >= 20000) && \
  69. defined(__IPHONE_OS_VERSION_MIN_REQUIRED) && \
  70. (__IPHONE_OS_VERSION_MIN_REQUIRED < 130000))
  71. #define AN_APPLE_OS
  72. #include <CommonCrypto/CommonDigest.h>
  73. #elif defined(USE_WIN32_CRYPTO)
  74. #include <wincrypt.h>
  75. #elif(defined(USE_MBEDTLS) && defined(MBEDTLS_MD4_C))
  76. #include <mbedtls/md4.h>
  77. #endif
  78. /* The last 3 #include files should be in this order */
  79. #include "curl_printf.h"
  80. #include "curl_memory.h"
  81. #include "memdebug.h"
  82. #if defined(USE_GNUTLS)
  83. typedef struct md4_ctx MD4_CTX;
  84. static int MD4_Init(MD4_CTX *ctx)
  85. {
  86. md4_init(ctx);
  87. return 1;
  88. }
  89. static void MD4_Update(MD4_CTX *ctx, const void *data, unsigned long size)
  90. {
  91. md4_update(ctx, size, data);
  92. }
  93. static void MD4_Final(unsigned char *result, MD4_CTX *ctx)
  94. {
  95. md4_digest(ctx, MD4_DIGEST_SIZE, result);
  96. }
  97. #elif defined(USE_WOLFSSL) && !defined(WOLFSSL_NO_MD4)
  98. #elif defined(USE_OPENSSL) && !defined(OPENSSL_NO_MD4)
  99. #elif defined(AN_APPLE_OS)
  100. typedef CC_MD4_CTX MD4_CTX;
  101. static int MD4_Init(MD4_CTX *ctx)
  102. {
  103. return CC_MD4_Init(ctx);
  104. }
  105. static void MD4_Update(MD4_CTX *ctx, const void *data, unsigned long size)
  106. {
  107. (void)CC_MD4_Update(ctx, data, (CC_LONG)size);
  108. }
  109. static void MD4_Final(unsigned char *result, MD4_CTX *ctx)
  110. {
  111. (void)CC_MD4_Final(result, ctx);
  112. }
  113. #elif defined(USE_WIN32_CRYPTO)
  114. struct md4_ctx {
  115. HCRYPTPROV hCryptProv;
  116. HCRYPTHASH hHash;
  117. };
  118. typedef struct md4_ctx MD4_CTX;
  119. static int MD4_Init(MD4_CTX *ctx)
  120. {
  121. ctx->hCryptProv = 0;
  122. ctx->hHash = 0;
  123. if(!CryptAcquireContext(&ctx->hCryptProv, NULL, NULL, PROV_RSA_FULL,
  124. CRYPT_VERIFYCONTEXT | CRYPT_SILENT))
  125. return 0;
  126. if(!CryptCreateHash(ctx->hCryptProv, CALG_MD4, 0, 0, &ctx->hHash)) {
  127. CryptReleaseContext(ctx->hCryptProv, 0);
  128. ctx->hCryptProv = 0;
  129. return 0;
  130. }
  131. return 1;
  132. }
  133. static void MD4_Update(MD4_CTX *ctx, const void *data, unsigned long size)
  134. {
  135. CryptHashData(ctx->hHash, (BYTE *)data, (unsigned int) size, 0);
  136. }
  137. static void MD4_Final(unsigned char *result, MD4_CTX *ctx)
  138. {
  139. unsigned long length = 0;
  140. CryptGetHashParam(ctx->hHash, HP_HASHVAL, NULL, &length, 0);
  141. if(length == MD4_DIGEST_LENGTH)
  142. CryptGetHashParam(ctx->hHash, HP_HASHVAL, result, &length, 0);
  143. if(ctx->hHash)
  144. CryptDestroyHash(ctx->hHash);
  145. if(ctx->hCryptProv)
  146. CryptReleaseContext(ctx->hCryptProv, 0);
  147. }
  148. #elif(defined(USE_MBEDTLS) && defined(MBEDTLS_MD4_C))
  149. struct md4_ctx {
  150. void *data;
  151. unsigned long size;
  152. };
  153. typedef struct md4_ctx MD4_CTX;
  154. static int MD4_Init(MD4_CTX *ctx)
  155. {
  156. ctx->data = NULL;
  157. ctx->size = 0;
  158. return 1;
  159. }
  160. static void MD4_Update(MD4_CTX *ctx, const void *data, unsigned long size)
  161. {
  162. if(!ctx->data) {
  163. ctx->data = Curl_memdup(data, size);
  164. if(ctx->data)
  165. ctx->size = size;
  166. }
  167. }
  168. static void MD4_Final(unsigned char *result, MD4_CTX *ctx)
  169. {
  170. if(ctx->data) {
  171. #if !defined(HAS_MBEDTLS_RESULT_CODE_BASED_FUNCTIONS)
  172. mbedtls_md4(ctx->data, ctx->size, result);
  173. #else
  174. (void) mbedtls_md4_ret(ctx->data, ctx->size, result);
  175. #endif
  176. Curl_safefree(ctx->data);
  177. ctx->size = 0;
  178. }
  179. }
  180. #else
  181. /* When no other crypto library is available, or the crypto library doesn't
  182. * support MD4, we use this code segment this implementation of it
  183. *
  184. * This is an OpenSSL-compatible implementation of the RSA Data Security, Inc.
  185. * MD4 Message-Digest Algorithm (RFC 1320).
  186. *
  187. * Homepage:
  188. https://openwall.info/wiki/people/solar/software/public-domain-source-code/md4
  189. *
  190. * Author:
  191. * Alexander Peslyak, better known as Solar Designer <solar at openwall.com>
  192. *
  193. * This software was written by Alexander Peslyak in 2001. No copyright is
  194. * claimed, and the software is hereby placed in the public domain. In case
  195. * this attempt to disclaim copyright and place the software in the public
  196. * domain is deemed null and void, then the software is Copyright (c) 2001
  197. * Alexander Peslyak and it is hereby released to the general public under the
  198. * following terms:
  199. *
  200. * Redistribution and use in source and binary forms, with or without
  201. * modification, are permitted.
  202. *
  203. * There's ABSOLUTELY NO WARRANTY, express or implied.
  204. *
  205. * (This is a heavily cut-down "BSD license".)
  206. *
  207. * This differs from Colin Plumb's older public domain implementation in that
  208. * no exactly 32-bit integer data type is required (any 32-bit or wider
  209. * unsigned integer data type will do), there's no compile-time endianness
  210. * configuration, and the function prototypes match OpenSSL's. No code from
  211. * Colin Plumb's implementation has been reused; this comment merely compares
  212. * the properties of the two independent implementations.
  213. *
  214. * The primary goals of this implementation are portability and ease of use.
  215. * It is meant to be fast, but not as fast as possible. Some known
  216. * optimizations are not included to reduce source code size and avoid
  217. * compile-time configuration.
  218. */
  219. /* Any 32-bit or wider unsigned integer data type will do */
  220. typedef unsigned int MD4_u32plus;
  221. struct md4_ctx {
  222. MD4_u32plus lo, hi;
  223. MD4_u32plus a, b, c, d;
  224. unsigned char buffer[64];
  225. MD4_u32plus block[16];
  226. };
  227. typedef struct md4_ctx MD4_CTX;
  228. static int MD4_Init(MD4_CTX *ctx);
  229. static void MD4_Update(MD4_CTX *ctx, const void *data, unsigned long size);
  230. static void MD4_Final(unsigned char *result, MD4_CTX *ctx);
  231. /*
  232. * The basic MD4 functions.
  233. *
  234. * F and G are optimized compared to their RFC 1320 definitions, with the
  235. * optimization for F borrowed from Colin Plumb's MD5 implementation.
  236. */
  237. #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z))))
  238. #define G(x, y, z) (((x) & ((y) | (z))) | ((y) & (z)))
  239. #define H(x, y, z) ((x) ^ (y) ^ (z))
  240. /*
  241. * The MD4 transformation for all three rounds.
  242. */
  243. #define STEP(f, a, b, c, d, x, s) \
  244. (a) += f((b), (c), (d)) + (x); \
  245. (a) = (((a) << (s)) | (((a) & 0xffffffff) >> (32 - (s))));
  246. /*
  247. * SET reads 4 input bytes in little-endian byte order and stores them
  248. * in a properly aligned word in host byte order.
  249. *
  250. * The check for little-endian architectures that tolerate unaligned
  251. * memory accesses is just an optimization. Nothing will break if it
  252. * doesn't work.
  253. */
  254. #if defined(__i386__) || defined(__x86_64__) || defined(__vax__)
  255. #define SET(n) \
  256. (*(MD4_u32plus *)(void *)&ptr[(n) * 4])
  257. #define GET(n) \
  258. SET(n)
  259. #else
  260. #define SET(n) \
  261. (ctx->block[(n)] = \
  262. (MD4_u32plus)ptr[(n) * 4] | \
  263. ((MD4_u32plus)ptr[(n) * 4 + 1] << 8) | \
  264. ((MD4_u32plus)ptr[(n) * 4 + 2] << 16) | \
  265. ((MD4_u32plus)ptr[(n) * 4 + 3] << 24))
  266. #define GET(n) \
  267. (ctx->block[(n)])
  268. #endif
  269. /*
  270. * This processes one or more 64-byte data blocks, but does NOT update
  271. * the bit counters. There are no alignment requirements.
  272. */
  273. static const void *body(MD4_CTX *ctx, const void *data, unsigned long size)
  274. {
  275. const unsigned char *ptr;
  276. MD4_u32plus a, b, c, d;
  277. ptr = (const unsigned char *)data;
  278. a = ctx->a;
  279. b = ctx->b;
  280. c = ctx->c;
  281. d = ctx->d;
  282. do {
  283. MD4_u32plus saved_a, saved_b, saved_c, saved_d;
  284. saved_a = a;
  285. saved_b = b;
  286. saved_c = c;
  287. saved_d = d;
  288. /* Round 1 */
  289. STEP(F, a, b, c, d, SET(0), 3)
  290. STEP(F, d, a, b, c, SET(1), 7)
  291. STEP(F, c, d, a, b, SET(2), 11)
  292. STEP(F, b, c, d, a, SET(3), 19)
  293. STEP(F, a, b, c, d, SET(4), 3)
  294. STEP(F, d, a, b, c, SET(5), 7)
  295. STEP(F, c, d, a, b, SET(6), 11)
  296. STEP(F, b, c, d, a, SET(7), 19)
  297. STEP(F, a, b, c, d, SET(8), 3)
  298. STEP(F, d, a, b, c, SET(9), 7)
  299. STEP(F, c, d, a, b, SET(10), 11)
  300. STEP(F, b, c, d, a, SET(11), 19)
  301. STEP(F, a, b, c, d, SET(12), 3)
  302. STEP(F, d, a, b, c, SET(13), 7)
  303. STEP(F, c, d, a, b, SET(14), 11)
  304. STEP(F, b, c, d, a, SET(15), 19)
  305. /* Round 2 */
  306. STEP(G, a, b, c, d, GET(0) + 0x5a827999, 3)
  307. STEP(G, d, a, b, c, GET(4) + 0x5a827999, 5)
  308. STEP(G, c, d, a, b, GET(8) + 0x5a827999, 9)
  309. STEP(G, b, c, d, a, GET(12) + 0x5a827999, 13)
  310. STEP(G, a, b, c, d, GET(1) + 0x5a827999, 3)
  311. STEP(G, d, a, b, c, GET(5) + 0x5a827999, 5)
  312. STEP(G, c, d, a, b, GET(9) + 0x5a827999, 9)
  313. STEP(G, b, c, d, a, GET(13) + 0x5a827999, 13)
  314. STEP(G, a, b, c, d, GET(2) + 0x5a827999, 3)
  315. STEP(G, d, a, b, c, GET(6) + 0x5a827999, 5)
  316. STEP(G, c, d, a, b, GET(10) + 0x5a827999, 9)
  317. STEP(G, b, c, d, a, GET(14) + 0x5a827999, 13)
  318. STEP(G, a, b, c, d, GET(3) + 0x5a827999, 3)
  319. STEP(G, d, a, b, c, GET(7) + 0x5a827999, 5)
  320. STEP(G, c, d, a, b, GET(11) + 0x5a827999, 9)
  321. STEP(G, b, c, d, a, GET(15) + 0x5a827999, 13)
  322. /* Round 3 */
  323. STEP(H, a, b, c, d, GET(0) + 0x6ed9eba1, 3)
  324. STEP(H, d, a, b, c, GET(8) + 0x6ed9eba1, 9)
  325. STEP(H, c, d, a, b, GET(4) + 0x6ed9eba1, 11)
  326. STEP(H, b, c, d, a, GET(12) + 0x6ed9eba1, 15)
  327. STEP(H, a, b, c, d, GET(2) + 0x6ed9eba1, 3)
  328. STEP(H, d, a, b, c, GET(10) + 0x6ed9eba1, 9)
  329. STEP(H, c, d, a, b, GET(6) + 0x6ed9eba1, 11)
  330. STEP(H, b, c, d, a, GET(14) + 0x6ed9eba1, 15)
  331. STEP(H, a, b, c, d, GET(1) + 0x6ed9eba1, 3)
  332. STEP(H, d, a, b, c, GET(9) + 0x6ed9eba1, 9)
  333. STEP(H, c, d, a, b, GET(5) + 0x6ed9eba1, 11)
  334. STEP(H, b, c, d, a, GET(13) + 0x6ed9eba1, 15)
  335. STEP(H, a, b, c, d, GET(3) + 0x6ed9eba1, 3)
  336. STEP(H, d, a, b, c, GET(11) + 0x6ed9eba1, 9)
  337. STEP(H, c, d, a, b, GET(7) + 0x6ed9eba1, 11)
  338. STEP(H, b, c, d, a, GET(15) + 0x6ed9eba1, 15)
  339. a += saved_a;
  340. b += saved_b;
  341. c += saved_c;
  342. d += saved_d;
  343. ptr += 64;
  344. } while(size -= 64);
  345. ctx->a = a;
  346. ctx->b = b;
  347. ctx->c = c;
  348. ctx->d = d;
  349. return ptr;
  350. }
  351. static int MD4_Init(MD4_CTX *ctx)
  352. {
  353. ctx->a = 0x67452301;
  354. ctx->b = 0xefcdab89;
  355. ctx->c = 0x98badcfe;
  356. ctx->d = 0x10325476;
  357. ctx->lo = 0;
  358. ctx->hi = 0;
  359. return 1;
  360. }
  361. static void MD4_Update(MD4_CTX *ctx, const void *data, unsigned long size)
  362. {
  363. MD4_u32plus saved_lo;
  364. unsigned long used;
  365. saved_lo = ctx->lo;
  366. ctx->lo = (saved_lo + size) & 0x1fffffff;
  367. if(ctx->lo < saved_lo)
  368. ctx->hi++;
  369. ctx->hi += (MD4_u32plus)size >> 29;
  370. used = saved_lo & 0x3f;
  371. if(used) {
  372. unsigned long available = 64 - used;
  373. if(size < available) {
  374. memcpy(&ctx->buffer[used], data, size);
  375. return;
  376. }
  377. memcpy(&ctx->buffer[used], data, available);
  378. data = (const unsigned char *)data + available;
  379. size -= available;
  380. body(ctx, ctx->buffer, 64);
  381. }
  382. if(size >= 64) {
  383. data = body(ctx, data, size & ~(unsigned long)0x3f);
  384. size &= 0x3f;
  385. }
  386. memcpy(ctx->buffer, data, size);
  387. }
  388. static void MD4_Final(unsigned char *result, MD4_CTX *ctx)
  389. {
  390. unsigned long used, available;
  391. used = ctx->lo & 0x3f;
  392. ctx->buffer[used++] = 0x80;
  393. available = 64 - used;
  394. if(available < 8) {
  395. memset(&ctx->buffer[used], 0, available);
  396. body(ctx, ctx->buffer, 64);
  397. used = 0;
  398. available = 64;
  399. }
  400. memset(&ctx->buffer[used], 0, available - 8);
  401. ctx->lo <<= 3;
  402. ctx->buffer[56] = curlx_ultouc((ctx->lo)&0xff);
  403. ctx->buffer[57] = curlx_ultouc((ctx->lo >> 8)&0xff);
  404. ctx->buffer[58] = curlx_ultouc((ctx->lo >> 16)&0xff);
  405. ctx->buffer[59] = curlx_ultouc((ctx->lo >> 24)&0xff);
  406. ctx->buffer[60] = curlx_ultouc((ctx->hi)&0xff);
  407. ctx->buffer[61] = curlx_ultouc((ctx->hi >> 8)&0xff);
  408. ctx->buffer[62] = curlx_ultouc((ctx->hi >> 16)&0xff);
  409. ctx->buffer[63] = curlx_ultouc(ctx->hi >> 24);
  410. body(ctx, ctx->buffer, 64);
  411. result[0] = curlx_ultouc((ctx->a)&0xff);
  412. result[1] = curlx_ultouc((ctx->a >> 8)&0xff);
  413. result[2] = curlx_ultouc((ctx->a >> 16)&0xff);
  414. result[3] = curlx_ultouc(ctx->a >> 24);
  415. result[4] = curlx_ultouc((ctx->b)&0xff);
  416. result[5] = curlx_ultouc((ctx->b >> 8)&0xff);
  417. result[6] = curlx_ultouc((ctx->b >> 16)&0xff);
  418. result[7] = curlx_ultouc(ctx->b >> 24);
  419. result[8] = curlx_ultouc((ctx->c)&0xff);
  420. result[9] = curlx_ultouc((ctx->c >> 8)&0xff);
  421. result[10] = curlx_ultouc((ctx->c >> 16)&0xff);
  422. result[11] = curlx_ultouc(ctx->c >> 24);
  423. result[12] = curlx_ultouc((ctx->d)&0xff);
  424. result[13] = curlx_ultouc((ctx->d >> 8)&0xff);
  425. result[14] = curlx_ultouc((ctx->d >> 16)&0xff);
  426. result[15] = curlx_ultouc(ctx->d >> 24);
  427. memset(ctx, 0, sizeof(*ctx));
  428. }
  429. #endif /* CRYPTO LIBS */
  430. CURLcode Curl_md4it(unsigned char *output, const unsigned char *input,
  431. const size_t len)
  432. {
  433. MD4_CTX ctx;
  434. #ifdef VOID_MD4_INIT
  435. MD4_Init(&ctx);
  436. #else
  437. if(!MD4_Init(&ctx))
  438. return CURLE_FAILED_INIT;
  439. #endif
  440. MD4_Update(&ctx, input, curlx_uztoui(len));
  441. MD4_Final(output, &ctx);
  442. return CURLE_OK;
  443. }
  444. #endif /* USE_CURL_NTLM_CORE */