x86-64: Integrate Paul Khuong's interleaved raw slot feature.
[sbcl.git] / src / runtime / save.c
blob30dc60711ef55147116de4805469da17e5c888db
1 /*
2 * This software is part of the SBCL system. See the README file for
3 * more information.
5 * This software is derived from the CMU CL system, which was
6 * written at Carnegie Mellon University and released into the
7 * public domain. The software is in the public domain and is
8 * provided with absolutely no warranty. See the COPYING and CREDITS
9 * files for more information.
12 #ifndef LISP_FEATURE_WIN32
13 #include <sys/types.h>
14 #include <sys/stat.h>
15 #endif
16 #include <stdlib.h>
17 #include <stdio.h>
18 #include <string.h>
19 #include <sys/file.h>
21 #include "sbcl.h"
22 #if defined(LISP_FEATURE_WIN32) && defined(LISP_FEATURE_SB_THREAD)
23 #include "pthreads_win32.h"
24 #else
25 #include <signal.h>
26 #endif
27 #include "runtime.h"
28 #include "os.h"
29 #include "core.h"
30 #include "globals.h"
31 #include "save.h"
32 #include "dynbind.h"
33 #include "lispregs.h"
34 #include "validate.h"
35 #include "gc-internal.h"
36 #include "thread.h"
38 #include "genesis/static-symbols.h"
39 #include "genesis/symbol.h"
41 #ifdef LISP_FEATURE_SB_CORE_COMPRESSION
42 # include <zlib.h>
43 #endif
45 /* write_runtime_options uses a simple serialization scheme that
46 * consists of one word of magic, one word indicating whether options
47 * are actually saved, and one word per struct field. */
48 static void
49 write_runtime_options(FILE *file, struct runtime_options *options)
51 size_t optarray[RUNTIME_OPTIONS_WORDS];
53 memset(&optarray, 0, sizeof(optarray));
54 optarray[0] = RUNTIME_OPTIONS_MAGIC;
56 if (options != NULL) {
57 /* optarray[1] is a flag indicating that options are present */
58 optarray[1] = 1;
59 optarray[2] = options->dynamic_space_size;
60 optarray[3] = options->thread_control_stack_size;
63 if (RUNTIME_OPTIONS_WORDS !=
64 fwrite(optarray, sizeof(size_t), RUNTIME_OPTIONS_WORDS, file)) {
65 perror("Error writing runtime options to file");
69 static void
70 write_lispobj(lispobj obj, FILE *file)
72 if (1 != fwrite(&obj, sizeof(lispobj), 1, file)) {
73 perror("Error writing to file");
77 static void
78 write_bytes_to_file(FILE * file, char *addr, long bytes, int compression)
80 if (compression == COMPRESSION_LEVEL_NONE) {
81 while (bytes > 0) {
82 sword_t count = fwrite(addr, 1, bytes, file);
83 if (count > 0) {
84 bytes -= count;
85 addr += count;
87 else {
88 perror("error writing to save file");
89 bytes = 0;
92 #ifdef LISP_FEATURE_SB_CORE_COMPRESSION
93 } else if ((compression >= -1) && (compression <= 9)) {
94 # define ZLIB_BUFFER_SIZE (1u<<16)
95 z_stream stream;
96 unsigned char buf[ZLIB_BUFFER_SIZE];
97 unsigned char * written, * end;
98 long total_written = 0;
99 int ret;
100 stream.zalloc = NULL;
101 stream.zfree = NULL;
102 stream.opaque = NULL;
103 stream.avail_in = bytes;
104 stream.next_in = (void*)addr;
105 ret = deflateInit(&stream, compression);
106 if (ret != Z_OK)
107 lose("deflateInit: %i\n", ret);
108 do {
109 stream.avail_out = sizeof(buf);
110 stream.next_out = buf;
111 ret = deflate(&stream, Z_FINISH);
112 if (ret < 0) lose("zlib deflate error: %i... exiting\n", ret);
113 written = buf;
114 end = buf+sizeof(buf)-stream.avail_out;
115 total_written += end - written;
116 while (written < end) {
117 long count = fwrite(written, 1, end-written, file);
118 if (count > 0) {
119 written += count;
120 } else {
121 lose("unable to write to core file\n");
124 } while (stream.avail_out == 0);
125 deflateEnd(&stream);
126 printf("compressed %lu bytes into %lu at level %i\n",
127 bytes, total_written, compression);
128 # undef ZLIB_BUFFER_SIZE
129 #endif
130 } else {
131 #ifdef LISP_FEATURE_SB_CORE_COMPRESSION
132 lose("Unknown core compression level %i, exiting\n", compression);
133 #else
134 lose("zlib-compressed core support not built in this runtime\n");
135 #endif
138 fflush(file);
142 static long
143 write_and_compress_bytes(FILE *file, char *addr, long bytes, os_vm_offset_t file_offset,
144 int compression)
146 long here, data;
148 bytes = (bytes+os_vm_page_size-1)&~(os_vm_page_size-1);
150 #ifdef LISP_FEATURE_WIN32
151 long count;
152 /* touch every single page in the space to force it to be mapped. */
153 for (count = 0; count < bytes; count += 0x1000) {
154 volatile int temp = addr[count];
156 #endif
158 fflush(file);
159 here = ftell(file);
160 fseek(file, 0, SEEK_END);
161 data = (ftell(file)+os_vm_page_size-1)&~(os_vm_page_size-1);
162 fseek(file, data, SEEK_SET);
163 write_bytes_to_file(file, addr, bytes, compression);
164 fseek(file, here, SEEK_SET);
165 return ((data - file_offset) / os_vm_page_size) - 1;
168 static long
169 write_bytes(FILE *file, char *addr, long bytes, os_vm_offset_t file_offset)
171 return write_and_compress_bytes(file, addr, bytes, file_offset,
172 COMPRESSION_LEVEL_NONE);
175 static void
176 output_space(FILE *file, int id, lispobj *addr, lispobj *end,
177 os_vm_offset_t file_offset,
178 int core_compression_level)
180 size_t words, bytes, data, compressed_flag;
181 static char *names[] = {NULL, "dynamic", "static", "read-only"};
183 compressed_flag
184 = ((core_compression_level != COMPRESSION_LEVEL_NONE)
185 ? DEFLATED_CORE_SPACE_ID_FLAG : 0);
187 write_lispobj(id | compressed_flag, file);
188 words = end - addr;
189 write_lispobj(words, file);
191 bytes = words * sizeof(lispobj);
193 printf("writing %lu bytes from the %s space at %p\n",
194 bytes, names[id], addr);
196 data = write_and_compress_bytes(file, (char *)addr, bytes, file_offset,
197 core_compression_level);
199 write_lispobj(data, file);
200 write_lispobj((uword_t)addr / os_vm_page_size, file);
201 write_lispobj((bytes + os_vm_page_size - 1) / os_vm_page_size, file);
204 FILE *
205 open_core_for_saving(char *filename)
207 /* Open the output file. We don't actually need the file yet, but
208 * the fopen() might fail for some reason, and we want to detect
209 * that and back out before we do anything irreversible. */
210 unlink(filename);
211 return fopen(filename, "wb");
214 boolean
215 save_to_filehandle(FILE *file, char *filename, lispobj init_function,
216 boolean make_executable,
217 boolean save_runtime_options,
218 int core_compression_level)
220 struct thread *th;
221 os_vm_offset_t core_start_pos;
223 /* Smash the enclosing state. (Once we do this, there's no good
224 * way to go back, which is a sufficient reason that this ends up
225 * being SAVE-LISP-AND-DIE instead of SAVE-LISP-AND-GO-ON). */
226 printf("[undoing binding stack and other enclosing state... ");
227 fflush(stdout);
228 for_each_thread(th) { /* XXX really? */
229 unbind_to_here((lispobj *)th->binding_stack_start,th);
230 SetSymbolValue(CURRENT_CATCH_BLOCK, 0,th);
231 SetSymbolValue(CURRENT_UNWIND_PROTECT_BLOCK, 0,th);
233 printf("done]\n");
234 fflush(stdout);
236 /* (Now we can actually start copying ourselves into the output file.) */
238 printf("[saving current Lisp image into %s:\n", filename);
239 fflush(stdout);
241 core_start_pos = ftell(file);
242 write_lispobj(CORE_MAGIC, file);
244 write_lispobj(BUILD_ID_CORE_ENTRY_TYPE_CODE, file);
245 write_lispobj(/* (We're writing the word count of the entry here, and the 2
246 * term is one word for the leading BUILD_ID_CORE_ENTRY_TYPE_CODE
247 * word and one word where we store the count itself.) */
248 2 + strlen((const char *)build_id),
249 file);
251 unsigned char *p;
252 for (p = (unsigned char *)build_id; *p; ++p)
253 write_lispobj(*p, file);
256 write_lispobj(NEW_DIRECTORY_CORE_ENTRY_TYPE_CODE, file);
257 write_lispobj(/* (word count = 3 spaces described by 5 words each, plus the
258 * entry type code, plus this count itself) */
259 (5*3)+2, file);
260 output_space(file,
261 READ_ONLY_CORE_SPACE_ID,
262 (lispobj *)READ_ONLY_SPACE_START,
263 (lispobj *)SymbolValue(READ_ONLY_SPACE_FREE_POINTER,0),
264 core_start_pos,
265 core_compression_level);
266 output_space(file,
267 STATIC_CORE_SPACE_ID,
268 (lispobj *)STATIC_SPACE_START,
269 (lispobj *)SymbolValue(STATIC_SPACE_FREE_POINTER,0),
270 core_start_pos,
271 core_compression_level);
272 #ifdef LISP_FEATURE_GENCGC
273 /* Flush the current_region, updating the tables. */
274 gc_alloc_update_all_page_tables();
275 update_dynamic_space_free_pointer();
276 #endif
277 #ifdef reg_ALLOC
278 #ifdef LISP_FEATURE_GENCGC
279 output_space(file,
280 DYNAMIC_CORE_SPACE_ID,
281 (lispobj *)DYNAMIC_SPACE_START,
282 dynamic_space_free_pointer,
283 core_start_pos,
284 core_compression_level);
285 #else
286 output_space(file,
287 DYNAMIC_CORE_SPACE_ID,
288 (lispobj *)current_dynamic_space,
289 dynamic_space_free_pointer,
290 core_start_pos,
291 core_compression_level);
292 #endif
293 #else
294 output_space(file,
295 DYNAMIC_CORE_SPACE_ID,
296 (lispobj *)DYNAMIC_SPACE_START,
297 (lispobj *)SymbolValue(ALLOCATION_POINTER,0),
298 core_start_pos,
299 core_compression_level);
300 #endif
302 write_lispobj(INITIAL_FUN_CORE_ENTRY_TYPE_CODE, file);
303 write_lispobj(3, file);
304 write_lispobj(init_function, file);
306 #ifdef LISP_FEATURE_GENCGC
308 size_t size = (last_free_page*sizeof(sword_t)+os_vm_page_size-1)
309 &~(os_vm_page_size-1);
310 uword_t *data = calloc(size, 1);
311 if (data) {
312 uword_t word;
313 sword_t offset;
314 page_index_t i;
315 for (i = 0; i < last_free_page; i++) {
316 /* Thanks to alignment requirements, the two low bits
317 * are always zero, so we can use them to store the
318 * allocation type -- region is always closed, so only
319 * the two low bits of allocation flags matter. */
320 word = page_table[i].scan_start_offset;
321 gc_assert((word & 0x03) == 0);
322 data[i] = word | (0x03 & page_table[i].allocated);
324 write_lispobj(PAGE_TABLE_CORE_ENTRY_TYPE_CODE, file);
325 write_lispobj(4, file);
326 write_lispobj(size, file);
327 offset = write_bytes(file, (char *)data, size, core_start_pos);
328 write_lispobj(offset, file);
331 #endif
333 write_lispobj(END_CORE_ENTRY_TYPE_CODE, file);
335 /* Write a trailing header, ignored when parsing the core normally.
336 * This is used to locate the start of the core when the runtime is
337 * prepended to it. */
338 fseek(file, 0, SEEK_END);
340 /* If NULL runtime options are passed to write_runtime_options,
341 * command-line processing is performed as normal in the SBCL
342 * executable. Otherwise, the saved runtime options are used and
343 * all command-line arguments are available to Lisp in
344 * SB-EXT:*POSIX-ARGV*. */
345 write_runtime_options(file,
346 (save_runtime_options ? runtime_options : NULL));
348 if (1 != fwrite(&core_start_pos, sizeof(os_vm_offset_t), 1, file)) {
349 perror("Error writing core starting position to file");
350 fclose(file);
351 } else {
352 write_lispobj(CORE_MAGIC, file);
353 fclose(file);
356 #ifndef LISP_FEATURE_WIN32
357 if (make_executable)
358 chmod (filename, 0755);
359 #endif
361 printf("done]\n");
362 exit(0);
365 /* Check if the build_id for the current runtime is present in a
366 * buffer. */
368 check_runtime_build_id(void *buf, size_t size)
370 size_t idlen;
371 char *pos;
373 idlen = strlen((const char*)build_id) - 1;
374 while ((pos = memchr(buf, build_id[0], size)) != NULL) {
375 size -= (pos + 1) - (char *)buf;
376 buf = (pos + 1);
377 if (idlen <= size && memcmp(buf, build_id + 1, idlen) == 0)
378 return 1;
381 return 0;
384 /* Slurp the executable portion of the runtime into a malloced buffer
385 * and return it. Places the size in bytes of the runtime into
386 * 'size_out'. Returns NULL if the runtime cannot be loaded from
387 * 'runtime_path'. */
388 void *
389 load_runtime(char *runtime_path, size_t *size_out)
391 void *buf = NULL;
392 FILE *input = NULL;
393 size_t size, count;
394 os_vm_offset_t core_offset;
396 core_offset = search_for_embedded_core (runtime_path);
397 if ((input = fopen(runtime_path, "rb")) == NULL) {
398 fprintf(stderr, "Unable to open runtime: %s\n", runtime_path);
399 goto lose;
402 fseek(input, 0, SEEK_END);
403 size = (size_t) ftell(input);
404 fseek(input, 0, SEEK_SET);
406 if (core_offset != -1 && size > core_offset)
407 size = core_offset;
409 buf = successful_malloc(size);
410 if ((count = fread(buf, 1, size, input)) != size) {
411 fprintf(stderr, "Premature EOF while reading runtime.\n");
412 goto lose;
415 if (!check_runtime_build_id(buf, size)) {
416 fprintf(stderr, "Failed to locate current build_id in runtime: %s\n",
417 runtime_path);
418 goto lose;
421 fclose(input);
422 *size_out = size;
423 return buf;
425 lose:
426 if (input != NULL)
427 fclose(input);
428 if (buf != NULL)
429 free(buf);
430 return NULL;
433 boolean
434 save_runtime_to_filehandle(FILE *output, void *runtime, size_t runtime_size,
435 int application_type)
437 size_t padding;
438 void *padbytes;
440 #ifdef LISP_FEATURE_WIN32
442 PIMAGE_DOS_HEADER dos_header = (PIMAGE_DOS_HEADER)runtime;
443 PIMAGE_NT_HEADERS nt_header = (PIMAGE_NT_HEADERS)((char *)dos_header +
444 dos_header->e_lfanew);
446 int sub_system;
447 switch (application_type) {
448 case 0:
449 sub_system = IMAGE_SUBSYSTEM_WINDOWS_CUI;
450 break;
451 case 1:
452 sub_system = IMAGE_SUBSYSTEM_WINDOWS_GUI;
453 break;
454 default:
455 fprintf(stderr, "Invalid application type %d\n", application_type);
456 return 0;
459 nt_header->OptionalHeader.Subsystem = sub_system;
461 #endif
463 if (runtime_size != fwrite(runtime, 1, runtime_size, output)) {
464 perror("Error saving runtime");
465 return 0;
468 padding = (os_vm_page_size - (runtime_size % os_vm_page_size)) & ~os_vm_page_size;
469 if (padding > 0) {
470 padbytes = successful_malloc(padding);
471 memset(padbytes, 0, padding);
472 if (padding != fwrite(padbytes, 1, padding, output)) {
473 perror("Error saving runtime");
474 free(padbytes);
475 return 0;
477 free(padbytes);
480 return 1;
483 FILE *
484 prepare_to_save(char *filename, boolean prepend_runtime, void **runtime_bytes,
485 size_t *runtime_size)
487 FILE *file;
488 char *runtime_path;
490 if (prepend_runtime) {
491 runtime_path = os_get_runtime_executable_path(0);
493 if (runtime_path == NULL && saved_runtime_path == NULL) {
494 fprintf(stderr, "Unable to get default runtime path.\n");
495 return NULL;
498 if (runtime_path == NULL)
499 *runtime_bytes = load_runtime(saved_runtime_path, runtime_size);
500 else {
501 *runtime_bytes = load_runtime(runtime_path, runtime_size);
502 free(runtime_path);
505 if (*runtime_bytes == NULL)
506 return 0;
509 file = open_core_for_saving(filename);
510 if (file == NULL) {
511 free(*runtime_bytes);
512 perror(filename);
513 return NULL;
516 return file;
519 boolean
520 save(char *filename, lispobj init_function, boolean prepend_runtime,
521 boolean save_runtime_options, boolean compressed, int compression_level,
522 int application_type)
524 FILE *file;
525 void *runtime_bytes = NULL;
526 size_t runtime_size;
528 file = prepare_to_save(filename, prepend_runtime, &runtime_bytes, &runtime_size);
529 if (file == NULL)
530 return 1;
532 if (prepend_runtime)
533 save_runtime_to_filehandle(file, runtime_bytes, runtime_size, application_type);
535 return save_to_filehandle(file, filename, init_function, prepend_runtime,
536 save_runtime_options,
537 compressed ? compressed : COMPRESSION_LEVEL_NONE);