* @brief Structure to hold info of linker soinfo */
| 147 | * @brief Structure to hold info of linker soinfo |
| 148 | */ |
| 149 | struct kitty_soinfo_t |
| 150 | { |
| 151 | uintptr_t ptr = 0; |
| 152 | uintptr_t base = 0; |
| 153 | size_t size = 0; |
| 154 | uintptr_t phdr = 0; |
| 155 | size_t phnum = 0; |
| 156 | uintptr_t dyn = 0; |
| 157 | uintptr_t strtab = 0; |
| 158 | uintptr_t symtab = 0; |
| 159 | size_t strsz = 0; |
| 160 | uintptr_t bias = 0; |
| 161 | uintptr_t next = 0; |
| 162 | uint16_t e_machine = 0; |
| 163 | std::string path; |
| 164 | std::string realpath; |
| 165 | }; |
| 166 | |
| 167 | /** |
| 168 | * @brief Enum class representing the type of ELF file to scan for. |
nothing calls this directly
no outgoing calls
no test coverage detected