forked from convox/rack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathssl.go
223 lines (172 loc) · 5.05 KB
/
ssl.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
package models
import (
"crypto/x509"
"encoding/pem"
"fmt"
"regexp"
"strconv"
"strings"
"time"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/acm"
"github.com/aws/aws-sdk-go/service/cloudformation"
"github.com/aws/aws-sdk-go/service/iam"
)
type SSL struct {
Certificate string `json:"certificate"`
Expiration time.Time `json:"expiration"`
Domain string `json:"domain"`
Process string `json:"process"`
Port int `json:"port"`
Secure bool `json:"secure"`
}
type SSLs []SSL
func ListSSLs(a string) (SSLs, error) {
app, err := GetApp(a)
if err != nil {
return nil, err
}
ssls := make(SSLs, 0)
// Find stack Parameters like WebPort443Certificate with an ARN set for the value
// Get and decode corresponding certificate info
re := regexp.MustCompile(`(\w+)Port(\d+)Certificate`)
for k, v := range app.Parameters {
if v == "" {
continue
}
if matches := re.FindStringSubmatch(k); len(matches) > 0 {
port, err := strconv.Atoi(matches[2])
if err != nil {
return nil, err
}
secure := app.Parameters[fmt.Sprintf("%sPort%sSecure", matches[1], matches[2])] == "Yes"
switch prefix := v[8:11]; prefix {
case "acm":
res, err := ACM().DescribeCertificate(&acm.DescribeCertificateInput{
CertificateArn: aws.String(v),
})
if err != nil {
return nil, err
}
parts := strings.Split(v, "-")
id := fmt.Sprintf("acm-%s", parts[len(parts)-1])
ssls = append(ssls, SSL{
Certificate: id,
Domain: *res.Certificate.DomainName,
Expiration: *res.Certificate.NotAfter,
Port: port,
Process: DashName(matches[1]),
Secure: secure,
})
case "iam":
res, err := IAM().GetServerCertificate(&iam.GetServerCertificateInput{
ServerCertificateName: aws.String(certName(app.StackName(), matches[1], port)),
})
if err != nil {
return nil, err
}
pemBlock, _ := pem.Decode([]byte(*res.ServerCertificate.CertificateBody))
c, err := x509.ParseCertificate(pemBlock.Bytes)
if err != nil {
return nil, err
}
ssls = append(ssls, SSL{
Certificate: *res.ServerCertificate.ServerCertificateMetadata.ServerCertificateName,
Domain: c.Subject.CommonName,
Expiration: *res.ServerCertificate.ServerCertificateMetadata.Expiration,
Port: port,
Process: DashName(matches[1]),
Secure: secure,
})
default:
return nil, fmt.Errorf("unknown arn prefix: %s", prefix)
}
}
}
return ssls, nil
}
func UpdateSSL(app, process string, port int, id string) (*SSL, error) {
a, err := GetApp(app)
if err != nil {
return nil, err
}
// validate app is not currently updating
if a.Status != "running" {
return nil, fmt.Errorf("can not update app with status: %s", a.Status)
}
outputs := a.Outputs
balancer := outputs[fmt.Sprintf("%sPort%dBalancerName", UpperName(process), port)]
if balancer == "" {
return nil, fmt.Errorf("Process and port combination unknown")
}
arn := ""
if strings.HasPrefix(id, "acm-") {
uuid := id[4:]
res, err := ACM().ListCertificates(nil)
if err != nil {
return nil, err
}
for _, cert := range res.CertificateSummaryList {
parts := strings.Split(*cert.CertificateArn, "-")
if parts[len(parts)-1] == uuid {
res, err := ACM().DescribeCertificate(&acm.DescribeCertificateInput{
CertificateArn: cert.CertificateArn,
})
if err != nil {
return nil, err
}
if *res.Certificate.Status == "PENDING_VALIDATION" {
return nil, fmt.Errorf("%s is still pending validation", id)
}
arn = *cert.CertificateArn
break
}
}
} else {
res, err := IAM().GetServerCertificate(&iam.GetServerCertificateInput{
ServerCertificateName: aws.String(id),
})
if err != nil {
return nil, err
}
arn = *res.ServerCertificate.ServerCertificateMetadata.Arn
}
// update cloudformation
req := &cloudformation.UpdateStackInput{
StackName: aws.String(a.StackName()),
Capabilities: []*string{aws.String("CAPABILITY_IAM")},
UsePreviousTemplate: aws.Bool(true),
NotificationARNs: []*string{aws.String(CloudformationEventsTopic)},
}
params := a.Parameters
params[fmt.Sprintf("%sPort%dCertificate", UpperName(process), port)] = arn
for key, val := range params {
req.Parameters = append(req.Parameters, &cloudformation.Parameter{
ParameterKey: aws.String(key),
ParameterValue: aws.String(val),
})
}
// TODO: The existing cert will be orphaned. Deleting it now could cause
// CF problems if the stack tries to rollback and use the old cert.
_, err = UpdateStack(req)
if err != nil {
return nil, err
}
ssl := SSL{
Port: port,
Process: process,
}
return &ssl, nil
}
// fetch certificate from CF params and parse name from arn
func certName(app, process string, port int) string {
key := fmt.Sprintf("%sPort%dCertificate", UpperName(process), port)
a, err := GetApp(app)
if err != nil {
fmt.Printf(err.Error())
return ""
}
arn := a.Parameters[key]
slice := strings.Split(arn, "/")
return slice[len(slice)-1]
}