1 /* Copyright (c) 2014, Google Inc.
2 *
3 * Permission to use, copy, modify, and/or distribute this software for any
4 * purpose with or without fee is hereby granted, provided that the above
5 * copyright notice and this permission notice appear in all copies.
6 *
7 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
10 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
13 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
14
15 #include <string>
16 #include <vector>
17
18 #include <openssl/crypto.h>
19 #include <openssl/err.h>
20 #include <openssl/ssl.h>
21
22 #if defined(OPENSSL_WINDOWS)
23 #include <fcntl.h>
24 #include <io.h>
25 #else
26 #include <libgen.h>
27 #endif
28
29 #include "internal.h"
30
31
IsFIPS(const std::vector<std::string> & args)32 static bool IsFIPS(const std::vector<std::string> &args) {
33 printf("%d\n", FIPS_mode());
34 return true;
35 }
36
37 typedef bool (*tool_func_t)(const std::vector<std::string> &args);
38
39 struct Tool {
40 const char *name;
41 tool_func_t func;
42 };
43
44 static const Tool kTools[] = {
45 { "ciphers", Ciphers },
46 { "client", Client },
47 { "isfips", IsFIPS },
48 { "generate-ech", GenerateECH},
49 { "generate-ed25519", GenerateEd25519Key },
50 { "genrsa", GenerateRSAKey },
51 { "md5sum", MD5Sum },
52 { "pkcs12", DoPKCS12 },
53 { "rand", Rand },
54 { "s_client", Client },
55 { "s_server", Server },
56 { "server", Server },
57 { "sha1sum", SHA1Sum },
58 { "sha224sum", SHA224Sum },
59 { "sha256sum", SHA256Sum },
60 { "sha384sum", SHA384Sum },
61 { "sha512sum", SHA512Sum },
62 { "sha512256sum", SHA512256Sum },
63 { "sign", Sign },
64 { "speed", Speed },
65 { "", nullptr },
66 };
67
usage(const char * name)68 static void usage(const char *name) {
69 printf("Usage: %s COMMAND\n", name);
70 printf("\n");
71 printf("Available commands:\n");
72
73 for (size_t i = 0;; i++) {
74 const Tool &tool = kTools[i];
75 if (tool.func == nullptr) {
76 break;
77 }
78 printf(" %s\n", tool.name);
79 }
80 }
81
FindTool(const std::string & name)82 static tool_func_t FindTool(const std::string &name) {
83 for (size_t i = 0;; i++) {
84 const Tool &tool = kTools[i];
85 if (tool.func == nullptr || name == tool.name) {
86 return tool.func;
87 }
88 }
89 }
90
main(int argc,char ** argv)91 int main(int argc, char **argv) {
92 #if defined(OPENSSL_WINDOWS)
93 // Read and write in binary mode. This makes bssl on Windows consistent with
94 // bssl on other platforms, and also makes it consistent with MSYS's commands
95 // like diff(1) and md5sum(1). This is especially important for the digest
96 // commands.
97 if (_setmode(_fileno(stdin), _O_BINARY) == -1) {
98 perror("_setmode(_fileno(stdin), O_BINARY)");
99 return 1;
100 }
101 if (_setmode(_fileno(stdout), _O_BINARY) == -1) {
102 perror("_setmode(_fileno(stdout), O_BINARY)");
103 return 1;
104 }
105 if (_setmode(_fileno(stderr), _O_BINARY) == -1) {
106 perror("_setmode(_fileno(stderr), O_BINARY)");
107 return 1;
108 }
109 #endif
110
111 CRYPTO_library_init();
112
113 int starting_arg = 1;
114 tool_func_t tool = nullptr;
115 #if !defined(OPENSSL_WINDOWS)
116 tool = FindTool(basename(argv[0]));
117 #endif
118 if (tool == nullptr) {
119 starting_arg++;
120 if (argc > 1) {
121 tool = FindTool(argv[1]);
122 }
123 }
124 if (tool == nullptr) {
125 usage(argv[0]);
126 return 1;
127 }
128
129 std::vector<std::string> args;
130 for (int i = starting_arg; i < argc; i++) {
131 args.push_back(argv[i]);
132 }
133
134 if (!tool(args)) {
135 ERR_print_errors_fp(stderr);
136 return 1;
137 }
138
139 return 0;
140 }
141