xref: /freebsd/contrib/llvm-project/lld/ELF/DriverUtils.cpp (revision bdd1243df58e60e85101c09001d9812a789b6bc4)
10b57cec5SDimitry Andric //===- DriverUtils.cpp ----------------------------------------------------===//
20b57cec5SDimitry Andric //
30b57cec5SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
40b57cec5SDimitry Andric // See https://llvm.org/LICENSE.txt for license information.
50b57cec5SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
60b57cec5SDimitry Andric //
70b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
80b57cec5SDimitry Andric //
9*bdd1243dSDimitry Andric // This file contains utility functions for the ctx.driver. Because there
100b57cec5SDimitry Andric // are so many small functions, we created this separate file to make
110b57cec5SDimitry Andric // Driver.cpp less cluttered.
120b57cec5SDimitry Andric //
130b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
140b57cec5SDimitry Andric 
1581ad6265SDimitry Andric #include "Config.h"
160b57cec5SDimitry Andric #include "Driver.h"
1704eeddc0SDimitry Andric #include "lld/Common/CommonLinkerContext.h"
180b57cec5SDimitry Andric #include "lld/Common/Reproduce.h"
190b57cec5SDimitry Andric #include "llvm/ADT/Triple.h"
200b57cec5SDimitry Andric #include "llvm/Option/Option.h"
210b57cec5SDimitry Andric #include "llvm/Support/CommandLine.h"
220b57cec5SDimitry Andric #include "llvm/Support/FileSystem.h"
235ffd83dbSDimitry Andric #include "llvm/Support/Host.h"
240b57cec5SDimitry Andric #include "llvm/Support/Path.h"
25e8d8bef9SDimitry Andric #include "llvm/Support/TimeProfiler.h"
26*bdd1243dSDimitry Andric #include <optional>
270b57cec5SDimitry Andric 
280b57cec5SDimitry Andric using namespace llvm;
290b57cec5SDimitry Andric using namespace llvm::sys;
300b57cec5SDimitry Andric using namespace llvm::opt;
315ffd83dbSDimitry Andric using namespace lld;
325ffd83dbSDimitry Andric using namespace lld::elf;
330b57cec5SDimitry Andric 
340b57cec5SDimitry Andric // Create OptTable
350b57cec5SDimitry Andric 
360b57cec5SDimitry Andric // Create prefix string literals used in Options.td
37*bdd1243dSDimitry Andric #define PREFIX(NAME, VALUE)                                                    \
38*bdd1243dSDimitry Andric   static constexpr StringLiteral NAME##_init[] = VALUE;                        \
39*bdd1243dSDimitry Andric   static constexpr ArrayRef<StringLiteral> NAME(NAME##_init,                   \
40*bdd1243dSDimitry Andric                                                 std::size(NAME##_init) - 1);
410b57cec5SDimitry Andric #include "Options.inc"
420b57cec5SDimitry Andric #undef PREFIX
430b57cec5SDimitry Andric 
440b57cec5SDimitry Andric // Create table mapping all options defined in Options.td
45*bdd1243dSDimitry Andric static constexpr opt::OptTable::Info optInfo[] = {
460b57cec5SDimitry Andric #define OPTION(X1, X2, ID, KIND, GROUP, ALIAS, X7, X8, X9, X10, X11, X12)      \
470b57cec5SDimitry Andric   {X1, X2, X10,         X11,         OPT_##ID, opt::Option::KIND##Class,       \
480b57cec5SDimitry Andric    X9, X8, OPT_##GROUP, OPT_##ALIAS, X7,       X12},
490b57cec5SDimitry Andric #include "Options.inc"
500b57cec5SDimitry Andric #undef OPTION
510b57cec5SDimitry Andric };
520b57cec5SDimitry Andric 
53*bdd1243dSDimitry Andric ELFOptTable::ELFOptTable() : GenericOptTable(optInfo) {}
540b57cec5SDimitry Andric 
55349cc55cSDimitry Andric // Set color diagnostics according to --color-diagnostics={auto,always,never}
56349cc55cSDimitry Andric // or --no-color-diagnostics flags.
570b57cec5SDimitry Andric static void handleColorDiagnostics(opt::InputArgList &args) {
58972a253aSDimitry Andric   auto *arg = args.getLastArg(OPT_color_diagnostics);
590b57cec5SDimitry Andric   if (!arg)
600b57cec5SDimitry Andric     return;
610b57cec5SDimitry Andric   StringRef s = arg->getValue();
620b57cec5SDimitry Andric   if (s == "always")
63480093f4SDimitry Andric     lld::errs().enable_colors(true);
640b57cec5SDimitry Andric   else if (s == "never")
65480093f4SDimitry Andric     lld::errs().enable_colors(false);
660b57cec5SDimitry Andric   else if (s != "auto")
670b57cec5SDimitry Andric     error("unknown option: --color-diagnostics=" + s);
680b57cec5SDimitry Andric }
690b57cec5SDimitry Andric 
700b57cec5SDimitry Andric static cl::TokenizerCallback getQuotingStyle(opt::InputArgList &args) {
710b57cec5SDimitry Andric   if (auto *arg = args.getLastArg(OPT_rsp_quoting)) {
720b57cec5SDimitry Andric     StringRef s = arg->getValue();
730b57cec5SDimitry Andric     if (s != "windows" && s != "posix")
740b57cec5SDimitry Andric       error("invalid response file quoting: " + s);
750b57cec5SDimitry Andric     if (s == "windows")
760b57cec5SDimitry Andric       return cl::TokenizeWindowsCommandLine;
770b57cec5SDimitry Andric     return cl::TokenizeGNUCommandLine;
780b57cec5SDimitry Andric   }
795ffd83dbSDimitry Andric   if (Triple(sys::getProcessTriple()).isOSWindows())
800b57cec5SDimitry Andric     return cl::TokenizeWindowsCommandLine;
810b57cec5SDimitry Andric   return cl::TokenizeGNUCommandLine;
820b57cec5SDimitry Andric }
830b57cec5SDimitry Andric 
840b57cec5SDimitry Andric // Gold LTO plugin takes a `--plugin-opt foo=bar` option as an alias for
850b57cec5SDimitry Andric // `--plugin-opt=foo=bar`. We want to handle `--plugin-opt=foo=` as an
860b57cec5SDimitry Andric // option name and `bar` as a value. Unfortunately, OptParser cannot
870b57cec5SDimitry Andric // handle an option with a space in it.
880b57cec5SDimitry Andric //
890b57cec5SDimitry Andric // In this function, we concatenate command line arguments so that
900b57cec5SDimitry Andric // `--plugin-opt <foo>` is converted to `--plugin-opt=<foo>`. This is a
910b57cec5SDimitry Andric // bit hacky, but looks like it is still better than handling --plugin-opt
920b57cec5SDimitry Andric // options by hand.
930b57cec5SDimitry Andric static void concatLTOPluginOptions(SmallVectorImpl<const char *> &args) {
940b57cec5SDimitry Andric   SmallVector<const char *, 256> v;
950b57cec5SDimitry Andric   for (size_t i = 0, e = args.size(); i != e; ++i) {
960b57cec5SDimitry Andric     StringRef s = args[i];
970b57cec5SDimitry Andric     if ((s == "-plugin-opt" || s == "--plugin-opt") && i + 1 != e) {
9804eeddc0SDimitry Andric       v.push_back(saver().save(s + "=" + args[i + 1]).data());
990b57cec5SDimitry Andric       ++i;
1000b57cec5SDimitry Andric     } else {
1010b57cec5SDimitry Andric       v.push_back(args[i]);
1020b57cec5SDimitry Andric     }
1030b57cec5SDimitry Andric   }
1040b57cec5SDimitry Andric   args = std::move(v);
1050b57cec5SDimitry Andric }
1060b57cec5SDimitry Andric 
1070b57cec5SDimitry Andric // Parses a given list of options.
1080b57cec5SDimitry Andric opt::InputArgList ELFOptTable::parse(ArrayRef<const char *> argv) {
1090b57cec5SDimitry Andric   // Make InputArgList from string vectors.
1100b57cec5SDimitry Andric   unsigned missingIndex;
1110b57cec5SDimitry Andric   unsigned missingCount;
1120b57cec5SDimitry Andric   SmallVector<const char *, 256> vec(argv.data(), argv.data() + argv.size());
1130b57cec5SDimitry Andric 
1140b57cec5SDimitry Andric   // We need to get the quoting style for response files before parsing all
1150b57cec5SDimitry Andric   // options so we parse here before and ignore all the options but
1160b57cec5SDimitry Andric   // --rsp-quoting.
1170b57cec5SDimitry Andric   opt::InputArgList args = this->ParseArgs(vec, missingIndex, missingCount);
1180b57cec5SDimitry Andric 
1190b57cec5SDimitry Andric   // Expand response files (arguments in the form of @<filename>)
1200b57cec5SDimitry Andric   // and then parse the argument again.
12104eeddc0SDimitry Andric   cl::ExpandResponseFiles(saver(), getQuotingStyle(args), vec);
1220b57cec5SDimitry Andric   concatLTOPluginOptions(vec);
1230b57cec5SDimitry Andric   args = this->ParseArgs(vec, missingIndex, missingCount);
1240b57cec5SDimitry Andric 
1250b57cec5SDimitry Andric   handleColorDiagnostics(args);
1260b57cec5SDimitry Andric   if (missingCount)
1270b57cec5SDimitry Andric     error(Twine(args.getArgString(missingIndex)) + ": missing argument");
1280b57cec5SDimitry Andric 
129e8d8bef9SDimitry Andric   for (opt::Arg *arg : args.filtered(OPT_UNKNOWN)) {
1300b57cec5SDimitry Andric     std::string nearest;
1310b57cec5SDimitry Andric     if (findNearest(arg->getAsString(args), nearest) > 1)
1320b57cec5SDimitry Andric       error("unknown argument '" + arg->getAsString(args) + "'");
1330b57cec5SDimitry Andric     else
1340b57cec5SDimitry Andric       error("unknown argument '" + arg->getAsString(args) +
1350b57cec5SDimitry Andric             "', did you mean '" + nearest + "'");
1360b57cec5SDimitry Andric   }
1370b57cec5SDimitry Andric   return args;
1380b57cec5SDimitry Andric }
1390b57cec5SDimitry Andric 
1405ffd83dbSDimitry Andric void elf::printHelp() {
141fe6060f1SDimitry Andric   ELFOptTable().printHelp(
142480093f4SDimitry Andric       lld::outs(), (config->progName + " [options] file...").str().c_str(),
143480093f4SDimitry Andric       "lld", false /*ShowHidden*/, true /*ShowAllAliases*/);
144480093f4SDimitry Andric   lld::outs() << "\n";
1450b57cec5SDimitry Andric 
146349cc55cSDimitry Andric   // Scripts generated by Libtool versions up to 2021-10 expect /: supported
147349cc55cSDimitry Andric   // targets:.* elf/ in a message for the --help option. If it doesn't match,
148349cc55cSDimitry Andric   // the scripts assume that the linker doesn't support very basic features
149349cc55cSDimitry Andric   // such as shared libraries. Therefore, we need to print out at least "elf".
150480093f4SDimitry Andric   lld::outs() << config->progName << ": supported targets: elf\n";
1510b57cec5SDimitry Andric }
1520b57cec5SDimitry Andric 
1530b57cec5SDimitry Andric static std::string rewritePath(StringRef s) {
1540b57cec5SDimitry Andric   if (fs::exists(s))
1550b57cec5SDimitry Andric     return relativeToRoot(s);
1565ffd83dbSDimitry Andric   return std::string(s);
1570b57cec5SDimitry Andric }
1580b57cec5SDimitry Andric 
1590b57cec5SDimitry Andric // Reconstructs command line arguments so that so that you can re-run
1600b57cec5SDimitry Andric // the same command with the same inputs. This is for --reproduce.
1615ffd83dbSDimitry Andric std::string elf::createResponseFile(const opt::InputArgList &args) {
1620b57cec5SDimitry Andric   SmallString<0> data;
1630b57cec5SDimitry Andric   raw_svector_ostream os(data);
1640b57cec5SDimitry Andric   os << "--chroot .\n";
1650b57cec5SDimitry Andric 
1660b57cec5SDimitry Andric   // Copy the command line to the output while rewriting paths.
1670b57cec5SDimitry Andric   for (auto *arg : args) {
1680b57cec5SDimitry Andric     switch (arg->getOption().getID()) {
1690b57cec5SDimitry Andric     case OPT_reproduce:
1700b57cec5SDimitry Andric       break;
1710b57cec5SDimitry Andric     case OPT_INPUT:
1720b57cec5SDimitry Andric       os << quote(rewritePath(arg->getValue())) << "\n";
1730b57cec5SDimitry Andric       break;
1740b57cec5SDimitry Andric     case OPT_o:
175*bdd1243dSDimitry Andric     case OPT_Map:
176*bdd1243dSDimitry Andric     case OPT_print_archive_stats:
177*bdd1243dSDimitry Andric     case OPT_why_extract:
178*bdd1243dSDimitry Andric       // If an output path contains directories, "lld @response.txt" will
179*bdd1243dSDimitry Andric       // likely fail because the archive we are creating doesn't contain empty
1800b57cec5SDimitry Andric       // directories for the output path (-o doesn't create directories).
1810b57cec5SDimitry Andric       // Strip directories to prevent the issue.
182*bdd1243dSDimitry Andric       os << arg->getSpelling();
183*bdd1243dSDimitry Andric       if (arg->getOption().getRenderStyle() == opt::Option::RenderSeparateStyle)
184*bdd1243dSDimitry Andric         os << ' ';
185*bdd1243dSDimitry Andric       os << quote(path::filename(arg->getValue())) << '\n';
1860b57cec5SDimitry Andric       break;
187fe6060f1SDimitry Andric     case OPT_lto_sample_profile:
188fe6060f1SDimitry Andric       os << arg->getSpelling() << quote(rewritePath(arg->getValue())) << "\n";
189fe6060f1SDimitry Andric       break;
190e8d8bef9SDimitry Andric     case OPT_call_graph_ordering_file:
1910b57cec5SDimitry Andric     case OPT_dynamic_list:
192972a253aSDimitry Andric     case OPT_export_dynamic_symbol_list:
193e8d8bef9SDimitry Andric     case OPT_just_symbols:
1940b57cec5SDimitry Andric     case OPT_library_path:
195e8d8bef9SDimitry Andric     case OPT_retain_symbols_file:
1960b57cec5SDimitry Andric     case OPT_rpath:
1970b57cec5SDimitry Andric     case OPT_script:
1980b57cec5SDimitry Andric     case OPT_symbol_ordering_file:
1990b57cec5SDimitry Andric     case OPT_sysroot:
2000b57cec5SDimitry Andric     case OPT_version_script:
2010b57cec5SDimitry Andric       os << arg->getSpelling() << " " << quote(rewritePath(arg->getValue()))
2020b57cec5SDimitry Andric          << "\n";
2030b57cec5SDimitry Andric       break;
2040b57cec5SDimitry Andric     default:
2050b57cec5SDimitry Andric       os << toString(*arg) << "\n";
2060b57cec5SDimitry Andric     }
2070b57cec5SDimitry Andric   }
2085ffd83dbSDimitry Andric   return std::string(data.str());
2090b57cec5SDimitry Andric }
2100b57cec5SDimitry Andric 
2110b57cec5SDimitry Andric // Find a file by concatenating given paths. If a resulting path
2120b57cec5SDimitry Andric // starts with "=", the character is replaced with a --sysroot value.
213*bdd1243dSDimitry Andric static std::optional<std::string> findFile(StringRef path1,
214*bdd1243dSDimitry Andric                                            const Twine &path2) {
2150b57cec5SDimitry Andric   SmallString<128> s;
2160b57cec5SDimitry Andric   if (path1.startswith("="))
2170b57cec5SDimitry Andric     path::append(s, config->sysroot, path1.substr(1), path2);
2180b57cec5SDimitry Andric   else
2190b57cec5SDimitry Andric     path::append(s, path1, path2);
2200b57cec5SDimitry Andric 
2210b57cec5SDimitry Andric   if (fs::exists(s))
2225ffd83dbSDimitry Andric     return std::string(s);
223*bdd1243dSDimitry Andric   return std::nullopt;
2240b57cec5SDimitry Andric }
2250b57cec5SDimitry Andric 
226*bdd1243dSDimitry Andric std::optional<std::string> elf::findFromSearchPaths(StringRef path) {
2270b57cec5SDimitry Andric   for (StringRef dir : config->searchPaths)
228*bdd1243dSDimitry Andric     if (std::optional<std::string> s = findFile(dir, path))
2290b57cec5SDimitry Andric       return s;
230*bdd1243dSDimitry Andric   return std::nullopt;
2310b57cec5SDimitry Andric }
2320b57cec5SDimitry Andric 
2330b57cec5SDimitry Andric // This is for -l<basename>. We'll look for lib<basename>.so or lib<basename>.a from
2340b57cec5SDimitry Andric // search paths.
235*bdd1243dSDimitry Andric std::optional<std::string> elf::searchLibraryBaseName(StringRef name) {
2360b57cec5SDimitry Andric   for (StringRef dir : config->searchPaths) {
2370b57cec5SDimitry Andric     if (!config->isStatic)
238*bdd1243dSDimitry Andric       if (std::optional<std::string> s = findFile(dir, "lib" + name + ".so"))
2390b57cec5SDimitry Andric         return s;
240*bdd1243dSDimitry Andric     if (std::optional<std::string> s = findFile(dir, "lib" + name + ".a"))
2410b57cec5SDimitry Andric       return s;
2420b57cec5SDimitry Andric   }
243*bdd1243dSDimitry Andric   return std::nullopt;
2440b57cec5SDimitry Andric }
2450b57cec5SDimitry Andric 
2460b57cec5SDimitry Andric // This is for -l<namespec>.
247*bdd1243dSDimitry Andric std::optional<std::string> elf::searchLibrary(StringRef name) {
248e8d8bef9SDimitry Andric   llvm::TimeTraceScope timeScope("Locate library", name);
2490b57cec5SDimitry Andric   if (name.startswith(":"))
2500b57cec5SDimitry Andric     return findFromSearchPaths(name.substr(1));
2510b57cec5SDimitry Andric   return searchLibraryBaseName(name);
2520b57cec5SDimitry Andric }
2530b57cec5SDimitry Andric 
2540b57cec5SDimitry Andric // If a linker/version script doesn't exist in the current directory, we also
2550b57cec5SDimitry Andric // look for the script in the '-L' search paths. This matches the behaviour of
2560b57cec5SDimitry Andric // '-T', --version-script=, and linker script INPUT() command in ld.bfd.
257*bdd1243dSDimitry Andric std::optional<std::string> elf::searchScript(StringRef name) {
2580b57cec5SDimitry Andric   if (fs::exists(name))
2590b57cec5SDimitry Andric     return name.str();
2600b57cec5SDimitry Andric   return findFromSearchPaths(name);
2610b57cec5SDimitry Andric }
262