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