All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
set_useraction in sample constitutions correctly handlesuser_data(#4229).
- New
snpinfo.shscript (#4196). - New
crypto::hmacAPI (#4204).
- Application-defined endpoints are now accessible with both
/appprefix and un-prefixed, e.g.GET /app/log/privateandGET /log/private(#4147). - The method
EndpointRegistry::get_metrics_for_endpoint(const EndpointDefinitionPtr&)has been replaced withEndpointRegistry::get_metrics_for_endpoint(const std::string& method, const std::string& verb).
- Upgraded OpenEnclave to 0.18.2 (#4132).
- New
GET /node/network/removable_nodesandDELETE /node/network/nodes/{node_id}exposed to allow operator to decide which nodes can be safely shut down after retirement, and clear their state from the Key-Value Store. - Added a new method
get_decoded_request_path_paramsthat returns a map of decoded path parameters (#4126)
- Calling
remove(K)on a KV handle no longer returns a bool indicating if the key was previously present. This can be simulated by callinghas(K)beforehand. This avoids introducing a read-dependency with every call toremove().
- Fixed issue where two primary nodes could be elected if an election occurred while a reconfiguration transaction was still pending (#4018).
- When running with
--curve-id secp256r1, we now correctly support temporary ECDH keys on curve secp256r1 for TLS 1.2 clients.
- The previous logging macros (
LOG_INFO_FMT,LOG_DEBUG_FMTetc) have been deprecated, and should no longer be used by application code. Replace with theCCF_APP_*equivalent.
/node/versionnow contains anunsafeflag reflecting the status of the build.- New per-interface configuration entries (
network.rpc_interfaces.http_configuration) are added to let operators cap the maximum size of body, header value size and number of headers in client HTTP requests. The client session is automatically closed if the HTTP request exceeds one of these limits (#3941). - Added new
recovery_countfield toGET /node/networkendpoint to track the number of disaster recovery procedures undergone by the service (#3982). - Added new
service_data_json_fileconfiguration entry tocchostto point to free-form JSON file to set arbitrary data to service (#3997). - Added new
current_service_create_txidfield toGET /node/networkendpoint to indicateTxIDat which current service was created (#3996). - Added new
read_only_directorysnapshots directory node configuration so that committed snapshots can be shared between nodes (#3973). - Experimental support for HTTP/2 (#4010).
- Generated OpenAPI now describes whether each endpoint is forwarded (#3935).
- Application code should now use the
CCF_APP_*macros rather thanLOG_*_FMT(eg -CCF_APP_INFOreplacingLOG_INFO_FMT). The new macros will add an[app]tag to all lines so they can be easily filtered from framework code (#4024).
- Fixed issue with recovery of large ledger entries (#3986).
- The "Node Output" page has been relabelled as "Troubleshooting" in the documentation and CLI commands for troubleshooting have been added to it.
- Upgraded Open Enclave to 0.18.1 (#4023).
- The node-to-node interface configuration now supports a
published_addressto enable networks with nodes running in different (virtual) subnets (#3867). - Added a
GET /node/service/previous_identityendpoint, which can be used during a recovery to look up the identity of the service before the catastrophic failure (#3880). - Added an automatic certificate management environment (ACME) client to automatically manage TLS certificates that are globally endorsed by an external authority, e.g. Let's Encrypt (#3877).
- Primary node now automatically steps down as backup (in the same view) if it has not heard back from a majority of backup nodes for an election timeout (#3685).
- Node and service PEM certificates no longer contain a trailing null byte (#3885).
- New nodes automatically shutdown if the target service certificate is misconfigured (#3895).
- Updated PSW in images to 2.16.100.
ccf_unsafeis now a separate project and package, rather than the same project and package with a decorated version, to prevent accidental misuse.
- Removed deprecated
set_execute_outside_consensus()API (#3886, #3673).
See documentation for code upgrade 1.x to 2.0 to upgrade an existing 1.x CCF service to 2.0
-
CCF is now built with Clang 10. It is strongly recommended that C++ applications upgrade to Clang 10 as well.
-
Raised the minimum supported CMake version for building CCF to 3.16 (#2946).
-
Removed
mbedtlsas cryptography and TLS library. -
The CCF public API is now under
include/ccf, and all application includes of framework code should use only these files. -
Private headers have been moved to
ccf/include/ccf/_privateso they cannot be accidentally included from existing paths. Any applications relying on private headers should remove this dependency, or raise an issue to request the dependency be moved to the public API. In a future release private headers will be removed entirely from the installed package. -
The
enclave::namespace has been removed, and all types which were under it are now underccf::. This will affect any apps usingenclave::RpcContext, which should be replaced withccf::RpcContext(#3664). -
The
kv::Storetype is no longer visible to application code, and is replaced by a simplerkv::ReadOnlyStore. This is the interface given to historical queries to access historical state and enforces read-only access, without exposing internal implementation details of the store. This should have no impact on JS apps, but C++ apps will need to replace calls tostore->current_txid()with calls tostore->get_txid(), andstore->create_tx()tostore->create_read_only_tx(). -
The C++ types used to define public governance tables are now exposed in public headers. Any C++ applications reading these tables should update their include paths (ie -
#include "service/tables/nodes.h"=>#include "ccf/service/tables/nodes.h") (#3608). -
TxReceipt::describe()has been replaced withccf::describe_receipt_v2(). Note that the previous JSON format is still available, but must be retrieved as a JSON object fromdescribe_receipt_v1(). Includes of the privatenode/tx_receipt.hfrom C++ applications should be removed (#3610). -
The entry point for creation of C++ apps is now
make_user_endpoints(). The old entry pointget_rpc_handler()has been removed (#3562). For an example of the necessary change, see this diff of the logging sample app (#3562). -
Added
get_untrusted_host_time_v1API. This can be used to retrieve a timestamp during endpoint execution, accurate to within a few milliseconds. Note that this timestamp comes directly from the host so is not trusted, and should not be used to make sensitive decisions within a transaction (#2550). -
Added
get_quotes_for_all_trusted_nodes_v1API. This returns the ID and quote for all nodes which are currently trusted and participating in the service, for live audit (#2511). -
Added
get_metrics_v1API toBaseEndpointRegistryfor applications that do not make use of builtins and want to version or customise metrics output. -
Added
set_claims_digest()API toRpcContext, see documentation on how to use it to attach application-defined claims to transaction receipts. -
Added indexing system to speed up historical queries (#3280, #3444).
-
Removed
get_node_state()fromAbstractNodeContext. The local node's ID is still available to endpoints asget_node_id(), and other subsystems which are app-visible can be fetched directly (#3552). -
Receipts now come with service endorsements of previous service identities after recoveries (#3679). See
verify_receiptine2e_logging.pyfor an example of how to verify the resulting certificate chain. This functionality is introduced inccf::historical::adapter_v3. -
ccf::historical::adapter_v2, and its successorccf::historical::adapter_v3now return 404, with eitherTransactionPendingOrUnknownorTransactionInvalid, rather than 400 when a user performs a historical query for a transaction id that is not committed. -
ccf::historical::AbstractStateCache::drop_requests()renamed todrop_cached_states()(#3187).
Key-Value Store
- Added
kv::Valueandkv::Set, as a more error-proof alternative tokv::Maps which had a single key or meaningless values (#2599). - Added
foreach_keyandforeach_valueto C++ KV API, to iterate without deserializing both entries when only one is used (#2918).
-
Added JavaScript bytecode caching to avoid repeated compilation overhead. See the documentation for more information (#2643).
-
Added
ccf.crypto.verifySignature()for verifying digital signatures to the JavaScript API (#2661). -
Added experimental JavaScript API
ccf.host.triggerSubprocess()(#2461). -
ccf.crypto.verifySignature()previously required DER-encoded ECDSA signatures and now requires IEEE P1363 encoded signatures, aligning with the behavior of the Web Crypto API (#2735). -
ccf.historical.getStateRange/ccf.historical.dropCachedStatesJavaScript APIs to manually retrieve historical state in endpoints declared as"mode": "readonly"(#3033). -
JavaScript endpoints with
"mode": "historical"now expose the historical KV atccf.historicalState.kvwhileccf.kvalways refers to the current KV state. Applications relying on the old behaviour should make their code forward-compatible before upgrading to 2.x withconst kv = ccf.historicalState.kv || ccf.kv. -
Receipts accessible through JavaScript no longer contain the redundant
roothash field. Applications should be changed to not rely on this field anymore before upgrading to 2.x. -
Add request details with additional URL components to JS + TS API:
request.url,request.route,request.method,request.hostname(#3498).
- Updated
actions.jsconstitution fragment to record service-endorsed node certificate on thetransition_node_to_trustedaction. The constitution must be updated using the existingset_constitutionproposal (#2844). - The existing
transition_node_to_trustedproposal action now requires a newvalid_fromargument (and optionalvalidity_period_days, which defaults to the value ofmaximum_node_certificate_validity_days). - The
proposal_generatorhas been removed from theccfPython package. The majority of proposals can be trivially constructed in existing client tooling, without needing to invoke Python. This also introduces parity between the default constitution and custom constitution actions - all should be constructed and called from the same governance client code. Some jinja templates are included insamples/templatesfor constructing careful ballots from existing proposals. - A new governance action
trigger_ledger_chunkto request the creation of a ledger chunk at the next signature (#3519). - A new governance action
trigger_snapshotto request the creation of a snapshot at the next signature (#3544). - Configurations and proposals now accept more date/time formats, including the Python-default ISO 8601 format (#3739).
- The
transition_service_to_opengovernance proposal now requires the service identity as an argument to ensure the correct service is started. During recovery, it further requires the previous service identity to ensure the right service is recovered (#3624).
- Breaking change: Configuration for CCF node is now a JSON configuration file passed in to
cchostvia--config /path/to/config/file/CLI argument. Existing CLI arguments have been removed. Themigrate_1_x_config.pyscript (included inccfPython package) should be used to migrate existing.iniconfiguration files to.jsonformat (#3209). - Added support for listening on multiple interfaces for incoming client RPCs, with individual session caps (#2628).
- The per-node session cap behaviour has changed. The
network.rpc_interfaces.<interface_name>.max_open_sessions_softis now a soft cap on the number of sessions. Beyond this, new sessions will receive a HTTP 503 error immediately after completing the TLS handshake. The existing hard cap (where sessions are closed immediately, before the TLS handshake) is still available, under the new argumentnetwork.rpc_interfaces.<interface_name>.max_open_sessions_hard(#2583). - Snapshot files now include receipt of evidence transaction. Nodes can now join or recover a service from a standalone snapshot file. 2.x nodes can still make use of snapshots created by a 1.x node, as long as the ledger suffix containing the proof of evidence is also specified at start-up (#2998).
- If no
node_certificate.subject_alt_namesis specified at node start-up, the node certificate Subject Alternative Name extension now defaults to the value ofpublished_addressof the first RPC interface (#2902). - Primary node now also reports time at which the ack from each backup node was last received (
GET /node/consensusendpoint). This can be used by operators to detect one-way partitions between the primary and backup nodes (#3769). - Added new
GET /node/self_signed_certificateendpoint to retrieve the self-signed certificate of the target node (#3767). - New
GET /gov/membersendpoint which returns details of all members from the KV (#3615). - The new
endorsementconfiguration entry lets operators set the desired TLS certificate endorsement, either service-endorsed or node-endorsed (self-signed), for each network RPC interface of a node, defaulting to service-endorsed (#2875).
-
Nodes certificates validity period is no longer hardcoded and must instead be set by operators and renewed by members (#2924):
- The new
node_certificate.initial_validity_days(defaults to 1 day) configuration entry lets operators set the initial validity period for the node certificate (valid from the current system time). - The new
command.start.service_configuration.maximum_node_certificate_validity_days(defaults to 365 days) configuration entry sets the maximum validity period allowed for node certificates. - The new
set_node_certificate_validityproposal action allows members to renew a node certificate (orset_all_nodes_certificate_validityequivalent action to renew all trusted nodes certificates).
- The new
-
Service certificate validity period is no longer hardcoded and must instead be set by operators and renewed by members (#3363):
- The new
service_certificate_initial_validity_days(defaults to 1 day) configuration entry lets operators set the initial validity period for the service certificate (valid from the current system time). - The new
maximum_service_certificate_validity_days(defaults to 365 days) configuration entry sets the maximum validity period allowed for service certificate. - The new
set_service_certificate_validityproposal action allows members to renew the service certificate.
- The new
-
The service certificate output by first node default name is now
service_cert.pemrather thannetworkcert.pem(#3363). -
Log more detailed errors on early startup (#3116).
-
Format of node output RPC and node-to-node addresses files is now JSON (#3300).
-
Joining nodes now present service-endorsed certificate in client TLS sessions after they have observed their own addition to the store, rather than as soon as they have joined the service. Operators should monitor the initial progress of a new node using its self-signed certificate as TLS session certificate authority (#2844).
-
Slow ledger IO operations will now be logged at level FAIL. The threshold over which logging will activate can be adjusted by the
slow_io_logging_thresholdconfiguration entry to cchost (#3067). -
Added a new
client_connection_timeoutconfiguration entry to specify the maximum time a node should wait before re-establishing failed client connections. This should be set to a significantly lower value thanconsensus.election_timeout(#2618). -
Nodes code digests are now extracted and cached at network join time in
public:ccf.gov.nodes.info, and theGET /node/quotesandGET /node/quotes/selfendpoints will use this cached value whenever possible (#2651). -
DNS resolution of client connections is now asynchronous (#3140).
-
The curve-id selected for the identity of joining nodes no longer needs to match that of the network (#2525).
-
Removed long-deprecated
--domainargument fromcchost. Node certificate Subject Alternative Names should be passed in via existingnode_certificate.subject_alt_namesconfiguration entry (#2798). -
Added experimental support for 2-transaction reconfiguration with CFT consensus, see documentation. Note that mixing 1tx and 2tx nodes in the same network is unsupported and unsafe at this stage (#3097).
-
Aside from regular release packages, CCF now also provides
unsafepackages with verbose logging, helpful for troubleshooting. The extent of the logging in these builds make them fundamentally UNSAFE to use for production purposes, hence the name. -
Nodes no longer crash at start-up if the ledger in the read-only ledger directories (
ledger.read_only_directories) is ahead of the ledger in the main ledger directory (ledger.directory) (#3597). -
Nodes now have a free-form
node_datafield, to match users and members. This can be set when the node is launched, or modified by governance. It is intended to store correlation IDs describing the node's deployment, such as a VM name or Pod identifier (#3662). -
New
GET /node/consensusendpoint now also returns primary node ID and current view (#3666). -
HTTP parsing errors are now recorded per-interface and returned by
GET /node/metrics(#3671). -
Failed recovery procedures no longer block subsequent recoveries:
.recoveryledger files are now created while the recovery is in progress and ignored or deleted by nodes on startup (#3563). -
Corrupted or incomplete ledger files are now recovered gracefully, until the last valid entry (#3585).
- Fixed issue with ledger inconsistency when starting a new joiner node without a snapshot but with an existing ledger prefix (#3064).
- Fixed issue with join nodes which could get stuck if an election was triggered while catching up (#3169).
- Nodes joining must have a snapshot at least as recent as the primary's (#3573).
cchostcan now run both SGX and virtual enclave libraries.cchost.virtualis no longer needed, and has been removed (#3476).- CCF Docker images are now available through Azure Container Registry rather than Docker Hub (#3839, #3821).
- The
ccfmsrc.azurecr.io/ccf-sgx-app-runimage is now available atccfmsrc.azurecr.io/public/ccf/app/run:<tag>-sgx. - The
ccfmsrc.azurecr.io/ccf-sgx-app-devimage is now available atccfmsrc.azurecr.io/public/ccf/app/dev:<tag>-sgx. - New
ccfmsrc.azurecr.io/public/ccf/app/run-jsJavaScript application runtime image (includinglibjs_genericapplication under/usr/lib/ccf) (#3845).
- The
- Receipts now include the endorsed certificate of the node, as well as its node id, for convenience (#2991).
- Retired nodes are now removed from the store/ledger as soon as their retirement is committed (#3409).
- Service-endorsed node certificates are now recorded in a new
public:ccf.gov.nodes.endorsed_certificatestable, while the existingcertfield in thepublic:ccf.gov.nodes.infotable is now deprecated (#2844). - New
split_ledger.pyutility to split existing ledger files (#3129). - Python
ccf.read_ledgermodule now accepts custom formatting rules for the key and value based on the key-value store table name (#2791). - Ledger entries now contain a
commit_evidence_digest, as well as aclaims_digest, which can be set withset_claims_digest(). The digest of the write set was previously the per-transaction leaf in the Merkle Tree, but is now combined with the digest of the commit evidence and the user claims. Receipt verification instructions have been amended accordingly. The presence ofcommit_evidencein receipts serves two purposes: giving the user access to the TxID without having to parse the write set, and proving that a transaction has been committed by the service. Transactions are flushed to disk eagerly by the primary to keep in-enclave memory use to a minimum, so the existence of a ledger suffix is not on its own indicative of its commit status. The digest of the commit evidence is in the ledger to allow audit and recovery, but only the disclosure of the commit evidence indicates that a transaction has been committed by the service - Add
--insecure-skip-verificationtoledger_vizutility, to allow visualisation of unverified ledger chunks (#3618). - Add
--split-servicestoledger_vizutility, to easily find out at which TxID new services were created (#3621). - Python
ccf.read_ledgerandccf.ledger_viztools now accept paths to individual ledger chunks, to avoid parsing the entire ledger.
-
Added support for TLS 1.3 (now used by default).
-
Added
GET /gov/jwt_keys/allendpoint (#2519). -
Added new operator RPC
GET /node/js_metricsreturning the JavaScript bytecode size and whether the bytecode is used (#2643). -
Added a new
GET /node/metricsendpoint which includes the count of active and peak concurrent sessions handled by the node (#2596). -
Added endpoint to obtain service configuration via
GET /node/service/configuration(#3251). -
Added QuickJS version to RPC
GET /node/version(#2643). -
Added a
GET /node/jwt_metricsendpoint to monitor attempts and successes of key refresh for each issuer. See documentation on how to use it. -
Schema of
GET /network/nodes/{node_id}andGET /network/nodesendpoints has been modified to include all RPC interfaces (#3300). -
Improved performance for lookup of path-templated endpoints (#2918).
-
CCF now responds to HTTP requests that could not be parsed with a 400 response including error details (#2652).
-
Node RPC interfaces do not transition anymore from node-endorsed to service-endorsed TLS certificates but are fixed to a single configured type. While a given endorsement is not available yet (typically at start-up for service-endorsed certificates) the interface rejects TLS sessions instead of defaulting to a node-endorsed certificate (#2875).
-
Websockets endpoints are no longer supported. Usage is insufficient to justify ongoing maintenance.
-
The
ccfPython package no longer provides utilities to issue requests to a running CCF service. This is because CCF supports widely-used client-server protocols (TLS, HTTP) that should already be provided by libraries for all programming languages. TheccfPython package can still be used to audit the ledger and snapshot files (#3386).
- Upgraded Open Enclave to 0.17.7 (#3815).
- When using the
sandbox.shscript, always wait for/appfrontend to be open on all nodes before marking the service as open (#3779). - Snapshot generation no longer causes a node crash if the snapshot is larger than the ring buffer message size (
memory.max_msg_size). Instead, the generation of the large snapshot is skipped (#3603).
- Fixed an issue where new node started without a snapshot would be able to join from a node that started with a snapshot (#3573).
- Fixed consensus issue where a node would grant its vote even though it already knew about the current primary (#3810).
- Fixed issue with JSON configuration for
cchostwhere extra fields were silently ignored rather than being rejected at startup (#3816).
- Upgraded Open Enclave to 0.17.7 (#3815).
- CCF Docker images are now available through Azure Container Registry rather than Docker Hub (#3821).
- The
ccfciteam/ccf-app-runimage is now available atccfmsrc.azurecr.io/ccf-sgx-app-run. - The
ccfciteam/ccf-app-ciimage is now available atccfmsrc.azurecr.io/ccf-sgx-app-dev.
- The
- Added support for ciphers 'ECDHE-RSA-AES256-GCM-SHA384' and 'ECDHE-RSA-AES128-GCM-SHA256' when using TLS 1.2 (#3822).
- When using the
sandbox.shscript, always wait for/appfrontend to be open on all nodes before marking the service as open (#3779).
- Every leaf in the Merkle Tree, and every receipt now includes a claims digest (#3606).
- Primary node now also reports time at which the ack from each backup node was last received (
GET /node/consensusendpoint). This can be used by operators to detect one-way partitions between the primary and backup nodes (#3769). - Current receipt format is now exposed to C++ applications as
ccf::Receipt, retrieved fromdescribe_receipt_v2. Note that the previous JSON format is still available, but must be retrieved as a JSON object fromdescribe_receipt_v1.
- Fixed issue with incorrect node and service certificate validity period when starting node in non-GMT timezone (#3732).
- Fixed issue with self-signed node certificates that are now renewed when the
set_node_certificate_validityproposal is applied (#3767).
- Configurations and proposals now accept more date/time formats, including the Python-default ISO 8601 format (#3739).
- Added new
GET /node/self_signed_certificateendpoint to retrieve the self-signed certificate of the target node (#3767).
host_processes_interface.his now a public header, accessible underccf/node/host_processes_interface.h.
- Nodes now have a free-form
node_datafield, to match users and members. This can be set when the node is launched, or modified by governance. It is intended to store correlation IDs describing the node's deployment, such as a VM name or Pod identifier (#3662). - New
GET /node/consensusendpoint now also returns primary node ID and current view (#3666). - The
enclave::namespace has been removed, and all types which were under it are now underccf::. This will affect any apps usingenclave::RpcContext, which should be replaced withccf::RpcContext(#3664). - HTTP parsing errors are now recorded per-interface and returned by
GET /node/metrics(#3671). - The
kv::Storetype is no longer visible to application code, and is replaced by a simplerkv::ReadOnlyStore. This is the interface given to historical queries to access historical state and enforces read-only access, without exposing internal implementation details of the store. This should have no impact on JS apps, but C++ apps will need to replace calls tostore->current_txid()with calls tostore->get_txid(), andstore->create_tx()tostore->create_read_only_tx(). - Receipts now come with service endorsements of previous service identities after recoveries (#3679). See
verify_receiptine2e_logging.pyfor an example of how to verify the resulting certificate chain. This functionality is introduced inccf::historical::adapter_v3. - Private headers have been moved to
ccf/include/ccf/_privateso they cannot be accidentally included from existing paths. Any applications relying on private headers should remove this dependence, or raise an issue to request the dependency be moved to the public API. In a future release private headers will be removed entirely from the installed package.
- Aside from regular release packages, CCF now also provides
unsafepackages with verbose logging, helpful for troubleshooting. The extent of the logging in these builds make them fundamentally UNSAFE to use for production purposes, hence the name.
- The
transition_service_to_opengovernance proposal now requires the service identity as an argument to ensure the correct service is started. During recovery, it further requires the previous service identity to ensure the right service is recovered (#3624).
- Snapshot generation no longer causes a node crash if the snapshot is larger than the ring buffer message size (
memory.max_msg_size). Instead, the generation of the large snapshot is skipped (#3603).
- The C++ types used to define public governance tables are now exposed in public headers. Any C++ applications reading these tables should update their include paths (ie -
#include "service/tables/nodes.h"=>#include "ccf/service/tables/nodes.h") (#3608). TxReceipt::describe()has been replaced withccf::describe_receipt(). Includes of the privatenode/tx_receipt.hfrom C++ applications should be removed (#3610).- Python
ccf.read_ledgerandccf.ledger_viztools now accept paths to individual ledger chunks, to avoid parsing the entire ledger.
- New
GET /gov/membersendpoint which returns details of all members from the KV (#3615). - Add
--insecure-skip-verificationtoledger_vizutility, to allow visualisation of unverified ledger chunks (#3618). - Add
--split-servicestoledger_vizutility, to easily find out at which TxID new services were created (#3621).
- The entry point for creation of C++ apps is now
make_user_endpoints(). The old entry pointget_rpc_handler()has been removed (#3562). For an example of the necessary change, see this diff of the logging sample app (#3562). - Failed recovery procedures no longer block subsequent recoveries:
.recoveryledger files are now created while the recovery is in progress and ignored or deleted by nodes on startup (#3563). - Corrupted or incomplete ledger files are now recovered gracefully, until the last valid entry (#3585).
- The CCF public API is now under
include/ccf, and all application includes of framework code should use only these files.
get_node_state()is removed fromAbstractNodeContext. The local node's ID is still available to endpoints asget_node_id(), and other subsystems which are app-visible can be fetched directly (#3552).
- Nodes no longer crash at start-up if the ledger in the read-only ledger directories (
ledger.read_only_directories) is ahead of the ledger in the main ledger directory (ledger.directory) (#3597).
- The new
endorsementconfiguration entry lets operators set the desired TLS certificate endorsement, either service-endorsed or node-endorsed (self-signed), for each network RPC interface of a node, defaulting to service-endorsed (#2875). - A new governance action
trigger_ledger_chunkto request the creation of a ledger chunk at the next signature (#3519). - A new governance action
trigger_snapshotto request the creation of a snapshot at the next signature (#3544).
- Node RPC interfaces do not transition anymore from node-endorsed to service-endorsed TLS certificates but are fixed to a single configured type. While a given endorsement is not available yet (typically at start-up for service-endorsed certificates) the interface rejects TLS sessions instead of defaulting to a node-endorsed certificate (#2875).
- Add request details with additional URL components to JS + TS API:
request.url,request.route,request.method,request.hostname(#3498). cchostcan now run both SGX and virtual enclave libraries.cchost.virtualis no longer needed, and has been removed (#3476).
- Upgraded Open Enclave to 0.17.6.
See documentation for code upgrade 1.x to 2.0 to upgrade an existing 1.x CCF service to 2.0
-
CCF is now built with Clang 10. It is strongly recommended that C++ applications upgrade to Clang 10 as well.
-
Raised the minimum supported CMake version for building CCF to 3.16 (#2946).
-
Removed
mbedtlsas cryptography and TLS library. -
Added
get_untrusted_host_time_v1API. This can be used to retrieve a timestamp during endpoint execution, accurate to within a few milliseconds. Note that this timestamp comes directly from the host so is not trusted, and should not be used to make sensitive decisions within a transaction (#2550). -
Added
get_quotes_for_all_trusted_nodes_v1API. This returns the ID and quote for all nodes which are currently trusted and participating in the service, for live audit (#2511). -
Added
get_metrics_v1API toBaseEndpointRegistryfor applications that do not make use of builtins and want to version or customise metrics output. -
Added
set_claims_digest()API toRpcContext, see documentation on how to use it to attach application-defined claims to transaction receipts. -
Added indexing system to speed up historical queries (#3280, #3444).
-
ccf::historical::adapter_v2now returns 404, with eitherTransactionPendingOrUnknownorTransactionInvalid, rather than 400 when a user performs a historical query for a transaction id that is not committed. -
ccf::historical::AbstractStateCache::drop_requests()renamed todrop_cached_states()(#3187). -
get_state_at()now returns receipts for signature transactions (#2785), see documentation for details.
Key-Value Store
- Added
kv::Valueandkv::Set, as a more error-proof alternative tokv::Maps which had a single key or meaningless values (#2599). - Added
foreach_keyandforeach_valueto C++ KV API, to iterate without deserializing both entries when only one is used (#2918).
-
Added JavaScript bytecode caching to avoid repeated compilation overhead. See the documentation for more information (#2643).
-
Added
ccf.crypto.verifySignature()for verifying digital signatures to the JavaScript API (#2661). -
Added experimental JavaScript API
ccf.host.triggerSubprocess()(#2461). -
ccf.crypto.verifySignature()previously required DER-encoded ECDSA signatures and now requires IEEE P1363 encoded signatures, aligning with the behavior of the Web Crypto API (#2735). -
ccf.historical.getStateRange/ccf.historical.dropCachedStatesJavaScript APIs to manually retrieve historical state in endpoints declared as"mode": "readonly"(#3033). -
JavaScript endpoints with
"mode": "historical"now expose the historical KV atccf.historicalState.kvwhileccf.kvalways refers to the current KV state. Applications relying on the old behaviour should make their code forward-compatible before upgrading to 2.x withconst kv = ccf.historicalState.kv || ccf.kv. -
Receipts accessible through JavaScript no longer contain the redundant
roothash field. Applications should be changed to not rely on this field anymore before upgrading to 2.x.
- Updated
actions.jsconstitution fragment to record service-endorsed node certificate on thetransition_node_to_trustedaction. The constitution must be updated using the existingset_constitutionproposal (#2844). - The existing
transition_node_to_trustedproposal action now requires a newvalid_fromargument (and optionalvalidity_period_days, which defaults to the value ofmaximum_node_certificate_validity_days). - The
proposal_generatorhas been removed from theccfPython package. The majority of proposals can be trivially constructed in existing client tooling, without needing to invoke Python. This also introduces parity between the default constitution and custom constitution actions - all should be constructed and called from the same governance client code. Some jinja templates are included insamples/templatesfor constructing careful ballots from existing proposals.
- Breaking change: Configuration for CCF node is now a JSON configuration file passed in to
cchostvia--config /path/to/config/file/CLI argument. Existing CLI arguments have been removed. Themigrate_1_x_config.pyscript (included inccfPython package) should be used to migrate existing.iniconfiguration files to.jsonformat (#3209). - Added support for listening on multiple interfaces for incoming client RPCs, with individual session caps (#2628).
- The per-node session cap behaviour has changed. The
network.rpc_interfaces.<interface_name>.max_open_sessions_softis now a soft cap on the number of sessions. Beyond this, new sessions will receive a HTTP 503 error immediately after completing the TLS handshake. The existing hard cap (where sessions are closed immediately, before the TLS handshake) is still available, under the new argumentnetwork.rpc_interfaces.<interface_name>.max_open_sessions_hard(#2583). - Snapshot files now include receipt of evidence transaction. Nodes can now join or recover a service from a standalone snapshot file. 2.x nodes can still make use of snapshots created by a 1.x node, as long as the ledger suffix containing the proof of evidence is also specified at start-up (#2998).
- If no
node_certificate.subject_alt_namesis specified at node start-up, the node certificate Subject Alternative Name extension now defaults to the value ofpublished_addressof the first RPC interface (#2902).
-
Nodes certificates validity period is no longer hardcoded and must instead be set by operators and renewed by members (#2924):
- The new
node_certificate.initial_validity_days(defaults to 1 day) configuration entry lets operators set the initial validity period for the node certificate (valid from the current system time). - The new
command.start.service_configuration.maximum_node_certificate_validity_days(defaults to 365 days) configuration entry sets the maximum validity period allowed for node certificates. - The new
set_node_certificate_validityproposal action allows members to renew a node certificate (orset_all_nodes_certificate_validityequivalent action to renew all trusted nodes certificates).
- The new
-
Service certificate validity period is no longer hardcoded and must instead be set by operators and renewed by members (#3363):
- The new
service_certificate_initial_validity_days(defaults to 1 day) configuration entry lets operators set the initial validity period for the service certificate (valid from the current system time). - The new
maximum_service_certificate_validity_days(defaults to 365 days) configuration entry sets the maximum validity period allowed for service certificate. - The new
set_service_certificate_validityproposal action allows members to renew the service certificate.
- The new
-
The service certificate output by first node default name is now
service_cert.pemrather thannetworkcert.pem(#3363). -
Log more detailed errors on early startup (#3116).
-
Format of node output RPC and node-to-node addresses files is now JSON (#3300).
-
Joining nodes now present service-endorsed certificate in client TLS sessions after they have observed their own addition to the store, rather than as soon as they have joined the service. Operators should monitor the initial progress of a new node using its self-signed certificate as TLS session certificate authority (#2844).
-
Slow ledger IO operations will now be logged at level FAIL. The threshold over which logging will activate can be adjusted by the
slow_io_logging_thresholdconfiguration entry to cchost (#3067). -
Added a new
client_connection_timeoutconfiguration entry to specify the maximum time a node should wait before re-establishing failed client connections. This should be set to a significantly lower value thanconsensus.election_timeout(#2618). -
Nodes code digests are now extracted and cached at network join time in
public:ccf.gov.nodes.info, and theGET /node/quotesandGET /node/quotes/selfendpoints will use this cached value whenever possible (#2651). -
DNS resolution of client connections is now asynchronous (#3140).
-
The curve-id selected for the identity of joining nodes no longer needs to match that of the network (#2525).
-
Removed long-deprecated
--domainargument fromcchost. Node certificate Subject Alternative Names should be passed in via existingnode_certificate.subject_alt_namesconfiguration entry (#2798). -
Added experimental support for 2-transaction reconfiguration with CFT consensus, see documentation. Note that mixing 1tx and 2tx nodes in the same network is unsupported and unsafe at this stage (#3097).
- Fixed issue with ledger inconsistency when starting a new joiner node without a snapshot but with an existing ledger prefix (#3064).
- Fixed issue with join nodes which could get stuck if an election was triggered while catching up (#3169).
- Receipts now include the endorsed certificate of the node, as well as its node id, for convenience (#2991).
- Retired nodes are now removed from the store/ledger as soon as their retirement is committed (#3409).
- Service-endorsed node certificates are now recorded in a new
public:ccf.gov.nodes.endorsed_certificatestable, while the existingcertfield in thepublic:ccf.gov.nodes.infotable is now deprecated (#2844). - New
split_ledger.pyutility to split existing ledger files (#3129). - Python
ccf.read_ledgermodule now accepts custom formatting rules for the key and value based on the key-value store table name (#2791). - Ledger entries now contain a
commit_evidence_digest, as well as an optionalclaims_digestwhenset_claims_digest()is used. The digest of the write set was previously the per-transaction leaf in the Merkle Tree, but is now combined with the digest of the commit evidence and optionally the user claims when present. Receipt verification instructions have been amended accordingly. The presence ofcommit_evidencein receipts serves two purposes: giving the user access to the TxID without having to parse the write set, and proving that a transaction has been committed by the service. Transactions are flushed to disk eagerly by the primary to keep in-enclave memory use to a minimum, so the existence of a ledger suffix is not on its own indicative of its commit status. The digest of the commit evidence is in the ledger to allow audit and recovery, but only the disclosure of the commit evidence indicates that a transaction has been committed by the service
-
Added support for TLS 1.3 (now used by default).
-
Added
GET /gov/jwt_keys/allendpoint (#2519). -
Added new operator RPC
GET /node/js_metricsreturning the JavaScript bytecode size and whether the bytecode is used (#2643). -
Added a new
GET /node/metricsendpoint which includes the count of active and peak concurrent sessions handled by the node (#2596). -
Added endpoint to obtain service configuration via
GET /node/service/configuration(#3251). -
Added QuickJS version to RPC
GET /node/version(#2643). -
Added a
GET /node/jwt_metricsendpoint to monitor attempts and successes of key refresh for each issuer. See documentation on how to use it. -
Schema of
GET /network/nodes/{node_id}andGET /network/nodesendpoints has been modified to include all RPC interfaces (#3300). -
Improved performance for lookup of path-templated endpoints (#2918).
-
CCF now responds to HTTP requests that could not be parsed with a 400 response including error details (#2652).
-
Websockets endpoints are no longer supported. Usage is insufficient to justify ongoing maintenance.
-
The
ccfPython package no longer provides utilities to issue requests to a running CCF service. This is because CCF supports widely-used client-server protocols (TLS, HTTP) that should already be provided by libraries for all programming languages. TheccfPython package can still be used to audit the ledger and snapshot files (#3386).
- Upgraded Open Enclave to 0.17.5.
- Added
set_claims_digest()API toRpcContext, see documentation on how to use it to attach application-defined claims to transaction receipts. - Added a
GET /jwt_metricsendpoint to monitor attempts and successes of key refresh for each issuer. See documentation on how to use it.
- Service certificate validity period is no longer hardcoded and can instead be set by operators and renewed by members (#3363):
- The new
service_certificate_initial_validity_days(defaults to 1 day) configuration entry lets operators set the initial validity period for the service certificate (valid from the current system time). - The new
maximum_service_certificate_validity_days(defaults to 365 days) configuration entry sets the maximum validity period allowed for service certificate. - The new
set_service_certificate_validityproposal action allows members to renew the service certificate.
- The new
- Service certificate output by first node default name is now
service_cert.pemrather thannetworkcert.pem(#3363). - Retired nodes are now removed from the store/ledger as soon as their retirement is committed (#3409).
- The
ccfPython package no longer provides utilities to issue requests to a running CCF service. This is because CCF supports widely-used client-server protocols (TLS, HTTP) that should already be provided by libraries for all programming languages. TheccfPython package can still be used to audit the ledger and snapshot files (#3386). - The
proposal_generatorhas been removed from theccfPython package. The majority of proposals can be trivially constructed in existing client tooling, without needing to invoke Python. This also introduces parity between the default constitution and custom constitution actions - all should be constructed and called from the same governance client code. Some jinja templates are included insamples/templatesfor constructing careful ballots from existing proposals.
- Added endpoint to obtain service configuration via
/node/service/configuration(#3251)
- Breaking change: Configuration for CCF node is now a JSON configuration file passed in to
cchostvia--config /path/to/config/file/CLI argument. Existing CLI arguments have been removed. Themigrate_1_x_config.pyscript (included inccfPython package) should be used to migrate existing.iniconfiguration files to.jsonformat (#3209). - Format of node output RPC and node-to-node addresses files is now JSON (#3300).
- Schema of
GET /network/nodes/{node_id}andGET /network/nodesendpoints has been modified to include all RPC interfaces (#3300).
ccf::historical::AbstractStateCache::drop_requests()renamed todrop_cached_states()(#3187).
- Upgrade OpenEnclave from 0.17.2 to 0.17.5
- Added experimental support for 2-transaction reconfiguration with CFT consensus (#3097), see documentation. Note that mixing 1tx and 2tx nodes in the same network is unsupported and unsafe at this stage.
- DNS resolution of client connections is now asynchronous.
- Fixed issue with join nodes which could get stuck if an election was triggered while catching up (#3169).
- Receipts now include the endorsed certificate of the node, as well as its node id, for convenience (#2991).
get_metrics_v1API toBaseEndpointRegistryfor applications that do not make use of builtins and want to version or customise metrics output.- Slow ledger IO operations will now be logged at level FAIL. The threshold over which logging will activate can be adjusted by the
--io-logging-thresholdCLI argument to cchost (#3067). - Snapshot files now include receipt of evidence transaction. Nodes can now join or recover a service from a standalone snapshot file. 2.x nodes can still make use of snapshots created by a 1.x node, as long as the ledger suffix containing the proof of evidence is also specified at start-up (#2998).
- Nodes certificates validity period is no longer hardcoded and can instead be set by operators and renewed by members (#2924):
- The new
--initial-node-cert-validity-days(defaults to 1 day) CLI argument to cchost lets operators set the initial validity period for the node certificate (valid from the current system time). - The new
--max-allowed-node-cert-validity-days(defaults to 365 days) CLI argument to cchost sets the maximum validity period allowed for node certificates. - The new
set_node_certificate_validityproposal action allows members to renew a node certificate (orset_all_nodes_certificate_validityequivalent action to renew all trusted nodes certificates). - The existing
transition_node_to_trustedproposal action now requires a newvalid_fromargument (and optionalvalidity_period_days, which defaults to the value of ``--max-allowed-node-cert-validity-days`).
- The new
ccf.historical.getStateRange/ccf.historical.dropCachedStatesJavaScript APIs to manually retrieve historical state in endpoints declared as"mode": "readonly"(#3033).- Log more detailed errors on early startup (#3116).
- New
split_ledger.pyutility to split existing ledger files (#3129).
- JavaScript endpoints with
"mode": "historical"now expose the historical KV atccf.historicalState.kvwhileccf.kvalways refers to the current KV state. Applications relying on the old behaviour should make their code forward-compatible before upgrading to 2.x withconst kv = ccf.historicalState.kv || ccf.kv.
- Receipts accessible through JavaScript no longer contain the redundant
roothash field. Applications should be changed to not rely on this field anymore before upgrading to 2.x.
- Fixed issue with ledger inconsistency when starting a new joiner node without a snapshot but with an existing ledger prefix (#3064).
- Added
foreach_keyandforeach_valueto C++ KV API, to iterate without deserializing both entries when only one is used (#2918). ccf::historical::adapter_v2now returns 404, with eitherTransactionPendingOrUnknownorTransactionInvalid, rather than 400 when a user performs a historical query for a transaction id that is not committed.
- Service-endorsed node certificates are now recorded in a new
public:ccf.gov.nodes.endorsed_certificatestable, while the existingcertfield in thepublic:ccf.gov.nodes.infotable is now deprecated (#2844). - Joining nodes now present service-endorsed certificate in client TLS sessions after they have observed their own addition to the store, rather than as soon as they have joined the service. Operators should monitor the initial progress of a new node using its self-signed certificate as TLS session certificate authority (#2844).
- Updated
actions.jsconstitution fragment to record service-endorsed node certificate on thetransition_node_to_trustedaction. The constitution should be updated using the existingset_constitutionproposal (#2844). - Improved performance for lookup of path-templated endpoints (#2918).
- Raised the minimum supported CMake version for building CCF to 3.16 (#2946).
- Upgrade OpenEnclave from 0.17.1 to 0.17.2 (#2992)
- Added support for listening on multiple interfaces for incoming client RPCs, with individual session caps (#2628).
- Upgrade OpenEnclave from 0.17.0 to 0.17.1.
get_state_at()now returns receipts for signature transactions (#2785), see documentation for details.- Upgrade playbooks and base CI image to Ubuntu 20.04. CCF is now primarily developed and tested against Ubuntu 20.04.
- Python
ccf.read_ledgermodule now accepts custom formatting rules for the key and value based on the key-value store table name (#2791). - CCF is now built with Clang 10. It is recommended that C++ applications upgrade to Clang 10 as well.
- Internal
/gov/jwt_keys/refreshendpoint has been moved to/node/jwt_keys/refresh(#2885). - If no
--sanis specified at node start-up, the node certificate Subject Alternative Name extension now defaults to the value of--public-rpc-address(#2902).
- Remove long-deprecated
--domainargument fromcchost. Node certificate Subject Alternative Names should be passed in via existing--sanargument (#2798). - Removed Forum sample app.
ccf.crypto.verifySignature()previously required DER-encoded ECDSA signatures and now requires IEEE P1363 encoded signatures, aligning with the behavior of the Web Crypto API (#2735).- Upgrade OpenEnclave from 0.16.1 to 0.17.0.
- Nodes code digests are now extracted and cached at network join time in
public:ccf.gov.nodes.info, and the/node/quotesand/node/quotes/selfendpoints will use this cached value whenever possible (#2651).
- Websockets endpoints are no longer supported. Usage is insufficient to justify ongoing maintenance.
- Fixed incorrect transaction view returned in
x-ms-ccf-transaction-idHTTP response header after primary change (i.e. new view) (#2755).
- Added a new
--client-connection-timeout-mscommand line argument tocchostto specify the maximum time a node should wait before re-establishing failed client connections. This should be set to a significantly lower value than--raft-election-timeout-ms(#2618). - Add
kv::Valueandkv::Set, as a more error-proof alternative tokv::Maps which had a single key or meaningless values (#2599). - Added JavaScript bytecode caching to avoid repeated compilation overhead. See the documentation for more information (#2643).
- Added new operator RPC
/node/js_metricsreturning the JavaScript bytecode size and whether the bytecode is used (#2643). - Added QuickJS version to RPC
/node/version(#2643). - Added
GET /gov/jwt_keys/allendpoint (#2519). - Added
ccf.crypto.verifySignature()for verifying digital signatures to the JavaScript API (#2661).
- CCF now responds to HTTP requests that could not be parsed with a 400 response including error details (#2652).
- Added
get_untrusted_host_time_v1API. This can be used to retrieve a timestamp during endpoint execution, accurate to within a few milliseconds. Note that this timestamp comes directly from the host so is not trusted, and should not be used to make sensitive decisions within a transaction (#2550). - Added
get_quotes_for_all_trusted_nodes_v1API. This returns the ID and quote for all nodes which are currently trusted and participating in the service, for live audit (#2511). - Added node start-up check for
cchostand enclave compatibility, which should both always be from the same release for a single node (#2532). - Added a new
/node/versionendpoint to return the CCF version of a node (#2582). - Added a new
/node/metricsendpoint which includes the count of active and peak concurrent sessions handled by the node (#2596). - Added experimental JavaScript API
ccf.host.triggerSubprocess()(#2461).
- The curve-id selected for the identity of joining nodes no longer needs to match that of the network (#2525).
- The per-node session cap behaviour has changed. The
--max-open-sessionsis now a soft cap on the number of sessions. Beyond this, new sessions will receive a HTTP 503 error immediately after completing the TLS handshake. The existing hard cap (where sessions are closed immediately, before the TLS handshake) is still available, under the new argument--max-open-sessions-hard(#2583). - Requests with a url-encoded query string are now forwarded correctly from backups to the primary (#2587).
- Signed requests with a url-encoded query string are now handled correctly rather than rejected (#2592).
- Fixed consistency issue between ledger files on different nodes when snapshotting is active (#2607).
- Upgrade OpenEnclave from 0.15.0 to 0.16.1 (#2609)
- CCF now responds to HTTP requests that could not be parsed with a 400 response including error details (#2652).
- Upgrade OpenEnclave from 0.15.0 to 0.16.1 (#2609)
- Fixed consistency issue between ledger files on different nodes when snapshotting is active (#2607).
- Requests with a url-encoded query string are now forwarded correctly from backups to the primary (#2587).
- Signed requests with a url-encoded query string are now handled correctly rather than rejected (#2592).
The Confidential Consortium Framework CCF is an open-source framework for building a new category of secure, highly available, and performant applications that focus on multi-party compute and data.
This is the first long term support release for CCF. The 1.0 branch will only receive security and critical bug fixes, please see our release policy for more detail.
Active development will continue on the main branch, and regular development snapshots including new features will continue to be published.
Browse our documentation to get started with CCF, or open a discussion on GitHub if you have any questions.
- Rename
Store::commit_version()to the more accurateStore::compacted_version()(#1355).
- Adjust release pipeline to cope with GitHub renaming debian packages containing tildes.
- By default, CCF is now installed under
/opt/ccfrather than/opt/ccf-x.y.z.
- Fixed use of
--curve-idargument tocchost, which can now start a network with both node and service identities using curvesecp256r1(#2516).
kv::MapHandle::size()can be used to get the number of entries in a given map.kv::MapHandle::clear()can be used to remove all entries from a map.
- The default constitution no longer contains
set_service_principalorremove_service_principalsince they are not used by the core framework. Instead any apps which wish to use these tables should add them to their own constitution. A sample implementation is available, and used in the CI tests. - Proposal status now includes a
final_votesandvote_failuresmap, recording the outcome of each vote per member.failure_reasonandfailure_tracehave been consolidated into a singlefailureobject, which is also used forvote_failures.
- The service certificate is now returned as part of the
/node/network/endpoint response (#2442).
kv::Mapis now an alias tokv::JsonSerialisedMap, which means all existing applications usingkv::Maps will now requireDECLARE_JSON...macros for custom key and value types.msgpack-cis no longer available to apps andMSGPACK_DEFINEmacros should be removed. Note that this change may affect throughput of existing applications, in which case an app-defined serialiser (orkv::RawCopySerialisedMap) should be used (#2449)./node/stateendpoint also returns theseqnoat which a node was started (i.e.seqnoof the snapshot a node started from or0otherwise) (#2422).
/gov/queryand/gov/readgovernance endpoints are removed (#2442).- Lua governance is removed.
JS_GOVERNANCEenv var is no longer necessary, and JS constitution is the only governance script which must be provided and will be used by the service.--gov-scriptcan no longer be passed tocchostorsandbox.sh.
This is a bridging release to simplify the upgrade to 1.0. It includes the new JS constitution, but also supports the existing Lua governance so that users can upgrade in 2 steps - first implementing all of the changes below with their existing Lua governance, then upgrading to the JS governance. Lua governance will be removed in CCF 1.0. See temporary docs for help with transitioning from Lua to JS.
The 1.0 release will require minimal changes from this release.
- A new
read_ledger.pyPython command line utility was added to parse and display the content of a ledger directory. ccf-appnpm package to help with developing JavaScript and TypeScript CCF apps. See docs for further details (#2331).
- Retired members are now deleted from the store, instead of being marked as
Retired(#1401). retire_memberproposal has been renamed toremove_memberand is now idempotent (i.e. succeeds even if the member was already removed) (#1401).accept_recoveryandopen_networkproposals have been merged into a single idempotenttransition_service_to_openproposal (#1791).- The
/txendpoint now takes a singletransaction_idquery parameter. For example, rather than calling/node/tx?view=2&seqno=42, call/node/tx?transaction_id=2.42. - The
/commitendpoint now returns a response with a singletransaction_idrather than separateviewandseqnofields. UserRpcFrontendhas been removed, and the return value ofget_rpc_handlerwhich apps should construct is now simply accf::RpcFrontend.- There is now a distinction between public and private headers. The public headers under
include/ccfare those we expect apps to use, and others are implementation details which may change/be deprecated/be hidden in future. Most apps should now be including"ccf/app_interface.h"and"ccf/common_endpoint_registry.h". - Various endpoint-related types have moved under the
ccf::endpointsnamespace. Apps will need to rename these types where they are not usingauto, for instance toccf::endpoints::EndpointContextandccf::endpoints::ForwardingRequired. - Ledger entry frames are no longer serialised with
msgpack(#2343). - In JavaScript apps, the field
caller.jwt.key_issuerin theRequestobject has been renamedcaller.jwt.keyIssuer(#2362). - The proposals
set_module,remove_moduleandset_js_apphave been removed anddeploy_js_apprenamed toset_js_app(#2391).
- The status filter passed to
/node/network/nodesnow takes the correct CamelCased values (#2238).
- New
get_user_data_v1andget_member_data_v1C++ API calls have been added to retrieve the data associated with users/members. The user/member data is no longer included in theAuthnIdentitycaller struct (#2301). - New
get_user_cert_v1andget_member_cert_v1C++ API calls have been added to retrieve the PEM certificate of the users/members. The user/member certificate is no longer included in theAuthnIdentitycaller struct (#2301).
- String values in query parameters no longer need to be quoted. For instance, you should now call
/network/nodes?host=127.0.0.1rather than/network/nodes?host="127.0.0.1"(#2309). - Schema documentation for query parameters should now be added with
add_query_parameter, rather thanset_auto_schema. TheIntype ofset_auto_schemashould only be used to describe the request body (#2309). json_adapterwill no longer try to convert query parameters to a JSON object. The JSON passed as an argument to these handlers will now be populated only by the request body. The query string should be parsed separately, andhttp::parse_query(s)is added as a starting point. This means strings in query parameters no longer need to be quoted (#2309).- Enum values returned by built-in REST API endpoints are now PascalCase. Lua governance scripts that use enum values need to be updated as well, for example,
"ACTIVE"becomes"Active"for member info. The same applies when using the/gov/queryendpoint (#2152). - Most service tables (e.g. for nodes and signatures) are now serialised as JSON instead of msgpack. Some tables (e.g. user and member certificates) are serialised as raw bytes for performance reasons (#2301).
- The users and members tables have been split into
public:ccf.gov.users.certs/public:ccf.gov.users.infoandpublic:ccf.gov.members.certs/public:ccf.gov.members.encryption_public_keys/public:ccf.gov.members.inforespectively (#2301). - TypeScript interface/class names have been renamed to PascalCase (#2325).
- Historical point query support has been added to JavaScript endpoints (#2285).
- RSA key generation JavaScript endpoint (#2293).
"readonly"has been replaced by"mode"inapp.jsonin JavaScript apps (#2285).
x-ccf-tx-viewandx-ccf-tx-seqnoresponse headers have been removed, and replaced withx-ms-ccf-transaction-id. This includes both original fields, separated by a single.. Historical queries usingccf::historical::adaptershould also pass a single combinedx-ms-ccf-transaction-idheader (#2257).- Node unique identifier is now the hex-encoded string of the SHA-256 digest of the node's DER-encoded identity public key, which is also used as the node's quote report data. The
sandbox.shscript still uses incrementing IDs to keep track of nodes and for their respective directories (#2241). - Members and users unique identifier is now the hex-encoded string of the SHA-256 digest of their DER-encoded identity certificate (i.e. fingerprint), which has to be specified as the
keyIdfield for signed HTTP requests (#2279). - The receipt interface has changed,
/app/receipt?commit=23is replaced by/app/receipt?transaction_id=2.23. Receipt fetching is now implemented as a historical query, which means that the first reponse(s) may be 202 with a Retry-After header. Receipts are now structured JSON, as opposed to a flat byte sequence, and/app/receipt/verifyhas been removed in favour of an offline verification sample. ccfapp::get_rpc_handler()now takes a reference to accf::AbstractNodeContextrather thanccf::AbstractNodeState. The node state can be obtained from the context viaget_node_state().
get_receipt_for_seqno_v1has been removed. Handlers wanting to return receipts must now use the historical API, and can obtain a receipt viaccf::historical::StatePtr. See the historical query with receipt sample for reference.caller_idendpoint has been removed. Members and users can now compute their unique identifier without interacting with CCF (#2279).public:ccf.internal.members.certs_der,public:ccf.internal.users.certs_der,public:ccf.internal.members.digestsandpublic:ccf.internal.users.digestsKV tables have been removed (#2279).view_change_in_progressfield innetwork/statusresponse has been removed (#2288).
- Historical query system now supports range queries.
- Governance proposals can be submitted successfully against secondaries (#2247)
set_ca_cert/remove_ca_certproposals have been renamedset_ca_cert_bundle/remove_ca_cert_bundleand now also accept a bundle of certificates encoded as concatenated PEM string (#2221). Theca_cert_nameparameter to theset_jwt_issuerproposal has been renamed toca_cert_bundle_name.
- Support for multiple key wrapping algorithms for C++ and JavaScript applications (#2246)
- Fixed format of
notBeforeandnotAfterin node and network certificates (#2243). - CCF now depends on Open Enclave 0.14.
- Support for historical queries after ledger rekey and service recovery (#2200).
- CCF now supports OpenSSL for many crypto tasks like hashing, signing, and signature verification (#2123).
- In progress ledger files no longer cause a node to crash when they are committed (#2209).
"id"field instateendpoint response has been renamed to"node_id"(#2150).user_idendpoint is renamedcaller_id(#2142).- Nodes' quotes format updated to Open Enclave's
SGX_ECDSA. Quote endorsements are also stored in CCF and can be retrieved via thequotes/selfandquotesendpoints (#2161). get_quote_for_this_node_v1()takes aQuoteInfostructure (containing the format, raw quote and corresponding endorsements) as out parameter instead of the distinct format and raw quote as two out paramters (#2161).- Several internal tables are renamed (#2166).
/node/network/nodescorrectly returns all nodes if no filter is specified (#2188).
endpoint_metricsis renamedapi/metricsand now returns an array of objects instead of nested path/method objects (#2068).- Governance proposal ids are now digests of the proposal and store state observed during their creation, hex-encoded as strings. This makes votes entirely specific to an instance of a proposal without having to include a nonce. (#2104, #2135).
quoteendpoint has been renamed toquotes/self(#2149).TxViews have been renamed toMapHandles, to clearly distinguish them from consensus views. Calls totx.get_viewmust be replaced withtx.rw.tx.rwdoes not support retrieving multiple views in a single call. Instead ofauto [view1, view2] = tx.get_view(map1, map2);, you must writeauto handle1 = tx.rw(map1); auto handle2 = tx.rw(map2);.
- Added
get_version_of_previous_write(const K& k)toMapHandle. If this entry was written to by a previous transaction, this returns the version at which that transaction was applied. See docs for more details.
- The
x-ccf-global-commitheader is no longer sent with responses (#1586, #2144). This was a hint of global commit progress, but was known to be imprecise and unrelated to the executed transaction. Instead, clients should call/committo monitor commit progress or/txfor a specific transaction.
- Fixed incorrect ledger chunking on backup nodes when snapshotting is enabled (#2110).
- JS endpoints now list their auth policies by name, similar to C++ endpoints. The fields
require_client_identity,require_client_signature, andrequire_jwt_authenticationare removed, and should be replaced byauthn_policies. For example, the previous default"require_client_identity": trueshould be replaced with"authn_policies": ["user_cert"], an endpoint which would like to handle a JWT but will also accept unauthenticated requests would be"authn_policies": ["jwt", "no_auth"], and a fully unauthenticated endpoint would be"authn_policies": []. See docs for further detail.
- Versioned APIs for common CCF functionality:
get_status_for_txid_v1,get_last_committed_txid_v1,generate_openapi_document_v1,get_receipt_for_seqno_v1,get_quote_for_this_node_v1. We will aim to support these function signatures long-term, and provide similar functionality with incremental version bumps when this is no longer possible. In particular, this enables building an app which does not expose the default endpoints but instead exposes similar functionality through its own API.
/network,/network_info,/node/ids,/primary_infohave been restructured into/network,/network/nodes,/network/nodes/{id},/network/nodes/self,/network/nodes/primarywhile also changing the response schemas (#1954)./ackresponds with HTTP status204now instead of200andtrueas body (#2088)./recovery_sharehas new request and response schemas (#2089).
- To avoid accidentally unauthenticated endpoints, a vector of authentication policies must now be specified at construction (as a new argument to
make_endpoint) rather than by callingadd_authentication. The valueccf::no_auth_requiredmust be used to explicitly indicate an unauthenticated endpoint. - All
/govendpoints accept signature authentication alone correctly, regardless of session authentication. ccf.CCFClientnow allows separatesession_authandsigning_authto be passed as construction time.ccf.CCFClient.call()no longer takes asignedargument, clients with asigning_authalways sign. Similarly, thedisable_session_authconstructor argument is removed, the same effect can be achieved by settingsession_authtoNone.
- Snapshots are generated by default on the current primary node, every
10,000committed transaction (#2029). - Node information exposed in the API now correctly reports the public port when it differs from the local one. (#2001)
- All
/govendpoints accept signature authentication again. Read-only/govendpoints had been incorrectly changed in 0.16.1 to accept session certification authentication only (#2033).
- C++ endpoints can be omitted from OpenAPI with
set_openapi_hidden(true)(#2008). - JS endpoints can be omitted from OpenAPI if the
"openapi_hidden"field inapp.jsonistrue(#2008).
- Error responses of built-in endpoints are now JSON and follow the OData schema (#1919).
- Code ids are now deleted rather than marked as
RETIRED.ACTIVEis replaced with the more preciseALLOWED_TO_JOIN(#1996). - Authentication policies can be specified per-endpoint with
add_authentication. Sample policies are implemented which check for a user TLS handshake, a member TLS handshake, a user HTTP signature, a member HTTP signature, and a valid JWT. This allows multiple policies per-endpoints, and decouples auth from frontends - apps can define member-only endpoints (#2010). - By default, if no authentication policy is specified, endpoints are now unauthenticated and accessible to anyone (previously the default was user TLS handshakes, where the new default is equivalent to
set_require_client_identity(false)). - CCF now depends on Open Enclave 0.13.
- The methods
Endpoint::set_require_client_signature,Endpoint::set_require_client_identityandEndpoint::set_require_jwt_authenticationare removed, and should be replaced by calls toadd_authentication. For unauthenticated endpoints, either add no policies, or add the built-inempty_authpolicy which accepts all requests..set_require_client_signature(true)must be replaced with.add_authentication(user_signature_auth_policy).set_require_client_identity(true)must be replaced with.add_authentication(user_cert_auth_policy).set_require_jwt_authentication(true)must be replaced with.add_authentication(jwt_auth_policy)
- CLI options are printed on every node launch (#1923).
- JS logging sample app is included in CCF package (#1932).
- C++ apps can be built using cmake's
find_package(ccf REQUIRED)(see cmake sample) (#1947).
- JWT signing keys are auto-refreshed immediately when adding a new issuer instead of waiting until the next auto-refresh event is due (#1978).
- Snapshots are only committed when proof of snapshot evidence is committed (#1972).
- Snapshot evidence must be validated before joining/recovering from snapshot (see doc) (#1925).
- Ledger index is recovered correctly even if
--ledger-dirdirectory is empty (#1953). - Memory leak fixes (#1957, #1959, #1974, #1982).
- Consensus fixes (#1977, #1981).
- Enclave schedules messages in a fairer way (#1991).
- Hostname of TLS certificate is checked when auto-refreshing JWT signing keys (#1934).
- Evercrypt update to 0.3.0 (#1967).
- JWT key auto-refresh (#1908), can be enabled by providing
"auto_refresh": trueand"ca_cert_name": "..."inset_jwt_issuerproposal.- Auto-refresh is currently only supported for providers following the OpenID Connect standard where keys are published under the
/.well-known/openid-configurationpath of the issuer URL. ca_cert_namerefers to a certificate stored with aset_ca_certproposal and is used to validate the TLS connection to the provider endpoint.
- Auto-refresh is currently only supported for providers following the OpenID Connect standard where keys are published under the
- JWT signature validation (#1912), can be enabled with the
require_jwt_authenticationendpoint property.
- Members can no longer vote multiple times on governance proposals (#1743).
update_ca_certproposal has been replaced byset_ca_cert/remove_ca_cert(#1917).
set_js_appproposal and--js-app-scriptargument are deprecated, and should be replaced bydeploy_js_appand--js-app-bundle. See #1895 for an example of converting from the old style (JS embedded in a Lua script) to the new style (app bundle described byapp.json).
kv::Store::createis removed.luagenericis removed.
- JWT documentation (#1875).
- Member keys in HSM documentation (#1884).
/gov/ack/update_state_digestand/gov/acknow only return/accept a hex string (#1873)./node/quoteschema update (#1885).- AFT consensus improvements (#1880, #1881).
- Support for non-recovery members: only members with an associated public encryption key are handed recovery shares (#1866).
- AFT consensus verify entry validity (#1864).
- JWT validation in forum sample app (#1867).
- JavaScript endpoints OpenAPI definition is now included in
/api(#1874).
- The
keyIdfield in the Authorization header must now be set to the hex-encoded SHA-256 digest of the corresponding member certificate encoded in PEM format. Thescurl.shscript and Python client have been modified accordingly.scurl.shcan be run withDISABLE_CLIENT_AUTH=1(equivalentdisable_client_auth=Falseargument to Python client) to issue signed requests without session-level client authentication (#1870). - Governance endpoints no longer require session-level client authentication matching a member identity, the request signature now serves as authentication. The purpose of this change is to facilitate member key storage in systems such as HSMs (#1870).
- Support for hs2019 scheme for HTTP signatures (#1872).
ecdsa-sha256scheme will be deprecated in the next release.
- Added support for storing JWT public signing keys (#1834).
- The new proposals
set_jwt_issuer,remove_jwt_issuer, andset_jwt_public_signing_keyscan be generated with the latest version of the ccf Python package. sandbox.shhas a new--jwt-issuer <json-path>argument to easily bootstrap with an initial set of signing keys using theset_jwt_issuerproposal.- See
tests/npm-app/src/endpoints/jwt.tsfor validating tokens received in theAuthorizationHTTP header in TypeScript. - Includes special support for SGX-attested signing keys as used in MAA.
- The new proposals
- CCF now depends on Open Enclave 0.12 (#1830).
/app/user_idnow takes{"cert": user_cert_as_pem_string}rather than{"cert": user_cert_as_der_list_of_bytes}(#278).- Members' recovery shares are now encrypted using RSA-OAEP-256 (#1841). This has the following implications:
- Network's encryption key is no longer output by the first node of a CCF service is no longer required to decrypt recovery shares.
- The latest version of the
submit_recovery_share.shscript should be used. - The latest version of the
proposal_generator.pyshould be used (please upgrade the ccf Python package).
submit_recovery_share.shscript's--rpc-addressargument has been removed. The node's address (e.g.https://127.0.0.1:8000) should be used directly as the first argument instead (#1841).- The constitution's
passfunction now takes an extra argument:proposer_id, which contains themember_idof the member who submitted the proposal. To adjust for this change, replacetables, calls, votes = ...withtables, calls, votes, proposer_id = ...at the beginning of thepassdefinition. - Bundled votes (ie. the
ballotentry inPOST /proposals) have been removed. Votes can either happen explicitly viaPOST /proposals/{proposal_id}/votes, or the constitution may choose to pass a proposal without separate votes by examining its contents and its proposer, as illustrated in the operating member constitution sample. The--vote-againstflag inproposal_generator.py, has also been removed as a consequence.
- Added
tools.cmaketo the install, whichccf_app.cmakedepends on and was missing from the previous release.
kv::Store::createis deprecated, and will be removed in a future release. It is no longer necessary to create akv::Mapfrom aStore, it can be constructed locally (kv::Map<K, V> my_map("my_map_name");) or accessed purely by name (auto view = tx.get_view<K, V>("my_map_name");) (#1847).
- The
start_test_network.shscript has been replaced bysandbox.sh. Users wishing to override the default network config (a single node on '127.0.0.1:8000') must now explictly specify if they should be started locally (eg.-n 'local://127.4.4.5:7000') or on remote machine via password-less ssh (eg.-n 'ssh://10.0.0.1:6000'). node/quoteendpoint now returns a single JSON object containing the node's quote (#1761).- Calling
foreachon aTxViewnow iterates over the entries which previously existed, ignoring any modifications made by the functor while iterating. - JS:
ccf.kv.<map>.get(key)returnsundefinedinstead of throwing an exception ifkeydoes not exist. - JS:
ccf.kv.<map>.delete(key)returnsfalseinstead of throwing an exception ifkeydoes not exist, andtrueinstead ofundefinedotherwise. - JS:
ccf.kv.<map>.set(key, val)returns the map object instead ofundefined.
/node/memoryendpoint exposing the maximum configured heap size, peak and current used sizes.
- Public tables in the KV must now indicate this in their name (with a
public:prefix), and internal tables have been renamed. Any governance or auditing scripts which operate over internal tables must use the new names (eg -ccf.membersis nowpublic:ccf.gov.members). --member-infooncchostcan now take a third, optional file path to a JSON file containing additional member data (#1712).
/api/schemaendpoints are removed, as the same information is now available in the OpenAPI document at/api.
- Passing the
SecurityDomainwhen creating a KV map is deprecated, and will be removed in a future release. This should be encoded in the table's name, with apublic:prefix for public tables.
- Nodes can recover rapidly from a snapshot, rather than needing to reprocess an entire ledger (#1656)
- Python client code wraps creation and replacement of an entire JS app bundle in a single operation (#1651)
- Snapshots are only usable when the corresponding evidence is committed (#1668).
- JSON data associated to each consortium member to facilitate flexible member roles (#1657).
/apiendpoints return an OpenAPI document rather than a custom response (#1612, #1664)- Python ledger types can process individual chunks as well as entire ledger (#1644)
POST recovery_share/submitendpoint is renamed toPOST recovery_share(#1660).
- Elections will not allow transactions which were reported as globally committed to be rolled back (#1641)
lua_genericapp is deprecated and will be removed in a future release. Please migrate old Lua apps to JS
- Fixed infinite memory growth issue (#1639)
- Step CLI updated to 0.15.2 (#1636)
- Sample TypeScript application (#1614, #1596)
- Handlers can implement custom authorisation headers (#1203, #1563)
- Reduced CPU usage when nodes are idle (#1625, #1626)
- Upgrade to Open Enclave 0.11 (#1620, #1624)
- Snapshots now include view history, so nodes resuming from snapshots can accurately serve transaction status requests (#1616)
- Request is now passed as an argument to JavaScript handlers (#1604), which can return arbitrary content types (#1575)
- Quote RPC now returns an error when the quote cannot be found (#1594)
- Upgraded third party dependencies (#1589, #1588, #1576, #1572, #1573, #1570, #1569)
- Consensus types renamed from
raftandpbfttocftandbft(#1591)
- Notification server (#1582)
- retire_node_code proposal (#1558)
- Ability to update a collection of JS modules in a single proposal (#1557)
- Handle setting multiple subject alternative names correctly in node certificate (#1552)
- Fix host memory check on startup ecall (#1553)
-
Experimental
- New CCF nodes can now join from a snapshot (#1500, #1532)
- New KV maps can now be created dynamically in a transaction (#1507, #1528)
-
CLI
- Subject Name and Subject Alternative Names for the node certificates can now be passed to cchost using the --sn and --san CLI switches (#1537)
- Signature and ledger splitting flags have been renamed more accurately (#1534)
-
Governance
user_datacan be set at user creation, as well as later (#1488)
-
Javascript
js_genericendpoints are now modules with a single default call. Their dependencies can be stored in a separate table and loaded withimport. (#1469, #1472, #1481, #1484)
- Retiring the primary from a network is now correctly handled (#1522)
- CLI
--domain=...is superseded by--san=dNSName:...and will be removed in a future release
- API
- Removed redirection from legacy frontend names (
members->gov,nodes->node,users->app) (#1543) - Removed old
install()API, replaced bymake_endpoint()in 0.11.1 (#1541)
- Removed redirection from legacy frontend names (
- Fix published containers
- Release tarball replaced by a .deb
- Fix LVI build for applications using CCF (#1466)
- Tooling
- HTTP endpoints
- Templated URI for HTTP endpoints (#1384, #1393).
- New
remove_userproposal (#1379). - New node endpoints:
/node/stateand/node/is_primary(#1387, #1439) - New
metricsendpoint (#1422).
- Tooling
- Updated version of Open Enclave (0.10) (#1424). Users should use the Intel PSW tested with Open Enclave 0.10, see Open Enclave releases notes: https://github.com/openenclave/openenclave/releases/tag/v0.10.0 for more details.
- CCF releases no longer include a build of Open Enclave, instead the upstream binary release should be used. Playbooks and containers have been updated accordingly (#1437).
- CCF is now built with LVI mitigations (#1427). CCF should now be built with a new LVI-enabled toolchain, available via CCF playbooks and containers.
- Updated version of
snmalloc(#1391).
- HTTP endpoints
- Pass PEM certificates rather than byte-arrays (#1374).
- Member
/ackschema (#1395). - Authorisation HTTP request header now accepts unquoted values (#1411).
- Fix double opening of
/appon backups after recovery (#1445).
- Other
- Merkle tree deserialisation fix (#1363).
- Improve resilience of node-to-node channels (#1371).
- First Raft election no longer fails (#1392).
- Fix message leak (#1442).
mkSignendpoint (#1398).
- Fix a bug that could cause signatures not to be recorded on transactions hitting conflicts (#1346)
- Fix a bug that could allow transactions to be executed by members before a recovered network was fully opened (#1347)
- Improve error reporting on transactions with invalid signatures (#1356)
- All format and linting checks are now covered by
scripts/ci-checks.sh(#1359) node/codeRPC returns all code versions and their status (#1351)
- Add clang-format to the application CI container, to facilitate application development (#1340)
- Websocket handlers are now distinct, and can be defined by passing
ws::Verb::WEBSOCKETas a verb tomake_endpoint()(#1333) - Custom KV serialisation is documented
- Fix application runtime container, which had been missing a dependency in the previous release (#1340)
- CLI tool for managing recovery shares (#1295). usage
- New standard endpoint
node/idsfor retrieving node ID from IP address (#1319). - Support for read-only transactions. Use
tx.get_read_only_viewto retrieve read-only views, and install withmake_read_only_endpointif all operations are read-only. - Support for distinct handlers on the same URI. Each installed handler/endpoint is now associated with a single HTTP method, so you can install different operations on
POST /fooandGET /foo.
- The frontend names, used as a prefix on all URIs, have been changed. Calls to
/members/...or/users/...should be replaced with/gov/...and/app/...respectively. The old paths will return HTTP redirects in this release, but may return 404 in a future release (#1325). - App-handler installation API has changed.
install(URI, FN, READWRITE)should be replaced withmake_endpoint(URI, VERB, FN).install(). Existing apps should compile with deprecation warnings in this release, but the old API will be removed in a future release. See this diff of logging.cpp for an example of the required changes. - Improved quickstart documentation (#1298, #1316).
- Member ACKs are required, even when the service is opening (#1318).
- The naming scheme for releases has changed to be more consistent. The tags will now be in the form
ccf-X.Y.Z.
- KV reorganisation to enable app-defined serialisation (#1179, #1216, #1234)
kv.h has been split into multiple headers so apps may need to add includes for kv/store.h and kv/tx.h. The typedefs ccf::Store and ccf::Tx have been removed; apps should now use kv::Store and kv::Tx.
CCF now deals internally only with serialised data in its tables, mapping byte-vectors to byte-vectors. By default all tables will convert their keys and values to msgpack, using the existing macros for user-defined types. Apps may define custom serialisers for their own types - see kv/serialise_entry_json.h for an example.
- Fixed issues that affected the accuracy of tx status reporting (#1157, #1150)
- All RPCs and external APIs now use
viewandseqnoto describe the components of a transaction ID, regardless of the specific consensus implementation selected (#1187, #1227) - Improved resiliency of recovery process (#1051)
foreachearly-exit semantics are now consistent (#1222)- Third party dependency updates (#1144, #1148, #1149, #1151, #1155, #1255)
- All logging output now goes to stdout, and can be configured to be either JSON or plain text (#1258) doc
- Initial support for historical query handlers (#1207) sample
- Implement the equivalent of "log rolling" for the ledger (#1135) doc
- Internal RPCs renamed to follow more traditional REST conventions (#968) doc
- Support for floating point types in default KV serialiser (#1174)
- The
start_test_network.shscript now supports recovering an old network with the--recoverflag (#1095) doc - Application CI and runtime containers are now available (#1178)
ccfciteam/ccf-app-ci:0.11is recommended to build CCF applicationsccfciteam/ccf-app-run:0.11is recommended to run CCF nodes, for example in k8s
- Initial websockets support (#629) sample
ccf::Storeandccf::Txtypdefs, in favour ofkv::Storeandkv::Tx.
- Brand new versioned documentation: https://microsoft.github.io/CCF.
- New
/txendpoint to check that a transaction is committed (#1111). See docs. - Disaster recovery is now performed with members key shares (#1101). See docs.
- Open Enclave install is included in CCF install (#1125).
- New
sgxinfo.shscript (#1081). - New
--transaction-rateflag to performance client (#1071).
- CCF now uses Open Enclave 0.9 (#1098).
cchost's--enclave-typeisreleaseby default (#1083).keygenerator.sh's--gen-key-shareoption renamed to--gen-enc-keyto generate member encryption key (#1101).- Enhanced view change support for PBFT (#1085, #1087, #1092).
- JavaScript demo logging app is now more generic (#1110).
- Updated method to retrieve time in enclave from host (#1100).
- Correct use of Everycrypt hashing (#1098).
- Maximum number of active members is 255 (#1107).
- Python infra: handle proposals correctly with single member (#1079).
- Dependencies updates (#1080, #1082).
cchostno longer outputs a sealed secrets file to be used for recovery (#1101).
- Install artifacts include
virtualbuild (#1072) add_enclave_library_cis exposed inccp_app.cmake(#1073)
- Handlers can decide if transaction writes are applied independently from error status (#1054)
- Scenario Perf Client is now part of the CCF install to facilitate performance tests (#1058)
- Handle writes when host is reconnecting (#1038)
- Member tables are no longer whitelisted for raw_puts (#1041)
- Projects including CCF's CMake files now use the same build type default (#1057)
cchostnow supports file-based configuration, as well as command-line switches (#1013, #1019)
This pre-release improves support for handling HTTP requests.
- Key shares will be accepted after multiple disaster recovery operations (#992).
- HTTP response headers and status can be set directly from handler (#921, #977).
- Handlers can be restricted to accept only specific HTTP verbs (#966).
- Handlers can accept requests without a matching client cert (#962).
- PBFT messages are authenticated by each receiving node (#947).
- snmalloc can be used as allocator (#943, #990).
- Performance optimisations (#946, #971).
- Install improvements (#983, #986).
- HTTP request and responses no longer need to contain JSON-RPC objects (#930, #977).
- Files and binaries have been renamed to use a consistent
lower_snake_case(#989). Most app includes should be unaffected, but users of theluagenericapp should now look forlua_generic. - Threading support relies on fixes from a recent build of OE (#990). Existing machines should re-run the ansible playbooks to install the current dependencies.
- Consensus is chosen at run-time, rather than build-time (#922).
- API for installing handlers has changed (#960). See the logging app or documentation for the current style.
- Several standard endpoints are now GET-only, and must be passed a URL query (ie
GET /users/getCommit?id=42).
- CCF install can now be installed anywhere (#950).
- PBFT messages are now authenticated (#947).
- Miscellaneous performance improvements (#946).
- PBFT timers can be set from
cchostCLI (#929). See docs. - Nodes output their PID in a
cchost.pidfile on start-up (#927). - (Experimental) Members can retrieve their decrypted recovery shares via
getEncryptedRecoveryShareand submit the decrypted share viasubmitRecoveryShare(#932).
- App handlers should set HTTP response fields instead of custom error codes (#921). See docs.
- Single build for Raft and PBFT consensuses (#922, #929, #935).
- Members' proposals are forever rejected if they fail to execute (#930).
- Original consortium members can ACK (#933).
- PBFT performance improvements (#940, #942).
- PBFT ledger private tables are now encrypted (#939).
This pre-release enables experimental support for running CCF with the PBFT consensus protocol. In providing an experimental release of CCF with PBFT we hope to get feedback from early adopters.
- Experimental PBFT support docs
- Increased threading support docs (#831, #838)
- Governance proposals can now be rejected, which allows constitutions to implement veto power (#854)
- Support for non JSON-RPC payloads (#852)
- RPC to get the OE report (containing the SGX quote) of a specific node (#907)
- Compatibility with msgpack 1.0.0
- Members now need to provide two public keys, an identity to sign their proposals and votes as before, and public key with which their recovery key share will be encrypted.
--member_certcli argument replaced with--member-infowhen starting up a network to allow this docs - Member status is now a string, eg.
"ACTIVE"rather than an integer (#827) - User apps have access to standard user-cert lookup (#906)
get_rpc_handler()now returnsUserRpcFrontendinstead ofRpcHandlerdocs (#908)- All governance RPC's must now be signed (#911)
- Test infra stores keys and certificates (e.g.
networkcert.pem,user0_privk.pem) in newworkspace/<test_label>_common/folder (#892)
- FramedTCP support
- Installed Python infrastructure can now be used to launch test networks of external builds (#809)
- Initial threading support, Raft nodes now execute transactions on multiple worker threads (#773, #822)
This pre-release enables experimental support for Javascript as a CCF runtime, and switches the default transport to HTTP. FramedTCP is still supported in this release (-DFTCP=ON) but is deprecated and will be dropped in the next release.
- Fixed node deadlock that could occur under heavy load (#628)
- Fixed vulnerability to possible replay attack (#419)
- CCF has an installable bundle (#742)
- HTTP is the default frame format (#744)
- Added support for re-keying the ledger (#50)
- Added QuickJS runtime and sample Javascript app (#668)
- FramedTCP support. Please use the ccf_FTCP.tar.gz release bundle or build CCF with
-DFTCP=ONif you require FTCP support.
This pre-release enables support for HTTP in CCF
- Quote format in
getQuoteschanged from string to vector of bytes (microsoft#566) - Improved error reporting and logging (microsoft#572, microsoft#577, microsoft#620)
- Node certificates endorsed by the network (microsoft#581)
- The
keygenerator.shscripts replaces thekeygeneratorCLI utility to generate member and user identities.
- HTTP endpoint support when built with
-DHTTP=ON, see https://microsoft.github.io/CCF/users/client.html for details. - [Only when building with
-DHTTP=ON] The newscurl.shscript can be used to issue signed HTTP requests to CCF (e.g. for member votes). The script takes the same arguments ascurl. listMethodsRPC for luageneric app (microsoft#570)getReceipt/verifyReceiptRPCs (microsoft#567)- Support for app-defined ACLs (microsoft#590)
Binaries for cchost and libluagenericenc.so are attached to this release. Note that libluagenericenc.so should be signed before being deployed by CCF (see https://microsoft.github.io/CCF/developers/build_app.html#standalone-signing).
This pre-release fixes minor issues and clarifies some of cchost command line options.
- The
new_userfunction in constitution scripts (e.g.gov.lua) should be deleted as it is now directly implemented inside CCF (microsoft#550). cmake -DTARGET=allreplaced withcmake -DTARGET=sgx;virtual. See https://microsoft.github.io/CCF/quickstart/build.html#build-switches for new values (microsoft#513).
- The members and users certificates can now be registered by the consortium using clients that are not the
memberclientCLI (e.g. using thetests/infra/jsonrpc.pymodule) (microsoft#550). - Fix for Raft consensus to truncate the ledger whenever a rollback occurs and use
commit_idxinstead oflast_idxin many places because of signatures (microsoft#503). - Join protocol over HTTP fix (microsoft#550).
- Clearer error messages for when untrusted users/members issue transactions to CCF (microsoft#530).
devcontainer.jsonnow points to right Dockerfile (microsoft#543).cchost --raft-election-timeoutCLI option default now set to 5000 ms (microsoft#559).- Better descriptions for
cchostcommand line options (e.g.--raft-election-timeout) (microsoft#559).
The cchost, libluagenericenc.so, keygenerator and memberclient are also attached to this release to start a CCF network with lua application.
Note that libluagenericenc.so should be signed before being deployed by CCF (see https://microsoft.github.io/CCF/developers/build_app.html#standalone-signing).
In this preview release, it is possible to run CCF with the PBFT consensus algorithm, albeit with significant limitations.
The evercrypt submodule has been removed, the code is instead imported, to make release tarballs easier to use.
This pre-release implements the genesis model described in the TR, with a distinct service opening phase. See https://microsoft.github.io/CCF/start_network.html for details.
Some discrepancies with the TR remain, and are being tracked under https://github.com/microsoft/CCF/milestone/2
Initial pre-release