blob: b9577b5d1f2b61dcec0946a0b3901f6ab195f60f [file] [log] [blame]
Greg Claytonf754f882011-09-09 20:33:05 +00001//===-- ObjectFilePECOFF.cpp ------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "ObjectFilePECOFF.h"
Adrian McCarthyf7d18932015-11-20 23:09:11 +000011#include "WindowsMiniDump.h"
Greg Claytonf754f882011-09-09 20:33:05 +000012
Charles Davis237ad972013-08-27 05:04:33 +000013#include "llvm/Support/COFF.h"
Greg Claytonf754f882011-09-09 20:33:05 +000014
15#include "lldb/Core/ArchSpec.h"
Greg Claytonf754f882011-09-09 20:33:05 +000016#include "lldb/Core/FileSpecList.h"
17#include "lldb/Core/Module.h"
Greg Claytonf4d6de62013-04-24 22:29:28 +000018#include "lldb/Core/ModuleSpec.h"
Greg Claytonf754f882011-09-09 20:33:05 +000019#include "lldb/Core/PluginManager.h"
20#include "lldb/Core/Section.h"
21#include "lldb/Core/StreamFile.h"
Greg Claytonf754f882011-09-09 20:33:05 +000022#include "lldb/Core/Timer.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000023#include "lldb/Host/FileSpec.h"
Greg Claytonf754f882011-09-09 20:33:05 +000024#include "lldb/Symbol/ObjectFile.h"
Adrian McCarthyf7d18932015-11-20 23:09:11 +000025#include "lldb/Target/Process.h"
Virgile Bello2756adf2014-03-08 17:17:20 +000026#include "lldb/Target/SectionLoadList.h"
27#include "lldb/Target/Target.h"
Zachary Turner666cc0b2017-03-04 01:30:05 +000028#include "lldb/Utility/DataBufferHeap.h"
29#include "lldb/Utility/DataBufferLLVM.h"
Zachary Turnerbf9a7732017-02-02 21:39:50 +000030#include "lldb/Utility/StreamString.h"
Zachary Turner666cc0b2017-03-04 01:30:05 +000031#include "lldb/Utility/UUID.h"
Greg Claytonf754f882011-09-09 20:33:05 +000032
Zachary Turner3f4a4b32017-02-24 18:56:49 +000033#include "llvm/Support/MemoryBuffer.h"
34
Kate Stoneb9c1b512016-09-06 20:57:50 +000035#define IMAGE_DOS_SIGNATURE 0x5A4D // MZ
36#define IMAGE_NT_SIGNATURE 0x00004550 // PE00
37#define OPT_HEADER_MAGIC_PE32 0x010b
38#define OPT_HEADER_MAGIC_PE32_PLUS 0x020b
Greg Claytonf754f882011-09-09 20:33:05 +000039
Greg Claytonf754f882011-09-09 20:33:05 +000040using namespace lldb;
41using namespace lldb_private;
42
Kate Stoneb9c1b512016-09-06 20:57:50 +000043void ObjectFilePECOFF::Initialize() {
44 PluginManager::RegisterPlugin(
45 GetPluginNameStatic(), GetPluginDescriptionStatic(), CreateInstance,
46 CreateMemoryInstance, GetModuleSpecifications, SaveCore);
Greg Claytonf754f882011-09-09 20:33:05 +000047}
48
Kate Stoneb9c1b512016-09-06 20:57:50 +000049void ObjectFilePECOFF::Terminate() {
50 PluginManager::UnregisterPlugin(CreateInstance);
Greg Claytonf754f882011-09-09 20:33:05 +000051}
52
Kate Stoneb9c1b512016-09-06 20:57:50 +000053lldb_private::ConstString ObjectFilePECOFF::GetPluginNameStatic() {
54 static ConstString g_name("pe-coff");
55 return g_name;
Greg Claytonf754f882011-09-09 20:33:05 +000056}
57
Kate Stoneb9c1b512016-09-06 20:57:50 +000058const char *ObjectFilePECOFF::GetPluginDescriptionStatic() {
59 return "Portable Executable and Common Object File Format object file reader "
60 "(32 and 64 bit)";
Greg Claytonf754f882011-09-09 20:33:05 +000061}
62
Kate Stoneb9c1b512016-09-06 20:57:50 +000063ObjectFile *ObjectFilePECOFF::CreateInstance(const lldb::ModuleSP &module_sp,
64 DataBufferSP &data_sp,
65 lldb::offset_t data_offset,
66 const lldb_private::FileSpec *file,
67 lldb::offset_t file_offset,
68 lldb::offset_t length) {
69 if (!data_sp) {
Zachary Turner666cc0b2017-03-04 01:30:05 +000070 data_sp =
71 DataBufferLLVM::CreateFromPath(file->GetPath(), length, file_offset);
Zachary Turner3f4a4b32017-02-24 18:56:49 +000072 if (!data_sp)
73 return nullptr;
Kate Stoneb9c1b512016-09-06 20:57:50 +000074 data_offset = 0;
75 }
Greg Claytonf754f882011-09-09 20:33:05 +000076
Zachary Turner3f4a4b32017-02-24 18:56:49 +000077 if (!ObjectFilePECOFF::MagicBytesMatch(data_sp))
78 return nullptr;
79
80 // Update the data to contain the entire file if it doesn't already
81 if (data_sp->GetByteSize() < length) {
Zachary Turner666cc0b2017-03-04 01:30:05 +000082 data_sp =
83 DataBufferLLVM::CreateFromPath(file->GetPath(), length, file_offset);
Zachary Turner3f4a4b32017-02-24 18:56:49 +000084 if (!data_sp)
85 return nullptr;
Kate Stoneb9c1b512016-09-06 20:57:50 +000086 }
Zachary Turner3f4a4b32017-02-24 18:56:49 +000087
88 auto objfile_ap = llvm::make_unique<ObjectFilePECOFF>(
89 module_sp, data_sp, data_offset, file, file_offset, length);
90 if (!objfile_ap || !objfile_ap->ParseHeader())
91 return nullptr;
92
93 return objfile_ap.release();
Greg Claytonf754f882011-09-09 20:33:05 +000094}
95
Kate Stoneb9c1b512016-09-06 20:57:50 +000096ObjectFile *ObjectFilePECOFF::CreateMemoryInstance(
97 const lldb::ModuleSP &module_sp, lldb::DataBufferSP &data_sp,
98 const lldb::ProcessSP &process_sp, lldb::addr_t header_addr) {
Walter Erquinigo344546b2016-10-17 20:28:19 +000099 if (!data_sp || !ObjectFilePECOFF::MagicBytesMatch(data_sp))
100 return nullptr;
101 auto objfile_ap = llvm::make_unique<ObjectFilePECOFF>(
102 module_sp, data_sp, process_sp, header_addr);
103 if (objfile_ap.get() && objfile_ap->ParseHeader()) {
104 return objfile_ap.release();
105 }
106 return nullptr;
Greg Claytonc9660542012-02-05 02:38:54 +0000107}
108
Kate Stoneb9c1b512016-09-06 20:57:50 +0000109size_t ObjectFilePECOFF::GetModuleSpecifications(
110 const lldb_private::FileSpec &file, lldb::DataBufferSP &data_sp,
111 lldb::offset_t data_offset, lldb::offset_t file_offset,
112 lldb::offset_t length, lldb_private::ModuleSpecList &specs) {
113 const size_t initial_count = specs.GetSize();
Virgile Bello89eb1ba2014-03-09 09:59:36 +0000114
Kate Stoneb9c1b512016-09-06 20:57:50 +0000115 if (ObjectFilePECOFF::MagicBytesMatch(data_sp)) {
116 DataExtractor data;
117 data.SetData(data_sp, data_offset, length);
118 data.SetByteOrder(eByteOrderLittle);
Virgile Bello89eb1ba2014-03-09 09:59:36 +0000119
Kate Stoneb9c1b512016-09-06 20:57:50 +0000120 dos_header_t dos_header;
121 coff_header_t coff_header;
Virgile Bello89eb1ba2014-03-09 09:59:36 +0000122
Kate Stoneb9c1b512016-09-06 20:57:50 +0000123 if (ParseDOSHeader(data, dos_header)) {
124 lldb::offset_t offset = dos_header.e_lfanew;
125 uint32_t pe_signature = data.GetU32(&offset);
126 if (pe_signature != IMAGE_NT_SIGNATURE)
127 return false;
128 if (ParseCOFFHeader(data, &offset, coff_header)) {
129 ArchSpec spec;
130 if (coff_header.machine == MachineAmd64) {
131 spec.SetTriple("x86_64-pc-windows");
132 specs.Append(ModuleSpec(file, spec));
133 } else if (coff_header.machine == MachineX86) {
134 spec.SetTriple("i386-pc-windows");
135 specs.Append(ModuleSpec(file, spec));
136 spec.SetTriple("i686-pc-windows");
137 specs.Append(ModuleSpec(file, spec));
Virgile Bello89eb1ba2014-03-09 09:59:36 +0000138 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000139 }
Virgile Bello89eb1ba2014-03-09 09:59:36 +0000140 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000141 }
Virgile Bello89eb1ba2014-03-09 09:59:36 +0000142
Kate Stoneb9c1b512016-09-06 20:57:50 +0000143 return specs.GetSize() - initial_count;
Greg Claytonf4d6de62013-04-24 22:29:28 +0000144}
145
Kate Stoneb9c1b512016-09-06 20:57:50 +0000146bool ObjectFilePECOFF::SaveCore(const lldb::ProcessSP &process_sp,
147 const lldb_private::FileSpec &outfile,
148 lldb_private::Error &error) {
149 return SaveMiniDump(process_sp, outfile, error);
Adrian McCarthyf7d18932015-11-20 23:09:11 +0000150}
151
Kate Stoneb9c1b512016-09-06 20:57:50 +0000152bool ObjectFilePECOFF::MagicBytesMatch(DataBufferSP &data_sp) {
153 DataExtractor data(data_sp, eByteOrderLittle, 4);
154 lldb::offset_t offset = 0;
155 uint16_t magic = data.GetU16(&offset);
156 return magic == IMAGE_DOS_SIGNATURE;
157}
Greg Claytonf4d6de62013-04-24 22:29:28 +0000158
Kate Stoneb9c1b512016-09-06 20:57:50 +0000159lldb::SymbolType ObjectFilePECOFF::MapSymbolType(uint16_t coff_symbol_type) {
160 // TODO: We need to complete this mapping of COFF symbol types to LLDB ones.
161 // For now, here's a hack to make sure our function have types.
162 const auto complex_type =
163 coff_symbol_type >> llvm::COFF::SCT_COMPLEX_TYPE_SHIFT;
164 if (complex_type == llvm::COFF::IMAGE_SYM_DTYPE_FUNCTION) {
165 return lldb::eSymbolTypeCode;
166 }
167 return lldb::eSymbolTypeInvalid;
168}
169
170ObjectFilePECOFF::ObjectFilePECOFF(const lldb::ModuleSP &module_sp,
171 DataBufferSP &data_sp,
172 lldb::offset_t data_offset,
173 const FileSpec *file,
174 lldb::offset_t file_offset,
175 lldb::offset_t length)
176 : ObjectFile(module_sp, file, file_offset, length, data_sp, data_offset),
177 m_dos_header(), m_coff_header(), m_coff_header_opt(), m_sect_headers(),
178 m_entry_point_address() {
179 ::memset(&m_dos_header, 0, sizeof(m_dos_header));
180 ::memset(&m_coff_header, 0, sizeof(m_coff_header));
181 ::memset(&m_coff_header_opt, 0, sizeof(m_coff_header_opt));
182}
183
Walter Erquinigo344546b2016-10-17 20:28:19 +0000184ObjectFilePECOFF::ObjectFilePECOFF(const lldb::ModuleSP &module_sp,
185 DataBufferSP &header_data_sp,
186 const lldb::ProcessSP &process_sp,
187 addr_t header_addr)
188 : ObjectFile(module_sp, process_sp, header_addr, header_data_sp),
189 m_dos_header(), m_coff_header(), m_coff_header_opt(), m_sect_headers(),
190 m_entry_point_address() {
191 ::memset(&m_dos_header, 0, sizeof(m_dos_header));
192 ::memset(&m_coff_header, 0, sizeof(m_coff_header));
193 ::memset(&m_coff_header_opt, 0, sizeof(m_coff_header_opt));
194}
195
Kate Stoneb9c1b512016-09-06 20:57:50 +0000196ObjectFilePECOFF::~ObjectFilePECOFF() {}
197
198bool ObjectFilePECOFF::ParseHeader() {
199 ModuleSP module_sp(GetModule());
200 if (module_sp) {
201 std::lock_guard<std::recursive_mutex> guard(module_sp->GetMutex());
202 m_sect_headers.clear();
203 m_data.SetByteOrder(eByteOrderLittle);
Greg Claytonc7bece562013-01-25 18:06:21 +0000204 lldb::offset_t offset = 0;
Greg Claytonf754f882011-09-09 20:33:05 +0000205
Kate Stoneb9c1b512016-09-06 20:57:50 +0000206 if (ParseDOSHeader(m_data, m_dos_header)) {
207 offset = m_dos_header.e_lfanew;
208 uint32_t pe_signature = m_data.GetU32(&offset);
209 if (pe_signature != IMAGE_NT_SIGNATURE)
210 return false;
211 if (ParseCOFFHeader(m_data, &offset, m_coff_header)) {
212 if (m_coff_header.hdrsize > 0)
213 ParseCOFFOptionalHeader(&offset);
214 ParseSectionHeaders(offset);
215 }
216 return true;
Adrian McCarthyc35b91c2016-01-26 00:58:09 +0000217 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000218 }
219 return false;
Adrian McCarthyc35b91c2016-01-26 00:58:09 +0000220}
Greg Claytonf754f882011-09-09 20:33:05 +0000221
Kate Stoneb9c1b512016-09-06 20:57:50 +0000222bool ObjectFilePECOFF::SetLoadAddress(Target &target, addr_t value,
223 bool value_is_offset) {
224 bool changed = false;
225 ModuleSP module_sp = GetModule();
226 if (module_sp) {
227 size_t num_loaded_sections = 0;
228 SectionList *section_list = GetSectionList();
229 if (section_list) {
230 if (!value_is_offset) {
231 value -= m_image_base;
232 }
Greg Claytonf754f882011-09-09 20:33:05 +0000233
Kate Stoneb9c1b512016-09-06 20:57:50 +0000234 const size_t num_sections = section_list->GetSize();
235 size_t sect_idx = 0;
Greg Claytonf754f882011-09-09 20:33:05 +0000236
Kate Stoneb9c1b512016-09-06 20:57:50 +0000237 for (sect_idx = 0; sect_idx < num_sections; ++sect_idx) {
238 // Iterate through the object file sections to find all
239 // of the sections that have SHF_ALLOC in their flag bits.
240 SectionSP section_sp(section_list->GetSectionAtIndex(sect_idx));
241 if (section_sp && !section_sp->IsThreadSpecific()) {
242 if (target.GetSectionLoadList().SetSectionLoadAddress(
243 section_sp, section_sp->GetFileAddress() + value))
244 ++num_loaded_sections;
Greg Clayton28469ca2011-09-10 01:04:42 +0000245 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000246 }
247 changed = num_loaded_sections > 0;
Greg Claytonf754f882011-09-09 20:33:05 +0000248 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000249 }
250 return changed;
Greg Claytonf754f882011-09-09 20:33:05 +0000251}
252
Kate Stoneb9c1b512016-09-06 20:57:50 +0000253ByteOrder ObjectFilePECOFF::GetByteOrder() const { return eByteOrderLittle; }
Virgile Bello2756adf2014-03-08 17:17:20 +0000254
Kate Stoneb9c1b512016-09-06 20:57:50 +0000255bool ObjectFilePECOFF::IsExecutable() const {
256 return (m_coff_header.flags & llvm::COFF::IMAGE_FILE_DLL) == 0;
Virgile Bello2756adf2014-03-08 17:17:20 +0000257}
258
Kate Stoneb9c1b512016-09-06 20:57:50 +0000259uint32_t ObjectFilePECOFF::GetAddressByteSize() const {
260 if (m_coff_header_opt.magic == OPT_HEADER_MAGIC_PE32_PLUS)
261 return 8;
262 else if (m_coff_header_opt.magic == OPT_HEADER_MAGIC_PE32)
Greg Claytonf754f882011-09-09 20:33:05 +0000263 return 4;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000264 return 4;
Greg Claytonf754f882011-09-09 20:33:05 +0000265}
266
267//----------------------------------------------------------------------
268// NeedsEndianSwap
269//
Kate Stoneb9c1b512016-09-06 20:57:50 +0000270// Return true if an endian swap needs to occur when extracting data
Greg Claytonf754f882011-09-09 20:33:05 +0000271// from this file.
272//----------------------------------------------------------------------
Kate Stoneb9c1b512016-09-06 20:57:50 +0000273bool ObjectFilePECOFF::NeedsEndianSwap() const {
Greg Claytonf754f882011-09-09 20:33:05 +0000274#if defined(__LITTLE_ENDIAN__)
Kate Stoneb9c1b512016-09-06 20:57:50 +0000275 return false;
Greg Claytonf754f882011-09-09 20:33:05 +0000276#else
Kate Stoneb9c1b512016-09-06 20:57:50 +0000277 return true;
Greg Claytonf754f882011-09-09 20:33:05 +0000278#endif
279}
280//----------------------------------------------------------------------
281// ParseDOSHeader
282//----------------------------------------------------------------------
Kate Stoneb9c1b512016-09-06 20:57:50 +0000283bool ObjectFilePECOFF::ParseDOSHeader(DataExtractor &data,
284 dos_header_t &dos_header) {
285 bool success = false;
286 lldb::offset_t offset = 0;
287 success = data.ValidOffsetForDataOfSize(0, sizeof(dos_header));
Greg Claytonf754f882011-09-09 20:33:05 +0000288
Kate Stoneb9c1b512016-09-06 20:57:50 +0000289 if (success) {
290 dos_header.e_magic = data.GetU16(&offset); // Magic number
291 success = dos_header.e_magic == IMAGE_DOS_SIGNATURE;
292
293 if (success) {
294 dos_header.e_cblp = data.GetU16(&offset); // Bytes on last page of file
295 dos_header.e_cp = data.GetU16(&offset); // Pages in file
296 dos_header.e_crlc = data.GetU16(&offset); // Relocations
297 dos_header.e_cparhdr =
298 data.GetU16(&offset); // Size of header in paragraphs
299 dos_header.e_minalloc =
300 data.GetU16(&offset); // Minimum extra paragraphs needed
301 dos_header.e_maxalloc =
302 data.GetU16(&offset); // Maximum extra paragraphs needed
303 dos_header.e_ss = data.GetU16(&offset); // Initial (relative) SS value
304 dos_header.e_sp = data.GetU16(&offset); // Initial SP value
305 dos_header.e_csum = data.GetU16(&offset); // Checksum
306 dos_header.e_ip = data.GetU16(&offset); // Initial IP value
307 dos_header.e_cs = data.GetU16(&offset); // Initial (relative) CS value
308 dos_header.e_lfarlc =
309 data.GetU16(&offset); // File address of relocation table
310 dos_header.e_ovno = data.GetU16(&offset); // Overlay number
311
312 dos_header.e_res[0] = data.GetU16(&offset); // Reserved words
313 dos_header.e_res[1] = data.GetU16(&offset); // Reserved words
314 dos_header.e_res[2] = data.GetU16(&offset); // Reserved words
315 dos_header.e_res[3] = data.GetU16(&offset); // Reserved words
316
317 dos_header.e_oemid =
318 data.GetU16(&offset); // OEM identifier (for e_oeminfo)
319 dos_header.e_oeminfo =
320 data.GetU16(&offset); // OEM information; e_oemid specific
321 dos_header.e_res2[0] = data.GetU16(&offset); // Reserved words
322 dos_header.e_res2[1] = data.GetU16(&offset); // Reserved words
323 dos_header.e_res2[2] = data.GetU16(&offset); // Reserved words
324 dos_header.e_res2[3] = data.GetU16(&offset); // Reserved words
325 dos_header.e_res2[4] = data.GetU16(&offset); // Reserved words
326 dos_header.e_res2[5] = data.GetU16(&offset); // Reserved words
327 dos_header.e_res2[6] = data.GetU16(&offset); // Reserved words
328 dos_header.e_res2[7] = data.GetU16(&offset); // Reserved words
329 dos_header.e_res2[8] = data.GetU16(&offset); // Reserved words
330 dos_header.e_res2[9] = data.GetU16(&offset); // Reserved words
331
332 dos_header.e_lfanew =
333 data.GetU32(&offset); // File address of new exe header
334 }
335 }
336 if (!success)
337 memset(&dos_header, 0, sizeof(dos_header));
338 return success;
339}
Greg Claytonf754f882011-09-09 20:33:05 +0000340
341//----------------------------------------------------------------------
342// ParserCOFFHeader
343//----------------------------------------------------------------------
Kate Stoneb9c1b512016-09-06 20:57:50 +0000344bool ObjectFilePECOFF::ParseCOFFHeader(DataExtractor &data,
345 lldb::offset_t *offset_ptr,
346 coff_header_t &coff_header) {
347 bool success =
348 data.ValidOffsetForDataOfSize(*offset_ptr, sizeof(coff_header));
349 if (success) {
350 coff_header.machine = data.GetU16(offset_ptr);
351 coff_header.nsects = data.GetU16(offset_ptr);
352 coff_header.modtime = data.GetU32(offset_ptr);
353 coff_header.symoff = data.GetU32(offset_ptr);
354 coff_header.nsyms = data.GetU32(offset_ptr);
355 coff_header.hdrsize = data.GetU16(offset_ptr);
356 coff_header.flags = data.GetU16(offset_ptr);
357 }
358 if (!success)
359 memset(&coff_header, 0, sizeof(coff_header));
360 return success;
Greg Claytonf754f882011-09-09 20:33:05 +0000361}
362
Kate Stoneb9c1b512016-09-06 20:57:50 +0000363bool ObjectFilePECOFF::ParseCOFFOptionalHeader(lldb::offset_t *offset_ptr) {
364 bool success = false;
365 const lldb::offset_t end_offset = *offset_ptr + m_coff_header.hdrsize;
366 if (*offset_ptr < end_offset) {
367 success = true;
368 m_coff_header_opt.magic = m_data.GetU16(offset_ptr);
369 m_coff_header_opt.major_linker_version = m_data.GetU8(offset_ptr);
370 m_coff_header_opt.minor_linker_version = m_data.GetU8(offset_ptr);
371 m_coff_header_opt.code_size = m_data.GetU32(offset_ptr);
372 m_coff_header_opt.data_size = m_data.GetU32(offset_ptr);
373 m_coff_header_opt.bss_size = m_data.GetU32(offset_ptr);
374 m_coff_header_opt.entry = m_data.GetU32(offset_ptr);
375 m_coff_header_opt.code_offset = m_data.GetU32(offset_ptr);
Greg Claytonf754f882011-09-09 20:33:05 +0000376
Kate Stoneb9c1b512016-09-06 20:57:50 +0000377 const uint32_t addr_byte_size = GetAddressByteSize();
Greg Claytonf754f882011-09-09 20:33:05 +0000378
Kate Stoneb9c1b512016-09-06 20:57:50 +0000379 if (*offset_ptr < end_offset) {
380 if (m_coff_header_opt.magic == OPT_HEADER_MAGIC_PE32) {
381 // PE32 only
382 m_coff_header_opt.data_offset = m_data.GetU32(offset_ptr);
383 } else
384 m_coff_header_opt.data_offset = 0;
Virgile Bello2756adf2014-03-08 17:17:20 +0000385
Kate Stoneb9c1b512016-09-06 20:57:50 +0000386 if (*offset_ptr < end_offset) {
387 m_coff_header_opt.image_base =
388 m_data.GetMaxU64(offset_ptr, addr_byte_size);
389 m_coff_header_opt.sect_alignment = m_data.GetU32(offset_ptr);
390 m_coff_header_opt.file_alignment = m_data.GetU32(offset_ptr);
391 m_coff_header_opt.major_os_system_version = m_data.GetU16(offset_ptr);
392 m_coff_header_opt.minor_os_system_version = m_data.GetU16(offset_ptr);
393 m_coff_header_opt.major_image_version = m_data.GetU16(offset_ptr);
394 m_coff_header_opt.minor_image_version = m_data.GetU16(offset_ptr);
395 m_coff_header_opt.major_subsystem_version = m_data.GetU16(offset_ptr);
396 m_coff_header_opt.minor_subsystem_version = m_data.GetU16(offset_ptr);
397 m_coff_header_opt.reserved1 = m_data.GetU32(offset_ptr);
398 m_coff_header_opt.image_size = m_data.GetU32(offset_ptr);
399 m_coff_header_opt.header_size = m_data.GetU32(offset_ptr);
400 m_coff_header_opt.checksum = m_data.GetU32(offset_ptr);
401 m_coff_header_opt.subsystem = m_data.GetU16(offset_ptr);
402 m_coff_header_opt.dll_flags = m_data.GetU16(offset_ptr);
403 m_coff_header_opt.stack_reserve_size =
404 m_data.GetMaxU64(offset_ptr, addr_byte_size);
405 m_coff_header_opt.stack_commit_size =
406 m_data.GetMaxU64(offset_ptr, addr_byte_size);
407 m_coff_header_opt.heap_reserve_size =
408 m_data.GetMaxU64(offset_ptr, addr_byte_size);
409 m_coff_header_opt.heap_commit_size =
410 m_data.GetMaxU64(offset_ptr, addr_byte_size);
411 m_coff_header_opt.loader_flags = m_data.GetU32(offset_ptr);
412 uint32_t num_data_dir_entries = m_data.GetU32(offset_ptr);
413 m_coff_header_opt.data_dirs.clear();
414 m_coff_header_opt.data_dirs.resize(num_data_dir_entries);
415 uint32_t i;
416 for (i = 0; i < num_data_dir_entries; i++) {
417 m_coff_header_opt.data_dirs[i].vmaddr = m_data.GetU32(offset_ptr);
418 m_coff_header_opt.data_dirs[i].vmsize = m_data.GetU32(offset_ptr);
Greg Claytonf754f882011-09-09 20:33:05 +0000419 }
Greg Claytonf754f882011-09-09 20:33:05 +0000420
Kate Stoneb9c1b512016-09-06 20:57:50 +0000421 m_file_offset = m_coff_header_opt.image_base;
422 m_image_base = m_coff_header_opt.image_base;
423 }
424 }
425 }
426 // Make sure we are on track for section data which follows
427 *offset_ptr = end_offset;
428 return success;
429}
Greg Claytonf754f882011-09-09 20:33:05 +0000430
Walter Erquinigo344546b2016-10-17 20:28:19 +0000431DataExtractor ObjectFilePECOFF::ReadImageData(uint32_t offset, size_t size) {
432 if (m_file) {
433 DataBufferSP buffer_sp(m_file.ReadFileContents(offset, size));
434 return DataExtractor(buffer_sp, GetByteOrder(), GetAddressByteSize());
435 }
436 ProcessSP process_sp(m_process_wp.lock());
437 DataExtractor data;
438 if (process_sp) {
439 auto data_ap = llvm::make_unique<DataBufferHeap>(size, 0);
440 Error readmem_error;
441 size_t bytes_read =
442 process_sp->ReadMemory(m_image_base + offset, data_ap->GetBytes(),
443 data_ap->GetByteSize(), readmem_error);
444 if (bytes_read == size) {
445 DataBufferSP buffer_sp(data_ap.release());
446 data.SetData(buffer_sp, 0, buffer_sp->GetByteSize());
447 }
448 }
449 return data;
450}
451
Greg Claytonf754f882011-09-09 20:33:05 +0000452//----------------------------------------------------------------------
453// ParseSectionHeaders
454//----------------------------------------------------------------------
Kate Stoneb9c1b512016-09-06 20:57:50 +0000455bool ObjectFilePECOFF::ParseSectionHeaders(
456 uint32_t section_header_data_offset) {
457 const uint32_t nsects = m_coff_header.nsects;
458 m_sect_headers.clear();
Greg Claytonf754f882011-09-09 20:33:05 +0000459
Kate Stoneb9c1b512016-09-06 20:57:50 +0000460 if (nsects > 0) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000461 const size_t section_header_byte_size = nsects * sizeof(section_header_t);
Walter Erquinigo344546b2016-10-17 20:28:19 +0000462 DataExtractor section_header_data =
463 ReadImageData(section_header_data_offset, section_header_byte_size);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000464
465 lldb::offset_t offset = 0;
466 if (section_header_data.ValidOffsetForDataOfSize(
467 offset, section_header_byte_size)) {
468 m_sect_headers.resize(nsects);
469
470 for (uint32_t idx = 0; idx < nsects; ++idx) {
471 const void *name_data = section_header_data.GetData(&offset, 8);
472 if (name_data) {
473 memcpy(m_sect_headers[idx].name, name_data, 8);
474 m_sect_headers[idx].vmsize = section_header_data.GetU32(&offset);
475 m_sect_headers[idx].vmaddr = section_header_data.GetU32(&offset);
476 m_sect_headers[idx].size = section_header_data.GetU32(&offset);
477 m_sect_headers[idx].offset = section_header_data.GetU32(&offset);
478 m_sect_headers[idx].reloff = section_header_data.GetU32(&offset);
479 m_sect_headers[idx].lineoff = section_header_data.GetU32(&offset);
480 m_sect_headers[idx].nreloc = section_header_data.GetU16(&offset);
481 m_sect_headers[idx].nline = section_header_data.GetU16(&offset);
482 m_sect_headers[idx].flags = section_header_data.GetU32(&offset);
Greg Claytonf754f882011-09-09 20:33:05 +0000483 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000484 }
Greg Claytonf754f882011-09-09 20:33:05 +0000485 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000486 }
487
488 return m_sect_headers.empty() == false;
Greg Claytonf754f882011-09-09 20:33:05 +0000489}
490
Kate Stoneb9c1b512016-09-06 20:57:50 +0000491bool ObjectFilePECOFF::GetSectionName(std::string &sect_name,
492 const section_header_t &sect) {
493 if (sect.name[0] == '/') {
494 lldb::offset_t stroff = strtoul(&sect.name[1], NULL, 10);
495 lldb::offset_t string_file_offset =
496 m_coff_header.symoff + (m_coff_header.nsyms * 18) + stroff;
497 const char *name = m_data.GetCStr(&string_file_offset);
498 if (name) {
499 sect_name = name;
500 return true;
Greg Claytonf754f882011-09-09 20:33:05 +0000501 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000502
503 return false;
504 }
505 sect_name = sect.name;
506 return true;
507}
Greg Claytonf754f882011-09-09 20:33:05 +0000508
509//----------------------------------------------------------------------
510// GetNListSymtab
511//----------------------------------------------------------------------
Kate Stoneb9c1b512016-09-06 20:57:50 +0000512Symtab *ObjectFilePECOFF::GetSymtab() {
513 ModuleSP module_sp(GetModule());
514 if (module_sp) {
515 std::lock_guard<std::recursive_mutex> guard(module_sp->GetMutex());
516 if (m_symtab_ap.get() == NULL) {
517 SectionList *sect_list = GetSectionList();
518 m_symtab_ap.reset(new Symtab(this));
519 std::lock_guard<std::recursive_mutex> guard(m_symtab_ap->GetMutex());
520
521 const uint32_t num_syms = m_coff_header.nsyms;
522
Walter Erquinigo344546b2016-10-17 20:28:19 +0000523 if (m_file && num_syms > 0 && m_coff_header.symoff > 0) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000524 const uint32_t symbol_size = 18;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000525 const size_t symbol_data_size = num_syms * symbol_size;
526 // Include the 4-byte string table size at the end of the symbols
Walter Erquinigo344546b2016-10-17 20:28:19 +0000527 DataExtractor symtab_data =
528 ReadImageData(m_coff_header.symoff, symbol_data_size + 4);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000529 lldb::offset_t offset = symbol_data_size;
530 const uint32_t strtab_size = symtab_data.GetU32(&offset);
Walter Erquinigo344546b2016-10-17 20:28:19 +0000531 if (strtab_size > 0) {
532 DataExtractor strtab_data = ReadImageData(
533 m_coff_header.symoff + symbol_data_size, strtab_size);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000534
Walter Erquinigo344546b2016-10-17 20:28:19 +0000535 // First 4 bytes should be zeroed after strtab_size has been read,
536 // because it is used as offset 0 to encode a NULL string.
537 uint32_t *strtab_data_start = (uint32_t *)strtab_data.GetDataStart();
538 strtab_data_start[0] = 0;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000539
Walter Erquinigo344546b2016-10-17 20:28:19 +0000540 offset = 0;
541 std::string symbol_name;
542 Symbol *symbols = m_symtab_ap->Resize(num_syms);
543 for (uint32_t i = 0; i < num_syms; ++i) {
544 coff_symbol_t symbol;
545 const uint32_t symbol_offset = offset;
546 const char *symbol_name_cstr = NULL;
547 // If the first 4 bytes of the symbol string are zero, then they
548 // are followed by a 4-byte string table offset. Else these
549 // 8 bytes contain the symbol name
550 if (symtab_data.GetU32(&offset) == 0) {
551 // Long string that doesn't fit into the symbol table name,
552 // so now we must read the 4 byte string table offset
553 uint32_t strtab_offset = symtab_data.GetU32(&offset);
554 symbol_name_cstr = strtab_data.PeekCStr(strtab_offset);
555 symbol_name.assign(symbol_name_cstr);
556 } else {
557 // Short string that fits into the symbol table name which is 8
558 // bytes
559 offset += sizeof(symbol.name) - 4; // Skip remaining
560 symbol_name_cstr = symtab_data.PeekCStr(symbol_offset);
561 if (symbol_name_cstr == NULL)
562 break;
563 symbol_name.assign(symbol_name_cstr, sizeof(symbol.name));
564 }
565 symbol.value = symtab_data.GetU32(&offset);
566 symbol.sect = symtab_data.GetU16(&offset);
567 symbol.type = symtab_data.GetU16(&offset);
568 symbol.storage = symtab_data.GetU8(&offset);
569 symbol.naux = symtab_data.GetU8(&offset);
570 symbols[i].GetMangled().SetValue(ConstString(symbol_name.c_str()));
571 if ((int16_t)symbol.sect >= 1) {
572 Address symbol_addr(sect_list->GetSectionAtIndex(symbol.sect - 1),
573 symbol.value);
574 symbols[i].GetAddressRef() = symbol_addr;
575 symbols[i].SetType(MapSymbolType(symbol.type));
576 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000577
Walter Erquinigo344546b2016-10-17 20:28:19 +0000578 if (symbol.naux > 0) {
579 i += symbol.naux;
580 offset += symbol_size;
581 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000582 }
583 }
584 }
585
586 // Read export header
587 if (coff_data_dir_export_table < m_coff_header_opt.data_dirs.size() &&
588 m_coff_header_opt.data_dirs[coff_data_dir_export_table].vmsize > 0 &&
589 m_coff_header_opt.data_dirs[coff_data_dir_export_table].vmaddr > 0) {
590 export_directory_entry export_table;
591 uint32_t data_start =
592 m_coff_header_opt.data_dirs[coff_data_dir_export_table].vmaddr;
Walter Erquinigo344546b2016-10-17 20:28:19 +0000593
594 uint32_t address_rva = data_start;
595 if (m_file) {
596 Address address(m_coff_header_opt.image_base + data_start, sect_list);
597 address_rva =
598 address.GetSection()->GetFileOffset() + address.GetOffset();
599 }
600 DataExtractor symtab_data =
601 ReadImageData(address_rva, m_coff_header_opt.data_dirs[0].vmsize);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000602 lldb::offset_t offset = 0;
603
604 // Read export_table header
605 export_table.characteristics = symtab_data.GetU32(&offset);
606 export_table.time_date_stamp = symtab_data.GetU32(&offset);
607 export_table.major_version = symtab_data.GetU16(&offset);
608 export_table.minor_version = symtab_data.GetU16(&offset);
609 export_table.name = symtab_data.GetU32(&offset);
610 export_table.base = symtab_data.GetU32(&offset);
611 export_table.number_of_functions = symtab_data.GetU32(&offset);
612 export_table.number_of_names = symtab_data.GetU32(&offset);
613 export_table.address_of_functions = symtab_data.GetU32(&offset);
614 export_table.address_of_names = symtab_data.GetU32(&offset);
615 export_table.address_of_name_ordinals = symtab_data.GetU32(&offset);
616
617 bool has_ordinal = export_table.address_of_name_ordinals != 0;
618
619 lldb::offset_t name_offset = export_table.address_of_names - data_start;
620 lldb::offset_t name_ordinal_offset =
621 export_table.address_of_name_ordinals - data_start;
622
623 Symbol *symbols = m_symtab_ap->Resize(export_table.number_of_names);
624
625 std::string symbol_name;
626
627 // Read each export table entry
628 for (size_t i = 0; i < export_table.number_of_names; ++i) {
629 uint32_t name_ordinal =
630 has_ordinal ? symtab_data.GetU16(&name_ordinal_offset) : i;
631 uint32_t name_address = symtab_data.GetU32(&name_offset);
632
633 const char *symbol_name_cstr =
634 symtab_data.PeekCStr(name_address - data_start);
635 symbol_name.assign(symbol_name_cstr);
636
637 lldb::offset_t function_offset = export_table.address_of_functions -
638 data_start +
639 sizeof(uint32_t) * name_ordinal;
640 uint32_t function_rva = symtab_data.GetU32(&function_offset);
641
642 Address symbol_addr(m_coff_header_opt.image_base + function_rva,
643 sect_list);
644 symbols[i].GetMangled().SetValue(ConstString(symbol_name.c_str()));
645 symbols[i].GetAddressRef() = symbol_addr;
646 symbols[i].SetType(lldb::eSymbolTypeCode);
647 symbols[i].SetDebug(true);
648 }
649 }
650 m_symtab_ap->CalculateSymbolSizes();
651 }
652 }
653 return m_symtab_ap.get();
654}
655
656bool ObjectFilePECOFF::IsStripped() {
657 // TODO: determine this for COFF
658 return false;
659}
660
661void ObjectFilePECOFF::CreateSections(SectionList &unified_section_list) {
662 if (!m_sections_ap.get()) {
663 m_sections_ap.reset(new SectionList());
664
Greg Claytona1743492012-03-13 23:14:29 +0000665 ModuleSP module_sp(GetModule());
Kate Stoneb9c1b512016-09-06 20:57:50 +0000666 if (module_sp) {
667 std::lock_guard<std::recursive_mutex> guard(module_sp->GetMutex());
668 const uint32_t nsects = m_sect_headers.size();
669 ModuleSP module_sp(GetModule());
670 for (uint32_t idx = 0; idx < nsects; ++idx) {
671 std::string sect_name;
672 GetSectionName(sect_name, m_sect_headers[idx]);
673 ConstString const_sect_name(sect_name.c_str());
674 static ConstString g_code_sect_name(".code");
675 static ConstString g_CODE_sect_name("CODE");
676 static ConstString g_data_sect_name(".data");
677 static ConstString g_DATA_sect_name("DATA");
678 static ConstString g_bss_sect_name(".bss");
679 static ConstString g_BSS_sect_name("BSS");
680 static ConstString g_debug_sect_name(".debug");
681 static ConstString g_reloc_sect_name(".reloc");
682 static ConstString g_stab_sect_name(".stab");
683 static ConstString g_stabstr_sect_name(".stabstr");
684 static ConstString g_sect_name_dwarf_debug_abbrev(".debug_abbrev");
685 static ConstString g_sect_name_dwarf_debug_aranges(".debug_aranges");
686 static ConstString g_sect_name_dwarf_debug_frame(".debug_frame");
687 static ConstString g_sect_name_dwarf_debug_info(".debug_info");
688 static ConstString g_sect_name_dwarf_debug_line(".debug_line");
689 static ConstString g_sect_name_dwarf_debug_loc(".debug_loc");
690 static ConstString g_sect_name_dwarf_debug_macinfo(".debug_macinfo");
691 static ConstString g_sect_name_dwarf_debug_pubnames(".debug_pubnames");
692 static ConstString g_sect_name_dwarf_debug_pubtypes(".debug_pubtypes");
693 static ConstString g_sect_name_dwarf_debug_ranges(".debug_ranges");
694 static ConstString g_sect_name_dwarf_debug_str(".debug_str");
695 static ConstString g_sect_name_eh_frame(".eh_frame");
696 static ConstString g_sect_name_go_symtab(".gosymtab");
697 SectionType section_type = eSectionTypeOther;
698 if (m_sect_headers[idx].flags & llvm::COFF::IMAGE_SCN_CNT_CODE &&
699 ((const_sect_name == g_code_sect_name) ||
700 (const_sect_name == g_CODE_sect_name))) {
701 section_type = eSectionTypeCode;
702 } else if (m_sect_headers[idx].flags &
703 llvm::COFF::IMAGE_SCN_CNT_INITIALIZED_DATA &&
704 ((const_sect_name == g_data_sect_name) ||
705 (const_sect_name == g_DATA_sect_name))) {
706 section_type = eSectionTypeData;
707 } else if (m_sect_headers[idx].flags &
708 llvm::COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA &&
709 ((const_sect_name == g_bss_sect_name) ||
710 (const_sect_name == g_BSS_sect_name))) {
711 if (m_sect_headers[idx].size == 0)
712 section_type = eSectionTypeZeroFill;
713 else
714 section_type = eSectionTypeData;
715 } else if (const_sect_name == g_debug_sect_name) {
716 section_type = eSectionTypeDebug;
717 } else if (const_sect_name == g_stabstr_sect_name) {
718 section_type = eSectionTypeDataCString;
719 } else if (const_sect_name == g_reloc_sect_name) {
720 section_type = eSectionTypeOther;
721 } else if (const_sect_name == g_sect_name_dwarf_debug_abbrev)
722 section_type = eSectionTypeDWARFDebugAbbrev;
723 else if (const_sect_name == g_sect_name_dwarf_debug_aranges)
724 section_type = eSectionTypeDWARFDebugAranges;
725 else if (const_sect_name == g_sect_name_dwarf_debug_frame)
726 section_type = eSectionTypeDWARFDebugFrame;
727 else if (const_sect_name == g_sect_name_dwarf_debug_info)
728 section_type = eSectionTypeDWARFDebugInfo;
729 else if (const_sect_name == g_sect_name_dwarf_debug_line)
730 section_type = eSectionTypeDWARFDebugLine;
731 else if (const_sect_name == g_sect_name_dwarf_debug_loc)
732 section_type = eSectionTypeDWARFDebugLoc;
733 else if (const_sect_name == g_sect_name_dwarf_debug_macinfo)
734 section_type = eSectionTypeDWARFDebugMacInfo;
735 else if (const_sect_name == g_sect_name_dwarf_debug_pubnames)
736 section_type = eSectionTypeDWARFDebugPubNames;
737 else if (const_sect_name == g_sect_name_dwarf_debug_pubtypes)
738 section_type = eSectionTypeDWARFDebugPubTypes;
739 else if (const_sect_name == g_sect_name_dwarf_debug_ranges)
740 section_type = eSectionTypeDWARFDebugRanges;
741 else if (const_sect_name == g_sect_name_dwarf_debug_str)
742 section_type = eSectionTypeDWARFDebugStr;
743 else if (const_sect_name == g_sect_name_eh_frame)
744 section_type = eSectionTypeEHFrame;
745 else if (const_sect_name == g_sect_name_go_symtab)
746 section_type = eSectionTypeGoSymtab;
747 else if (m_sect_headers[idx].flags & llvm::COFF::IMAGE_SCN_CNT_CODE) {
748 section_type = eSectionTypeCode;
749 } else if (m_sect_headers[idx].flags &
750 llvm::COFF::IMAGE_SCN_CNT_INITIALIZED_DATA) {
751 section_type = eSectionTypeData;
752 } else if (m_sect_headers[idx].flags &
753 llvm::COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA) {
754 if (m_sect_headers[idx].size == 0)
755 section_type = eSectionTypeZeroFill;
756 else
757 section_type = eSectionTypeData;
Greg Claytonf754f882011-09-09 20:33:05 +0000758 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000759
760 // Use a segment ID of the segment index shifted left by 8 so they
761 // never conflict with any of the sections.
762 SectionSP section_sp(new Section(
763 module_sp, // Module to which this section belongs
764 this, // Object file to which this section belongs
765 idx + 1, // Section ID is the 1 based segment index shifted right by
766 // 8 bits as not to collide with any of the 256 section IDs
767 // that are possible
768 const_sect_name, // Name of this section
769 section_type, // This section is a container of other sections.
770 m_coff_header_opt.image_base +
771 m_sect_headers[idx].vmaddr, // File VM address == addresses as
772 // they are found in the object file
773 m_sect_headers[idx].vmsize, // VM size in bytes of this section
774 m_sect_headers[idx]
775 .offset, // Offset to the data for this section in the file
776 m_sect_headers[idx]
777 .size, // Size in bytes of this section as found in the file
778 m_coff_header_opt.sect_alignment, // Section alignment
779 m_sect_headers[idx].flags)); // Flags for this section
780
781 // section_sp->SetIsEncrypted (segment_is_encrypted);
782
783 unified_section_list.AddSection(section_sp);
784 m_sections_ap->AddSection(section_sp);
785 }
Greg Claytonf754f882011-09-09 20:33:05 +0000786 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000787 }
Greg Claytonf754f882011-09-09 20:33:05 +0000788}
789
Kate Stoneb9c1b512016-09-06 20:57:50 +0000790bool ObjectFilePECOFF::GetUUID(UUID *uuid) { return false; }
791
792uint32_t ObjectFilePECOFF::GetDependentModules(FileSpecList &files) {
793 return 0;
Greg Clayton3046e662013-07-10 01:23:25 +0000794}
795
Kate Stoneb9c1b512016-09-06 20:57:50 +0000796lldb_private::Address ObjectFilePECOFF::GetEntryPointAddress() {
797 if (m_entry_point_address.IsValid())
Stephane Sezer8e38c662016-03-23 18:00:13 +0000798 return m_entry_point_address;
Stephane Sezer8e38c662016-03-23 18:00:13 +0000799
Kate Stoneb9c1b512016-09-06 20:57:50 +0000800 if (!ParseHeader() || !IsExecutable())
801 return m_entry_point_address;
802
803 SectionList *section_list = GetSectionList();
804 addr_t offset = m_coff_header_opt.entry;
805
806 if (!section_list)
807 m_entry_point_address.SetOffset(offset);
808 else
809 m_entry_point_address.ResolveAddressUsingFileSections(offset, section_list);
810 return m_entry_point_address;
811}
Greg Claytonf754f882011-09-09 20:33:05 +0000812
813//----------------------------------------------------------------------
814// Dump
815//
816// Dump the specifics of the runtime file container (such as any headers
817// segments, sections, etc).
818//----------------------------------------------------------------------
Kate Stoneb9c1b512016-09-06 20:57:50 +0000819void ObjectFilePECOFF::Dump(Stream *s) {
820 ModuleSP module_sp(GetModule());
821 if (module_sp) {
822 std::lock_guard<std::recursive_mutex> guard(module_sp->GetMutex());
823 s->Printf("%p: ", static_cast<void *>(this));
824 s->Indent();
825 s->PutCString("ObjectFilePECOFF");
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000826
Kate Stoneb9c1b512016-09-06 20:57:50 +0000827 ArchSpec header_arch;
828 GetArchitecture(header_arch);
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000829
Kate Stoneb9c1b512016-09-06 20:57:50 +0000830 *s << ", file = '" << m_file
831 << "', arch = " << header_arch.GetArchitectureName() << "\n";
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000832
Kate Stoneb9c1b512016-09-06 20:57:50 +0000833 SectionList *sections = GetSectionList();
834 if (sections)
835 sections->Dump(s, NULL, true, UINT32_MAX);
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000836
Kate Stoneb9c1b512016-09-06 20:57:50 +0000837 if (m_symtab_ap.get())
838 m_symtab_ap->Dump(s, NULL, eSortOrderNone);
Greg Claytona1743492012-03-13 23:14:29 +0000839
Kate Stoneb9c1b512016-09-06 20:57:50 +0000840 if (m_dos_header.e_magic)
841 DumpDOSHeader(s, m_dos_header);
842 if (m_coff_header.machine) {
843 DumpCOFFHeader(s, m_coff_header);
844 if (m_coff_header.hdrsize)
845 DumpOptCOFFHeader(s, m_coff_header_opt);
Greg Claytonf754f882011-09-09 20:33:05 +0000846 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000847 s->EOL();
848 DumpSectionHeaders(s);
849 s->EOL();
850 }
Greg Claytonf754f882011-09-09 20:33:05 +0000851}
852
853//----------------------------------------------------------------------
854// DumpDOSHeader
855//
856// Dump the MS-DOS header to the specified output stream
857//----------------------------------------------------------------------
Kate Stoneb9c1b512016-09-06 20:57:50 +0000858void ObjectFilePECOFF::DumpDOSHeader(Stream *s, const dos_header_t &header) {
859 s->PutCString("MSDOS Header\n");
860 s->Printf(" e_magic = 0x%4.4x\n", header.e_magic);
861 s->Printf(" e_cblp = 0x%4.4x\n", header.e_cblp);
862 s->Printf(" e_cp = 0x%4.4x\n", header.e_cp);
863 s->Printf(" e_crlc = 0x%4.4x\n", header.e_crlc);
864 s->Printf(" e_cparhdr = 0x%4.4x\n", header.e_cparhdr);
865 s->Printf(" e_minalloc = 0x%4.4x\n", header.e_minalloc);
866 s->Printf(" e_maxalloc = 0x%4.4x\n", header.e_maxalloc);
867 s->Printf(" e_ss = 0x%4.4x\n", header.e_ss);
868 s->Printf(" e_sp = 0x%4.4x\n", header.e_sp);
869 s->Printf(" e_csum = 0x%4.4x\n", header.e_csum);
870 s->Printf(" e_ip = 0x%4.4x\n", header.e_ip);
871 s->Printf(" e_cs = 0x%4.4x\n", header.e_cs);
872 s->Printf(" e_lfarlc = 0x%4.4x\n", header.e_lfarlc);
873 s->Printf(" e_ovno = 0x%4.4x\n", header.e_ovno);
874 s->Printf(" e_res[4] = { 0x%4.4x, 0x%4.4x, 0x%4.4x, 0x%4.4x }\n",
875 header.e_res[0], header.e_res[1], header.e_res[2], header.e_res[3]);
876 s->Printf(" e_oemid = 0x%4.4x\n", header.e_oemid);
877 s->Printf(" e_oeminfo = 0x%4.4x\n", header.e_oeminfo);
878 s->Printf(" e_res2[10] = { 0x%4.4x, 0x%4.4x, 0x%4.4x, 0x%4.4x, 0x%4.4x, "
879 "0x%4.4x, 0x%4.4x, 0x%4.4x, 0x%4.4x, 0x%4.4x }\n",
880 header.e_res2[0], header.e_res2[1], header.e_res2[2],
881 header.e_res2[3], header.e_res2[4], header.e_res2[5],
882 header.e_res2[6], header.e_res2[7], header.e_res2[8],
883 header.e_res2[9]);
884 s->Printf(" e_lfanew = 0x%8.8x\n", header.e_lfanew);
Greg Claytonf754f882011-09-09 20:33:05 +0000885}
886
887//----------------------------------------------------------------------
888// DumpCOFFHeader
889//
890// Dump the COFF header to the specified output stream
891//----------------------------------------------------------------------
Kate Stoneb9c1b512016-09-06 20:57:50 +0000892void ObjectFilePECOFF::DumpCOFFHeader(Stream *s, const coff_header_t &header) {
893 s->PutCString("COFF Header\n");
894 s->Printf(" machine = 0x%4.4x\n", header.machine);
895 s->Printf(" nsects = 0x%4.4x\n", header.nsects);
896 s->Printf(" modtime = 0x%8.8x\n", header.modtime);
897 s->Printf(" symoff = 0x%8.8x\n", header.symoff);
898 s->Printf(" nsyms = 0x%8.8x\n", header.nsyms);
899 s->Printf(" hdrsize = 0x%4.4x\n", header.hdrsize);
Greg Claytonf754f882011-09-09 20:33:05 +0000900}
901
902//----------------------------------------------------------------------
903// DumpOptCOFFHeader
904//
905// Dump the optional COFF header to the specified output stream
906//----------------------------------------------------------------------
Kate Stoneb9c1b512016-09-06 20:57:50 +0000907void ObjectFilePECOFF::DumpOptCOFFHeader(Stream *s,
908 const coff_opt_header_t &header) {
909 s->PutCString("Optional COFF Header\n");
910 s->Printf(" magic = 0x%4.4x\n", header.magic);
911 s->Printf(" major_linker_version = 0x%2.2x\n",
912 header.major_linker_version);
913 s->Printf(" minor_linker_version = 0x%2.2x\n",
914 header.minor_linker_version);
915 s->Printf(" code_size = 0x%8.8x\n", header.code_size);
916 s->Printf(" data_size = 0x%8.8x\n", header.data_size);
917 s->Printf(" bss_size = 0x%8.8x\n", header.bss_size);
918 s->Printf(" entry = 0x%8.8x\n", header.entry);
919 s->Printf(" code_offset = 0x%8.8x\n", header.code_offset);
920 s->Printf(" data_offset = 0x%8.8x\n", header.data_offset);
921 s->Printf(" image_base = 0x%16.16" PRIx64 "\n",
922 header.image_base);
923 s->Printf(" sect_alignment = 0x%8.8x\n", header.sect_alignment);
924 s->Printf(" file_alignment = 0x%8.8x\n", header.file_alignment);
925 s->Printf(" major_os_system_version = 0x%4.4x\n",
926 header.major_os_system_version);
927 s->Printf(" minor_os_system_version = 0x%4.4x\n",
928 header.minor_os_system_version);
929 s->Printf(" major_image_version = 0x%4.4x\n",
930 header.major_image_version);
931 s->Printf(" minor_image_version = 0x%4.4x\n",
932 header.minor_image_version);
933 s->Printf(" major_subsystem_version = 0x%4.4x\n",
934 header.major_subsystem_version);
935 s->Printf(" minor_subsystem_version = 0x%4.4x\n",
936 header.minor_subsystem_version);
937 s->Printf(" reserved1 = 0x%8.8x\n", header.reserved1);
938 s->Printf(" image_size = 0x%8.8x\n", header.image_size);
939 s->Printf(" header_size = 0x%8.8x\n", header.header_size);
940 s->Printf(" checksum = 0x%8.8x\n", header.checksum);
941 s->Printf(" subsystem = 0x%4.4x\n", header.subsystem);
942 s->Printf(" dll_flags = 0x%4.4x\n", header.dll_flags);
943 s->Printf(" stack_reserve_size = 0x%16.16" PRIx64 "\n",
944 header.stack_reserve_size);
945 s->Printf(" stack_commit_size = 0x%16.16" PRIx64 "\n",
946 header.stack_commit_size);
947 s->Printf(" heap_reserve_size = 0x%16.16" PRIx64 "\n",
948 header.heap_reserve_size);
949 s->Printf(" heap_commit_size = 0x%16.16" PRIx64 "\n",
950 header.heap_commit_size);
951 s->Printf(" loader_flags = 0x%8.8x\n", header.loader_flags);
952 s->Printf(" num_data_dir_entries = 0x%8.8x\n",
953 (uint32_t)header.data_dirs.size());
954 uint32_t i;
955 for (i = 0; i < header.data_dirs.size(); i++) {
956 s->Printf(" data_dirs[%2u] vmaddr = 0x%8.8x, vmsize = 0x%8.8x\n", i,
957 header.data_dirs[i].vmaddr, header.data_dirs[i].vmsize);
958 }
Greg Claytonf754f882011-09-09 20:33:05 +0000959}
960//----------------------------------------------------------------------
961// DumpSectionHeader
962//
963// Dump a single ELF section header to the specified output stream
964//----------------------------------------------------------------------
Kate Stoneb9c1b512016-09-06 20:57:50 +0000965void ObjectFilePECOFF::DumpSectionHeader(Stream *s,
966 const section_header_t &sh) {
967 std::string name;
968 GetSectionName(name, sh);
969 s->Printf("%-16s 0x%8.8x 0x%8.8x 0x%8.8x 0x%8.8x 0x%8.8x 0x%8.8x 0x%4.4x "
970 "0x%4.4x 0x%8.8x\n",
971 name.c_str(), sh.vmaddr, sh.vmsize, sh.offset, sh.size, sh.reloff,
972 sh.lineoff, sh.nreloc, sh.nline, sh.flags);
Greg Claytonf754f882011-09-09 20:33:05 +0000973}
974
Greg Claytonf754f882011-09-09 20:33:05 +0000975//----------------------------------------------------------------------
976// DumpSectionHeaders
977//
978// Dump all of the ELF section header to the specified output stream
979//----------------------------------------------------------------------
Kate Stoneb9c1b512016-09-06 20:57:50 +0000980void ObjectFilePECOFF::DumpSectionHeaders(Stream *s) {
981
982 s->PutCString("Section Headers\n");
983 s->PutCString("IDX name vm addr vm size file off file "
984 "size reloc off line off nreloc nline flags\n");
985 s->PutCString("==== ---------------- ---------- ---------- ---------- "
986 "---------- ---------- ---------- ------ ------ ----------\n");
987
988 uint32_t idx = 0;
989 SectionHeaderCollIter pos, end = m_sect_headers.end();
990
991 for (pos = m_sect_headers.begin(); pos != end; ++pos, ++idx) {
992 s->Printf("[%2u] ", idx);
993 ObjectFilePECOFF::DumpSectionHeader(s, *pos);
994 }
Greg Claytonf754f882011-09-09 20:33:05 +0000995}
996
Zachary Turnerfb3b3bd2016-09-20 20:44:50 +0000997bool ObjectFilePECOFF::IsWindowsSubsystem() {
998 switch (m_coff_header_opt.subsystem) {
999 case llvm::COFF::IMAGE_SUBSYSTEM_NATIVE:
1000 case llvm::COFF::IMAGE_SUBSYSTEM_WINDOWS_GUI:
1001 case llvm::COFF::IMAGE_SUBSYSTEM_WINDOWS_CUI:
1002 case llvm::COFF::IMAGE_SUBSYSTEM_NATIVE_WINDOWS:
1003 case llvm::COFF::IMAGE_SUBSYSTEM_WINDOWS_CE_GUI:
1004 case llvm::COFF::IMAGE_SUBSYSTEM_XBOX:
1005 case llvm::COFF::IMAGE_SUBSYSTEM_WINDOWS_BOOT_APPLICATION:
1006 return true;
1007 default:
1008 return false;
1009 }
1010}
1011
Kate Stoneb9c1b512016-09-06 20:57:50 +00001012bool ObjectFilePECOFF::GetArchitecture(ArchSpec &arch) {
1013 uint16_t machine = m_coff_header.machine;
1014 switch (machine) {
1015 case llvm::COFF::IMAGE_FILE_MACHINE_AMD64:
1016 case llvm::COFF::IMAGE_FILE_MACHINE_I386:
1017 case llvm::COFF::IMAGE_FILE_MACHINE_POWERPC:
1018 case llvm::COFF::IMAGE_FILE_MACHINE_POWERPCFP:
1019 case llvm::COFF::IMAGE_FILE_MACHINE_ARM:
1020 case llvm::COFF::IMAGE_FILE_MACHINE_ARMNT:
1021 case llvm::COFF::IMAGE_FILE_MACHINE_THUMB:
Zachary Turnerfb3b3bd2016-09-20 20:44:50 +00001022 arch.SetArchitecture(eArchTypeCOFF, machine, LLDB_INVALID_CPUTYPE,
1023 IsWindowsSubsystem() ? llvm::Triple::Win32
1024 : llvm::Triple::UnknownOS);
Kate Stoneb9c1b512016-09-06 20:57:50 +00001025 return true;
1026 default:
1027 break;
1028 }
1029 return false;
Greg Claytonf754f882011-09-09 20:33:05 +00001030}
1031
Kate Stoneb9c1b512016-09-06 20:57:50 +00001032ObjectFile::Type ObjectFilePECOFF::CalculateType() {
1033 if (m_coff_header.machine != 0) {
1034 if ((m_coff_header.flags & llvm::COFF::IMAGE_FILE_DLL) == 0)
1035 return eTypeExecutable;
1036 else
1037 return eTypeSharedLibrary;
1038 }
1039 return eTypeExecutable;
Greg Claytonf754f882011-09-09 20:33:05 +00001040}
1041
Kate Stoneb9c1b512016-09-06 20:57:50 +00001042ObjectFile::Strata ObjectFilePECOFF::CalculateStrata() { return eStrataUser; }
Greg Claytonf754f882011-09-09 20:33:05 +00001043//------------------------------------------------------------------
1044// PluginInterface protocol
1045//------------------------------------------------------------------
Kate Stoneb9c1b512016-09-06 20:57:50 +00001046ConstString ObjectFilePECOFF::GetPluginName() { return GetPluginNameStatic(); }
Greg Claytonf754f882011-09-09 20:33:05 +00001047
Kate Stoneb9c1b512016-09-06 20:57:50 +00001048uint32_t ObjectFilePECOFF::GetPluginVersion() { return 1; }