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
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
// Copyright 2021 Contributors to the Parsec project.
// SPDX-License-Identifier: Apache-2.0
use crate::{
Context, Result, ReturnCode,
context::handle_manager::HandleDropAction,
handles::{AuthHandle, KeyHandle, NvIndexHandle, ObjectHandle},
interface_types::reserved_handles::{NvAuth, Provision},
structures::{
Attest, AttestBuffer, Auth, Data, MaxNvBuffer, Name, NvPublic, Signature, SignatureScheme,
},
tss2_esys::{
Esys_NV_Certify, Esys_NV_ChangeAuth, Esys_NV_DefineSpace, Esys_NV_Extend,
Esys_NV_GlobalWriteLock, Esys_NV_Increment, Esys_NV_Read, Esys_NV_ReadLock,
Esys_NV_ReadPublic, Esys_NV_SetBits, Esys_NV_UndefineSpace, Esys_NV_UndefineSpaceSpecial,
Esys_NV_Write, Esys_NV_WriteLock,
},
};
use log::error;
use std::convert::{TryFrom, TryInto};
use std::ptr::null_mut;
impl Context {
/// Allocates an index in the non volatile storage.
///
/// # Details
/// This method will instruct the TPM to reserve space for an NV index
/// with the attributes defined in the provided parameters.
///
/// Please beware
/// that this method requires an authorization session handle to be present.
///
/// # Arguments
/// * `nv_auth` - The [Provision] used for authorization.
/// * `auth` - The authorization value.
/// * `public_info` - The public parameters of the NV area.
///
/// # Returns
/// A [NvIndexHandle] associated with the NV memory that
/// was defined.
///
/// # Example
/// ```rust
/// # use tss_esapi::{
/// # Context, TctiNameConf, attributes::SessionAttributes, constants::SessionType,
/// # structures::SymmetricDefinition,
/// # };
/// use tss_esapi::{
/// handles::NvIndexTpmHandle, attributes::NvIndexAttributes, structures::NvPublic,
/// interface_types::{algorithm::HashingAlgorithm, reserved_handles::Provision},
/// };
/// # // Create context
/// # let mut context =
/// # Context::new(
/// # TctiNameConf::from_environment_variable().expect("Failed to get TCTI"),
/// # ).expect("Failed to create Context");
/// #
/// # let session = context
/// # .start_auth_session(
/// # None,
/// # None,
/// # None,
/// # SessionType::Hmac,
/// # SymmetricDefinition::AES_256_CFB,
/// # HashingAlgorithm::Sha256,
/// # )
/// # .expect("Failed to create session")
/// # .expect("Received invalid handle");
/// # let (session_attributes, session_attributes_mask) = SessionAttributes::builder()
/// # .with_decrypt(true)
/// # .with_encrypt(true)
/// # .build();
/// # context.tr_sess_set_attributes(session, session_attributes, session_attributes_mask)
/// # .expect("Failed to set attributes on session");
/// # context.set_sessions((Some(session), None, None));
/// #
/// let nv_index = NvIndexTpmHandle::new(0x01500022)
/// .expect("Failed to create NV index tpm handle");
///
/// // Create NV index attributes
/// let owner_nv_index_attributes = NvIndexAttributes::builder()
/// .with_owner_write(true)
/// .with_owner_read(true)
/// .build()
/// .expect("Failed to create owner nv index attributes");
///
/// // Create owner nv public.
/// let owner_nv_public = NvPublic::builder()
/// .with_nv_index(nv_index)
/// .with_index_name_algorithm(HashingAlgorithm::Sha256)
/// .with_index_attributes(owner_nv_index_attributes)
/// .with_data_area_size(32)
/// .build()
/// .expect("Failed to build NvPublic for owner");
///
/// // Define the NV space.
/// let owner_nv_index_handle = context
/// .nv_define_space(Provision::Owner, None, owner_nv_public)
/// .expect("Call to nv_define_space failed");
///
/// # context
/// # .nv_undefine_space(Provision::Owner, owner_nv_index_handle)
/// # .expect("Call to nv_undefine_space failed");
/// ```
pub fn nv_define_space(
&mut self,
nv_auth: Provision,
auth: Option<Auth>,
public_info: NvPublic,
) -> Result<NvIndexHandle> {
let mut nv_handle = ObjectHandle::None.into();
ReturnCode::ensure_success(
unsafe {
Esys_NV_DefineSpace(
self.mut_context(),
AuthHandle::from(nv_auth).into(),
self.required_session_1()?,
self.optional_session_2(),
self.optional_session_3(),
&auth.unwrap_or_default().into(),
&public_info.try_into()?,
&mut nv_handle,
)
},
|ret| {
error!("Error when defining NV space: {:#010X}", ret);
},
)?;
self.handle_manager
.add_handle(nv_handle.into(), HandleDropAction::Close)?;
Ok(NvIndexHandle::from(nv_handle))
}
/// Deletes an index in the non volatile storage.
///
/// # Details
/// The method will instruct the TPM to remove a
/// nv index.
///
/// Please beware that this method requires an authorization
/// session handle to be present.
///
/// # Arguments
/// * `nv_auth` - The [Provision] used for authorization.
/// * `nv_index_handle`- The [NvIndexHandle] associated with
/// the nv area that is to be removed.
///
/// # Example
/// ```rust
/// # use tss_esapi::{
/// # Context, TctiNameConf, attributes::SessionAttributes, constants::SessionType,
/// # structures::SymmetricDefinition,
/// # handles::NvIndexTpmHandle, attributes::NvIndexAttributes, structures::NvPublic,
/// # interface_types::algorithm::HashingAlgorithm,
/// # };
/// use tss_esapi::interface_types::reserved_handles::Provision;
/// # // Create context
/// # let mut context =
/// # Context::new(
/// # TctiNameConf::from_environment_variable().expect("Failed to get TCTI"),
/// # ).expect("Failed to create Context");
/// #
/// # let session = context
/// # .start_auth_session(
/// # None,
/// # None,
/// # None,
/// # SessionType::Hmac,
/// # SymmetricDefinition::AES_256_CFB,
/// # tss_esapi::interface_types::algorithm::HashingAlgorithm::Sha256,
/// # )
/// # .expect("Failed to create session")
/// # .expect("Received invalid handle");
/// # let (session_attributes, session_attributes_mask) = SessionAttributes::builder()
/// # .with_decrypt(true)
/// # .with_encrypt(true)
/// # .build();
/// # context.tr_sess_set_attributes(session, session_attributes, session_attributes_mask)
/// # .expect("Failed to set attributes on session");
/// # context.set_sessions((Some(session), None, None));
/// # let nv_index = NvIndexTpmHandle::new(0x01500023)
/// # .expect("Failed to create NV index tpm handle");
/// #
/// # // Create NV index attributes
/// # let owner_nv_index_attributes = NvIndexAttributes::builder()
/// # .with_owner_write(true)
/// # .with_owner_read(true)
/// # .build()
/// # .expect("Failed to create owner nv index attributes");
/// #
/// # // Create owner nv public.
/// # let owner_nv_public = NvPublic::builder()
/// # .with_nv_index(nv_index)
/// # .with_index_name_algorithm(HashingAlgorithm::Sha256)
/// # .with_index_attributes(owner_nv_index_attributes)
/// # .with_data_area_size(32)
/// # .build()
/// # .expect("Failed to build NvPublic for owner");
/// #
/// // Define the NV space.
/// let owner_nv_index_handle = context
/// .nv_define_space(Provision::Owner, None, owner_nv_public)
/// .expect("Call to nv_define_space failed");
///
/// context
/// .nv_undefine_space(Provision::Owner, owner_nv_index_handle)
/// .expect("Call to nv_undefine_space failed");
/// ```
pub fn nv_undefine_space(
&mut self,
nv_auth: Provision,
nv_index_handle: NvIndexHandle,
) -> Result<()> {
ReturnCode::ensure_success(
unsafe {
Esys_NV_UndefineSpace(
self.mut_context(),
AuthHandle::from(nv_auth).into(),
nv_index_handle.into(),
self.required_session_1()?,
self.optional_session_2(),
self.optional_session_3(),
)
},
|ret| {
error!("Error when undefining NV space: {:#010X}", ret);
},
)?;
self.handle_manager.set_as_closed(nv_index_handle.into())
}
/// Deletes an index in the non volatile storage.
///
/// # Details
/// The method will instruct the TPM to remove a
/// nv index that was defined with TPMA_NV_POLICY_DELETE.
///
/// Please beware that this method requires both a policy and
/// authorization session handle to be present.
///
/// # Arguments
/// * `nv_auth` - The [Provision] used for authorization.
/// * `nv_index_handle`- The [NvIndexHandle] associated with
/// the nv area that is to be removed.
///
/// # Example
/// ```rust
/// # use tss_esapi::{
/// # Context, TctiNameConf, attributes::SessionAttributes, constants::SessionType,
/// # structures::SymmetricDefinition, constants::CommandCode,
/// # handles::NvIndexTpmHandle, attributes::NvIndexAttributes, structures::NvPublic,
/// # interface_types::algorithm::HashingAlgorithm, structures::Digest,
/// # interface_types::session_handles::PolicySession,
/// # };
/// # use std::convert::TryFrom;
/// use tss_esapi::interface_types::reserved_handles::Provision;
/// use tss_esapi::interface_types::session_handles::AuthSession;
/// # // Create context
/// # let mut context =
/// # Context::new(
/// # TctiNameConf::from_environment_variable().expect("Failed to get TCTI"),
/// # ).expect("Failed to create Context");
/// #
/// # // Create a trial session to generate policy digest
/// # let session = context
/// # .start_auth_session(
/// # None,
/// # None,
/// # None,
/// # SessionType::Trial,
/// # SymmetricDefinition::AES_256_CFB,
/// # tss_esapi::interface_types::algorithm::HashingAlgorithm::Sha256,
/// # )
/// # .expect("Failed to create session")
/// # .expect("Received invalid handle");
/// # let (session_attributes, session_attributes_mask) = SessionAttributes::builder()
/// # .with_decrypt(true)
/// # .with_encrypt(true)
/// # .build();
/// # context.tr_sess_set_attributes(session, session_attributes, session_attributes_mask)
/// # .expect("Failed to set attributes on session");
/// #
/// # // Create a trial policy session that allows undefine with NvUndefineSpaceSpecial
/// # let policy_session = PolicySession::try_from(session).expect("Failed to get policy session");
/// # context.policy_command_code(policy_session, CommandCode::NvUndefineSpaceSpecial).expect("Failed to create trial policy");
/// # let digest = context.policy_get_digest(policy_session).expect("Failed to get policy digest");
/// #
/// # let nv_index = NvIndexTpmHandle::new(0x01500023)
/// # .expect("Failed to create NV index tpm handle");
/// #
/// # // Create NV index attributes
/// # let nv_index_attributes = NvIndexAttributes::builder()
/// # .with_pp_read(true)
/// # .with_platform_create(true)
/// # .with_policy_delete(true)
/// # .with_policy_write(true)
/// # .build()
/// # .expect("Failed to create nv index attributes");
/// #
/// # // Create nv public.
/// # let nv_public = NvPublic::builder()
/// # .with_nv_index(nv_index)
/// # .with_index_name_algorithm(HashingAlgorithm::Sha256)
/// # .with_index_attributes(nv_index_attributes)
/// # .with_index_auth_policy(digest)
/// # .with_data_area_size(32)
/// # .build()
/// # .expect("Failed to build NvPublic");
/// #
/// // Define the NV space.
/// let index_handle = context.execute_with_session(Some(AuthSession::Password), |context| {
/// context
/// .nv_define_space(Provision::Platform, None, nv_public)
/// .expect("Call to nv_define_space failed")
/// });
///
/// # // Setup auth policy session
/// # let session = context
/// # .start_auth_session(
/// # None,
/// # None,
/// # None,
/// # SessionType::Policy,
/// # SymmetricDefinition::AES_256_CFB,
/// # tss_esapi::interface_types::algorithm::HashingAlgorithm::Sha256,
/// # )
/// # .expect("Failed to create policy session")
/// # .expect("Received invalid handle");
/// # let (session_attributes, session_attributes_mask) = SessionAttributes::builder()
/// # .with_decrypt(true)
/// # .with_encrypt(true)
/// # .build();
/// # context.tr_sess_set_attributes(session, session_attributes, session_attributes_mask)
/// # .expect("Failed to set attributes on session");
/// #
/// # // Define a policy command code that allows undefine with NvUndefineSpaceSpecial
/// # let policy_session = PolicySession::try_from(session).expect("Failed to get policy session");
/// # context.policy_command_code(policy_session, CommandCode::NvUndefineSpaceSpecial).expect("Failed to create policy");
/// #
/// // Undefine the NV space with a policy session and default auth session
/// context.execute_with_sessions((
/// Some(session),
/// Some(AuthSession::Password),
/// None,
/// ), |context| {
/// context
/// .nv_undefine_space_special(Provision::Platform, index_handle)
/// .expect("Call to nv_undefine_space_special failed");
/// }
/// );
/// ```
pub fn nv_undefine_space_special(
&mut self,
nv_auth: Provision,
nv_index_handle: NvIndexHandle,
) -> Result<()> {
ReturnCode::ensure_success(
unsafe {
Esys_NV_UndefineSpaceSpecial(
self.mut_context(),
nv_index_handle.into(),
AuthHandle::from(nv_auth).into(),
self.required_session_1()?,
self.optional_session_2(),
self.optional_session_3(),
)
},
|ret| {
error!("Error when undefining NV space: {:#010X}", ret);
},
)?;
self.handle_manager.set_as_closed(nv_index_handle.into())
}
/// Reads the public part of an nv index.
///
/// # Details
/// This method is used to read the public
/// area and name of a nv index.
///
/// # Arguments
/// * `nv_index_handle` - The [NvIndexHandle] associated with NV memory
/// for which the public part is to be read.
/// # Returns
/// A tuple containing the public area and the name of an nv index.
///
/// # Example
/// ```rust
/// # use tss_esapi::{
/// # Context, TctiNameConf, attributes::{SessionAttributes, NvIndexAttributes},
/// # handles::NvIndexTpmHandle, interface_types::algorithm::HashingAlgorithm,
/// # structures::{SymmetricDefinition, NvPublic}, constants::SessionType,
/// # };
/// use tss_esapi::{
/// interface_types::reserved_handles::Provision,
/// };
///
/// # // Create context
/// # let mut context =
/// # Context::new(
/// # TctiNameConf::from_environment_variable().expect("Failed to get TCTI"),
/// # ).expect("Failed to create Context");
/// #
/// # let session = context
/// # .start_auth_session(
/// # None,
/// # None,
/// # None,
/// # SessionType::Hmac,
/// # SymmetricDefinition::AES_256_CFB,
/// # tss_esapi::interface_types::algorithm::HashingAlgorithm::Sha256,
/// # )
/// # .expect("Failed to create session")
/// # .expect("Received invalid handle");
/// # let (session_attributes, session_attributes_mask) = SessionAttributes::builder()
/// # .with_decrypt(true)
/// # .with_encrypt(true)
/// # .build();
/// # context.tr_sess_set_attributes(session, session_attributes, session_attributes_mask)
/// # .expect("Failed to set attributes on session");
/// # context.set_sessions((Some(session), None, None));
/// #
/// # let nv_index = NvIndexTpmHandle::new(0x01500024)
/// # .expect("Failed to create NV index tpm handle");
/// #
/// # // Create NV index attributes
/// # let owner_nv_index_attributes = NvIndexAttributes::builder()
/// # .with_owner_write(true)
/// # .with_owner_read(true)
/// # .build()
/// # .expect("Failed to create owner nv index attributes");
/// #
/// // Create owner nv public.
/// let owner_nv_public = NvPublic::builder()
/// .with_nv_index(nv_index)
/// .with_index_name_algorithm(HashingAlgorithm::Sha256)
/// .with_index_attributes(owner_nv_index_attributes)
/// .with_data_area_size(32)
/// .build()
/// .expect("Failed to build NvPublic for owner");
///
/// let nv_index_handle = context
/// .nv_define_space(Provision::Owner, None, owner_nv_public.clone())
/// .expect("Call to nv_define_space failed");
///
/// // Holds the result in order to ensure that the
/// // NV space gets undefined.
/// let nv_read_public_result = context.nv_read_public(nv_index_handle);
///
/// context
/// .nv_undefine_space(Provision::Owner, nv_index_handle)
/// .expect("Call to nv_undefine_space failed");
///
/// // Process result
/// let (read_nv_public, _name) = nv_read_public_result
/// .expect("Call to nv_read_public failed");
///
/// assert_eq!(owner_nv_public, read_nv_public);
/// ```
pub fn nv_read_public(&mut self, nv_index_handle: NvIndexHandle) -> Result<(NvPublic, Name)> {
let mut nv_public_ptr = null_mut();
let mut nv_name_ptr = null_mut();
ReturnCode::ensure_success(
unsafe {
Esys_NV_ReadPublic(
self.mut_context(),
nv_index_handle.into(),
self.optional_session_1(),
self.optional_session_2(),
self.optional_session_3(),
&mut nv_public_ptr,
&mut nv_name_ptr,
)
},
|ret| {
error!("Error when reading NV public: {:#010X}", ret);
},
)?;
Ok((
NvPublic::try_from(Context::ffi_data_to_owned(nv_public_ptr)?)?,
Name::try_from(Context::ffi_data_to_owned(nv_name_ptr)?)?,
))
}
/// Writes data to the NV memory associated with a nv index.
///
/// # Details
/// This method is used to write a value to
/// the nv memory in the TPM.
///
/// Please beware that this method requires an authorization
/// session handle to be present.
///
/// # Arguments
/// * `auth_handle` - Handle indicating the source of authorization value.
/// * `nv_index_handle` - The [NvIndexHandle] associated with NV memory
/// where data is to be written.
/// * `data` - The data, in the form of a [MaxNvBuffer], that is to be written.
/// * `offset` - The octet offset into the NV area.
///
/// # Example
/// ```rust
/// # use tss_esapi::{
/// # Context, TctiNameConf, attributes::{SessionAttributes, NvIndexAttributes},
/// # handles::NvIndexTpmHandle, interface_types::algorithm::HashingAlgorithm,
/// # structures::{SymmetricDefinition, NvPublic}, constants::SessionType,
/// # };
/// use tss_esapi::{
/// interface_types::reserved_handles::{Provision, NvAuth}, structures::MaxNvBuffer,
/// };
/// use std::convert::TryFrom;
///
/// # // Create context
/// # let mut context =
/// # Context::new(
/// # TctiNameConf::from_environment_variable().expect("Failed to get TCTI"),
/// # ).expect("Failed to create Context");
/// #
/// # let session = context
/// # .start_auth_session(
/// # None,
/// # None,
/// # None,
/// # SessionType::Hmac,
/// # SymmetricDefinition::AES_256_CFB,
/// # tss_esapi::interface_types::algorithm::HashingAlgorithm::Sha256,
/// # )
/// # .expect("Failed to create session")
/// # .expect("Received invalid handle");
/// # let (session_attributes, session_attributes_mask) = SessionAttributes::builder()
/// # .with_decrypt(true)
/// # .with_encrypt(true)
/// # .build();
/// # context.tr_sess_set_attributes(session, session_attributes, session_attributes_mask)
/// # .expect("Failed to set attributes on session");
/// # context.set_sessions((Some(session), None, None));
/// #
/// # let nv_index = NvIndexTpmHandle::new(0x01500025)
/// # .expect("Failed to create NV index tpm handle");
/// #
/// # // Create NV index attributes
/// # let owner_nv_index_attributes = NvIndexAttributes::builder()
/// # .with_owner_write(true)
/// # .with_owner_read(true)
/// # .build()
/// # .expect("Failed to create owner nv index attributes");
/// #
/// # // Create owner nv public.
/// # let owner_nv_public = NvPublic::builder()
/// # .with_nv_index(nv_index)
/// # .with_index_name_algorithm(HashingAlgorithm::Sha256)
/// # .with_index_attributes(owner_nv_index_attributes)
/// # .with_data_area_size(32)
/// # .build()
/// # .expect("Failed to build NvPublic for owner");
///
/// let data = MaxNvBuffer::try_from(vec![1, 2, 3, 4, 5, 6, 7])
/// .expect("Failed to create MaxNvBuffer from vec");
///
/// let nv_index_handle = context
/// .nv_define_space(Provision::Owner, None, owner_nv_public.clone())
/// .expect("Call to nv_define_space failed");
///
/// // Use owner authorization
/// let nv_write_result = context.nv_write(NvAuth::Owner, nv_index_handle, data, 0);
///
/// context
/// .nv_undefine_space(Provision::Owner, nv_index_handle)
/// .expect("Call to nv_undefine_space failed");
///
/// // Process result
/// nv_write_result.expect("Call to nv_write failed");
/// ```
pub fn nv_write(
&mut self,
auth_handle: NvAuth,
nv_index_handle: NvIndexHandle,
data: MaxNvBuffer,
offset: u16,
) -> Result<()> {
ReturnCode::ensure_success(
unsafe {
Esys_NV_Write(
self.mut_context(),
AuthHandle::from(auth_handle).into(),
nv_index_handle.into(),
self.required_session_1()?,
self.optional_session_2(),
self.optional_session_3(),
&data.into(),
offset,
)
},
|ret| {
error!("Error when writing NV: {:#010X}", ret);
},
)
}
/// Increment monotonic counter index
///
/// # Details
/// This method is used to increment monotonic counter
/// in the TPM.
///
/// Please beware that this method requires an authorization
/// session handle to be present.
///
/// # Arguments
/// * `auth_handle` - Handle indicating the source of authorization value.
/// * `nv_index_handle` - The [NvIndexHandle] associated with NV memory
/// where data is to be written.
/// ```rust
/// # use tss_esapi::{
/// # Context, TctiNameConf, attributes::{SessionAttributes, NvIndexAttributes},
/// # handles::NvIndexTpmHandle, interface_types::algorithm::HashingAlgorithm,
/// # structures::{SymmetricDefinition, NvPublic}, constants::SessionType,
/// # constants::nv_index_type::NvIndexType,
/// # };
/// use tss_esapi::{
/// interface_types::reserved_handles::{Provision, NvAuth}
/// };
///
/// # // Create context
/// # let mut context =
/// # Context::new(
/// # TctiNameConf::from_environment_variable().expect("Failed to get TCTI"),
/// # ).expect("Failed to create Context");
/// #
/// # let session = context
/// # .start_auth_session(
/// # None,
/// # None,
/// # None,
/// # SessionType::Hmac,
/// # SymmetricDefinition::AES_256_CFB,
/// # tss_esapi::interface_types::algorithm::HashingAlgorithm::Sha256,
/// # )
/// # .expect("Failed to create session")
/// # .expect("Received invalid handle");
/// # let (session_attributes, session_attributes_mask) = SessionAttributes::builder()
/// # .with_decrypt(true)
/// # .with_encrypt(true)
/// # .build();
/// # context.tr_sess_set_attributes(session, session_attributes, session_attributes_mask)
/// # .expect("Failed to set attributes on session");
/// # context.set_sessions((Some(session), None, None));
/// #
/// # let nv_index = NvIndexTpmHandle::new(0x01500026)
/// # .expect("Failed to create NV index tpm handle");
/// #
/// # // Create NV index attributes
/// # let owner_nv_index_attributes = NvIndexAttributes::builder()
/// # .with_owner_write(true)
/// # .with_owner_read(true)
/// # .with_nv_index_type(NvIndexType::Counter)
/// # .build()
/// # .expect("Failed to create owner nv index attributes");
/// #
/// # // Create owner nv public.
/// # let owner_nv_public = NvPublic::builder()
/// # .with_nv_index(nv_index)
/// # .with_index_name_algorithm(HashingAlgorithm::Sha256)
/// # .with_index_attributes(owner_nv_index_attributes)
/// # .with_data_area_size(8)
/// # .build()
/// # .expect("Failed to build NvPublic for owner");
/// #
/// let nv_index_handle = context
/// .nv_define_space(Provision::Owner, None, owner_nv_public.clone())
/// .expect("Call to nv_define_space failed");
///
/// let nv_increment_result = context.nv_increment(NvAuth::Owner, nv_index_handle);
///
/// context
/// .nv_undefine_space(Provision::Owner, nv_index_handle)
/// .expect("Call to nv_undefine_space failed");
///
/// // Process result
/// nv_increment_result.expect("Call to nv_increment failed");
/// ```
pub fn nv_increment(
&mut self,
auth_handle: NvAuth,
nv_index_handle: NvIndexHandle,
) -> Result<()> {
ReturnCode::ensure_success(
unsafe {
Esys_NV_Increment(
self.mut_context(),
AuthHandle::from(auth_handle).into(),
nv_index_handle.into(),
self.required_session_1()?,
self.optional_session_2(),
self.optional_session_3(),
)
},
|ret| error!("Error when incrementing NV: {:#010X}", ret),
)
}
/// Extends data to the NV memory associated with a nv index.
///
/// # Details
/// This method is used to extend a value to the nv memory in the TPM.
///
/// Please beware that this method requires an authorization session handle to be present.
///
/// Any NV index (that is not already used) can be defined as an extend type. However various specifications define
/// indexes that have specific purposes or are reserved, for example the TCG PC Client Platform Firmware Profile
/// Specification Section 3.3.6 defines indexes within the 0x01c40200-0x01c402ff range for instance measurements.
/// Section 2.2 of TCG Registry of Reserved TPM 2.0 Handles and Localities provides additional context for specific
/// NV index ranges.
///
/// # Arguments
/// * `auth_handle` - Handle indicating the source of authorization value.
/// * `nv_index_handle` - The [NvIndexHandle] associated with NV memory
/// which will be extended by data hashed with the previous data.
/// * `data` - The data, in the form of a [MaxNvBuffer], that is to be written.
///
/// # Example
/// ```rust
/// # use tss_esapi::{
/// # Context, TctiNameConf, attributes::{SessionAttributes, NvIndexAttributes},
/// # handles::NvIndexTpmHandle, interface_types::algorithm::HashingAlgorithm,
/// # structures::{SymmetricDefinition, NvPublic},
/// # constants::SessionType, constants::nv_index_type::NvIndexType,
/// # };
/// use tss_esapi::{
/// interface_types::reserved_handles::{Provision, NvAuth}, structures::MaxNvBuffer,
/// };
///
/// # // Create context
/// # let mut context =
/// # Context::new(
/// # TctiNameConf::from_environment_variable().expect("Failed to get TCTI"),
/// # ).expect("Failed to create Context");
/// #
/// # let session = context
/// # .start_auth_session(
/// # None,
/// # None,
/// # None,
/// # SessionType::Hmac,
/// # SymmetricDefinition::AES_256_CFB,
/// # tss_esapi::interface_types::algorithm::HashingAlgorithm::Sha256,
/// # )
/// # .expect("Failed to create session")
/// # .expect("Received invalid handle");
/// # let (session_attributes, session_attributes_mask) = SessionAttributes::builder()
/// # .with_decrypt(true)
/// # .with_encrypt(true)
/// # .build();
/// # context.tr_sess_set_attributes(session, session_attributes, session_attributes_mask)
/// # .expect("Failed to set attributes on session");
/// # context.set_sessions((Some(session), None, None));
/// #
/// # let nv_index = NvIndexTpmHandle::new(0x01500028)
/// # .expect("Failed to create NV index tpm handle");
/// #
/// // Create NV index attributes
/// let owner_nv_index_attributes = NvIndexAttributes::builder()
/// .with_owner_write(true)
/// .with_owner_read(true)
/// .with_orderly(true)
/// .with_nv_index_type(NvIndexType::Extend)
/// .build()
/// .expect("Failed to create owner nv index attributes");
///
/// // Create owner nv public.
/// let owner_nv_public = NvPublic::builder()
/// .with_nv_index(nv_index)
/// .with_index_name_algorithm(HashingAlgorithm::Sha256)
/// .with_index_attributes(owner_nv_index_attributes)
/// .with_data_area_size(32)
/// .build()
/// .expect("Failed to build NvPublic for owner");
///
/// let nv_index_handle = context
/// .nv_define_space(Provision::Owner, None, owner_nv_public.clone())
/// .expect("Call to nv_define_space failed");
///
/// let data = MaxNvBuffer::try_from(vec![0x0]).unwrap();
/// let result = context.nv_extend(NvAuth::Owner, nv_index_handle, data);
///
/// # context
/// # .nv_undefine_space(Provision::Owner, nv_index_handle)
/// # .expect("Call to nv_undefine_space failed");
/// ```
pub fn nv_extend(
&mut self,
auth_handle: NvAuth,
nv_index_handle: NvIndexHandle,
data: MaxNvBuffer,
) -> Result<()> {
ReturnCode::ensure_success(
unsafe {
Esys_NV_Extend(
self.mut_context(),
AuthHandle::from(auth_handle).into(),
nv_index_handle.into(),
self.required_session_1()?,
self.optional_session_2(),
self.optional_session_3(),
&data.into(),
)
},
|ret| error!("Error when extending NV: {:#010X}", ret),
)
}
/// Set bits in an NV index.
///
/// # Arguments
///
/// * `auth_handle` - The handle indicating the source of authorization value.
/// * `nv_index_handle` - The [NvIndexHandle] of the NV index.
/// * `bits` - The data to OR with the current contents.
///
/// # Details
///
/// *From the specification*
/// > This command is used to SET bits in an NV Index that was
/// > created as a bit field. Any number of bits from 0 to 64 may
/// > be SET. The contents of bits are ORed with the current contents
/// > of the NV Index.
///
/// # Example
/// ```rust
/// # use tss_esapi::{
/// # Context, TctiNameConf, attributes::{SessionAttributes, NvIndexAttributes},
/// # handles::NvIndexTpmHandle, interface_types::algorithm::HashingAlgorithm,
/// # structures::{SymmetricDefinition, NvPublic}, constants::SessionType,
/// # constants::nv_index_type::NvIndexType,
/// # };
/// use tss_esapi::interface_types::reserved_handles::{Provision, NvAuth};
///
/// # // Create context
/// # let mut context =
/// # Context::new(
/// # TctiNameConf::from_environment_variable().expect("Failed to get TCTI"),
/// # ).expect("Failed to create Context");
/// #
/// # let session = context
/// # .start_auth_session(
/// # None,
/// # None,
/// # None,
/// # SessionType::Hmac,
/// # SymmetricDefinition::AES_256_CFB,
/// # HashingAlgorithm::Sha256,
/// # )
/// # .expect("Failed to create session")
/// # .expect("Received invalid handle");
/// # let (session_attributes, session_attributes_mask) = SessionAttributes::builder()
/// # .with_decrypt(true)
/// # .with_encrypt(true)
/// # .build();
/// # context.tr_sess_set_attributes(session, session_attributes, session_attributes_mask)
/// # .expect("Failed to set attributes on session");
/// # context.set_sessions((Some(session), None, None));
/// #
/// # let nv_index = NvIndexTpmHandle::new(0x01500030)
/// # .expect("Failed to create NV index tpm handle");
/// #
/// # // Create NV index attributes for a bit field.
/// # let owner_nv_index_attributes = NvIndexAttributes::builder()
/// # .with_owner_write(true)
/// # .with_owner_read(true)
/// # .with_nv_index_type(NvIndexType::Bits)
/// # .build()
/// # .expect("Failed to create owner nv index attributes");
/// #
/// # // Create owner nv public.
/// # let owner_nv_public = NvPublic::builder()
/// # .with_nv_index(nv_index)
/// # .with_index_name_algorithm(HashingAlgorithm::Sha256)
/// # .with_index_attributes(owner_nv_index_attributes)
/// # .with_data_area_size(8)
/// # .build()
/// # .expect("Failed to build NvPublic for owner");
/// #
/// let nv_index_handle = context
/// .nv_define_space(Provision::Owner, None, owner_nv_public)
/// .expect("Call to nv_define_space failed");
///
/// let nv_set_bits_result = context.nv_set_bits(NvAuth::Owner, nv_index_handle, 0x01);
///
/// context
/// .nv_undefine_space(Provision::Owner, nv_index_handle)
/// .expect("Call to nv_undefine_space failed");
///
/// // Process result
/// nv_set_bits_result.expect("Call to nv_set_bits failed");
/// ```
pub fn nv_set_bits(
&mut self,
auth_handle: NvAuth,
nv_index_handle: NvIndexHandle,
bits: u64,
) -> Result<()> {
ReturnCode::ensure_success(
unsafe {
Esys_NV_SetBits(
self.mut_context(),
AuthHandle::from(auth_handle).into(),
nv_index_handle.into(),
self.required_session_1()?,
self.optional_session_2(),
self.optional_session_3(),
bits,
)
},
|ret| {
error!("Error when setting NV bits: {:#010X}", ret);
},
)
}
/// Write-lock an NV index.
///
/// # Arguments
///
/// * `auth_handle` - The handle indicating the source of authorization value.
/// * `nv_index_handle` - The [NvIndexHandle] of the NV index.
///
/// # Details
///
/// *From the specification*
/// > If the TPMA_NV_WRITEDEFINE or TPMA_NV_WRITE_STCLEAR attribute of
/// > the NV Index is SET, then this command may be used to inhibit
/// > further writes of the NV Index.
///
/// # Example
/// ```rust
/// # use tss_esapi::{
/// # Context, TctiNameConf, attributes::{SessionAttributes, NvIndexAttributes},
/// # handles::NvIndexTpmHandle, interface_types::algorithm::HashingAlgorithm,
/// # structures::{SymmetricDefinition, NvPublic}, constants::SessionType,
/// # };
/// use tss_esapi::interface_types::reserved_handles::{Provision, NvAuth};
///
/// # // Create context
/// # let mut context =
/// # Context::new(
/// # TctiNameConf::from_environment_variable().expect("Failed to get TCTI"),
/// # ).expect("Failed to create Context");
/// #
/// # let session = context
/// # .start_auth_session(
/// # None,
/// # None,
/// # None,
/// # SessionType::Hmac,
/// # SymmetricDefinition::AES_256_CFB,
/// # HashingAlgorithm::Sha256,
/// # )
/// # .expect("Failed to create session")
/// # .expect("Received invalid handle");
/// # let (session_attributes, session_attributes_mask) = SessionAttributes::builder()
/// # .with_decrypt(true)
/// # .with_encrypt(true)
/// # .build();
/// # context.tr_sess_set_attributes(session, session_attributes, session_attributes_mask)
/// # .expect("Failed to set attributes on session");
/// # context.set_sessions((Some(session), None, None));
/// #
/// # let nv_index = NvIndexTpmHandle::new(0x01500031)
/// # .expect("Failed to create NV index tpm handle");
/// #
/// # // Create NV index attributes that allow the write lock to be set.
/// # let owner_nv_index_attributes = NvIndexAttributes::builder()
/// # .with_owner_write(true)
/// # .with_owner_read(true)
/// # .with_write_stclear(true)
/// # .build()
/// # .expect("Failed to create owner nv index attributes");
/// #
/// # // Create owner nv public.
/// # let owner_nv_public = NvPublic::builder()
/// # .with_nv_index(nv_index)
/// # .with_index_name_algorithm(HashingAlgorithm::Sha256)
/// # .with_index_attributes(owner_nv_index_attributes)
/// # .with_data_area_size(32)
/// # .build()
/// # .expect("Failed to build NvPublic for owner");
/// #
/// let nv_index_handle = context
/// .nv_define_space(Provision::Owner, None, owner_nv_public)
/// .expect("Call to nv_define_space failed");
///
/// let nv_write_lock_result = context.nv_write_lock(NvAuth::Owner, nv_index_handle);
///
/// context
/// .nv_undefine_space(Provision::Owner, nv_index_handle)
/// .expect("Call to nv_undefine_space failed");
///
/// // Process result
/// nv_write_lock_result.expect("Call to nv_write_lock failed");
/// ```
pub fn nv_write_lock(
&mut self,
auth_handle: NvAuth,
nv_index_handle: NvIndexHandle,
) -> Result<()> {
ReturnCode::ensure_success(
unsafe {
Esys_NV_WriteLock(
self.mut_context(),
AuthHandle::from(auth_handle).into(),
nv_index_handle.into(),
self.required_session_1()?,
self.optional_session_2(),
self.optional_session_3(),
)
},
|ret| {
error!("Error when write-locking NV index: {:#010X}", ret);
},
)
}
/// Apply a global lock on NV write.
///
/// # Arguments
///
/// * `auth_handle` - An [AuthHandle] used for authorization. This command
/// requires either [AuthHandle::Owner] (ownerAuth/ownerPolicy) or
/// [AuthHandle::Platform] (platformAuth/platformPolicy).
///
/// # Details
///
/// *From the specification*
/// > This command will SET TPMA_NV_WRITELOCKED for all indexes that have
/// > their TPMA_NV_GLOBALLOCK attribute SET.
///
/// # Example
/// ```rust
/// # use tss_esapi::{
/// # Context, TctiNameConf, attributes::SessionAttributes,
/// # interface_types::algorithm::HashingAlgorithm,
/// # structures::SymmetricDefinition, constants::SessionType,
/// # };
/// use tss_esapi::handles::AuthHandle;
///
/// # // Create context
/// # let mut context =
/// # Context::new(
/// # TctiNameConf::from_environment_variable().expect("Failed to get TCTI"),
/// # ).expect("Failed to create Context");
/// #
/// # let session = context
/// # .start_auth_session(
/// # None,
/// # None,
/// # None,
/// # SessionType::Hmac,
/// # SymmetricDefinition::AES_256_CFB,
/// # HashingAlgorithm::Sha256,
/// # )
/// # .expect("Failed to create session")
/// # .expect("Received invalid handle");
/// # let (session_attributes, session_attributes_mask) = SessionAttributes::builder()
/// # .with_decrypt(true)
/// # .with_encrypt(true)
/// # .build();
/// # context.tr_sess_set_attributes(session, session_attributes, session_attributes_mask)
/// # .expect("Failed to set attributes on session");
/// # context.set_sessions((Some(session), None, None));
/// #
/// context.nv_global_write_lock(AuthHandle::Owner)
/// .expect("Call to nv_global_write_lock failed");
/// ```
pub fn nv_global_write_lock(&mut self, auth_handle: AuthHandle) -> Result<()> {
ReturnCode::ensure_success(
unsafe {
Esys_NV_GlobalWriteLock(
self.mut_context(),
auth_handle.into(),
self.required_session_1()?,
self.optional_session_2(),
self.optional_session_3(),
)
},
|ret| {
error!("Error when globally write-locking NV: {:#010X}", ret);
},
)
}
/// Reads data from the nv index.
///
/// # Details
/// This method is used to read a value from an area in
/// NV memory of the TPM.
///
/// Please beware that this method requires an authorization
/// session handle to be present.
///
/// # Arguments
/// * `auth_handle` - Handle indicating the source of authorization value.
/// * `nv_index_handle` - The [NvIndexHandle] associated with NV memory
/// where data is to be written.
/// * `size` - The number of octets to read.
/// * `offset`- Octet offset into the NV area.
///
/// # Example
/// ```rust
/// # use tss_esapi::{
/// # Context, TctiNameConf, attributes::{SessionAttributes, NvIndexAttributes},
/// # handles::NvIndexTpmHandle, interface_types::algorithm::HashingAlgorithm,
/// # structures::{SymmetricDefinition, NvPublic}, constants::SessionType,
/// # };
/// use tss_esapi::{
/// interface_types::reserved_handles::{Provision, NvAuth}, structures::MaxNvBuffer,
/// };
/// use std::convert::TryFrom;
///
/// # // Create context
/// # let mut context =
/// # Context::new(
/// # TctiNameConf::from_environment_variable().expect("Failed to get TCTI"),
/// # ).expect("Failed to create Context");
/// #
/// # let session = context
/// # .start_auth_session(
/// # None,
/// # None,
/// # None,
/// # SessionType::Hmac,
/// # SymmetricDefinition::AES_256_CFB,
/// # tss_esapi::interface_types::algorithm::HashingAlgorithm::Sha256,
/// # )
/// # .expect("Failed to create session")
/// # .expect("Received invalid handle");
/// # let (session_attributes, session_attributes_mask) = SessionAttributes::builder()
/// # .with_decrypt(true)
/// # .with_encrypt(true)
/// # .build();
/// # context.tr_sess_set_attributes(session, session_attributes, session_attributes_mask)
/// # .expect("Failed to set attributes on session");
/// # context.set_sessions((Some(session), None, None));
/// #
/// # let nv_index = NvIndexTpmHandle::new(0x01500027)
/// # .expect("Failed to create NV index tpm handle");
/// #
/// # // Create NV index attributes
/// # let owner_nv_index_attributes = NvIndexAttributes::builder()
/// # .with_owner_write(true)
/// # .with_owner_read(true)
/// # .build()
/// # .expect("Failed to create owner nv index attributes");
/// #
/// # // Create owner nv public.
/// # let owner_nv_public = NvPublic::builder()
/// # .with_nv_index(nv_index)
/// # .with_index_name_algorithm(HashingAlgorithm::Sha256)
/// # .with_index_attributes(owner_nv_index_attributes)
/// # .with_data_area_size(32)
/// # .build()
/// # .expect("Failed to build NvPublic for owner");
/// #
/// let data = MaxNvBuffer::try_from(vec![1, 2, 3, 4, 5, 6, 7])
/// .expect("Failed to create MaxNvBuffer from vec");
///
/// let nv_index_handle = context
/// .nv_define_space(Provision::Owner, None, owner_nv_public)
/// .expect("Call to nv_define_space failed");
///
/// // Write data using owner authorization
/// let nv_write_result = context.nv_write(NvAuth::Owner, nv_index_handle, data.clone(), 0);
///
/// // Read data using owner authorization
/// let data_len = u16::try_from(data.len()).expect("Failed to retrieve length of data");
/// let nv_read_result = context
/// .nv_read(NvAuth::Owner, nv_index_handle, data_len, 0);
///
/// context
/// .nv_undefine_space(Provision::Owner, nv_index_handle)
/// .expect("Call to nv_undefine_space failed");
///
/// // Process result
/// nv_write_result.expect("Call to nv_write failed");
/// let read_data = nv_read_result.expect("Call to nv_read failed");
/// assert_eq!(data, read_data);
/// ```
pub fn nv_read(
&mut self,
auth_handle: NvAuth,
nv_index_handle: NvIndexHandle,
size: u16,
offset: u16,
) -> Result<MaxNvBuffer> {
let mut data_ptr = null_mut();
ReturnCode::ensure_success(
unsafe {
Esys_NV_Read(
self.mut_context(),
AuthHandle::from(auth_handle).into(),
nv_index_handle.into(),
self.required_session_1()?,
self.optional_session_2(),
self.optional_session_3(),
size,
offset,
&mut data_ptr,
)
},
|ret| {
error!("Error when reading NV: {:#010X}", ret);
},
)?;
MaxNvBuffer::try_from(Context::ffi_data_to_owned(data_ptr)?)
}
/// Read-lock an NV index.
///
/// # Arguments
///
/// * `auth_handle` - The handle indicating the source of authorization value.
/// * `nv_index_handle` - The [NvIndexHandle] of the NV index.
///
/// # Details
///
/// *From the specification*
/// > If TPMA_NV_READ_STCLEAR is SET in an Index, then this command
/// > may be used to prevent further reads of the NV Index until
/// > the next TPM2_Startup (TPM_SU_CLEAR).
///
/// # Example
/// ```rust
/// # use tss_esapi::{
/// # Context, TctiNameConf, attributes::{SessionAttributes, NvIndexAttributes},
/// # handles::NvIndexTpmHandle, interface_types::algorithm::HashingAlgorithm,
/// # structures::{SymmetricDefinition, NvPublic}, constants::SessionType,
/// # };
/// use tss_esapi::interface_types::reserved_handles::{Provision, NvAuth};
///
/// # // Create context
/// # let mut context =
/// # Context::new(
/// # TctiNameConf::from_environment_variable().expect("Failed to get TCTI"),
/// # ).expect("Failed to create Context");
/// #
/// # let session = context
/// # .start_auth_session(
/// # None,
/// # None,
/// # None,
/// # SessionType::Hmac,
/// # SymmetricDefinition::AES_256_CFB,
/// # HashingAlgorithm::Sha256,
/// # )
/// # .expect("Failed to create session")
/// # .expect("Received invalid handle");
/// # let (session_attributes, session_attributes_mask) = SessionAttributes::builder()
/// # .with_decrypt(true)
/// # .with_encrypt(true)
/// # .build();
/// # context.tr_sess_set_attributes(session, session_attributes, session_attributes_mask)
/// # .expect("Failed to set attributes on session");
/// # context.set_sessions((Some(session), None, None));
/// #
/// # let nv_index = NvIndexTpmHandle::new(0x01500032)
/// # .expect("Failed to create NV index tpm handle");
/// #
/// # // Create NV index attributes that allow the read lock to be set.
/// # let owner_nv_index_attributes = NvIndexAttributes::builder()
/// # .with_owner_write(true)
/// # .with_owner_read(true)
/// # .with_read_stclear(true)
/// # .build()
/// # .expect("Failed to create owner nv index attributes");
/// #
/// # // Create owner nv public.
/// # let owner_nv_public = NvPublic::builder()
/// # .with_nv_index(nv_index)
/// # .with_index_name_algorithm(HashingAlgorithm::Sha256)
/// # .with_index_attributes(owner_nv_index_attributes)
/// # .with_data_area_size(32)
/// # .build()
/// # .expect("Failed to build NvPublic for owner");
/// #
/// let nv_index_handle = context
/// .nv_define_space(Provision::Owner, None, owner_nv_public)
/// .expect("Call to nv_define_space failed");
///
/// let nv_read_lock_result = context.nv_read_lock(NvAuth::Owner, nv_index_handle);
///
/// context
/// .nv_undefine_space(Provision::Owner, nv_index_handle)
/// .expect("Call to nv_undefine_space failed");
///
/// // Process result
/// nv_read_lock_result.expect("Call to nv_read_lock failed");
/// ```
pub fn nv_read_lock(
&mut self,
auth_handle: NvAuth,
nv_index_handle: NvIndexHandle,
) -> Result<()> {
ReturnCode::ensure_success(
unsafe {
Esys_NV_ReadLock(
self.mut_context(),
AuthHandle::from(auth_handle).into(),
nv_index_handle.into(),
self.required_session_1()?,
self.optional_session_2(),
self.optional_session_3(),
)
},
|ret| {
error!("Error when read-locking NV index: {:#010X}", ret);
},
)
}
/// Change the authorization value for an NV index.
///
/// # Arguments
///
/// * `nv_index_handle` - The [NvIndexHandle] of the NV index.
/// * `new_auth` - The new authorization [Auth] value.
///
/// # Details
///
/// *From the specification*
/// > This command allows the authorization secret for an NV Index
/// > to be changed.
///
/// # Details
///
/// NV_ChangeAuth uses the ADMIN role of the NV index. This is satisfied by a
/// policy session whose policy includes
/// [`CommandCode::NvChangeAuth`](crate::constants::CommandCode::NvChangeAuth),
/// so the index must be defined with a matching `authPolicy`.
///
/// # Example
/// ```rust
/// # use tss_esapi::{
/// # Context, TctiNameConf, attributes::{SessionAttributes, NvIndexAttributes},
/// # handles::NvIndexTpmHandle, interface_types::algorithm::HashingAlgorithm,
/// # structures::{SymmetricDefinition, NvPublic, Auth}, constants::SessionType,
/// # interface_types::session_handles::PolicySession,
/// # };
/// # use std::convert::TryFrom;
/// use tss_esapi::{
/// constants::CommandCode,
/// interface_types::{reserved_handles::Provision, session_handles::AuthSession},
/// };
///
/// # // Create context
/// # let mut context =
/// # Context::new(
/// # TctiNameConf::from_environment_variable().expect("Failed to get TCTI"),
/// # ).expect("Failed to create Context");
/// #
/// # // Trial session to compute the policy digest for NV_ChangeAuth.
/// # let trial_session = context
/// # .start_auth_session(
/// # None,
/// # None,
/// # None,
/// # SessionType::Trial,
/// # SymmetricDefinition::AES_256_CFB,
/// # HashingAlgorithm::Sha256,
/// # )
/// # .expect("Failed to create session")
/// # .expect("Received invalid handle");
/// # let (session_attributes, session_attributes_mask) = SessionAttributes::builder()
/// # .with_decrypt(true)
/// # .with_encrypt(true)
/// # .build();
/// # context.tr_sess_set_attributes(trial_session, session_attributes, session_attributes_mask)
/// # .expect("Failed to set attributes on session");
/// # let trial_policy_session = PolicySession::try_from(trial_session)
/// # .expect("Failed to get policy session");
/// # context.policy_command_code(trial_policy_session, CommandCode::NvChangeAuth)
/// # .expect("Failed to create trial policy");
/// # let digest = context.policy_get_digest(trial_policy_session)
/// # .expect("Failed to get policy digest");
/// #
/// # let nv_index = NvIndexTpmHandle::new(0x01500033)
/// # .expect("Failed to create NV index tpm handle");
/// #
/// # // Define the index with the NV_ChangeAuth policy as its authPolicy.
/// # let nv_index_attributes = NvIndexAttributes::builder()
/// # .with_owner_write(true)
/// # .with_owner_read(true)
/// # .with_policy_write(true)
/// # .with_policy_read(true)
/// # .build()
/// # .expect("Failed to create nv index attributes");
/// #
/// let nv_public = NvPublic::builder()
/// .with_nv_index(nv_index)
/// .with_index_name_algorithm(HashingAlgorithm::Sha256)
/// .with_index_attributes(nv_index_attributes)
/// .with_index_auth_policy(digest)
/// .with_data_area_size(32)
/// .build()
/// .expect("Failed to build NvPublic");
///
/// let nv_index_handle = context
/// .execute_with_session(Some(AuthSession::Password), |context| {
/// context.nv_define_space(Provision::Owner, None, nv_public)
/// })
/// .expect("Call to nv_define_space failed");
///
/// // Start a policy session satisfying the index's NV_ChangeAuth policy.
/// let policy_session = context
/// .start_auth_session(
/// None,
/// None,
/// None,
/// SessionType::Policy,
/// SymmetricDefinition::AES_256_CFB,
/// HashingAlgorithm::Sha256,
/// )
/// .expect("Failed to create policy session")
/// .expect("Received invalid handle");
/// # context.tr_sess_set_attributes(policy_session, session_attributes, session_attributes_mask)
/// # .expect("Failed to set attributes on session");
/// context
/// .policy_command_code(
/// PolicySession::try_from(policy_session).expect("Failed to get policy session"),
/// CommandCode::NvChangeAuth,
/// )
/// .expect("Failed to create policy");
///
/// let new_auth = Auth::from_bytes(&[1, 2, 3, 4]).expect("Failed to create new auth");
/// let nv_change_auth_result = context.execute_with_session(Some(policy_session), |context| {
/// context.nv_change_auth(nv_index_handle, new_auth)
/// });
///
/// context
/// .execute_with_session(Some(AuthSession::Password), |context| {
/// context.nv_undefine_space(Provision::Owner, nv_index_handle)
/// })
/// .expect("Call to nv_undefine_space failed");
///
/// // Process result
/// nv_change_auth_result.expect("Call to nv_change_auth failed");
/// ```
pub fn nv_change_auth(&mut self, nv_index_handle: NvIndexHandle, new_auth: Auth) -> Result<()> {
ReturnCode::ensure_success(
unsafe {
Esys_NV_ChangeAuth(
self.mut_context(),
nv_index_handle.into(),
self.required_session_1()?,
self.optional_session_2(),
self.optional_session_3(),
&new_auth.into(),
)
},
|ret| {
error!("Error when changing NV auth: {:#010X}", ret);
},
)
}
/// Certify the contents of an NV index.
///
/// # Arguments
///
/// * `sign_handle` - A [KeyHandle] of the key used to sign the attestation structure.
/// * `auth_handle` - The handle indicating the source of authorization value for the NV index.
/// * `nv_index_handle` - The [NvIndexHandle] of the NV index to be certified.
/// * `qualifying_data` - [Data] to qualify the signing.
/// * `signing_scheme` - The [SignatureScheme] to use for signing.
/// * `size` - Number of octets to certify.
/// * `offset` - Octet offset into the NV area.
///
/// # Details
///
/// *From the specification*
/// > The purpose of this command is to certify the contents of an
/// > NV Index or portion of an NV Index.
///
/// # Returns
///
/// A tuple of `(Attest, Signature)`.
///
/// # Example
/// ```rust
/// # use std::convert::TryFrom;
/// # use tss_esapi::{
/// # Context, TctiNameConf, attributes::NvIndexAttributes,
/// # handles::NvIndexTpmHandle, constants::SessionType,
/// # structures::{NvPublic, MaxNvBuffer, RsaExponent, RsaScheme},
/// # utils::create_unrestricted_signing_rsa_public,
/// # };
/// use tss_esapi::{
/// interface_types::{
/// algorithm::{HashingAlgorithm, RsaSchemeAlgorithm},
/// key_bits::RsaKeyBits,
/// reserved_handles::{Hierarchy, NvAuth, Provision},
/// session_handles::AuthSession,
/// },
/// structures::{Data, SignatureScheme},
/// };
///
/// # // Create context
/// # let mut context =
/// # Context::new(
/// # TctiNameConf::from_environment_variable().expect("Failed to get TCTI"),
/// # ).expect("Failed to create Context");
/// #
/// // Create a signing key.
/// let signing_key_pub = create_unrestricted_signing_rsa_public(
/// RsaScheme::create(RsaSchemeAlgorithm::RsaSsa, Some(HashingAlgorithm::Sha256))
/// .expect("Failed to create RSA scheme"),
/// RsaKeyBits::Rsa2048,
/// RsaExponent::default(),
/// )
/// .expect("Failed to create signing rsa public structure");
/// let sign_key_handle = context
/// .execute_with_nullauth_session(|ctx| {
/// ctx.create_primary(Hierarchy::Owner, signing_key_pub, None, None, None, None)
/// })
/// .expect("Call to create_primary failed")
/// .key_handle;
///
/// # let nv_index = NvIndexTpmHandle::new(0x01500050)
/// # .expect("Failed to create NV index tpm handle");
/// #
/// # let owner_nv_index_attributes = NvIndexAttributes::builder()
/// # .with_owner_write(true)
/// # .with_owner_read(true)
/// # .build()
/// # .expect("Failed to create owner nv index attributes");
/// #
/// # let owner_nv_public = NvPublic::builder()
/// # .with_nv_index(nv_index)
/// # .with_index_name_algorithm(HashingAlgorithm::Sha256)
/// # .with_index_attributes(owner_nv_index_attributes)
/// # .with_data_area_size(32)
/// # .build()
/// # .expect("Failed to build NvPublic for owner");
/// #
/// // Define an NV index and write some data to it.
/// let nv_index_handle = context
/// .execute_with_session(Some(AuthSession::Password), |ctx| {
/// ctx.nv_define_space(Provision::Owner, None, owner_nv_public)
/// })
/// .expect("Call to nv_define_space failed");
///
/// let data = MaxNvBuffer::try_from(vec![1, 2, 3, 4, 5, 6, 7, 8])
/// .expect("Failed to create MaxNvBuffer from vec");
/// context
/// .execute_with_session(Some(AuthSession::Password), |ctx| {
/// ctx.nv_write(NvAuth::Owner, nv_index_handle, data, 0)
/// })
/// .expect("Call to nv_write failed");
///
/// // Certify the NV index contents.
/// let nv_certify_result = context.execute_with_sessions(
/// (
/// Some(AuthSession::Password),
/// Some(AuthSession::Password),
/// None,
/// ),
/// |ctx| {
/// ctx.nv_certify(
/// sign_key_handle,
/// NvAuth::Owner,
/// nv_index_handle,
/// Data::try_from(vec![0xff; 16]).unwrap(),
/// SignatureScheme::Null,
/// 8,
/// 0,
/// )
/// },
/// );
///
/// // Clean up the NV index.
/// context
/// .execute_with_session(Some(AuthSession::Password), |ctx| {
/// ctx.nv_undefine_space(Provision::Owner, nv_index_handle)
/// })
/// .expect("Call to nv_undefine_space failed");
///
/// // Process result
/// let (_attest, _signature) = nv_certify_result.expect("Call to nv_certify failed");
/// ```
#[allow(clippy::too_many_arguments)]
pub fn nv_certify(
&mut self,
sign_handle: KeyHandle,
auth_handle: NvAuth,
nv_index_handle: NvIndexHandle,
qualifying_data: Data,
signing_scheme: SignatureScheme,
size: u16,
offset: u16,
) -> Result<(Attest, Signature)> {
let mut certify_info_ptr = null_mut();
let mut signature_ptr = null_mut();
ReturnCode::ensure_success(
unsafe {
Esys_NV_Certify(
self.mut_context(),
sign_handle.into(),
AuthHandle::from(auth_handle).into(),
nv_index_handle.into(),
self.required_session_1()?,
self.required_session_2()?,
self.optional_session_3(),
&qualifying_data.into(),
&signing_scheme.into(),
size,
offset,
&mut certify_info_ptr,
&mut signature_ptr,
)
},
|ret| {
error!("Error when certifying NV: {:#010X}", ret);
},
)?;
let certify_info = AttestBuffer::try_from(Context::ffi_data_to_owned(certify_info_ptr)?)?;
let signature = Signature::try_from(Context::ffi_data_to_owned(signature_ptr)?)?;
Ok((certify_info.try_into()?, signature))
}
}