package gemini import ( "bufio" "crypto/sha512" "fmt" "io" "os" "strconv" "strings" "time" ) // Trust represents the trustworthiness of a certificate. type Trust int const ( TrustNone Trust = iota // The certificate is not trusted. TrustOnce // The certificate is trusted once. TrustAlways // The certificate is trusted always. ) // KnownHosts represents a list of known hosts. // The zero value for KnownHosts is an empty list ready to use. type KnownHosts struct { hosts map[string]Fingerprint out io.Writer } // SetOutput sets the output to which new known hosts will be written to. func (k *KnownHosts) SetOutput(w io.Writer) { k.out = w } // Add adds a fingerprint to the list of known hosts. func (k *KnownHosts) Add(hostname string, fingerprint Fingerprint) { if k.hosts == nil { k.hosts = map[string]Fingerprint{} } k.hosts[hostname] = fingerprint } // Lookup returns the fingerprint of the certificate corresponding to // the given hostname. func (k *KnownHosts) Lookup(hostname string) (Fingerprint, bool) { c, ok := k.hosts[hostname] return c, ok } // Write writes a known hosts entry to the configured output. func (k *KnownHosts) Write(hostname string, fingerprint Fingerprint) { if k.out != nil { k.writeKnownHost(k.out, hostname, fingerprint) } } // WriteAll writes all of the known hosts to the provided io.Writer. func (k *KnownHosts) WriteAll(w io.Writer) error { for h, c := range k.hosts { if _, err := k.writeKnownHost(w, h, c); err != nil { return err } } return nil } // writeKnownHost writes a known host to the provided io.Writer. func (k *KnownHosts) writeKnownHost(w io.Writer, hostname string, f Fingerprint) (int, error) { return fmt.Fprintf(w, "%s %s %s %d\n", hostname, f.Algorithm, f.Hex, f.Expires) } // Load loads the known hosts from the provided path. // New known hosts will be appended to the file. func (k *KnownHosts) Load(path string) error { f, err := os.OpenFile(path, os.O_CREATE|os.O_RDONLY, 0644) if err != nil { return err } k.Parse(f) f.Close() // Open the file for append-only use f, err = os.OpenFile(path, os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0644) if err != nil { return err } k.out = f return nil } // Parse parses the provided reader and adds the parsed known hosts to the list. // Invalid entries are ignored. func (k *KnownHosts) Parse(r io.Reader) { if k.hosts == nil { k.hosts = map[string]Fingerprint{} } scanner := bufio.NewScanner(r) for scanner.Scan() { text := scanner.Text() parts := strings.Split(text, " ") if len(parts) < 4 { continue } hostname := parts[0] algorithm := parts[1] if algorithm != "SHA-512" { continue } fingerprint := parts[2] expires, err := strconv.ParseInt(parts[3], 10, 0) if err != nil { continue } k.hosts[hostname] = Fingerprint{ Algorithm: algorithm, Hex: fingerprint, Expires: expires, } } } // Fingerprint represents a fingerprint using a certain algorithm. type Fingerprint struct { Algorithm string // fingerprint algorithm e.g. SHA-512 Hex string // fingerprint in hexadecimal, with ':' between each octet Expires int64 // unix time of the fingerprint expiration date } // NewFingerprint returns the SHA-512 fingerprint of the provided raw data. func NewFingerprint(raw []byte, expires time.Time) Fingerprint { sum512 := sha512.Sum512(raw) var b strings.Builder for i, f := range sum512 { if i > 0 { b.WriteByte(':') } fmt.Fprintf(&b, "%02X", f) } return Fingerprint{ Algorithm: "SHA-512", Hex: b.String(), Expires: expires.Unix(), } }