object-introspection/oi/SymbolService.h

88 lines
2.5 KiB
C
Raw Permalink Normal View History

2022-12-19 14:37:51 +00:00
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* 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.
*/
#pragma once
#include <filesystem>
#include <memory>
#include <optional>
#include <string>
#include <unordered_map>
#include <variant>
#include <vector>
2023-04-26 16:20:53 +01:00
#include "oi/Descs.h"
2023-06-06 16:13:51 +01:00
#include "oi/TypeHierarchy.h"
2022-12-19 14:37:51 +00:00
struct Dwfl;
2022-12-19 14:37:51 +00:00
struct drgn_program;
struct irequest;
namespace oi::detail {
2022-12-19 14:37:51 +00:00
struct SymbolInfo {
uint64_t addr;
uint64_t size;
};
class SymbolService {
public:
SymbolService(pid_t);
SymbolService(std::filesystem::path);
SymbolService(const SymbolService&) = delete;
SymbolService& operator=(const SymbolService&) = delete;
2022-12-19 14:37:51 +00:00
~SymbolService();
struct drgn_program* getDrgnProgram();
2022-12-19 14:37:51 +00:00
std::optional<std::string> locateBuildID();
std::optional<SymbolInfo> locateSymbol(const std::string&,
bool demangle = false);
2022-12-19 14:37:51 +00:00
std::shared_ptr<FuncDesc> findFuncDesc(const irequest&);
std::shared_ptr<GlobalDesc> findGlobalDesc(const std::string&);
static std::string getTypeName(struct drgn_type*);
std::optional<RootInfo> getRootType(const irequest&);
2022-12-19 14:37:51 +00:00
2023-08-16 20:40:36 +01:00
static std::optional<drgn_qualified_type> findTypeOfSymbol(
drgn_program*, const std::string& symbolName);
static std::optional<drgn_qualified_type> findTypeOfAddr(drgn_program*,
uintptr_t addr);
2022-12-19 14:37:51 +00:00
std::unordered_map<std::string, std::shared_ptr<FuncDesc>> funcDescs;
std::unordered_map<std::string, std::shared_ptr<GlobalDesc>> globalDescs;
void setHardDisableDrgn(bool val) {
hardDisableDrgn = val;
}
private:
std::variant<pid_t, std::filesystem::path> target;
struct Dwfl* dwfl{nullptr};
struct drgn_program* prog{nullptr};
2022-12-19 14:37:51 +00:00
bool loadModules();
bool loadModulesFromPid(pid_t);
bool loadModulesFromPath(const std::filesystem::path&);
2022-12-19 14:37:51 +00:00
std::vector<std::pair<uint64_t, uint64_t>> executableAddrs{};
bool hardDisableDrgn = false;
2023-06-20 17:53:46 +01:00
protected:
SymbolService() = default; // For unit tests
2022-12-19 14:37:51 +00:00
};
} // namespace oi::detail