79 Commits (af1ed40babb98bb4c269a8bf876161c67ad14e48)
 

Author SHA1 Message Date
Jan Dittberner af1ed40bab Fix golangci-lint warnings 6 months ago
Jan Dittberner bcdb792897 Fix signer behaviour for broken CRLs 6 months ago
Jan Dittberner da1595c8e7 Update dependencies
- update dependencies
- remove required year from Copyright
6 months ago
Jan Dittberner 2a800ecaf7 Update to Go 1.21
- bump go module version to 1.21
- replace deprecated CRL APIs
- update dependencies
10 months ago
Jan Dittberner 315d15a133 Ignore files generated by sc-hsm-tool 2 years ago
Jan Dittberner db0aacb2da Add sign certificate response handling to clientsim 2 years ago
Jan Dittberner e4c4d0b9eb Regenerate msgpackgen definitions 2 years ago
Jan Dittberner e35e9e9df6 Cleanup command and response types
- use consistent method recipient names
- move ErrorResponse to the end of the messages
- fix email address output in SignCertificateCommand String() method
2 years ago
Jan Dittberner f92bba5496 Define command and response for SignOpenPGP 2 years ago
Jan Dittberner c452453c31 Define command and response for RevokeCertificate 2 years ago
Jan Dittberner ad6b987c91 Implement sign certificate command
- decouple config and messages
- cainfo maps from config.Profile to messages.CAProfile
- config parses profile usage
- validity can be configured per certificate profile, defaults are defined in
  a defaultValidity method of the profile usage
- the client simulator emits certificate signing requests at random intervals
- add implementation of SingCertificateCommand to MsgPackHandler
- remove indirection signing.RequestSignature
2 years ago
Jan Dittberner 9c17a6730f Fix storing of zero value revocation timestamp 2 years ago
Jan Dittberner 40b3219c7e Add serialization/deserialization tests 2 years ago
Jan Dittberner a0b6fdce98 Refactor public API tests for messages
- move tests for public API to messages_test package
2 years ago
Jan Dittberner 51ca9cc69d Refactor public API tests for protocol
- move tests for public API to protocol_test package
- add tests for context handling of COBSFramer
2 years ago
Jan Dittberner 7852c4d3df Add explicit channel direction information
This commit adds explicit input and output channel type information to
make the channel's intent visible to developers.
2 years ago
Jan Dittberner 46407b3685 Implement write canceling in COBSFramer 2 years ago
Jan Dittberner cd01f07007 Fix grammar 2 years ago
Jan Dittberner bc81ab84cb Strip unnecessary prefix of ca names 2 years ago
Jan Dittberner afe7d23c9b Implement CA information command
This commit defines command codes for planned commands and response codes for
their corresponding responses.

The health response from the HSM access component has been reduced to avoid
unnecessary data transmissions.

A new CA information command has been implemented. This command can be used
to retrieve the CA certificate and profile information for a given CA name.

The client simulator has been updated to retrieve CA information for all
CAs when the list of CAs changes.
2 years ago
Jan Dittberner 6f8ac9818c Update component diagram
This commit adds the Framer and Server Protocol components to the
component diagram.
2 years ago
Jan Dittberner 1374fe58e8 Implement graceful shutdown on interrupt or SIGTERM 2 years ago
Jan Dittberner 7837164e6e Build system improvements
- build PIE binaries using goreleaser
- add snapshot target to Makefile
- add -trimpath option to go build
2 years ago
Jan Dittberner 37d3b1e021 Update dependencies
This commit updates all external dependencies. The cobs module has a
changed API and code using cobs has been adapted to this new API.
2 years ago
Jan Dittberner 19436c06c2 Implement unit tests for public packages
This commit adds a comprehensive unit test suite for all public packages.
2 years ago
Jan Dittberner 51afebf2c1 Test and refactor messages
- add unit tests for all handwritten code in messages package
- use uuid.NewString() instead of uuid.NewUUID() to avoid unnecessary error
  handling
- sort code in messages.go to put type related code close to each other
- move checkFailed from hsm.Access.Healthy method to messages.CertificateInfoFailed
- add typing for Status field of messages.CertificateInfo
2 years ago
Jan Dittberner de7e716a82 Improve signer setup code
- allow multiple attempts to setup certificates
- use CAB forum BR compliant CRLDistributionPoint for Subordinate CA
  certificates by referencing their own CRL instead of their parent CA's CRL
