]> git.proxmox.com Git - ceph.git/blob - ceph/src/crypto/isa-l/isa-l_crypto/sha512_mb/sha512_mb_vs_ossl_perf.c
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / crypto / isa-l / isa-l_crypto / sha512_mb / sha512_mb_vs_ossl_perf.c
1 /**********************************************************************
2 Copyright(c) 2011-2016 Intel Corporation All rights reserved.
3
4 Redistribution and use in source and binary forms, with or without
5 modification, are permitted provided that the following conditions
6 are met:
7 * Redistributions of source code must retain the above copyright
8 notice, this list of conditions and the following disclaimer.
9 * Redistributions in binary form must reproduce the above copyright
10 notice, this list of conditions and the following disclaimer in
11 the documentation and/or other materials provided with the
12 distribution.
13 * Neither the name of Intel Corporation nor the names of its
14 contributors may be used to endorse or promote products derived
15 from this software without specific prior written permission.
16
17 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 **********************************************************************/
29
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <openssl/sha.h>
33 #include "sha512_mb.h"
34 #include "test.h"
35
36 // Set number of outstanding jobs
37 #define TEST_BUFS 32
38
39 #ifdef CACHED_TEST
40 // Loop many times over same data
41 # define TEST_LEN 4*1024
42 # define TEST_LOOPS 1000
43 # define TEST_TYPE_STR "_warm"
44 #else
45 // Uncached test. Pull from large mem base.
46 # define GT_L3_CACHE 32*1024*1024 /* some number > last level cache */
47 # define TEST_LEN (GT_L3_CACHE / TEST_BUFS)
48 # define TEST_LOOPS 10
49 # define TEST_TYPE_STR "_cold"
50 #endif
51
52 #define TEST_MEM TEST_LEN * TEST_BUFS * TEST_LOOPS
53
54 /* Reference digest global to reduce stack usage */
55 static uint8_t digest_ssl[TEST_BUFS][8 * SHA512_DIGEST_NWORDS];
56
57 int main(void)
58 {
59 SHA512_HASH_CTX_MGR *mgr = NULL;
60 SHA512_HASH_CTX ctxpool[TEST_BUFS];
61 unsigned char *bufs[TEST_BUFS];
62 uint32_t i, j, t, fail = 0;
63 struct perf start, stop;
64
65 for (i = 0; i < TEST_BUFS; i++) {
66 bufs[i] = (unsigned char *)calloc((size_t)TEST_LEN, 1);
67 if (bufs[i] == NULL) {
68 printf("calloc failed test aborted\n");
69 return 1;
70 }
71 // Init ctx contents
72 hash_ctx_init(&ctxpool[i]);
73 ctxpool[i].user_data = (void *)((uint64_t) i);
74 }
75
76 int ret = posix_memalign((void *)&mgr, 16, sizeof(SHA512_HASH_CTX_MGR));
77 if (ret) {
78 printf("alloc error: Fail");
79 return -1;
80 }
81 sha512_ctx_mgr_init(mgr);
82
83 // Start OpenSSL tests
84 perf_start(&start);
85 for (t = 0; t < TEST_LOOPS; t++) {
86 for (i = 0; i < TEST_BUFS; i++)
87 SHA512(bufs[i], TEST_LEN, digest_ssl[i]);
88 }
89 perf_stop(&stop);
90
91 printf("sha512_openssl" TEST_TYPE_STR ": ");
92 perf_print(stop, start, (long long)TEST_LEN * i * t);
93
94 // Start mb tests
95 perf_start(&start);
96 for (t = 0; t < TEST_LOOPS; t++) {
97 for (i = 0; i < TEST_BUFS; i++)
98 sha512_ctx_mgr_submit(mgr,
99 &ctxpool[i], bufs[i], TEST_LEN, HASH_ENTIRE);
100
101 while (sha512_ctx_mgr_flush(mgr)) ;
102 }
103 perf_stop(&stop);
104
105 printf("multibinary_sha512" TEST_TYPE_STR ": ");
106 perf_print(stop, start, (long long)TEST_LEN * i * t);
107
108 for (i = 0; i < TEST_BUFS; i++) {
109 for (j = 0; j < SHA512_DIGEST_NWORDS; j++) {
110 if (ctxpool[i].job.result_digest[j] !=
111 to_be64(((uint64_t *) digest_ssl[i])[j])) {
112 fail++;
113 printf("Test%d, digest%d fail %016lX <=> %016lX\n",
114 i, j, ctxpool[i].job.result_digest[j],
115 to_be64(((uint64_t *) digest_ssl[i])[j]));
116 }
117 }
118 }
119
120 printf("Multi-buffer sha512 test complete %d buffers of %d B with "
121 "%d iterations\n", TEST_BUFS, TEST_LEN, TEST_LOOPS);
122
123 if (fail)
124 printf("Test failed function check %d\n", fail);
125 else
126 printf("multibinary_sha512_ossl_perf: Pass\n");
127
128 return fail;
129 }