123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- package main
- import (
- "crypto/rand"
- "flag"
- "fmt"
- "io"
- "io/ioutil"
- "net"
- "os"
- "strings"
- "time"
- "golang.org/x/crypto/curve25519"
- "github.com/slackhq/nebula/cert"
- )
- type signFlags struct {
- set *flag.FlagSet
- caKeyPath *string
- caCertPath *string
- name *string
- ip *string
- duration *time.Duration
- inPubPath *string
- outKeyPath *string
- outCertPath *string
- groups *string
- subnets *string
- }
- func newSignFlags() *signFlags {
- sf := signFlags{set: flag.NewFlagSet("sign", flag.ContinueOnError)}
- sf.set.Usage = func() {}
- sf.caKeyPath = sf.set.String("ca-key", "ca.key", "Optional: path to the signing CA key")
- sf.caCertPath = sf.set.String("ca-crt", "ca.crt", "Optional: path to the signing CA cert")
- sf.name = sf.set.String("name", "", "Required: name of the cert, usually a hostname")
- sf.ip = sf.set.String("ip", "", "Required: ip and network in CIDR notation to assign the cert")
- sf.duration = sf.set.Duration("duration", 0, "Required: how long the cert should be valid for. Valid time units are seconds: \"s\", minutes: \"m\", hours: \"h\"")
- sf.inPubPath = sf.set.String("in-pub", "", "Optional (if out-key not set): path to read a previously generated public key")
- sf.outKeyPath = sf.set.String("out-key", "", "Optional (if in-pub not set): path to write the private key to")
- sf.outCertPath = sf.set.String("out-crt", "", "Optional: path to write the certificate to")
- sf.groups = sf.set.String("groups", "", "Optional: comma separated list of groups")
- sf.subnets = sf.set.String("subnets", "", "Optional: comma seperated list of subnet this cert can serve for")
- return &sf
- }
- func signCert(args []string, out io.Writer, errOut io.Writer) error {
- sf := newSignFlags()
- err := sf.set.Parse(args)
- if err != nil {
- return err
- }
- if err := mustFlagString("ca-key", sf.caKeyPath); err != nil {
- return err
- }
- if err := mustFlagString("ca-crt", sf.caCertPath); err != nil {
- return err
- }
- if err := mustFlagString("name", sf.name); err != nil {
- return err
- }
- if err := mustFlagString("ip", sf.ip); err != nil {
- return err
- }
- if *sf.inPubPath != "" && *sf.outKeyPath != "" {
- return newHelpErrorf("cannot set both -in-pub and -out-key")
- }
- rawCAKey, err := ioutil.ReadFile(*sf.caKeyPath)
- if err != nil {
- return fmt.Errorf("error while reading ca-key: %s", err)
- }
- caKey, _, err := cert.UnmarshalEd25519PrivateKey(rawCAKey)
- if err != nil {
- return fmt.Errorf("error while parsing ca-key: %s", err)
- }
- rawCACert, err := ioutil.ReadFile(*sf.caCertPath)
- if err != nil {
- return fmt.Errorf("error while reading ca-crt: %s", err)
- }
- caCert, _, err := cert.UnmarshalNebulaCertificateFromPEM(rawCACert)
- if err != nil {
- return fmt.Errorf("error while parsing ca-crt: %s", err)
- }
- issuer, err := caCert.Sha256Sum()
- if err != nil {
- return fmt.Errorf("error while getting -ca-crt fingerprint: %s", err)
- }
- if caCert.Expired(time.Now()) {
- return fmt.Errorf("ca certificate is expired")
- }
- // if no duration is given, expire one second before the root expires
- if *sf.duration <= 0 {
- *sf.duration = time.Until(caCert.Details.NotAfter) - time.Second*1
- }
- if caCert.Details.NotAfter.Before(time.Now().Add(*sf.duration)) {
- return fmt.Errorf("refusing to generate certificate with duration beyond root expiration: %s", caCert.Details.NotAfter)
- }
- ip, ipNet, err := net.ParseCIDR(*sf.ip)
- if err != nil {
- return newHelpErrorf("invalid ip definition: %s", err)
- }
- ipNet.IP = ip
- groups := []string{}
- if *sf.groups != "" {
- for _, rg := range strings.Split(*sf.groups, ",") {
- g := strings.TrimSpace(rg)
- if g != "" {
- groups = append(groups, g)
- }
- }
- }
- subnets := []*net.IPNet{}
- if *sf.subnets != "" {
- for _, rs := range strings.Split(*sf.subnets, ",") {
- rs := strings.Trim(rs, " ")
- if rs != "" {
- _, s, err := net.ParseCIDR(rs)
- if err != nil {
- return newHelpErrorf("invalid subnet definition: %s", err)
- }
- subnets = append(subnets, s)
- }
- }
- }
- var pub, rawPriv []byte
- if *sf.inPubPath != "" {
- rawPub, err := ioutil.ReadFile(*sf.inPubPath)
- if err != nil {
- return fmt.Errorf("error while reading in-pub: %s", err)
- }
- pub, _, err = cert.UnmarshalX25519PublicKey(rawPub)
- if err != nil {
- return fmt.Errorf("error while parsing in-pub: %s", err)
- }
- } else {
- pub, rawPriv = x25519Keypair()
- }
- nc := cert.NebulaCertificate{
- Details: cert.NebulaCertificateDetails{
- Name: *sf.name,
- Ips: []*net.IPNet{ipNet},
- Groups: groups,
- Subnets: subnets,
- NotBefore: time.Now(),
- NotAfter: time.Now().Add(*sf.duration),
- PublicKey: pub,
- IsCA: false,
- Issuer: issuer,
- },
- }
- if *sf.outKeyPath == "" {
- *sf.outKeyPath = *sf.name + ".key"
- }
- if *sf.outCertPath == "" {
- *sf.outCertPath = *sf.name + ".crt"
- }
- if _, err := os.Stat(*sf.outKeyPath); err == nil {
- return fmt.Errorf("refusing to overwrite existing key: %s", *sf.outKeyPath)
- }
- if _, err := os.Stat(*sf.outCertPath); err == nil {
- return fmt.Errorf("refusing to overwrite existing cert: %s", *sf.outCertPath)
- }
- err = nc.Sign(caKey)
- if err != nil {
- return fmt.Errorf("error while signing: %s", err)
- }
- if *sf.inPubPath == "" {
- err = ioutil.WriteFile(*sf.outKeyPath, cert.MarshalX25519PrivateKey(rawPriv), 0600)
- if err != nil {
- return fmt.Errorf("error while writing out-key: %s", err)
- }
- }
- b, err := nc.MarshalToPEM()
- if err != nil {
- return fmt.Errorf("error while marshalling certificate: %s", err)
- }
- err = ioutil.WriteFile(*sf.outCertPath, b, 0600)
- if err != nil {
- return fmt.Errorf("error while writing out-crt: %s", err)
- }
- return nil
- }
- func x25519Keypair() ([]byte, []byte) {
- var pubkey, privkey [32]byte
- if _, err := io.ReadFull(rand.Reader, privkey[:]); err != nil {
- panic(err)
- }
- curve25519.ScalarBaseMult(&pubkey, &privkey)
- return pubkey[:], privkey[:]
- }
- func signSummary() string {
- return "sign <flags>: create and sign a certificate"
- }
- func signHelp(out io.Writer) {
- sf := newSignFlags()
- out.Write([]byte("Usage of " + os.Args[0] + " " + signSummary() + "\n"))
- sf.set.SetOutput(out)
- sf.set.PrintDefaults()
- }
|