0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-25 21:38:18 +02:00
construct/include/ircd/mods/ldso.h

101 lines
2.8 KiB
C++

// Matrix Construct
//
// Copyright (C) Matrix Construct Developers, Authors & Contributors
// Copyright (C) 2016-2019 Jason Volk <jason@zemos.net>
//
// 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 is present in all copies. The
// full license for this software is available in the LICENSE file.
#pragma once
#define HAVE_IRCD_MODS_LDSO_H
// This is a platform dependent interface. While this header and these decls
// are unconditionally included in the standard include stack, the defs
// behind them may not be compiled and linked on all platforms.
// Forward declarations for <link.h> because it is not included here.
extern "C"
{
struct link_map;
}
/// Platform-dependent interface on ELF+ld.so supporting compilations.
namespace ircd::mods::ldso
{
struct info;
struct exceptions;
IRCD_EXCEPTION(mods::error, error)
IRCD_EXCEPTION(error, not_found);
using link_closure = std::function<bool (struct link_map &)>;
using string_closure = std::function<bool (const string_view &)>;
using semantic_version = std::array<long, 3>;
// Util
string_view fullname(const struct link_map &); // /lib/x86_64-linux-gnu/libz.so.1
string_view soname(const string_view &fullname); // libz.so.1
string_view soname(const struct link_map &); // libz.so.1
string_view name(const string_view &soname); // z
string_view name(const struct link_map &); // z
semantic_version version(const string_view &soname); // 1.0.0
semantic_version version(const struct link_map &map); // 1.0.0
const void *addr(const struct link_map &); // 0x7ffff...
// Iteration
bool for_each(const link_closure &);
bool has_fullname(const string_view &path);
bool has_soname(const string_view &name);
bool has(const string_view &name);
size_t count();
// Get link
struct link_map *get(std::nothrow_t, const string_view &name);
struct link_map &get(const string_view &name);
// Query link
const char *strtab(const struct link_map &);
string_view string(const struct link_map &, const size_t &idx);
bool for_each_needed(const struct link_map &, const string_closure &);
// dlfcn suite
bool loaded(const string_view &name);
}
struct ircd::mods::ldso::info
{
string_view fname;
const void *fbase {nullptr};
string_view sname;
const void *saddr {nullptr};
info(const void *const &addr);
info() = default;
};
struct ircd::mods::ldso::exceptions
{
static bool enable;
const bool theirs;
public:
exceptions(const bool enable = true);
~exceptions() noexcept;
};
inline
ircd::mods::ldso::exceptions::exceptions(const bool ours)
:theirs{enable}
{
enable = ours;
}
inline
ircd::mods::ldso::exceptions::~exceptions()
noexcept
{
enable = theirs;
}