1.0.13.18: Revived OpenBSD support, contributed by Josh Elsasser
[sbcl.git] / src / runtime / coreparse.c
1 /*
2  * A saved SBCL system is a .core file; the code here helps us accept
3  * such a file as input.
4  */
5
6 /*
7  * This software is part of the SBCL system. See the README file for
8  * more information.
9  *
10  * This software is derived from the CMU CL system, which was
11  * written at Carnegie Mellon University and released into the
12  * public domain. The software is in the public domain and is
13  * provided with absolutely no warranty. See the COPYING and CREDITS
14  * files for more information.
15  */
16
17 #include <stdio.h>
18 #include <stdlib.h>
19 #include <string.h>
20 #include <sys/file.h>
21 #include <sys/types.h>
22 #include <sys/stat.h>
23 #include <fcntl.h>
24 #include <unistd.h>
25
26 #include "sbcl.h"
27 #include "os.h"
28 #include "runtime.h"
29 #include "globals.h"
30 #include "core.h"
31 #include "arch.h"
32 #include "interr.h"
33 #include "thread.h"
34
35 #include "validate.h"
36 #include "gc-internal.h"
37
38 /* lutex stuff */
39 #if defined(LISP_FEATURE_SB_THREAD) && defined(LISP_FEATURE_SB_LUTEX)
40 #include "genesis/sap.h"
41 #include "pthread-lutex.h"
42 #endif
43
44
45 char build_id[] =
46 #include "../../output/build-id.tmp"
47 ;
48
49 int
50 open_binary(char *filename, int mode)
51 {
52 #ifdef LISP_FEATURE_WIN32
53     mode |= O_BINARY;
54 #endif
55
56     return open(filename, mode);
57 }
58
59 /* Search 'filename' for an embedded core.  An SBCL core has, at the
60  * end of the file, a trailer containing the size of the core (an
61  * os_vm_offset_t) and a final signature word (the lispobj
62  * CORE_MAGIC).  If this trailer is found at the end of the file, the
63  * start of the core can be determined from the core size.
64  *
65  * If an embedded core is present, this returns the offset into the
66  * file to load the core from, or -1 if no core is present. */
67 os_vm_offset_t
68 search_for_embedded_core(char *filename)
69 {
70     lispobj header;
71     os_vm_offset_t lispobj_size = sizeof(lispobj);
72     os_vm_offset_t trailer_size = lispobj_size + sizeof(os_vm_offset_t);
73     os_vm_offset_t core_size, pos;
74     int fd = -1;
75
76     if ((fd = open_binary(filename, O_RDONLY)) < 0)
77         goto lose;
78     if (lseek(fd, -lispobj_size, SEEK_END) < 0)
79         goto lose;
80     if (read(fd, &header, (size_t)lispobj_size) < lispobj_size)
81         goto lose;
82
83     if (header == CORE_MAGIC) {
84         if (lseek(fd, -trailer_size, SEEK_END) < 0)
85             goto lose;
86         if (read(fd, &core_size, sizeof(os_vm_offset_t)) < 0)
87             goto lose;
88
89         if (lseek(fd, -(core_size + trailer_size), SEEK_END) < 0)
90             goto lose;
91         pos = lseek(fd, 0, SEEK_CUR);
92
93         if (read(fd, &header, (size_t)lispobj_size) < lispobj_size)
94             goto lose;
95
96         if (header != CORE_MAGIC)
97             goto lose;
98
99         close(fd);
100         return pos;
101     }
102
103 lose:
104     if (fd != -1)
105         close(fd);
106
107     return -1;
108 }
109
110 static void
111 process_directory(int fd, lispobj *ptr, int count, os_vm_offset_t file_offset)
112 {
113     struct ndir_entry *entry;
114
115     FSHOW((stderr, "/process_directory(..), count=%d\n", count));
116
117     for (entry = (struct ndir_entry *) ptr; --count>= 0; ++entry) {
118
119         long id = entry->identifier;
120         long offset = os_vm_page_size * (1 + entry->data_page);
121         os_vm_address_t addr =
122             (os_vm_address_t) (os_vm_page_size * entry->address);
123         lispobj *free_pointer = (lispobj *) addr + entry->nwords;
124         long len = os_vm_page_size * entry->page_count;
125
126         if (len != 0) {
127             os_vm_address_t real_addr;
128             FSHOW((stderr, "/mapping %ld(0x%lx) bytes at 0x%lx\n",
129                    (long)len, (long)len, (unsigned long)addr));
130             real_addr = os_map(fd, offset + file_offset, addr, len);
131             if (real_addr != addr) {
132                 lose("file mapped in wrong place! "
133                      "(0x%08x != 0x%08lx)\n",
134                      real_addr,
135                      addr);
136             }
137         }
138
139         FSHOW((stderr, "/space id = %ld, free pointer = 0x%lx\n",
140                id, (unsigned long)free_pointer));
141
142         switch (id) {
143         case DYNAMIC_CORE_SPACE_ID:
144             if (len > dynamic_space_size) {
145                 fprintf(stderr,
146                         "dynamic space too small for core: %ldKiB required, %ldKiB available.\n",
147                         len >> 10,
148                         (long)dynamic_space_size >> 10);
149                 exit(1);
150             }
151 #ifdef LISP_FEATURE_GENCGC
152             if (addr != (os_vm_address_t)DYNAMIC_SPACE_START) {
153                 fprintf(stderr, "in core: 0x%lx; in runtime: 0x%lx \n",
154                         (long)addr, (long)DYNAMIC_SPACE_START);
155                 lose("core/runtime address mismatch: DYNAMIC_SPACE_START\n");
156             }
157 #else
158             if ((addr != (os_vm_address_t)DYNAMIC_0_SPACE_START) &&
159                 (addr != (os_vm_address_t)DYNAMIC_1_SPACE_START)) {
160                 fprintf(stderr, "in core: 0x%lx; in runtime: 0x%lx or 0x%lx\n",
161                         (long)addr,
162                         (long)DYNAMIC_0_SPACE_START,
163                         (long)DYNAMIC_1_SPACE_START);
164                 lose("warning: core/runtime address mismatch: DYNAMIC_SPACE_START\n");
165             }
166 #endif
167 #if defined(ALLOCATION_POINTER)
168             SetSymbolValue(ALLOCATION_POINTER, (lispobj)free_pointer,0);
169 #else
170             dynamic_space_free_pointer = free_pointer;
171 #endif
172             /* For stop-and-copy GC, this will be whatever the GC was
173              * using at the time. With GENCGC, this will always be
174              * space 0. (We checked above that for GENCGC,
175              * addr==DYNAMIC_SPACE_START.) */
176             current_dynamic_space = (lispobj *)addr;
177             break;
178         case STATIC_CORE_SPACE_ID:
179             if (addr != (os_vm_address_t)STATIC_SPACE_START) {
180                 fprintf(stderr, "in core: 0x%lx - in runtime: 0x%lx\n",
181                         (long)addr, (long)STATIC_SPACE_START);
182                 lose("core/runtime address mismatch: STATIC_SPACE_START\n");
183             }
184             break;
185         case READ_ONLY_CORE_SPACE_ID:
186             if (addr != (os_vm_address_t)READ_ONLY_SPACE_START) {
187                 fprintf(stderr, "in core: 0x%lx - in runtime: 0x%lx\n",
188                         (long)addr, (long)READ_ONLY_SPACE_START);
189                 lose("core/runtime address mismatch: READ_ONLY_SPACE_START\n");
190             }
191             break;
192         default:
193             lose("unknown space ID %ld addr 0x%lx\n", id, (long)addr);
194         }
195     }
196 }
197
198 lispobj
199 load_core_file(char *file, os_vm_offset_t file_offset)
200 {
201     lispobj *header, val, len, *ptr, remaining_len;
202     int fd = open_binary(file, O_RDONLY), count;
203
204     lispobj initial_function = NIL;
205     FSHOW((stderr, "/entering load_core_file(%s)\n", file));
206     if (fd < 0) {
207         fprintf(stderr, "could not open file \"%s\"\n", file);
208         perror("open");
209         exit(1);
210     }
211
212     lseek(fd, file_offset, SEEK_SET);
213     header = calloc(os_vm_page_size / sizeof(u32), sizeof(u32));
214
215     count = read(fd, header, os_vm_page_size);
216     if (count < os_vm_page_size) {
217         lose("premature end of core file\n");
218     }
219     SHOW("successfully read first page of core");
220
221     ptr = header;
222     val = *ptr++;
223
224     if (val != CORE_MAGIC) {
225         lose("invalid magic number in core: 0x%lx should have been 0x%x.\n",
226              val,
227              CORE_MAGIC);
228     }
229     SHOW("found CORE_MAGIC");
230
231     while (val != END_CORE_ENTRY_TYPE_CODE) {
232         val = *ptr++;
233         len = *ptr++;
234         remaining_len = len - 2; /* (-2 to cancel the two ++ operations) */
235         FSHOW((stderr, "/val=0x%ld, remaining_len=0x%ld\n",
236                (long)val, (long)remaining_len));
237
238         switch (val) {
239
240         case END_CORE_ENTRY_TYPE_CODE:
241             SHOW("END_CORE_ENTRY_TYPE_CODE case");
242             break;
243
244         case VERSION_CORE_ENTRY_TYPE_CODE:
245             SHOW("VERSION_CORE_ENTRY_TYPE_CODE case");
246             if (*ptr != SBCL_CORE_VERSION_INTEGER) {
247                 lose("core file version (%d) != runtime library version (%d)\n",
248                      *ptr,
249                      SBCL_CORE_VERSION_INTEGER);
250             }
251             break;
252
253         case BUILD_ID_CORE_ENTRY_TYPE_CODE:
254             SHOW("BUILD_ID_CORE_ENTRY_TYPE_CODE case");
255             {
256                 int i;
257
258                 FSHOW((stderr, "build_id[]=\"%s\"\n", build_id));
259                 FSHOW((stderr, "remaining_len = %d\n", remaining_len));
260                 if (remaining_len != strlen((const char *)build_id))
261                     goto losing_build_id;
262                 for (i = 0; i < remaining_len; ++i) {
263                     FSHOW((stderr, "ptr[%d] = char = %d, expected=%d\n",
264                            i, ptr[i], build_id[i]));
265                     if (ptr[i] != build_id[i])
266                         goto losing_build_id;
267                 }
268                 break;
269             losing_build_id:
270                 /* .core files are not binary-compatible between
271                  * builds because we can't easily detect whether the
272                  * sources were patched between the time the
273                  * dumping-the-.core runtime was built and the time
274                  * that the loading-the-.core runtime was built.
275                  *
276                  * (We could easily detect whether version.lisp-expr
277                  * was changed, but people experimenting with patches
278                  * don't necessarily update version.lisp-expr.) */
279
280                 lose("can't load .core for different runtime, sorry\n");
281             }
282
283         case NEW_DIRECTORY_CORE_ENTRY_TYPE_CODE:
284             SHOW("NEW_DIRECTORY_CORE_ENTRY_TYPE_CODE case");
285             process_directory(fd,
286                               ptr,
287 #ifndef LISP_FEATURE_ALPHA
288                               remaining_len / (sizeof(struct ndir_entry) /
289                                                sizeof(long)),
290 #else
291                               remaining_len / (sizeof(struct ndir_entry) /
292                                                sizeof(u32)),
293 #endif
294                               file_offset);
295             break;
296
297         case INITIAL_FUN_CORE_ENTRY_TYPE_CODE:
298             SHOW("INITIAL_FUN_CORE_ENTRY_TYPE_CODE case");
299             initial_function = (lispobj)*ptr;
300             break;
301
302 #if defined(LISP_FEATURE_SB_THREAD) && defined(LISP_FEATURE_SB_LUTEX)
303         case LUTEX_TABLE_CORE_ENTRY_TYPE_CODE:
304             SHOW("LUTEX_TABLE_CORE_ENTRY_TYPE_CODE case");
305             {
306                 size_t n_lutexes = *ptr;
307                 size_t fdoffset = (*(ptr + 1) + 1) * (os_vm_page_size);
308                 size_t data_length = n_lutexes * sizeof(struct sap *);
309                 struct lutex **lutexes_to_resurrect = malloc(data_length);
310                 long bytes_read;
311
312                 lseek(fd, fdoffset + file_offset, SEEK_SET);
313
314                 FSHOW((stderr, "attempting to read %ld lutexes from core\n", n_lutexes));
315                 bytes_read = read(fd, lutexes_to_resurrect, data_length);
316
317                 /* XXX */
318                 if (bytes_read != data_length) {
319                     lose("Could not read the lutex table");
320                 }
321                 else {
322                     int i;
323
324                     for (i=0; i<n_lutexes; ++i) {
325                         struct lutex *lutex = lutexes_to_resurrect[i];
326
327                         FSHOW((stderr, "re-init'ing lutex @ %p\n", lutex));
328                         lutex_init((tagged_lutex_t) lutex);
329                     }
330
331                     free(lutexes_to_resurrect);
332                 }
333                 break;
334             }
335 #endif
336
337 #ifdef LISP_FEATURE_GENCGC
338         case PAGE_TABLE_CORE_ENTRY_TYPE_CODE:
339         {
340             size_t size = *ptr;
341             size_t fdoffset = (*(ptr+1) + 1) * (os_vm_page_size);
342             size_t offset = 0;
343             long bytes_read;
344             long data[4096];
345             lseek(fd, fdoffset + file_offset, SEEK_SET);
346             while ((bytes_read = read(fd, data, (size < 4096 ? size : 4096 )))
347                     > 0)
348             {
349                 int i = 0;
350                 size -= bytes_read;
351                 while (bytes_read) {
352                     bytes_read -= sizeof(long);
353                     /* Ignore all zeroes. The size of the page table
354                      * core entry was rounded up to os_vm_page_size
355                      * during the save, and might now have more
356                      * elements than the page table.
357                      */
358                     if (data[i]) {
359                         page_table[offset].first_object_offset = data[i];
360                     }
361                     i++;
362                     offset++;
363                 }
364             }
365
366             gencgc_partial_pickup = 1;
367             break;
368         }
369 #endif
370         default:
371             lose("unknown core file entry: %ld\n", (long)val);
372         }
373
374         ptr += remaining_len;
375         FSHOW((stderr, "/new ptr=%lx\n", (unsigned long)ptr));
376     }
377     SHOW("about to free(header)");
378     free(header);
379     SHOW("returning from load_core_file(..)");
380     return initial_function;
381 }
382