- store certificates in DER encoded form
2 years ago
Jan Dittberner fffc65a540 Tidy up dependencies 2 years ago
Jan Dittberner 65c5bac2d9 Implement delta CRL support
This commit provides real CRL support with persistent storage of CRLs as well
as support for delta CRLs using github.com/balacode/go-delta
2 years ago
Jan Dittberner 1031ee3118 Implement configuration support for CA profiles 2 years ago
Jan Dittberner f98840bf9e Add documentation section for socat PTYs 2 years ago
Jan Dittberner c92b0455db Remove example comments from goreleaser configuration 2 years ago
Jan Dittberner c5f436b4d0 Add development documentation 2 years ago
Jan Dittberner 7b6fdbb18a Attach ClientHandler methods to references 2 years ago
Jan Dittberner af40662c7d Refactor client protocol
- define protocols.ClientHandler interface as base for client implementations
- implement protocols.ClientHandler in clientsim's ClientHandler type
- move protocol state handling into protocols.ServerProtocol and
  protocols.ClientProtocol
- move protocolState type into protocols.go
- reduce clientsim's TestCommandGenerator responsibility to test command
  generation
2 years ago
Jan Dittberner f429d3da45 Refactor server handler
- rename protocols.Handler to ServerHandler
- rename ServerHandler methods to better express their purpose
- pass command and response as parameters
- simplify state machine and handle errors in serial/seriallink.go
- implement command read timeout
- remove currentCommand and currentResponse fields from MsgPackHandler
2 years ago
Jan Dittberner 9905d748d9 Improve signer robustness
- let client simulator send some garbage bytes before starting real commands
- handle EOF during reads
2 years ago
Jan Dittberner e5dcf7afa9 Refactor COBS wire protocol
Wire protocol handling has been moved to protocol.Framer and its
implementation protocol.COBSFramer
2 years ago
Jan Dittberner faaadbe5aa Move internal code to internal packages 2 years ago
Jan Dittberner f0d456dd13 Protocol improvements
- add a client generated command ID for tracing commands and responses
- define protocol delimiter in protocol.CobsDelimiter
- apply code simplifications suggested by golangci-lint
- add Makefile
- add compile time build information for signer binary
- make sure that dependencies for msgpackgen survive go mod tidy
- extract MsgPackHandler into its own file
- add CRL number to fetch CRL response
- remove port.Flush() to avoid removing written data before it reaches the
  client
2 years ago
Jan Dittberner 8e443bd8b4 Implement protocol improvements
This commit implements a client and server side state machine
for the serial protocol.
2 years ago
Jan Dittberner 2de592d30c Implement command type handling
This commit changes the wire protocol to split between command
announcement and command payload to allow proper typing of sent and
received msgpack messages.

CRL fetching has been implemented as second command after the existing
health check command.
2 years ago
Jan Dittberner 472091b374 Switch to logrus for structured logging 2 years ago
Jan Dittberner 4c24e4692b Fix golangci-lint warnings 2 years ago
Jan Dittberner 175a72298d Centralize serial number generation 2 years ago
Jan Dittberner 64dd9429be Let the client send health checks periodically 2 years ago
Jan Dittberner 82a1284073 Rename intermediary CA to subordinate CA
This refactoring commit renames all occurrences of the term "intermediary CA"
to "subordinate CA" for better alignment with the terms used in RFC-5280 and
other standard documents.
2 years ago
Jan Dittberner 60be959c24 Implement health check infrastructure
This commit adds health check capabilities to the hsm.Access and health
response data to the messages returned by the health command.
2 years ago
Jan Dittberner 3107ad8abb Implement serial link and protocol handling infrastructure
This commit adds basic serial link and protocol support. None of the commands
from the docs/design.md document is implemented yet.

The following new packages have been added:

- seriallink containing the serial link handler including COBS decoding and
  encoding
- protocol containing the protocol handler including msgpack unmarshalling
  and marshaling
- health containing a rudimentary health check implementation
- messages containing command and response types and generated msgpack
  marshaling code

A client simulation command has been added in cmd/clientsim.

README.md got instructions how to run the client simulator. The
docs/config.sample.yaml contains a new section for the serial connection
parameters.
2 years ago
Jan Dittberner c2b987fd31 Allow hsm to use relative paths 2 years ago