mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
This fixes the compilation when we have sysprofd fully disabled. That is not an ideal configuration, but keeping it working ensures that some of the code is easy copy/paste'able in the future for some situations.
330 lines
8.1 KiB
C
330 lines
8.1 KiB
C
/* sp-kernel-symbol.c
|
|
*
|
|
* Copyright (C) 2016 Christian Hergert <chergert@redhat.com>
|
|
*
|
|
* 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, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* 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, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#define G_LOG_DOMAIN "sp-kernel-symbol"
|
|
|
|
#include "config.h"
|
|
|
|
#include <gio/gio.h>
|
|
|
|
#ifdef ENABLE_POLKIT
|
|
# include <polkit/polkit.h>
|
|
#endif
|
|
|
|
#include "sp-kallsyms.h"
|
|
|
|
#include "util/sp-line-reader.h"
|
|
#include "symbols/sp-kernel-symbol.h"
|
|
|
|
static GArray *kernel_symbols;
|
|
static GStringChunk *kernel_symbol_strs;
|
|
static GHashTable *kernel_symbols_skip_hash;
|
|
static const gchar *kernel_symbols_skip[] = {
|
|
/* IRQ stack */
|
|
"common_interrupt",
|
|
"apic_timer_interrupt",
|
|
"smp_apic_timer_interrupt",
|
|
"hrtimer_interrupt",
|
|
"__run_hrtimer",
|
|
"perf_swevent_hrtimer",
|
|
"perf_event_overflow",
|
|
"__perf_event_overflow",
|
|
"perf_prepare_sample",
|
|
"perf_callchain",
|
|
"perf_swcounter_hrtimer",
|
|
"perf_counter_overflow",
|
|
"__perf_counter_overflow",
|
|
"perf_counter_output",
|
|
|
|
/* NMI stack */
|
|
"nmi_stack_correct",
|
|
"do_nmi",
|
|
"notify_die",
|
|
"atomic_notifier_call_chain",
|
|
"notifier_call_chain",
|
|
"perf_event_nmi_handler",
|
|
"perf_counter_nmi_handler",
|
|
"intel_pmu_handle_irq",
|
|
"perf_event_overflow",
|
|
"perf_counter_overflow",
|
|
"__perf_event_overflow",
|
|
"perf_prepare_sample",
|
|
"perf_callchain",
|
|
};
|
|
|
|
static gint
|
|
sp_kernel_symbol_compare (gconstpointer a,
|
|
gconstpointer b)
|
|
{
|
|
const SpKernelSymbol *syma = a;
|
|
const SpKernelSymbol *symb = b;
|
|
|
|
if (syma->address > symb->address)
|
|
return 1;
|
|
else if (syma->address == symb->address)
|
|
return 0;
|
|
else
|
|
return -1;
|
|
}
|
|
|
|
static inline gboolean
|
|
type_is_ignored (guint8 type)
|
|
{
|
|
/* Only allow symbols in the text (code) section */
|
|
return (type != 't' && type != 'T');
|
|
}
|
|
|
|
static gboolean
|
|
authorize_proxy (GDBusConnection *conn)
|
|
{
|
|
#ifdef ENABLE_POLKIT
|
|
PolkitSubject *subject = NULL;
|
|
GPermission *permission = NULL;
|
|
const gchar *name;
|
|
|
|
g_assert (G_IS_DBUS_CONNECTION (conn));
|
|
|
|
name = g_dbus_connection_get_unique_name (conn);
|
|
if (name == NULL)
|
|
goto failure;
|
|
|
|
subject = polkit_system_bus_name_new (name);
|
|
if (subject == NULL)
|
|
goto failure;
|
|
|
|
permission = polkit_permission_new_sync ("org.gnome.sysprof2.get-kernel-symbols", subject, NULL, NULL);
|
|
if (permission == NULL)
|
|
goto failure;
|
|
|
|
if (!g_permission_acquire (permission, NULL, NULL))
|
|
goto failure;
|
|
|
|
return TRUE;
|
|
|
|
failure:
|
|
g_clear_object (&subject);
|
|
g_clear_object (&permission);
|
|
#endif
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
static gboolean
|
|
sp_kernel_symbol_load_from_sysprofd (void)
|
|
{
|
|
g_autoptr(GDBusConnection) conn = NULL;
|
|
g_autoptr(GVariant) ret = NULL;
|
|
g_autoptr(GVariant) results = NULL;
|
|
g_autoptr(GArray) ar = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
GVariantIter iter;
|
|
const gchar *name;
|
|
guint64 addr;
|
|
guint8 type;
|
|
|
|
if (!(conn = g_bus_get_sync (G_BUS_TYPE_SYSTEM, NULL, NULL)))
|
|
return FALSE;
|
|
|
|
if (!authorize_proxy (conn))
|
|
{
|
|
g_warning ("Failed to acquire sufficient credentials to read kernel symbols");
|
|
return FALSE;
|
|
}
|
|
|
|
ret = g_dbus_connection_call_sync (conn,
|
|
"org.gnome.Sysprof2",
|
|
"/org/gnome/Sysprof2",
|
|
"org.gnome.Sysprof2",
|
|
"GetKernelSymbols",
|
|
NULL,
|
|
G_VARIANT_TYPE ("(a(tys))"),
|
|
G_DBUS_CALL_FLAGS_NONE,
|
|
-1,
|
|
NULL,
|
|
&error);
|
|
|
|
if (error != NULL)
|
|
{
|
|
g_warning ("Failed to load symbols from sysprofd: %s", error->message);
|
|
return FALSE;
|
|
}
|
|
|
|
ar = g_array_new (FALSE, TRUE, sizeof (SpKernelSymbol));
|
|
|
|
results = g_variant_get_child_value (ret, 0);
|
|
g_variant_iter_init (&iter, results);
|
|
while (g_variant_iter_loop (&iter, "(ty&s)", &addr, &type, &name))
|
|
{
|
|
SpKernelSymbol sym;
|
|
|
|
if (type_is_ignored (type))
|
|
continue;
|
|
|
|
sym.address = addr;
|
|
sym.name = g_string_chunk_insert_const (kernel_symbol_strs, name);
|
|
|
|
g_array_append_val (ar, sym);
|
|
}
|
|
|
|
g_array_sort (ar, sp_kernel_symbol_compare);
|
|
|
|
#if 0
|
|
g_print ("First: 0x%lx Last: 0x%lx\n",
|
|
g_array_index (ar, SpKernelSymbol, 0).address,
|
|
g_array_index (ar, SpKernelSymbol, ar->len - 1).address);
|
|
#endif
|
|
|
|
kernel_symbols = g_steal_pointer (&ar);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static gboolean
|
|
sp_kernel_symbol_load (void)
|
|
{
|
|
g_autoptr(GHashTable) skip = NULL;
|
|
g_autoptr(SpKallsyms) kallsyms = NULL;
|
|
g_autoptr(GArray) ar = NULL;
|
|
const gchar *name;
|
|
guint64 addr;
|
|
guint8 type;
|
|
|
|
skip = g_hash_table_new (g_str_hash, g_str_equal);
|
|
for (guint i = 0; i < G_N_ELEMENTS (kernel_symbols_skip); i++)
|
|
g_hash_table_insert (skip, (gchar *)kernel_symbols_skip[i], NULL);
|
|
kernel_symbols_skip_hash = g_steal_pointer (&skip);
|
|
|
|
kernel_symbol_strs = g_string_chunk_new (4096);
|
|
ar = g_array_new (FALSE, TRUE, sizeof (SpKernelSymbol));
|
|
|
|
if (!(kallsyms = sp_kallsyms_new (NULL)))
|
|
goto query_daemon;
|
|
|
|
while (sp_kallsyms_next (kallsyms, &name, &addr, &type))
|
|
{
|
|
SpKernelSymbol sym;
|
|
|
|
if (type_is_ignored (type))
|
|
continue;
|
|
|
|
sym.address = addr;
|
|
sym.name = g_string_chunk_insert_const (kernel_symbol_strs, name);
|
|
|
|
g_array_append_val (ar, sym);
|
|
}
|
|
|
|
if (ar->len == 0)
|
|
goto query_daemon;
|
|
|
|
g_array_sort (ar, sp_kernel_symbol_compare);
|
|
kernel_symbols = g_steal_pointer (&ar);
|
|
|
|
return TRUE;
|
|
|
|
query_daemon:
|
|
if (sp_kernel_symbol_load_from_sysprofd ())
|
|
return TRUE;
|
|
|
|
g_warning ("Kernel symbols will not be available.");
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
static const SpKernelSymbol *
|
|
sp_kernel_symbol_lookup (SpKernelSymbol *symbols,
|
|
SpCaptureAddress address,
|
|
guint first,
|
|
guint last)
|
|
{
|
|
if (address >= symbols [last].address)
|
|
{
|
|
return &symbols [last];
|
|
}
|
|
else if (last - first < 3)
|
|
{
|
|
while (last >= first)
|
|
{
|
|
if (address >= symbols[last].address)
|
|
return &symbols [last];
|
|
|
|
last--;
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
else
|
|
{
|
|
int mid = (first + last) / 2;
|
|
|
|
if (symbols [mid].address > address)
|
|
return sp_kernel_symbol_lookup (symbols, address, first, mid);
|
|
else
|
|
return sp_kernel_symbol_lookup (symbols, address, mid, last);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* sp_kernel_symbol_from_address:
|
|
* @address: the address of the instruction pointer
|
|
*
|
|
* Locates the kernel symbol that contains @address.
|
|
*
|
|
* Returns: (transfer none): An #SpKernelSymbol or %NULL.
|
|
*/
|
|
const SpKernelSymbol *
|
|
sp_kernel_symbol_from_address (SpCaptureAddress address)
|
|
{
|
|
const SpKernelSymbol *first;
|
|
const SpKernelSymbol *ret;
|
|
|
|
if G_UNLIKELY (kernel_symbols == NULL)
|
|
{
|
|
static gboolean failed;
|
|
|
|
if (failed)
|
|
return NULL;
|
|
|
|
if (!sp_kernel_symbol_load ())
|
|
{
|
|
failed = TRUE;
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
g_assert (kernel_symbols != NULL);
|
|
g_assert (kernel_symbols->len > 0);
|
|
|
|
/* Short circuit if this is out of range */
|
|
first = &g_array_index (kernel_symbols, SpKernelSymbol, 0);
|
|
if (address < first->address)
|
|
return NULL;
|
|
|
|
ret = sp_kernel_symbol_lookup ((SpKernelSymbol *)(gpointer)kernel_symbols->data,
|
|
address,
|
|
0,
|
|
kernel_symbols->len - 1);
|
|
|
|
/* We resolve all symbols, including ignored symbols so that we
|
|
* don't give back the wrong function juxtapose an ignored func.
|
|
*/
|
|
if (ret != NULL && g_hash_table_contains (kernel_symbols_skip_hash, ret->name))
|
|
return NULL;
|
|
|
|
return ret;
|
|
}
|