-
Notifications
You must be signed in to change notification settings - Fork 2
/
db.go
111 lines (103 loc) · 2.92 KB
/
db.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
package main
import (
"bufio"
"crypto/ecdsa"
"crypto/elliptic"
"crypto/rsa"
"crypto/x509"
"encoding/asn1"
"fmt"
"log"
"net"
"net/url"
"os"
"time"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/dynamodb"
"github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute"
"github.com/pkg/errors"
)
var dyndb *dynamodb.DynamoDB
type x509Record struct {
Status string
Requester string
SerialNumber string
Issuer string
Subject string
NotBefore time.Time
NotAfter time.Time
PublicKeyAlgorithm x509.PublicKeyAlgorithm
SignatureAlgorithm x509.SignatureAlgorithm
DNSNames []string
EmailAddresses []string
IPAddresses []net.IP
URIs []*url.URL
PubKey []byte
DerCert []byte
}
func addDbRecord(crtBytes []byte) error {
// now parse the cert back and add it to the DB.
crt, err := x509.ParseCertificate(crtBytes)
if err != nil {
log.Fatalf("FATAL: %v", err)
}
// chomp out the pub key bytes
var pubBytes []byte
switch pub := crt.PublicKey.(type) {
case *rsa.PublicKey:
pubBytes, err = asn1.Marshal(*pub)
if err != nil {
return err
}
case *ecdsa.PublicKey:
pubBytes = elliptic.Marshal(pub.Curve, pub.X, pub.Y)
default:
return errors.New("only ECDSA and RSA public keys are supported")
}
reader := bufio.NewReader(os.Stdin)
fmt.Print("Enter Requester in the format of \"Joe Blogs <[email protected]>\" -> ")
requester, _ := reader.ReadString('\n')
// marshal the crt to a pem byte array
record := x509Record{
Status: "V", // Valid
Requester: requester,
SerialNumber: crt.SerialNumber.String(), // serial number should be unique (as in cryptographically) so we can use this as the key
Issuer: crt.Issuer.String(),
Subject: crt.Subject.String(),
NotBefore: crt.NotBefore,
NotAfter: crt.NotAfter,
PublicKeyAlgorithm: crt.PublicKeyAlgorithm,
SignatureAlgorithm: crt.SignatureAlgorithm,
DNSNames: crt.DNSNames,
EmailAddresses: crt.EmailAddresses,
IPAddresses: crt.IPAddresses,
URIs: crt.URIs,
PubKey: pubBytes,
DerCert: crtBytes,
}
// we should be running under the role given to us by the sts tokens.
// We'll just use this role to create a new session.
sess, err := session.NewSessionWithOptions(session.Options{
Config: aws.Config{Region: aws.String(config.AwsRegion)},
})
if err != nil {
log.Printf("ERROR: Could not create aws session (%v)", err)
return err
}
dyndb = dynamodb.New(sess)
av, err := dynamodbattribute.MarshalMap(record)
if err != nil {
return err
}
input := &dynamodb.PutItemInput{
Item: av,
TableName: aws.String(config.AwsDbTableName),
}
_, err = dyndb.PutItem(input)
if err != nil {
log.Printf("ERROR: %v", err)
return err
}
return err
}