mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 19:43:32 +00:00
f0600a898c
- Remove XD bit in page tables - Fix cylinder+head+sector arithmetic - Implement fstat() for serial file descriptors on metal Here's how to boot an Actually Portable Executable in QEMU: make -j12 o//tool/viz/deathstar.com qemu-system-x86_64 -serial stdio -fda o//tool/viz/deathstar.com Here's a screenshot of DEATHSTAR.COM booted in QEMU: https://justine.lol/cosmopolitan/cosmo-metal-qemu.png Thus metal support is in much better shape now, but still incomplete. Only a few system calls have been polyfilled. To figure out which ones your program needs, simply boot it in the blinkenlights emulator with a breakpoint, and press CTRL-C to continue to the system call breakpoint. If it doesn't break then you should be good. (Note: to emulate normally you can press 'c' and use CTRL-T and ALT-T to tune the speed.) m=tiny make -j12 SILENT=0 MODE=$m \ o/$m/tool/build/blinkenlights.com \ o/$m/tool/viz/deathstar.com o/$m/tool/build/blinkenlights.com \ -r -t -b systemfive.linux \ o/$m/tool/viz/deathstar.com Thank @Theldus for the bug report that made this change possible. Fixes #20 which explains this change further.
83 lines
4.3 KiB
C
83 lines
4.3 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 │
|
|
│ │
|
|
│ Permission to use, copy, modify, and/or distribute this software for │
|
|
│ any purpose with or without fee is hereby granted, provided that the │
|
|
│ above copyright notice and this permission notice appear in all copies. │
|
|
│ │
|
|
│ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL │
|
|
│ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED │
|
|
│ WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE │
|
|
│ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL │
|
|
│ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR │
|
|
│ PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER │
|
|
│ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │
|
|
│ PERFORMANCE OF THIS SOFTWARE. │
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
|
#include "libc/bits/safemacros.h"
|
|
#include "libc/calls/internal.h"
|
|
#include "libc/calls/struct/stat.h"
|
|
#include "libc/fmt/conv.h"
|
|
#include "libc/nt/enum/fileflagandattributes.h"
|
|
#include "libc/nt/enum/fileinfobyhandleclass.h"
|
|
#include "libc/nt/enum/filetype.h"
|
|
#include "libc/nt/files.h"
|
|
#include "libc/nt/runtime.h"
|
|
#include "libc/nt/struct/byhandlefileinformation.h"
|
|
#include "libc/nt/struct/filecompressioninfo.h"
|
|
#include "libc/str/str.h"
|
|
#include "libc/sysv/consts/s.h"
|
|
|
|
textwindows int fstat$nt(int64_t handle, struct stat *st) {
|
|
int filetype;
|
|
uint64_t actualsize;
|
|
struct NtFileCompressionInfo fci;
|
|
struct NtByHandleFileInformation wst;
|
|
if ((filetype = GetFileType(handle))) {
|
|
memset(st, 0, sizeof(*st));
|
|
switch (filetype) {
|
|
case kNtFileTypeChar:
|
|
st->st_mode = S_IFCHR | 0600;
|
|
break;
|
|
case kNtFileTypePipe:
|
|
st->st_mode = S_IFIFO | 0600;
|
|
break;
|
|
case kNtFileTypeDisk:
|
|
if (GetFileInformationByHandle(handle, &wst)) {
|
|
dprintf(1, "handle = %ld\n", handle);
|
|
st->st_mode =
|
|
(S_IRUSR | S_IXUSR |
|
|
(!(wst.dwFileAttributes & kNtFileAttributeReadonly) ? S_IWUSR
|
|
: 0) |
|
|
((wst.dwFileAttributes & kNtFileAttributeNormal) ? S_IFREG : 0) |
|
|
((wst.dwFileAttributes & kNtFileFlagOpenReparsePoint) ? S_IFLNK
|
|
: 0) |
|
|
((wst.dwFileAttributes & kNtFileAttributeDirectory) ? S_IFDIR
|
|
: 0));
|
|
st->st_atim = FileTimeToTimeSpec(wst.ftLastAccessFileTime);
|
|
st->st_mtim = FileTimeToTimeSpec(wst.ftLastWriteFileTime);
|
|
st->st_ctim = FileTimeToTimeSpec(wst.ftCreationFileTime);
|
|
st->st_size = (uint64_t)wst.nFileSizeHigh << 32 | wst.nFileSizeLow;
|
|
st->st_blksize = PAGESIZE;
|
|
st->st_dev = wst.dwVolumeSerialNumber;
|
|
st->st_ino = (uint64_t)wst.nFileIndexHigh << 32 | wst.nFileIndexLow;
|
|
st->st_nlink = wst.nNumberOfLinks;
|
|
if (GetFileInformationByHandleEx(handle, kNtFileCompressionInfo, &fci,
|
|
sizeof(fci))) {
|
|
actualsize = fci.CompressedFileSize;
|
|
} else {
|
|
actualsize = st->st_size;
|
|
}
|
|
st->st_blocks = roundup(actualsize, PAGESIZE) / 512;
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
return 0;
|
|
} else {
|
|
return __winerr();
|
|
}
|
|
}
|