mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 15:03:34 +00:00
blinkenlights now does a pretty good job emulating what happens when binaries boot from BIOS into long mode. So it's been much easier to debug the bare metal process and wrinkle out many issues.
119 lines
4.4 KiB
C
119 lines
4.4 KiB
C
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
|
|
│vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
|
│ Copyright 2020 Justine Alexandra Roberts Tunney │
|
|
│ │
|
|
│ This program is free software; you can redistribute it and/or modify │
|
|
│ it under the terms of the GNU General Public License as published by │
|
|
│ the Free Software Foundation; version 2 of the License. │
|
|
│ │
|
|
│ This program is distributed in the hope that it will be useful, but │
|
|
│ WITHOUT ANY WARRANTY; without even the implied warranty of │
|
|
│ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU │
|
|
│ General Public License for more details. │
|
|
│ │
|
|
│ You should have received a copy of the GNU General Public License │
|
|
│ along with this program; if not, write to the Free Software │
|
|
│ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA │
|
|
│ 02110-1301 USA │
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
|
#include "libc/log/check.h"
|
|
#include "libc/macros.h"
|
|
#include "libc/mem/mem.h"
|
|
#include "libc/x/x.h"
|
|
#include "tool/build/lib/buffer.h"
|
|
#include "tool/build/lib/memory.h"
|
|
#include "tool/build/lib/pml4t.h"
|
|
|
|
struct Pml4tFormater {
|
|
bool t;
|
|
int64_t start;
|
|
struct Buffer b;
|
|
long lines;
|
|
};
|
|
|
|
static int64_t MakeAddress(unsigned short a[4]) {
|
|
uint64_t x;
|
|
x = 0;
|
|
x |= a[0];
|
|
x <<= 9;
|
|
x |= a[1];
|
|
x <<= 9;
|
|
x |= a[2];
|
|
x <<= 9;
|
|
x |= a[3];
|
|
x <<= 12;
|
|
return x;
|
|
}
|
|
|
|
static void FormatStartPage(struct Pml4tFormater *pp, int64_t start) {
|
|
pp->t = true;
|
|
pp->start = start;
|
|
if (pp->lines++) AppendChar(&pp->b, '\n');
|
|
AppendFmt(&pp->b, "%p-", start);
|
|
}
|
|
|
|
static void FormatEndPage(struct Pml4tFormater *pp, int64_t end) {
|
|
int64_t size;
|
|
pp->t = false;
|
|
size = end - pp->start;
|
|
AppendFmt(&pp->b, "%p %p %,ld bytes", end - 1, size, size);
|
|
}
|
|
|
|
static void *GetPt(struct Machine *m, uint64_t r) {
|
|
CHECK_LE(r + 0x1000, m->real.n);
|
|
return m->real.p + r;
|
|
}
|
|
|
|
char *FormatPml4t(struct Machine *m) {
|
|
uint64_t *pd[4];
|
|
unsigned short i, a[4];
|
|
struct Pml4tFormater pp = {0};
|
|
unsigned short range[][2] = {{256, 512}, {0, 256}};
|
|
if ((m->mode & 3) != XED_MODE_LONG) return strdup("");
|
|
pd[0] = GetPt(m, m->cr3);
|
|
for (i = 0; i < ARRAYLEN(range); ++i) {
|
|
a[0] = range[i][0];
|
|
do {
|
|
a[1] = a[2] = a[3] = 0;
|
|
if (!IsValidPage(pd[0][a[0]])) {
|
|
if (pp.t) FormatEndPage(&pp, MakeAddress(a));
|
|
} else {
|
|
pd[1] = GetPt(m, UnmaskPageAddr(pd[0][a[0]]));
|
|
do {
|
|
a[2] = a[3] = 0;
|
|
if (!IsValidPage(pd[1][a[1]])) {
|
|
if (pp.t) FormatEndPage(&pp, MakeAddress(a));
|
|
} else {
|
|
pd[2] = GetPt(m, UnmaskPageAddr(pd[1][a[1]]));
|
|
do {
|
|
a[3] = 0;
|
|
if (!IsValidPage(pd[2][a[2]])) {
|
|
if (pp.t) FormatEndPage(&pp, MakeAddress(a));
|
|
} else {
|
|
pd[3] = GetPt(m, UnmaskPageAddr(pd[2][a[2]]));
|
|
do {
|
|
if (!IsValidPage(pd[3][a[3]])) {
|
|
if (pp.t) FormatEndPage(&pp, MakeAddress(a));
|
|
} else {
|
|
if (!pp.t) {
|
|
FormatStartPage(&pp, MakeAddress(a));
|
|
}
|
|
}
|
|
} while (++a[3] != 512);
|
|
}
|
|
} while (++a[2] != 512);
|
|
}
|
|
} while (++a[1] != 512);
|
|
}
|
|
} while (++a[0] != range[i][1]);
|
|
}
|
|
if (pp.t) {
|
|
FormatEndPage(&pp, 0x800000000000);
|
|
}
|
|
if (pp.b.p) {
|
|
return xrealloc(pp.b.p, pp.b.i + 1);
|
|
} else {
|
|
return strdup("");
|
|
}
|
|
}
|