blob: d814df1052553b3034d02f513aec7e5d6427d5f1 [file] [log] [blame]
Alexander Shaposhnikov8d0b74c2018-10-11 22:33:50 +00001//===- CopyConfig.cpp -----------------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "CopyConfig.h"
11#include "llvm-objcopy.h"
12
13#include "llvm/ADT/BitmaskEnum.h"
14#include "llvm/ADT/Optional.h"
15#include "llvm/ADT/SmallVector.h"
16#include "llvm/ADT/StringRef.h"
17#include "llvm/Object/ELFTypes.h"
18#include "llvm/Option/Arg.h"
19#include "llvm/Option/ArgList.h"
20#include "llvm/Support/CommandLine.h"
21#include "llvm/Support/Compression.h"
22#include "llvm/Support/MemoryBuffer.h"
23#include <memory>
24#include <string>
25
26namespace llvm {
27namespace objcopy {
28
29namespace {
30enum ObjcopyID {
31 OBJCOPY_INVALID = 0, // This is not an option ID.
32#define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \
33 HELPTEXT, METAVAR, VALUES) \
34 OBJCOPY_##ID,
35#include "ObjcopyOpts.inc"
36#undef OPTION
37};
38
39#define PREFIX(NAME, VALUE) const char *const OBJCOPY_##NAME[] = VALUE;
40#include "ObjcopyOpts.inc"
41#undef PREFIX
42
43static const opt::OptTable::Info ObjcopyInfoTable[] = {
44#define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \
45 HELPTEXT, METAVAR, VALUES) \
46 {OBJCOPY_##PREFIX, \
47 NAME, \
48 HELPTEXT, \
49 METAVAR, \
50 OBJCOPY_##ID, \
51 opt::Option::KIND##Class, \
52 PARAM, \
53 FLAGS, \
54 OBJCOPY_##GROUP, \
55 OBJCOPY_##ALIAS, \
56 ALIASARGS, \
57 VALUES},
58#include "ObjcopyOpts.inc"
59#undef OPTION
60};
61
62class ObjcopyOptTable : public opt::OptTable {
63public:
64 ObjcopyOptTable() : OptTable(ObjcopyInfoTable, true) {}
65};
66
67enum StripID {
68 STRIP_INVALID = 0, // This is not an option ID.
69#define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \
70 HELPTEXT, METAVAR, VALUES) \
71 STRIP_##ID,
72#include "StripOpts.inc"
73#undef OPTION
74};
75
76#define PREFIX(NAME, VALUE) const char *const STRIP_##NAME[] = VALUE;
77#include "StripOpts.inc"
78#undef PREFIX
79
80static const opt::OptTable::Info StripInfoTable[] = {
81#define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \
82 HELPTEXT, METAVAR, VALUES) \
83 {STRIP_##PREFIX, NAME, HELPTEXT, \
84 METAVAR, STRIP_##ID, opt::Option::KIND##Class, \
85 PARAM, FLAGS, STRIP_##GROUP, \
86 STRIP_##ALIAS, ALIASARGS, VALUES},
87#include "StripOpts.inc"
88#undef OPTION
89};
90
91class StripOptTable : public opt::OptTable {
92public:
93 StripOptTable() : OptTable(StripInfoTable, true) {}
94};
95
96enum SectionFlag {
97 SecNone = 0,
98 SecAlloc = 1 << 0,
99 SecLoad = 1 << 1,
100 SecNoload = 1 << 2,
101 SecReadonly = 1 << 3,
102 SecDebug = 1 << 4,
103 SecCode = 1 << 5,
104 SecData = 1 << 6,
105 SecRom = 1 << 7,
106 SecMerge = 1 << 8,
107 SecStrings = 1 << 9,
108 SecContents = 1 << 10,
109 SecShare = 1 << 11,
110 LLVM_MARK_AS_BITMASK_ENUM(/* LargestValue = */ SecShare)
111};
112
113} // namespace
114
115static SectionFlag parseSectionRenameFlag(StringRef SectionName) {
116 return llvm::StringSwitch<SectionFlag>(SectionName)
117 .Case("alloc", SectionFlag::SecAlloc)
118 .Case("load", SectionFlag::SecLoad)
119 .Case("noload", SectionFlag::SecNoload)
120 .Case("readonly", SectionFlag::SecReadonly)
121 .Case("debug", SectionFlag::SecDebug)
122 .Case("code", SectionFlag::SecCode)
123 .Case("data", SectionFlag::SecData)
124 .Case("rom", SectionFlag::SecRom)
125 .Case("merge", SectionFlag::SecMerge)
126 .Case("strings", SectionFlag::SecStrings)
127 .Case("contents", SectionFlag::SecContents)
128 .Case("share", SectionFlag::SecShare)
129 .Default(SectionFlag::SecNone);
130}
131
132static SectionRename parseRenameSectionValue(StringRef FlagValue) {
133 if (!FlagValue.contains('='))
134 error("Bad format for --rename-section: missing '='");
135
136 // Initial split: ".foo" = ".bar,f1,f2,..."
137 auto Old2New = FlagValue.split('=');
138 SectionRename SR;
139 SR.OriginalName = Old2New.first;
140
141 // Flags split: ".bar" "f1" "f2" ...
142 SmallVector<StringRef, 6> NameAndFlags;
143 Old2New.second.split(NameAndFlags, ',');
144 SR.NewName = NameAndFlags[0];
145
146 if (NameAndFlags.size() > 1) {
147 SectionFlag Flags = SectionFlag::SecNone;
148 for (size_t I = 1, Size = NameAndFlags.size(); I < Size; ++I) {
149 SectionFlag Flag = parseSectionRenameFlag(NameAndFlags[I]);
150 if (Flag == SectionFlag::SecNone)
151 error("Unrecognized section flag '" + NameAndFlags[I] +
152 "'. Flags supported for GNU compatibility: alloc, load, noload, "
153 "readonly, debug, code, data, rom, share, contents, merge, "
154 "strings.");
155 Flags |= Flag;
156 }
157
158 SR.NewFlags = 0;
159 if (Flags & SectionFlag::SecAlloc)
160 *SR.NewFlags |= ELF::SHF_ALLOC;
161 if (!(Flags & SectionFlag::SecReadonly))
162 *SR.NewFlags |= ELF::SHF_WRITE;
163 if (Flags & SectionFlag::SecCode)
164 *SR.NewFlags |= ELF::SHF_EXECINSTR;
165 if (Flags & SectionFlag::SecMerge)
166 *SR.NewFlags |= ELF::SHF_MERGE;
167 if (Flags & SectionFlag::SecStrings)
168 *SR.NewFlags |= ELF::SHF_STRINGS;
169 }
170
171 return SR;
172}
173
174static const StringMap<MachineInfo> ArchMap{
175 // Name, {EMachine, 64bit, LittleEndian}
176 {"aarch64", {ELF::EM_AARCH64, true, true}},
177 {"arm", {ELF::EM_ARM, false, true}},
178 {"i386", {ELF::EM_386, false, true}},
179 {"i386:x86-64", {ELF::EM_X86_64, true, true}},
180 {"powerpc:common64", {ELF::EM_PPC64, true, true}},
181 {"sparc", {ELF::EM_SPARC, false, true}},
182 {"x86-64", {ELF::EM_X86_64, true, true}},
183};
184
185static const MachineInfo &getMachineInfo(StringRef Arch) {
186 auto Iter = ArchMap.find(Arch);
187 if (Iter == std::end(ArchMap))
188 error("Invalid architecture: '" + Arch + "'");
189 return Iter->getValue();
190}
191
192static void addGlobalSymbolsFromFile(std::vector<std::string> &Symbols,
193 StringRef Filename) {
194 SmallVector<StringRef, 16> Lines;
195 auto BufOrErr = MemoryBuffer::getFile(Filename);
196 if (!BufOrErr)
197 reportError(Filename, BufOrErr.getError());
198
199 BufOrErr.get()->getBuffer().split(Lines, '\n');
200 for (StringRef Line : Lines) {
201 // Ignore everything after '#', trim whitespace, and only add the symbol if
202 // it's not empty.
203 auto TrimmedLine = Line.split('#').first.trim();
204 if (!TrimmedLine.empty())
205 Symbols.push_back(TrimmedLine.str());
206 }
207}
208
209// ParseObjcopyOptions returns the config and sets the input arguments. If a
210// help flag is set then ParseObjcopyOptions will print the help messege and
211// exit.
212DriverConfig parseObjcopyOptions(ArrayRef<const char *> ArgsArr) {
213 ObjcopyOptTable T;
214 unsigned MissingArgumentIndex, MissingArgumentCount;
215 llvm::opt::InputArgList InputArgs =
216 T.ParseArgs(ArgsArr, MissingArgumentIndex, MissingArgumentCount);
217
218 if (InputArgs.size() == 0) {
219 T.PrintHelp(errs(), "llvm-objcopy input [output]", "objcopy tool");
220 exit(1);
221 }
222
223 if (InputArgs.hasArg(OBJCOPY_help)) {
224 T.PrintHelp(outs(), "llvm-objcopy input [output]", "objcopy tool");
225 exit(0);
226 }
227
228 if (InputArgs.hasArg(OBJCOPY_version)) {
229 cl::PrintVersionMessage();
230 exit(0);
231 }
232
233 SmallVector<const char *, 2> Positional;
234
235 for (auto Arg : InputArgs.filtered(OBJCOPY_UNKNOWN))
236 error("unknown argument '" + Arg->getAsString(InputArgs) + "'");
237
238 for (auto Arg : InputArgs.filtered(OBJCOPY_INPUT))
239 Positional.push_back(Arg->getValue());
240
241 if (Positional.empty())
242 error("No input file specified");
243
244 if (Positional.size() > 2)
245 error("Too many positional arguments");
246
247 CopyConfig Config;
248 Config.InputFilename = Positional[0];
249 Config.OutputFilename = Positional[Positional.size() == 1 ? 0 : 1];
250 Config.InputFormat = InputArgs.getLastArgValue(OBJCOPY_input_target);
251 Config.OutputFormat = InputArgs.getLastArgValue(OBJCOPY_output_target);
252 if (Config.InputFormat == "binary") {
253 auto BinaryArch = InputArgs.getLastArgValue(OBJCOPY_binary_architecture);
254 if (BinaryArch.empty())
255 error("Specified binary input without specifiying an architecture");
256 Config.BinaryArch = getMachineInfo(BinaryArch);
257 }
258
259 if (auto Arg = InputArgs.getLastArg(OBJCOPY_compress_debug_sections,
260 OBJCOPY_compress_debug_sections_eq)) {
261 Config.CompressionType = DebugCompressionType::Z;
262
263 if (Arg->getOption().getID() == OBJCOPY_compress_debug_sections_eq) {
264 Config.CompressionType =
265 StringSwitch<DebugCompressionType>(
266 InputArgs.getLastArgValue(OBJCOPY_compress_debug_sections_eq))
267 .Case("zlib-gnu", DebugCompressionType::GNU)
268 .Case("zlib", DebugCompressionType::Z)
269 .Default(DebugCompressionType::None);
270 if (Config.CompressionType == DebugCompressionType::None)
271 error("Invalid or unsupported --compress-debug-sections format: " +
272 InputArgs.getLastArgValue(OBJCOPY_compress_debug_sections_eq));
273 if (!zlib::isAvailable())
274 error("LLVM was not compiled with LLVM_ENABLE_ZLIB: can not compress.");
275 }
276 }
277
278 Config.SplitDWO = InputArgs.getLastArgValue(OBJCOPY_split_dwo);
279 Config.AddGnuDebugLink = InputArgs.getLastArgValue(OBJCOPY_add_gnu_debuglink);
280 Config.SymbolsPrefix = InputArgs.getLastArgValue(OBJCOPY_prefix_symbols);
281
282 for (auto Arg : InputArgs.filtered(OBJCOPY_redefine_symbol)) {
283 if (!StringRef(Arg->getValue()).contains('='))
284 error("Bad format for --redefine-sym");
285 auto Old2New = StringRef(Arg->getValue()).split('=');
286 if (!Config.SymbolsToRename.insert(Old2New).second)
287 error("Multiple redefinition of symbol " + Old2New.first);
288 }
289
290 for (auto Arg : InputArgs.filtered(OBJCOPY_rename_section)) {
291 SectionRename SR = parseRenameSectionValue(StringRef(Arg->getValue()));
292 if (!Config.SectionsToRename.try_emplace(SR.OriginalName, SR).second)
293 error("Multiple renames of section " + SR.OriginalName);
294 }
295
296 for (auto Arg : InputArgs.filtered(OBJCOPY_remove_section))
297 Config.ToRemove.push_back(Arg->getValue());
298 for (auto Arg : InputArgs.filtered(OBJCOPY_keep))
299 Config.Keep.push_back(Arg->getValue());
300 for (auto Arg : InputArgs.filtered(OBJCOPY_only_keep))
301 Config.OnlyKeep.push_back(Arg->getValue());
302 for (auto Arg : InputArgs.filtered(OBJCOPY_add_section))
303 Config.AddSection.push_back(Arg->getValue());
304 for (auto Arg : InputArgs.filtered(OBJCOPY_dump_section))
305 Config.DumpSection.push_back(Arg->getValue());
306 Config.StripAll = InputArgs.hasArg(OBJCOPY_strip_all);
307 Config.StripAllGNU = InputArgs.hasArg(OBJCOPY_strip_all_gnu);
308 Config.StripDebug = InputArgs.hasArg(OBJCOPY_strip_debug);
309 Config.StripDWO = InputArgs.hasArg(OBJCOPY_strip_dwo);
310 Config.StripSections = InputArgs.hasArg(OBJCOPY_strip_sections);
311 Config.StripNonAlloc = InputArgs.hasArg(OBJCOPY_strip_non_alloc);
312 Config.StripUnneeded = InputArgs.hasArg(OBJCOPY_strip_unneeded);
313 Config.ExtractDWO = InputArgs.hasArg(OBJCOPY_extract_dwo);
314 Config.LocalizeHidden = InputArgs.hasArg(OBJCOPY_localize_hidden);
315 Config.Weaken = InputArgs.hasArg(OBJCOPY_weaken);
316 Config.DiscardAll = InputArgs.hasArg(OBJCOPY_discard_all);
317 Config.OnlyKeepDebug = InputArgs.hasArg(OBJCOPY_only_keep_debug);
318 Config.KeepFileSymbols = InputArgs.hasArg(OBJCOPY_keep_file_symbols);
319 Config.DecompressDebugSections =
320 InputArgs.hasArg(OBJCOPY_decompress_debug_sections);
321 for (auto Arg : InputArgs.filtered(OBJCOPY_localize_symbol))
322 Config.SymbolsToLocalize.push_back(Arg->getValue());
323 for (auto Arg : InputArgs.filtered(OBJCOPY_keep_global_symbol))
324 Config.SymbolsToKeepGlobal.push_back(Arg->getValue());
325 for (auto Arg : InputArgs.filtered(OBJCOPY_keep_global_symbols))
326 addGlobalSymbolsFromFile(Config.SymbolsToKeepGlobal, Arg->getValue());
327 for (auto Arg : InputArgs.filtered(OBJCOPY_globalize_symbol))
328 Config.SymbolsToGlobalize.push_back(Arg->getValue());
329 for (auto Arg : InputArgs.filtered(OBJCOPY_weaken_symbol))
330 Config.SymbolsToWeaken.push_back(Arg->getValue());
331 for (auto Arg : InputArgs.filtered(OBJCOPY_strip_symbol))
332 Config.SymbolsToRemove.push_back(Arg->getValue());
333 for (auto Arg : InputArgs.filtered(OBJCOPY_keep_symbol))
334 Config.SymbolsToKeep.push_back(Arg->getValue());
335
336 Config.PreserveDates = InputArgs.hasArg(OBJCOPY_preserve_dates);
337
338 DriverConfig DC;
339 DC.CopyConfigs.push_back(std::move(Config));
340 if (Config.DecompressDebugSections &&
341 Config.CompressionType != DebugCompressionType::None) {
342 error("Cannot specify --compress-debug-sections at the same time as "
343 "--decompress-debug-sections at the same time");
344 }
345
346 if (Config.DecompressDebugSections && !zlib::isAvailable())
347 error("LLVM was not compiled with LLVM_ENABLE_ZLIB: cannot decompress.");
348
349 return DC;
350}
351
352// ParseStripOptions returns the config and sets the input arguments. If a
353// help flag is set then ParseStripOptions will print the help messege and
354// exit.
355DriverConfig parseStripOptions(ArrayRef<const char *> ArgsArr) {
356 StripOptTable T;
357 unsigned MissingArgumentIndex, MissingArgumentCount;
358 llvm::opt::InputArgList InputArgs =
359 T.ParseArgs(ArgsArr, MissingArgumentIndex, MissingArgumentCount);
360
361 if (InputArgs.size() == 0) {
362 T.PrintHelp(errs(), "llvm-strip [options] file...", "strip tool");
363 exit(1);
364 }
365
366 if (InputArgs.hasArg(STRIP_help)) {
367 T.PrintHelp(outs(), "llvm-strip [options] file...", "strip tool");
368 exit(0);
369 }
370
371 if (InputArgs.hasArg(STRIP_version)) {
372 cl::PrintVersionMessage();
373 exit(0);
374 }
375
376 SmallVector<const char *, 2> Positional;
377 for (auto Arg : InputArgs.filtered(STRIP_UNKNOWN))
378 error("unknown argument '" + Arg->getAsString(InputArgs) + "'");
379 for (auto Arg : InputArgs.filtered(STRIP_INPUT))
380 Positional.push_back(Arg->getValue());
381
382 if (Positional.empty())
383 error("No input file specified");
384
385 if (Positional.size() > 1 && InputArgs.hasArg(STRIP_output))
386 error("Multiple input files cannot be used in combination with -o");
387
388 CopyConfig Config;
389 Config.StripDebug = InputArgs.hasArg(STRIP_strip_debug);
390
391 Config.DiscardAll = InputArgs.hasArg(STRIP_discard_all);
392 Config.StripUnneeded = InputArgs.hasArg(STRIP_strip_unneeded);
393 Config.StripAll = InputArgs.hasArg(STRIP_strip_all);
394
395 if (!Config.StripDebug && !Config.StripUnneeded && !Config.DiscardAll)
396 Config.StripAll = true;
397
398 for (auto Arg : InputArgs.filtered(STRIP_remove_section))
399 Config.ToRemove.push_back(Arg->getValue());
400
401 for (auto Arg : InputArgs.filtered(STRIP_keep_symbol))
402 Config.SymbolsToKeep.push_back(Arg->getValue());
403
404 Config.PreserveDates = InputArgs.hasArg(STRIP_preserve_dates);
405
406 DriverConfig DC;
407 if (Positional.size() == 1) {
408 Config.InputFilename = Positional[0];
409 Config.OutputFilename =
410 InputArgs.getLastArgValue(STRIP_output, Positional[0]);
411 DC.CopyConfigs.push_back(std::move(Config));
412 } else {
413 for (const char *Filename : Positional) {
414 Config.InputFilename = Filename;
415 Config.OutputFilename = Filename;
416 DC.CopyConfigs.push_back(Config);
417 }
418 }
419
420 return DC;
421}
422
423} // namespace objcopy
424} // namespace llvm