2022-08-03 12:38:36 +00:00
|
|
|
/*
|
|
|
|
Copyright 2022 CAcert Inc.
|
|
|
|
SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
//go:generate go run github.com/shamaton/msgpackgen
|
|
|
|
|
|
|
|
// Package messages contains structure definitions for protocol messages
|
|
|
|
package messages
|
|
|
|
|
|
|
|
import (
|
2022-11-20 17:59:37 +00:00
|
|
|
"crypto/x509"
|
2022-11-30 17:42:40 +00:00
|
|
|
"encoding/json"
|
2022-11-20 17:59:37 +00:00
|
|
|
"encoding/pem"
|
2022-08-03 12:38:36 +00:00
|
|
|
"fmt"
|
2022-11-28 16:10:46 +00:00
|
|
|
"math/big"
|
2022-11-20 09:07:02 +00:00
|
|
|
"strings"
|
2022-08-03 12:38:36 +00:00
|
|
|
"time"
|
2022-11-28 16:10:46 +00:00
|
|
|
|
|
|
|
// required for msgpackgen
|
|
|
|
_ "github.com/dave/jennifer"
|
|
|
|
|
|
|
|
"github.com/google/uuid"
|
2022-08-03 12:38:36 +00:00
|
|
|
)
|
|
|
|
|
2022-11-20 17:59:37 +00:00
|
|
|
type CommandCode int8
|
2022-08-03 12:38:36 +00:00
|
|
|
|
|
|
|
const (
|
2022-11-29 13:05:10 +00:00
|
|
|
CmdUndef CommandCode = iota
|
|
|
|
CmdHealth
|
2022-11-20 17:59:37 +00:00
|
|
|
CmdFetchCRL
|
2022-08-03 12:38:36 +00:00
|
|
|
)
|
|
|
|
|
2022-11-20 17:59:37 +00:00
|
|
|
var commandNames = map[CommandCode]string{
|
2022-11-29 13:05:10 +00:00
|
|
|
CmdUndef: "UNDEFINED",
|
2022-11-20 17:59:37 +00:00
|
|
|
CmdHealth: "HEALTH",
|
2022-11-29 08:57:23 +00:00
|
|
|
CmdFetchCRL: "FETCH CRL",
|
2022-11-20 17:59:37 +00:00
|
|
|
}
|
|
|
|
|
2022-08-03 12:38:36 +00:00
|
|
|
func (c CommandCode) String() string {
|
2022-11-20 17:59:37 +00:00
|
|
|
if name, ok := commandNames[c]; ok {
|
|
|
|
return name
|
2022-08-03 12:38:36 +00:00
|
|
|
}
|
|
|
|
|
2022-11-20 17:59:37 +00:00
|
|
|
return fmt.Sprintf("unknown %d", c)
|
2022-08-03 12:38:36 +00:00
|
|
|
}
|
|
|
|
|
2022-11-20 17:59:37 +00:00
|
|
|
type ResponseCode int8
|
2022-08-03 12:38:36 +00:00
|
|
|
|
|
|
|
const (
|
2022-11-29 13:05:10 +00:00
|
|
|
RespError ResponseCode = -1
|
|
|
|
RespUndef ResponseCode = iota
|
|
|
|
RespHealth
|
2022-11-20 17:59:37 +00:00
|
|
|
RespFetchCRL
|
2022-08-03 12:38:36 +00:00
|
|
|
)
|
|
|
|
|
2022-11-20 17:59:37 +00:00
|
|
|
var responseNames = map[ResponseCode]string{
|
|
|
|
RespError: "ERROR",
|
2022-11-29 13:05:10 +00:00
|
|
|
RespUndef: "UNDEFINED",
|
2022-11-20 17:59:37 +00:00
|
|
|
RespHealth: "HEALTH",
|
|
|
|
RespFetchCRL: "FETCH CRL",
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c ResponseCode) String() string {
|
|
|
|
if name, ok := responseNames[c]; ok {
|
|
|
|
return name
|
2022-11-20 09:07:02 +00:00
|
|
|
}
|
2022-11-20 17:59:37 +00:00
|
|
|
|
|
|
|
return fmt.Sprintf("unknown %d", c)
|
|
|
|
}
|
|
|
|
|
|
|
|
type CommandAnnounce struct {
|
|
|
|
Code CommandCode `msgpack:"code"`
|
2022-11-28 16:10:46 +00:00
|
|
|
ID string `msgpack:"id"`
|
2022-11-20 17:59:37 +00:00
|
|
|
Created time.Time `msgpack:"created"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *CommandAnnounce) String() string {
|
2022-11-28 16:10:46 +00:00
|
|
|
return fmt.Sprintf("code=%s, id=%s, created=%s", r.Code, r.ID, r.Created.Format(time.RFC3339))
|
2022-11-20 17:59:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ResponseAnnounce struct {
|
|
|
|
Code ResponseCode `msgpack:"code"`
|
|
|
|
Created time.Time `msgpack:"created"`
|
2022-11-28 16:10:46 +00:00
|
|
|
ID string `msgpack:"id"`
|
2022-11-20 17:59:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r *ResponseAnnounce) String() string {
|
2022-11-28 16:10:46 +00:00
|
|
|
return fmt.Sprintf("code=%s, id=%s, created=%s", r.Code, r.ID, r.Created.Format(time.RFC3339))
|
2022-11-20 09:07:02 +00:00
|
|
|
}
|
|
|
|
|
2022-11-20 17:59:37 +00:00
|
|
|
type FetchCRLCommand struct {
|
2022-11-28 16:10:46 +00:00
|
|
|
IssuerID string `msgpack:"issuer_id"`
|
|
|
|
LastKnownID *big.Int `msgpack:"last_known_id"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *FetchCRLCommand) String() string {
|
|
|
|
builder := &strings.Builder{}
|
|
|
|
|
|
|
|
_, _ = fmt.Fprintf(builder, "issuerId='%s'", f.IssuerID)
|
|
|
|
|
|
|
|
if f.LastKnownID != nil {
|
|
|
|
_, _ = fmt.Fprintf(builder, ", lastKnownId=%s", f.LastKnownID.Text(16))
|
|
|
|
}
|
|
|
|
|
|
|
|
return builder.String()
|
2022-08-03 12:38:36 +00:00
|
|
|
}
|
|
|
|
|
2022-11-20 17:59:37 +00:00
|
|
|
type HealthCommand struct {
|
2022-11-20 09:07:02 +00:00
|
|
|
}
|
|
|
|
|
2022-11-28 16:10:46 +00:00
|
|
|
func (h *HealthCommand) String() string {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2022-08-03 13:45:27 +00:00
|
|
|
type HealthInfo struct {
|
|
|
|
Source string
|
|
|
|
Healthy bool
|
|
|
|
MoreInfo map[string]string
|
|
|
|
}
|
|
|
|
|
2022-11-20 09:07:02 +00:00
|
|
|
func (i *HealthInfo) String() string {
|
|
|
|
builder := &strings.Builder{}
|
|
|
|
|
|
|
|
_, _ = fmt.Fprintf(builder, "source: %s, healthy: %v, [\n", i.Source, i.Healthy)
|
|
|
|
|
|
|
|
for k, v := range i.MoreInfo {
|
|
|
|
_, _ = fmt.Fprintf(builder, " %s: '%s'\n", k, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
_, _ = builder.WriteRune(']')
|
|
|
|
|
|
|
|
return builder.String()
|
|
|
|
}
|
|
|
|
|
2022-11-30 17:42:40 +00:00
|
|
|
type ProfileUsage string
|
|
|
|
|
|
|
|
const (
|
|
|
|
UsageOcsp ProfileUsage = "ocsp"
|
|
|
|
UsagePerson ProfileUsage = "person"
|
|
|
|
UsageClient ProfileUsage = "client"
|
|
|
|
UsageCode ProfileUsage = "code"
|
|
|
|
UsageServer ProfileUsage = "server"
|
|
|
|
)
|
|
|
|
|
|
|
|
var validProfileUsages = map[string]ProfileUsage{
|
|
|
|
"ocsp": UsageOcsp,
|
|
|
|
"person": UsagePerson,
|
|
|
|
"client": UsageClient,
|
|
|
|
"code": UsageCode,
|
|
|
|
"server": UsageServer,
|
|
|
|
}
|
|
|
|
|
|
|
|
func ParseUsage(u string) (ProfileUsage, error) {
|
|
|
|
usage, ok := validProfileUsages[u]
|
|
|
|
if !ok {
|
|
|
|
return "", fmt.Errorf("unsupported profile usage: %s", u)
|
|
|
|
}
|
|
|
|
|
|
|
|
return usage, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type CAProfile struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
UseFor ProfileUsage `json:"use-for"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p CAProfile) String() string {
|
|
|
|
return fmt.Sprintf("profile['%s': '%s']", p.Name, p.UseFor)
|
|
|
|
}
|
|
|
|
|
|
|
|
type CertificateInfo struct {
|
|
|
|
Status string `json:"status"`
|
|
|
|
Signing bool `json:"signing"`
|
|
|
|
Profiles []CAProfile `json:"profiles"`
|
|
|
|
ValidUntil time.Time `json:"valid-until"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i CertificateInfo) String() string {
|
|
|
|
marshal, _ := json.Marshal(i)
|
|
|
|
|
|
|
|
return string(marshal)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i *HealthInfo) ParseCertificateInfo(info string) (*CertificateInfo, error) {
|
|
|
|
certInfo := CertificateInfo{}
|
|
|
|
|
|
|
|
err := json.Unmarshal([]byte(info), &certInfo)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("could not parse certificate information: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &certInfo, nil
|
|
|
|
}
|
|
|
|
|
2022-08-03 12:38:36 +00:00
|
|
|
type HealthResponse struct {
|
|
|
|
Version string `msgpack:"version"`
|
2022-11-20 17:59:37 +00:00
|
|
|
Healthy bool `msgpack:"healthy"`
|
|
|
|
Info []*HealthInfo
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *HealthResponse) String() string {
|
|
|
|
builder := &strings.Builder{}
|
|
|
|
|
|
|
|
_, _ = fmt.Fprintf(builder, "signer version=%s, healthy=%v, health data:\n", h.Version, h.Healthy)
|
|
|
|
|
|
|
|
for _, info := range h.Info {
|
|
|
|
_, _ = fmt.Fprintf(builder, " - %s", info)
|
|
|
|
}
|
|
|
|
|
|
|
|
return builder.String()
|
|
|
|
}
|
|
|
|
|
|
|
|
type FetchCRLResponse struct {
|
2022-11-28 16:10:46 +00:00
|
|
|
IssuerID string `msgpack:"issuer_id"`
|
|
|
|
IsDelta bool `msgpack:"is_delta"`
|
|
|
|
CRLData []byte `msgpack:"crl_data"`
|
|
|
|
CRLNumber *big.Int
|
2022-11-20 17:59:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r *FetchCRLResponse) String() string {
|
|
|
|
builder := &strings.Builder{}
|
|
|
|
|
|
|
|
_, _ = fmt.Fprintf(builder, "issuer id=%s, delta CRL data=%v", r.IssuerID, r.IsDelta)
|
|
|
|
|
|
|
|
if r.IsDelta {
|
|
|
|
_, _ = fmt.Fprint(builder, ", delta CRL data not shown")
|
|
|
|
} else {
|
2022-11-28 16:10:46 +00:00
|
|
|
revocationList, err := x509.ParseRevocationList(r.CRLData)
|
2022-11-20 17:59:37 +00:00
|
|
|
if err != nil {
|
|
|
|
_, _ = fmt.Fprintf(builder, ", could not parse CRL: %s", err.Error())
|
|
|
|
} else {
|
2022-11-28 16:10:46 +00:00
|
|
|
_, _ = fmt.Fprintf(
|
|
|
|
builder,
|
|
|
|
", CRL info: issuer=%s, number=%s, next update=%s, revoked certificates=%d",
|
|
|
|
revocationList.Issuer,
|
|
|
|
revocationList.Number,
|
|
|
|
revocationList.NextUpdate,
|
|
|
|
len(revocationList.RevokedCertificates),
|
|
|
|
)
|
2022-11-20 17:59:37 +00:00
|
|
|
_, _ = builder.WriteString(", CRL data:\n")
|
|
|
|
_ = pem.Encode(builder, &pem.Block{
|
|
|
|
Type: "CERTIFICATE REVOCATION LIST",
|
|
|
|
Bytes: r.CRLData,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return builder.String()
|
2022-08-03 12:38:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ErrorResponse struct {
|
|
|
|
Message string `msgpack:"message"`
|
|
|
|
}
|
2022-11-20 17:59:37 +00:00
|
|
|
|
2022-11-28 16:10:46 +00:00
|
|
|
func (e *ErrorResponse) String() string {
|
|
|
|
return fmt.Sprintf("message=%s", e.Message)
|
|
|
|
}
|
|
|
|
|
|
|
|
func BuildCommandAnnounce(code CommandCode) (*CommandAnnounce, error) {
|
|
|
|
commandID, err := uuid.NewUUID()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("could not build command id: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &CommandAnnounce{Code: code, ID: commandID.String(), Created: time.Now().UTC()}, nil
|
2022-11-20 17:59:37 +00:00
|
|
|
}
|
|
|
|
|
2022-11-28 16:10:46 +00:00
|
|
|
func BuildResponseAnnounce(code ResponseCode, commandID string) *ResponseAnnounce {
|
|
|
|
return &ResponseAnnounce{Code: code, ID: commandID, Created: time.Now().UTC()}
|
2022-11-20 17:59:37 +00:00
|
|
|
}
|