-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathcertificate.go
1320 lines (1116 loc) · 36.5 KB
/
certificate.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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package main
import (
"crypto/ecdsa"
"crypto/rsa"
"crypto/x509"
"encoding/pem"
"errors"
"fmt"
"html/template"
"io"
"io/fs"
"log"
"math"
"mime/multipart"
"os"
"os/exec"
"path/filepath"
"reflect"
"regexp"
"runtime/debug"
"strconv"
"strings"
"time"
"github.com/spf13/viper"
)
// CertificateInfo contains all data related to a certificate (file)
type CertificateInfo struct {
IsRoot bool
IsFirst bool
KeyTypes map[string]string
KeyType string
CreateType string
IsRootGenerated bool
RootSubject string
RootEnddate string
NumDays int
Country string
Organization string
CommonName string
ImportFile multipart.File
ImportHandler *multipart.FileHeader
ImportPwd string
Key string
Passphrase string
Certificate string
CRL string
/*
KeyFromHSM bool
HSMInfo HSMInfo
HSMKeys map[string]string
HSMKey string
HSMLabel string
StoreCertOnHSM bool
*/
RequestBase string
Errors map[string]string
}
// Initialize the CertificateInfo and set the list of available key types
func (ci *CertificateInfo) Initialize() {
ci.Errors = make(map[string]string)
ci.KeyTypes = make(map[string]string)
ci.KeyTypes["rsa4096"] = "RSA-4096"
ci.KeyTypes["rsa2048"] = "RSA-2048"
ci.KeyTypes["ecdsa384"] = "ECDSA-384"
ci.KeyTypes["ecdsa256"] = "ECDSA-256"
ci.KeyType = "rsa4096"
// ci.HSMKeys = make(map[string]string)
// ci.StoreCertOnHSM = true
}
// ValidateGenerate that the CertificateInfo contains valid and all required data for generating a cert
func (ci *CertificateInfo) ValidateGenerate() {
if strings.TrimSpace(ci.KeyType) == "" || strings.TrimSpace(ci.KeyTypes[ci.KeyType]) == "" {
ci.Errors["KeyType"] = "Please select a key type/size"
}
if strings.TrimSpace(ci.Country) == "" || len(ci.Country) < 2 {
ci.Errors["Country"] = "Please enter a valid 2-character country code"
}
if strings.TrimSpace(ci.Organization) == "" {
ci.Errors["Organization"] = "Please enter an organization name"
}
if strings.TrimSpace(ci.CommonName) == "" {
ci.Errors["CommonName"] = "Please enter a common name"
}
}
// Validate that the CertificateInfo contains valid and all required data
func (ci *CertificateInfo) Validate() bool {
ci.Errors = make(map[string]string)
if ci.CreateType == "generate" {
ci.ValidateGenerate()
}
if (ci.CreateType == "import") && (ci.ImportHandler != nil) {
ext := ci.ImportHandler.Filename[len(ci.ImportHandler.Filename)-4:]
if (ci.ImportHandler.Size == 0) || (ext != ".zip" && ext != ".pfx") {
ci.Errors["Import"] = "Please provide a bundle (.pfx or .zip) with a key and certificate"
}
}
if ci.CreateType == "upload" {
if strings.TrimSpace(ci.Key) == "" {
ci.Errors["Key"] = "Please provide a PEM-encoded key"
}
if strings.TrimSpace(ci.Certificate) == "" {
ci.Errors["Certificate"] = "Please provide a PEM-encoded certificate"
}
}
return len(ci.Errors) == 0
}
func reportError(param interface{}) error {
lines := strings.Split(string(debug.Stack()), "\n")
if len(lines) >= 5 {
lines = append(lines[:0], lines[5:]...)
}
stop := len(lines)
for i := 0; i < len(lines); i++ {
if strings.Contains(lines[i], ".ServeHTTP(") {
stop = i
break
}
}
lines = lines[:stop]
lines = append(lines, "...")
fmt.Println(strings.Join(lines, "\n"))
res := errors.New("error: see LabCA logs for details")
switch v := param.(type) {
case error:
res = errors.New("Error (" + v.Error() + ")! See LabCA logs for details")
case []byte:
res = errors.New("Error (" + string(v) + ")! See LabCA logs for details")
default:
fmt.Printf("unexpected type %T", v)
}
return res
}
func ceremonyConfig(path string, rewrites map[string]string) (string, error) {
tmplBytes, err := os.ReadFile(path)
if err != nil {
return "", err
}
tmp, err := os.CreateTemp(os.TempDir(), "ceremony-config")
if err != nil {
return "", err
}
defer tmp.Close()
tmpl, err := template.New("config").Parse(string(tmplBytes))
if err != nil {
return "", err
}
err = tmpl.Execute(tmp, rewrites)
if err != nil {
return "", err
}
return tmp.Name(), nil
}
func waitForFile(filePath string) error {
start := time.Now()
for {
if _, err := os.Stat(filePath); err == nil {
return nil // File found
} else if !os.IsNotExist(err) {
return fmt.Errorf("error checking file: %v", err) // Unexpected error
}
// Check if the timeout has been reached
if time.Since(start) > 2*time.Minute {
return fmt.Errorf("timeout reached while waiting for file")
}
// Sleep for a short interval before checking again
time.Sleep(5 * time.Second)
}
}
func (ci *CertificateInfo) CeremonyRoot(seqnr string, use_existing_key bool) (string, error) {
keytype := "rsa"
keyparam := strings.Replace(ci.KeyType, "rsa", "", -1)
algo := "SHA256WithRSA"
if strings.HasPrefix(ci.KeyType, "ecdsa") {
keytype = "ecdsa"
len := strings.Replace(ci.KeyType, "ecdsa", "", -1)
keyparam = "P-" + len
algo = "ECDSAWithSHA" + len
}
notbefore := time.Now().Add(-1 * time.Second)
notafter := notbefore.AddDate(0, 0, ci.NumDays).Add(-1 * time.Second)
cfg := &HSMConfig{}
cfg.Initialize("root", seqnr)
if err := cfg.CreateSlot(); err != nil {
return "", fmt.Errorf("failed to create root slot: %s", err.Error())
}
certFileName := fmt.Sprintf("%sroot-%s-cert.pem", CERT_FILES_PATH, seqnr)
cb := renameBackup(certFileName)
var pb BackupResult
if !use_existing_key {
pb = renameBackup(fmt.Sprintf("%sroot-%s-pubkey.pem", CERT_FILES_PATH, seqnr))
}
ceremonyCfg, err := ceremonyConfig("templates/cert-ceremonies/root.yaml", map[string]string{
"Module": cfg.Module,
"UserPIN": cfg.UserPIN,
"SlotID": cfg.SlotID,
"Label": cfg.Label,
"Path": CERT_FILES_PATH,
"KeyType": keytype,
"KeyParam": keyparam,
"Extractable": strconv.FormatBool(true), // For now, with SoftHSM, this is fine. In future we need to ask for informed consent!
"SeqNr": seqnr,
"SignAlgorithm": algo,
"CommonName": ci.CommonName,
"OrgName": ci.Organization,
"Country": ci.Country,
"NotBefore": notbefore.UTC().Format("2006-01-02 15:04:05"),
"NotAfter": notafter.UTC().Format("2006-01-02 15:04:05"),
"Renewal": strconv.FormatBool(use_existing_key),
})
if err != nil {
ci.Errors["Generate"] = "error preparing for root ceremony, see logs for details"
cb.Restore()
if !use_existing_key {
pb.Restore()
}
return "", fmt.Errorf("could not fill root ceremony template: %s", err.Error())
}
defer os.Remove(ceremonyCfg)
err = waitForFile("/opt/boulder/bin/ceremony")
if err != nil {
return "", fmt.Errorf("could not wait for /opt/boulder/bin/ceremony to exist: %s", err.Error())
}
if _, err = exeCmd("/opt/boulder/bin/ceremony -config " + ceremonyCfg); err != nil {
ci.Errors["Generate"] = "failed to execute root ceremony, see logs for details"
cb.Restore()
if !use_existing_key {
pb.Restore()
}
return "", err
}
cb.Remove()
if !use_existing_key {
pb.Remove()
}
return certFileName, nil
}
func (ci *CertificateInfo) CeremonyIssuer(seqnr, rootseqnr string, use_existing_key bool) (string, error) {
fqdn := viper.GetString("labca.fqdn")
keytype := "rsa"
keyparam := strings.Replace(ci.KeyType, "rsa", "", -1)
algo := "SHA256WithRSA"
if strings.HasPrefix(ci.KeyType, "ecdsa") {
keytype = "ecdsa"
len := strings.Replace(ci.KeyType, "ecdsa", "", -1)
keyparam = "P-" + len
algo = "ECDSAWithSHA" + len
}
notbefore := time.Now().Add(-1 * time.Second)
notafter := notbefore.AddDate(0, 0, ci.NumDays).Add(-1 * time.Second)
cfg := &HSMConfig{}
cfg.Initialize("issuer", seqnr)
if err := cfg.CreateSlot(); err != nil {
return "", fmt.Errorf("failed to create issuer slot: %s", err.Error())
}
if !use_existing_key {
pb := renameBackup(fmt.Sprintf("%sissuer-%s-pubkey.pem", CERT_FILES_PATH, seqnr))
jb := renameBackup(fmt.Sprintf("%sissuer-%s.pkcs11.json", CERT_FILES_PATH, seqnr))
keyCfg, err := ceremonyConfig("templates/cert-ceremonies/issuer-key.yaml", map[string]string{
"Module": cfg.Module,
"UserPIN": cfg.UserPIN,
"SlotID": cfg.SlotID,
"Label": cfg.Label,
"Path": CERT_FILES_PATH,
"KeyType": keytype,
"KeyParam": keyparam,
"Extractable": strconv.FormatBool(true), // For now, with SoftHSM, this is fine. In future we need to ask for informed consent!
"SeqNr": seqnr,
})
if err != nil {
ci.Errors["Generate"] = "error preparing for issuer key ceremony, see logs for details"
pb.Restore()
jb.Restore()
return "", fmt.Errorf("could not fill issuer key ceremony template: %s", err.Error())
}
defer os.Remove(keyCfg)
err = waitForFile("/opt/boulder/bin/ceremony")
if err != nil {
return "", fmt.Errorf("could not wait for /opt/boulder/bin/ceremony to exist: %s", err.Error())
}
if _, err = exeCmd("/opt/boulder/bin/ceremony -config " + keyCfg); err != nil {
ci.Errors["Generate"] = "failed to execute issuer key ceremony, see logs for details"
pb.Restore()
jb.Restore()
return "", err
}
pb.Remove()
jb.Remove()
}
cfg = &HSMConfig{}
cfg.Initialize("root", rootseqnr)
if err := cfg.CreateSlot(); err != nil {
return "", fmt.Errorf("failed to get root slot: %s", err.Error())
}
certFileName := fmt.Sprintf("%sissuer-%s-cert.pem", CERT_FILES_PATH, seqnr)
cb := renameBackup(certFileName)
ceremonyCfg, err := ceremonyConfig("templates/cert-ceremonies/issuer-cert.yaml", map[string]string{
"Module": cfg.Module,
"UserPIN": cfg.UserPIN,
"RootSlotID": cfg.SlotID,
"RootLabel": cfg.Label,
"Path": CERT_FILES_PATH,
"SeqNr": seqnr,
"RootSeqNr": rootseqnr,
"SignAlgorithm": algo,
"CommonName": ci.CommonName,
"OrgName": ci.Organization,
"Country": ci.Country,
"NotBefore": notbefore.UTC().Format("2006-01-02 15:04:05"),
"NotAfter": notafter.UTC().Format("2006-01-02 15:04:05"),
"CrlUrl": fmt.Sprintf("http://%s/crl/root-%s-crl.pem", fqdn, rootseqnr),
"IssuerUrl": fmt.Sprintf("http://%s/certs/root-%s-cert.pem", fqdn, rootseqnr),
})
if err != nil {
ci.Errors["Generate"] = "error preparing for issuer cert ceremony, see logs for details"
cb.Restore()
return "", fmt.Errorf("could not fill issuer cert ceremony template: %s", err.Error())
}
defer os.Remove(ceremonyCfg)
err = waitForFile("/opt/boulder/bin/ceremony")
if err != nil {
return "", fmt.Errorf("could not wait for /opt/boulder/bin/ceremony to exist: %s", err.Error())
}
if _, err = exeCmd("/opt/boulder/bin/ceremony -config " + ceremonyCfg); err != nil {
ci.Errors["Generate"] = "failed to execute issuer cert ceremony, see logs for details"
cb.Restore()
return "", err
}
cb.Remove()
return certFileName, nil
}
func readCertificate(filename string) (*x509.Certificate, error) {
read, err := os.ReadFile(filename)
if err != nil {
fmt.Println(err)
return nil, errors.New("could not read '" + filename + "': " + err.Error())
}
block, _ := pem.Decode(read)
if block == nil || block.Type != "CERTIFICATE" {
fmt.Println(block)
return nil, errors.New("failed to decode PEM block containing certificate")
}
crt, err := x509.ParseCertificate(block.Bytes)
if err != nil {
return nil, err
}
return crt, nil
}
func (ci *CertificateInfo) CeremonyRootCRL(seqnr string) error {
now := time.Now()
if viper.Get("crl_root_days") == nil || viper.Get("crl_root_days") == "" {
viper.Set("crl_root_days", 365)
_ = viper.WriteConfig()
}
crlint, err := time.ParseDuration(fmt.Sprintf("%dh", viper.GetInt("crl_root_days")*24-1))
if err != nil {
crlint, _ = time.ParseDuration("8759h") // 365 days - 1 hour
}
cert, err := readCertificate(fmt.Sprintf("%sroot-%s-cert.pem", CERT_FILES_PATH, seqnr))
if err != nil {
return err
}
thisupdate := now
if thisupdate.Before(cert.NotBefore) {
thisupdate = cert.NotBefore.Add(1 * time.Second)
}
nextupdate := now.Add(crlint)
maxNext := cert.NotAfter.Add(-1 * time.Second)
if nextupdate.After(maxNext) {
nextupdate = maxNext
}
if nextupdate.Sub(thisupdate) > time.Hour*24*365 {
nextupdate = thisupdate.Add(time.Hour * 24 * 365).Add(-1 * time.Second)
}
crlnumber := fmt.Sprintf("%02d%03d%s", now.Year()-2000, now.YearDay(), seqnr)
cb := renameBackup(fmt.Sprintf("%sroot-%s-crl.pem", CERT_FILES_PATH, seqnr))
cfg := &HSMConfig{}
cfg.Initialize("root", seqnr)
if err := cfg.CreateSlot(); err != nil {
return fmt.Errorf("failed to get root slot: %s", err.Error())
}
keyCfg, err := ceremonyConfig("templates/cert-ceremonies/root-crl.yaml", map[string]string{
"Module": cfg.Module,
"UserPIN": cfg.UserPIN,
"RootSlotID": cfg.SlotID,
"RootLabel": cfg.Label,
"Path": CERT_FILES_PATH,
"RootSeqNr": seqnr,
"ThisUpdate": thisupdate.UTC().Format("2006-01-02 15:04:05"),
"NextUpdate": nextupdate.UTC().Format("2006-01-02 15:04:05"),
"CrlNumber": crlnumber,
})
if err != nil {
ci.Errors["CRL"] = "error preparing for root crl ceremony, see logs for details"
cb.Restore()
return fmt.Errorf("could not fill root crl ceremony template: %s", err.Error())
}
defer os.Remove(keyCfg)
err = waitForFile("/opt/boulder/bin/ceremony")
if err != nil {
return fmt.Errorf("could not wait for /opt/boulder/bin/ceremony to exist: %s", err.Error())
}
if _, err = exeCmd("/opt/boulder/bin/ceremony -config " + keyCfg); err != nil {
ci.Errors["CRL"] = "failed to execute root crl ceremony, see logs for details"
cb.Restore()
return err
}
cb.Remove()
return nil
}
// Generate a key and certificate file for the data from this CertificateInfo
func (ci *CertificateInfo) Generate(certBase string) error {
var err error
if ci.IsRoot {
_, err = ci.CeremonyRoot("01", false)
viper.Set("crl_root_days", ci.NumDays)
_ = viper.WriteConfig()
} else {
_, err = ci.CeremonyIssuer("01", "01", false)
}
if err != nil {
log.Printf("failed to create certificate: %s", err.Error())
return errors.New("failed to create certificate, see logs for details")
}
if !ci.IsRoot {
// Create CRLs stating that the intermediates are not revoked.
err = ci.CeremonyRootCRL("01")
if err != nil {
log.Printf("failed to create crl: %s", err.Error())
return errors.New("failed to create crl, see logs for details")
}
}
return nil
}
// ImportPkcs12 imports an uploaded PKCS#12 / PFX file
func (ci *CertificateInfo) ImportPkcs12(tmpFile string, tmpKey string, tmpCert string) error {
if ci.IsRoot {
if (strings.Index(ci.ImportHandler.Filename, "labca-root-01-cert") != 0) && (strings.Index(ci.ImportHandler.Filename, "labca_root") != 0) {
fmt.Printf("WARNING: importing root from .pfx file but name is %s\n", ci.ImportHandler.Filename)
}
} else {
if (strings.Index(ci.ImportHandler.Filename, "labca-issuer-01-cert") != 0) && (strings.Index(ci.ImportHandler.Filename, "labca_issuer") != 0) {
fmt.Printf("WARNING: importing issuer from .pfx file but name is %s\n", ci.ImportHandler.Filename)
}
}
pwd := "pass:dummy"
if ci.ImportPwd != "" {
pwd = "pass:" + strings.Replace(ci.ImportPwd, " ", "\\\\", -1)
}
if out, err := exeCmd("openssl pkcs12 -in " + strings.Replace(tmpFile, " ", "\\\\", -1) + " -password " + pwd + " -nocerts -nodes -out " + tmpKey); err != nil {
if strings.Contains(string(out), "invalid password") {
return errors.New("incorrect password")
}
return reportError(err)
}
if out, err := exeCmd("openssl pkcs12 -in " + strings.Replace(tmpFile, " ", "\\\\", -1) + " -password " + pwd + " -nokeys -out " + tmpCert); err != nil {
if strings.Contains(string(out), "invalid password") {
return errors.New("incorrect password")
}
return reportError(err)
}
return nil
}
// ImportZip imports an uploaded ZIP file
func (ci *CertificateInfo) ImportZip(tmpFile string, tmpDir string) error {
if ci.IsRoot {
if (strings.Index(ci.ImportHandler.Filename, "labca-root-01-cert") != 0) && (strings.Index(ci.ImportHandler.Filename, "labca_root") != 0) && (strings.Index(ci.ImportHandler.Filename, "labca_certificates") != 0) {
fmt.Printf("WARNING: importing root from .zip file but name is %s\n", ci.ImportHandler.Filename)
}
} else {
if (strings.Index(ci.ImportHandler.Filename, "labca-issuer-01-cert") != 0) && (strings.Index(ci.ImportHandler.Filename, "labca_issuer") != 0) {
fmt.Printf("WARNING: importing issuer from .zip file but name is %s\n", ci.ImportHandler.Filename)
}
}
cmd := "unzip -j"
if ci.ImportPwd != "" {
cmd = cmd + " -P " + strings.Replace(ci.ImportPwd, " ", "\\\\", -1)
} else {
cmd = cmd + " -P dummy"
}
cmd = cmd + " " + strings.Replace(tmpFile, " ", "\\\\", -1) + " -d " + tmpDir
if _, err := exeCmd(cmd); err != nil {
if err.Error() == "exit status 82" {
return errors.New("incorrect password")
}
return reportError(err)
}
return nil
}
// Import a certificate and key file
func (ci *CertificateInfo) Import(tmpDir string, tmpKey string, tmpCert string) error {
tmpFile := filepath.Join(tmpDir, ci.ImportHandler.Filename)
f, err := os.OpenFile(tmpFile, os.O_WRONLY|os.O_CREATE, 0666)
if err != nil {
return err
}
defer f.Close()
_, _ = io.Copy(f, ci.ImportFile)
contentType := ci.ImportHandler.Header.Get("Content-Type")
if contentType == "application/x-pkcs12" {
err := ci.ImportPkcs12(tmpFile, tmpKey, tmpCert)
if err != nil {
return err
}
} else if contentType == "application/zip" || contentType == "application/x-zip-compressed" {
err := ci.ImportZip(tmpFile, tmpDir)
if err != nil {
return err
}
} else {
return errors.New("Content Type '" + contentType + "' not supported!")
}
return nil
}
// Upload a certificate and key file
func (ci *CertificateInfo) Upload(tmpKey string, tmpCert string) error {
if ci.Key != "" {
if err := os.WriteFile(tmpKey, []byte(ci.Key), 0644); err != nil {
return err
}
pwd := "pass:dummy"
if ci.Passphrase != "" {
pwd = "pass:" + strings.Replace(ci.Passphrase, " ", "\\\\", -1)
}
if out, err := exeCmd("openssl pkey -passin " + pwd + " -in " + tmpKey + " -out " + tmpKey + "-out"); err != nil {
if strings.Contains(string(out), ":bad decrypt:") {
return errors.New("incorrect password")
}
return reportError(err)
}
if _, err := exeCmd("mv " + tmpKey + "-out " + tmpKey); err != nil {
return reportError(err)
}
}
if err := os.WriteFile(tmpCert, []byte(ci.Certificate), 0644); err != nil {
return err
}
if out, err := exeCmd("openssl x509 -in " + tmpCert + " -out " + tmpCert + "-out"); err != nil {
return reportError(out)
}
if _, err := exeCmd("mv " + tmpCert + "-out " + tmpCert); err != nil {
return reportError(err)
}
return nil
}
func parseSubjectDn(subject string) map[string]string {
trackerResultMap := map[string]string{"C=": "", "C =": "", "O=": "", "O =": "", "CN=": "", "CN =": "", "OU=": "", "OU =": ""}
for tracker := range trackerResultMap {
index := strings.Index(subject, tracker)
if index < 0 {
continue
}
var res string
// track quotes for delimited fields so we know not to split on the comma
quoteCount := 0
for i := index + len(tracker); i < len(subject); i++ {
char := subject[i]
// if ", we need to count and delimit
if char == 34 {
quoteCount++
if quoteCount == 2 {
break
} else {
continue
}
}
// comma, lets stop here but only if we don't have quotes
if char == 44 && quoteCount == 0 {
break
}
// add this individual char
res += string(rune(char))
}
trackerResultMap[strings.TrimSpace(strings.TrimSuffix(tracker, "="))] = strings.TrimSpace(strings.TrimPrefix(res, "="))
}
for k, v := range trackerResultMap {
if len(v) == 0 {
delete(trackerResultMap, k)
}
}
return trackerResultMap
}
// VerifyCerts verifies the root and the issuer certificates
func (ci *CertificateInfo) VerifyCerts(path string, rootCert string, rootKey string, issuerCert string, issuerKey string) error {
var rootSubject string
if (rootCert != "") && (rootKey != "") {
r, err := exeCmd("openssl x509 -noout -subject -in " + rootCert)
if err != nil {
return reportError(err)
}
rootSubject = string(r[0 : len(r)-1])
fmt.Printf("Import root with subject '%s'\n", rootSubject)
subjectMap := parseSubjectDn(rootSubject)
if val, ok := subjectMap["C"]; ok {
ci.Country = val
}
if val, ok := subjectMap["O"]; ok {
ci.Organization = val
}
if val, ok := subjectMap["CN"]; ok {
ci.CommonName = val
}
keyFileExists := true
if _, err := os.Stat(rootKey); errors.Is(err, fs.ErrNotExist) {
keyFileExists = false
}
if keyFileExists {
_, err = exeCmd("openssl pkey -noout -in " + rootKey)
if err != nil {
return reportError(err)
}
fmt.Println("Import root key")
}
}
if (issuerCert != "") && (issuerKey != "") {
r, err := exeCmd("openssl x509 -noout -subject -in " + issuerCert)
if err != nil {
return reportError(err)
}
fmt.Printf("Import issuer with subject '%s'\n", string(r[0:len(r)-1]))
r, err = exeCmd("openssl x509 -noout -issuer -in " + issuerCert)
if err != nil {
return reportError(err)
}
issuerIssuer := string(r[0 : len(r)-1])
fmt.Printf("Issuer certificate issued by CA '%s'\n", issuerIssuer)
if rootSubject == "" {
r, err := exeCmd("openssl x509 -noout -subject -in " + CERT_FILES_PATH + "root-01-cert.pem")
if err != nil {
return reportError(err)
}
rootSubject = string(r[0 : len(r)-1])
}
issuerIssuer = strings.Replace(issuerIssuer, "issuer=", "", -1)
rootSubject = strings.Replace(rootSubject, "subject=", "", -1)
if issuerIssuer != rootSubject {
return errors.New("issuer not issued by our Root CA")
}
_, err = exeCmd("openssl verify -CAfile " + CERT_FILES_PATH + "root-01-cert.pem " + issuerCert)
if err != nil {
return errors.New("could not verify that issuer was issued by our Root CA")
}
_, err = exeCmd("openssl pkey -noout -in " + issuerKey)
if err != nil {
return reportError(err)
}
fmt.Println("Import issuer key")
}
return nil
}
// ImportFiles moves certificate files to their final location and imports the keys into the HSM
func (ci *CertificateInfo) ImportFiles(path string, rootCert string, rootKey string, issuerCert string, issuerKey string) error {
if rootKey != "" {
keyFileExists := true
if _, err := os.Stat(rootKey); errors.Is(err, fs.ErrNotExist) {
keyFileExists = false
}
if keyFileExists {
rootseqnr := "01"
cfg := &HSMConfig{}
cfg.Initialize("root", rootseqnr)
if err := cfg.CreateSlot(); err != nil {
return fmt.Errorf("failed to create root slot: %s", err.Error())
}
pubKey, err := cfg.ImportKeyCert(rootKey, rootCert)
if err != nil {
return fmt.Errorf("failed to import root key: %s", err.Error())
}
var pubKeyBytes []byte
if reflect.TypeOf(pubKey).String() == "rsa.PublicKey" {
pk := pubKey.(rsa.PublicKey)
pubKeyBytes, err = x509.MarshalPKIXPublicKey(&pk)
} else if reflect.TypeOf(pubKey).String() == "ecdsa.PublicKey" {
pk := pubKey.(ecdsa.PublicKey)
pubKeyBytes, err = x509.MarshalPKIXPublicKey(&pk)
} else {
return fmt.Errorf("unknown private key type: %s", reflect.TypeOf(pubKey).String())
}
if err != nil {
return fmt.Errorf("failed to marshal root pubkey: %s", err.Error())
}
file, err := os.Create(fmt.Sprintf("%sroot-%s-pubkey.pem", CERT_FILES_PATH, rootseqnr))
if err != nil {
return fmt.Errorf("failed to create root pubkey file: %s", err.Error())
}
defer file.Close()
if err := pem.Encode(file, &pem.Block{Type: "PUBLIC KEY", Bytes: pubKeyBytes}); err != nil {
return fmt.Errorf("failed to write root pubkey: %s", err.Error())
}
}
}
if rootCert != "" {
if _, err := exeCmd("mv " + rootCert + " " + path); err != nil {
return reportError(err)
}
}
if issuerKey != "" {
seqnr := "01"
cfg := &HSMConfig{}
cfg.Initialize("issuer", seqnr)
if err := cfg.CreateSlot(); err != nil {
return fmt.Errorf("failed to create issuer slot: %s", err.Error())
}
pubKey, err := cfg.ImportKeyCert(issuerKey, issuerCert)
if err != nil {
return reportError(err)
}
var pubKeyBytes []byte
if reflect.TypeOf(pubKey).String() == "rsa.PublicKey" {
pk := pubKey.(rsa.PublicKey)
pubKeyBytes, err = x509.MarshalPKIXPublicKey(&pk)
} else if reflect.TypeOf(pubKey).String() == "ecdsa.PublicKey" {
pk := pubKey.(ecdsa.PublicKey)
pubKeyBytes, err = x509.MarshalPKIXPublicKey(&pk)
} else {
return fmt.Errorf("unknown private key type: %s", reflect.TypeOf(pubKey).String())
}
if err != nil {
return fmt.Errorf("failed to marshal issuer pubkey: %s", err.Error())
}
file, err := os.Create(fmt.Sprintf("%sissuer-%s-pubkey.pem", CERT_FILES_PATH, seqnr))
if err != nil {
return fmt.Errorf("failed to create issuer pubkey file: %s", err.Error())
}
defer file.Close()
if err := pem.Encode(file, &pem.Block{Type: "PUBLIC KEY", Bytes: pubKeyBytes}); err != nil {
return fmt.Errorf("failed to write issuer pubkey: %s", err.Error())
}
}
if issuerCert != "" {
if _, err := exeCmd("mv " + issuerCert + " " + path); err != nil {
return reportError(err)
}
}
return nil
}
// Extract key and certificate files from a container file
func (ci *CertificateInfo) Extract(certBase string, tmpDir string, wasCSR bool) error {
var rootCert string
var rootKey string
var issuerCert string
var issuerKey string
path := CERT_FILES_PATH // TODO !!
if ci.IsRoot {
rootCert = filepath.Join(tmpDir, "root-01-cert.pem")
rootKey = filepath.Join(tmpDir, "root-01-key.pem")
if _, err := os.Stat(rootCert); errors.Is(err, fs.ErrNotExist) {
altCert := filepath.Join(tmpDir, "root-ca.pem")
if _, err = os.Stat(altCert); err == nil {
if _, err := exeCmd("mv " + altCert + " " + rootCert); err != nil {
return err
}
}
altKey := filepath.Join(tmpDir, "root-ca.key")
if _, err = os.Stat(altKey); err == nil {
if _, err := exeCmd("mv " + altKey + " " + rootKey); err != nil {
return err
}
}
}
if _, err := os.Stat(rootCert); errors.Is(err, fs.ErrNotExist) {
altCert := filepath.Join(tmpDir, "test-root.pem")
if _, err = os.Stat(altCert); err == nil {
if _, err := exeCmd("mv " + altCert + " " + rootCert); err != nil {
return err
}
}
altKey := filepath.Join(tmpDir, "test-root.key")
if _, err = os.Stat(altKey); err == nil {
if _, err := exeCmd("mv " + altKey + " " + rootKey); err != nil {
return err
}
}
if _, err := os.Stat(rootCert); errors.Is(err, fs.ErrNotExist) {
return errors.New("file does not contain root certificate")
}
}
}
issuerCert = filepath.Join(tmpDir, "issuer-01-cert.pem")
issuerKey = filepath.Join(tmpDir, "issuer-01-key.pem")
if _, err := os.Stat(issuerCert); errors.Is(err, fs.ErrNotExist) {
if ci.IsRoot {
issuerCert = ""
} else {
altCert := filepath.Join(tmpDir, "ca-int.pem")
if _, err = os.Stat(altCert); err == nil {
if _, err := exeCmd("mv " + altCert + " " + issuerCert); err != nil {
return err
}
}
if _, err := os.Stat(issuerCert); errors.Is(err, fs.ErrNotExist) {
altCert := filepath.Join(tmpDir, "test-ca.pem")
if _, err = os.Stat(altCert); err == nil {
if _, err := exeCmd("mv " + altCert + " " + issuerCert); err != nil {
return err
}
}
if _, err := os.Stat(issuerCert); errors.Is(err, fs.ErrNotExist) {
return errors.New("file does not contain issuer certificate")
}
}
}
}
if _, err := os.Stat(issuerKey); errors.Is(err, fs.ErrNotExist) {
if ci.IsRoot || wasCSR {
issuerKey = ""
} else {
altKey := filepath.Join(tmpDir, "ca-int.key")
if _, err = os.Stat(altKey); err == nil {
if _, err := exeCmd("mv " + altKey + " " + issuerKey); err != nil {
return err
}
}
if _, err := os.Stat(issuerKey); errors.Is(err, fs.ErrNotExist) {
altKey := filepath.Join(tmpDir, "test-ca.key")
if _, err = os.Stat(altKey); err == nil {
if _, err := exeCmd("mv " + altKey + " " + issuerKey); err != nil {
return err
}
}
if _, err := os.Stat(issuerKey); errors.Is(err, fs.ErrNotExist) {
return errors.New("file does not contain issuer key")
}
}
}
}
err := ci.VerifyCerts(path, rootCert, rootKey, issuerCert, issuerKey)
if err != nil {
return err
}
// All is good now, move files to their permanent location...
err = ci.ImportFiles(path, rootCert, rootKey, issuerCert, issuerKey)
if err != nil {
return err
}
// Extract enddate to determine what the default CRL validity should be
if ci.IsRoot {
certFile := path + filepath.Base(rootCert)
read, err := os.ReadFile(certFile)
if err != nil {
fmt.Println(err)
return errors.New("could not read '" + certFile + "': " + err.Error())
}
block, _ := pem.Decode(read)
if block == nil || block.Type != "CERTIFICATE" {
fmt.Println(block)
return errors.New("failed to decode PEM block containing certificate")
}
crt, err := x509.ParseCertificate(block.Bytes)
if err != nil {
return err
}
numDays := time.Until(crt.NotAfter).Hours() / 24