2020-06-15 14:18:57 +00:00
|
|
|
/*-*- 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 │
|
|
|
|
│ │
|
2020-12-28 01:18:44 +00:00
|
|
|
│ 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. │
|
2020-06-15 14:18:57 +00:00
|
|
|
│ │
|
2020-12-28 01:18:44 +00:00
|
|
|
│ 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. │
|
2020-06-15 14:18:57 +00:00
|
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
|
|
|
#include "libc/bits/bits.h"
|
|
|
|
#include "libc/bits/pushpop.h"
|
2020-09-28 08:13:56 +00:00
|
|
|
#include "libc/bits/weaken.h"
|
2020-11-13 09:27:49 +00:00
|
|
|
#include "libc/calls/internal.h"
|
Introduce --strace flag for system call tracing
This is similar to the --ftrace (c function call trace) flag, except
it's less noisy since it only logs system calls to stderr. Having this
flag is valuable because (1) system call tracing tells us a lot about
the behavior of complex programs and (2) it's usually very hard to get
system call tracing on various operating systems, e.g. strace, ktrace,
dtruss, truss, nttrace, etc. Especially on Apple platforms where even
with the special boot trick, debuggers still aren't guaranteed to work.
make -j8 o//examples
o//examples/hello.com --strace
This is enabled by default in MODE=, MODE=opt, and MODE=dbg. In MODE=dbg
extra information will be printed.
make -j8 MODE=dbg o/dbg/examples
o/dbg/examples/hello.com --strace |& less
This change also changes:
- Rename IsText() → _istext()
- Rename IsUtf8() → _isutf8()
- Fix madvise() on Windows NT
- Fix empty string case of inet_ntop()
- vfork() wrapper now saves and restores errno
- Update xsigaction() to yoink syscall support
2022-03-19 01:07:28 +00:00
|
|
|
#include "libc/calls/strace.internal.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
#include "libc/dce.h"
|
2022-03-19 10:37:00 +00:00
|
|
|
#include "libc/errno.h"
|
2020-11-13 09:27:49 +00:00
|
|
|
#include "libc/fmt/fmt.h"
|
2022-03-16 20:33:13 +00:00
|
|
|
#include "libc/intrin/kprintf.h"
|
2021-09-28 05:58:51 +00:00
|
|
|
#include "libc/log/libfatal.internal.h"
|
2021-03-01 07:42:35 +00:00
|
|
|
#include "libc/macros.internal.h"
|
2021-09-28 05:58:51 +00:00
|
|
|
#include "libc/nexgen32e/bsr.h"
|
2022-03-16 20:33:13 +00:00
|
|
|
#include "libc/nexgen32e/rdtsc.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
#include "libc/nt/console.h"
|
2020-09-28 08:13:56 +00:00
|
|
|
#include "libc/nt/enum/consolemodeflags.h"
|
2020-11-25 16:19:00 +00:00
|
|
|
#include "libc/nt/enum/filemapflags.h"
|
2020-09-28 08:13:56 +00:00
|
|
|
#include "libc/nt/enum/filetype.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
#include "libc/nt/enum/loadlibrarysearch.h"
|
2020-11-09 23:41:11 +00:00
|
|
|
#include "libc/nt/enum/pageflags.h"
|
2020-11-25 16:19:00 +00:00
|
|
|
#include "libc/nt/enum/version.h"
|
2020-09-28 08:13:56 +00:00
|
|
|
#include "libc/nt/files.h"
|
2020-11-09 23:41:11 +00:00
|
|
|
#include "libc/nt/memory.h"
|
2020-11-25 16:19:00 +00:00
|
|
|
#include "libc/nt/pedef.internal.h"
|
2020-09-28 08:13:56 +00:00
|
|
|
#include "libc/nt/process.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
#include "libc/nt/runtime.h"
|
2021-02-11 16:37:18 +00:00
|
|
|
#include "libc/nt/struct/teb.h"
|
2021-02-24 04:23:19 +00:00
|
|
|
#include "libc/runtime/directmap.internal.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
#include "libc/runtime/internal.h"
|
2021-09-04 20:20:47 +00:00
|
|
|
#include "libc/runtime/memtrack.internal.h"
|
2020-09-28 08:13:56 +00:00
|
|
|
#include "libc/runtime/runtime.h"
|
2020-11-13 09:27:49 +00:00
|
|
|
#include "libc/sock/internal.h"
|
2021-09-28 05:58:51 +00:00
|
|
|
#include "libc/str/tpenc.h"
|
|
|
|
#include "libc/str/utf16.h"
|
2021-02-24 12:00:38 +00:00
|
|
|
|
2021-09-28 05:58:51 +00:00
|
|
|
#define AT_EXECFN 31L
|
2021-02-24 12:00:38 +00:00
|
|
|
#define MAP_ANONYMOUS 32
|
|
|
|
#define MAP_PRIVATE 2
|
|
|
|
#define PROT_EXEC 4
|
|
|
|
#define PROT_READ 1
|
|
|
|
#define PROT_WRITE 2
|
2020-11-13 09:27:49 +00:00
|
|
|
|
2021-01-17 03:18:37 +00:00
|
|
|
/*
|
|
|
|
* TODO: Why can't we allocate addresses above 4GB on Windows 7 x64?
|
2021-01-28 08:25:52 +00:00
|
|
|
* TODO: How can we ensure we never overlap with KERNEL32.DLL?
|
2021-01-17 03:18:37 +00:00
|
|
|
*/
|
|
|
|
|
2020-11-13 09:27:49 +00:00
|
|
|
struct WinArgs {
|
2021-01-25 21:08:05 +00:00
|
|
|
char *argv[4096];
|
2021-02-24 12:00:38 +00:00
|
|
|
char *envp[4092];
|
|
|
|
intptr_t auxv[2][2];
|
2020-11-13 09:27:49 +00:00
|
|
|
char argblock[ARG_MAX];
|
2021-01-25 21:08:05 +00:00
|
|
|
char envblock[ARG_MAX];
|
2020-11-13 09:27:49 +00:00
|
|
|
};
|
2020-06-15 14:18:57 +00:00
|
|
|
|
2022-03-16 20:33:13 +00:00
|
|
|
extern int __pid;
|
|
|
|
extern bool __nomultics;
|
|
|
|
extern const char kConsoleHandles[2];
|
2021-02-27 20:53:51 +00:00
|
|
|
|
2022-03-16 20:33:13 +00:00
|
|
|
static const short kConsoleModes[2] = {
|
|
|
|
kNtEnableProcessedInput | kNtEnableLineInput | kNtEnableEchoInput |
|
|
|
|
kNtEnableMouseInput | kNtEnableQuickEditMode | kNtEnableExtendedFlags |
|
|
|
|
kNtEnableAutoPosition | kNtEnableInsertMode |
|
|
|
|
kNtEnableVirtualTerminalInput,
|
|
|
|
kNtEnableProcessedOutput | kNtEnableWrapAtEolOutput |
|
|
|
|
kNtEnableVirtualTerminalProcessing,
|
|
|
|
};
|
|
|
|
|
|
|
|
forceinline void MakeLongDoubleLongAgain(void) {
|
2021-02-26 02:30:17 +00:00
|
|
|
/* 8087 FPU Control Word
|
|
|
|
IM: Invalid Operation ───────────────┐
|
|
|
|
DM: Denormal Operand ───────────────┐│
|
|
|
|
ZM: Zero Divide ───────────────────┐││
|
|
|
|
OM: Overflow ─────────────────────┐│││
|
|
|
|
UM: Underflow ───────────────────┐││││
|
|
|
|
PM: Precision ──────────────────┐│││││
|
|
|
|
PC: Precision Control ────────┐ ││││││
|
|
|
|
{float,∅,double,long double} │ ││││││
|
|
|
|
RC: Rounding Control ───────┐ │ ││││││
|
|
|
|
{even, →-∞, →+∞, →0} │┌┤ ││││││
|
|
|
|
┌┤││ ││││││
|
|
|
|
d││││rr││││││*/
|
|
|
|
int x87cw = 0b0000000000000000001101111111;
|
2021-01-25 21:08:05 +00:00
|
|
|
asm volatile("fldcw\t%0" : /* no outputs */ : "m"(x87cw));
|
|
|
|
}
|
|
|
|
|
2022-03-19 10:37:00 +00:00
|
|
|
static noasan textwindows wontreturn noinstrument void WinMainNew(
|
|
|
|
const char16_t *cmdline) {
|
|
|
|
bool32 rc;
|
2020-11-13 09:27:49 +00:00
|
|
|
int64_t h;
|
2021-02-11 16:37:18 +00:00
|
|
|
int version;
|
2020-11-13 09:27:49 +00:00
|
|
|
int i, count;
|
2022-03-16 20:33:13 +00:00
|
|
|
int64_t hand;
|
2020-11-13 09:27:49 +00:00
|
|
|
struct WinArgs *wa;
|
|
|
|
const char16_t *env16;
|
2021-10-14 00:27:13 +00:00
|
|
|
intptr_t stackaddr, allocaddr;
|
|
|
|
size_t allocsize, argsize, stacksize;
|
2021-02-11 16:37:18 +00:00
|
|
|
version = NtGetPeb()->OSMajorVersion;
|
2021-10-15 02:36:49 +00:00
|
|
|
__oldstack = (intptr_t)__builtin_frame_address(0);
|
2021-02-27 20:53:51 +00:00
|
|
|
if ((intptr_t)v_ntsubsystem == kNtImageSubsystemWindowsCui && version >= 10) {
|
2022-03-19 10:37:00 +00:00
|
|
|
rc = SetConsoleCP(kNtCpUtf8);
|
|
|
|
STRACE("SetConsoleCP(kNtCpUtf8) → %hhhd", rc);
|
|
|
|
rc = SetConsoleOutputCP(kNtCpUtf8);
|
|
|
|
STRACE("SetConsoleOutputCP(kNtCpUtf8) → %hhhd", rc);
|
2021-02-27 22:59:26 +00:00
|
|
|
SetEnvironmentVariable(u"TERM", u"xterm-truecolor");
|
2022-03-16 20:33:13 +00:00
|
|
|
for (i = 0; i < 2; ++i) {
|
|
|
|
hand = GetStdHandle(kConsoleHandles[i]);
|
2022-03-19 10:37:00 +00:00
|
|
|
rc = GetConsoleMode(hand, __ntconsolemode + i);
|
|
|
|
STRACE("GetConsoleMode(%p, [%#x]) → %hhhd", hand, __ntconsolemode[i], rc);
|
|
|
|
rc = SetConsoleMode(hand, kConsoleModes[i]);
|
|
|
|
STRACE("SetConsoleMode(%p, %#x) → %hhhd", hand, kConsoleModes[i], rc);
|
2022-03-16 20:33:13 +00:00
|
|
|
}
|
2021-02-27 20:53:51 +00:00
|
|
|
}
|
2021-09-04 20:20:47 +00:00
|
|
|
_mmi.p = _mmi.s;
|
2021-10-15 02:36:49 +00:00
|
|
|
_mmi.n = ARRAYLEN(_mmi.s);
|
2021-10-14 00:27:13 +00:00
|
|
|
argsize = ROUNDUP(sizeof(struct WinArgs), FRAMESIZE);
|
2021-10-15 02:36:49 +00:00
|
|
|
stackaddr = GetStaticStackAddr(0);
|
2021-10-14 00:27:13 +00:00
|
|
|
stacksize = GetStackSize();
|
|
|
|
allocsize = argsize + stacksize;
|
|
|
|
allocaddr = stackaddr - argsize;
|
2022-03-19 10:37:00 +00:00
|
|
|
STRACE("WinMainNew() mapping %'zu byte arg block + stack at %p", allocsize,
|
|
|
|
allocaddr);
|
2021-10-14 00:27:13 +00:00
|
|
|
MapViewOfFileExNuma(
|
|
|
|
(_mmi.p[0].h = CreateFileMappingNuma(
|
|
|
|
-1, &kNtIsInheritable, kNtPageExecuteReadwrite, allocsize >> 32,
|
|
|
|
allocsize, NULL, kNtNumaNoPreferredNode)),
|
|
|
|
kNtFileMapWrite | kNtFileMapExecute, 0, 0, allocsize, (void *)allocaddr,
|
|
|
|
kNtNumaNoPreferredNode);
|
|
|
|
_mmi.p[0].x = allocaddr >> 16;
|
|
|
|
_mmi.p[0].y = (allocaddr >> 16) + ((allocsize >> 16) - 1);
|
2021-01-25 21:08:05 +00:00
|
|
|
_mmi.p[0].prot = PROT_READ | PROT_WRITE | PROT_EXEC;
|
2020-11-13 09:27:49 +00:00
|
|
|
_mmi.p[0].flags = MAP_PRIVATE | MAP_ANONYMOUS;
|
2021-02-27 18:33:32 +00:00
|
|
|
_mmi.i = 1;
|
2021-10-14 00:27:13 +00:00
|
|
|
wa = (struct WinArgs *)allocaddr;
|
Introduce --strace flag for system call tracing
This is similar to the --ftrace (c function call trace) flag, except
it's less noisy since it only logs system calls to stderr. Having this
flag is valuable because (1) system call tracing tells us a lot about
the behavior of complex programs and (2) it's usually very hard to get
system call tracing on various operating systems, e.g. strace, ktrace,
dtruss, truss, nttrace, etc. Especially on Apple platforms where even
with the special boot trick, debuggers still aren't guaranteed to work.
make -j8 o//examples
o//examples/hello.com --strace
This is enabled by default in MODE=, MODE=opt, and MODE=dbg. In MODE=dbg
extra information will be printed.
make -j8 MODE=dbg o/dbg/examples
o/dbg/examples/hello.com --strace |& less
This change also changes:
- Rename IsText() → _istext()
- Rename IsUtf8() → _isutf8()
- Fix madvise() on Windows NT
- Fix empty string case of inet_ntop()
- vfork() wrapper now saves and restores errno
- Update xsigaction() to yoink syscall support
2022-03-19 01:07:28 +00:00
|
|
|
STRACE("WinMainNew() loading arg block");
|
2022-03-19 10:37:00 +00:00
|
|
|
count = GetDosArgv(cmdline, wa->argblock, ARRAYLEN(wa->argblock), wa->argv,
|
|
|
|
ARRAYLEN(wa->argv));
|
2020-11-13 09:27:49 +00:00
|
|
|
for (i = 0; wa->argv[0][i]; ++i) {
|
|
|
|
if (wa->argv[0][i] == '\\') {
|
|
|
|
wa->argv[0][i] = '/';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
env16 = GetEnvironmentStrings();
|
Introduce --strace flag for system call tracing
This is similar to the --ftrace (c function call trace) flag, except
it's less noisy since it only logs system calls to stderr. Having this
flag is valuable because (1) system call tracing tells us a lot about
the behavior of complex programs and (2) it's usually very hard to get
system call tracing on various operating systems, e.g. strace, ktrace,
dtruss, truss, nttrace, etc. Especially on Apple platforms where even
with the special boot trick, debuggers still aren't guaranteed to work.
make -j8 o//examples
o//examples/hello.com --strace
This is enabled by default in MODE=, MODE=opt, and MODE=dbg. In MODE=dbg
extra information will be printed.
make -j8 MODE=dbg o/dbg/examples
o/dbg/examples/hello.com --strace |& less
This change also changes:
- Rename IsText() → _istext()
- Rename IsUtf8() → _isutf8()
- Fix madvise() on Windows NT
- Fix empty string case of inet_ntop()
- vfork() wrapper now saves and restores errno
- Update xsigaction() to yoink syscall support
2022-03-19 01:07:28 +00:00
|
|
|
STRACE("WinMainNew() loading environment");
|
2021-09-28 05:58:51 +00:00
|
|
|
GetDosEnviron(env16, wa->envblock, ARRAYLEN(wa->envblock) - 8, wa->envp,
|
|
|
|
ARRAYLEN(wa->envp) - 1);
|
2020-11-13 09:27:49 +00:00
|
|
|
FreeEnvironmentStrings(env16);
|
2021-10-02 15:17:04 +00:00
|
|
|
wa->auxv[0][0] = pushpop(AT_EXECFN);
|
|
|
|
wa->auxv[0][1] = (intptr_t)wa->argv[0];
|
Introduce --strace flag for system call tracing
This is similar to the --ftrace (c function call trace) flag, except
it's less noisy since it only logs system calls to stderr. Having this
flag is valuable because (1) system call tracing tells us a lot about
the behavior of complex programs and (2) it's usually very hard to get
system call tracing on various operating systems, e.g. strace, ktrace,
dtruss, truss, nttrace, etc. Especially on Apple platforms where even
with the special boot trick, debuggers still aren't guaranteed to work.
make -j8 o//examples
o//examples/hello.com --strace
This is enabled by default in MODE=, MODE=opt, and MODE=dbg. In MODE=dbg
extra information will be printed.
make -j8 MODE=dbg o/dbg/examples
o/dbg/examples/hello.com --strace |& less
This change also changes:
- Rename IsText() → _istext()
- Rename IsUtf8() → _isutf8()
- Fix madvise() on Windows NT
- Fix empty string case of inet_ntop()
- vfork() wrapper now saves and restores errno
- Update xsigaction() to yoink syscall support
2022-03-19 01:07:28 +00:00
|
|
|
STRACE("WinMainNew() switching stacks");
|
2021-10-14 00:27:13 +00:00
|
|
|
_jmpstack((char *)stackaddr + stacksize, cosmo, count, wa->argv, wa->envp,
|
2021-02-24 12:00:38 +00:00
|
|
|
wa->auxv);
|
2020-11-13 09:27:49 +00:00
|
|
|
}
|
|
|
|
|
2020-09-28 08:13:56 +00:00
|
|
|
/**
|
|
|
|
* Main function on Windows NT.
|
|
|
|
*
|
|
|
|
* The Cosmopolitan Runtime provides the following services, which aim
|
|
|
|
* to bring Windows NT behavior closer in harmony with System Five:
|
|
|
|
*
|
2020-12-26 10:09:07 +00:00
|
|
|
* 1. We configure CMD.EXE for UTF-8 and enable ANSI colors on Win10.
|
2020-09-28 08:13:56 +00:00
|
|
|
*
|
2020-12-26 10:09:07 +00:00
|
|
|
* 2. Command line arguments are passed as a blob of UTF-16 text. We
|
|
|
|
* chop them up into an char *argv[] UTF-8 data structure, in
|
|
|
|
* accordance with the DOS conventions for argument quoting.
|
2020-09-28 08:13:56 +00:00
|
|
|
*
|
2020-12-26 10:09:07 +00:00
|
|
|
* 3. Environment variables are passed to us as a sorted UTF-16 double
|
|
|
|
* NUL terminated list. We translate this to char ** using UTF-8.
|
2020-09-28 08:13:56 +00:00
|
|
|
*
|
2020-12-26 10:09:07 +00:00
|
|
|
* 4. Allocates new stack at a high address. NT likes to choose a
|
|
|
|
* stack address that's beneath the program image. We want to be
|
|
|
|
* able to assume that stack addresses are located at higher
|
|
|
|
* addresses than heap and program memory.
|
2020-09-28 08:13:56 +00:00
|
|
|
*
|
2021-04-18 18:34:59 +00:00
|
|
|
* 5. Reconfigure x87 FPU so long double is actually long (80 bits).
|
2020-09-28 08:13:56 +00:00
|
|
|
*
|
2021-04-18 18:34:59 +00:00
|
|
|
* 6. Finally, we need fork. Since disagreeing with fork is axiomatic to
|
|
|
|
* Microsoft's engineering culture, we need to go to great lengths to
|
|
|
|
* have it anyway without breaking Microsoft's rules: using the WIN32
|
|
|
|
* API (i.e. not NTDLL) to copy MAP_PRIVATE pages via a pipe. It'd go
|
|
|
|
* faster if the COW pages CreateFileMappingNuma claims to have turns
|
|
|
|
* out to be true. Until then we have a "PC Scale" and entirely legal
|
|
|
|
* workaround that they hopefully won't block using Windows Defender.
|
2020-11-13 09:27:49 +00:00
|
|
|
*
|
2020-11-25 16:19:00 +00:00
|
|
|
* @param hInstance call GetModuleHandle(NULL) from main if you need it
|
2020-09-28 08:13:56 +00:00
|
|
|
*/
|
2021-09-28 05:58:51 +00:00
|
|
|
noasan textwindows noinstrument int64_t WinMain(int64_t hInstance,
|
|
|
|
int64_t hPrevInstance,
|
|
|
|
const char *lpCmdLine,
|
|
|
|
int nCmdShow) {
|
2022-03-19 10:37:00 +00:00
|
|
|
const char16_t *cmdline;
|
2022-03-16 20:33:13 +00:00
|
|
|
extern char os asm("__hostos");
|
|
|
|
extern uint64_t ts asm("kStartTsc");
|
|
|
|
os = WINDOWS; /* madness https://news.ycombinator.com/item?id=21019722 */
|
|
|
|
ts = rdtsc();
|
|
|
|
__nomultics = true;
|
|
|
|
__pid = GetCurrentProcessId();
|
2022-03-19 10:37:00 +00:00
|
|
|
cmdline = GetCommandLine();
|
|
|
|
#ifdef SYSDEBUG
|
|
|
|
/* sloppy flag-only check for early initialization */
|
|
|
|
if (__strstr16(cmdline, u"--strace")) ++__strace;
|
|
|
|
#endif
|
Introduce --strace flag for system call tracing
This is similar to the --ftrace (c function call trace) flag, except
it's less noisy since it only logs system calls to stderr. Having this
flag is valuable because (1) system call tracing tells us a lot about
the behavior of complex programs and (2) it's usually very hard to get
system call tracing on various operating systems, e.g. strace, ktrace,
dtruss, truss, nttrace, etc. Especially on Apple platforms where even
with the special boot trick, debuggers still aren't guaranteed to work.
make -j8 o//examples
o//examples/hello.com --strace
This is enabled by default in MODE=, MODE=opt, and MODE=dbg. In MODE=dbg
extra information will be printed.
make -j8 MODE=dbg o/dbg/examples
o/dbg/examples/hello.com --strace |& less
This change also changes:
- Rename IsText() → _istext()
- Rename IsUtf8() → _isutf8()
- Fix madvise() on Windows NT
- Fix empty string case of inet_ntop()
- vfork() wrapper now saves and restores errno
- Update xsigaction() to yoink syscall support
2022-03-19 01:07:28 +00:00
|
|
|
STRACE("WinMain()");
|
2021-01-25 21:08:05 +00:00
|
|
|
MakeLongDoubleLongAgain();
|
2021-02-27 18:33:32 +00:00
|
|
|
if (weaken(WinSockInit)) weaken(WinSockInit)();
|
2020-11-13 09:27:49 +00:00
|
|
|
if (weaken(WinMainForked)) weaken(WinMainForked)();
|
2022-03-19 10:37:00 +00:00
|
|
|
WinMainNew(cmdline);
|
2020-06-15 14:18:57 +00:00
|
|
|
}
|