2020-01-18 11:38:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2019-11-29 16:55:07 +03:00
|
|
|
#include <AK/Demangle.h>
|
2019-05-18 18:31:52 +03:00
|
|
|
#include <AK/TemporaryChange.h>
|
2019-06-07 12:43:58 +03:00
|
|
|
#include <Kernel/FileSystem/FileDescription.h>
|
2019-11-06 15:42:38 +03:00
|
|
|
#include <Kernel/KSyms.h>
|
|
|
|
#include <Kernel/Process.h>
|
|
|
|
#include <Kernel/Scheduler.h>
|
2018-12-25 00:59:10 +03:00
|
|
|
|
2020-02-16 03:27:42 +03:00
|
|
|
namespace Kernel {
|
|
|
|
|
2020-04-08 14:30:50 +03:00
|
|
|
FlatPtr g_lowest_kernel_symbol_address = 0xffffffff;
|
|
|
|
FlatPtr g_highest_kernel_symbol_address = 0;
|
|
|
|
bool g_kernel_symbols_available = false;
|
|
|
|
|
|
|
|
static KernelSymbol* s_symbols;
|
|
|
|
static size_t s_symbol_count = 0;
|
2018-12-25 00:59:10 +03:00
|
|
|
|
2019-07-03 22:17:35 +03:00
|
|
|
static u8 parse_hex_digit(char nibble)
|
2018-12-25 00:59:10 +03:00
|
|
|
{
|
|
|
|
if (nibble >= '0' && nibble <= '9')
|
|
|
|
return nibble - '0';
|
|
|
|
ASSERT(nibble >= 'a' && nibble <= 'f');
|
|
|
|
return 10 + (nibble - 'a');
|
|
|
|
}
|
|
|
|
|
2020-01-17 00:04:44 +03:00
|
|
|
u32 address_for_kernel_symbol(const StringView& name)
|
2019-11-28 23:30:20 +03:00
|
|
|
{
|
2020-04-08 14:30:50 +03:00
|
|
|
for (size_t i = 0; i < s_symbol_count; ++i) {
|
|
|
|
if (!strncmp(name.characters_without_null_termination(), s_symbols[i].name, name.length()))
|
|
|
|
return s_symbols[i].address;
|
2019-11-28 23:30:20 +03:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-04-08 14:30:50 +03:00
|
|
|
const KernelSymbol* symbolicate_kernel_address(u32 address)
|
2018-12-25 00:59:10 +03:00
|
|
|
{
|
2020-04-08 14:30:50 +03:00
|
|
|
if (address < g_lowest_kernel_symbol_address || address > g_highest_kernel_symbol_address)
|
2018-12-25 00:59:10 +03:00
|
|
|
return nullptr;
|
2020-04-08 14:30:50 +03:00
|
|
|
for (unsigned i = 0; i < s_symbol_count; ++i) {
|
|
|
|
if (address < s_symbols[i + 1].address)
|
|
|
|
return &s_symbols[i];
|
2018-12-25 00:59:10 +03:00
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2020-08-11 20:47:24 +03:00
|
|
|
static void load_kernel_sybols_from_data(const KBuffer& buffer)
|
2018-12-25 00:59:10 +03:00
|
|
|
{
|
2020-04-08 14:30:50 +03:00
|
|
|
g_lowest_kernel_symbol_address = 0xffffffff;
|
|
|
|
g_highest_kernel_symbol_address = 0;
|
|
|
|
|
2019-09-30 09:57:01 +03:00
|
|
|
auto* bufptr = (const char*)buffer.data();
|
2018-12-25 00:59:10 +03:00
|
|
|
auto* start_of_name = bufptr;
|
2020-04-08 14:30:50 +03:00
|
|
|
FlatPtr address = 0;
|
2018-12-25 00:59:10 +03:00
|
|
|
|
2020-04-08 14:30:50 +03:00
|
|
|
for (size_t i = 0; i < 8; ++i)
|
|
|
|
s_symbol_count = (s_symbol_count << 4) | parse_hex_digit(*(bufptr++));
|
|
|
|
s_symbols = static_cast<KernelSymbol*>(kmalloc_eternal(sizeof(KernelSymbol) * s_symbol_count));
|
2018-12-25 00:59:10 +03:00
|
|
|
++bufptr; // skip newline
|
|
|
|
|
2020-04-08 14:30:50 +03:00
|
|
|
klog() << "Loading kernel symbol table...";
|
2018-12-25 00:59:10 +03:00
|
|
|
|
2020-04-08 14:30:50 +03:00
|
|
|
size_t current_symbol_index = 0;
|
2018-12-25 00:59:10 +03:00
|
|
|
|
|
|
|
while (bufptr < buffer.end_pointer()) {
|
2020-04-08 14:30:50 +03:00
|
|
|
for (size_t i = 0; i < 8; ++i)
|
2018-12-25 00:59:10 +03:00
|
|
|
address = (address << 4) | parse_hex_digit(*(bufptr++));
|
|
|
|
bufptr += 3;
|
|
|
|
start_of_name = bufptr;
|
|
|
|
while (*(++bufptr)) {
|
|
|
|
if (*bufptr == '\n') {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-04-08 14:30:50 +03:00
|
|
|
auto& ksym = s_symbols[current_symbol_index];
|
2018-12-25 00:59:10 +03:00
|
|
|
ksym.address = address;
|
|
|
|
char* name = static_cast<char*>(kmalloc_eternal((bufptr - start_of_name) + 1));
|
|
|
|
memcpy(name, start_of_name, bufptr - start_of_name);
|
|
|
|
name[bufptr - start_of_name] = '\0';
|
|
|
|
ksym.name = name;
|
|
|
|
|
2020-04-08 14:30:50 +03:00
|
|
|
if (ksym.address < g_lowest_kernel_symbol_address)
|
|
|
|
g_lowest_kernel_symbol_address = ksym.address;
|
|
|
|
if (ksym.address > g_highest_kernel_symbol_address)
|
|
|
|
g_highest_kernel_symbol_address = ksym.address;
|
2018-12-25 00:59:10 +03:00
|
|
|
|
|
|
|
++bufptr;
|
2020-04-08 14:30:50 +03:00
|
|
|
++current_symbol_index;
|
2018-12-25 00:59:10 +03:00
|
|
|
}
|
2020-04-08 14:30:50 +03:00
|
|
|
g_kernel_symbols_available = true;
|
2018-12-25 00:59:10 +03:00
|
|
|
}
|
|
|
|
|
Kernel: Mark compilation-unit-only functions as static
This enables a nice warning in case a function becomes dead code. Also, in case
of signal_trampoline_dummy, marking it external (non-static) prevents it from
being 'optimized away', which would lead to surprising and weird linker errors.
I found these places by using -Wmissing-declarations.
The Kernel still shows these issues, which I think are false-positives,
but don't want to touch:
- Kernel/Arch/i386/CPU.cpp:1081:17: void Kernel::enter_thread_context(Kernel::Thread*, Kernel::Thread*)
- Kernel/Arch/i386/CPU.cpp:1170:17: void Kernel::context_first_init(Kernel::Thread*, Kernel::Thread*, Kernel::TrapFrame*)
- Kernel/Arch/i386/CPU.cpp:1304:16: u32 Kernel::do_init_context(Kernel::Thread*, u32)
- Kernel/Arch/i386/CPU.cpp:1347:17: void Kernel::pre_init_finished()
- Kernel/Arch/i386/CPU.cpp:1360:17: void Kernel::post_init_finished()
No idea, not gonna touch it.
- Kernel/init.cpp:104:30: void Kernel::init()
- Kernel/init.cpp:167:30: void Kernel::init_ap(u32, Kernel::Processor*)
- Kernel/init.cpp:184:17: void Kernel::init_finished(u32)
Called by boot.S.
- Kernel/init.cpp:383:16: int Kernel::__cxa_atexit(void (*)(void*), void*, void*)
- Kernel/StdLib.cpp:285:19: void __cxa_pure_virtual()
- Kernel/StdLib.cpp:300:19: void __stack_chk_fail()
- Kernel/StdLib.cpp:305:19: void __stack_chk_fail_local()
Not sure how to tell the compiler that the compiler is already using them.
Also, maybe __cxa_atexit should go into StdLib.cpp?
- Kernel/Modules/TestModule.cpp:31:17: void module_init()
- Kernel/Modules/TestModule.cpp:40:17: void module_fini()
Could maybe go into a new header. This would also provide type-checking for new modules.
2020-08-10 22:12:13 +03:00
|
|
|
NEVER_INLINE static void dump_backtrace_impl(FlatPtr base_pointer, bool use_ksyms)
|
2018-12-25 00:59:10 +03:00
|
|
|
{
|
2020-01-05 20:00:15 +03:00
|
|
|
SmapDisabler disabler;
|
|
|
|
#if 0
|
2018-12-25 00:59:10 +03:00
|
|
|
if (!current) {
|
2019-03-24 00:03:17 +03:00
|
|
|
//hang();
|
2018-12-25 00:59:10 +03:00
|
|
|
return;
|
|
|
|
}
|
2020-01-05 20:00:15 +03:00
|
|
|
#endif
|
2020-04-08 14:30:50 +03:00
|
|
|
if (use_ksyms && !g_kernel_symbols_available) {
|
2020-07-06 16:27:22 +03:00
|
|
|
Processor::halt();
|
2018-12-25 00:59:10 +03:00
|
|
|
return;
|
|
|
|
}
|
2020-03-02 12:40:40 +03:00
|
|
|
|
2018-12-25 00:59:10 +03:00
|
|
|
struct RecognizedSymbol {
|
2020-04-08 14:30:50 +03:00
|
|
|
FlatPtr address;
|
|
|
|
const KernelSymbol* symbol { nullptr };
|
2018-12-25 00:59:10 +03:00
|
|
|
};
|
2020-04-08 14:30:50 +03:00
|
|
|
size_t max_recognized_symbol_count = 256;
|
2019-04-16 00:50:25 +03:00
|
|
|
RecognizedSymbol recognized_symbols[max_recognized_symbol_count];
|
2020-04-08 14:30:50 +03:00
|
|
|
size_t recognized_symbol_count = 0;
|
2018-12-25 00:59:10 +03:00
|
|
|
if (use_ksyms) {
|
2020-09-12 06:11:07 +03:00
|
|
|
FlatPtr copied_stack_ptr[2];
|
|
|
|
for (FlatPtr* stack_ptr = (FlatPtr*)base_pointer; stack_ptr && recognized_symbol_count < max_recognized_symbol_count; stack_ptr = (FlatPtr*)copied_stack_ptr[0]) {
|
2020-11-06 11:09:51 +03:00
|
|
|
if ((FlatPtr)stack_ptr < 0xc0000000)
|
|
|
|
break;
|
|
|
|
|
2020-09-12 06:11:07 +03:00
|
|
|
void* fault_at;
|
|
|
|
if (!safe_memcpy(copied_stack_ptr, stack_ptr, sizeof(copied_stack_ptr), fault_at))
|
|
|
|
break;
|
|
|
|
FlatPtr retaddr = copied_stack_ptr[1];
|
2020-04-08 14:30:50 +03:00
|
|
|
recognized_symbols[recognized_symbol_count++] = { retaddr, symbolicate_kernel_address(retaddr) };
|
2018-12-25 00:59:10 +03:00
|
|
|
}
|
2019-04-16 00:50:25 +03:00
|
|
|
} else {
|
2020-09-12 06:11:07 +03:00
|
|
|
void* fault_at;
|
|
|
|
FlatPtr copied_stack_ptr[2];
|
|
|
|
FlatPtr* stack_ptr = (FlatPtr*)base_pointer;
|
|
|
|
while (stack_ptr && safe_memcpy(copied_stack_ptr, stack_ptr, sizeof(copied_stack_ptr), fault_at)) {
|
|
|
|
FlatPtr retaddr = copied_stack_ptr[1];
|
|
|
|
dbg() << String::format("%x", retaddr) << " (next: " << String::format("%x", (stack_ptr ? (u32*)copied_stack_ptr[0] : 0)) << ")";
|
|
|
|
stack_ptr = (FlatPtr*)copied_stack_ptr[0];
|
2018-12-25 00:59:10 +03:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2019-07-28 21:02:22 +03:00
|
|
|
ASSERT(recognized_symbol_count <= max_recognized_symbol_count);
|
2020-04-08 14:30:50 +03:00
|
|
|
for (size_t i = 0; i < recognized_symbol_count; ++i) {
|
2019-04-16 00:50:25 +03:00
|
|
|
auto& symbol = recognized_symbols[i];
|
2019-04-30 15:47:22 +03:00
|
|
|
if (!symbol.address)
|
|
|
|
break;
|
2020-04-08 14:30:50 +03:00
|
|
|
if (!symbol.symbol) {
|
2020-12-25 02:59:15 +03:00
|
|
|
dbgln("{:p}", symbol.address);
|
2019-04-30 15:47:22 +03:00
|
|
|
continue;
|
|
|
|
}
|
2020-04-08 14:30:50 +03:00
|
|
|
size_t offset = symbol.address - symbol.symbol->address;
|
|
|
|
if (symbol.symbol->address == g_highest_kernel_symbol_address && offset > 4096)
|
2020-12-25 02:59:15 +03:00
|
|
|
dbgln("{:p}", symbol.address);
|
2019-04-30 15:47:22 +03:00
|
|
|
else
|
2020-12-25 02:59:15 +03:00
|
|
|
dbgln("{:p} {} +{}", symbol.address, demangle(symbol.symbol->name), offset);
|
2018-12-25 00:59:10 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-16 14:41:16 +03:00
|
|
|
void dump_backtrace()
|
2019-02-24 16:51:48 +03:00
|
|
|
{
|
2019-05-18 18:31:52 +03:00
|
|
|
static bool in_dump_backtrace = false;
|
2019-11-08 19:36:29 +03:00
|
|
|
if (in_dump_backtrace)
|
2019-05-18 18:31:52 +03:00
|
|
|
return;
|
|
|
|
TemporaryChange change(in_dump_backtrace, true);
|
2019-08-07 21:35:41 +03:00
|
|
|
TemporaryChange disable_kmalloc_stacks(g_dump_kmalloc_stacks, false);
|
2020-04-08 14:30:50 +03:00
|
|
|
FlatPtr ebp;
|
2019-06-07 12:43:58 +03:00
|
|
|
asm volatile("movl %%ebp, %%eax"
|
|
|
|
: "=a"(ebp));
|
2020-04-08 14:30:50 +03:00
|
|
|
dump_backtrace_impl(ebp, g_kernel_symbols_available);
|
2019-02-24 16:51:48 +03:00
|
|
|
}
|
|
|
|
|
2020-04-08 14:30:50 +03:00
|
|
|
void load_kernel_symbol_table()
|
2018-12-25 00:59:10 +03:00
|
|
|
{
|
2020-01-19 01:04:48 +03:00
|
|
|
auto result = VFS::the().open("/res/kernel.map", O_RDONLY, 0, VFS::the().root_custody());
|
2019-03-07 00:14:31 +03:00
|
|
|
ASSERT(!result.is_error());
|
2019-06-13 23:03:04 +03:00
|
|
|
auto description = result.value();
|
|
|
|
auto buffer = description->read_entire_file();
|
2020-05-26 10:36:11 +03:00
|
|
|
ASSERT(!buffer.is_error());
|
2020-12-18 16:10:10 +03:00
|
|
|
load_kernel_sybols_from_data(*buffer.value());
|
2018-12-25 00:59:10 +03:00
|
|
|
}
|
2020-02-16 03:27:42 +03:00
|
|
|
|
|
|
|
}
|