OSDN Git Service

Revert [llvm-objcopy][NFCI] Fix build failure with GCC
[android-x86/external-llvm.git] / tools / llvm-objcopy / llvm-objcopy.cpp
1 //===- llvm-objcopy.cpp ---------------------------------------------------===//
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 #include "llvm-objcopy.h"
10 #include "Buffer.h"
11 #include "CopyConfig.h"
12 #include "ELF/ELFObjcopy.h"
13 #include "COFF/COFFObjcopy.h"
14 #include "MachO/MachOObjcopy.h"
15
16 #include "llvm/ADT/STLExtras.h"
17 #include "llvm/ADT/SmallVector.h"
18 #include "llvm/ADT/StringRef.h"
19 #include "llvm/ADT/Twine.h"
20 #include "llvm/Object/Archive.h"
21 #include "llvm/Object/ArchiveWriter.h"
22 #include "llvm/Object/Binary.h"
23 #include "llvm/Object/COFF.h"
24 #include "llvm/Object/ELFObjectFile.h"
25 #include "llvm/Object/ELFTypes.h"
26 #include "llvm/Object/Error.h"
27 #include "llvm/Object/MachO.h"
28 #include "llvm/Option/Arg.h"
29 #include "llvm/Option/ArgList.h"
30 #include "llvm/Option/Option.h"
31 #include "llvm/Support/Casting.h"
32 #include "llvm/Support/Error.h"
33 #include "llvm/Support/ErrorHandling.h"
34 #include "llvm/Support/ErrorOr.h"
35 #include "llvm/Support/InitLLVM.h"
36 #include "llvm/Support/Memory.h"
37 #include "llvm/Support/Path.h"
38 #include "llvm/Support/Process.h"
39 #include "llvm/Support/WithColor.h"
40 #include "llvm/Support/raw_ostream.h"
41 #include <algorithm>
42 #include <cassert>
43 #include <cstdlib>
44 #include <memory>
45 #include <string>
46 #include <system_error>
47 #include <utility>
48
49 namespace llvm {
50 namespace objcopy {
51
52 // The name this program was invoked as.
53 StringRef ToolName;
54
55 LLVM_ATTRIBUTE_NORETURN void error(Twine Message) {
56   WithColor::error(errs(), ToolName) << Message << "\n";
57   exit(1);
58 }
59
60 LLVM_ATTRIBUTE_NORETURN void error(Error E) {
61   assert(E);
62   std::string Buf;
63   raw_string_ostream OS(Buf);
64   logAllUnhandledErrors(std::move(E), OS);
65   OS.flush();
66   WithColor::error(errs(), ToolName) << Buf;
67   exit(1);
68 }
69
70 LLVM_ATTRIBUTE_NORETURN void reportError(StringRef File, std::error_code EC) {
71   assert(EC);
72   error(createFileError(File, EC));
73 }
74
75 LLVM_ATTRIBUTE_NORETURN void reportError(StringRef File, Error E) {
76   assert(E);
77   std::string Buf;
78   raw_string_ostream OS(Buf);
79   logAllUnhandledErrors(std::move(E), OS);
80   OS.flush();
81   WithColor::error(errs(), ToolName) << "'" << File << "': " << Buf;
82   exit(1);
83 }
84
85 ErrorSuccess reportWarning(Error E) {
86   assert(E);
87   WithColor::warning(errs(), ToolName) << toString(std::move(E));
88   return Error::success();
89 }
90
91 } // end namespace objcopy
92 } // end namespace llvm
93
94 using namespace llvm;
95 using namespace llvm::object;
96 using namespace llvm::objcopy;
97
98 // For regular archives this function simply calls llvm::writeArchive,
99 // For thin archives it writes the archive file itself as well as its members.
100 static Error deepWriteArchive(StringRef ArcName,
101                               ArrayRef<NewArchiveMember> NewMembers,
102                               bool WriteSymtab, object::Archive::Kind Kind,
103                               bool Deterministic, bool Thin) {
104   if (Error E = writeArchive(ArcName, NewMembers, WriteSymtab, Kind,
105                              Deterministic, Thin))
106     return createFileError(ArcName, std::move(E));
107
108   if (!Thin)
109     return Error::success();
110
111   for (const NewArchiveMember &Member : NewMembers) {
112     // Internally, FileBuffer will use the buffer created by
113     // FileOutputBuffer::create, for regular files (that is the case for
114     // deepWriteArchive) FileOutputBuffer::create will return OnDiskBuffer.
115     // OnDiskBuffer uses a temporary file and then renames it. So in reality
116     // there is no inefficiency / duplicated in-memory buffers in this case. For
117     // now in-memory buffers can not be completely avoided since
118     // NewArchiveMember still requires them even though writeArchive does not
119     // write them on disk.
120     FileBuffer FB(Member.MemberName);
121     if (Error E = FB.allocate(Member.Buf->getBufferSize()))
122       return E;
123     std::copy(Member.Buf->getBufferStart(), Member.Buf->getBufferEnd(),
124               FB.getBufferStart());
125     if (Error E = FB.commit())
126       return E;
127   }
128   return Error::success();
129 }
130
131 /// The function executeObjcopyOnIHex does the dispatch based on the format
132 /// of the output specified by the command line options.
133 static Error executeObjcopyOnIHex(const CopyConfig &Config, MemoryBuffer &In,
134                                   Buffer &Out) {
135   // TODO: support output formats other than ELF.
136   return elf::executeObjcopyOnIHex(Config, In, Out);
137 }
138
139 /// The function executeObjcopyOnRawBinary does the dispatch based on the format
140 /// of the output specified by the command line options.
141 static Error executeObjcopyOnRawBinary(const CopyConfig &Config,
142                                        MemoryBuffer &In, Buffer &Out) {
143   switch (Config.OutputFormat) {
144   case FileFormat::ELF:
145   // FIXME: Currently, we call elf::executeObjcopyOnRawBinary even if the
146   // output format is binary/ihex or it's not given. This behavior differs from
147   // GNU objcopy. See https://bugs.llvm.org/show_bug.cgi?id=42171 for details.
148   case FileFormat::Binary:
149   case FileFormat::IHex:
150   case FileFormat::Unspecified:
151     return elf::executeObjcopyOnRawBinary(Config, In, Out);
152   }
153 }
154
155 /// The function executeObjcopyOnBinary does the dispatch based on the format
156 /// of the input binary (ELF, MachO or COFF).
157 static Error executeObjcopyOnBinary(const CopyConfig &Config,
158                                     object::Binary &In, Buffer &Out) {
159   if (auto *ELFBinary = dyn_cast<object::ELFObjectFileBase>(&In))
160     return elf::executeObjcopyOnBinary(Config, *ELFBinary, Out);
161   else if (auto *COFFBinary = dyn_cast<object::COFFObjectFile>(&In))
162     return coff::executeObjcopyOnBinary(Config, *COFFBinary, Out);
163   else if (auto *MachOBinary = dyn_cast<object::MachOObjectFile>(&In))
164     return macho::executeObjcopyOnBinary(Config, *MachOBinary, Out);
165   else
166     return createStringError(object_error::invalid_file_type,
167                              "unsupported object file format");
168 }
169
170 static Error executeObjcopyOnArchive(const CopyConfig &Config,
171                                      const Archive &Ar) {
172   std::vector<NewArchiveMember> NewArchiveMembers;
173   Error Err = Error::success();
174   for (const Archive::Child &Child : Ar.children(Err)) {
175     Expected<StringRef> ChildNameOrErr = Child.getName();
176     if (!ChildNameOrErr)
177       return createFileError(Ar.getFileName(), ChildNameOrErr.takeError());
178
179     Expected<std::unique_ptr<Binary>> ChildOrErr = Child.getAsBinary();
180     if (!ChildOrErr)
181       return createFileError(Ar.getFileName() + "(" + *ChildNameOrErr + ")",
182                              ChildOrErr.takeError());
183
184     MemBuffer MB(ChildNameOrErr.get());
185     if (Error E = executeObjcopyOnBinary(Config, *ChildOrErr->get(), MB))
186       return E;
187
188     Expected<NewArchiveMember> Member =
189         NewArchiveMember::getOldMember(Child, Config.DeterministicArchives);
190     if (!Member)
191       return createFileError(Ar.getFileName(), Member.takeError());
192     Member->Buf = MB.releaseMemoryBuffer();
193     Member->MemberName = Member->Buf->getBufferIdentifier();
194     NewArchiveMembers.push_back(std::move(*Member));
195   }
196   if (Err)
197     return createFileError(Config.InputFilename, std::move(Err));
198
199   return deepWriteArchive(Config.OutputFilename, NewArchiveMembers,
200                           Ar.hasSymbolTable(), Ar.kind(),
201                           Config.DeterministicArchives, Ar.isThin());
202 }
203
204 static Error restoreDateOnFile(StringRef Filename,
205                                const sys::fs::file_status &Stat) {
206   int FD;
207
208   if (auto EC =
209           sys::fs::openFileForWrite(Filename, FD, sys::fs::CD_OpenExisting))
210     return createFileError(Filename, EC);
211
212   if (auto EC = sys::fs::setLastAccessAndModificationTime(
213           FD, Stat.getLastAccessedTime(), Stat.getLastModificationTime()))
214     return createFileError(Filename, EC);
215
216   if (auto EC = sys::Process::SafelyCloseFileDescriptor(FD))
217     return createFileError(Filename, EC);
218
219   return Error::success();
220 }
221
222 /// The function executeObjcopy does the higher level dispatch based on the type
223 /// of input (raw binary, archive or single object file) and takes care of the
224 /// format-agnostic modifications, i.e. preserving dates.
225 static Error executeObjcopy(const CopyConfig &Config) {
226   sys::fs::file_status Stat;
227   if (Config.PreserveDates)
228     if (auto EC = sys::fs::status(Config.InputFilename, Stat))
229       return createFileError(Config.InputFilename, EC);
230
231   typedef Error (*ProcessRawFn)(const CopyConfig &, MemoryBuffer &, Buffer &);
232   ProcessRawFn ProcessRaw;
233   switch (Config.InputFormat) {
234   case FileFormat::Binary:
235     ProcessRaw = executeObjcopyOnRawBinary;
236     break;
237   case FileFormat::IHex:
238     ProcessRaw = executeObjcopyOnIHex;
239     break;
240   default:
241     ProcessRaw = nullptr;
242   }
243
244   if (ProcessRaw) {
245     auto BufOrErr = MemoryBuffer::getFileOrSTDIN(Config.InputFilename);
246     if (!BufOrErr)
247       return createFileError(Config.InputFilename, BufOrErr.getError());
248     FileBuffer FB(Config.OutputFilename);
249     if (Error E = ProcessRaw(Config, *BufOrErr->get(), FB))
250       return E;
251   } else {
252     Expected<OwningBinary<llvm::object::Binary>> BinaryOrErr =
253         createBinary(Config.InputFilename);
254     if (!BinaryOrErr)
255       return createFileError(Config.InputFilename, BinaryOrErr.takeError());
256
257     if (Archive *Ar = dyn_cast<Archive>(BinaryOrErr.get().getBinary())) {
258       if (Error E = executeObjcopyOnArchive(Config, *Ar))
259         return E;
260     } else {
261       FileBuffer FB(Config.OutputFilename);
262       if (Error E = executeObjcopyOnBinary(Config,
263                                            *BinaryOrErr.get().getBinary(), FB))
264         return E;
265     }
266   }
267
268   if (Config.PreserveDates) {
269     if (Error E = restoreDateOnFile(Config.OutputFilename, Stat))
270       return E;
271     if (!Config.SplitDWO.empty())
272       if (Error E = restoreDateOnFile(Config.SplitDWO, Stat))
273         return E;
274   }
275
276   return Error::success();
277 }
278
279 int main(int argc, char **argv) {
280   InitLLVM X(argc, argv);
281   ToolName = argv[0];
282   bool IsStrip = sys::path::stem(ToolName).contains("strip");
283   Expected<DriverConfig> DriverConfig =
284       IsStrip ? parseStripOptions(makeArrayRef(argv + 1, argc), reportWarning)
285               : parseObjcopyOptions(makeArrayRef(argv + 1, argc));
286   if (!DriverConfig) {
287     logAllUnhandledErrors(DriverConfig.takeError(),
288                           WithColor::error(errs(), ToolName));
289     return 1;
290   }
291   for (const CopyConfig &CopyConfig : DriverConfig->CopyConfigs) {
292     if (Error E = executeObjcopy(CopyConfig)) {
293       logAllUnhandledErrors(std::move(E), WithColor::error(errs(), ToolName));
294       return 1;
295     }
296   }
297
298   return 0;
299 }