blob: 96bde333598ad82286651d583d22013999e516f6 [file] [log] [blame]
Adam Langley95c29f32014-06-20 12:00:00 -07001/* 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>
Adam Langley95c29f32014-06-20 12:00:00 -070016#include <vector>
17
David Benjamin7a1eefd2015-10-17 23:39:22 -040018#include <openssl/crypto.h>
Adam Langley95c29f32014-06-20 12:00:00 -070019#include <openssl/err.h>
Adam Langleyaacec172014-06-20 12:00:00 -070020#include <openssl/ssl.h>
Adam Langley95c29f32014-06-20 12:00:00 -070021
Brian Smithafdaeee2015-01-26 19:54:32 -080022#if defined(OPENSSL_WINDOWS)
23#include <fcntl.h>
24#include <io.h>
25#else
Adam Langleycca4d592015-01-12 12:01:23 -080026#include <libgen.h>
David Benjamin41adb342021-09-15 10:19:47 -040027#include <signal.h>
Adam Langleycca4d592015-01-12 12:01:23 -080028#endif
29
Piotr Sikoraf9328942016-03-18 18:24:50 -070030#include "internal.h"
Adam Langley95c29f32014-06-20 12:00:00 -070031
Adam Langley95c29f32014-06-20 12:00:00 -070032
Adam Langleyfd499932017-04-04 14:21:43 -070033static bool IsFIPS(const std::vector<std::string> &args) {
34 printf("%d\n", FIPS_mode());
35 return true;
36}
37
Adam Langleycca4d592015-01-12 12:01:23 -080038typedef bool (*tool_func_t)(const std::vector<std::string> &args);
39
40struct Tool {
David Benjaminafe57cb2015-12-18 18:22:27 -050041 const char *name;
Adam Langleycca4d592015-01-12 12:01:23 -080042 tool_func_t func;
43};
44
45static const Tool kTools[] = {
Adam Langleyeb8be012015-10-27 16:03:52 -070046 { "ciphers", Ciphers },
Adam Langleycca4d592015-01-12 12:01:23 -080047 { "client", Client },
Adam Langleyfd499932017-04-04 14:21:43 -070048 { "isfips", IsFIPS },
Dan McArdle7a817f42021-07-14 17:19:16 -040049 { "generate-ech", GenerateECH},
David Benjaminafe57cb2015-12-18 18:22:27 -050050 { "generate-ed25519", GenerateEd25519Key },
Adam Langley839b8812015-05-26 11:36:46 -070051 { "genrsa", GenerateRSAKey },
Adam Langleycca4d592015-01-12 12:01:23 -080052 { "md5sum", MD5Sum },
Adam Langley839b8812015-05-26 11:36:46 -070053 { "pkcs12", DoPKCS12 },
54 { "rand", Rand },
55 { "s_client", Client },
56 { "s_server", Server },
57 { "server", Server },
Adam Langleycca4d592015-01-12 12:01:23 -080058 { "sha1sum", SHA1Sum },
59 { "sha224sum", SHA224Sum },
60 { "sha256sum", SHA256Sum },
61 { "sha384sum", SHA384Sum },
62 { "sha512sum", SHA512Sum },
Adam Langley3c11bf52020-04-15 09:10:04 -070063 { "sha512256sum", SHA512256Sum },
David Benjamin4e78e302017-03-30 10:16:07 -050064 { "sign", Sign },
Adam Langley839b8812015-05-26 11:36:46 -070065 { "speed", Speed },
Adam Langleycca4d592015-01-12 12:01:23 -080066 { "", nullptr },
67};
68
Adam Langleyc5c0c7e2014-06-20 12:00:00 -070069static void usage(const char *name) {
David Benjaminafe57cb2015-12-18 18:22:27 -050070 printf("Usage: %s COMMAND\n", name);
71 printf("\n");
72 printf("Available commands:\n");
Adam Langleycca4d592015-01-12 12:01:23 -080073
74 for (size_t i = 0;; i++) {
75 const Tool &tool = kTools[i];
76 if (tool.func == nullptr) {
77 break;
78 }
David Benjaminafe57cb2015-12-18 18:22:27 -050079 printf(" %s\n", tool.name);
Adam Langleycca4d592015-01-12 12:01:23 -080080 }
Adam Langleycca4d592015-01-12 12:01:23 -080081}
82
Piotr Sikora9bb8ba62016-03-18 18:19:04 -070083static tool_func_t FindTool(const std::string &name) {
Adam Langleycca4d592015-01-12 12:01:23 -080084 for (size_t i = 0;; i++) {
85 const Tool &tool = kTools[i];
86 if (tool.func == nullptr || name == tool.name) {
87 return tool.func;
88 }
89 }
Adam Langley95c29f32014-06-20 12:00:00 -070090}
91
Adam Langley10f97f32016-07-12 08:09:33 -070092int main(int argc, char **argv) {
Brian Smithafdaeee2015-01-26 19:54:32 -080093#if defined(OPENSSL_WINDOWS)
94 // Read and write in binary mode. This makes bssl on Windows consistent with
95 // bssl on other platforms, and also makes it consistent with MSYS's commands
96 // like diff(1) and md5sum(1). This is especially important for the digest
97 // commands.
98 if (_setmode(_fileno(stdin), _O_BINARY) == -1) {
99 perror("_setmode(_fileno(stdin), O_BINARY)");
100 return 1;
101 }
102 if (_setmode(_fileno(stdout), _O_BINARY) == -1) {
103 perror("_setmode(_fileno(stdout), O_BINARY)");
104 return 1;
105 }
106 if (_setmode(_fileno(stderr), _O_BINARY) == -1) {
107 perror("_setmode(_fileno(stderr), O_BINARY)");
108 return 1;
109 }
David Benjamin41adb342021-09-15 10:19:47 -0400110#else
111 signal(SIGPIPE, SIG_IGN);
Brian Smithafdaeee2015-01-26 19:54:32 -0800112#endif
113
David Benjamin7a1eefd2015-10-17 23:39:22 -0400114 CRYPTO_library_init();
Adam Langley95c29f32014-06-20 12:00:00 -0700115
Adam Langleycca4d592015-01-12 12:01:23 -0800116 int starting_arg = 1;
117 tool_func_t tool = nullptr;
David Benjamineee73062014-10-31 16:01:29 -0400118#if !defined(OPENSSL_WINDOWS)
Adam Langleycca4d592015-01-12 12:01:23 -0800119 tool = FindTool(basename(argv[0]));
David Benjamineee73062014-10-31 16:01:29 -0400120#endif
Adam Langleycca4d592015-01-12 12:01:23 -0800121 if (tool == nullptr) {
122 starting_arg++;
123 if (argc > 1) {
124 tool = FindTool(argv[1]);
125 }
126 }
127 if (tool == nullptr) {
Adam Langley95c29f32014-06-20 12:00:00 -0700128 usage(argv[0]);
129 return 1;
130 }
Adam Langleycca4d592015-01-12 12:01:23 -0800131
132 std::vector<std::string> args;
133 for (int i = starting_arg; i < argc; i++) {
134 args.push_back(argv[i]);
135 }
136
David Benjamin4e78e302017-03-30 10:16:07 -0500137 if (!tool(args)) {
138 ERR_print_errors_fp(stderr);
139 return 1;
140 }
141
142 return 0;
Adam Langley95c29f32014-06-20 12:00:00 -0700143}