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
|
/*************************************************************************/
/* Copyright (c) 2015 dx, http://kaimi.ru */
/* */
/* Permission is hereby granted, free of charge, to any person */
/* obtaining a copy of this software and associated documentation */
/* files (the "Software"), to deal in the Software without */
/* restriction, including without limitation the rights to use, */
/* copy, modify, merge, publish, distribute, sublicense, and/or */
/* sell copies of the Software, and to permit persons to whom the */
/* Software is furnished to do so, subject to the following conditions: */
/* The above copyright notice and this permission notice shall be */
/* included in all copies or substantial portions of the Software. */
/* */
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
#include <string.h>
#include "pe_debug.h"
#include "utils.h"
namespace pe_bliss
{
using namespace pe_win;
//DEBUG
//Default constructor
debug_info::debug_info()
:characteristics_(0),
time_stamp_(0),
major_version_(0), minor_version_(0),
type_(0),
size_of_data_(0),
address_of_raw_data_(0),
pointer_to_raw_data_(0),
advanced_info_type_(advanced_info_none)
{}
//Constructor from data
debug_info::debug_info(const image_debug_directory& debug)
:characteristics_(debug.Characteristics),
time_stamp_(debug.TimeDateStamp),
major_version_(debug.MajorVersion), minor_version_(debug.MinorVersion),
type_(debug.Type),
size_of_data_(debug.SizeOfData),
address_of_raw_data_(debug.AddressOfRawData),
pointer_to_raw_data_(debug.PointerToRawData),
advanced_info_type_(advanced_info_none)
{}
//Returns debug characteristics
uint32_t debug_info::get_characteristics() const
{
return characteristics_;
}
//Returns debug datetimestamp
uint32_t debug_info::get_time_stamp() const
{
return time_stamp_;
}
//Returns major version
uint32_t debug_info::get_major_version() const
{
return major_version_;
}
//Returns minor version
uint32_t debug_info::get_minor_version() const
{
return minor_version_;
}
//Returns type of debug info (unchecked)
uint32_t debug_info::get_type_raw() const
{
return type_;
}
//Returns type of debug info from debug_info_type enumeration
debug_info::debug_info_type debug_info::get_type() const
{
//Determine debug type
switch(type_)
{
case image_debug_type_coff:
return debug_type_coff;
case image_debug_type_codeview:
return debug_type_codeview;
case image_debug_type_fpo:
return debug_type_fpo;
case image_debug_type_misc:
return debug_type_misc;
case image_debug_type_exception:
return debug_type_exception;
case image_debug_type_fixup:
return debug_type_fixup;
case image_debug_type_omap_to_src:
return debug_type_omap_to_src;
case image_debug_type_omap_from_src:
return debug_type_omap_from_src;
case image_debug_type_borland:
return debug_type_borland;
case image_debug_type_clsid:
return debug_type_clsid;
case image_debug_type_reserved10:
return debug_type_reserved10;
}
return debug_type_unknown;
}
//Returns size of debug data (internal, .pdb or other file doesn't count)
uint32_t debug_info::get_size_of_data() const
{
return size_of_data_;
}
//Returns RVA of debug info when mapped to memory or zero, if info is not mapped
uint32_t debug_info::get_rva_of_raw_data() const
{
return address_of_raw_data_;
}
//Returns raw file pointer to raw data
uint32_t debug_info::get_pointer_to_raw_data() const
{
return pointer_to_raw_data_;
}
//Copy constructor
debug_info::debug_info(const debug_info& info)
:characteristics_(info.characteristics_),
time_stamp_(info.time_stamp_),
major_version_(info.major_version_), minor_version_(info.minor_version_),
type_(info.type_),
size_of_data_(info.size_of_data_),
address_of_raw_data_(info.address_of_raw_data_),
pointer_to_raw_data_(info.pointer_to_raw_data_),
advanced_info_type_(info.advanced_info_type_)
{
copy_advanced_info(info);
}
//Copy assignment operator
debug_info& debug_info::operator=(const debug_info& info)
{
copy_advanced_info(info);
characteristics_ = info.characteristics_;
time_stamp_ = info.time_stamp_;
major_version_ = info.major_version_;
minor_version_ = info.minor_version_;
type_ = info.type_;
size_of_data_ = info.size_of_data_;
address_of_raw_data_ = info.address_of_raw_data_;
pointer_to_raw_data_ = info.pointer_to_raw_data_;
advanced_info_type_ = info.advanced_info_type_;
return *this;
}
//Default constructor
debug_info::advanced_info::advanced_info()
:adv_pdb_7_0_info(0) //Zero pointer to advanced data
{}
//Returns true if advanced debug info is present
bool debug_info::advanced_info::is_present() const
{
return adv_pdb_7_0_info != 0;
}
//Helper for advanced debug information copying
void debug_info::copy_advanced_info(const debug_info& info)
{
free_present_advanced_info();
switch(info.advanced_info_type_)
{
case advanced_info_pdb_7_0:
advanced_debug_info_.adv_pdb_7_0_info = new pdb_7_0_info(*info.advanced_debug_info_.adv_pdb_7_0_info);
break;
case advanced_info_pdb_2_0:
advanced_debug_info_.adv_pdb_2_0_info = new pdb_2_0_info(*info.advanced_debug_info_.adv_pdb_2_0_info);
break;
case advanced_info_misc:
advanced_debug_info_.adv_misc_info = new misc_debug_info(*info.advanced_debug_info_.adv_misc_info);
break;
case advanced_info_coff:
advanced_debug_info_.adv_coff_info = new coff_debug_info(*info.advanced_debug_info_.adv_coff_info);
break;
default:
break;
}
advanced_info_type_ = info.advanced_info_type_;
}
//Helper for clearing any present advanced debug information
void debug_info::free_present_advanced_info()
{
switch(advanced_info_type_)
{
case advanced_info_pdb_7_0:
delete advanced_debug_info_.adv_pdb_7_0_info;
break;
case advanced_info_pdb_2_0:
delete advanced_debug_info_.adv_pdb_2_0_info;
break;
case advanced_info_misc:
delete advanced_debug_info_.adv_misc_info;
break;
case advanced_info_coff:
delete advanced_debug_info_.adv_coff_info;
break;
default:
break;
}
advanced_debug_info_.adv_pdb_7_0_info = 0;
advanced_info_type_ = advanced_info_none;
}
//Destructor
debug_info::~debug_info()
{
free_present_advanced_info();
}
//Sets advanced debug information
void debug_info::set_advanced_debug_info(const pdb_7_0_info& info)
{
free_present_advanced_info();
advanced_debug_info_.adv_pdb_7_0_info = new pdb_7_0_info(info);
advanced_info_type_ = advanced_info_pdb_7_0;
}
void debug_info::set_advanced_debug_info(const pdb_2_0_info& info)
{
free_present_advanced_info();
advanced_debug_info_.adv_pdb_2_0_info = new pdb_2_0_info(info);
advanced_info_type_ = advanced_info_pdb_2_0;
}
void debug_info::set_advanced_debug_info(const misc_debug_info& info)
{
free_present_advanced_info();
advanced_debug_info_.adv_misc_info = new misc_debug_info(info);
advanced_info_type_ = advanced_info_misc;
}
void debug_info::set_advanced_debug_info(const coff_debug_info& info)
{
free_present_advanced_info();
advanced_debug_info_.adv_coff_info = new coff_debug_info(info);
advanced_info_type_ = advanced_info_coff;
}
//Returns advanced debug information type
debug_info::advanced_info_type debug_info::get_advanced_info_type() const
{
return advanced_info_type_;
}
//Returns advanced debug information or throws an exception,
//if requested information type is not contained by structure
template<>
const pdb_7_0_info debug_info::get_advanced_debug_info<pdb_7_0_info>() const
{
if(advanced_info_type_ != advanced_info_pdb_7_0)
throw pe_exception("Debug info structure does not contain PDB 7.0 data", pe_exception::advanced_debug_information_request_error);
return *advanced_debug_info_.adv_pdb_7_0_info;
}
template<>
const pdb_2_0_info debug_info::get_advanced_debug_info<pdb_2_0_info>() const
{
if(advanced_info_type_ != advanced_info_pdb_2_0)
throw pe_exception("Debug info structure does not contain PDB 2.0 data", pe_exception::advanced_debug_information_request_error);
return *advanced_debug_info_.adv_pdb_2_0_info;
}
template<>
const misc_debug_info debug_info::get_advanced_debug_info<misc_debug_info>() const
{
if(advanced_info_type_ != advanced_info_misc)
throw pe_exception("Debug info structure does not contain MISC data", pe_exception::advanced_debug_information_request_error);
return *advanced_debug_info_.adv_misc_info;
}
template<>
const coff_debug_info debug_info::get_advanced_debug_info<coff_debug_info>() const
{
if(advanced_info_type_ != advanced_info_coff)
throw pe_exception("Debug info structure does not contain COFF data", pe_exception::advanced_debug_information_request_error);
return *advanced_debug_info_.adv_coff_info;
}
//Sets advanced debug information type, if no advanced info structure available
void debug_info::set_advanced_info_type(advanced_info_type type)
{
free_present_advanced_info();
if(advanced_info_type_ >= advanced_info_codeview_4_0) //Don't set info type for those types, which have advanced info structures
advanced_info_type_ = type;
}
//Default constructor
pdb_7_0_info::pdb_7_0_info()
:age_(0)
{
memset(&guid_, 0, sizeof(guid_));
}
//Constructor from data
pdb_7_0_info::pdb_7_0_info(const CV_INFO_PDB70* info)
:age_(info->Age), guid_(info->Signature),
pdb_file_name_(reinterpret_cast<const char*>(info->PdbFileName)) //Must be checked before for null-termination
{}
//Returns debug PDB 7.0 structure GUID
const guid pdb_7_0_info::get_guid() const
{
return guid_;
}
//Returns age of build
uint32_t pdb_7_0_info::get_age() const
{
return age_;
}
//Returns PDB file name / path
const std::string& pdb_7_0_info::get_pdb_file_name() const
{
return pdb_file_name_;
}
//Default constructor
pdb_2_0_info::pdb_2_0_info()
:age_(0), signature_(0)
{}
//Constructor from data
pdb_2_0_info::pdb_2_0_info(const CV_INFO_PDB20* info)
:age_(info->Age), signature_(info->Signature),
pdb_file_name_(reinterpret_cast<const char*>(info->PdbFileName)) //Must be checked before for null-termination
{}
//Returns debug PDB 2.0 structure signature
uint32_t pdb_2_0_info::get_signature() const
{
return signature_;
}
//Returns age of build
uint32_t pdb_2_0_info::get_age() const
{
return age_;
}
//Returns PDB file name / path
const std::string& pdb_2_0_info::get_pdb_file_name() const
{
return pdb_file_name_;
}
//Default constructor
misc_debug_info::misc_debug_info()
:data_type_(0), unicode_(false)
{}
//Constructor from data
misc_debug_info::misc_debug_info(const image_debug_misc* info)
:data_type_(info->DataType), unicode_(info->Unicode ? true : false)
{
//IMAGE_DEBUG_MISC::Data must be checked before!
if(info->Unicode)
{
#ifdef PE_BLISS_WINDOWS
debug_data_unicode_ = std::wstring(reinterpret_cast<const wchar_t*>(info->Data), (info->Length - sizeof(image_debug_misc) + 1 /* BYTE[1] in the end of structure */) / 2);
#else
debug_data_unicode_ = pe_utils::from_ucs2(u16string(reinterpret_cast<const unicode16_t*>(info->Data), (info->Length - sizeof(image_debug_misc) + 1 /* BYTE[1] in the end of structure */) / 2));
#endif
pe_utils::strip_nullbytes(debug_data_unicode_); //Strip nullbytes in the end of string
}
else
{
debug_data_ansi_ = std::string(reinterpret_cast<const char*>(info->Data), info->Length - sizeof(image_debug_misc) + 1 /* BYTE[1] in the end of structure */);
pe_utils::strip_nullbytes(debug_data_ansi_); //Strip nullbytes in the end of string
}
}
//Returns debug data type
uint32_t misc_debug_info::get_data_type() const
{
return data_type_;
}
//Returns true if data type is exe name
bool misc_debug_info::is_exe_name() const
{
return data_type_ == image_debug_misc_exename;
}
//Returns true if debug data is UNICODE
bool misc_debug_info::is_unicode() const
{
return unicode_;
}
//Returns debug data (ANSI)
const std::string& misc_debug_info::get_data_ansi() const
{
return debug_data_ansi_;
}
//Returns debug data (UNICODE)
const std::wstring& misc_debug_info::get_data_unicode() const
{
return debug_data_unicode_;
}
//Default constructor
coff_debug_info::coff_debug_info()
:number_of_symbols_(0),
lva_to_first_symbol_(0),
number_of_line_numbers_(0),
lva_to_first_line_number_(0),
rva_to_first_byte_of_code_(0),
rva_to_last_byte_of_code_(0),
rva_to_first_byte_of_data_(0),
rva_to_last_byte_of_data_(0)
{}
//Constructor from data
coff_debug_info::coff_debug_info(const image_coff_symbols_header* info)
:number_of_symbols_(info->NumberOfSymbols),
lva_to_first_symbol_(info->LvaToFirstSymbol),
number_of_line_numbers_(info->NumberOfLinenumbers),
lva_to_first_line_number_(info->LvaToFirstLinenumber),
rva_to_first_byte_of_code_(info->RvaToFirstByteOfCode),
rva_to_last_byte_of_code_(info->RvaToLastByteOfCode),
rva_to_first_byte_of_data_(info->RvaToFirstByteOfData),
rva_to_last_byte_of_data_(info->RvaToLastByteOfData)
{}
//Returns number of symbols
uint32_t coff_debug_info::get_number_of_symbols() const
{
return number_of_symbols_;
}
//Returns virtual address of the first symbol
uint32_t coff_debug_info::get_lva_to_first_symbol() const
{
return lva_to_first_symbol_;
}
//Returns number of line-number entries
uint32_t coff_debug_info::get_number_of_line_numbers() const
{
return number_of_line_numbers_;
}
//Returns virtual address of the first line-number entry
uint32_t coff_debug_info::get_lva_to_first_line_number() const
{
return lva_to_first_line_number_;
}
//Returns relative virtual address of the first byte of code
uint32_t coff_debug_info::get_rva_to_first_byte_of_code() const
{
return rva_to_first_byte_of_code_;
}
//Returns relative virtual address of the last byte of code
uint32_t coff_debug_info::get_rva_to_last_byte_of_code() const
{
return rva_to_last_byte_of_code_;
}
//Returns relative virtual address of the first byte of data
uint32_t coff_debug_info::get_rva_to_first_byte_of_data() const
{
return rva_to_first_byte_of_data_;
}
//Returns relative virtual address of the last byte of data
uint32_t coff_debug_info::get_rva_to_last_byte_of_data() const
{
return rva_to_last_byte_of_data_;
}
//Returns COFF symbols list
const coff_debug_info::coff_symbols_list& coff_debug_info::get_symbols() const
{
return symbols_;
}
//Adds COFF symbol
void coff_debug_info::add_symbol(const coff_symbol& sym)
{
symbols_.push_back(sym);
}
//Default constructor
coff_debug_info::coff_symbol::coff_symbol()
:storage_class_(0),
index_(0),
section_number_(0), rva_(0),
type_(0),
is_filename_(false)
{}
//Returns storage class
uint32_t coff_debug_info::coff_symbol::get_storage_class() const
{
return storage_class_;
}
//Returns symbol index
uint32_t coff_debug_info::coff_symbol::get_index() const
{
return index_;
}
//Returns section number
uint32_t coff_debug_info::coff_symbol::get_section_number() const
{
return section_number_;
}
//Returns RVA
uint32_t coff_debug_info::coff_symbol::get_rva() const
{
return rva_;
}
//Returns true if structure contains file name
bool coff_debug_info::coff_symbol::is_file() const
{
return is_filename_;
}
//Returns text data (symbol or file name)
const std::string& coff_debug_info::coff_symbol::get_symbol() const
{
return name_;
}
//Sets storage class
void coff_debug_info::coff_symbol::set_storage_class(uint32_t storage_class)
{
storage_class_ = storage_class;
}
//Sets symbol index
void coff_debug_info::coff_symbol::set_index(uint32_t index)
{
index_ = index;
}
//Sets section number
void coff_debug_info::coff_symbol::set_section_number(uint32_t section_number)
{
section_number_ = section_number;
}
//Sets RVA
void coff_debug_info::coff_symbol::set_rva(uint32_t rva)
{
rva_ = rva;
}
//Sets file name
void coff_debug_info::coff_symbol::set_file_name(const std::string& file_name)
{
name_ = file_name;
is_filename_ = true;
}
//Sets symbol name
void coff_debug_info::coff_symbol::set_symbol_name(const std::string& symbol_name)
{
name_ = symbol_name;
is_filename_ = false;
}
//Returns type
uint16_t coff_debug_info::coff_symbol::get_type() const
{
return type_;
}
//Sets type
void coff_debug_info::coff_symbol::set_type(uint16_t type)
{
type_ = type;
}
//Returns debug information list
const debug_info_list get_debug_information(const pe_base& pe)
{
debug_info_list ret;
//If there's no debug directory, return empty list
if(!pe.has_debug())
return ret;
//Check the length in bytes of the section containing debug directory
if(pe.section_data_length_from_rva(pe.get_directory_rva(image_directory_entry_debug), pe.get_directory_rva(image_directory_entry_debug), section_data_virtual, true)
< sizeof(image_debug_directory))
throw pe_exception("Incorrect debug directory", pe_exception::incorrect_debug_directory);
unsigned long current_pos = pe.get_directory_rva(image_directory_entry_debug);
//First IMAGE_DEBUG_DIRECTORY table
image_debug_directory directory = pe.section_data_from_rva<image_debug_directory>(current_pos, section_data_virtual, true);
if(!pe_utils::is_sum_safe(pe.get_directory_rva(image_directory_entry_debug), pe.get_directory_size(image_directory_entry_debug)))
throw pe_exception("Incorrect debug directory", pe_exception::incorrect_debug_directory);
//Iterate over all IMAGE_DEBUG_DIRECTORY directories
while(directory.PointerToRawData
&& current_pos < pe.get_directory_rva(image_directory_entry_debug) + pe.get_directory_size(image_directory_entry_debug))
{
//Create debug information structure
debug_info info(directory);
//Find raw debug data
const pe_base::debug_data_list& debug_datas = pe.get_raw_debug_data_list();
pe_base::debug_data_list::const_iterator it = debug_datas.find(directory.PointerToRawData);
if(it != debug_datas.end()) //If it exists, we'll do some detailed debug info research
{
const std::string& debug_data = (*it).second;
switch(directory.Type)
{
case image_debug_type_coff:
{
//Check data length
if(debug_data.length() < sizeof(image_coff_symbols_header))
throw pe_exception("Incorrect debug directory", pe_exception::incorrect_debug_directory);
//Get coff header structure pointer
const image_coff_symbols_header* coff = reinterpret_cast<const image_coff_symbols_header*>(debug_data.data());
//Check possible overflows
if(coff->NumberOfSymbols >= pe_utils::max_dword / sizeof(image_symbol)
|| !pe_utils::is_sum_safe(coff->NumberOfSymbols * sizeof(image_symbol), coff->LvaToFirstSymbol))
throw pe_exception("Incorrect debug directory", pe_exception::incorrect_debug_directory);
//Check data length again
if(debug_data.length() < coff->NumberOfSymbols * sizeof(image_symbol) + coff->LvaToFirstSymbol)
throw pe_exception("Incorrect debug directory", pe_exception::incorrect_debug_directory);
//Create COFF debug info structure
coff_debug_info coff_info(coff);
//Enumerate debug symbols data
for(uint32_t i = 0; i < coff->NumberOfSymbols; ++i)
{
//Safe sum (checked above)
const image_symbol* sym = reinterpret_cast<const image_symbol*>(debug_data.data() + i * sizeof(image_symbol) + coff->LvaToFirstSymbol);
coff_debug_info::coff_symbol symbol;
symbol.set_index(i); //Save symbol index
symbol.set_storage_class(sym->StorageClass); //Save storage class
symbol.set_type(sym->Type); //Save storage class
//Check data length again
if(!pe_utils::is_sum_safe(i, sym->NumberOfAuxSymbols)
|| (i + sym->NumberOfAuxSymbols) > coff->NumberOfSymbols
|| debug_data.length() < (i + 1) * sizeof(image_symbol) + coff->LvaToFirstSymbol + sym->NumberOfAuxSymbols * sizeof(image_symbol))
throw pe_exception("Incorrect debug directory", pe_exception::incorrect_debug_directory);
//If symbol is filename
if(sym->StorageClass == image_sym_class_file)
{
//Save file name, it is situated just after this IMAGE_SYMBOL structure
std::string file_name(reinterpret_cast<const char*>(debug_data.data() + (i + 1) * sizeof(image_symbol)), sym->NumberOfAuxSymbols * sizeof(image_symbol));
pe_utils::strip_nullbytes(file_name);
symbol.set_file_name(file_name);
//Save symbol info
coff_info.add_symbol(symbol);
//Move to next symbol
i += sym->NumberOfAuxSymbols;
continue;
}
//Dump some other symbols
if(((sym->StorageClass == image_sym_class_static)
&& (sym->NumberOfAuxSymbols == 0)
&& (sym->SectionNumber == 1))
||
((sym->StorageClass == image_sym_class_external)
&& ISFCN(sym->Type)
&& (sym->SectionNumber > 0))
)
{
//Save RVA and section number
symbol.set_section_number(sym->SectionNumber);
symbol.set_rva(sym->Value);
//If symbol has short name
if(sym->N.Name.Short)
{
//Copy and save symbol name
char name_buff[9];
memcpy(name_buff, sym->N.ShortName, 8);
name_buff[8] = '\0';
symbol.set_symbol_name(name_buff);
}
else
{
//Symbol has long name
//Check possible overflows
if(!pe_utils::is_sum_safe(coff->LvaToFirstSymbol + coff->NumberOfSymbols * sizeof(image_symbol), sym->N.Name.Long))
throw pe_exception("Incorrect debug directory", pe_exception::incorrect_debug_directory);
//Here we have an offset to the string table
uint32_t symbol_offset = coff->LvaToFirstSymbol + coff->NumberOfSymbols * sizeof(image_symbol) + sym->N.Name.Long;
//Check data length
if(debug_data.length() < symbol_offset)
throw pe_exception("Incorrect debug directory", pe_exception::incorrect_debug_directory);
//Check symbol name for null-termination
if(!pe_utils::is_null_terminated(debug_data.data() + symbol_offset, debug_data.length() - symbol_offset))
throw pe_exception("Incorrect debug directory", pe_exception::incorrect_debug_directory);
//Save symbol name
symbol.set_symbol_name(debug_data.data() + symbol_offset);
}
//Save symbol info
coff_info.add_symbol(symbol);
//Move to next symbol
i += sym->NumberOfAuxSymbols;
continue;
}
}
info.set_advanced_debug_info(coff_info);
}
break;
case image_debug_type_codeview:
{
//Check data length
if(debug_data.length() < sizeof(OMFSignature*))
throw pe_exception("Incorrect debug directory", pe_exception::incorrect_debug_directory);
//Get POMFSignature structure pointer from the very beginning of debug data
const OMFSignature* sig = reinterpret_cast<const OMFSignature*>(debug_data.data());
if(!memcmp(sig->Signature, "RSDS", 4))
{
//Signature is "RSDS" - PDB 7.0
//Check data length
if(debug_data.length() < sizeof(CV_INFO_PDB70))
throw pe_exception("Incorrect debug directory", pe_exception::incorrect_debug_directory);
const CV_INFO_PDB70* pdb_data = reinterpret_cast<const CV_INFO_PDB70*>(debug_data.data());
//Check PDB file name null-termination
if(!pe_utils::is_null_terminated(pdb_data->PdbFileName, debug_data.length() - (sizeof(CV_INFO_PDB70) - 1 /* BYTE of filename in structure */)))
throw pe_exception("Incorrect debug directory", pe_exception::incorrect_debug_directory);
info.set_advanced_debug_info(pdb_7_0_info(pdb_data));
}
else if(!memcmp(sig->Signature, "NB10", 4))
{
//Signature is "NB10" - PDB 2.0
//Check data length
if(debug_data.length() < sizeof(CV_INFO_PDB20))
throw pe_exception("Incorrect debug directory", pe_exception::incorrect_debug_directory);
const CV_INFO_PDB20* pdb_data = reinterpret_cast<const CV_INFO_PDB20*>(debug_data.data());
//Check PDB file name null-termination
if(!pe_utils::is_null_terminated(pdb_data->PdbFileName, debug_data.length() - (sizeof(CV_INFO_PDB20) - 1 /* BYTE of filename in structure */)))
throw pe_exception("Incorrect debug directory", pe_exception::incorrect_debug_directory);
info.set_advanced_debug_info(pdb_2_0_info(pdb_data));
}
else if(!memcmp(sig->Signature, "NB09", 4))
{
//CodeView 4.0, no structures available
info.set_advanced_info_type(debug_info::advanced_info_codeview_4_0);
}
else if(!memcmp(sig->Signature, "NB11", 4))
{
//CodeView 5.0, no structures available
info.set_advanced_info_type(debug_info::advanced_info_codeview_5_0);
}
else if(!memcmp(sig->Signature, "NB05", 4))
{
//Other CodeView, no structures available
info.set_advanced_info_type(debug_info::advanced_info_codeview);
}
}
break;
case image_debug_type_misc:
{
//Check data length
if(debug_data.length() < sizeof(image_debug_misc))
throw pe_exception("Incorrect debug directory", pe_exception::incorrect_debug_directory);
//Get misc structure pointer
const image_debug_misc* misc_data = reinterpret_cast<const image_debug_misc*>(debug_data.data());
//Check misc data length
if(debug_data.length() < misc_data->Length /* Total length of record */)
throw pe_exception("Incorrect debug directory", pe_exception::incorrect_debug_directory);
//Save advanced information
info.set_advanced_debug_info(misc_debug_info(misc_data));
}
break;
}
}
//Save debug information structure
ret.push_back(info);
//Check possible overflow
if(!pe_utils::is_sum_safe(current_pos, sizeof(image_debug_directory)))
throw pe_exception("Incorrect debug directory", pe_exception::incorrect_debug_directory);
//Go to next debug entry
current_pos += sizeof(image_debug_directory);
directory = pe.section_data_from_rva<image_debug_directory>(current_pos, section_data_virtual, true);
}
return ret;
}
}
|