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
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
|
/*
* (C) 2009,2010,2014,2015 Jack Lloyd
* (C) 2017 René Korthaus, Rohde & Schwarz Cybersecurity
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include "cli.h"
#include <botan/version.h>
#include <botan/rng.h>
#include <botan/cpuid.h>
#include <botan/hex.h>
#include <botan/parsing.h>
#include <botan/internal/stl_util.h>
#include <sstream>
#include <iterator>
#include <iomanip>
#if defined(BOTAN_HAS_HASH)
#include <botan/hash.h>
#endif
#if defined(BOTAN_HAS_MAC)
#include <botan/mac.h>
#endif
#if defined(BOTAN_HAS_BASE64_CODEC)
#include <botan/base64.h>
#endif
#if defined(BOTAN_HAS_HTTP_UTIL)
#include <botan/http_util.h>
#endif
#if defined(BOTAN_HAS_BCRYPT)
#include <botan/bcrypt.h>
#endif
namespace Botan_CLI {
class Print_Help final : public Command
{
public:
Print_Help() : Command("help") {}
std::string help_text() const override
{
std::map<std::string, std::vector<std::unique_ptr<Command>>> grouped_commands;
auto reg_commands = Command::registered_cmds();
for(const auto& cmd_name : reg_commands)
{
auto cmd = Command::get_cmd(cmd_name);
if(cmd)
{
grouped_commands[cmd->group()].push_back(std::move(cmd));
}
}
const std::map<std::string, std::string> groups_description {
{ "encryption", "Encryption" },
{ "compression", "Compression" },
{ "codec", "Encoders/Decoders" },
{ "hash", "Hash Functions" },
{ "hmac", "HMAC" },
{ "info", "Informational" },
{ "numtheory", "Number Theory" },
{ "passhash", "Password Hashing" },
{ "psk", "PSK Database" },
{ "pubkey", "Public Key Cryptography" },
{ "tls", "TLS" },
{ "x509", "X.509" },
{ "misc", "Miscellaneous" }
};
std::ostringstream oss;
oss << "Usage: botan <cmd> <cmd-options>\n";
oss << "All commands support --verbose --help --output= --error-output= --rng-type= --drbg-seed=\n\n";
oss << "Available commands:\n\n";
for(const auto& commands : grouped_commands)
{
std::string desc = commands.first;
if(desc.empty())
{
continue;
}
oss << Botan::search_map(groups_description, desc, desc) << ":\n";
for(auto& cmd : commands.second)
{
oss << " " << std::setw(16) << std::left << cmd->cmd_name() << " " << cmd->description() << "\n";
}
oss << "\n";
}
return oss.str();
}
std::string group() const override
{
return "";
}
std::string description() const override
{
return "Prints a help string";
}
void go() override
{
this->set_return_code(1);
output() << help_text();
}
};
BOTAN_REGISTER_COMMAND("help", Print_Help);
class Has_Command final : public Command
{
public:
Has_Command() : Command("has_command cmd") {}
std::string group() const override
{
return "info";
}
std::string description() const override
{
return "Test if a command is available";
}
void go() override
{
const std::string cmd = get_arg("cmd");
bool exists = false;
for(auto registered_cmd : Command::registered_cmds())
{
if(cmd == registered_cmd)
{
exists = true;
break;
}
}
if(verbose())
{
output() << "Command '" << cmd << "' is "
<< (exists ? "": "not ") << "available\n";
}
if(exists == false)
this->set_return_code(1);
}
};
BOTAN_REGISTER_COMMAND("has_command", Has_Command);
class Config_Info final : public Command
{
public:
Config_Info() : Command("config info_type") {}
std::string help_text() const override
{
return "Usage: config info_type\n"
" prefix: Print install prefix\n"
" cflags: Print include params\n"
" ldflags: Print linker params\n"
" libs: Print libraries\n";
}
std::string group() const override
{
return "info";
}
std::string description() const override
{
return "Print the used prefix, cflags, ldflags or libs";
}
void go() override
{
const std::string arg = get_arg("info_type");
if(arg == "prefix")
{
output() << BOTAN_INSTALL_PREFIX << "\n";
}
else if(arg == "cflags")
{
output() << "-I" << BOTAN_INSTALL_PREFIX << "/" << BOTAN_INSTALL_HEADER_DIR << "\n";
}
else if(arg == "ldflags")
{
if(*BOTAN_LINK_FLAGS)
output() << BOTAN_LINK_FLAGS << ' ';
output() << "-L" << BOTAN_INSTALL_PREFIX << "/" << BOTAN_INSTALL_LIB_DIR << "\n";
}
else if(arg == "libs")
{
output() << "-lbotan-" << Botan::version_major() << " " << BOTAN_LIB_LINK << "\n";
}
else
{
throw CLI_Usage_Error("Unknown option to botan config " + arg);
}
}
};
BOTAN_REGISTER_COMMAND("config", Config_Info);
class Version_Info final : public Command
{
public:
Version_Info() : Command("version --full") {}
std::string group() const override
{
return "info";
}
std::string description() const override
{
return "Print version info";
}
void go() override
{
if(flag_set("full"))
{
output() << Botan::version_string() << "\n";
}
else
{
output() << Botan::short_version_string() << "\n";
}
}
};
BOTAN_REGISTER_COMMAND("version", Version_Info);
class Print_Cpuid final : public Command
{
public:
Print_Cpuid() : Command("cpuid") {}
std::string group() const override
{
return "info";
}
std::string description() const override
{
return "List available processor flags (aes_ni, SIMD extensions, ...)";
}
void go() override
{
output() << "CPUID flags: " << Botan::CPUID::to_string() << "\n";
}
};
BOTAN_REGISTER_COMMAND("cpuid", Print_Cpuid);
#if defined(BOTAN_HAS_HASH)
class Hash final : public Command
{
public:
Hash() : Command("hash --algo=SHA-256 --buf-size=4096 --no-fsname *files") {}
std::string group() const override
{
return "hash";
}
std::string description() const override
{
return "Compute the message digest of given file(s)";
}
void go() override
{
const std::string hash_algo = get_arg("algo");
std::unique_ptr<Botan::HashFunction> hash_fn(Botan::HashFunction::create(hash_algo));
if(!hash_fn)
{
throw CLI_Error_Unsupported("hashing", hash_algo);
}
const size_t buf_size = get_arg_sz("buf-size");
const bool no_fsname = flag_set("no-fsname");
std::vector<std::string> files = get_arg_list("files");
if(files.empty())
{
files.push_back("-");
} // read stdin if no arguments on command line
for(const std::string& fsname : files)
{
try
{
auto update_hash = [&](const uint8_t b[], size_t l) { hash_fn->update(b, l); };
read_file(fsname, update_hash, buf_size);
const std::string digest = Botan::hex_encode(hash_fn->final());
if(no_fsname)
output() << digest << "\n";
else
output() << digest << " " << fsname << "\n";
}
catch(CLI_IO_Error& e)
{
error_output() << e.what() << "\n";
}
}
}
};
BOTAN_REGISTER_COMMAND("hash", Hash);
#endif
class RNG final : public Command
{
public:
RNG() : Command("rng --system --rdrand --auto --entropy --drbg --drbg-seed= *bytes") {}
std::string group() const override
{
return "misc";
}
std::string description() const override
{
return "Sample random bytes from the specified rng";
}
void go() override
{
std::string type = get_arg("rng-type");
if(type.empty())
{
for(std::string flag : { "system", "rdrand", "auto", "entropy", "drbg" })
{
if(flag_set(flag))
{
type = flag;
break;
}
}
}
const std::string drbg_seed = get_arg("drbg-seed");
std::unique_ptr<Botan::RandomNumberGenerator> rng = cli_make_rng(type, drbg_seed);
for(const std::string& req : get_arg_list("bytes"))
{
output() << Botan::hex_encode(rng->random_vec(Botan::to_u32bit(req))) << "\n";
}
}
};
BOTAN_REGISTER_COMMAND("rng", RNG);
#if defined(BOTAN_HAS_HTTP_UTIL)
class HTTP_Get final : public Command
{
public:
HTTP_Get() : Command("http_get --redirects=1 --timeout=3000 url") {}
std::string group() const override
{
return "misc";
}
std::string description() const override
{
return "Retrieve resource from the passed http/https url";
}
void go() override
{
const std::string url = get_arg("url");
const std::chrono::milliseconds timeout(get_arg_sz("timeout"));
const size_t redirects = get_arg_sz("redirects");
output() << Botan::HTTP::GET_sync(url, redirects, timeout) << "\n";
}
};
BOTAN_REGISTER_COMMAND("http_get", HTTP_Get);
#endif // http_util
#if defined(BOTAN_HAS_HEX_CODEC)
class Hex_Encode final : public Command
{
public:
Hex_Encode() : Command("hex_enc file") {}
std::string group() const override
{
return "codec";
}
std::string description() const override
{
return "Hex encode a given file";
}
void go() override
{
auto hex_enc_f = [&](const uint8_t b[], size_t l) { output() << Botan::hex_encode(b, l); };
this->read_file(get_arg("file"), hex_enc_f, 2);
}
};
BOTAN_REGISTER_COMMAND("hex_enc", Hex_Encode);
class Hex_Decode final : public Command
{
public:
Hex_Decode() : Command("hex_dec file") {}
std::string group() const override
{
return "codec";
}
std::string description() const override
{
return "Hex decode a given file";
}
void go() override
{
auto hex_dec_f = [&](const uint8_t b[], size_t l)
{
std::vector<uint8_t> bin = Botan::hex_decode(reinterpret_cast<const char*>(b), l);
output().write(reinterpret_cast<const char*>(bin.data()), bin.size());
};
this->read_file(get_arg("file"), hex_dec_f, 2);
}
};
BOTAN_REGISTER_COMMAND("hex_dec", Hex_Decode);
#endif
#if defined(BOTAN_HAS_BASE64_CODEC)
class Base64_Encode final : public Command
{
public:
Base64_Encode() : Command("base64_enc file") {}
std::string group() const override
{
return "codec";
}
std::string description() const override
{
return "Encode given file to Base64";
}
void go() override
{
auto onData = [&](const uint8_t b[], size_t l)
{
output() << Botan::base64_encode(b, l);
};
this->read_file(get_arg("file"), onData, 768);
}
};
BOTAN_REGISTER_COMMAND("base64_enc", Base64_Encode);
class Base64_Decode final : public Command
{
public:
Base64_Decode() : Command("base64_dec file") {}
std::string group() const override
{
return "codec";
}
std::string description() const override
{
return "Decode Base64 encoded file";
}
void go() override
{
auto write_bin = [&](const uint8_t b[], size_t l)
{
Botan::secure_vector<uint8_t> bin = Botan::base64_decode(reinterpret_cast<const char*>(b), l);
output().write(reinterpret_cast<const char*>(bin.data()), bin.size());
};
this->read_file(get_arg("file"), write_bin, 1024);
}
};
BOTAN_REGISTER_COMMAND("base64_dec", Base64_Decode);
#endif // base64
#if defined(BOTAN_HAS_BCRYPT)
class Generate_Bcrypt final : public Command
{
public:
Generate_Bcrypt() : Command("gen_bcrypt --work-factor=12 password") {}
std::string group() const override
{
return "passhash";
}
std::string description() const override
{
return "Calculate the bcrypt password digest of a given file";
}
void go() override
{
const std::string password = get_arg("password");
const size_t wf = get_arg_sz("work-factor");
if(wf < 4 || wf > 18)
{
error_output() << "Invalid bcrypt work factor\n";
}
else
{
const uint16_t wf16 = static_cast<uint16_t>(wf);
output() << Botan::generate_bcrypt(password, rng(), wf16) << "\n";
}
}
};
BOTAN_REGISTER_COMMAND("gen_bcrypt", Generate_Bcrypt);
class Check_Bcrypt final : public Command
{
public:
Check_Bcrypt() : Command("check_bcrypt password hash") {}
std::string group() const override
{
return "passhash";
}
std::string description() const override
{
return "Checks a given bcrypt hash against hash";
}
void go() override
{
const std::string password = get_arg("password");
const std::string hash = get_arg("hash");
if(hash.length() != 60)
{
error_output() << "Note: bcrypt '" << hash << "' has wrong length and cannot be valid\n";
}
const bool ok = Botan::check_bcrypt(password, hash);
output() << "Password is " << (ok ? "valid" : "NOT valid") << std::endl;
}
};
BOTAN_REGISTER_COMMAND("check_bcrypt", Check_Bcrypt);
#endif // bcrypt
#if defined(BOTAN_HAS_HMAC)
class HMAC final : public Command
{
public:
HMAC() : Command("hmac --hash=SHA-256 --buf-size=4096 --no-fsname key *files") {}
std::string group() const override
{
return "hmac";
}
std::string description() const override
{
return "Compute the HMAC tag of given file(s)";
}
void go() override
{
const bool no_fsname = flag_set("no-fsname");
const std::string hash_algo = get_arg("hash");
std::unique_ptr<Botan::MessageAuthenticationCode> hmac =
Botan::MessageAuthenticationCode::create("HMAC(" + hash_algo + ")");
if(!hmac)
{ throw CLI_Error_Unsupported("HMAC", hash_algo); }
hmac->set_key(slurp_file(get_arg("key")));
const size_t buf_size = get_arg_sz("buf-size");
std::vector<std::string> files = get_arg_list("files");
if(files.empty())
{ files.push_back("-"); } // read stdin if no arguments on command line
for(const std::string& fsname : files)
{
try
{
auto update_hmac = [&](const uint8_t b[], size_t l) { hmac->update(b, l); };
read_file(fsname, update_hmac, buf_size);
output() << Botan::hex_encode(hmac->final());
if(no_fsname == false)
output() << " " << fsname;
output() << "\n";
}
catch(CLI_IO_Error& e)
{
error_output() << e.what() << "\n";
}
}
}
};
BOTAN_REGISTER_COMMAND("hmac", HMAC);
#endif // hmac
}
|