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
use core::default::Default;
use core::mem::transmute;
use error::*;
use marker::ContiguousMemory;
pub type sgx_misc_select_t = ::uint32_t;
pub const SGX_FLAGS_INITTED: ::uint64_t = 0x0000000000000001;
pub const SGX_FLAGS_DEBUG: ::uint64_t = 0x0000000000000002;
pub const SGX_FLAGS_MODE64BIT: ::uint64_t = 0x0000000000000004;
pub const SGX_FLAGS_PROVISION_KEY: ::uint64_t = 0x0000000000000010;
pub const SGX_FLAGS_EINITTOKEN_KEY: ::uint64_t = 0x0000000000000020;
pub const SGX_FLAGS_RESERVED: ::uint64_t = (!(SGX_FLAGS_INITTED
| SGX_FLAGS_DEBUG
| SGX_FLAGS_MODE64BIT
| SGX_FLAGS_PROVISION_KEY
| SGX_FLAGS_EINITTOKEN_KEY));
pub const SGX_XFRM_LEGACY: ::uint64_t = 0x0000000000000003;
pub const SGX_XFRM_AVX: ::uint64_t = 0x0000000000000006;
pub const SGX_XFRM_AVX512: ::uint64_t = 0x00000000000000E6;
pub const SGX_XFRM_MPX: ::uint64_t = 0x0000000000000018;
pub const SGX_XFRM_RESERVED: ::uint64_t = (!(SGX_XFRM_LEGACY | SGX_XFRM_AVX));
impl_struct! {
pub struct sgx_attributes_t {
pub flags: ::uint64_t,
pub xfrm: ::uint64_t,
}
pub struct sgx_misc_attribute_t {
pub secs_attr: sgx_attributes_t,
pub misc_select: sgx_misc_select_t,
}
}
pub const SGX_DH_MAC_SIZE: ::size_t = 16;
pub const SGX_DH_SESSION_DATA_SIZE: ::size_t = 200;
impl_struct! {
#[repr(packed)]
pub struct sgx_dh_msg1_t {
pub g_a: sgx_ec256_public_t,
pub target: sgx_target_info_t,
}
}
impl_copy_clone! {
#[repr(packed)]
pub struct sgx_dh_msg2_t {
pub g_b: sgx_ec256_public_t,
pub report: sgx_report_t,
pub cmac: [::uint8_t; SGX_DH_MAC_SIZE],
}
#[repr(packed)]
pub struct sgx_dh_msg3_body_t {
pub report: sgx_report_t,
pub additional_prop_length: ::uint32_t,
pub additional_prop: [::uint8_t; 0],
}
#[repr(packed)]
pub struct sgx_dh_msg3_t {
pub cmac: [::uint8_t; SGX_DH_MAC_SIZE],
pub msg3_body: sgx_dh_msg3_body_t,
}
#[repr(packed)]
pub struct sgx_dh_session_enclave_identity_t {
pub cpu_svn: sgx_cpu_svn_t,
pub misc_select: ::sgx_misc_select_t,
pub reserved_1: [::uint8_t; 28],
pub attributes: sgx_attributes_t,
pub mr_enclave: sgx_measurement_t,
pub reserved_2: [::uint8_t; 32],
pub mr_signer: sgx_measurement_t,
pub reserved_3: [::uint8_t; 96],
pub isv_prod_id: ::sgx_prod_id_t,
pub isv_svn: ::sgx_isv_svn_t,
}
#[repr(packed)]
pub struct sgx_dh_session_t {
pub sgx_dh_session: [::uint8_t; SGX_DH_SESSION_DATA_SIZE],
}
}
impl_struct_default! {
sgx_dh_msg2_t, 512;
sgx_dh_msg3_body_t, 436;
sgx_dh_msg3_t, 452;
sgx_dh_session_enclave_identity_t, 260;
sgx_dh_session_t, 200;
}
impl_struct_ContiguousMemory! {
sgx_dh_msg2_t;
sgx_dh_msg3_body_t;
sgx_dh_msg3_t;
sgx_dh_session_enclave_identity_t;
sgx_dh_session_t;
}
impl_enum! {
#[repr(u32)]
#[derive(Copy, Clone, PartialEq, Eq)]
pub enum sgx_dh_session_role_t {
SGX_DH_SESSION_INITIATOR = 0,
SGX_DH_SESSION_RESPONDER = 1,
}
}
pub const SGX_FEBITSIZE: ::uint32_t = 256;
impl_struct!{
#[repr(packed)]
pub struct ecc_param_t {
pub eccP: [::uint32_t; SGX_NISTP_ECP256_KEY_SIZE],
pub eccA: [::uint32_t; SGX_NISTP_ECP256_KEY_SIZE],
pub eccB: [::uint32_t; SGX_NISTP_ECP256_KEY_SIZE],
pub eccG: [[::uint32_t; SGX_NISTP_ECP256_KEY_SIZE]; 2],
pub eccR: [::uint32_t; SGX_NISTP_ECP256_KEY_SIZE],
}
}
pub type sgx_ec_key_128bit_t = [::uint8_t; SGX_CMAC_KEY_SIZE];
pub type sgx_enclave_id_t = ::uint64_t;
pub const SGX_KEYSELECT_LICENSE: ::uint16_t = 0x0000;
pub const SGX_KEYSELECT_PROVISION: ::uint16_t = 0x0001;
pub const SGX_KEYSELECT_PROVISION_SEAL: ::uint16_t = 0x0002;
pub const SGX_KEYSELECT_REPORT: ::uint16_t = 0x0003;
pub const SGX_KEYSELECT_SEAL: ::uint16_t = 0x0004;
pub const SGX_KEYPOLICY_MRENCLAVE: ::uint16_t = 0x0001;
pub const SGX_KEYPOLICY_MRSIGNER: ::uint16_t = 0x0002;
pub const SGX_KEYID_SIZE: ::size_t = 32;
pub const SGX_CPUSVN_SIZE: ::size_t = 16;
pub const SGX_KEY_REQUEST_RESERVED2_BYTES: ::size_t = 436;
pub type sgx_key_128bit_t = [::uint8_t; 16];
pub type sgx_isv_svn_t = ::uint16_t;
impl_struct! {
pub struct sgx_cpu_svn_t {
pub svn: [::uint8_t; SGX_CPUSVN_SIZE],
}
pub struct sgx_key_id_t {
pub id: [::uint8_t; SGX_KEYID_SIZE],
}
}
impl_copy_clone! {
pub struct sgx_key_request_t {
pub key_name: ::uint16_t,
pub key_policy: ::uint16_t,
pub isv_svn: sgx_isv_svn_t,
pub reserved1: ::uint16_t,
pub cpu_svn: sgx_cpu_svn_t,
pub attribute_mask: sgx_attributes_t,
pub key_id: sgx_key_id_t,
pub misc_mask: sgx_misc_select_t,
pub reserved2: [::uint8_t; SGX_KEY_REQUEST_RESERVED2_BYTES],
}
}
impl_struct_default! {
sgx_key_request_t, 512;
}
impl_struct_ContiguousMemory! {
sgx_key_request_t;
}
pub type sgx_ra_context_t = ::uint32_t;
pub type sgx_ra_key_128_t = sgx_key_128bit_t;
impl_enum! {
#[repr(u32)]
#[derive(Copy, Clone, PartialEq, Eq)]
pub enum sgx_ra_key_type_t {
SGX_RA_KEY_SK = 1,
SGX_RA_KEY_MK = 2,
}
}
impl_struct! {
pub struct sgx_ra_msg1_t {
pub g_a: sgx_ec256_public_t,
pub gid: sgx_epid_group_id_t,
}
pub struct sgx_ra_msg2_t {
pub g_b: sgx_ec256_public_t,
pub spid: sgx_spid_t,
pub quote_type: ::uint16_t,
pub kdf_id: ::uint16_t,
pub sign_gb_ga: sgx_ec256_signature_t,
pub mac: sgx_mac_t,
pub sig_rl_size: ::uint32_t,
pub sig_rl: [::uint8_t; 0],
}
}
impl_copy_clone! {
pub struct sgx_ra_msg3_t {
pub mac: sgx_mac_t,
pub g_a: sgx_ec256_public_t,
pub ps_sec_prop: sgx_ps_sec_prop_desc_t,
pub quote: [::uint8_t; 0],
}
}
impl_struct_default! {
sgx_ra_msg3_t, 336;
}
impl_struct_ContiguousMemory! {
sgx_ra_msg3_t;
}
pub type sgx_epid_group_id_t = [::uint8_t; 4];
pub const SGX_PLATFORM_INFO_SIZE: ::size_t = 101;
impl_struct! {
#[repr(packed)]
pub struct sgx_spid_t {
pub id: [::uint8_t ; 16],
}
#[repr(packed)]
pub struct sgx_basename_t {
pub name: [::uint8_t ; 32],
}
#[repr(packed)]
pub struct sgx_quote_nonce_t {
pub rand: [::uint8_t ; 16],
}
#[repr(packed)]
pub struct sgx_update_info_bit_t {
pub ucodeUpdate: ::int32_t,
pub csmeFwUpdate: ::int32_t,
pub pswUpdate: ::int32_t,
}
}
impl_enum! {
#[repr(u32)]
#[derive(Copy, Clone, PartialEq, Eq)]
pub enum sgx_quote_sign_type_t {
SGX_UNLINKABLE_SIGNATURE = 0,
SGX_LINKABLE_SIGNATURE = 1,
}
}
impl_copy_clone! {
#[repr(packed)]
pub struct sgx_quote_t {
pub version: ::uint16_t,
pub sign_type: ::uint16_t,
pub epid_group_id: sgx_epid_group_id_t,
pub qe_svn: sgx_isv_svn_t,
pub pce_svn: sgx_isv_svn_t,
pub xeid: ::uint32_t,
pub basename: sgx_basename_t,
pub report_body: sgx_report_body_t,
pub signature_len: ::uint32_t,
pub signature: [::uint8_t; 0],
}
#[repr(packed)]
pub struct sgx_platform_info_t {
pub platform_info: [::uint8_t; SGX_PLATFORM_INFO_SIZE],
}
}
impl_struct_default! {
sgx_quote_t, 436;
sgx_platform_info_t, 101;
}
impl_struct_ContiguousMemory! {
sgx_quote_t;
sgx_platform_info_t;
}
pub const SGX_HASH_SIZE: ::size_t = 32;
pub const SGX_MAC_SIZE: ::size_t = 16;
pub const SGX_REPORT_DATA_SIZE: ::size_t = 64;
impl_struct! {
pub struct sgx_measurement_t {
pub m: [::uint8_t; SGX_HASH_SIZE],
}
}
pub type sgx_mac_t = [::uint8_t; SGX_MAC_SIZE];
impl_copy_clone! {
pub struct sgx_report_data_t {
pub d: [::uint8_t; SGX_REPORT_DATA_SIZE],
}
}
impl_struct_default! {
sgx_report_data_t, 64;
}
impl_struct_ContiguousMemory! {
sgx_report_data_t;
}
pub type sgx_prod_id_t = ::uint16_t;
pub const SGX_TARGET_INFO_RESERVED1_BYTES: ::size_t = 4;
pub const SGX_TARGET_INFO_RESERVED2_BYTES: ::size_t = 456;
impl_copy_clone! {
pub struct sgx_target_info_t {
pub mr_enclave: sgx_measurement_t,
pub attributes: sgx_attributes_t,
pub reserved1: [::uint8_t; SGX_TARGET_INFO_RESERVED1_BYTES],
pub misc_select: sgx_misc_select_t,
pub reserved2: [::uint8_t; SGX_TARGET_INFO_RESERVED2_BYTES],
}
pub struct sgx_report_body_t {
pub cpu_svn: sgx_cpu_svn_t,
pub misc_select: sgx_misc_select_t,
pub reserved1: [::uint8_t; 28],
pub attributes: sgx_attributes_t,
pub mr_enclave: sgx_measurement_t,
pub reserved2: [::uint8_t; 32],
pub mr_signer: sgx_measurement_t,
pub reserved3: [::uint8_t; 96],
pub isv_prod_id: sgx_prod_id_t,
pub isv_svn: sgx_isv_svn_t,
pub reserved4: [::uint8_t; 60],
pub report_data: sgx_report_data_t,
}
pub struct sgx_report_t {
pub body: sgx_report_body_t,
pub key_id: sgx_key_id_t,
pub mac: sgx_mac_t,
}
}
impl_struct_default! {
sgx_target_info_t, 512;
sgx_report_body_t, 384;
sgx_report_t, 432;
}
impl_struct_ContiguousMemory! {
sgx_target_info_t;
sgx_report_body_t;
sgx_report_t;
}
pub type sgx_spinlock_t = ::uint32_t;
pub const SGX_SPINLOCK_INITIALIZER: ::uint32_t = 0;
pub type sgx_time_t = ::uint64_t;
pub type sgx_time_source_nonce_t = [::uint8_t; 32];
pub const SGX_MC_UUID_COUNTER_ID_SIZE: ::size_t = 3;
pub const SGX_MC_UUID_NONCE_SIZE: ::size_t = 13;
impl_struct! {
#[repr(packed)]
pub struct sgx_mc_uuid_t {
pub counter_id: [::uint8_t; SGX_MC_UUID_COUNTER_ID_SIZE],
pub nonce: [::uint8_t; SGX_MC_UUID_NONCE_SIZE],
}
}
impl_copy_clone! {
#[repr(packed)]
pub struct sgx_ps_sec_prop_desc_t {
pub sgx_ps_sec_prop_desc: [::uint8_t; 256],
}
pub struct sgx_ps_sec_prop_desc_ex_t {
pub ps_sec_prop_desc: sgx_ps_sec_prop_desc_t,
pub pse_mrsigner: sgx_measurement_t,
pub pse_prod_id: sgx_prod_id_t,
pub pse_isv_svn: sgx_isv_svn_t,
}
}
impl_struct_default! {
sgx_ps_sec_prop_desc_t, 256;
sgx_ps_sec_prop_desc_ex_t, 292;
}
impl_struct_ContiguousMemory! {
sgx_ps_sec_prop_desc_t;
sgx_ps_sec_prop_desc_ex_t;
}
pub const SGX_MC_POLICY_SIGNER: ::uint16_t = 0x01;
pub const SGX_MC_POLICY_ENCLAVE: ::uint16_t = 0x02;
pub const SGX_SHA256_HASH_SIZE: ::size_t = 32;
pub const SGX_ECP256_KEY_SIZE: ::size_t = 32;
pub const SGX_NISTP_ECP256_KEY_SIZE: ::size_t = (SGX_ECP256_KEY_SIZE / 4);
pub const SGX_AESGCM_IV_SIZE: ::size_t = 12;
pub const SGX_AESGCM_KEY_SIZE: ::size_t = 16;
pub const SGX_AESGCM_MAC_SIZE: ::size_t = 16;
pub const SGX_CMAC_KEY_SIZE: ::size_t = 16;
pub const SGX_CMAC_MAC_SIZE: ::size_t = 16;
pub const SGX_AESCTR_KEY_SIZE: ::size_t = 16;
pub const SGX_RSA3072_KEY_SIZE: ::size_t = 384;
pub const SGX_RSA3072_PRI_EXP_SIZE: ::size_t = 384;
pub const SGX_RSA3072_PUB_EXP_SIZE: ::size_t = 4;
impl_struct! {
pub struct sgx_ec256_dh_shared_t {
pub s: [::uint8_t; SGX_ECP256_KEY_SIZE],
}
pub struct sgx_ec256_private_t {
pub r: [::uint8_t; SGX_ECP256_KEY_SIZE],
}
pub struct sgx_ec256_public_t {
pub gx: [::uint8_t; SGX_ECP256_KEY_SIZE],
pub gy: [::uint8_t; SGX_ECP256_KEY_SIZE],
}
pub struct sgx_ec256_signature_t {
pub x: [::uint32_t; SGX_NISTP_ECP256_KEY_SIZE],
pub y: [::uint32_t; SGX_NISTP_ECP256_KEY_SIZE],
}
}
impl_copy_clone! {
pub struct sgx_rsa3072_public_key_t {
pub modulus: [::uint8_t; SGX_RSA3072_KEY_SIZE],
pub exponent: [::uint8_t; SGX_RSA3072_PUB_EXP_SIZE],
}
pub struct sgx_rsa3072_key_t {
pub modulus: [::uint8_t; SGX_RSA3072_KEY_SIZE],
pub d: [::uint8_t; SGX_RSA3072_PRI_EXP_SIZE],
pub e: [::uint8_t; SGX_RSA3072_PUB_EXP_SIZE],
}
pub struct sgx_rsa3072_signature_t {
pub signature: [::uint8_t; SGX_RSA3072_KEY_SIZE],
}
}
impl_struct_default! {
sgx_rsa3072_public_key_t, 388;
sgx_rsa3072_key_t, 772;
sgx_rsa3072_signature_t, 384;
}
impl_struct_ContiguousMemory! {
sgx_rsa3072_public_key_t;
sgx_rsa3072_key_t;
sgx_rsa3072_signature_t;
}
pub type sgx_sha_state_handle_t = * mut ::c_void;
pub type sgx_cmac_state_handle_t = * mut ::c_void;
pub type sgx_ecc_state_handle_t = * mut ::c_void;
pub type sgx_sha256_hash_t = [::uint8_t; SGX_SHA256_HASH_SIZE];
pub type sgx_aes_gcm_128bit_key_t = [::uint8_t; SGX_AESGCM_KEY_SIZE];
pub type sgx_aes_gcm_128bit_tag_t = [::uint8_t; SGX_AESGCM_MAC_SIZE];
pub type sgx_cmac_128bit_key_t = [::uint8_t; SGX_CMAC_KEY_SIZE];
pub type sgx_cmac_128bit_tag_t = [::uint8_t; SGX_CMAC_MAC_SIZE];
pub type sgx_aes_ctr_128bit_key_t = [::uint8_t; SGX_AESCTR_KEY_SIZE];
impl_enum! {
#[repr(u32)]
#[derive(Copy, Clone, PartialEq, Eq)]
pub enum sgx_generic_ecresult_t {
SGX_EC_VALID = 0x00000000,
SGX_EC_COMPOSITE_BASE = 0x00000001,
SGX_EC_COMPLICATED_BASE = 0x00000002,
SGX_EC_IS_ZERO_DISCRIMINANT = 0x00000003,
SGX_EC_COMPOSITE_ORDER = 0x00000004,
SGX_EC_INVALID_ORDER = 0x00000005,
SGX_EC_IS_WEAK_MOV = 0x00000006,
SGX_EC_IS_WEAK_SSA = 0x00000007,
SGX_EC_IS_SUPER_SINGULAR = 0x00000008,
SGX_EC_INVALID_PRIVATE_KEY = 0x00000009,
SGX_EC_INVALID_PUBLIC_KEY = 0x0000000a,
SGX_EC_INVALID_KEY_PAIR = 0x0000000b,
SGX_EC_POINT_OUT_OF_GROUP = 0x0000000c,
SGX_EC_POINT_IS_AT_INFINITY = 0x0000000d,
SGX_EC_POINT_IS_NOT_VALID = 0x0000000e,
SGX_EC_POINT_IS_EQUAL = 0x0000000f,
SGX_EC_POINT_IS_NOT_EQUAL = 0x00000010,
SGX_EC_INVALID_SIGNATURE = 0x00000011,
}
}
impl_enum! {
#[repr(u32)]
#[derive(Copy, Clone, PartialEq, Eq)]
pub enum sgx_rsa_result_t {
SGX_RSA_VALID = 0,
SGX_RSA_INVALID_SIGNATURE = 1,
}
}
impl_enum! {
#[repr(u32)]
#[derive(Copy, Clone, PartialEq, Eq)]
pub enum sgx_rsa_key_type_t {
SGX_RSA_PRIVATE_KEY = 0,
SGX_RSA_PUBLIC_KEY = 1,
}
}
pub const N_SIZE_IN_BYTES: ::size_t = 384;
pub const E_SIZE_IN_BYTES: ::size_t = 4;
pub const D_SIZE_IN_BYTES: ::size_t = 384;
pub const P_SIZE_IN_BYTES: ::size_t = 192;
pub const Q_SIZE_IN_BYTES: ::size_t = 192;
pub const DMP1_SIZE_IN_BYTES: ::size_t = 192;
pub const DMQ1_SIZE_IN_BYTES: ::size_t = 192;
pub const IQMP_SIZE_IN_BYTES: ::size_t = 192;
pub const N_SIZE_IN_UINT: ::size_t = (N_SIZE_IN_BYTES / 4);
pub const E_SIZE_IN_UINT: ::size_t = (E_SIZE_IN_BYTES / 4);
pub const D_SIZE_IN_UINT: ::size_t = (D_SIZE_IN_BYTES / 4);
pub const P_SIZE_IN_UINT: ::size_t = (P_SIZE_IN_BYTES / 4);
pub const Q_SIZE_IN_UINT: ::size_t = (Q_SIZE_IN_BYTES / 4);
pub const DMP1_SIZE_IN_UINT: ::size_t = (DMP1_SIZE_IN_BYTES / 4);
pub const DMQ1_SIZE_IN_UINT: ::size_t = (DMQ1_SIZE_IN_BYTES / 4);
pub const IQMP_SIZE_IN_UINT: ::size_t = (IQMP_SIZE_IN_BYTES / 4);
pub type sgx_rsa_key_t = * mut ::c_void;
impl_copy_clone! {
pub struct rsa_params_t {
pub n: [::uint32_t; N_SIZE_IN_UINT],
pub e: [::uint32_t; E_SIZE_IN_UINT],
pub d: [::uint32_t; D_SIZE_IN_UINT],
pub p: [::uint32_t; P_SIZE_IN_UINT],
pub q: [::uint32_t; Q_SIZE_IN_UINT],
pub dmp1: [::uint32_t; DMP1_SIZE_IN_UINT],
pub dmq1: [::uint32_t; DMQ1_SIZE_IN_UINT],
pub iqmp: [::uint32_t; IQMP_SIZE_IN_UINT],
}
}
impl_struct_default! {
rsa_params_t, 1732;
}
impl_struct_ContiguousMemory! {
rsa_params_t;
}
pub type sgx_thread_t = ::uintptr_t;
cfg_if! {
if #[cfg(target_arch = "x86")] {
pub const SE_WORDSIZE: ::size_t = 4;
} else {
pub const SE_WORDSIZE: ::size_t = 8;
}
}
#[repr(C)]
pub struct sgx_thread_queue_t {
pub m_first: sgx_thread_t,
pub m_last: sgx_thread_t,
}
#[repr(C)]
pub struct sgx_thread_mutex_t {
pub m_refcount: ::size_t,
pub m_control: ::uint32_t,
pub m_lock: ::uint32_t,
pub m_owner: sgx_thread_t,
pub m_queue: sgx_thread_queue_t,
}
pub const SGX_THREAD_T_NULL: sgx_thread_t = 0 ;
pub const SGX_THREAD_MUTEX_NONRECURSIVE: ::uint32_t = 0x01;
pub const SGX_THREAD_MUTEX_RECURSIVE: ::uint32_t = 0x02;
pub const SGX_THREAD_NONRECURSIVE_MUTEX_INITIALIZER: sgx_thread_mutex_t = sgx_thread_mutex_t {
m_refcount: 0,
m_control: SGX_THREAD_MUTEX_NONRECURSIVE,
m_lock: 0,
m_owner: SGX_THREAD_T_NULL,
m_queue: sgx_thread_queue_t {
m_first: SGX_THREAD_T_NULL,
m_last: SGX_THREAD_T_NULL
}
};
pub const SGX_THREAD_RECURSIVE_MUTEX_INITIALIZER: sgx_thread_mutex_t = sgx_thread_mutex_t {
m_refcount: 0,
m_control: SGX_THREAD_MUTEX_RECURSIVE,
m_lock: 0,
m_owner: SGX_THREAD_T_NULL,
m_queue: sgx_thread_queue_t {
m_first: SGX_THREAD_T_NULL,
m_last: SGX_THREAD_T_NULL
}
};
pub const SGX_THREAD_MUTEX_INITIALIZER: sgx_thread_mutex_t = SGX_THREAD_NONRECURSIVE_MUTEX_INITIALIZER;
impl_struct! {
pub struct sgx_thread_mutexattr_t {
pub m_dummy: ::c_uchar,
}
pub struct sgx_thread_condattr_t {
pub m_dummy: ::c_uchar,
}
}
#[repr(C)]
pub struct sgx_thread_cond_t {
pub m_lock: ::uint32_t,
pub m_queue: sgx_thread_queue_t,
}
pub const SGX_THREAD_COND_INITIALIZER: sgx_thread_cond_t = sgx_thread_cond_t {
m_lock: 0,
m_queue: sgx_thread_queue_t {
m_first: SGX_THREAD_T_NULL,
m_last: SGX_THREAD_T_NULL
}
};
pub type sgx_ra_derive_secret_keys_t = extern "C" fn(p_shared_key: * const sgx_ec256_dh_shared_t,
kdf_id: ::uint16_t,
p_smk_key: * mut sgx_ec_key_128bit_t,
p_sk_key: * mut sgx_ec_key_128bit_t,
p_mk_key: * mut sgx_ec_key_128bit_t,
p_vk_key: * mut sgx_ec_key_128bit_t) -> sgx_status_t;
pub const EXCEPTION_CONTINUE_SEARCH: ::uint32_t = 0;
pub const EXCEPTION_CONTINUE_EXECUTION: ::uint32_t = 0xFFFFFFFF;
impl_enum! {
#[repr(u32)]
#[derive(Copy, Clone, PartialEq, Eq)]
pub enum sgx_exception_vector_t {
SGX_EXCEPTION_VECTOR_DE = 0,
SGX_EXCEPTION_VECTOR_DB = 1,
SGX_EXCEPTION_VECTOR_BP = 3,
SGX_EXCEPTION_VECTOR_BR = 5,
SGX_EXCEPTION_VECTOR_UD = 6,
SGX_EXCEPTION_VECTOR_MF = 16,
SGX_EXCEPTION_VECTOR_AC = 17,
SGX_EXCEPTION_VECTOR_XM = 19,
}
}
impl_enum!{
#[repr(u32)]
#[derive(Copy, Clone, PartialEq, Eq)]
pub enum sgx_exception_type_t {
SGX_EXCEPTION_HARDWARE = 3,
SGX_EXCEPTION_SOFTWARE = 6,
}
}
cfg_if! {
if #[cfg(target_arch = "x86")] {
impl_struct! {
pub struct sgx_cpu_context_t {
pub eax: ::uint32_t,
pub ecx: ::uint32_t,
pub edx: ::uint32_t,
pub ebx: ::uint32_t,
pub esp: ::uint32_t,
pub ebp: ::uint32_t,
pub esi: ::uint32_t,
pub edi: ::uint32_t,
pub eflags: ::uint32_t,
pub eip: ::uint32_t,
}
}
} else {
impl_struct! {
pub struct sgx_cpu_context_t {
pub rax: ::uint64_t,
pub rcx: ::uint64_t,
pub rdx: ::uint64_t,
pub rbx: ::uint64_t,
pub rsp: ::uint64_t,
pub rbp: ::uint64_t,
pub rsi: ::uint64_t,
pub rdi: ::uint64_t,
pub r8: ::uint64_t,
pub r9: ::uint64_t,
pub r10: ::uint64_t,
pub r11: ::uint64_t,
pub r12: ::uint64_t,
pub r13: ::uint64_t,
pub r14: ::uint64_t,
pub r15: ::uint64_t,
pub rflags: ::uint64_t,
pub rip: ::uint64_t,
}
}
}
}
impl_struct! {
pub struct sgx_exception_info_t {
pub cpu_context: sgx_cpu_context_t,
pub exception_vector: sgx_exception_vector_t,
pub exception_type: sgx_exception_type_t,
}
}
pub type sgx_exception_handler_t = extern "C" fn(info: * mut sgx_exception_info_t) -> ::uint32_t;
pub const SGX_SEAL_TAG_SIZE: ::size_t = SGX_AESGCM_MAC_SIZE;
pub const SGX_SEAL_IV_SIZE: ::size_t = 12;
impl_struct! {
pub struct sgx_aes_gcm_data_t {
pub payload_size: ::uint32_t,
pub reserved: [::uint8_t; 12],
pub payload_tag: [::uint8_t; SGX_SEAL_TAG_SIZE],
pub payload: [::uint8_t; 0],
}
pub struct sgx_sealed_data_t {
pub key_request: sgx_key_request_t,
pub plain_text_offset: ::uint32_t,
pub reserved: [::uint8_t; 12],
pub aes_data: sgx_aes_gcm_data_t,
}
}
pub const PS_CAP_TRUSTED_TIME: ::size_t = 0x1;
pub const PS_CAP_MONOTONIC_COUNTER: ::size_t = 0x2;
impl_struct! {
pub struct sgx_ps_cap_t {
pub ps_cap0: ::uint32_t,
pub ps_cap1: ::uint32_t,
}
}
pub type sgx_ecall_get_ga_trusted_t = extern "C" fn(eid: sgx_enclave_id_t,
retval: * mut sgx_status_t,
context: sgx_ra_context_t,
g_a: * mut sgx_ec256_public_t) -> sgx_status_t;
pub type sgx_ecall_proc_msg2_trusted_t = extern "C" fn(eid: sgx_enclave_id_t,
retval: * mut sgx_status_t,
context: sgx_ra_context_t,
p_msg2: * const sgx_ra_msg2_t,
p_qe_target: * const sgx_target_info_t,
p_report: * mut sgx_report_t,
nonce: * mut sgx_quote_nonce_t) -> sgx_status_t;
pub type sgx_ecall_get_msg3_trusted_t = extern "C" fn(eid: sgx_enclave_id_t,
retval: * mut sgx_status_t,
context: sgx_ra_context_t,
quote_size: ::uint32_t,
qe_report: * mut sgx_report_t,
p_msg3: * mut sgx_ra_msg3_t,
msg3_size: ::uint32_t) -> sgx_status_t;
pub type sgx_launch_token_t = [::uint8_t; 1024];
pub const MAX_EX_FEATURES_COUNT: ::size_t = 32;
pub const SGX_CREATE_ENCLAVE_EX_PCL_BIT_IDX: ::size_t = 0;
pub const SGX_CREATE_ENCLAVE_EX_PCL: ::uint32_t = (1 << SGX_CREATE_ENCLAVE_EX_PCL_BIT_IDX as ::uint32_t);
pub const SGX_CREATE_ENCLAVE_EX_SWITCHLESS_BIT_IDX: ::size_t = 1;
pub const SGX_CREATE_ENCLAVE_EX_SWITCHLESS: ::uint32_t = (1 << SGX_CREATE_ENCLAVE_EX_SWITCHLESS_BIT_IDX as ::uint32_t);
pub const _SGX_LAST_EX_FEATURE_IDX_: ::uint32_t = SGX_CREATE_ENCLAVE_EX_SWITCHLESS_BIT_IDX as ::uint32_t;
pub const _SGX_EX_FEATURES_MASK_: ::uint32_t = (0xFFFFFFFF_u32 >> (MAX_EX_FEATURES_COUNT as ::uint32_t - 1 - _SGX_LAST_EX_FEATURE_IDX_));
pub const ENCLAVE_INIT_NOT_STARTED: ::uint32_t = 0;
pub const ENCLAVE_INIT_IN_PROGRESS: ::uint32_t = 1;
pub const ENCLAVE_INIT_DONE: ::uint32_t = 2;
pub const ENCLAVE_CRASHED: ::uint32_t = 3;
pub type sgx_cpuinfo_t = [::int32_t; 4];
pub type SGX_FILE = * mut ::c_void;
pub const FILENAME_MAX: ::c_uint = 260;
pub const FOPEN_MAX: ::c_uint = 20;
impl_enum! {
#[repr(u32)]
#[derive(Copy, Clone, PartialEq, Eq)]
pub enum sgx_device_status_t {
SGX_ENABLED = 0,
SGX_DISABLED_REBOOT_REQUIRED = 1,
SGX_DISABLED_LEGACY_OS = 2,
SGX_DISABLED = 3,
SGX_DISABLED_SCI_AVAILABLE = 4,
SGX_DISABLED_MANUAL_ENABLE = 5,
SGX_DISABLED_HYPERV_ENABLED = 6,
SGX_DISABLED_UNSUPPORTED_CPU = 7,
}
}
impl_enum! {
#[repr(u32)]
#[derive(Copy, Clone, PartialEq, Eq)]
pub enum sgx_uswitchless_worker_type_t {
SGX_USWITCHLESS_WORKER_TYPE_UNTRUSTED = 0,
SGX_USWITCHLESS_WORKER_TYPE_TRUSTED = 1,
}
}
impl_enum! {
#[repr(u32)]
#[derive(Copy, Clone, PartialEq, Eq)]
pub enum sgx_uswitchless_worker_event_t {
SGX_USWITCHLESS_WORKER_EVENT_START = 0,
SGX_USWITCHLESS_WORKER_EVENT_IDLE = 1,
SGX_USWITCHLESS_WORKER_EVENT_MISS = 2,
SGX_USWITCHLESS_WORKER_EVENT_EXIT = 3,
SGX_USWITCHLESS_WORKER_EVENT_NUM = 4,
}
}
impl_struct! {
pub struct sgx_uswitchless_worker_stats_t {
pub processed: ::uint64_t,
pub missed: ::uint64_t,
}
}
pub type sgx_uswitchless_worker_callback_t = extern "C" fn(worker_type: sgx_uswitchless_worker_type_t,
worker_event: sgx_uswitchless_worker_event_t,
worker_stats: * const sgx_uswitchless_worker_stats_t);
pub const SL_DEFAULT_FALLBACK_RETRIES: ::uint32_t = 20000;
pub const SL_DEFAULT_SLEEP_RETRIES: ::uint32_t = 20000;
pub const SL_DEFUALT_MAX_TASKS_QWORDS: ::uint32_t = 1;
pub const SL_MAX_TASKS_MAX_QWORDS: ::uint32_t = 8;
pub const _SGX_USWITCHLESS_WORKER_EVENT_NUM: ::size_t = 4;
pub struct sgx_uswitchless_config_t {
pub switchless_calls_pool_size_qwords: ::uint32_t,
pub num_uworkers: ::uint32_t,
pub num_tworkers: ::uint32_t,
pub retries_before_fallback: ::uint32_t,
pub retries_before_sleep: ::uint32_t,
pub callback_func: [sgx_uswitchless_worker_callback_t; _SGX_USWITCHLESS_WORKER_EVENT_NUM],
}
impl Default for sgx_uswitchless_config_t {
fn default() -> sgx_uswitchless_config_t {
let mut config: sgx_uswitchless_config_t = unsafe{ transmute([0u8; 56]) };
config.num_uworkers = 1;
config.num_tworkers = 1;
config
}
}