1 //===- CopyConfig.h -------------------------------------------------------===//
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
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_TOOLS_LLVM_OBJCOPY_COPY_CONFIG_H
10 #define LLVM_TOOLS_LLVM_OBJCOPY_COPY_CONFIG_H
12 #include "llvm/ADT/ArrayRef.h"
13 #include "llvm/ADT/BitmaskEnum.h"
14 #include "llvm/ADT/Optional.h"
15 #include "llvm/ADT/SmallVector.h"
16 #include "llvm/ADT/StringMap.h"
17 #include "llvm/ADT/StringRef.h"
18 #include "llvm/Object/ELFTypes.h"
19 #include "llvm/Support/Allocator.h"
20 #include "llvm/Support/Error.h"
21 #include "llvm/Support/Regex.h"
22 // Necessary for llvm::DebugCompressionType::None
23 #include "llvm/Target/TargetOptions.h"
29 enum class FileFormat
{
36 // This type keeps track of the machine info for various architectures. This
37 // lets us map architecture names to ELF types and the e_machine value of the
40 MachineInfo(uint16_t EM
, uint8_t ABI
, bool Is64
, bool IsLittle
)
41 : EMachine(EM
), OSABI(ABI
), Is64Bit(Is64
), IsLittleEndian(IsLittle
) {}
42 // Alternative constructor that defaults to NONE for OSABI.
43 MachineInfo(uint16_t EM
, bool Is64
, bool IsLittle
)
44 : MachineInfo(EM
, ELF::ELFOSABI_NONE
, Is64
, IsLittle
) {}
45 // Default constructor for unset fields.
46 MachineInfo() : MachineInfo(0, 0, false, false) {}
53 // Flags set by --set-section-flags or --rename-section. Interpretation of these
54 // is format-specific and not all flags are meaningful for all object file
55 // formats. This is a bitmask; many section flags may be set.
68 SecContents
= 1 << 10,
70 LLVM_MARK_AS_BITMASK_ENUM(/* LargestValue = */ SecShare
)
73 struct SectionRename
{
74 StringRef OriginalName
;
76 Optional
<SectionFlag
> NewFlags
;
79 struct SectionFlagsUpdate
{
84 enum class DiscardType
{
86 All
, // --discard-all (-x)
87 Locals
, // --discard-locals (-X)
92 // Regex is shared between multiple CopyConfig instances.
93 std::shared_ptr
<Regex
> R
;
96 NameOrRegex(StringRef Pattern
, bool IsRegex
);
97 bool operator==(StringRef S
) const { return R
? R
->match(S
) : Name
== S
; }
98 bool operator!=(StringRef S
) const { return !operator==(S
); }
101 struct NewSymbolInfo
{
102 StringRef SymbolName
;
103 StringRef SectionName
;
105 uint8_t Type
= ELF::STT_NOTYPE
;
106 uint8_t Bind
= ELF::STB_GLOBAL
;
107 uint8_t Visibility
= ELF::STV_DEFAULT
;
110 // Configuration for copying/stripping a single file.
112 // Main input/output options
113 StringRef InputFilename
;
114 FileFormat InputFormat
;
115 StringRef OutputFilename
;
116 FileFormat OutputFormat
;
118 // Only applicable for --input-format=binary
119 MachineInfo BinaryArch
;
120 // Only applicable when --output-format!=binary (e.g. elf64-x86-64).
121 Optional
<MachineInfo
> OutputArch
;
124 StringRef AddGnuDebugLink
;
125 // Cached gnu_debuglink's target CRC
126 uint32_t GnuDebugLinkCRC32
;
127 StringRef BuildIdLinkDir
;
128 Optional
<StringRef
> BuildIdLinkInput
;
129 Optional
<StringRef
> BuildIdLinkOutput
;
130 Optional
<StringRef
> ExtractPartition
;
132 StringRef SymbolsPrefix
;
133 StringRef AllocSectionsPrefix
;
134 DiscardType DiscardMode
= DiscardType::None
;
137 std::vector
<StringRef
> AddSection
;
138 std::vector
<StringRef
> DumpSection
;
139 std::vector
<NewSymbolInfo
> SymbolsToAdd
;
140 std::vector
<NameOrRegex
> KeepSection
;
141 std::vector
<NameOrRegex
> OnlySection
;
142 std::vector
<NameOrRegex
> SymbolsToGlobalize
;
143 std::vector
<NameOrRegex
> SymbolsToKeep
;
144 std::vector
<NameOrRegex
> SymbolsToLocalize
;
145 std::vector
<NameOrRegex
> SymbolsToRemove
;
146 std::vector
<NameOrRegex
> UnneededSymbolsToRemove
;
147 std::vector
<NameOrRegex
> SymbolsToWeaken
;
148 std::vector
<NameOrRegex
> ToRemove
;
149 std::vector
<NameOrRegex
> SymbolsToKeepGlobal
;
152 StringMap
<SectionRename
> SectionsToRename
;
153 StringMap
<SectionFlagsUpdate
> SetSectionFlags
;
154 StringMap
<StringRef
> SymbolsToRename
;
156 // ELF entry point address expression. The input parameter is an entry point
157 // address in the input ELF file. The entry address in the output file is
158 // calculated with EntryExpr(input_address), when either --set-start or
159 // --change-start is used.
160 std::function
<uint64_t(uint64_t)> EntryExpr
;
163 bool AllowBrokenLinks
= false;
164 bool DeterministicArchives
= true;
165 bool ExtractDWO
= false;
166 bool ExtractMainPartition
= false;
167 bool KeepFileSymbols
= false;
168 bool LocalizeHidden
= false;
169 bool OnlyKeepDebug
= false;
170 bool PreserveDates
= false;
171 bool StripAll
= false;
172 bool StripAllGNU
= false;
173 bool StripDWO
= false;
174 bool StripDebug
= false;
175 bool StripNonAlloc
= false;
176 bool StripSections
= false;
177 bool StripUnneeded
= false;
179 bool DecompressDebugSections
= false;
180 DebugCompressionType CompressionType
= DebugCompressionType::None
;
183 // Configuration for the overall invocation of this tool. When invoked as
184 // objcopy, will always contain exactly one CopyConfig. When invoked as strip,
185 // will contain one or more CopyConfigs.
186 struct DriverConfig
{
187 SmallVector
<CopyConfig
, 1> CopyConfigs
;
188 BumpPtrAllocator Alloc
;
191 // ParseObjcopyOptions returns the config and sets the input arguments. If a
192 // help flag is set then ParseObjcopyOptions will print the help messege and
194 Expected
<DriverConfig
> parseObjcopyOptions(ArrayRef
<const char *> ArgsArr
);
196 // ParseStripOptions returns the config and sets the input arguments. If a
197 // help flag is set then ParseStripOptions will print the help messege and
198 // exit. ErrorCallback is used to handle recoverable errors. An Error returned
199 // by the callback aborts the parsing and is then returned by this function.
200 Expected
<DriverConfig
>
201 parseStripOptions(ArrayRef
<const char *> ArgsArr
,
202 std::function
<Error(Error
)> ErrorCallback
);
204 } // namespace objcopy