* src/puresize.h (BASE_PURESIZE): Bump by another 1K.
[bpt/emacs.git] / src / unexw32.c
CommitLineData
3b7ad313 1/* unexec for GNU Emacs on Windows NT.
ba318903 2 Copyright (C) 1994, 2001-2014 Free Software Foundation, Inc.
2147fb50 3
3b7ad313 4This file is part of GNU Emacs.
2147fb50 5
9ec0b715 6GNU Emacs is free software: you can redistribute it and/or modify
3b7ad313 7it under the terms of the GNU General Public License as published by
9ec0b715
GM
8the Free Software Foundation, either version 3 of the License, or
9(at your option) any later version.
2147fb50 10
3b7ad313
EN
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
2147fb50 15
3b7ad313 16You should have received a copy of the GNU General Public License
9ec0b715 17along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
2147fb50 18
9ec0b715 19/*
2147fb50
KH
20 Geoff Voelker (voelker@cs.washington.edu) 8-12-94
21*/
22
43640c4d 23#include <config.h>
ce701a33 24#include "unexec.h"
a68089e4 25#include "lisp.h"
501199a3 26#include "w32common.h"
a68089e4 27#include "w32.h"
43640c4d 28
2147fb50
KH
29#include <stdio.h>
30#include <fcntl.h>
43640c4d 31#include <time.h>
2147fb50
KH
32#include <windows.h>
33
43640c4d
GV
34/* Include relevant definitions from IMAGEHLP.H, which can be found
35 in \\win32sdk\mstools\samples\image\include\imagehlp.h. */
2147fb50 36
43640c4d
GV
37PIMAGE_NT_HEADERS
38(__stdcall * pfnCheckSumMappedFile) (LPVOID BaseAddress,
39 DWORD FileLength,
40 LPDWORD HeaderSum,
41 LPDWORD CheckSum);
2147fb50 42
43640c4d
GV
43extern BOOL ctrl_c_handler (unsigned long type);
44
45extern char my_begdata[];
46extern char my_edata[];
47extern char my_begbss[];
48extern char my_endbss[];
9c8056fe
GV
49extern char *my_begbss_static;
50extern char *my_endbss_static;
2147fb50 51
43640c4d 52#include "w32heap.h"
e54c8cd1 53
03887dd3
KH
54#undef min
55#undef max
56#define min(x, y) (((x) < (y)) ? (x) : (y))
57#define max(x, y) (((x) > (y)) ? (x) : (y))
58
2147fb50 59/* Basically, our "initialized" flag. */
5b79dba5 60BOOL using_dynamic_heap = FALSE;
2147fb50 61
43640c4d
GV
62int open_input_file (file_data *p_file, char *name);
63int open_output_file (file_data *p_file, char *name, unsigned long size);
2147fb50
KH
64void close_file_data (file_data *p_file);
65
66void get_section_info (file_data *p_file);
5b79dba5 67void copy_executable_and_dump_data (file_data *, file_data *);
2147fb50
KH
68void dump_bss_and_heap (file_data *p_infile, file_data *p_outfile);
69
70/* Cached info about the .data section in the executable. */
5b79dba5 71PIMAGE_SECTION_HEADER data_section;
49dc9682 72PCHAR data_start = 0;
62aba0d4 73DWORD_PTR data_size = 0;
2147fb50
KH
74
75/* Cached info about the .bss section in the executable. */
5b79dba5 76PIMAGE_SECTION_HEADER bss_section;
49dc9682 77PCHAR bss_start = 0;
62aba0d4
FP
78DWORD_PTR bss_size = 0;
79DWORD_PTR extra_bss_size = 0;
5b79dba5
AI
80/* bss data that is static might be discontiguous from non-static. */
81PIMAGE_SECTION_HEADER bss_section_static;
49dc9682 82PCHAR bss_start_static = 0;
62aba0d4
FP
83DWORD_PTR bss_size_static = 0;
84DWORD_PTR extra_bss_size_static = 0;
5b79dba5
AI
85
86PIMAGE_SECTION_HEADER heap_section;
2147fb50 87
e05d3a05
FP
88/* MinGW64 doesn't add a leading underscore to external symbols,
89 whereas configure.ac sets up LD_SWITCH_SYSTEM_TEMACS to force the
90 entry point at __start, with two underscores. */
91#ifdef __MINGW64__
92#define _start __start
93#endif
94
2147fb50
KH
95/* Startup code for running on NT. When we are running as the dumped
96 version, we need to bootstrap our heap and .bss section into our
97 address space before we can actually hand off control to the startup
98 code supplied by NT (primarily because that code relies upon malloc ()). */
99void
100_start (void)
101{
102 extern void mainCRTStartup (void);
103
7fef47a3 104#if 1
43640c4d
GV
105 /* Give us a way to debug problems with crashes on startup when
106 running under the MSVC profiler. */
107 if (GetEnvironmentVariable ("EMACS_DEBUG", NULL, 0) > 0)
108 DebugBreak ();
109#endif
110
2147fb50
KH
111 /* Cache system info, e.g., the NT page size. */
112 cache_system_info ();
113
5b79dba5
AI
114 /* Grab our malloc arena space now, before CRT starts up. */
115 init_heap ();
2147fb50 116
2147fb50
KH
117 /* This prevents ctrl-c's in shells running while we're suspended from
118 having us exit. */
119 SetConsoleCtrlHandler ((PHANDLER_ROUTINE) ctrl_c_handler, TRUE);
120
467af476
AI
121 /* Prevent Emacs from being locked up (eg. in batch mode) when
122 accessing devices that aren't mounted (eg. removable media drives). */
123 SetErrorMode (SEM_FAILCRITICALERRORS);
2147fb50
KH
124 mainCRTStartup ();
125}
126
2147fb50
KH
127
128/* File handling. */
129
17788cb3
EZ
130/* Implementation note: this and the next functions work with ANSI
131 codepage encoded file names! */
43640c4d 132int
2147fb50
KH
133open_input_file (file_data *p_file, char *filename)
134{
135 HANDLE file;
136 HANDLE file_mapping;
137 void *file_base;
138 unsigned long size, upper_size;
139
17788cb3
EZ
140 file = CreateFileA (filename, GENERIC_READ, FILE_SHARE_READ, NULL,
141 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);
177c0ea7 142 if (file == INVALID_HANDLE_VALUE)
43640c4d 143 return FALSE;
2147fb50
KH
144
145 size = GetFileSize (file, &upper_size);
177c0ea7 146 file_mapping = CreateFileMapping (file, NULL, PAGE_READONLY,
2147fb50 147 0, size, NULL);
177c0ea7 148 if (!file_mapping)
43640c4d 149 return FALSE;
2147fb50
KH
150
151 file_base = MapViewOfFile (file_mapping, FILE_MAP_READ, 0, 0, size);
177c0ea7 152 if (file_base == 0)
43640c4d 153 return FALSE;
2147fb50
KH
154
155 p_file->name = filename;
156 p_file->size = size;
157 p_file->file = file;
158 p_file->file_mapping = file_mapping;
159 p_file->file_base = file_base;
43640c4d
GV
160
161 return TRUE;
2147fb50
KH
162}
163
43640c4d 164int
2147fb50
KH
165open_output_file (file_data *p_file, char *filename, unsigned long size)
166{
167 HANDLE file;
168 HANDLE file_mapping;
169 void *file_base;
cd6885f3 170
2d0d2952
EZ
171 /* We delete any existing FILENAME because loadup.el will create a
172 hard link to it under the name emacs-XX.YY.ZZ.nn.exe. Evidently,
173 overwriting a file on Unix breaks any hard links to it, but that
174 doesn't happen on Windows. If we don't delete the file before
175 creating it, all the emacs-XX.YY.ZZ.nn.exe end up being hard
176 links to the same file, which defeats the purpose of these hard
177 links: being able to run previous builds. */
17788cb3
EZ
178 DeleteFileA (filename);
179 file = CreateFileA (filename, GENERIC_READ | GENERIC_WRITE, 0, NULL,
180 CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0);
177c0ea7 181 if (file == INVALID_HANDLE_VALUE)
43640c4d
GV
182 return FALSE;
183
177c0ea7 184 file_mapping = CreateFileMapping (file, NULL, PAGE_READWRITE,
2147fb50 185 0, size, NULL);
177c0ea7 186 if (!file_mapping)
43640c4d 187 return FALSE;
177c0ea7 188
2147fb50 189 file_base = MapViewOfFile (file_mapping, FILE_MAP_WRITE, 0, 0, size);
177c0ea7 190 if (file_base == 0)
43640c4d 191 return FALSE;
177c0ea7 192
2147fb50
KH
193 p_file->name = filename;
194 p_file->size = size;
195 p_file->file = file;
196 p_file->file_mapping = file_mapping;
197 p_file->file_base = file_base;
43640c4d
GV
198
199 return TRUE;
2147fb50
KH
200}
201
202/* Close the system structures associated with the given file. */
43640c4d 203void
2147fb50
KH
204close_file_data (file_data *p_file)
205{
5b79dba5
AI
206 UnmapViewOfFile (p_file->file_base);
207 CloseHandle (p_file->file_mapping);
208 /* For the case of output files, set final size. */
209 SetFilePointer (p_file->file, p_file->size, NULL, FILE_BEGIN);
210 SetEndOfFile (p_file->file);
211 CloseHandle (p_file->file);
2147fb50
KH
212}
213
214
215/* Routines to manipulate NT executable file sections. */
216
43640c4d
GV
217/* Return pointer to section header for named section. */
218IMAGE_SECTION_HEADER *
219find_section (char * name, IMAGE_NT_HEADERS * nt_header)
220{
221 PIMAGE_SECTION_HEADER section;
222 int i;
223
224 section = IMAGE_FIRST_SECTION (nt_header);
225
226 for (i = 0; i < nt_header->FileHeader.NumberOfSections; i++)
227 {
228 if (strcmp (section->Name, name) == 0)
229 return section;
230 section++;
231 }
232 return NULL;
233}
234
235/* Return pointer to section header for section containing the given
236 relative virtual address. */
237IMAGE_SECTION_HEADER *
62aba0d4 238rva_to_section (DWORD_PTR rva, IMAGE_NT_HEADERS * nt_header)
43640c4d
GV
239{
240 PIMAGE_SECTION_HEADER section;
241 int i;
242
243 section = IMAGE_FIRST_SECTION (nt_header);
244
245 for (i = 0; i < nt_header->FileHeader.NumberOfSections; i++)
2147fb50 246 {
5b79dba5
AI
247 /* Some linkers (eg. the NT SDK linker I believe) swapped the
248 meaning of these two values - or rather, they ignored
249 VirtualSize entirely and always set it to zero. This affects
250 some very old exes (eg. gzip dated Dec 1993). Since
251 w32_executable_type relies on this function to work reliably,
252 we need to cope with this. */
62aba0d4 253 DWORD_PTR real_size = max (section->SizeOfRawData,
5b79dba5 254 section->Misc.VirtualSize);
43640c4d 255 if (rva >= section->VirtualAddress
5b79dba5
AI
256 && rva < section->VirtualAddress + real_size)
257 return section;
258 section++;
259 }
260 return NULL;
261}
262
263/* Return pointer to section header for section containing the given
264 offset in its raw data area. */
265IMAGE_SECTION_HEADER *
62aba0d4 266offset_to_section (DWORD_PTR offset, IMAGE_NT_HEADERS * nt_header)
5b79dba5
AI
267{
268 PIMAGE_SECTION_HEADER section;
269 int i;
270
271 section = IMAGE_FIRST_SECTION (nt_header);
272
273 for (i = 0; i < nt_header->FileHeader.NumberOfSections; i++)
274 {
275 if (offset >= section->PointerToRawData
276 && offset < section->PointerToRawData + section->SizeOfRawData)
43640c4d
GV
277 return section;
278 section++;
2147fb50 279 }
43640c4d 280 return NULL;
2147fb50
KH
281}
282
5b79dba5
AI
283/* Return offset to an object in dst, given offset in src. We assume
284 there is at least one section in both src and dst images, and that
285 the some sections may have been added to dst (after sections in src). */
62aba0d4
FP
286DWORD_PTR
287relocate_offset (DWORD_PTR offset,
5b79dba5
AI
288 IMAGE_NT_HEADERS * src_nt_header,
289 IMAGE_NT_HEADERS * dst_nt_header)
290{
291 PIMAGE_SECTION_HEADER src_section = IMAGE_FIRST_SECTION (src_nt_header);
292 PIMAGE_SECTION_HEADER dst_section = IMAGE_FIRST_SECTION (dst_nt_header);
293 int i = 0;
294
295 while (offset >= src_section->PointerToRawData)
296 {
297 if (offset < src_section->PointerToRawData + src_section->SizeOfRawData)
298 break;
299 i++;
300 if (i == src_nt_header->FileHeader.NumberOfSections)
301 {
302 /* Handle offsets after the last section. */
303 dst_section = IMAGE_FIRST_SECTION (dst_nt_header);
304 dst_section += dst_nt_header->FileHeader.NumberOfSections - 1;
305 while (dst_section->PointerToRawData == 0)
306 dst_section--;
307 while (src_section->PointerToRawData == 0)
308 src_section--;
309 return offset
310 + (dst_section->PointerToRawData + dst_section->SizeOfRawData)
311 - (src_section->PointerToRawData + src_section->SizeOfRawData);
312 }
313 src_section++;
314 dst_section++;
315 }
316 return offset +
317 (dst_section->PointerToRawData - src_section->PointerToRawData);
318}
319
320#define OFFSET_TO_RVA(offset, section) \
2d7d1608 321 ((section)->VirtualAddress + ((DWORD_PTR)(offset) - (section)->PointerToRawData))
5b79dba5
AI
322
323#define RVA_TO_OFFSET(rva, section) \
2d7d1608 324 ((section)->PointerToRawData + ((DWORD_PTR)(rva) - (section)->VirtualAddress))
5b79dba5
AI
325
326#define RVA_TO_SECTION_OFFSET(rva, section) \
2d7d1608 327 ((DWORD_PTR)(rva) - (section)->VirtualAddress)
5b79dba5
AI
328
329/* Convert address in executing image to RVA. */
62aba0d4 330#define PTR_TO_RVA(ptr) ((DWORD_PTR)(ptr) - (DWORD_PTR) GetModuleHandle (NULL))
5b79dba5 331
e9bdb9c9 332#define RVA_TO_PTR(var,section,filedata) \
2d7d1608 333 ((unsigned char *)(RVA_TO_OFFSET (var,section) + (filedata).file_base))
e9bdb9c9 334
5b79dba5 335#define PTR_TO_OFFSET(ptr, pfile_data) \
49dc9682 336 ((unsigned char *)(ptr) - (pfile_data)->file_base)
5b79dba5
AI
337
338#define OFFSET_TO_PTR(offset, pfile_data) \
62aba0d4 339 ((pfile_data)->file_base + (DWORD_PTR)(offset))
5b79dba5 340
43640c4d 341
2147fb50 342/* Flip through the executable and cache the info necessary for dumping. */
49dc9682 343void
2147fb50
KH
344get_section_info (file_data *p_infile)
345{
346 PIMAGE_DOS_HEADER dos_header;
347 PIMAGE_NT_HEADERS nt_header;
5b79dba5 348 int overlap;
177c0ea7 349
2147fb50 350 dos_header = (PIMAGE_DOS_HEADER) p_infile->file_base;
177c0ea7 351 if (dos_header->e_magic != IMAGE_DOS_SIGNATURE)
2147fb50
KH
352 {
353 printf ("Unknown EXE header in %s...bailing.\n", p_infile->name);
354 exit (1);
355 }
62aba0d4 356 nt_header = (PIMAGE_NT_HEADERS) (((DWORD_PTR) dos_header) +
2147fb50 357 dos_header->e_lfanew);
177c0ea7 358 if (nt_header == NULL)
2147fb50 359 {
177c0ea7 360 printf ("Failed to find IMAGE_NT_HEADER in %s...bailing.\n",
2147fb50
KH
361 p_infile->name);
362 exit (1);
363 }
364
365 /* Check the NT header signature ... */
177c0ea7 366 if (nt_header->Signature != IMAGE_NT_SIGNATURE)
2147fb50
KH
367 {
368 printf ("Invalid IMAGE_NT_SIGNATURE 0x%x in %s...bailing.\n",
369 nt_header->Signature, p_infile->name);
5b79dba5 370 exit (1);
2147fb50
KH
371 }
372
5b79dba5
AI
373 /* Locate the ".data" and ".bss" sections for Emacs. (Note that the
374 actual section names are probably different from these, and might
375 actually be the same section.)
376
377 We do this as follows: first we determine the virtual address
378 ranges in this process for the data and bss variables that we wish
379 to preserve. Then we map these VAs to the section entries in the
380 source image. Finally, we determine the new size of the raw data
381 area for the bss section, so we can make the new image the correct
382 size. */
383
e3ddd18c
AI
384 /* We arrange for the Emacs initialized data to be in a separate
385 section if possible, because we cannot rely on my_begdata and
386 my_edata marking out the full extent of the initialized data, at
387 least on the Alpha where the linker freely reorders variables
388 across libraries. If we can arrange for this, all we need to do is
389 find the start and size of the EMDATA section. */
390 data_section = find_section ("EMDATA", nt_header);
391 if (data_section)
2147fb50 392 {
e3ddd18c
AI
393 data_start = (char *) nt_header->OptionalHeader.ImageBase +
394 data_section->VirtualAddress;
395 data_size = data_section->Misc.VirtualSize;
396 }
397 else
398 {
399 /* Fallback on the old method if compiler doesn't support the
400 data_set #pragma (or its equivalent). */
401 data_start = my_begdata;
402 data_size = my_edata - my_begdata;
403 data_section = rva_to_section (PTR_TO_RVA (my_begdata), nt_header);
404 if (data_section != rva_to_section (PTR_TO_RVA (my_edata), nt_header))
405 {
406 printf ("Initialized data is not in a single section...bailing\n");
407 exit (1);
408 }
5b79dba5
AI
409 }
410
411 /* As noted in lastfile.c, the Alpha (but not the Intel) MSVC linker
412 globally segregates all static and public bss data (ie. across all
413 linked modules, not just per module), so we must take both static
414 and public bss areas into account to determine the true extent of
415 the bss area used by Emacs.
416
417 To be strictly correct, we dump the static and public bss areas
418 used by Emacs separately if non-overlapping (since otherwise we are
419 dumping bss data belonging to system libraries, eg. the static bss
420 system data on the Alpha). */
421
422 bss_start = my_begbss;
423 bss_size = my_endbss - my_begbss;
424 bss_section = rva_to_section (PTR_TO_RVA (my_begbss), nt_header);
425 if (bss_section != rva_to_section (PTR_TO_RVA (my_endbss), nt_header))
426 {
427 printf ("Uninitialized data is not in a single section...bailing\n");
428 exit (1);
429 }
430 /* Compute how much the .bss section's raw data will grow. */
431 extra_bss_size =
432 ROUND_UP (RVA_TO_SECTION_OFFSET (PTR_TO_RVA (my_endbss), bss_section),
433 nt_header->OptionalHeader.FileAlignment)
434 - bss_section->SizeOfRawData;
435
436 bss_start_static = my_begbss_static;
437 bss_size_static = my_endbss_static - my_begbss_static;
438 bss_section_static = rva_to_section (PTR_TO_RVA (my_begbss_static), nt_header);
439 if (bss_section_static != rva_to_section (PTR_TO_RVA (my_endbss_static), nt_header))
440 {
441 printf ("Uninitialized static data is not in a single section...bailing\n");
442 exit (1);
443 }
444 /* Compute how much the static .bss section's raw data will grow. */
445 extra_bss_size_static =
446 ROUND_UP (RVA_TO_SECTION_OFFSET (PTR_TO_RVA (my_endbss_static), bss_section_static),
447 nt_header->OptionalHeader.FileAlignment)
448 - bss_section_static->SizeOfRawData;
449
450 /* Combine the bss sections into one if they overlap. */
972ee7e0
AI
451#ifdef _ALPHA_
452 overlap = 1; /* force all bss data to be dumped */
453#else
5b79dba5 454 overlap = 0;
972ee7e0 455#endif
5b79dba5
AI
456 if (bss_start < bss_start_static)
457 {
458 if (bss_start_static < bss_start + bss_size)
459 overlap = 1;
460 }
461 else
462 {
463 if (bss_start < bss_start_static + bss_size_static)
464 overlap = 1;
465 }
466 if (overlap)
467 {
468 if (bss_section != bss_section_static)
2147fb50 469 {
5b79dba5
AI
470 printf ("BSS data not in a single section...bailing\n");
471 exit (1);
2147fb50 472 }
5b79dba5
AI
473 bss_start = min (bss_start, bss_start_static);
474 bss_size = max (my_endbss, my_endbss_static) - bss_start;
475 bss_section_static = 0;
476 extra_bss_size_static = 0;
477 }
478
479 heap_section = rva_to_section (PTR_TO_RVA (get_heap_start ()), nt_header);
480}
481
482
483/* The dump routines. */
484
49dc9682 485void
177c0ea7 486copy_executable_and_dump_data (file_data *p_infile,
5b79dba5
AI
487 file_data *p_outfile)
488{
489 unsigned char *dst, *dst_save;
490 PIMAGE_DOS_HEADER dos_header;
491 PIMAGE_NT_HEADERS nt_header;
492 PIMAGE_NT_HEADERS dst_nt_header;
493 PIMAGE_SECTION_HEADER section;
494 PIMAGE_SECTION_HEADER dst_section;
62aba0d4 495 DWORD_PTR offset;
5b79dba5 496 int i;
4162f25f 497 int be_verbose = GetEnvironmentVariable ("DEBUG_DUMP", NULL, 0) > 0;
5b79dba5 498
4162f25f 499#define COPY_CHUNK(message, src, size, verbose) \
5b79dba5
AI
500 do { \
501 unsigned char *s = (void *)(src); \
502 unsigned long count = (size); \
4162f25f
EZ
503 if (verbose) \
504 { \
505 printf ("%s\n", (message)); \
506 printf ("\t0x%08x Offset in input file.\n", s - p_infile->file_base); \
507 printf ("\t0x%08x Offset in output file.\n", dst - p_outfile->file_base); \
508 printf ("\t0x%08x Size in bytes.\n", count); \
509 } \
5b79dba5
AI
510 memcpy (dst, s, count); \
511 dst += count; \
512 } while (0)
513
4162f25f 514#define COPY_PROC_CHUNK(message, src, size, verbose) \
5b79dba5
AI
515 do { \
516 unsigned char *s = (void *)(src); \
517 unsigned long count = (size); \
4162f25f
EZ
518 if (verbose) \
519 { \
520 printf ("%s\n", (message)); \
521 printf ("\t0x%08x Address in process.\n", s); \
522 printf ("\t0x%08x Offset in output file.\n", dst - p_outfile->file_base); \
523 printf ("\t0x%08x Size in bytes.\n", count); \
524 } \
5b79dba5
AI
525 memcpy (dst, s, count); \
526 dst += count; \
527 } while (0)
528
529#define DST_TO_OFFSET() PTR_TO_OFFSET (dst, p_outfile)
530#define ROUND_UP_DST(align) \
531 (dst = p_outfile->file_base + ROUND_UP (DST_TO_OFFSET (), (align)))
7fef47a3
AI
532#define ROUND_UP_DST_AND_ZERO(align) \
533 do { \
534 unsigned char *newdst = p_outfile->file_base \
535 + ROUND_UP (DST_TO_OFFSET (), (align)); \
536 /* Zero the alignment slop; it may actually initialize real data. */ \
537 memset (dst, 0, newdst - dst); \
538 dst = newdst; \
539 } while (0)
5b79dba5
AI
540
541 /* Copy the source image sequentially, ie. section by section after
542 copying the headers and section table, to simplify the process of
543 dumping the raw data for the bss and heap sections.
544
545 Note that dst is updated implicitly by each COPY_CHUNK. */
546
547 dos_header = (PIMAGE_DOS_HEADER) p_infile->file_base;
62aba0d4 548 nt_header = (PIMAGE_NT_HEADERS) (((DWORD_PTR) dos_header) +
5b79dba5
AI
549 dos_header->e_lfanew);
550 section = IMAGE_FIRST_SECTION (nt_header);
177c0ea7 551
5b79dba5
AI
552 dst = (unsigned char *) p_outfile->file_base;
553
554 COPY_CHUNK ("Copying DOS header...", dos_header,
62aba0d4 555 (DWORD_PTR) nt_header - (DWORD_PTR) dos_header, be_verbose);
5b79dba5
AI
556 dst_nt_header = (PIMAGE_NT_HEADERS) dst;
557 COPY_CHUNK ("Copying NT header...", nt_header,
62aba0d4 558 (DWORD_PTR) section - (DWORD_PTR) nt_header, be_verbose);
5b79dba5
AI
559 dst_section = (PIMAGE_SECTION_HEADER) dst;
560 COPY_CHUNK ("Copying section table...", section,
4162f25f
EZ
561 nt_header->FileHeader.NumberOfSections * sizeof (*section),
562 be_verbose);
5b79dba5 563
7fef47a3
AI
564 /* Align the first section's raw data area, and set the header size
565 field accordingly. */
566 ROUND_UP_DST_AND_ZERO (dst_nt_header->OptionalHeader.FileAlignment);
567 dst_nt_header->OptionalHeader.SizeOfHeaders = DST_TO_OFFSET ();
568
5b79dba5
AI
569 for (i = 0; i < nt_header->FileHeader.NumberOfSections; i++)
570 {
571 char msg[100];
4162f25f
EZ
572 /* Windows section names are fixed 8-char strings, only
573 zero-terminated if the name is shorter than 8 characters. */
574 sprintf (msg, "Copying raw data for %.8s...", section->Name);
5b79dba5 575
5b79dba5
AI
576 dst_save = dst;
577
578 /* Update the file-relative offset for this section's raw data (if
579 it has any) in case things have been relocated; we will update
580 the other offsets below once we know where everything is. */
581 if (dst_section->PointerToRawData)
582 dst_section->PointerToRawData = DST_TO_OFFSET ();
583
584 /* Can always copy the original raw data. */
585 COPY_CHUNK
586 (msg, OFFSET_TO_PTR (section->PointerToRawData, p_infile),
4162f25f 587 section->SizeOfRawData, be_verbose);
7fef47a3
AI
588 /* Ensure alignment slop is zeroed. */
589 ROUND_UP_DST_AND_ZERO (dst_nt_header->OptionalHeader.FileAlignment);
5b79dba5
AI
590
591 /* Note that various sections below may be aliases. */
592 if (section == data_section)
2147fb50 593 {
5b79dba5
AI
594 dst = dst_save
595 + RVA_TO_SECTION_OFFSET (PTR_TO_RVA (data_start), dst_section);
4162f25f
EZ
596 COPY_PROC_CHUNK ("Dumping initialized data...",
597 data_start, data_size, be_verbose);
5b79dba5 598 dst = dst_save + dst_section->SizeOfRawData;
2147fb50 599 }
5b79dba5 600 if (section == bss_section)
43640c4d 601 {
5b79dba5
AI
602 /* Dump contents of bss variables, adjusting the section's raw
603 data size as necessary. */
604 dst = dst_save
605 + RVA_TO_SECTION_OFFSET (PTR_TO_RVA (bss_start), dst_section);
4162f25f
EZ
606 COPY_PROC_CHUNK ("Dumping bss data...", bss_start,
607 bss_size, be_verbose);
5b79dba5
AI
608 ROUND_UP_DST (dst_nt_header->OptionalHeader.FileAlignment);
609 dst_section->PointerToRawData = PTR_TO_OFFSET (dst_save, p_outfile);
610 /* Determine new size of raw data area. */
611 dst = max (dst, dst_save + dst_section->SizeOfRawData);
612 dst_section->SizeOfRawData = dst - dst_save;
613 dst_section->Characteristics &= ~IMAGE_SCN_CNT_UNINITIALIZED_DATA;
614 dst_section->Characteristics |= IMAGE_SCN_CNT_INITIALIZED_DATA;
43640c4d 615 }
5b79dba5
AI
616 if (section == bss_section_static)
617 {
618 /* Dump contents of static bss variables, adjusting the
619 section's raw data size as necessary. */
620 dst = dst_save
621 + RVA_TO_SECTION_OFFSET (PTR_TO_RVA (bss_start_static), dst_section);
4162f25f
EZ
622 COPY_PROC_CHUNK ("Dumping static bss data...", bss_start_static,
623 bss_size_static, be_verbose);
5b79dba5
AI
624 ROUND_UP_DST (dst_nt_header->OptionalHeader.FileAlignment);
625 dst_section->PointerToRawData = PTR_TO_OFFSET (dst_save, p_outfile);
626 /* Determine new size of raw data area. */
627 dst = max (dst, dst_save + dst_section->SizeOfRawData);
628 dst_section->SizeOfRawData = dst - dst_save;
629 dst_section->Characteristics &= ~IMAGE_SCN_CNT_UNINITIALIZED_DATA;
630 dst_section->Characteristics |= IMAGE_SCN_CNT_INITIALIZED_DATA;
631 }
632 if (section == heap_section)
633 {
62aba0d4
FP
634 DWORD_PTR heap_start = (DWORD_PTR) get_heap_start ();
635 DWORD_PTR heap_size = get_committed_heap_size ();
5b79dba5
AI
636
637 /* Dump the used portion of the predump heap, adjusting the
638 section's size to the appropriate size. */
639 dst = dst_save
640 + RVA_TO_SECTION_OFFSET (PTR_TO_RVA (heap_start), dst_section);
4162f25f
EZ
641 COPY_PROC_CHUNK ("Dumping heap...", heap_start, heap_size,
642 be_verbose);
5b79dba5
AI
643 ROUND_UP_DST (dst_nt_header->OptionalHeader.FileAlignment);
644 dst_section->PointerToRawData = PTR_TO_OFFSET (dst_save, p_outfile);
645 /* Determine new size of raw data area. */
646 dst = max (dst, dst_save + dst_section->SizeOfRawData);
647 dst_section->SizeOfRawData = dst - dst_save;
648 /* Reduce the size of the heap section to fit (must be last
649 section). */
650 dst_nt_header->OptionalHeader.SizeOfImage -=
651 dst_section->Misc.VirtualSize
652 - ROUND_UP (dst_section->SizeOfRawData,
653 dst_nt_header->OptionalHeader.SectionAlignment);
654 dst_section->Misc.VirtualSize =
655 ROUND_UP (dst_section->SizeOfRawData,
656 dst_nt_header->OptionalHeader.SectionAlignment);
657 dst_section->Characteristics &= ~IMAGE_SCN_CNT_UNINITIALIZED_DATA;
658 dst_section->Characteristics |= IMAGE_SCN_CNT_INITIALIZED_DATA;
659 }
660
7fef47a3
AI
661 /* Align the section's raw data area. */
662 ROUND_UP_DST (dst_nt_header->OptionalHeader.FileAlignment);
663
2147fb50 664 section++;
5b79dba5 665 dst_section++;
2147fb50 666 }
a610993d 667
5b79dba5
AI
668 /* Copy remainder of source image. */
669 do
670 section--;
671 while (section->PointerToRawData == 0);
672 offset = ROUND_UP (section->PointerToRawData + section->SizeOfRawData,
673 nt_header->OptionalHeader.FileAlignment);
674 COPY_CHUNK
675 ("Copying remainder of executable...",
676 OFFSET_TO_PTR (offset, p_infile),
4162f25f 677 p_infile->size - offset, be_verbose);
5b79dba5
AI
678
679 /* Final size for new image. */
680 p_outfile->size = DST_TO_OFFSET ();
681
682 /* Now patch up remaining file-relative offsets. */
683 section = IMAGE_FIRST_SECTION (nt_header);
684 dst_section = IMAGE_FIRST_SECTION (dst_nt_header);
685
686#define ADJUST_OFFSET(var) \
687 do { \
688 if ((var) != 0) \
689 (var) = relocate_offset ((var), nt_header, dst_nt_header); \
690 } while (0)
691
692 dst_nt_header->OptionalHeader.SizeOfInitializedData = 0;
693 dst_nt_header->OptionalHeader.SizeOfUninitializedData = 0;
694 for (i = 0; i < dst_nt_header->FileHeader.NumberOfSections; i++)
a610993d 695 {
5b79dba5
AI
696 /* Recompute data sizes for completeness. */
697 if (dst_section[i].Characteristics & IMAGE_SCN_CNT_INITIALIZED_DATA)
698 dst_nt_header->OptionalHeader.SizeOfInitializedData +=
699 ROUND_UP (dst_section[i].Misc.VirtualSize, dst_nt_header->OptionalHeader.FileAlignment);
700 else if (dst_section[i].Characteristics & IMAGE_SCN_CNT_UNINITIALIZED_DATA)
701 dst_nt_header->OptionalHeader.SizeOfUninitializedData +=
702 ROUND_UP (dst_section[i].Misc.VirtualSize, dst_nt_header->OptionalHeader.FileAlignment);
703
704 ADJUST_OFFSET (dst_section[i].PointerToLinenumbers);
a610993d 705 }
2147fb50 706
5b79dba5 707 ADJUST_OFFSET (dst_nt_header->FileHeader.PointerToSymbolTable);
2147fb50 708
5b79dba5
AI
709 /* Update offsets in debug directory entries. */
710 {
711 IMAGE_DATA_DIRECTORY debug_dir =
712 dst_nt_header->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_DEBUG];
713 PIMAGE_DEBUG_DIRECTORY debug_entry;
2147fb50 714
5b79dba5
AI
715 section = rva_to_section (debug_dir.VirtualAddress, dst_nt_header);
716 if (section)
717 {
718 debug_entry = (PIMAGE_DEBUG_DIRECTORY)
719 (RVA_TO_OFFSET (debug_dir.VirtualAddress, section) + p_outfile->file_base);
720 debug_dir.Size /= sizeof (IMAGE_DEBUG_DIRECTORY);
2147fb50 721
5b79dba5
AI
722 for (i = 0; i < debug_dir.Size; i++, debug_entry++)
723 ADJUST_OFFSET (debug_entry->PointerToRawData);
724 }
725 }
2147fb50
KH
726}
727
728
5b79dba5 729/* Dump out .data and .bss sections into a new executable. */
381259ef 730void
dd5ecd6b 731unexec (const char *new_name, const char *old_name)
9c8056fe 732{
5b79dba5 733 file_data in_file, out_file;
17788cb3 734 char out_filename[MAX_PATH], in_filename[MAX_PATH], new_name_a[MAX_PATH];
5b79dba5 735 unsigned long size;
49dc9682
AI
736 char *p;
737 char *q;
738
739 /* Ignore old_name, and get our actual location from the OS. */
1fd201bb 740 if (!GetModuleFileNameA (NULL, in_filename, MAX_PATH))
49dc9682 741 abort ();
1fd201bb
EZ
742
743 /* Can't use dostounix_filename here, since that needs its file name
744 argument encoded in UTF-8. */
745 for (p = in_filename; *p; p = CharNextA (p))
746 if (*p == '\\')
747 *p = '/';
748
49dc9682 749 strcpy (out_filename, in_filename);
17788cb3 750 filename_to_ansi (new_name, new_name_a);
49dc9682
AI
751
752 /* Change the base of the output filename to match the requested name. */
753 if ((p = strrchr (out_filename, '/')) == NULL)
754 abort ();
755 /* The filenames have already been expanded, and will be in Unix
756 format, so it is safe to expect an absolute name. */
17788cb3 757 if ((q = strrchr (new_name_a, '/')) == NULL)
49dc9682
AI
758 abort ();
759 strcpy (p, q);
177c0ea7 760
49dc9682
AI
761 /* Make sure that the output filename has the ".exe" extension...patch
762 it up if not. */
763 p = out_filename + strlen (out_filename) - 4;
764 if (strcmp (p, ".exe"))
5b79dba5 765 strcat (out_filename, ".exe");
2147fb50 766
5b79dba5
AI
767 printf ("Dumping from %s\n", in_filename);
768 printf (" to %s\n", out_filename);
2147fb50 769
5b79dba5
AI
770 /* We need to round off our heap to NT's page size. */
771 round_heap (get_page_size ());
198fdd15 772
5b79dba5
AI
773 /* Open the undumped executable file. */
774 if (!open_input_file (&in_file, in_filename))
775 {
177c0ea7 776 printf ("Failed to open %s (%d)...bailing.\n",
5b79dba5
AI
777 in_filename, GetLastError ());
778 exit (1);
779 }
2147fb50 780
5b79dba5
AI
781 /* Get the interesting section info, like start and size of .bss... */
782 get_section_info (&in_file);
2147fb50 783
5b79dba5
AI
784 /* The size of the dumped executable is the size of the original
785 executable plus the size of the heap and the size of the .bss section. */
786 size = in_file.size +
787 get_committed_heap_size () +
788 extra_bss_size +
789 extra_bss_size_static;
790 if (!open_output_file (&out_file, out_filename, size))
198fdd15 791 {
177c0ea7 792 printf ("Failed to open %s (%d)...bailing.\n",
5b79dba5
AI
793 out_filename, GetLastError ());
794 exit (1);
198fdd15
GV
795 }
796
5b79dba5
AI
797 /* Set the flag (before dumping). */
798 using_dynamic_heap = TRUE;
198fdd15 799
5b79dba5 800 copy_executable_and_dump_data (&in_file, &out_file);
198fdd15 801
5b79dba5
AI
802 /* Patch up header fields; profiler is picky about this. */
803 {
804 PIMAGE_DOS_HEADER dos_header;
805 PIMAGE_NT_HEADERS nt_header;
806 HANDLE hImagehelp = LoadLibrary ("imagehlp.dll");
807 DWORD headersum;
808 DWORD checksum;
198fdd15 809
5b79dba5
AI
810 dos_header = (PIMAGE_DOS_HEADER) out_file.file_base;
811 nt_header = (PIMAGE_NT_HEADERS) ((char *) dos_header + dos_header->e_lfanew);
198fdd15 812
5b79dba5
AI
813 nt_header->OptionalHeader.CheckSum = 0;
814// nt_header->FileHeader.TimeDateStamp = time (NULL);
815// dos_header->e_cp = size / 512;
816// nt_header->OptionalHeader.SizeOfImage = size;
817
818 pfnCheckSumMappedFile = (void *) GetProcAddress (hImagehelp, "CheckSumMappedFile");
819 if (pfnCheckSumMappedFile)
820 {
821// nt_header->FileHeader.TimeDateStamp = time (NULL);
822 pfnCheckSumMappedFile (out_file.file_base,
823 out_file.size,
824 &headersum,
825 &checksum);
826 nt_header->OptionalHeader.CheckSum = checksum;
827 }
828 FreeLibrary (hImagehelp);
829 }
198fdd15 830
5b79dba5
AI
831 close_file_data (&in_file);
832 close_file_data (&out_file);
2147fb50 833}
5b79dba5
AI
834
835/* eof */