This repository has been archived by the owner on Jan 24, 2020. It is now read-only.
forked from smallstep/cli
-
Notifications
You must be signed in to change notification settings - Fork 1
/
init.go
260 lines (234 loc) · 6.83 KB
/
init.go
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
package ca
import (
"crypto/rand"
"crypto/x509"
"fmt"
"io"
"strings"
"github.com/smallstep/cli/command"
"github.com/smallstep/cli/crypto/pemutil"
"github.com/smallstep/cli/crypto/pki"
"github.com/smallstep/cli/errs"
"github.com/smallstep/cli/ui"
"github.com/smallstep/cli/utils"
"github.com/urfave/cli"
)
func initCommand() cli.Command {
return cli.Command{
Name: "init",
Action: cli.ActionFunc(initAction),
Usage: "initialize the CA PKI",
UsageText: `**step ca init**
[**--root**=<path>] [**--key**=<path>] [**--pki**] [**--ssh**] [**--name**=<name>]
[**dns**=<dns>] [**address**=<address>] [**provisioner**=<name>]
[**provisioner-password-file**=<path>] [**password-file**=<path>]
[**with-ca-url**=<url>] [**no-db**]`,
Description: `**step ca init** command initializes a public key infrastructure (PKI) to be
used by the Certificate Authority.`,
Flags: []cli.Flag{
cli.StringFlag{
Name: "root",
Usage: "The path of an existing PEM <file> to be used as the root certificate authority.",
EnvVar: command.IgnoreEnvVar,
},
cli.StringFlag{
Name: "key",
Usage: "The path of an existing key <file> of the root certificate authority.",
EnvVar: command.IgnoreEnvVar,
},
cli.BoolFlag{
Name: "pki",
Usage: "Generate only the PKI without the CA configuration.",
},
cli.BoolFlag{
Name: "ssh",
Usage: `Create keys to sign SSH certificates.`,
},
cli.StringFlag{
Name: "name",
Usage: "The <name> of the new PKI.",
},
cli.StringFlag{
Name: "dns",
Usage: "The comma separated DNS <names> or IP addresses of the new CA.",
},
cli.StringFlag{
Name: "address",
Usage: "The <address> that the new CA will listen at.",
},
cli.StringFlag{
Name: "provisioner",
Usage: "The <name> of the first provisioner.",
},
cli.StringFlag{
Name: "password-file",
Usage: `The path to the <file> containing the password to encrypt the keys.`,
},
cli.StringFlag{
Name: "provisioner-password-file",
Usage: `The path to the <file> containing the password to encrypt the provisioner key.`,
},
cli.StringFlag{
Name: "with-ca-url",
Usage: `<URI> of the Step Certificate Authority to write in defaults.json`,
},
cli.BoolFlag{
Name: "no-db",
Usage: `Generate a CA configuration without the DB stanza. No persistence layer.`,
},
},
}
}
func initAction(ctx *cli.Context) (err error) {
if err = assertCryptoRand(); err != nil {
return err
}
var rootCrt *x509.Certificate
var rootKey interface{}
caURL := ctx.String("with-ca-url")
root := ctx.String("root")
key := ctx.String("key")
switch {
case len(root) > 0 && len(key) == 0:
return errs.RequiredWithFlag(ctx, "root", "key")
case len(root) == 0 && len(key) > 0:
return errs.RequiredWithFlag(ctx, "key", "root")
case len(root) > 0 && len(key) > 0:
if rootCrt, err = pemutil.ReadCertificate(root); err != nil {
return err
}
if rootKey, err = pemutil.Read(key); err != nil {
return err
}
}
configure := !ctx.Bool("pki")
noDB := ctx.Bool("no-db")
if !configure && noDB {
return errs.IncompatibleFlagWithFlag(ctx, "pki", "no-db")
}
var password string
if passwordFile := ctx.String("password-file"); passwordFile != "" {
password, err = utils.ReadStringPasswordFromFile(passwordFile)
if err != nil {
return err
}
}
// Provisioner password will be equal to the certificate private keys if
// --provisioner-password-file is not provided.
var provisionerPassword []byte
if passwordFile := ctx.String("provisioner-password-file"); passwordFile != "" {
provisionerPassword, err = utils.ReadPasswordFromFile(passwordFile)
if err != nil {
return err
}
}
p, err := pki.New(pki.GetPublicPath(), pki.GetSecretsPath(), pki.GetConfigPath())
if err != nil {
return err
}
name, err := ui.Prompt("What would you like to name your new PKI? (e.g. Smallstep)",
ui.WithValidateNotEmpty(), ui.WithValue(ctx.String("name")))
if err != nil {
return err
}
if configure {
var names string
names, err = ui.Prompt("What DNS names or IP addresses would you like to add to your new CA? (e.g. ca.smallstep.com[,1.1.1.1,etc.])",
ui.WithValidateFunc(ui.DNS()), ui.WithValue(ctx.String("dns")))
if err != nil {
return err
}
names = strings.Replace(names, " ", ",", -1)
parts := strings.Split(names, ",")
var dnsNames []string
for _, name := range parts {
if len(name) == 0 {
continue
}
dnsNames = append(dnsNames, strings.TrimSpace(name))
}
var address string
address, err = ui.Prompt("What address will your new CA listen at? (e.g. :443)",
ui.WithValidateFunc(ui.Address()), ui.WithValue(ctx.String("address")))
if err != nil {
return err
}
var provisioner string
provisioner, err = ui.Prompt("What would you like to name the first provisioner for your new CA? (e.g. you@smallstep.com)",
ui.WithValidateNotEmpty(), ui.WithValue(ctx.String("provisioner")))
if err != nil {
return err
}
p.SetProvisioner(provisioner)
p.SetAddress(address)
p.SetDNSNames(dnsNames)
p.SetCAURL(caURL)
}
pass, err := ui.PromptPasswordGenerate("What do you want your password to be? [leave empty and we'll generate one]",
ui.WithRichPrompt(), ui.WithValue(password))
if err != nil {
return err
}
if configure {
// Generate provisioner key pairs.
if len(provisionerPassword) > 0 {
if err = p.GenerateKeyPairs(provisionerPassword); err != nil {
return err
}
} else {
if err = p.GenerateKeyPairs(pass); err != nil {
return err
}
}
}
// Generate root certificate if not set.
if rootCrt == nil && rootKey == nil {
fmt.Println()
fmt.Print("Generating root certificate... \n")
rootCrt, rootKey, err = p.GenerateRootCertificate(name+" Root CA", pass)
if err != nil {
return err
}
fmt.Println("all done!")
} else {
fmt.Println()
fmt.Print("Copying root certificate... \n")
if err = p.WriteRootCertificate(rootCrt, rootKey, pass); err != nil {
return err
}
fmt.Println("all done!")
}
fmt.Println()
fmt.Print("Generating intermediate certificate... \n")
err = p.GenerateIntermediateCertificate(name+" Intermediate CA", rootCrt, rootKey, pass)
if err != nil {
return err
}
if ctx.Bool("ssh") {
fmt.Println()
fmt.Print("Generating user and host SSH certificate signing keys... \n")
if err := p.GenerateSSHSigningKeys(pass); err != nil {
return err
}
}
fmt.Println("all done!")
if !configure {
p.TellPKI()
return nil
}
opts := []pki.Option{}
if noDB {
opts = append(opts, pki.WithoutDB())
}
return p.Save(opts...)
}
// assertCryptoRand asserts that a cryptographically secure random number
// generator is available, it will return an error otherwise.
func assertCryptoRand() error {
buf := make([]byte, 64)
_, err := io.ReadFull(rand.Reader, buf)
if err != nil {
return errs.NewError("crypto/rand is unavailable: Read() failed with %#v", err)
}
return nil
}