1 /* unexec() support for Cygwin;
2 complete rewrite of xemacs Cygwin unexec() code
4 Copyright (C) 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs; see the file COPYING. If not, write to
20 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
33 extern int bss_sbrk_did_unexec
;
35 /* emacs symbols that indicate where bss and data end for emacs internals */
36 extern char my_endbss
[];
37 extern char my_edata
[];
40 ** header for Windows executable files
45 PEAOUTHDR file_optional_header
;
46 SCNHDR section_header
[32];
52 ** Read the header from the executable into memory so we can more easily access it.
55 read_exe_header (int fd
, exe_header_t
* exe_header_buffer
)
61 assert (exe_header_buffer
!= 0);
63 ret
= lseek (fd
, 0L, SEEK_SET
);
67 read (fd
, &exe_header_buffer
->file_header
,
68 sizeof (exe_header_buffer
->file_header
));
69 assert (ret
== sizeof (exe_header_buffer
->file_header
));
71 assert (exe_header_buffer
->file_header
.e_magic
== 0x5a4d);
72 assert (exe_header_buffer
->file_header
.nt_signature
== 0x4550);
73 assert (exe_header_buffer
->file_header
.f_magic
== 0x014c);
74 assert (exe_header_buffer
->file_header
.f_nscns
> 0);
75 assert (exe_header_buffer
->file_header
.f_nscns
<=
76 sizeof (exe_header_buffer
->section_header
) /
77 sizeof (exe_header_buffer
->section_header
[0]));
78 assert (exe_header_buffer
->file_header
.f_opthdr
> 0);
81 read (fd
, &exe_header_buffer
->file_optional_header
,
82 sizeof (exe_header_buffer
->file_optional_header
));
83 assert (ret
== sizeof (exe_header_buffer
->file_optional_header
));
85 assert (exe_header_buffer
->file_optional_header
.magic
== 0x010b);
87 for (i
= 0; i
< exe_header_buffer
->file_header
.f_nscns
; ++i
)
90 read (fd
, &exe_header_buffer
->section_header
[i
],
91 sizeof (exe_header_buffer
->section_header
[i
]));
92 assert (ret
== sizeof (exe_header_buffer
->section_header
[i
]));
95 return (exe_header_buffer
);
99 ** Fix the dumped emacs executable:
101 ** - copy .data section data of interest from running executable into
104 ** - convert .bss section into an initialized data section (like
105 ** .data) and copy .bss section data of interest from running
106 ** executable into output .exe file
109 fixup_executable (int fd
)
111 exe_header_t exe_header_buffer
;
112 exe_header_t
*exe_header
;
118 exe_header
= read_exe_header (fd
, &exe_header_buffer
);
119 assert (exe_header
!= 0);
121 assert (exe_header
->file_header
.f_nscns
> 0);
122 for (i
= 0; i
< exe_header
->file_header
.f_nscns
; ++i
)
124 unsigned long start_address
=
125 exe_header
->section_header
[i
].s_vaddr
+
126 exe_header
->file_optional_header
.ImageBase
;
127 unsigned long end_address
=
128 exe_header
->section_header
[i
].s_vaddr
+
129 exe_header
->file_optional_header
.ImageBase
+
130 exe_header
->section_header
[i
].s_paddr
;
132 printf ("%8s start 0x%08x end 0x%08x\n",
133 exe_header
->section_header
[i
].s_name
,
134 start_address
, end_address
);
135 if (my_edata
>= (char *) start_address
136 && my_edata
< (char *) end_address
)
140 lseek (fd
, (long) (exe_header
->section_header
[i
].s_scnptr
),
144 write (fd
, (char *) start_address
,
145 my_edata
- (char *) start_address
);
146 assert (ret
== my_edata
- (char *) start_address
);
149 printf (" .data, mem start 0x%08x mem length %d\n",
150 start_address
, my_edata
- (char *) start_address
);
152 printf (" .data, file start %d file length %d\n",
153 (int) exe_header
->section_header
[i
].s_scnptr
,
154 (int) exe_header
->section_header
[i
].s_paddr
);
156 else if (my_endbss
>= (char *) start_address
157 && my_endbss
< (char *) end_address
)
161 if (exe_header
->section_header
[i
].s_flags
& 0x00000080)
163 /* convert uninitialized data section to initialized data section */
165 ret
= fstat (fd
, &statbuf
);
168 exe_header
->section_header
[i
].s_flags
&= ~0x00000080;
169 exe_header
->section_header
[i
].s_flags
|= 0x00000040;
171 exe_header
->section_header
[i
].s_scnptr
=
173 exe_header
->file_optional_header
.FileAlignment
) /
174 exe_header
->file_optional_header
.FileAlignment
*
175 exe_header
->file_optional_header
.FileAlignment
;
177 exe_header
->section_header
[i
].s_size
=
178 (exe_header
->section_header
[i
].s_paddr
+
179 exe_header
->file_optional_header
.FileAlignment
) /
180 exe_header
->file_optional_header
.FileAlignment
*
181 exe_header
->file_optional_header
.FileAlignment
;
185 (long) (exe_header
->section_header
[i
].s_scnptr
+
186 exe_header
->section_header
[i
].s_size
- 1),
189 ret
= write (fd
, "", 1);
194 (long) ((char *) &exe_header
->section_header
[i
] -
195 (char *) exe_header
), SEEK_SET
);
198 write (fd
, &exe_header
->section_header
[i
],
199 sizeof (exe_header
->section_header
[i
]));
200 assert (ret
== sizeof (exe_header
->section_header
[i
]));
202 printf (" seek to %ld, write %d\n",
203 (long) ((char *) &exe_header
->section_header
[i
] -
204 (char *) exe_header
),
205 sizeof (exe_header
->section_header
[i
]));
207 /* write initialized data section */
209 lseek (fd
, (long) (exe_header
->section_header
[i
].s_scnptr
),
213 write (fd
, (char *) start_address
,
214 my_endbss
- (char *) start_address
);
215 assert (ret
== (my_endbss
- (char *) start_address
));
217 printf (" .bss, mem start 0x%08x mem length %d\n",
218 start_address
, my_endbss
- (char *) start_address
);
220 printf (" .bss, file start %d file length %d\n",
221 (int) exe_header
->section_header
[i
].s_scnptr
,
222 (int) exe_header
->section_header
[i
].s_paddr
);
225 assert (found_bss
== 1);
226 assert (found_data
== 1);
230 ** Windows likes .exe suffixes on executables.
233 add_exe_suffix_if_necessary (const char *name
, char *modified
)
235 int i
= strlen (name
);
236 if (i
<= (sizeof (DOTEXE
) - 1))
238 sprintf (modified
, "%s%s", name
, DOTEXE
);
240 else if (!strcasecmp (name
+ i
- (sizeof (DOTEXE
) - 1), DOTEXE
))
242 strcpy (modified
, name
);
246 sprintf (modified
, "%s%s", name
, DOTEXE
);
252 unexec (char *outfile
, char *infile
, unsigned start_data
, unsigned d1
,
255 char infile_buffer
[FILENAME_MAX
];
256 char outfile_buffer
[FILENAME_MAX
];
262 if (bss_sbrk_did_unexec
)
264 /* can only dump once */
265 printf ("You can only dump Emacs once on this platform.\n");
269 report_sheap_usage (1);
271 infile
= add_exe_suffix_if_necessary (infile
, infile_buffer
);
272 outfile
= add_exe_suffix_if_necessary (outfile
, outfile_buffer
);
274 fd_in
= open (infile
, O_RDONLY
| O_BINARY
);
276 fd_out
= open (outfile
, O_RDWR
| O_TRUNC
| O_CREAT
| O_BINARY
, 0755);
277 assert (fd_out
>= 0);
281 ret
= read (fd_in
, buffer
, sizeof (buffer
));
289 ret2
= write (fd_out
, buffer
, ret
);
290 assert (ret2
== ret
);
295 bss_sbrk_did_unexec
= 1;
296 fixup_executable (fd_out
);
297 bss_sbrk_did_unexec
= 0;
299 ret
= close (fd_out
);
305 /* arch-tag: fc44f6c3-ca0a-45e0-a5a2-58b6101b1e65
306 (do not change this comment) */