cosmopolitan/libc/nt/ntdllimport.S

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

82 lines
2.9 KiB
ArmAsm
Raw Normal View History

/*-*- mode:unix-assembly; indent-tabs-mode:t; tab-width:8; coding:utf-8 -*-│
2020-06-15 14:18:57 +00:00
vi: set noet ft=asm ts=8 sw=8 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/nt/enum/status.h"
#include "libc/dce.h"
#include "libc/macros.h"
2023-05-02 02:43:59 +00:00
#ifdef __x86_64__
2020-06-15 14:18:57 +00:00
// @fileoverview NTDLL.DLL Non-Mandatory Importer
//
// This module lets us import Microsoft's private APIs in a way
// that ensures executables won't fail to load in the future,
// should Microsoft ever choose to delete these APIs.
2020-06-15 14:18:57 +00:00
.initro 202,_init_ntdll.1
2020-06-15 14:18:57 +00:00
.type kNtdllProcRvas,@object
kNtdllProcRvas:
.previous/*
...
decentralized content
...
*/.initro 202,_init_ntdll.3
2020-06-15 14:18:57 +00:00
.quad 0
.previous
.init.start 202,_init_ntdll
2020-06-15 14:18:57 +00:00
push %r12
push %r13
lea __ntdll_not_found(%rip),%r13
2020-06-15 14:18:57 +00:00
sub $32,%rsp
xor %eax,%eax
testb IsWindows()
jz 7f
2020-06-15 14:18:57 +00:00
loadstr "ntdll.dll",cx
call *__imp_GetModuleHandleA(%rip)
7: mov %rax,%r12
2020-06-15 14:18:57 +00:00
0: lodsq
test %rax,%rax
jz 1f
.weak __executable_start
lea __executable_start(%rax),%rdx
xor %eax,%eax
testb IsWindows()
jz 7f
2020-06-15 14:18:57 +00:00
mov %r12,%rcx
call *__imp_GetProcAddress(%rip)
7: test %rax,%rax
2020-06-15 14:18:57 +00:00
cmovz %r13,%rax
stosq
jmp 0b
1: add $32,%rsp
pop %r13
pop %r12
.init.end 202,_init_ntdll,globl,hidden
2020-06-15 14:18:57 +00:00
.text.windows
.ftrace1
__ntdll_not_found:
.ftrace2
2020-06-15 14:18:57 +00:00
mov $kNtStatusDllNotFound,%eax
ret
.previous
2023-05-02 02:43:59 +00:00
.weak __hostos
2023-05-02 02:43:59 +00:00
#endif /* __x86_64__ */