kernel - Expand the x86_64 KVA to 8G
[dragonfly.git] / sys / platform / pc64 / x86_64 / minidump_machdep.c
1 /*-
2  * Copyright (c) 2006 Peter Wemm
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  *
26  * $FreeBSD: src/sys/amd64/amd64/minidump_machdep.c,v 1.10 2009/05/29 21:27:12 jamie Exp $
27  */
28
29 #include <sys/param.h>
30 #include <sys/systm.h>
31 #include <sys/conf.h>
32 #include <sys/cons.h>
33 #include <sys/device.h>
34 #include <sys/globaldata.h>
35 #include <sys/kernel.h>
36 #include <sys/kerneldump.h>
37 #include <sys/msgbuf.h>
38 #include <vm/vm.h>
39 #include <vm/vm_kern.h>
40 #include <vm/pmap.h>
41 #include <machine/atomic.h>
42 #include <machine/elf.h>
43 #include <machine/globaldata.h>
44 #include <machine/md_var.h>
45 #include <machine/vmparam.h>
46 #include <machine/minidump.h>
47
48 CTASSERT(sizeof(struct kerneldumpheader) == 512);
49
50 /*
51  * Don't touch the first SIZEOF_METADATA bytes on the dump device. This
52  * is to protect us from metadata and to protect metadata from us.
53  */
54 #define SIZEOF_METADATA         (64*1024)
55
56 #define MD_ALIGN(x)     (((off_t)(x) + PAGE_MASK) & ~PAGE_MASK)
57 #define DEV_ALIGN(x)    (((off_t)(x) + (DEV_BSIZE-1)) & ~(DEV_BSIZE-1))
58
59 extern uint64_t KPDPphys;
60
61 uint64_t *vm_page_dump;
62 int vm_page_dump_size;
63
64 static struct kerneldumpheader kdh;
65 static off_t dumplo;
66
67 /* Handle chunked writes. */
68 static size_t fragsz;
69 static void *dump_va;
70 static size_t counter, progress;
71
72 CTASSERT(sizeof(*vm_page_dump) == 8);
73
74 static int
75 is_dumpable(vm_paddr_t pa)
76 {
77         int i;
78
79         for (i = 0; dump_avail[i] != 0 || dump_avail[i + 1] != 0; i += 2) {
80                 if (pa >= dump_avail[i] && pa < dump_avail[i + 1])
81                         return (1);
82         }
83         return (0);
84 }
85
86 #define PG2MB(pgs) (((pgs) + (1 << 8) - 1) >> 8)
87
88 static int
89 blk_flush(struct dumperinfo *di)
90 {
91         int error;
92
93         if (fragsz == 0)
94                 return (0);
95
96         error = dev_ddump(di->priv, dump_va, 0, dumplo, fragsz);
97         dumplo += fragsz;
98         fragsz = 0;
99         return (error);
100 }
101
102 static int
103 blk_write(struct dumperinfo *di, char *ptr, vm_paddr_t pa, size_t sz)
104 {
105         size_t len;
106         int error, i, c;
107
108         error = 0;
109         if ((sz % PAGE_SIZE) != 0) {
110                 kprintf("size not page aligned\n");
111                 return (EINVAL);
112         }
113         if (ptr != NULL && pa != 0) {
114                 kprintf("cant have both va and pa!\n");
115                 return (EINVAL);
116         }
117         if (pa != 0 && (((uintptr_t)ptr) % PAGE_SIZE) != 0) {
118                 kprintf("address not page aligned\n");
119                 return (EINVAL);
120         }
121         if (ptr != NULL) {
122                 /* If we're doing a virtual dump, flush any pre-existing pa pages */
123                 error = blk_flush(di);
124                 if (error)
125                         return (error);
126         }
127         while (sz) {
128                 len = (MAXDUMPPGS * PAGE_SIZE) - fragsz;
129                 if (len > sz)
130                         len = sz;
131                 counter += len;
132                 progress -= len;
133                 if (counter >> 24) {
134                         kprintf(" %ld", PG2MB(progress >> PAGE_SHIFT));
135                         counter &= (1<<24) - 1;
136                 }
137                 if (ptr) {
138                         error = dev_ddump(di->priv, ptr, 0, dumplo, len);
139                         if (error)
140                                 return (error);
141                         dumplo += len;
142                         ptr += len;
143                         sz -= len;
144                 } else {
145                         for (i = 0; i < len; i += PAGE_SIZE)
146                                 dump_va = pmap_kenter_temporary(pa + i, (i + fragsz) >> PAGE_SHIFT);
147                         fragsz += len;
148                         pa += len;
149                         sz -= len;
150                         if (fragsz == (MAXDUMPPGS * PAGE_SIZE)) {
151                                 error = blk_flush(di);
152                                 if (error)
153                                         return (error);
154                         }
155                 }
156
157                 /* Check for user abort. */
158                 c = cncheckc();
159                 if (c == 0x03)
160                         return (ECANCELED);
161                 if (c != -1)
162                         kprintf(" (CTRL-C to abort) ");
163         }
164
165         return (0);
166 }
167
168 /* A fake page table page, to avoid having to handle both 4K and 2M pages */
169 static pt_entry_t fakept[NPTEPG];
170
171 void
172 minidumpsys(struct dumperinfo *di)
173 {
174         uint64_t dumpsize;
175         uint32_t ptesize;
176         vm_offset_t va;
177         vm_offset_t kern_end;
178         int error;
179         uint64_t bits;
180         uint64_t *pdp, *pd, *pt, pa;
181         int i, j, k, bit;
182         struct minidumphdr mdhdr;
183         struct mdglobaldata *md;
184
185         counter = 0;
186         /*
187          * Walk page table pages, set bits in vm_page_dump.
188          *
189          * NOTE: kernel_vm_end can actually be below KERNBASE.
190          *       Just use KvaEnd.
191          */
192         ptesize = 0;
193
194         md = (struct mdglobaldata *)globaldata_find(0);
195
196         kern_end = KvaEnd;
197         if (kern_end < (vm_offset_t)&(md[ncpus]))
198                 kern_end = (vm_offset_t)&(md[ncpus]);
199
200         pdp = (uint64_t *)PHYS_TO_DMAP(KPDPphys);
201         for (va = VM_MIN_KERNEL_ADDRESS; va < kern_end; va += NBPDR) {
202                 i = (va >> PDPSHIFT) & ((1ul << NPDPEPGSHIFT) - 1);
203                 /*
204                  * We always write a page, even if it is zero. Each
205                  * page written corresponds to 2MB of space
206                  */
207                 ptesize += PAGE_SIZE;
208                 if ((pdp[i] & PG_V) == 0)
209                         continue;
210                 pd = (uint64_t *)PHYS_TO_DMAP(pdp[i] & PG_FRAME);
211                 j = ((va >> PDRSHIFT) & ((1ul << NPDEPGSHIFT) - 1));
212                 if ((pd[j] & (PG_PS | PG_V)) == (PG_PS | PG_V))  {
213                         /* This is an entire 2M page. */
214                         pa = pd[j] & PG_PS_FRAME;
215                         for (k = 0; k < NPTEPG; k++) {
216                                 if (is_dumpable(pa))
217                                         dump_add_page(pa);
218                                 pa += PAGE_SIZE;
219                         }
220                         continue;
221                 }
222                 if ((pd[j] & PG_V) == PG_V) {
223                         /* set bit for each valid page in this 2MB block */
224                         pt = (uint64_t *)PHYS_TO_DMAP(pd[j] & PG_FRAME);
225                         for (k = 0; k < NPTEPG; k++) {
226                                 if ((pt[k] & PG_V) == PG_V) {
227                                         pa = pt[k] & PG_FRAME;
228                                         if (is_dumpable(pa))
229                                                 dump_add_page(pa);
230                                 }
231                         }
232                 } else {
233                         /* nothing, we're going to dump a null page */
234                 }
235         }
236
237         /* Calculate dump size. */
238         dumpsize = ptesize;
239         dumpsize += round_page(msgbufp->msg_size);
240         dumpsize += round_page(vm_page_dump_size);
241         for (i = 0; i < vm_page_dump_size / sizeof(*vm_page_dump); i++) {
242                 bits = vm_page_dump[i];
243                 while (bits) {
244                         bit = bsfq(bits);
245                         pa = (((uint64_t)i * sizeof(*vm_page_dump) * NBBY) + bit) * PAGE_SIZE;
246                         /* Clear out undumpable pages now if needed */
247                         if (is_dumpable(pa)) {
248                                 dumpsize += PAGE_SIZE;
249                         } else {
250                                 dump_drop_page(pa);
251                         }
252                         bits &= ~(1ul << bit);
253                 }
254         }
255         dumpsize += PAGE_SIZE;
256
257         /* Determine dump offset on device. */
258         if (di->mediasize < SIZEOF_METADATA + dumpsize + sizeof(kdh) * 2) {
259                 error = ENOSPC;
260                 goto fail;
261         }
262         dumplo = di->mediaoffset + di->mediasize - dumpsize;
263         dumplo -= sizeof(kdh) * 2;
264         progress = dumpsize;
265
266         /* Initialize mdhdr */
267         bzero(&mdhdr, sizeof(mdhdr));
268         strcpy(mdhdr.magic, MINIDUMP_MAGIC);
269         mdhdr.version = MINIDUMP_VERSION;
270         mdhdr.msgbufsize = msgbufp->msg_size;
271         mdhdr.bitmapsize = vm_page_dump_size;
272         mdhdr.ptesize = ptesize;
273         mdhdr.kernbase = VM_MIN_KERNEL_ADDRESS;
274         mdhdr.dmapbase = DMAP_MIN_ADDRESS;
275         mdhdr.dmapend = DMAP_MAX_ADDRESS;
276
277         mkdumpheader(&kdh, KERNELDUMPMAGIC, KERNELDUMP_AMD64_VERSION,
278             dumpsize, di->blocksize);
279
280         kprintf("Physical memory: %ju MB\n", ptoa((uintmax_t)physmem) / 1048576);
281         kprintf("Dumping %llu MB:", (long long)dumpsize >> 20);
282
283         /* Dump leader */
284         error = dev_ddump(di->priv, &kdh, 0, dumplo, sizeof(kdh));
285         if (error)
286                 goto fail;
287         dumplo += sizeof(kdh);
288
289         /* Dump my header */
290         bzero(&fakept, sizeof(fakept));
291         bcopy(&mdhdr, &fakept, sizeof(mdhdr));
292         error = blk_write(di, (char *)&fakept, 0, PAGE_SIZE);
293         if (error)
294                 goto fail;
295
296         /* Dump msgbuf up front */
297         error = blk_write(di, (char *)msgbufp->msg_ptr, 0, round_page(msgbufp->msg_size));
298         if (error)
299                 goto fail;
300
301         /* Dump bitmap */
302         error = blk_write(di, (char *)vm_page_dump, 0, round_page(vm_page_dump_size));
303         if (error)
304                 goto fail;
305
306         /* Dump kernel page table pages */
307         pdp = (uint64_t *)PHYS_TO_DMAP(KPDPphys);
308         for (va = VM_MIN_KERNEL_ADDRESS; va < kern_end; va += NBPDR) {
309                 i = (va >> PDPSHIFT) & ((1ul << NPDPEPGSHIFT) - 1);
310                 /* We always write a page, even if it is zero */
311                 if ((pdp[i] & PG_V) == 0) {
312                         bzero(fakept, sizeof(fakept));
313                         error = blk_write(di, (char *)&fakept, 0, PAGE_SIZE);
314                         if (error)
315                                 goto fail;
316                         /* flush, in case we reuse fakept in the same block */
317                         error = blk_flush(di);
318                         if (error)
319                                 goto fail;
320                         continue;
321                 }
322                 pd = (uint64_t *)PHYS_TO_DMAP(pdp[i] & PG_FRAME);
323                 j = ((va >> PDRSHIFT) & ((1ul << NPDEPGSHIFT) - 1));
324                 if ((pd[j] & (PG_PS | PG_V)) == (PG_PS | PG_V))  {
325                         /* This is a single 2M block. Generate a fake PTP */
326                         pa = pd[j] & PG_PS_FRAME;
327                         for (k = 0; k < NPTEPG; k++) {
328                                 fakept[k] = (pa + (k * PAGE_SIZE)) | PG_V | PG_RW | PG_A | PG_M;
329                         }
330                         error = blk_write(di, (char *)&fakept, 0, PAGE_SIZE);
331                         if (error)
332                                 goto fail;
333                         /* flush, in case we reuse fakept in the same block */
334                         error = blk_flush(di);
335                         if (error)
336                                 goto fail;
337                         continue;
338                 }
339                 if ((pd[j] & PG_V) == PG_V) {
340                         pt = (uint64_t *)PHYS_TO_DMAP(pd[j] & PG_FRAME);
341                         error = blk_write(di, (char *)pt, 0, PAGE_SIZE);
342                         if (error)
343                                 goto fail;
344                 } else {
345                         bzero(fakept, sizeof(fakept));
346                         error = blk_write(di, (char *)&fakept, 0, PAGE_SIZE);
347                         if (error)
348                                 goto fail;
349                         /* flush, in case we reuse fakept in the same block */
350                         error = blk_flush(di);
351                         if (error)
352                                 goto fail;
353                 }
354         }
355
356         /* Dump memory chunks */
357         /* XXX cluster it up and use blk_dump() */
358         for (i = 0; i < vm_page_dump_size / sizeof(*vm_page_dump); i++) {
359                 bits = vm_page_dump[i];
360                 while (bits) {
361                         bit = bsfq(bits);
362                         pa = (((uint64_t)i * sizeof(*vm_page_dump) * NBBY) + bit) * PAGE_SIZE;
363                         error = blk_write(di, 0, pa, PAGE_SIZE);
364                         if (error)
365                                 goto fail;
366                         bits &= ~(1ul << bit);
367                 }
368         }
369
370         error = blk_flush(di);
371         if (error)
372                 goto fail;
373
374         /* Dump trailer */
375         error = dev_ddump(di->priv, &kdh, 0, dumplo, sizeof(kdh));
376         if (error)
377                 goto fail;
378         dumplo += sizeof(kdh);
379
380         /* Signal completion, signoff and exit stage left. */
381         dev_ddump(di->priv, NULL, 0, 0, 0);
382         kprintf("\nDump complete\n");
383         return;
384
385  fail:
386         if (error < 0)
387                 error = -error;
388
389         if (error == ECANCELED)
390                 kprintf("\nDump aborted\n");
391         else if (error == ENOSPC)
392                 kprintf("\nDump failed. Partition too small.\n");
393         else
394                 kprintf("\n** DUMP FAILED (ERROR %d) **\n", error);
395 }
396
397 void
398 dump_add_page(vm_paddr_t pa)
399 {
400         int idx, bit;
401
402         pa >>= PAGE_SHIFT;
403         idx = pa >> 6;          /* 2^6 = 64 */
404         bit = pa & 63;
405         atomic_set_long(&vm_page_dump[idx], 1ul << bit);
406 }
407
408 void
409 dump_drop_page(vm_paddr_t pa)
410 {
411         int idx, bit;
412
413         pa >>= PAGE_SHIFT;
414         idx = pa >> 6;          /* 2^6 = 64 */
415         bit = pa & 63;
416         atomic_clear_long(&vm_page_dump[idx], 1ul << bit);
417 }