sa: Add check for duplicates in AddPrecertificate (#4459)

This allows the CA's orphan queue to specially handle
`berrors.Duplicate` as a success case, meaning that affected
certificates can be cleared off the queue.
This commit is contained in:
Jacob Hoffman-Andrews 2019-10-03 13:29:45 -07:00 committed by Daniel McCarney
parent 31ed590edd
commit a3c3f521ef
2 changed files with 72 additions and 0 deletions

View File

@ -3,12 +3,14 @@ package sa
import (
"crypto/x509"
"errors"
"strings"
"time"
"golang.org/x/net/context"
"github.com/letsencrypt/boulder/core"
corepb "github.com/letsencrypt/boulder/core/proto"
berrors "github.com/letsencrypt/boulder/errors"
sapb "github.com/letsencrypt/boulder/sa/proto"
)
@ -52,6 +54,9 @@ func (ssa *SQLStorageAuthority) AddPrecertificate(ctx context.Context, req *sapb
Expires: parsed.NotAfter,
})
if err != nil {
if strings.HasPrefix(err.Error(), "Error 1062: Duplicate entry") {
return nil, berrors.DuplicateError("cannot add a duplicate precertificate")
}
return nil, err
}

View File

@ -0,0 +1,67 @@
package sa
import (
"bytes"
"fmt"
"io/ioutil"
"os"
"strings"
"testing"
"time"
berrors "github.com/letsencrypt/boulder/errors"
sapb "github.com/letsencrypt/boulder/sa/proto"
"github.com/letsencrypt/boulder/sa/satest"
"github.com/letsencrypt/boulder/test"
)
func TestAddPrecertificate(t *testing.T) {
if !strings.HasSuffix(os.Getenv("BOULDER_CONFIG_DIR"), "config-next") {
return
}
sa, clk, cleanUp := initSA(t)
defer cleanUp()
reg := satest.CreateWorkingRegistration(t, sa)
certDER, err := ioutil.ReadFile("test-cert2.der")
test.AssertNotError(t, err, "Couldn't read example cert DER")
serial := "ffa0160630d618b2eb5c0510824b14274856"
ocspResp := []byte{0, 0, 1}
regID := reg.ID
issuedTime := time.Date(2018, 4, 1, 7, 0, 0, 0, time.UTC).UnixNano()
_, err = sa.AddPrecertificate(ctx, &sapb.AddCertificateRequest{
Der: certDER,
RegID: &regID,
Ocsp: ocspResp,
Issued: &issuedTime,
})
test.AssertNotError(t, err, "Couldn't add test-cert2.der")
certStatus, err := sa.GetCertificateStatus(ctx, serial)
test.AssertNotError(t, err, "Couldn't get status for test-cert2.der")
test.Assert(
t,
bytes.Compare(certStatus.OCSPResponse, ocspResp) == 0,
fmt.Sprintf("OCSP responses don't match, expected: %x, got %x", certStatus.OCSPResponse, ocspResp),
)
test.Assert(
t,
clk.Now().Equal(certStatus.OCSPLastUpdated),
fmt.Sprintf("OCSPLastUpdated doesn't match, expected %s, got %s", clk.Now(), certStatus.OCSPLastUpdated),
)
_, err = sa.AddPrecertificate(ctx, &sapb.AddCertificateRequest{
Der: certDER,
RegID: &regID,
Ocsp: ocspResp,
Issued: &issuedTime,
})
if err == nil {
t.Fatalf("Expected error inserting duplicate precertificate, got none")
}
if !berrors.Is(err, berrors.Duplicate) {
t.Fatalf("Expected berrors.Duplicate inserting duplicate precertificate, got %#v", err)
}
}