LLDB mainline
AuxVector.h
Go to the documentation of this file.
1//===-- AuxVector.h ---------------------------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLDB_SOURCE_PLUGINS_PROCESS_UTILITY_AUXVECTOR_H
10#define LLDB_SOURCE_PLUGINS_PROCESS_UTILITY_AUXVECTOR_H
11
13#include "lldb/Utility/Log.h"
14#include <optional>
15#include <unordered_map>
16
17class AuxVector {
18
19public:
21
22 /// Constants describing the type of entry.
23 /// On Linux and FreeBSD, running "LD_SHOW_AUXV=1 ./executable" will spew AUX
24 /// information. Added AUXV prefix to avoid potential conflicts with system-
25 /// defined macros. For FreeBSD, the numbers can be found in sys/elf_common.h.
26 enum EntryType {
27 AUXV_AT_NULL = 0, ///< End of auxv.
28 AUXV_AT_IGNORE = 1, ///< Ignore entry.
29 AUXV_AT_EXECFD = 2, ///< File descriptor of program.
30 AUXV_AT_PHDR = 3, ///< Program headers.
31 AUXV_AT_PHENT = 4, ///< Size of program header.
32 AUXV_AT_PHNUM = 5, ///< Number of program headers.
33 AUXV_AT_PAGESZ = 6, ///< Page size.
34 AUXV_AT_BASE = 7, ///< Interpreter base address.
35 AUXV_AT_FLAGS = 8, ///< Flags.
36 AUXV_AT_ENTRY = 9, ///< Program entry point.
37 AUXV_AT_NOTELF = 10, ///< Set if program is not an ELF.
38 AUXV_AT_UID = 11, ///< UID.
39 AUXV_AT_EUID = 12, ///< Effective UID.
40 AUXV_AT_GID = 13, ///< GID.
41 AUXV_AT_EGID = 14, ///< Effective GID.
42
43 // At this point Linux and FreeBSD diverge and many of the following values
44 // are Linux specific. If you use them make sure you are in Linux specific
45 // code or they have the same value on other platforms.
46
47 AUXV_AT_CLKTCK = 17, ///< Clock frequency (e.g. times(2)).
48 AUXV_AT_PLATFORM = 15, ///< String identifying platform.
50 16, ///< Machine dependent hints about processor capabilities.
51 AUXV_AT_FPUCW = 18, ///< Used FPU control word.
52 AUXV_AT_DCACHEBSIZE = 19, ///< Data cache block size.
53 AUXV_AT_ICACHEBSIZE = 20, ///< Instruction cache block size.
54 AUXV_AT_UCACHEBSIZE = 21, ///< Unified cache block size.
55 AUXV_AT_IGNOREPPC = 22, ///< Entry should be ignored.
56 AUXV_AT_SECURE = 23, ///< Boolean, was exec setuid-like?
57 AUXV_AT_BASE_PLATFORM = 24, ///< String identifying real platforms.
58 AUXV_AT_RANDOM = 25, ///< Address of 16 random bytes.
59 AUXV_AT_HWCAP2 = 26, ///< Extension of AT_HWCAP.
60 AUXV_AT_EXECFN = 31, ///< Filename of executable.
61 AUXV_AT_SYSINFO = 32, ///< Pointer to the global system page used for system
62 /// calls and other nice things.
64 AUXV_AT_L1I_CACHESHAPE = 34, ///< Shapes of the caches.
68
69 // Platform specific values which may overlap the Linux values.
70
71 AUXV_FREEBSD_AT_HWCAP = 25, ///< FreeBSD specific AT_HWCAP value.
72 };
73
74 std::optional<uint64_t> GetAuxValue(enum EntryType entry_type) const;
75 void DumpToLog(lldb_private::Log *log) const;
76 const char *GetEntryName(EntryType type) const;
77
78private:
79 void ParseAuxv(const lldb_private::DataExtractor &data);
80
81 std::unordered_map<uint64_t, uint64_t> m_auxv_entries;
82};
83
84#endif
FormatEntity::Entry::Type EntryType
std::unordered_map< uint64_t, uint64_t > m_auxv_entries
Definition: AuxVector.h:81
EntryType
Constants describing the type of entry.
Definition: AuxVector.h:26
@ AUXV_AT_DCACHEBSIZE
Data cache block size.
Definition: AuxVector.h:52
@ AUXV_AT_ICACHEBSIZE
Instruction cache block size.
Definition: AuxVector.h:53
@ AUXV_AT_EXECFN
Filename of executable.
Definition: AuxVector.h:60
@ AUXV_AT_SYSINFO_EHDR
Definition: AuxVector.h:63
@ AUXV_AT_L2_CACHESHAPE
Definition: AuxVector.h:66
@ AUXV_AT_IGNORE
Ignore entry.
Definition: AuxVector.h:28
@ AUXV_AT_BASE_PLATFORM
String identifying real platforms.
Definition: AuxVector.h:57
@ AUXV_AT_PAGESZ
Page size.
Definition: AuxVector.h:33
@ AUXV_AT_PHNUM
Number of program headers.
Definition: AuxVector.h:32
@ AUXV_AT_L1I_CACHESHAPE
Shapes of the caches.
Definition: AuxVector.h:64
@ AUXV_AT_UID
UID.
Definition: AuxVector.h:38
@ AUXV_AT_EGID
Effective GID.
Definition: AuxVector.h:41
@ AUXV_AT_L1D_CACHESHAPE
Definition: AuxVector.h:65
@ AUXV_AT_PHDR
Program headers.
Definition: AuxVector.h:30
@ AUXV_AT_ENTRY
Program entry point.
Definition: AuxVector.h:36
@ AUXV_AT_NULL
End of auxv.
Definition: AuxVector.h:27
@ AUXV_FREEBSD_AT_HWCAP
FreeBSD specific AT_HWCAP value.
Definition: AuxVector.h:71
@ AUXV_AT_SECURE
Boolean, was exec setuid-like?
Definition: AuxVector.h:56
@ AUXV_AT_L3_CACHESHAPE
Definition: AuxVector.h:67
@ AUXV_AT_EUID
Effective UID.
Definition: AuxVector.h:39
@ AUXV_AT_PLATFORM
String identifying platform.
Definition: AuxVector.h:48
@ AUXV_AT_EXECFD
File descriptor of program.
Definition: AuxVector.h:29
@ AUXV_AT_PHENT
Size of program header.
Definition: AuxVector.h:31
@ AUXV_AT_NOTELF
Set if program is not an ELF.
Definition: AuxVector.h:37
@ AUXV_AT_HWCAP2
Extension of AT_HWCAP.
Definition: AuxVector.h:59
@ AUXV_AT_IGNOREPPC
Entry should be ignored.
Definition: AuxVector.h:55
@ AUXV_AT_UCACHEBSIZE
Unified cache block size.
Definition: AuxVector.h:54
@ AUXV_AT_SYSINFO
Pointer to the global system page used for system calls and other nice things.
Definition: AuxVector.h:61
@ AUXV_AT_FLAGS
Flags.
Definition: AuxVector.h:35
@ AUXV_AT_GID
GID.
Definition: AuxVector.h:40
@ AUXV_AT_CLKTCK
Clock frequency (e.g. times(2)).
Definition: AuxVector.h:47
@ AUXV_AT_HWCAP
Machine dependent hints about processor capabilities.
Definition: AuxVector.h:49
@ AUXV_AT_FPUCW
Used FPU control word.
Definition: AuxVector.h:51
@ AUXV_AT_BASE
Interpreter base address.
Definition: AuxVector.h:34
@ AUXV_AT_RANDOM
Address of 16 random bytes.
Definition: AuxVector.h:58
void DumpToLog(lldb_private::Log *log) const
Definition: AuxVector.cpp:41
std::optional< uint64_t > GetAuxValue(enum EntryType entry_type) const
Definition: AuxVector.cpp:34
const char * GetEntryName(EntryType type) const
Definition: AuxVector.cpp:53
void ParseAuxv(const lldb_private::DataExtractor &data)
Definition: AuxVector.cpp:16
An data extractor class.
Definition: DataExtractor.h:48