Configure: Better detection of '-static' in @{$config{LDFLAGS}}
[openssl.git] / apps / spkac.c
1 /*
2  * Copyright 1999-2018 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #include <stdio.h>
11 #include <stdlib.h>
12 #include <string.h>
13 #include <time.h>
14 #include "apps.h"
15 #include "progs.h"
16 #include <openssl/bio.h>
17 #include <openssl/conf.h>
18 #include <openssl/err.h>
19 #include <openssl/evp.h>
20 #include <openssl/x509.h>
21 #include <openssl/pem.h>
22
23 typedef enum OPTION_choice {
24     OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
25     OPT_NOOUT, OPT_PUBKEY, OPT_VERIFY, OPT_IN, OPT_OUT,
26     OPT_ENGINE, OPT_KEY, OPT_CHALLENGE, OPT_PASSIN, OPT_SPKAC,
27     OPT_SPKSECT, OPT_KEYFORM
28 } OPTION_CHOICE;
29
30 const OPTIONS spkac_options[] = {
31     OPT_SECTION("General"),
32     {"help", OPT_HELP, '-', "Display this summary"},
33     {"spksect", OPT_SPKSECT, 's',
34      "Specify the name of an SPKAC-dedicated section of configuration"},
35 #ifndef OPENSSL_NO_ENGINE
36     {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
37 #endif
38
39     OPT_SECTION("Input"),
40     {"in", OPT_IN, '<', "Input file"},
41     {"key", OPT_KEY, '<', "Create SPKAC using private key"},
42     {"keyform", OPT_KEYFORM, 'f', "Private key file format - default PEM (PEM, DER, or ENGINE)"},
43     {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
44     {"challenge", OPT_CHALLENGE, 's', "Challenge string"},
45     {"spkac", OPT_SPKAC, 's', "Alternative SPKAC name"},
46
47     OPT_SECTION("Output"),
48     {"out", OPT_OUT, '>', "Output file"},
49     {"noout", OPT_NOOUT, '-', "Don't print SPKAC"},
50     {"pubkey", OPT_PUBKEY, '-', "Output public key"},
51     {"verify", OPT_VERIFY, '-', "Verify SPKAC signature"},
52     {NULL}
53 };
54
55 int spkac_main(int argc, char **argv)
56 {
57     BIO *out = NULL;
58     CONF *conf = NULL;
59     ENGINE *e = NULL;
60     EVP_PKEY *pkey = NULL;
61     NETSCAPE_SPKI *spki = NULL;
62     char *challenge = NULL, *keyfile = NULL;
63     char *infile = NULL, *outfile = NULL, *passinarg = NULL, *passin = NULL;
64     char *spkstr = NULL, *prog;
65     const char *spkac = "SPKAC", *spksect = "default";
66     int i, ret = 1, verify = 0, noout = 0, pubkey = 0;
67     int keyformat = FORMAT_PEM;
68     OPTION_CHOICE o;
69
70     prog = opt_init(argc, argv, spkac_options);
71     while ((o = opt_next()) != OPT_EOF) {
72         switch (o) {
73         case OPT_EOF:
74         case OPT_ERR:
75  opthelp:
76             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
77             goto end;
78         case OPT_HELP:
79             opt_help(spkac_options);
80             ret = 0;
81             goto end;
82         case OPT_IN:
83             infile = opt_arg();
84             break;
85         case OPT_OUT:
86             outfile = opt_arg();
87             break;
88         case OPT_NOOUT:
89             noout = 1;
90             break;
91         case OPT_PUBKEY:
92             pubkey = 1;
93             break;
94         case OPT_VERIFY:
95             verify = 1;
96             break;
97         case OPT_PASSIN:
98             passinarg = opt_arg();
99             break;
100         case OPT_KEY:
101             keyfile = opt_arg();
102             break;
103         case OPT_KEYFORM:
104             if (!opt_format(opt_arg(), OPT_FMT_ANY, &keyformat))
105                 goto opthelp;
106             break;
107         case OPT_CHALLENGE:
108             challenge = opt_arg();
109             break;
110         case OPT_SPKAC:
111             spkac = opt_arg();
112             break;
113         case OPT_SPKSECT:
114             spksect = opt_arg();
115             break;
116         case OPT_ENGINE:
117             e = setup_engine(opt_arg(), 0);
118             break;
119         }
120     }
121     argc = opt_num_rest();
122     if (argc != 0)
123         goto opthelp;
124
125     if (!app_passwd(passinarg, NULL, &passin, NULL)) {
126         BIO_printf(bio_err, "Error getting password\n");
127         goto end;
128     }
129
130     if (keyfile != NULL) {
131         pkey = load_key(strcmp(keyfile, "-") ? keyfile : NULL,
132                         keyformat, 1, passin, e, "private key");
133         if (pkey == NULL)
134             goto end;
135         spki = NETSCAPE_SPKI_new();
136         if (spki == NULL)
137             goto end;
138         if (challenge != NULL)
139             ASN1_STRING_set(spki->spkac->challenge,
140                             challenge, (int)strlen(challenge));
141         NETSCAPE_SPKI_set_pubkey(spki, pkey);
142         NETSCAPE_SPKI_sign(spki, pkey, EVP_md5());
143         spkstr = NETSCAPE_SPKI_b64_encode(spki);
144         if (spkstr == NULL)
145             goto end;
146
147         out = bio_open_default(outfile, 'w', FORMAT_TEXT);
148         if (out == NULL) {
149             OPENSSL_free(spkstr);
150             goto end;
151         }
152         BIO_printf(out, "SPKAC=%s\n", spkstr);
153         OPENSSL_free(spkstr);
154         ret = 0;
155         goto end;
156     }
157
158     if ((conf = app_load_config(infile)) == NULL)
159         goto end;
160
161     spkstr = NCONF_get_string(conf, spksect, spkac);
162
163     if (spkstr == NULL) {
164         BIO_printf(bio_err, "Can't find SPKAC called \"%s\"\n", spkac);
165         ERR_print_errors(bio_err);
166         goto end;
167     }
168
169     spki = NETSCAPE_SPKI_b64_decode(spkstr, -1);
170
171     if (spki == NULL) {
172         BIO_printf(bio_err, "Error loading SPKAC\n");
173         ERR_print_errors(bio_err);
174         goto end;
175     }
176
177     out = bio_open_default(outfile, 'w', FORMAT_TEXT);
178     if (out == NULL)
179         goto end;
180
181     if (!noout)
182         NETSCAPE_SPKI_print(out, spki);
183     pkey = NETSCAPE_SPKI_get_pubkey(spki);
184     if (verify) {
185         i = NETSCAPE_SPKI_verify(spki, pkey);
186         if (i > 0) {
187             BIO_printf(bio_err, "Signature OK\n");
188         } else {
189             BIO_printf(bio_err, "Signature Failure\n");
190             ERR_print_errors(bio_err);
191             goto end;
192         }
193     }
194     if (pubkey)
195         PEM_write_bio_PUBKEY(out, pkey);
196
197     ret = 0;
198
199  end:
200     NCONF_free(conf);
201     NETSCAPE_SPKI_free(spki);
202     BIO_free_all(out);
203     EVP_PKEY_free(pkey);
204     release_engine(e);
205     OPENSSL_free(passin);
206     return ret;
207 }