This repository was archived by the owner on Mar 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsixtyfour.c
279 lines (239 loc) · 7.45 KB
/
sixtyfour.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
/*
* Copyright (c) 2019 Trail of Bits, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "output.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
#include <inttypes.h>
#include <stdbool.h>
#ifndef __FILE_NAME__
#define __FILE_NAME__ "MAIN"
#endif
#include "timing.h"
#include "naive.h"
#include "multicore.h"
#include "sse.h"
#include "avx.h"
#include "avx512.h"
#include "neon.h"
#include "gpu.h"
#include "gpu_multicore.h"
enum Methods {
unknown,
naive,
avx2,
multicore,
sse4,
avx512,
neon,
gpu,
gpu_multicore
};
typedef uint64_t (*method_func_t) (uint64_t, bool*, uint64_t, uint64_t);
typedef bool (*method_available_t) (void);
typedef struct method_info_ {
enum Methods method;
method_available_t available;
const char *method_name;
const char *description;
method_func_t invoke;
} method_info_t;
method_info_t METHODS[] = {
{naive, naive_check, "naive", "Naive for loop [1 64-bit quantity per iteration]", naive_method},
{sse4, sse_check, "sse", "SSE4.1 vectorized loop [2 64-bit quantities per iteration]", sse_method},
{avx2, avx2_check, "avx2", "AVX2 vectorized loop [4 64-bit quantities per iteration]", avx2_method},
{avx512, avx512_check, "avx512", "AVX512 vectorized loop [8 64-bit quantities per iteration]", avx512_method},
{neon, neon_check, "neon", "ARM NEON vectorized loop [2 64-bit quantities per iteration]", neon_method},
{multicore, multicore_check, "multicore", "Best vectorized method in parallel on all cores", multicore_method},
{gpu, gpu_check, "gpu", "Run on all available NVIDIA GPUs", gpu_method},
{gpu_multicore, gpu_multicore_check, "gpu-multicore", "Use all available GPUs and CPUs", gpu_multicore_method},
};
static void dump_methods() {
for (unsigned i = 0; i < sizeof(METHODS) / sizeof(method_info_t); i++) {
if (METHODS[i].available()) {
printf("%-13s\n", METHODS[i].method_name);
}
}
}
static void usage(const char *pn) {
printf("Usage: %s --methods\n", pn);
printf("Usage: %s [-v] [--cpus 0,1,2,3 | --ncpu NUM] [--ngpu NUM] <method> <needle> [haystack start: default 0] [haystack end: default UINT64_MAX]\n", pn);
printf("\n");
printf("Try: %s -v naive 0xFF0000000 0x0 0xFFF000000\n", pn);
printf("Available Methods:\n");
for(unsigned i = 0; i < sizeof(METHODS)/sizeof(method_info_t); i++) {
if(METHODS[i].available()) {
printf("%-13s:\t %s\n", METHODS[i].method_name, METHODS[i].description);
}
}
}
static int parse_an_arg(const char *argv[], int idx, int argc) {
static bool set_map = false;
int args_consumed = 0;
if(idx >= argc) {
return 0;
}
if (0 == strcmp("-v", argv[idx])) {
log_output = log_stdout;
args_consumed += 1;
}
if (0 == strcmp("--methods", argv[idx])) {
dump_methods();
args_consumed += 1;
exit(0);
}
if(0 == strcmp("--cpus", argv[idx])) {
// can't use --cpus and --ncpu at once, even if this fails later
set_map = true;
if(idx + 1 >= argc) {
usage(argv[0]);
exit(1);
}
if(CPU_LIMIT > 0) {
log_error(__FILE_NAME__, "Cannot use --cpus and --ncpu together");
exit(1);
}
if(false == multicore_set_cpu_map(argv[idx+1])) {
log_error(__FILE_NAME__, "Could not set CPU map!\n");
exit(-1);
} else {
multicore_print_cpu_map();
}
args_consumed += 2;
}
if(0 == strcmp("--ncpu", argv[idx])) {
if(set_map) {
log_error(__FILE_NAME__, "Can't use --ncpu and --cpus at the same time\n");
exit(1);
}
if(idx + 1 >= argc) {
usage(argv[0]);
exit(1);
}
int cpu_limit = strtol(argv[idx+1], NULL, 0);
if(cpu_limit > 0) {
log_output(__FILE_NAME__, "Setting CPU limit to %d\n", cpu_limit);
multicore_init_cpus(cpu_limit);
}
args_consumed += 2;
}
if(0 == strcmp("--ngpu", argv[idx])) {
if(idx + 1 >= argc) {
usage(argv[0]);
exit(1);
}
int gpu_limit = strtol(argv[idx+1], NULL, 0);
if(gpu_limit > 0) {
log_output(__FILE_NAME__, "Setting GPU limit to %d\n", gpu_limit);
GPU_LIMIT = gpu_limit;
}
args_consumed += 2;
}
return args_consumed;
}
int main(int argc, const char *argv[]) {
int arg_idx = 1;
if(arg_idx >= argc) {
fprintf(stderr, "Not enough arguments [%d].\n", arg_idx);
usage(argv[0]);
return -1;
}
// use all CPUs by default
multicore_init_cpus(MAX_CPU);
int consumed = 0;
do {
consumed = parse_an_arg(argv, arg_idx, argc);
arg_idx += consumed;
} while(consumed > 0);
if(arg_idx >= argc) {
fprintf(stderr, "Not enough arguments [%d].\n", arg_idx);
usage(argv[0]);
return 1;
}
const char *method_str = argv[arg_idx];
arg_idx += 1;
if(arg_idx >= argc) {
fprintf(stderr, "Not enough arguments [%d].\n", arg_idx);
usage(argv[0]);
return 1;
}
uint64_t secret = strtoull(argv[arg_idx], NULL, 0);
if(secret == 0 && 0 == strcmp("MAX", argv[arg_idx])) {
secret = UINT64_MAX;
}
arg_idx += 1;
if(arg_idx >= argc) {
fprintf(stderr, "Not enough arguments [%d].\n", arg_idx);
usage(argv[0]);
return 1;
}
uint64_t hay_start = 0;
uint64_t hay_end = UINT64_MAX;
// init the output mutex
initialize_output();
hay_start = strtoull(argv[arg_idx], NULL, 0);
arg_idx += 1;
if(arg_idx >= argc) {
fprintf(stderr, "Not enough arguments [%d].\n", arg_idx);
usage(argv[0]);
return 1;
}
// shortcut so people don't have to count the number of Fs
if (0 == strcmp(argv[arg_idx], "MAX")) {
hay_end = UINT64_MAX;
} else {
hay_end = strtoull(argv[arg_idx], NULL, 0);
}
arg_idx += 1;
if(hay_end < hay_start) {
log_error(__FILE_NAME__, "Error: Haystack end [%" PRIx64 "] must be before haystack start [%" PRIx64 "]\n",
hay_end,
hay_start);
}
log_output(__FILE_NAME__, "Checking range from: [%016" PRIx64 "] - [%016" PRIx64 "]\n",
hay_start,
hay_end);
method_info_t *meth = NULL;
for(unsigned i = 0; i < sizeof(METHODS)/sizeof(method_info_t); i++) {
if(0 == strcmp(method_str, METHODS[i].method_name)) {
meth = &METHODS[i];
}
}
if (NULL == meth) {
log_error(__FILE_NAME__, "Method [%s] was not a known method\n",
method_str);
usage(argv[0]);
return -1;
}
log_output(__FILE_NAME__,
"Using method [%s] to look for: [0x%016" PRIx64 "]\n",
meth->method_name, secret);
uint64_t opscount = 0;
bool found = false;
gpu_get_device_info();
elapsed_time_t perf_timer;
start_timer(&perf_timer);
opscount = meth->invoke(secret, &found, hay_start, hay_end);
stop_timer(&perf_timer);
if(found) {
log_output(__FILE_NAME__, "Found secret!\n");
} else {
log_output(__FILE_NAME__, "Secret not found in search space\n");
}
show_elapsed_time(&perf_timer, opscount, meth->method_name);
return 0;
}