-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathtemp
492 lines (351 loc) · 15.9 KB
/
temp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
# Transactions and Queries
<!-- markdownlint-disable MD036 -->
See use case sequence diagrams for the examples of how transaction can be used.
1. [General](#general)
2. [How to write to the Ledger](#how-to-write-to-the-ledger)
3. [How to read from the Ledger](#how-to-read-from-the-ledger)
4. [Vendor Info](#vendor-info)
5. [Model and Model Version](#model-and-model_version)
6. [Compliance](#certify_device_compliance)
7. [X509 PKI](#x509-pki)
- [Device Attestation (DA): PAA, PAI](#device-attestation-certificates-da-paa-pai)
- [E2E (NOC): RCAC, ICAC](#e2e-noc-rcac-icac)
8. [Auth](#auth)
9. [Validator Node](#validator_node)
10. [Upgrade](#upgrade)
11. [Extensions](#extensions)
## General
- Every writer to the Ledger must
- Have a private/public key pair.
- Have an Account created on the ledger via `ACCOUNT` transaction (see [Use Case Txn Auth](../use_cases/use_cases_txn_auth.puml)).
- The Account stores the public part of the key
- The Account has an associated role. The role is used for authorization policies.
- Sign every transaction by the private key.
- Ledger is public for read which means that anyone can read from the Ledger without a need to have
an Account or sign the request.
- The following roles are supported:
- `Trustee` - can create and approve accounts, approve root certificates.
- `Vendor` - can add models that belong to the vendor ID associated with the vendor account.
- `VendorAdmin` - can add vendor info records and update any vendor info.
- `CertificationCenter` - can certify and revoke models.
- `NodeAdmin` - can add validator nodes to the network.
## How to write to the Ledger
- Local CLI
- Configure the CLI before using.
See `CLI Configuration` section in [how-to.md](../how-to.md#cli-configuration).
- Generate and store a private key for the Account to be used for sending.
See `Getting Account` section in [how-to.md](../how-to.md#getting-account).
- Send transactions to the ledger from the Account (`--from`).
- it will automatically build a request, sign it by the account's key, and broadcast to the ledger.
- See `CLI` sub-sections for every write request (transaction).
- It's possible to build, sign and broadcast a transaction separately (possibly by diferent CLIs):
- Let's assume we have two CLIs:
- CLI 1: Is connected to the network of nodes. Doesn't have access to private keys.
- CLI 2: Stores private key. Does not have a connection to the network of nodes.
- Build transaction by CLI 1: `dcld tx ... --generate-only`
- Fetch `account-number` and `sequence` by CLI 1: `dcld query auth account --address <address>`
- Sign transaction by CLI 2: `dcld tx sign txn.json --from <from> --account-number <int> --sequence <int> --gas "auto" --offline --output-document txn.json`
- Broadcast transaction by CLI 1: `dcld tx broadcast txn.json`
- To get the actual result of transaction, `dcld query tx=txHash` call must be executed, where `txHash` is the hash of previously executed transaction.
- gRPC:
- Generate a client code from the proto files [proto](../../proto) for the client language (see <https://grpc.io/docs/languages/>)
- Build, sign, and broadcast the message (transaction).
See [grpc/rest integration tests](../../integration_tests/grpc_rest) as an example.
- REST API
- Build and sign a transaction by one of the following ways
- In code via gRPC (see above)
- Via CLI commands specifying `--generate-only` flag and using `dcld tx sign` (see above)
- The user does a `POST` of the signed request to `http://<node-ip>:1317/cosmos/tx/v1beta1/txs` endpoint.
- Example
```bash
dcld tx ... --generate-only
dcld query auth account --address <address>
dcld tx sign txn.json --from <from> --account-number <int> --sequence <int> --gas "auto" --offline --output-document txn.json
POST http://<node-ip>:1317/cosmos/tx/v1beta1/txs
```
## How to read from the Ledger
No keys/account is needed as the ledger is public for reads.
Please note, that multi-value queries don't have state proofs support and should be sent to trusted nodes only.
Please make sure that TLS is enabled in gRPC, REST or Light Client Proxy for secure communication with a Node.
- Local CLI
- See `CLI` section for every read request.
- If there are no trusted Observer or Validator nodes to connect a CLI, then a [Light Client Proxy](../running-light-client-proxy.md) can be used.
- REST API
- OpenAPI specification: <https://zigbee-alliance.github.io/distributed-compliance-ledger/>.
- Any running node exposes a REST API at port `1317`. See <https://docs.cosmos.network/v0.45/core/grpc_rest.html>.
- See `REST API` section for every read request.
- See [grpc/rest integration tests](../../integration_tests/grpc_rest) as an example.
- There are no state proofs in REST, so REST queries should be sent to trusted Validator or Observer nodes only.
- gRPC
- Any running node exposes a REST API at port `9090`. See <https://docs.cosmos.network/v0.45/core/grpc_rest.html>.
- Generate a client code from the proto files [proto](../../proto) for the client language (see <https://grpc.io/docs/languages/>).
- See [grpc/rest integration tests](../../integration_tests/grpc_rest) as an example.
- There are no state proofs in gRPC, so gRPC queries should be sent to trusted Validator or Observer nodes only.
- Tendermint RPC
- Tendermint RPC OpenAPI specification can be found in <https://zigbee-alliance.github.io/distributed-compliance-ledger/>.
- Tendermint RPC is exposed by every running node at port `26657`. See <https://docs.cosmos.network/v0.45/core/grpc_rest.html#tendermint-rpc>.
- Tendermint RPC supports state proofs. Tendermint's Light Client library can be used to verify the state proofs.
So, if Light Client API is used, then it's possible to communicate with non-trusted nodes.
- Please note, that multi-value queries don't have state proofs support and should be sent to trusted nodes only.
- Refer to [this doc](../cometbft-rpc.md) to see how to [subscribe](../cometbft-rpc.md#subscribe) to a Tendermint WebSocket based events and/or [query](../cometbft-rpc.md#querying-application-components) an application components.
`NotFound` (404 code) is returned if an entry is not found on the ledger.
### Query types
- Query single value
- Query list of values with pagination support (should be sent to trusted nodes only)
### Common pagination parameters
- count-total `optional(bool)`: count total number of records
- limit `optional(uint)`: pagination limit (default 100)
- offset `optional(uint)`: pagination offset
- page `optional(uint)`: pagination page. This sets offset to a multiple of limit (default 1).
- page-key `optional(string)`: pagination page-key
- reverse `optional(bool)`: results are sorted in descending order
## Modules
### [VENDOR INFO](./vendor-info.md)
### [MODEL and MODEL_VERSION](./model.md)
### [CERTIFY_DEVICE_COMPLIANCE](./compliance.md)
### [X509 PKI](./pki.md)
### [AUTH](./auth.md)
## [VALIDATOR_NODE](./validator-node.md)
## UPGRADE
### PROPOSE_UPGRADE
**Status: Implemented**
Proposes an upgrade plan with the given name at the given height.
- Parameters:
- name: `string` - upgrade plan name
- upgrade-height: `int64` - upgrade plan height (positive non-zero)
- upgrade-info: `optional(string)` - upgrade plan info (for node admins to
read). Recommended format is an os/architecture -> application binary URL
map as a JSON under `binaries` key where each URL should include the
corresponding checksum as `checksum` query parameter with the value in the
format `type:value` where `type` is `sha256` or `sha512` and `value` is
the actual checksum value. For example:
```json
{
"binaries": {
"linux/amd64":"https://github.com/zigbee-alliance/distributed-compliance-ledger/releases/download/v0.7.0/dcld?checksum=sha256:aec070645fe53ee3b3763059376134f058cc337247c978add178b6ccdfb0019f"
}
}
```
- In State: `dclupgrade/ProposedUpgrade/value/<name>`
- Who can send:
- Trustee
- Number of required approvals:
- greater than 2/3 of Trustees (proposal by a Trustee is also counted as an approval)
- CLI command minimal:
```bash
dcld tx dclupgrade propose-upgrade --name=<string> --upgrade-height=<int64> --from=<account>
```
- CLI command full:
```bash
dcld tx dclupgrade propose-upgrade --name=<string> --upgrade-height=<int64> --upgrade-info=<string> --from=<account>
```
> **_Note:_** If the current upgrade proposal is out of date(when the current network height is greater than the proposed upgrade height), we can resubmit the upgrade proposal with the same name.
### APPROVE_UPGRADE
**Status: Implemented**
Approves the proposed upgrade plan with the given name. It also can be used for revote (i.e. change vote from reject to approve)
- Parameters:
- name: `string` - upgrade plan name
- In State: `upgrade/0x0`
- Who can send:
- Trustee
- Number of required approvals:
- greater than 2/3 of Trustees (proposal by a Trustee is also counted as an approval)
- CLI command:
```bash
dcld tx dclupgrade approve-upgrade --name=<string> --from=<account>
```
### REJECT_UPGRADE
**Status: Implemented**
Rejects the proposed upgrade plan with the given name. It also can be used for revote (i.e. change vote from approve to reject)
If proposed upgrade has only proposer's approval and no rejects then proposer can send this transaction to remove the proposal
- Paramaters:
- name: `string` - upgrade plan name
- In State: `RejectUpgrade/value/<name>`
- Who can send:
- Trustee
- Number of required rejects:
- more than 1/3 of Trustees
- CLI command:
```bash
dcld tx dclupgrade reject-upgrade --name=<string> --from=<account>
```
### GET_PROPOSED_UPGRADE
**Status: Implemented**
Gets the proposed upgrade plan with the given name.
- Parameters:
- name: `string` - upgrade plan name
- CLI command:
```bash
dcld query dclupgrade proposed-upgrade --name=<string>
```
- REST API:
- GET `/dcl/dclupgrade/proposed-upgrades/{name}`
### GET_APPROVED_UPGRADE
**Status: Implemented**
Gets the approved upgrade plan with the given name.
- Parameters:
- name: `string` - upgrade plan name
- CLI command:
```bash
dcld query dclupgrade approved-upgrade --name=<string>
```
- REST API:
- GET `/dcl/dclupgrade/approved-upgrades/{name}`
### GET_REJECTED_UPGRADE
**Status: Implemented**
Gets the rejected upgrade plan with the given name.
- Parameters:
- name: `string` - upgrade plan name
- CLI command:
```bash
dcld query dclupgrade rejected-upgrade --name=<string>
```
- REST API:
- GET `/dcl/dclupgrade/rejected-upgrades/{name}`
### GET_ALL_PROPOSED_UPGRADES
**Status: Implemented**
Gets all the proposed upgrade plans.
- Parameters:
- Common pagination parameters (see [pagination-params](#common-pagination-parameters))
- CLI command:
```bash
dcld query dclupgrade all-proposed-upgrades
```
- REST API:
- GET `/dcl/dclupgrade/proposed-upgrades`
### GET_ALL_APPROVED_UPGRADES
**Status: Implemented**
Gets all the approved upgrade plans.
- Parameters:
- Common pagination parameters (see [pagination-params](#common-pagination-parameters))
- CLI command:
```bash
dcld query dclupgrade all-approved-upgrades
```
- REST API:
- GET `/dcl/dclupgrade/approved-upgrades`
### GET_ALL_REJECTED_UPGRADES
**Status: Implemented**
Gets all the rejected upgrade plans.
- Parameters:
- Common pagination parameters (see [pagination-params](#common-pagination-parameters))
- CLI command:
```bash
dcld query dclupgrade all-rejected-upgrades
```
- REST API:
- GET `/dcl/dclupgrade/rejected-upgrades`
### GET_UPGRADE_PLAN
**Status: Implemented**
Gets the currently scheduled upgrade plan, if it exists.
- CLI command:
```bash
dcld query upgrade plan
```
- REST API:
- GET `/cosmos/upgrade/v1beta1/current_plan`
### GET_APPLIED_UPGRADE
**Status: Implemented**
Returns the header for the block at which the upgrade with the given name was
applied, if it was previously executed on the chain. This helps a client
determine which binary was valid over a given range of blocks, as well as gives
more context to understand past migrations.
- Parameters:
- `string` - upgrade name
- CLI command:
```bash
dcld query upgrade applied <string>
```
- REST API:
- GET `/cosmos/upgrade/v1beta1/applied_plan/{name}`
### GET_MODULE_VERSIONS
**Status: Implemented**
Gets a list of module names and their respective consensus versions. Following
the command with a specific module name will return only that module's
information.
- Parameters:
- `optional(string)` - module name
- CLI command minimal:
```bash
dcld query upgrade module_versions
```
- CLI command full:
```bash
dcld query upgrade module_versions <string>
```
- REST API:
- GET `/cosmos/upgrade/v1beta1/module_versions`
## Extensions
### Sign
Sign transaction by the given key.
- Parameters:
- `txn` - transaction to sign.
- `from` - name or address of private key to use to sign.
- `account-number` - (optional) the account number of the signing account.
- `sequence` - (optional) the sequence number of the signing account.
- `chain-id` - (optional) chain ID.
- CLI command:
- `dcld tx sign [path-to-txn-file] --from [address]`
> **_Note:_** if `account_number` and `sequence` are not specified they will be fetched from the ledger automatically.
### Broadcast
Broadcast transaction to the ledger.
- Parameters:
- `txn` - transaction to broadcast
- CLI command:
- `dcld tx broadcast [path-to-txn-file]`
- REST API:
- POST `/cosmos/tx/v1beta1/txs`
### Status
Query status of a node.
- Parameters:
- `node`: optional(string) - node physical address to query (by default queries the node specified in CLI config file or else "tcp://localhost:26657")
- CLI command:
- `dcld status [--node=<node ip>]`
- REST API:
- GET `/cosmos/base/tendermint/v1beta1/node_info`
### Validator set
Get the list of tendermint validators participating in the consensus at given height.
- Parameters:
- `height`: optional(uint) - height to query (the latest by default)
- CLI command:
- `dcld query tendermint-validator-set [height]`
- REST API:
- GET `/cosmos/base/tendermint/v1beta1/validatorsets/latest`
- GET `/cosmos/base/tendermint/v1beta1/validatorsets/{height}`
### Keys
The set of CLI commands that allows you to manage your local keystore.
Commands:
- Derive a new private key and encrypt to disk.
You will be prompted to create an encryption passphrase.
This passphrase will be requested each time you send write transactions on the ledger using this key.
You can remember and securely save the mnemonic phrase shown after the key is created
to be able to recover the key later.
Command: `dcld keys add <key name>`
Example: `dcld keys add jack`
- Recover existing key instead of creating a new one.
The key can be recovered from a seed obtained from the mnemonic passphrase (see the previous command).
You will be prompted to create an encryption passphrase and enter the seed's mnemonic.
This passphrase will be requested each time you send write transactions on the ledger using this key.
Command: `dcld keys add <key name> --recover`
Example: `dcld keys add jack --recover`
- Get a list of all stored public keys.
Command: `dcld keys list`
Example: `dcld keys list`
- Get details for a key.
Command: `dcld keys show <key name>`
Example: `dcld keys show jack`
- Export a key.
A private key from the local keystore can be exported in ASCII-armored encrypted format.
You will be prompted to enter the decryption passphrase for the key and
to create an encryption passphrase for the exported key.
The exported key can be stored to a file for import.
Command: `dcld keys export <key name>`
Example: `dcld keys export jack`
- Import a key.
A key can be imported from the ASCII-armored encrypted format
obtained by the export key command.
You will be prompted to enter the decryption passphrase for the exported key
which was used during the export process.
Command: `dcld keys import <key name> <key file>`
Example: `dcld keys import jack jack_exported_priv_key_file`
<!-- markdownlint-enable MD036 -->