2019-06-18 09:10:05 +02:00
|
|
|
// Copyright 2019 Robert Bosch GmbH
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2020-02-28 17:45:57 -05:00
|
|
|
#include "tracetools/config.h"
|
|
|
|
|
2020-02-28 17:37:47 -05:00
|
|
|
#ifdef TRACETOOLS_LTTNG_ENABLED
|
2019-06-04 16:37:11 +02:00
|
|
|
#include <dlfcn.h>
|
|
|
|
#include <cxxabi.h>
|
|
|
|
#endif
|
2019-06-05 15:35:46 +02:00
|
|
|
#include "tracetools/utils.hpp"
|
2019-06-04 16:37:11 +02:00
|
|
|
|
2019-07-03 13:53:08 +02:00
|
|
|
const char * _demangle_symbol(const char * mangled)
|
2019-06-05 15:35:46 +02:00
|
|
|
{
|
2020-02-28 17:37:47 -05:00
|
|
|
#ifdef TRACETOOLS_LTTNG_ENABLED
|
2019-06-05 15:35:46 +02:00
|
|
|
char * demangled = nullptr;
|
|
|
|
int status;
|
2019-07-03 13:53:08 +02:00
|
|
|
demangled = abi::__cxa_demangle(mangled, NULL, 0, &status);
|
2019-06-05 15:35:46 +02:00
|
|
|
// Use demangled symbol if possible
|
2019-07-03 13:53:08 +02:00
|
|
|
const char * demangled_val = (status == 0 ? demangled : mangled);
|
2019-07-04 11:21:33 +02:00
|
|
|
return demangled_val != 0 ? demangled_val : "UNKNOWN_demangling_failed";
|
2019-06-04 16:37:11 +02:00
|
|
|
#else
|
2019-07-03 13:53:08 +02:00
|
|
|
(void)mangled;
|
2019-07-04 11:21:33 +02:00
|
|
|
return "DISABLED__demangle_symbol";
|
2019-07-03 13:53:08 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
const char * _get_symbol_funcptr(void * funcptr)
|
|
|
|
{
|
2020-02-28 17:37:47 -05:00
|
|
|
#ifdef TRACETOOLS_LTTNG_ENABLED
|
2019-07-03 13:53:08 +02:00
|
|
|
Dl_info info;
|
|
|
|
if (dladdr(funcptr, &info) == 0) {
|
|
|
|
return SYMBOL_UNKNOWN;
|
|
|
|
}
|
|
|
|
return _demangle_symbol(info.dli_sname);
|
|
|
|
#else
|
|
|
|
(void)funcptr;
|
2019-07-04 11:21:33 +02:00
|
|
|
return "DISABLED__get_symbol_funcptr";
|
2019-06-04 16:37:11 +02:00
|
|
|
#endif
|
|
|
|
}
|