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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
|
/*
* (C) 2009 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
/*
Validation routines
*/
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <cstdlib>
#include <botan/filters.h>
#include <botan/exceptn.h>
#include <botan/selftest.h>
#include <botan/libstate.h>
#if defined(BOTAN_HAS_PASSHASH9)
#include <botan/passhash9.h>
#endif
#if defined(BOTAN_HAS_CRYPTO_BOX)
#include <botan/cryptobox.h>
#endif
using namespace Botan;
#include "validate.h"
#include "common.h"
#define EXTRA_TESTS 0
#define DEBUG 0
namespace {
u32bit random_word(Botan::RandomNumberGenerator& rng,
u32bit max)
{
#if DEBUG
/* deterministic version for tracking down buffering bugs */
static bool first = true;
if(first) { srand(5); first = false; }
u32bit r = 0;
for(u32bit j = 0; j != 4; j++)
r = (r << 8) | std::rand();
return ((r % max) + 1); // return between 1 and max inclusive
#else
/* normal version */
u32bit r = 0;
for(u32bit j = 0; j != 4; j++)
r = (r << 8) | rng.next_byte();
return ((r % max) + 1); // return between 1 and max inclusive
#endif
}
bool test_cryptobox(RandomNumberGenerator& rng)
{
#if defined(BOTAN_HAS_CRYPTO_BOX)
std::cout << "Testing CryptoBox: " << std::flush;
const byte msg[] = { 0xAA, 0xBB, 0xCC };
std::string ciphertext = CryptoBox::encrypt(msg, sizeof(msg),
"secret password",
rng);
std::cout << "." << std::flush;
try
{
std::string plaintext = CryptoBox::decrypt(ciphertext,
"secret password");
std::cout << "." << std::flush;
if(plaintext.size() != sizeof(msg) ||
!same_mem(reinterpret_cast<const byte*>(&plaintext[0]), msg, sizeof(msg)))
return false;
std::cout << std::endl;
}
catch(std::exception& e)
{
std::cout << "Error during Cryptobox test " << e.what() << "\n";
return false;
}
#endif
return true;
}
bool test_passhash(RandomNumberGenerator& rng)
{
#if defined(BOTAN_HAS_PASSHASH9)
std::cout << "Testing Password Hashing: " << std::flush;
const std::string input = "secret";
const std::string fixed_hash =
"$9$AAAKhiHXTIUhNhbegwBXJvk03XXJdzFMy+i3GFMIBYKtthTTmXZA";
std::cout << "." << std::flush;
if(!check_passhash9(input, fixed_hash))
return false;
std::cout << "." << std::flush;
for(byte alg_id = 0; alg_id <= 2; ++alg_id)
{
std::string gen_hash = generate_passhash9(input, alg_id, rng, 1);
if(!check_passhash9(input, gen_hash))
return false;
std::cout << "." << std::flush;
}
std::cout << std::endl;
#endif
return true;
}
}
bool failed_test(const std::string&, std::vector<std::string>, bool, bool,
std::string&,
Botan::RandomNumberGenerator& rng);
std::vector<std::string> parse(const std::string&);
void strip(std::string&);
u32bit do_validation_tests(const std::string& filename,
RandomNumberGenerator& rng,
bool should_pass)
{
std::ifstream test_data(filename.c_str());
bool first_mark = true;
if(!test_data)
throw Botan::Stream_IO_Error("Couldn't open test file " + filename);
u32bit errors = 0, alg_count = 0;
std::string algorithm;
std::string section;
std::string last_missing;
bool is_extension = false;
u32bit counter = 0;
while(!test_data.eof())
{
if(test_data.bad() || test_data.fail())
throw Botan::Stream_IO_Error("File I/O error reading from " +
filename);
std::string line;
std::getline(test_data, line);
const std::string MARK = "# MARKER: ";
if(line.find(MARK) != std::string::npos)
{
if(first_mark)
first_mark = false;
else if(should_pass)
std::cout << std::endl;
counter = 0;
section = line;
section.replace(section.find(MARK), MARK.size(), "");
if(should_pass)
std::cout << "Testing " << section << ": ";
}
strip(line);
if(line.size() == 0) continue;
// Do line continuation
while(line[line.size()-1] == '\\' && !test_data.eof())
{
line.replace(line.size()-1, 1, "");
std::string nextline;
std::getline(test_data, nextline);
strip(nextline);
if(nextline.size() == 0) continue;
line += nextline;
}
if(line[0] == '[' && line[line.size() - 1] == ']')
{
const std::string ext_mark = "<EXTENSION>";
algorithm = line.substr(1, line.size() - 2);
is_extension = false;
if(algorithm.find(ext_mark) != std::string::npos)
{
is_extension = true;
algorithm.replace(algorithm.find(ext_mark),
ext_mark.length(), "");
}
#if DEBUG
if(should_pass)
std::cout << "Testing " << algorithm << "..." << std::endl;
else
std::cout << "Testing (expecing failure) "
<< algorithm << "..." << std::endl;
#endif
alg_count = 0;
continue;
}
std::vector<std::string> substr = parse(line);
alg_count++;
if(should_pass &&
(counter % 100 == 0 || (counter < 100 && counter % 10 == 0)))
{
std::cout << '.';
std::cout.flush();
}
counter++;
bool failed = true; // until proven otherwise
try
{
failed = failed_test(algorithm, substr,
is_extension, should_pass,
last_missing, rng);
}
catch(std::exception& e)
{
std::cout << "Exception: " << e.what() << "\n";
}
if(failed && should_pass)
{
std::cout << "ERROR: \"" << algorithm << "\" failed test #"
<< alg_count << std::endl;
errors++;
}
if(!failed && !should_pass)
{
std::cout << "ERROR: \"" << algorithm << "\" passed test #"
<< alg_count << " (unexpected pass)" << std::endl;
errors++;
}
}
if(should_pass)
std::cout << std::endl;
if(should_pass && !test_passhash(rng))
{
std::cout << "Passhash9 tests failed" << std::endl;
errors++;
}
if(should_pass && !test_cryptobox(rng))
{
std::cout << "Cryptobox tests failed" << std::endl;
errors++;
}
return errors;
}
bool failed_test(const std::string& algo,
std::vector<std::string> params,
bool is_extension, bool exp_pass,
std::string& last_missing,
Botan::RandomNumberGenerator& rng)
{
#if !EXTRA_TESTS
if(!exp_pass) return true;
#endif
std::map<std::string, std::string> vars;
vars["input"] = params[0];
vars["output"] = params[1];
if(params.size() > 2)
vars["key"] = params[2];
if(params.size() > 3)
vars["iv"] = params[3];
std::map<std::string, bool> results =
algorithm_kat(algo, vars, global_state().algorithm_factory());
if(results.size())
{
for(std::map<std::string, bool>::const_iterator i = results.begin();
i != results.end(); ++i)
{
if(i->second == false)
{
std::cout << algo << " test with provider "
<< i->first << " failed\n";
return true;
}
}
return false; // OK
}
const std::string in = params[0];
const std::string expected = params[1];
params.erase(params.begin());
params.erase(params.begin());
if(in.size() % 2 == 1)
{
std::cout << "Can't have an odd sized hex string!" << std::endl;
return true;
}
Botan::Pipe pipe;
try {
Botan::Filter* test = lookup(algo, params);
if(test == 0 && is_extension) return !exp_pass;
if(test == 0)
{
if(algo != last_missing)
{
std::cout << "WARNING: \"" + algo + "\" is not a known "
<< "algorithm name." << std::endl;
last_missing = algo;
}
return 0;
}
pipe.reset();
pipe.append(test);
pipe.append(new Botan::Hex_Encoder);
Botan::SecureVector<byte> data = Botan::hex_decode(in);
const byte* data_ptr = &data[0];
// this can help catch errors with buffering, etc
size_t len = data.size();
pipe.start_msg();
while(len)
{
u32bit how_much = random_word(rng, len);
pipe.write(data_ptr, how_much);
data_ptr += how_much;
len -= how_much;
}
pipe.end_msg();
}
catch(Botan::Algorithm_Not_Found& e)
{
std::cout << "Algorithm not found: " << e.what() << std::endl;
return false;
}
catch(Botan::Exception& e)
{
if(exp_pass || DEBUG)
std::cout << "Exception caught: " << e.what() << std::endl;
return true;
}
catch(std::exception& e)
{
if(exp_pass || DEBUG)
std::cout << "Standard library exception caught: "
<< e.what() << std::endl;
return true;
}
catch(...)
{
if(exp_pass || DEBUG)
std::cout << "Unknown exception caught." << std::endl;
return true;
}
std::string output;
if(pipe.remaining())
{
/* Test peeking at an offset in Pipe/SecureQueue */
size_t offset = random_word(rng, pipe.remaining() - 1);
size_t length = random_word(rng, pipe.remaining() - offset);
Botan::SecureVector<byte> peekbuf(length);
pipe.peek(&peekbuf[0], peekbuf.size(), offset);
output = pipe.read_all_as_string();
bool OK = true;
for(size_t j = offset; j != offset+length; j++)
if(static_cast<byte>(output[j]) != peekbuf[j-offset])
OK = false;
if(!OK)
throw Botan::Self_Test_Failure("Peek testing failed in validate.cpp");
}
if(output == expected && !exp_pass)
{
std::cout << "FAILED: " << expected << " == " << std::endl
<< " " << output << std::endl;
return false;
}
if(output != expected && exp_pass)
{
std::cout << "\nFAILED: " << expected << " != " << std::endl
<< " " << output << std::endl;
return true;
}
if(output != expected && !exp_pass) return true;
return false;
}
|