46b6db1a4c
* Submitting jobs to cdash * Fail on submit * submit url env * submit url env * try passing submit url as arg * fix submit url * Updated default URL * Add submissions for remaining ubuntu focal workflow jobs * Replace g++ with gcc in dashboard build name * Add --ctest-args to run-ci.sh * Add cdash support for bionic, jammy, and opensuse workflows * Decrease CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE * OMNITRACE_BUILD_CODECOV option * Support code coverage in CDash script * CI dyninst built with debug info * Update ci-containers - cron schedule moved 4 hours later to UTC+5 * Update implementation of config::configure_signal_handler - using lambdas failed to compile with codecov flags * Add codecov job to ubuntu focal workflow * Fix support for --ctest-args in run-ci script * Fix ubuntu workflows * Fix quotation handling in run-ci script * git safe directory for codecov * New MPI examples * Remove --stop-on-failure * dynamic_library update - find_library_path checks procfs maps - invoke find_library_path with no additional args to resolve to mapped file * RCCLP uses dynamic_library * check if file exists for memory_map_files metadata * Testing updates - include new mpi examples in tests - fix test labels - test critical-trace exe * Update MPI C examples tests (needed arg) * Remove try/catch block from critical-trace * Fix sampling max wait when shutting down * Fix test env for critical-trace * Fix settings for critical-trace - disable time output: data is deterministic - disable PID suffixes: not multiprocess * Update critical-trace ctest * Update critical-trace exe - throw error if input cannot be opened - throw error if input has no data * Update lulesh example with more kokkos tools usage * Fix tasking issue with critical_trace and roctracer - were not setting pools to active - also sync before critical_trace::get_entries * Increase verbosity of critical-trace tests * Update code coverage tests - skip code coverage + preload - code-coverage python example and test * Remove duplication omnitrace.initialize function * Skip python3.6 for ubuntu jammy * Update MPI examples - use MPI_Isend and MPI_Irecv - explicitly use MPI_Bcast * Update Formatting.cmake - include C files in examples * run-ci script does not check return of coverage * mpi-allreduce link to libm * Update ctest args in run-ci script * Update dyninst submodule - safety improvements in BinaryEdit::openResolvedLibraryName * capture cmake error for ctest_coverage
153 rivejä
4.8 KiB
C++
153 rivejä
4.8 KiB
C++
// MIT License
|
|
//
|
|
// Copyright (c) 2022 Advanced Micro Devices, Inc. All Rights Reserved.
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
// copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
// SOFTWARE.
|
|
|
|
#include "library/dynamic_library.hpp"
|
|
#include "library/common.hpp"
|
|
#include "library/debug.hpp"
|
|
#include "library/defines.hpp"
|
|
|
|
#include <timemory/environment.hpp>
|
|
#include <timemory/utility/delimit.hpp>
|
|
#include <timemory/utility/filepath.hpp>
|
|
#include <timemory/utility/procfs/maps.hpp>
|
|
|
|
#include <string>
|
|
#include <utility>
|
|
|
|
namespace omnitrace
|
|
{
|
|
namespace procfs = ::tim::procfs;
|
|
|
|
std::string
|
|
find_library_path(const std::string& _name, const std::vector<std::string>& _env_vars,
|
|
const std::vector<std::string>& _hints,
|
|
const std::vector<std::string>& _path_suffixes)
|
|
{
|
|
if(_name.find('/') == 0) return _name;
|
|
|
|
for(const auto& itr : procfs::get_maps(process::get_id(), true))
|
|
{
|
|
auto&& _path = itr.pathname;
|
|
if(_path.find(_name) != std::string::npos && filepath::exists(_path))
|
|
return _path;
|
|
}
|
|
|
|
auto _paths = std::vector<std::string>{};
|
|
for(const std::string& itr : _env_vars)
|
|
{
|
|
auto _env_val = get_env(itr, std::string{});
|
|
for(auto vitr : tim::delimit(_env_val, ":"))
|
|
if(!vitr.empty()) _paths.emplace_back(vitr);
|
|
}
|
|
|
|
for(const std::string& itr : _hints)
|
|
{
|
|
if(!itr.empty()) _paths.emplace_back(itr);
|
|
}
|
|
|
|
for(auto& itr : _paths)
|
|
{
|
|
auto _v = JOIN('/', itr, _name);
|
|
if(filepath::exists(_v)) return _v;
|
|
for(const auto& litr : _path_suffixes)
|
|
{
|
|
_v = JOIN('/', itr, litr, _name);
|
|
if(filepath::exists(_v)) return _v;
|
|
}
|
|
}
|
|
|
|
return _name;
|
|
}
|
|
|
|
dynamic_library::dynamic_library(std::string _env, std::string _fname, int _flags,
|
|
bool _open, bool _query_env, bool _store)
|
|
: envname{ std::move(_env) }
|
|
, filename{ std::move(_fname) }
|
|
, flags{ _flags }
|
|
{
|
|
// check the memory maps
|
|
filename = find_library_path(filename, {}, {});
|
|
|
|
if(_query_env)
|
|
{
|
|
auto _env_val = get_env(envname, std::string{}, _store);
|
|
// if the environment variable is set to an absolute path that exists,
|
|
// override with value
|
|
if(!_env_val.empty())
|
|
{
|
|
if(_env_val.find('/') == 0 && filepath::exists(_env_val))
|
|
{
|
|
filename = _env_val;
|
|
}
|
|
else if(_env_val.find('/') == 0)
|
|
{
|
|
OMNITRACE_VERBOSE_F(1,
|
|
"Ignoring environment variable %s=\"%s\" because the "
|
|
"filepath does not exist. Using \"%s\" instead...\n",
|
|
envname.c_str(), _env_val.c_str(), filename.c_str())
|
|
}
|
|
else if(_env_val.find('/') != 0 && filename.find('/') == 0)
|
|
{
|
|
OMNITRACE_VERBOSE_F(
|
|
1,
|
|
"Ignoring environment variable %s=\"%s\" because the "
|
|
"filepath is relative. Using absolute path \"%s\" instead...\n",
|
|
envname.c_str(), _env_val.c_str(), filename.c_str())
|
|
}
|
|
}
|
|
}
|
|
|
|
if(_open) open();
|
|
}
|
|
|
|
dynamic_library::~dynamic_library() { close(); }
|
|
|
|
bool
|
|
dynamic_library::open()
|
|
{
|
|
if(!filename.empty())
|
|
{
|
|
handle = dlopen(filename.c_str(), flags);
|
|
if(!handle)
|
|
{
|
|
OMNITRACE_VERBOSE(2, "[dynamic_library] Error opening %s=\"%s\" :: %s.\n",
|
|
envname.c_str(), filename.c_str(), dlerror());
|
|
}
|
|
dlerror(); // Clear any existing error
|
|
}
|
|
return (handle != nullptr);
|
|
}
|
|
|
|
int
|
|
dynamic_library::close() const
|
|
{
|
|
if(handle) return dlclose(handle);
|
|
return -1;
|
|
}
|
|
|
|
bool
|
|
dynamic_library::is_open() const
|
|
{
|
|
return (handle != nullptr);
|
|
}
|
|
} // namespace omnitrace
|