-
Notifications
You must be signed in to change notification settings - Fork 10
/
bitvisor.map
9766 lines (9733 loc) · 603 KB
/
bitvisor.map
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
Allocating common symbols
Common symbol size file
clflush_size 0x4 output.o
sReaderContext 0x60 output.o
uefi_memory_map_data
0x4000 output.o
uefi_booted 0x4 output.o
sigx_app 0x8 output.o
log 0x10000 output.o
num_dom 0x4 output.o
mszReaders 0x400 output.o
prohibit_iccard_init
0x4 output.o
pci_config_mmio_data_head
0x8 output.o
curthread 0x8 output.o
sig_app 0x8 output.o
readerState 0x64 output.o
dom_io 0x800 output.o
acpi_dsdt_system_state
0x1e output.o
ehci_host 0x8 output.o
num_of_processors 0x4 output.o
e801_fake_bx 0x2 output.o
iommu_detected 0x1 output.o
process 0x6500 output.o
dwReaders 0x8 output.o
readerTracker 0x140 output.o
handler_descriptor_lock
0x1 output.o
e801_fake_ax 0x2 output.o
Discarded input sections
.gomi 0x0000000000000000 0x10 output.o
Memory Configuration
Name Origin Length Attributes
*default* 0x0000000000000000 0xffffffffffffffff
Linker script and memory map
0x0000000040100000 virt = 0x40100000
0x0000000000100000 phys = 0x100000
0x0000000040100000 . = virt
0x0000000040100000 head = .
0x00000000401000b0 . = (virt + SIZEOF_HEADERS)
.entry 0x0000000040101000 0x65f0 load address 0x0000000000101000
0x0000000040101000 code = .
*(.entry)
.entry 0x0000000040101000 0x6000 output.o
0x000000004010100c entry
0x0000000040101338 uefi_entry_virttophys
0x0000000040101343 uefi_entry_call
0x000000004010137f uefi_entry_pcpy
0x00000000401013be uefi_entry_start
0x00000000401014d5 uefi_entry_rsp
0x00000000401014dd uefi_entry_ret_addr
0x0000000040101580 cpuinit_start
0x00000000401017b0 vmm_base_cr3
0x00000000401017c8 apinit_procs
0x00000000401017d0 apinit_lock
0x00000000401017d8 cpuinit_end
0x0000000040103000 entry_pdp
0x0000000040104000 entry_pd0
0x0000000040105000 entry_pd
*(.entry.text)
.entry.text 0x0000000040107000 0x51c output.o
0x0000000040107000 uefi_init_get_vmmsize
0x00000000401070a2 uefi_init
*(.entry.data)
*fill* 0x000000004010751c 0x4
.entry.data 0x0000000040107520 0xd0 output.o
0x0000000040107578 uefi_acpi_table
0x0000000040107580 uefi_acpi_20_table
0x0000000040107588 uefi_wait_for_event
0x0000000040107590 uefi_free_pages
0x0000000040107598 uefi_get_memory_map
0x00000000401075a0 uefi_allocate_pages
0x00000000401075a8 uefi_conout_output_string
0x00000000401075b0 uefi_conin_read_key_stroke
0x00000000401075b8 uefi_conout
0x00000000401075c0 uefi_conin
.text 0x0000000040108000 0x109209 load address 0x0000000000108000
0x0000000040108000 text = .
*(.text)
.text 0x0000000040108000 0x109209 output.o
0x0000000040108b27 acpi_smi_hook
0x0000000040108b78 acpi_iohook
0x0000000040108bcd acpi_reset
0x0000000040108cc4 acpi_poweroff
0x0000000040108cf9 get_acpi_time_raw
0x0000000040108d17 acpi_read_mcfg
0x000000004010eb44 acpi_dsdt_parse
0x000000004010ec01 acpi_ssdt_parse
0x000000004010ecca apinitproc0
0x000000004010ecf6 apic_available
0x000000004010ed1d ap_start_addr
0x000000004010f073 panic_wakeup_all
0x000000004010f103 disable_apic
0x000000004010f17d sync_all_processors
0x000000004010f209 start_all_processors
0x000000004010f24b assertion_failed
0x000000004010f288 beep_set_freq
0x000000004010f2b4 beep_on
0x000000004010f2bf beep_off
0x000000004010f96e update_mtrr_and_pat
0x000000004010fd63 cache_get_gpat
0x000000004010fdb5 cache_set_gpat
0x000000004010fdff cache_get_attr
0x000000004010feb1 cache_get_gmtrr_type
0x000000004010fecc cache_get_gmtrr_attr
0x000000004010fef0 cache_get_gmtrrcap
0x000000004010ff1a cache_get_gmtrr
0x000000004011002a cache_set_gmtrr
0x0000000040110087 cache_get_gmsr_amd
0x0000000040110115 cache_set_gmsr_amd
0x0000000040110575 callrealmode_endofcodeaddr
0x0000000040110581 callrealmode_usevcpu
0x0000000040110589 callrealmode_printmsg
0x00000000401105a5 callrealmode_getsysmemmap
0x00000000401105f1 callrealmode_getshiftflags
0x000000004011060e callrealmode_setvideomode
0x000000004011062b callrealmode_reboot
0x0000000040110643 callrealmode_tcgbios
0x00000000401106e0 callrealmode_disk_readmbr
0x0000000040110721 callrealmode_disk_readlba
0x000000004011076c callrealmode_bootcd_getstatus
0x00000000401107c1 callrealmode_setcursorpos
0x00000000401107e7 callrealmode_startkernel32
0x0000000040110807 callrealmode_getfontinfo
0x0000000040110874 call_uefi_get_memory_map
0x00000000401108ed call_uefi_allocate_pages
0x000000004011094c call_uefi_free_pages
0x0000000040110971 call_uefi_getkey
0x00000000401109e6 call_uefi_putchar
0x0000000040110a31 fill_pagetable
0x0000000040110b3a copy_uefi_bootcode
0x0000000040110c9c get_cpu_id
0x0000000040110cab cpu_emul_cpuid
0x0000000040110d67 cpu_emul_rdmsr
0x0000000040110ea5 cpu_emul_wrmsr
0x0000000040110fec cpu_emul_hlt
0x0000000040110fff cpu_emul_cli
0x000000004011103a cpu_emul_sti
0x0000000040111083 cpu_emul_realmode_int
0x00000000401111f5 cpu_emul_xsetbv
0x0000000040111287 call_cpuid
0x0000000040113b69 cpu_interpreter
0x0000000040115e50 cpu_mmu_get_pte
0x00000000401164b7 get_pte
0x0000000040116586 write_linearaddr_ok_b
0x00000000401165a8 write_linearaddr_ok_w
0x00000000401165b6 write_linearaddr_ok_l
0x00000000401165c4 write_linearaddr_b
0x000000004011662d write_linearaddr_w
0x00000000401166bf write_linearaddr_l
0x000000004011674f write_linearaddr_q
0x00000000401167dd read_linearaddr_b
0x0000000040116845 read_linearaddr_w
0x00000000401168d1 read_linearaddr_l
0x000000004011695d read_linearaddr_q
0x00000000401169e9 read_linearaddr_tss
0x0000000040116a74 write_linearaddr_tss
0x000000004011a7b5 cpu_mmu_spt_tlbflush
0x000000004011a7f3 cpu_mmu_spt_updatecr3
0x000000004011aa75 cpu_mmu_spt_invalidate
0x000000004011aae9 cpu_mmu_spt_pagefault
0x000000004011ace7 cpu_mmu_spt_extern_mapsearch
0x000000004011ae18 cpu_mmu_spt_map_1mb
0x000000004011afb8 cpu_mmu_spt_clear_all
0x000000004011b10f cpu_mmu_spt_init
0x000000004011b704 cpu_seg_read_b
0x000000004011b76b cpu_seg_read_w
0x000000004011b7d2 cpu_seg_read_l
0x000000004011b839 cpu_seg_read_q
0x000000004011b8a0 cpu_seg_write_b
0x000000004011b908 cpu_seg_write_w
0x000000004011b970 cpu_seg_write_l
0x000000004011b9d5 cpu_seg_write_q
0x000000004011ba3c cpu_stack_get
0x000000004011baa4 cpu_stack_set
0x000000004011bb38 cpu_stack_push
0x000000004011bbdd cpu_stack_pop
0x000000004011bf91 debug_addstr
0x000000004011bf93 debug_gdb
0x000000004011bf95 debug_iohook
0x000000004011bf97 debug_msgregister
0x000000004011bfca debug_msgunregister
0x000000004011c06d do_exint_pass
0x000000004011c10f read_gphys_b
0x000000004011c172 write_gphys_b
0x000000004011c1f1 read_gphys_w
0x000000004011c27e write_gphys_w
0x000000004011c32b read_gphys_l
0x000000004011c3b8 write_gphys_l
0x000000004011c468 read_gphys_q
0x000000004011c4f5 write_gphys_q
0x000000004011c5a2 cmpxchg_gphys_l
0x000000004011c65b cmpxchg_gphys_q
0x000000004011c714 gmm_pass_gp2hp
0x000000004011cbd9 idman_reinit_session
0x000000004011cc57 idman_reinit2
0x000000004011cc7b get_idman_session
0x000000004011ccae call_initfunc
0x000000004011cd04 initfunc_init
0x000000004011e857 int_fatal
0x000000004011ebb2 callfunc_and_getint
0x000000004011ebc9 do_externalint_enable
0x000000004011ebe1 set_int_handler
0x000000004011ebfc int_exceptionHandler
0x000000004011ec03 int_init_ap
0x000000004011ec5e do_io_nothing
0x000000004011ec99 set_iofunc
0x000000004011ed2a call_io
0x000000004011ee10 do_iopass_default
0x000000004011f0aa keyboard_reset
0x000000004011f0f4 setkbdled
0x000000004011f148 keyboard_flush
0x000000004011f167 load_bootsector
0x000000004011f525 copy_bootsector
0x000000004011f892 localapic_wait_for_sipi
0x000000004011f91f localapic_change_base_msr
0x000000004011f96b localapic_mmio_register
0x000000004011f9d4 localapic_delayed_ap_start
0x00000000401203a0 resume_vm
0x0000000040120452 vmm_main
0x0000000040120902 getsysmemmap
0x0000000040120986 getfakesysmemmap
0x00000000401209f1 phys_to_virt
0x0000000040120a02 vmm_start_inf
0x0000000040120a09 vmm_term_inf
0x0000000040120a15 num_of_available_pages
0x0000000040120a83 alloc_pages
0x0000000040120afa alloc_page
0x0000000040120b0d alloc
0x0000000040120da9 alloc2
0x0000000040120de2 free
0x0000000040120edd realloc
0x0000000040121014 free_page
0x000000004012102a free_page_phys
0x0000000040121050 mempool_new
0x00000000401210ad mempool_free
0x000000004012114e mempool_allocmem
0x0000000040121345 mempool_freemem
0x00000000401215e7 sym_to_phys
0x00000000401215f6 phys_in_vmm
0x0000000040121619 mm_force_unlock
0x000000004012163d mm_process_alloc
0x0000000040121681 mm_process_free
0x000000004012168f pmap_open_vmm
0x00000000401216b5 pmap_open_guest
0x00000000401216f2 pmap_close
0x00000000401216f4 pmap_getreadlevel
0x00000000401216fb pmap_setlevel
0x0000000040121702 pmap_seek
0x000000004012176d pmap_read
0x00000000401219fc pmap_write
0x0000000040121b92 mm_process_unmap
0x0000000040121c70 mm_process_unmap_stack
0x0000000040121e3b mm_process_unmapall
0x0000000040121ed5 mm_process_switch
0x0000000040122137 pmap_pointer
0x0000000040122195 pmap_clear
0x000000004012227e pmap_autoalloc
0x0000000040122415 mm_process_map_alloc
0x000000004012254d mm_process_map_shared_physpage
0x00000000401225a6 mm_process_map_shared
0x0000000040122806 mm_process_map_stack
0x00000000401230bd pmap_dump
0x00000000401231c8 unmapmem
0x000000004012329a mapmem
0x00000000401236f5 read_hphys_b
0x000000004012374a write_hphys_b
0x000000004012376f read_hphys_w
0x0000000040123799 write_hphys_w
0x00000000401237bf read_hphys_l
0x00000000401237e7 write_hphys_l
0x000000004012380c read_hphys_q
0x0000000040123836 write_hphys_q
0x000000004012385d cmpxchg_hphys_l
0x00000000401238a0 cmpxchg_hphys_q
0x00000000401238e5 alloc_realmodemem
0x0000000040123ad1 mapmem_hphys
0x0000000040123aec mapmem_gphys
0x0000000040123b07 mm_flush_wb_cache
0x0000000040124146 mmio_access_memory
0x0000000040124405 mmio_access_page
0x00000000401244de mmio_register
0x00000000401244f2 mmio_register_unlocked
0x0000000040124506 mmio_unregister
0x00000000401245b6 mmio_lock
0x00000000401245ef mmio_unlock
0x0000000040124794 msg_findname
0x00000000401247f4 msg_register
0x00000000401248c2 msg_unregister
0x0000000040124940 msg_unregisterall
0x00000000401249c6 msg_unregister2
0x0000000040124a7f call_read_msr
0x0000000040124a96 call_write_msr
0x0000000040124d24 load_minios
0x000000004012504b backtrace
0x0000000040125b20 panic
0x00000000401260b5 auto_reboot
0x00000000401260d2 panic_test
0x00000000401260f5 pcpu_list_foreach
0x0000000040126125 pcpu_list_add
0x0000000040126174 pcpu_init
0x0000000040126c60 vprintf
0x0000000040126c9e printf
0x0000000040126ce6 vsnprintf
0x0000000040126d24 snprintf
0x0000000040126f3f sys_msgsetfunc
0x0000000040126fe1 sys_msgclose
0x0000000040126ff9 sys_msgret
0x00000000401270df sys_msgregister
0x0000000040127312 sys_msgsenddesc
0x0000000040127abb sys_msgsendint
0x0000000040127def sys_newprocess
0x0000000040127e52 sys_msgunregister
0x0000000040127edd sys_exitprocess
0x0000000040127f32 sys_msgsendbuf
0x0000000040128083 sys_msgopen
0x00000000401280e4 process_kill
0x0000000040128148 msgsetfunc
0x0000000040128159 msgregister
0x0000000040128172 msgopen
0x0000000040128188 msgclose
0x0000000040128196 msgsendint
0x00000000401281ad msgsenddesc
0x00000000401281c4 newprocess
0x00000000401281da msgsendbuf
0x00000000401281f7 msgunregister
0x000000004012822a exitprocess
0x000000004012823d msgpremapbuf
0x0000000040128358 process_syscall
0x00000000401283f6 putchar
0x0000000040128437 putchar_set_func
0x000000004012870d do_panic_reboot
0x000000004012878a handle_init_to_bsp
0x00000000401287f4 reboot_test
0x000000004012881e savemsr_save
0x0000000040128882 savemsr_load
0x0000000040128be2 get_seg_base
0x0000000040128c91 get_seg_access_rights
0x0000000040128cad segment_wakeup
0x0000000040128ceb segment_init_ap
0x0000000040128f72 serial_putDebugChar
0x0000000040128f80 serial_getDebugChar
0x0000000040128f91 serial_putchar
0x0000000040128fe9 serial_init_iohook
0x0000000040129028 waitcycles
0x0000000040129047 usleep
0x000000004012915f sleep_set_timer_counter
0x00000000401292b7 vmctl_svm_init
0x000000004012935b message_exitcode
0x00000000401296d3 printexitcode
0x0000000040129700 svm_available
0x00000000401297a4 svm_reset
0x0000000040129a14 svm_vminit
0x0000000040129dc1 svm_vmexit
0x0000000040129dc3 svm_init
0x0000000040129f07 svm_enable_resume
0x000000004012a00d svm_resume
0x000000004012a162 svm_ioio
0x000000004012a25f svm_extern_iopass
0x000000004012a3b8 svm_init_signal
0x000000004012a3de svm_start_vm
0x000000004012aeb0 svm_msr_update_lma
0x000000004012af20 svm_read_msr
0x000000004012b1b8 svm_write_msr
0x000000004012b714 svm_np_init
0x000000004012b80a svm_np_pagefault
0x000000004012b841 svm_np_tlbflush
0x000000004012b843 svm_np_updatecr3
0x000000004012b851 svm_np_clear_all
0x000000004012b8e7 svm_np_extern_mapsearch
0x000000004012b96b svm_np_map_1mb
0x000000004012b9b0 svm_paging_extern_flush_tlb_entry
0x000000004012b9da svm_paging_map_1mb
0x000000004012ba01 svm_paging_flush_guest_tlb
0x000000004012ba3a svm_paging_init
0x000000004012bb4b svm_paging_pagefault
0x000000004012bb7a svm_paging_tlbflush
0x000000004012bba1 svm_paging_invalidate
0x000000004012bbd2 svm_paging_npf
0x000000004012bc01 svm_paging_updatecr3
0x000000004012bc2a svm_paging_spt_setcr3
0x000000004012bc5e svm_paging_clear_all
0x000000004012bc8a svm_paging_get_gpat
0x000000004012bc98 svm_paging_set_gpat
0x000000004012bcd8 svm_paging_apply_fixed_cr0
0x000000004012bcf7 svm_paging_apply_fixed_cr4
0x000000004012bd16 svm_paging_pg_change
0x000000004012bd18 svm_paging_start
0x000000004012bd1e svm_panic_dump
0x000000004012bdf0 svm_read_general_reg
0x000000004012bf2c svm_write_general_reg
0x000000004012c038 svm_read_control_reg
0x000000004012c0d6 svm_write_control_reg
0x000000004012c1ae svm_read_sreg_sel
0x000000004012c26f svm_read_sreg_acr
0x000000004012c34a svm_read_sreg_base
0x000000004012c461 svm_read_sreg_limit
0x000000004012c56d svm_read_ip
0x000000004012c587 svm_write_ip
0x000000004012c5a8 svm_read_flags
0x000000004012c5c2 svm_write_flags
0x000000004012c5d9 svm_read_gdtr
0x000000004012c60b svm_write_gdtr
0x000000004012c62f svm_read_idtr
0x000000004012c661 svm_write_idtr
0x000000004012c685 svm_write_realmode_seg
0x000000004012c7c4 svm_writing_sreg
0x000000004012c8b4 int1a_TCG_StatusCheck
0x000000004012c981 int1a_TCG_HashLogExtendEvent
0x000000004012ca0d int1a_TCG_PassThroughToTPM
0x000000004012ca99 int1a_TCG_HashLogEvent
0x000000004012cb1c int1a_TCG_HashAll
0x000000004012cbd5 int1a_TCG_TSS
0x000000004012cc61 int1a_TCG_CompactHashLogExtendEvent
0x000000004012ccc4 tcg_measure
0x000000004012cfaa thread_gettid
0x000000004012cfba schedule
0x000000004012d1ec thread_new
0x000000004012d31b thread_wakeup
0x000000004012d3ea thread_will_stop
0x000000004012d462 thread_exit
0x000000004012d508 thread_start1
0x000000004012d708 get_cpu_time
0x000000004012d7d2 get_acpi_time
0x000000004012d885 get_time
0x000000004012da64 timer_new
0x000000004012dae1 timer_set
0x000000004012dbff timer_free
0x000000004012de09 tty_putchar
0x000000004012e0f7 ttylog_stop
0x000000004012e102 tty_udp_register
0x000000004012e147 tty_init_iohook
0x000000004012e160 vcpu_list_foreach
0x000000004012e190 load_new_vcpu
0x000000004012e238 vga_register
0x000000004012e2ad vga_is_ready
0x000000004012e300 vga_transfer_image
0x000000004012e34f vga_fill_rect
0x000000004012e389 vga_get_screen_size
0x000000004012e728 vmmcall_boot_continue
0x000000004012e776 vmmcall_boot_enable
0x000000004012e8c4 vmmcall
0x000000004012e91c vmmcall_register
0x000000004012e959 vmmcall_init
0x000000004012ed26 virt_to_phys
0x000000004012f19c register_status_callback
0x000000004012f4a8 htoi
0x000000004012f4ed atoi
0x000000004012f521 vmi_translate_ksym2v
0x000000004012f54b virt_pte
0x000000004012f61c virt_phys
0x000000004012f708 virt_memcpy
0x000000004012f838 virt_memcpy1
0x000000004012f93f read_str_va
0x000000004012ffd6 vramwrite_clearscreen
0x0000000040130033 vramwrite_putchar
0x00000000401301f0 vramwrite_mark1
0x0000000040130228 vramwrite_mark2
0x0000000040130269 vramwrite_mark3
0x00000000401302aa vramwrite_save_and_move_cursor
0x00000000401302d8 vramwrite_restore_cursor
0x00000000401302e6 vramwrite_get_cursor_pos
0x000000004013032c vramwrite_init_global
0x0000000040130334 vramwrite_exit_global
0x00000000401303bf vt_generate_pagefault
0x0000000040130448 vt_generate_external_int
0x000000004013049d vmctl_vt_init
0x0000000040130541 vt_update_exint
0x00000000401305c1 vt_vmptrld
0x0000000040130600 vt_ept_init
0x00000000401306f4 vt_ept_map_page
0x00000000401309dd vt_ept_violation
0x0000000040130a1b vt_ept_tlbflush
0x0000000040130a1d vt_ept_updatecr3
0x0000000040130ad9 vt_ept_clear_all
0x0000000040130b6f vt_ept_extern_mapsearch
0x0000000040130bf3 vt_ept_map_1mb
0x0000000040130c42 message_exitreason
0x0000000040130d41 printexitreason
0x00000000401316ad vt_available
0x0000000040131749 vt__vmx_init
0x0000000040131791 vt__vmxon
0x0000000040131839 vt_vminit
0x0000000040131898 vt_vmexit
0x00000000401318b5 vt_init
0x00000000401318c8 vt_enable_resume
0x0000000040131a04 vt_resume
0x0000000040131b8f vt_io
0x0000000040131cb3 vt_iopass_init
0x0000000040131e2b vt_iopass
0x0000000040131e6d vt_extern_iopass
0x0000000040132b3a vt_update_exception_bmp
0x0000000040133176 vt_init_signal
0x0000000040133184 vt_start_vm
0x0000000040133555 vt_add_guest_msr
0x00000000401336a9 vt_read_guest_msr
0x0000000040133706 vt_write_guest_msr
0x0000000040133760 vt_msr_update_lma
0x0000000040133815 vt_read_msr
0x0000000040133aac vt_write_msr
0x0000000040133d4f vt_msr_init
0x0000000040133f1f vt_paging_extern_flush_tlb_entry
0x0000000040133f74 vt_paging_map_1mb
0x0000000040133f9a vt_paging_flush_guest_tlb
0x0000000040133ffb vt_paging_pagefault
0x0000000040134031 vt_paging_tlbflush
0x0000000040134051 vt_paging_invalidate
0x0000000040134077 vt_paging_npf
0x00000000401340af vt_paging_updatecr3
0x00000000401340e1 vt_paging_spt_setcr3
0x0000000040134107 vt_paging_clear_all
0x000000004013413d vt_paging_get_gpat
0x000000004013414b vt_paging_set_gpat
0x0000000040134193 vt_paging_apply_fixed_cr0
0x00000000401341f6 vt_paging_apply_fixed_cr4
0x0000000040134239 vt_paging_pg_change
0x00000000401343ab vt_paging_init
0x00000000401343fa vt_paging_start
0x000000004013441b vt_panic_dump
0x00000000401345d0 vt_read_general_reg
0x00000000401346f1 vt_write_general_reg
0x00000000401347e5 vt_read_control_reg
0x0000000040134856 vt_read_sreg_sel
0x000000004013495f vt_read_sreg_acr
0x00000000401349b6 vt_read_sreg_base
0x0000000040134a38 vt_read_sreg_limit
0x0000000040134ab5 vt_read_ip
0x0000000040134abe vt_write_ip
0x0000000040134ad9 vt_read_flags
0x0000000040134afb vt_write_flags
0x0000000040134b21 vt_read_gdtr
0x0000000040134b31 vt_write_gdtr
0x0000000040134b41 vt_read_idtr
0x0000000040134b7f vt_write_idtr
0x0000000040134baf vt_write_control_reg
0x00000000401350b6 vt_get_current_regs_in_vmcs
0x0000000040135364 vt_get_vmcs_regs_in_vmcs
0x00000000401354dc vt_write_realmode_seg
0x0000000040135628 vt_writing_sreg
0x00000000401356b4 vt_reset
0x000000004013599a prepare_for_sleep
0x0000000040135a5c cancel_sleep
0x0000000040135a81 wakeup_main
0x0000000040135b0c wakeup_cont
0x0000000040135c4f wakeup_init
0x0000000040135c96 call_xsetbv
0x0000000040135d20 mpumul_64_64
0x0000000040135d40 mpudiv_128_32
0x0000000040135d60 ipchecksum
0x0000000040135df0 asm_vmlaunch_regs_32
0x0000000040135e70 asm_vmresume_regs_32
0x0000000040135ef0 asm_vmrun_regs_32
0x0000000040135f50 asm_vmlaunch_regs_64
0x0000000040136030 asm_vmresume_regs_64
0x0000000040136110 asm_vmrun_regs_64
0x00000000401361b4 callrealmode_start
0x00000000401361ca callrealmode_start2
0x0000000040136656 move_vmm_area32
0x0000000040136656 callrealmode_end
0x000000004013667b move_vmm_area64
0x00000000401366a8 int_handler
0x0000000040136720 int_callfunc
0x0000000040137000 syscall_entry_sysexit
0x000000004013702c syscall_entry_lret
0x000000004013705c ret_to_user32
0x0000000040137068 syscall_entry_sysret64
0x00000000401370b0 ret_to_user64
0x0000000040138000 processuser_sysenter
0x0000000040139000 processuser_no_sysenter
0x000000004013a000 processuser_syscall
0x000000004013b140 memset
0x000000004013b1c0 memcpy
0x000000004013b200 strcmp
0x000000004013b240 memcmp
0x000000004013b280 strlen
0x000000004013b298 sx_handler
0x000000004013b2f0 thread_switch
0x000000004013b310 thread_start0
0x000000004013b350 core_init
0x000000004013b35c core_mm_read_guest_phys
0x000000004013b3c6 core_mm_write_guest_phys
0x000000004013b430 alloc_handler_descriptor
0x000000004013b443 core_io_modify_handler
0x000000004013b505 core_io_unregister_handler
0x000000004013b57f core_io_handle_default
0x000000004013b813 panic_oom
0x000000004013b826 core_io_register_handler
0x000000004013b960 matched_drhd_u
0x000000004013b9b9 parse_dmar_bios_report
0x000000004013b9d9 ieee1394_init
0x000000004013ba4e iommu_setup
0x000000004013ba50 iodom_init
0x000000004013bc19 add_remap
0x000000004013bc96 create_dom
0x000000004013bfaf pci_conceal_new_device
0x000000004013c38a pci_conceal_config_data_handler
0x000000004013c3a7 pci_save_config_addr
0x000000004013c3b4 pci_restore_config_addr
0x000000004013c3c1 pci_append_device
0x000000004013c3ee pci_config_addr_handler
0x000000004013c432 pci_register_driver
0x000000004013c4c7 pci_read_config_data8
0x000000004013c508 pci_read_config_data16
0x000000004013c54a pci_read_config_data32
0x000000004013c58b pci_write_config_data8
0x000000004013c5cc pci_write_config_data16
0x000000004013c60e pci_write_config_data32
0x000000004013c64f pci_read_config_data_port
0x000000004013c67c pci_write_config_data_port
0x000000004013c6ad pci_readwrite_config_mmio
0x000000004013c773 pci_config_data_handler
0x000000004013cab9 pci_read_config_mmio
0x000000004013cae4 pci_write_config_mmio
0x000000004013cb0f pci_handle_default_config_write
0x000000004013cc08 pci_handle_default_config_read
0x000000004013cc88 pci_config_mmio_handler
0x000000004013ce81 pci_print_device
0x000000004013d343 pci_possible_new_device
0x000000004013d36b security_storage_check_lba
0x000000004013fb26 ahci_new
0x000000004013fd9f ahci_config_read
0x000000004013fe05 ahci_config_write
0x0000000040140094 ata_bm_handle_command
0x00000000401401ba ata_bm_handle_status
0x0000000040140258 ata_bm_handle_prd_table
0x0000000040140344 ata_bm_handler
0x000000004014043e ata_get_cmd_type
0x0000000040140767 ata_handle_queued_status
0x00000000401410c2 ata_channel_lock
0x000000004014112a ata_channel_unlock
0x000000004014114c ata_cmdblk_handler
0x0000000040141256 ata_ctlblk_handler
0x0000000040141e4b ata_ahci_mode
0x0000000040142334 ata_init_io_handler
0x00000000401423ca ata_set_bm_handler
0x000000004014241d ata_set_cmdblk_handler
0x0000000040142456 ata_set_ctlblk_handler
0x0000000040142491 ata_config_read
0x000000004014255f ata_config_write
0x00000000401426fd ata_init_vendor
0x0000000040142720 ata_bm_handle_device_specific
0x0000000040142820 atapi_handle_config_data
0x0000000040142a6b atapi_handle_interrupt_reason
0x0000000040142ab1 atapi_handle_pio_identify_packet
0x0000000040142c37 atapi_handle_packet_data
0x0000000040142c3d atapi_handle_cmd_packet
0x0000000040142caf packet_handle_through
0x0000000040142cdd packet_handle_nondata
0x0000000040142cf2 packet_handle_config
0x0000000040142d37 packet_handle_rw
0x0000000040142dc2 packet_handle_invalid
0x0000000040142dd7 packet_handle_command
0x0000000040142e10 uhci_init
0x000000004014366e uhci_current_frame_number
0x0000000040143680 dump_td_byvirt
0x0000000040143848 dump_td
0x0000000040143915 dump_qh
0x0000000040143aef dump_frame
0x0000000040143bf0 uhci_dump_all
0x0000000040143da9 uhci_error_status_string
0x0000000040144053 uhci_shadow_buffer
0x00000000401442b5 uhci_framelist_monitor
0x000000004014621a scan_gframelist
0x0000000040146ad9 uhci_create_urb
0x0000000040146c30 uhci_destroy_urb
0x0000000040146d59 uhci_destroy_unlinked_urbs
0x0000000040146e2d uhci_deactivate_urb
0x000000004014718e uhci_activate_urb
0x0000000040147706 uhci_reactivate_urb
0x00000000401477a8 uhci_submit_control
0x0000000040147dcc uhci_submit_interrupt
0x0000000040147e35 uhci_submit_bulk
0x0000000040147e9e uhci_check_urb_advance
0x0000000040147eca uhci_check_advance
0x00000000401480d0 init_hframelist
0x00000000401483a1 ehci_conceal_portroute
0x00000000401483dc ehci_init
0x000000004014a217 ehci_dump_qtd
0x000000004014a277 ehci_dump_qtdm
0x000000004014a2ab ehci_dump_alist
0x000000004014a368 ehci_dump_urblist
0x000000004014a3f2 ehci_dump_urb
0x000000004014a888 ehci_dump_async
0x000000004014acef ehci_dump_all
0x000000004014c269 ehci_shadow_buffer
0x000000004014c505 get_gurb_by_address
0x000000004014c59c shadow_and_activate_urb
0x000000004014c886 ehci_deactivate_urb
0x000000004014ca0d deactivate_and_delete_urb
0x000000004014cc85 ehci_check_urb_advance
0x000000004014ce49 ehci_check_advance
0x000000004014d082 ehci_shadow_async_list
0x000000004014d18a ehci_cleanup_urbs
0x000000004014d2e4 ehci_end_monitor_async
0x000000004014d34e ehci_monitor_async_list
0x000000004014d9d4 ehci_submit_control
0x000000004014df71 ehci_submit_bulk
0x000000004014df77 ehci_submit_interrupt
0x000000004014faa2 usbmsc_init_handle
0x000000004014fe6b usbhub_init_handle
0x000000004014fedf hub_portdevice_register
0x00000000401505a9 usbccid_init_handle
0x00000000401506c0 usb_set_debug
0x00000000401506c7 usb_init
0x00000000401506c9 usb_find_busses
0x00000000401507a6 usb_get_busses
0x00000000401507ae usb_get_bus
0x00000000401507d9 usb_find_devices
0x0000000040150824 usb_open
0x0000000040150881 usb_close
0x0000000040150894 usb_resetep
0x000000004015089a usb_clear_halt
0x00000000401508a0 usb_reset
0x00000000401508a6 usb_claim_interface
0x00000000401508af usb_release_interface
0x00000000401508bc usb_set_configuration
0x0000000040150b65 usb_set_altinterface
0x0000000040150e10 usb_control_msg
0x0000000040151171 usb_get_string
0x00000000401514ae usb_get_string_simple
0x000000004015169a usb_get_descriptor
0x00000000401519dc usb_get_descriptor_early
0x0000000040151d2a usb_get_descriptor_by_endpoint
0x0000000040152070 usb_bulk_write
0x00000000401522a2 usb_interrupt_write
0x00000000401524d4 usb_bulk_read
0x0000000040152780 usb_interrupt_read
0x0000000040152a2c usb_register_host
0x0000000040152b4d usb_unregister_devices
0x0000000040152b80 usb_sc_lock
0x0000000040152be3 usb_sc_unlock
0x00000000401532e3 free_config_descriptors
0x0000000040153433 free_device
0x0000000040153598 handle_connect_status
0x0000000040153695 handle_port_reset
0x0000000040153768 dprintf_port
0x0000000040154664 usb_init_device_monitor
0x00000000401546c9 usb_new_dev_handle
0x000000004015476f usbhid_init_handle
0x0000000040154896 usb_hook_process
0x0000000040154b9a usb_hook_register
0x0000000040154c70 usb_hook_unregister
0x0000000040154ce3 _dprintf
0x0000000040154d39 _dprintft
0x0000000040154dee pro100_io_handler
0x0000000040154df4 pro100_config_read
0x0000000040154e0e pro100_config_write
0x0000000040154f31 pro100_init
0x0000000040154f4e pro100_init_vpn_client
0x0000000040154f80 pro100_sleep
0x0000000040154fae pro100_beep
0x0000000040154fd7 pro100_get_ctx
0x0000000040155060 pro100_alloc_page
0x0000000040155095 pro100_free_page
0x00000000401550ad pro100_get_op_size
0x00000000401550e6 pro100_mem_read
0x000000004015514a pro100_read_send_packet
0x000000004015531b pro100_mem_write
0x000000004015537d pro100_write
0x00000000401553eb pro100_read
0x0000000040155466 pro100_wait_cu_ru_accepable
0x00000000401554a2 pro100_init_cu_base_addr
0x00000000401554f5 pro100_init_ru_base_addr
0x0000000040155548 pro100_flush
0x0000000040155566 pro100_exec_cu_op
0x00000000401556af pro100_send_packet_to_line
0x00000000401557e6 pro100_generate_int
0x0000000040155818 pro100_write_recv_packet
0x000000004015596a pro100_proc_guest_op
0x0000000040155b78 pro100_get_int_bit_string
0x0000000040155bee pro100_get_stat_ack_string
0x0000000040155c59 pro100_get_cu_command_string
0x0000000040155cc7 pro100_get_ru_command_string
0x0000000040155d05 pro100_init_recv_buffer
0x0000000040155e38 pro100_poll_ru
0x0000000040155f32 pro100_hook_write
0x00000000401561ec pro100_hook_read
0x00000000401563aa pro100_mm_handler
0x00000000401564ef pro100_alloc_recv_buffer
0x0000000040156550 pro100_new
0x0000000040158846 storage_premap_buf
0x000000004015884c storage_premap_handle_sectors
0x0000000040158b72 storage_get_num_hc
0x0000000040158b9f storage_hc_open
0x0000000040158c94 storage_hc_close
0x0000000040158ce1 storage_hc_hook_register
0x0000000040158d59 storage_hc_hook_unregister
0x0000000040158df6 storage_hc_register
0x0000000040158fbc storage_hc_unregister
0x00000000401590b1 storage_hc_scandev
0x00000000401590f9 storage_hc_dev_open
0x0000000040159226 storage_hc_dev_atacommand
0x00000000401593f9 storage_hc_dev_close
0x00000000401594ac storage_io_init
0x00000000401594bc storage_io_deinit
0x00000000401594ca storage_io_get_num_devices
0x000000004015958d storage_io_aget_size
0x00000000401596e0 storage_io_aread
0x00000000401598fd storage_io_awrite
0x000000004015a063 storage_handle_sectors
0x000000004015a285 storage_new
0x000000004015a6f6 storage_free
0x000000004015a704 storage_init
0x000000004015a91b aes_xts_init
0x000000004015a960 crypto_find
0x000000004015a9a6 crypto_register
0x000000004015a9e9 crypto_init
0x000000004015aa3b crypto_none_init
0x000000004015aa6d vpn_GetCurrentCpuId
0x000000004015aa7b vpn_GetTickCount
0x000000004015aaac vpn_NewTimer
0x000000004015aac9 vpn_SetTimer
0x000000004015aae0 vpn_FreeTimer
0x000000004015aaee vpn_GetPhysicalNicInfo
0x000000004015ab00 vpn_SendPhysicalNic
0x000000004015ab12 vpn_SetPhysicalNicRecvCallback
0x000000004015ab24 vpn_GetVirtualNicInfo
0x000000004015ab37 vpn_SendVirtualNic
0x000000004015ab4a vpn_SetVirtualNicRecvCallback
0x000000004015ab5d vpn_premap_PhysicalNicRecv
0x000000004015ab79 vpn_premap_VirtualNicRecv
0x000000004015ab95 vpn_premap_recvbuf
0x000000004015ab9b vpn_ic_rsa_sign
0x000000004015ac2f vpn_new_nic
0x000000004015b222 msg_vpn_GetCurrentCpuId
0x000000004015b23d msg_vpn_ic_rsa_sign
0x000000004015b2f6 msg_vpn_GetTickCount
0x000000004015b337 msg_vpn_GetPhysicalNicInfo
0x000000004015b399 msg_vpn_SendPhysicalNic
0x000000004015b44a msg_vpn_SetPhysicalNicRecvCallback
0x000000004015b49a msg_vpn_GetVirtualNicInfo
0x000000004015b4fc msg_vpn_SendVirtualNic
0x000000004015b5ad msg_vpn_SetVirtualNicRecvCallback
0x000000004015b5fd msg_vpn_NewTimer
0x000000004015b660 msg_vpn_SetTimer
0x000000004015b72c msg_vpn_FreeTimer
0x000000004015b798 vpn_start
0x000000004015bae9 vpn_user_init
0x000000004015bb40 SeFreeConfigEntryList
0x000000004015bb8e SeGetConfigEntry
0x000000004015bbfb SeGetConfigStr
0x000000004015bc29 SeGetConfigBin
0x000000004015bc51 SeGetConfigInt64
0x000000004015bc79 SeGetConfigInt
0x000000004015bca1 SeGetConfigBool
0x000000004015bd43 SeIsSplitChar
0x000000004015bdae SeGetKeyAndValue
0x000000004015bf3f SeLoadConfigEntryListFromBuf
0x000000004015c0b0 SeLoadConfigEntryList
0x000000004015c0f0 SePKeyPasswordCallbackFunction
0x000000004015c122 SeDhFree
0x000000004015c158 SeRsaVerifyWithPadding
0x000000004015c21a SeRsaSignWithPadding
0x000000004015c2c5 SeRsaPublicDecrypt
0x000000004015c34d SeRsaPrivateEncrypt
0x000000004015c3d5 SeRsaPrivateDecrypt
0x000000004015c45a SeRsaPublicEncrypt
0x000000004015c4df SeGetCertSha1
0x000000004015c51c SeGetCertMd5
0x000000004015c559 SeBinToBigNum
0x000000004015c58d SeDhCompute
0x000000004015c600 SeBufToBigNum
0x000000004015c621 SeBigNumToBuf
0x000000004015c69b SeDhNew
0x000000004015c755 SeDhNewGroup2
0x000000004015c76d SeRsaPublicToBuf
0x000000004015c7b4 SeRsaPublicToBin
0x000000004015c80c SeRsaPublicSize
0x000000004015c864 SeCheckSignature
0x000000004015c892 SeGetKeyFromCert
0x000000004015c8c4 SeCompareCert
0x000000004015c8f2 SeCheckCertAndKey
0x000000004015c920 SeIsBase64
0x000000004015c99d SeFreePKey
0x000000004015c9b1 SeFreeKey
0x000000004015c9cc SeCheckCert
0x000000004015ca19 SeIsCertSignedByCert
0x000000004015ca79 SeBioToKey
0x000000004015cb77 SeGetCertIssuerName
0x000000004015cbfe SeGetCertSubjectName
0x000000004015cc8a SeFreeX509
0x000000004015cc9e SeFreeCert
0x000000004015ccbf SeFreeBio
0x000000004015ccd3 SeNewBio
0x000000004015cce9 SeRsaGen
0x000000004015ce3c SeKeyToBio
0x000000004015cf32 SeCertToBio
0x000000004015cf7d SeBioToBuf
0x000000004015cffe SeBigNumToStr
0x000000004015d06c SeKeyToBuf
0x000000004015d0c0 SeX509ToCert
0x000000004015d168 SeBioToCert
0x000000004015d1b4 SeSaveKey
0x000000004015d209 SeCertToBuf
0x000000004015d25d SeSaveCert
0x000000004015d2af SeBufToBio
0x000000004015d30b SeBufToCert
0x000000004015d351 SeCloneCert
0x000000004015d39d SeLoadCert
0x000000004015d3df SeBufToKey
0x000000004015d42f SeCloneKey
0x000000004015d48c SeLoadKey
0x000000004015d52e SeSha1
0x000000004015d552 SeMacSha1
0x000000004015d6b9 SeMacSha196
0x000000004015d6fd SeHashForSignBySHA1
0x000000004015d7a6 SeRsaVerifyWithSha1
0x000000004015d84e SeRsaSignWithSha1
0x000000004015d8df SeMd5
0x000000004015d903 SeDes3Encrypt
0x000000004015d984 SeDes3Decrypt
0x000000004015da05 SeDesNewKeyValue
0x000000004015da5b SeDes3NewKey
0x000000004015dac9 SeDesNewKey
0x000000004015dadd SeDesRandKeyValue
0x000000004015dafa SeDes3RandKey
0x000000004015db36 SeDesRandKey
0x000000004015db73 SeDesFreeKeyValue
0x000000004015db8e SeDes3FreeKey
0x000000004015dbbb SeDesFreeKey
0x000000004015dbc9 SeRand
0x000000004015dbe1 SeRand64
0x000000004015dbfe SeRand32
0x000000004015dc1a SeRand16
0x000000004015dc37 SeRand8
0x000000004015dc54 SeRand1
0x000000004015dc6a SeInitCrypto
0x000000004015dca7 SeFreeCrypto
0x000000004015dcc0 SeIkeStrToPassword
0x000000004015dd1a SeIkePhase1CryptIdToKeySize
0x000000004015dd35 SeIkePhase2CryptIdToKeySize
0x000000004015dd50 SeIkeStrToPhase1Mode
0x000000004015dd80 SeIkeStrToPhase1CryptId
0x000000004015ddd9 SeIkeStrToPhase1HashId
0x000000004015de0b SeIkeStrToPhase2CryptId
0x000000004015de69 SeIkeStrToPhase2HashId
0x000000004015de9b SeIkeIsZeroIP
0x000000004015ded1 SeIkeInitIPv6Address
0x000000004015df0e SeIkeInitIPv4Address
0x000000004015df41 SeIkeGetIPv6Address
0x000000004015df63 SeIkeGetIPv4Address
0x000000004015df81 SeIkeIpAddressToStr
0x000000004015dfbe SeIkeBuildDataPayload
0x000000004015dffb SeIkeBuildTransformValue
0x000000004015e0bb SeIkeBuildTransformValueList
0x000000004015e125 SeIkeBuildTransformPayload
0x000000004015e1a0 SeIkeBuildIdPayload
0x000000004015e216 SeIkeBuildCertPayload
0x000000004015e276 SeIkeBuildCertRequestPayload
0x000000004015e2d6 SeIkeBuildNoticePayload
0x000000004015e363 SeIkeBuildDeletePayload
0x000000004015e43c SeIkeGetFirstPayloadType
0x000000004015e45d SeIkeBuildPayloadList
0x000000004015e567 SeIkeBuildSaPayload
0x000000004015e5ef SeIkeBuildProposalPayload
0x000000004015e69c SeIkeBuildPayload
0x000000004015e779 SeIkeGetPayload
0x000000004015e7c2 SeIkeGetPayloadNum
0x000000004015e7ff SeIkeNewPayload
0x000000004015e810 SeIkeNewDeletePayload
0x000000004015e840 SeIkeNewNoticePayload
0x000000004015e8c7 SeIkeNewCertRequestPayload
0x000000004015e916 SeIkeNewCertPayload
0x000000004015e965 SeIkeNewIdPayload
0x000000004015e9cc SeIkeNewTransformPayload
0x000000004015e9ff SeIkeNewProposalPayload
0x000000004015ea70 SeIkeNewSaPayload
0x000000004015ea90 SeIkeNewDataPayload
0x000000004015eac9 SeIkeNewTransformValue
0x000000004015eaea SeIkeFreeTransformValueList
0x000000004015eb25 SeIkeParseTransformValueList
0x000000004015ec9b SeIkeParseTransformPayload
0x000000004015ecfd SeIkeFreeTransformPayload
0x000000004015ed1e SeIkeParseIdPayload
0x000000004015ed92 SeIkeFreeIdPayload
0x000000004015edb3 SeIkeParseCertPayload
0x000000004015ee11 SeIkeFreeCertPayload
0x000000004015ee32 SeIkeParseCertRequestPayload
0x000000004015ee90 SeIkeFreeCertRequestPayload
0x000000004015eeb1 SeIkeParseNoticePayload
0x000000004015ef6e SeIkeFreeNoticePayload
0x000000004015efa5 SeIkeFreeDeletePayload
0x000000004015eff6 SeIkeParseDeletePayload
0x000000004015f0ee SeIkeParseDataPayload
0x000000004015f11b SeIkeFreeDataPayload
0x000000004015f132 SeIkeFreePayloadList
0x000000004015f16d SeIkeFreeSaPayload
0x000000004015f18c SeIkeFreeProposalPayload