Add a wrapper for open.
[oota-llvm.git] / tools / llvm-ar / llvm-ar.cpp
1 //===-- llvm-ar.cpp - LLVM archive librarian utility ----------------------===//
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 // Builds up (relatively) standard unix archive files (.a) containing LLVM
11 // bitcode or other files.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "llvm/IR/LLVMContext.h"
16 #include "llvm/IR/Module.h"
17 #include "llvm/Object/Archive.h"
18 #include "llvm/Support/CommandLine.h"
19 #include "llvm/Support/FileSystem.h"
20 #include "llvm/Support/Format.h"
21 #include "llvm/Support/ManagedStatic.h"
22 #include "llvm/Support/MemoryBuffer.h"
23 #include "llvm/Support/PrettyStackTrace.h"
24 #include "llvm/Support/Signals.h"
25 #include "llvm/Support/ToolOutputFile.h"
26 #include "llvm/Support/raw_ostream.h"
27 #include <algorithm>
28 #include <cstdlib>
29 #include <memory>
30
31 #if !defined(_MSC_VER) && !defined(__MINGW32__)
32 #include <unistd.h>
33 #else
34 #include <io.h>
35 #endif
36
37 using namespace llvm;
38
39 // The name this program was invoked as.
40 static StringRef ToolName;
41
42 static const char *TemporaryOutput;
43 static int TmpArchiveFD = -1;
44
45 // fail - Show the error message and exit.
46 LLVM_ATTRIBUTE_NORETURN static void fail(Twine Error) {
47   outs() << ToolName << ": " << Error << ".\n";
48   if (TmpArchiveFD != -1)
49     close(TmpArchiveFD);
50   if (TemporaryOutput)
51     sys::fs::remove(TemporaryOutput);
52   exit(1);
53 }
54
55 static void failIfError(error_code EC, Twine Context = "") {
56   if (!EC)
57     return;
58
59   std::string ContextStr = Context.str();
60   if (ContextStr == "")
61     fail(EC.message());
62   fail(Context + ": " + EC.message());
63 }
64
65 // Option for compatibility with AIX, not used but must allow it to be present.
66 static cl::opt<bool>
67 X32Option ("X32_64", cl::Hidden,
68             cl::desc("Ignored option for compatibility with AIX"));
69
70 // llvm-ar operation code and modifier flags. This must come first.
71 static cl::opt<std::string>
72 Options(cl::Positional, cl::Required, cl::desc("{operation}[modifiers]..."));
73
74 // llvm-ar remaining positional arguments.
75 static cl::list<std::string>
76 RestOfArgs(cl::Positional, cl::OneOrMore,
77     cl::desc("[relpos] [count] <archive-file> [members]..."));
78
79 // MoreHelp - Provide additional help output explaining the operations and
80 // modifiers of llvm-ar. This object instructs the CommandLine library
81 // to print the text of the constructor when the --help option is given.
82 static cl::extrahelp MoreHelp(
83   "\nOPERATIONS:\n"
84   "  d[NsS]       - delete file(s) from the archive\n"
85   "  m[abiSs]     - move file(s) in the archive\n"
86   "  p[kN]        - print file(s) found in the archive\n"
87   "  q[ufsS]      - quick append file(s) to the archive\n"
88   "  r[abfiuRsS]  - replace or insert file(s) into the archive\n"
89   "  t            - display contents of archive\n"
90   "  x[No]        - extract file(s) from the archive\n"
91   "\nMODIFIERS (operation specific):\n"
92   "  [a] - put file(s) after [relpos]\n"
93   "  [b] - put file(s) before [relpos] (same as [i])\n"
94   "  [i] - put file(s) before [relpos] (same as [b])\n"
95   "  [N] - use instance [count] of name\n"
96   "  [o] - preserve original dates\n"
97   "  [s] - create an archive index (cf. ranlib)\n"
98   "  [S] - do not build a symbol table\n"
99   "  [u] - update only files newer than archive contents\n"
100   "\nMODIFIERS (generic):\n"
101   "  [c] - do not warn if the library had to be created\n"
102   "  [v] - be verbose about actions taken\n"
103 );
104
105 // This enumeration delineates the kinds of operations on an archive
106 // that are permitted.
107 enum ArchiveOperation {
108   Print,            ///< Print the contents of the archive
109   Delete,           ///< Delete the specified members
110   Move,             ///< Move members to end or as given by {a,b,i} modifiers
111   QuickAppend,      ///< Quickly append to end of archive
112   ReplaceOrInsert,  ///< Replace or Insert members
113   DisplayTable,     ///< Display the table of contents
114   Extract           ///< Extract files back to file system
115 };
116
117 // Modifiers to follow operation to vary behavior
118 static bool AddAfter = false;      ///< 'a' modifier
119 static bool AddBefore = false;     ///< 'b' modifier
120 static bool Create = false;        ///< 'c' modifier
121 static bool OriginalDates = false; ///< 'o' modifier
122 static bool OnlyUpdate = false;    ///< 'u' modifier
123 static bool Verbose = false;       ///< 'v' modifier
124
125 // Relative Positional Argument (for insert/move). This variable holds
126 // the name of the archive member to which the 'a', 'b' or 'i' modifier
127 // refers. Only one of 'a', 'b' or 'i' can be specified so we only need
128 // one variable.
129 static std::string RelPos;
130
131 // This variable holds the name of the archive file as given on the
132 // command line.
133 static std::string ArchiveName;
134
135 // This variable holds the list of member files to proecess, as given
136 // on the command line.
137 static std::vector<std::string> Members;
138
139 // show_help - Show the error message, the help message and exit.
140 LLVM_ATTRIBUTE_NORETURN static void
141 show_help(const std::string &msg) {
142   errs() << ToolName << ": " << msg << "\n\n";
143   cl::PrintHelpMessage();
144   std::exit(1);
145 }
146
147 // getRelPos - Extract the member filename from the command line for
148 // the [relpos] argument associated with a, b, and i modifiers
149 static void getRelPos() {
150   if(RestOfArgs.size() == 0)
151     show_help("Expected [relpos] for a, b, or i modifier");
152   RelPos = RestOfArgs[0];
153   RestOfArgs.erase(RestOfArgs.begin());
154 }
155
156 // getArchive - Get the archive file name from the command line
157 static void getArchive() {
158   if(RestOfArgs.size() == 0)
159     show_help("An archive name must be specified");
160   ArchiveName = RestOfArgs[0];
161   RestOfArgs.erase(RestOfArgs.begin());
162 }
163
164 // getMembers - Copy over remaining items in RestOfArgs to our Members vector
165 // This is just for clarity.
166 static void getMembers() {
167   if(RestOfArgs.size() > 0)
168     Members = std::vector<std::string>(RestOfArgs);
169 }
170
171 // parseCommandLine - Parse the command line options as presented and return the
172 // operation specified. Process all modifiers and check to make sure that
173 // constraints on modifier/operation pairs have not been violated.
174 static ArchiveOperation parseCommandLine() {
175
176   // Keep track of number of operations. We can only specify one
177   // per execution.
178   unsigned NumOperations = 0;
179
180   // Keep track of the number of positional modifiers (a,b,i). Only
181   // one can be specified.
182   unsigned NumPositional = 0;
183
184   // Keep track of which operation was requested
185   ArchiveOperation Operation;
186
187   for(unsigned i=0; i<Options.size(); ++i) {
188     switch(Options[i]) {
189     case 'd': ++NumOperations; Operation = Delete; break;
190     case 'm': ++NumOperations; Operation = Move ; break;
191     case 'p': ++NumOperations; Operation = Print; break;
192     case 'q': ++NumOperations; Operation = QuickAppend; break;
193     case 'r': ++NumOperations; Operation = ReplaceOrInsert; break;
194     case 't': ++NumOperations; Operation = DisplayTable; break;
195     case 'x': ++NumOperations; Operation = Extract; break;
196     case 'c': Create = true; break;
197     case 'l': /* accepted but unused */ break;
198     case 'o': OriginalDates = true; break;
199     case 's': break; // Ignore for now.
200     case 'S': break; // Ignore for now.
201     case 'u': OnlyUpdate = true; break;
202     case 'v': Verbose = true; break;
203     case 'a':
204       getRelPos();
205       AddAfter = true;
206       NumPositional++;
207       break;
208     case 'b':
209       getRelPos();
210       AddBefore = true;
211       NumPositional++;
212       break;
213     case 'i':
214       getRelPos();
215       AddBefore = true;
216       NumPositional++;
217       break;
218     default:
219       cl::PrintHelpMessage();
220     }
221   }
222
223   // At this point, the next thing on the command line must be
224   // the archive name.
225   getArchive();
226
227   // Everything on the command line at this point is a member.
228   getMembers();
229
230   // Perform various checks on the operation/modifier specification
231   // to make sure we are dealing with a legal request.
232   if (NumOperations == 0)
233     show_help("You must specify at least one of the operations");
234   if (NumOperations > 1)
235     show_help("Only one operation may be specified");
236   if (NumPositional > 1)
237     show_help("You may only specify one of a, b, and i modifiers");
238   if (AddAfter || AddBefore) {
239     if (Operation != Move && Operation != ReplaceOrInsert)
240       show_help("The 'a', 'b' and 'i' modifiers can only be specified with "
241             "the 'm' or 'r' operations");
242   }
243   if (OriginalDates && Operation != Extract)
244     show_help("The 'o' modifier is only applicable to the 'x' operation");
245   if (OnlyUpdate && Operation != ReplaceOrInsert)
246     show_help("The 'u' modifier is only applicable to the 'r' operation");
247
248   // Return the parsed operation to the caller
249   return Operation;
250 }
251
252 // Implements the 'p' operation. This function traverses the archive
253 // looking for members that match the path list.
254 static void doPrint(StringRef Name, object::Archive::child_iterator I) {
255   if (Verbose)
256     outs() << "Printing " << Name << "\n";
257
258   StringRef Data = I->getBuffer();
259   outs().write(Data.data(), Data.size());
260 }
261
262 // putMode - utility function for printing out the file mode when the 't'
263 // operation is in verbose mode.
264 static void printMode(unsigned mode) {
265   if (mode & 004)
266     outs() << "r";
267   else
268     outs() << "-";
269   if (mode & 002)
270     outs() << "w";
271   else
272     outs() << "-";
273   if (mode & 001)
274     outs() << "x";
275   else
276     outs() << "-";
277 }
278
279 // Implement the 't' operation. This function prints out just
280 // the file names of each of the members. However, if verbose mode is requested
281 // ('v' modifier) then the file type, permission mode, user, group, size, and
282 // modification time are also printed.
283 static void doDisplayTable(StringRef Name, object::Archive::child_iterator I) {
284   if (Verbose) {
285     sys::fs::perms Mode = I->getAccessMode();
286     printMode((Mode >> 6) & 007);
287     printMode((Mode >> 3) & 007);
288     printMode(Mode & 007);
289     outs() << ' ' << I->getUID();
290     outs() << '/' << I->getGID();
291     outs() << ' ' << format("%6llu", I->getSize());
292     outs() << ' ' << I->getLastModified().str();
293     outs() << ' ';
294   }
295   outs() << Name << "\n";
296 }
297
298 // Implement the 'x' operation. This function extracts files back to the file
299 // system.
300 static void doExtract(StringRef Name, object::Archive::child_iterator I) {
301   // Retain the original mode.
302   sys::fs::perms Mode = I->getAccessMode();
303   SmallString<128> Storage = Name;
304
305   int FD;
306   failIfError(
307       sys::fs::openFileForWrite(Storage.c_str(), FD, sys::fs::F_None, Mode),
308       Storage.c_str());
309
310   {
311     raw_fd_ostream file(FD, false);
312
313     // Get the data and its length
314     StringRef Data = I->getBuffer();
315
316     // Write the data.
317     file.write(Data.data(), Data.size());
318   }
319
320   // If we're supposed to retain the original modification times, etc. do so
321   // now.
322   if (OriginalDates)
323     failIfError(
324         sys::fs::setLastModificationAndAccessTime(FD, I->getLastModified()));
325
326   if (close(FD))
327     fail("Could not close the file");
328 }
329
330 static bool shouldCreateArchive(ArchiveOperation Op) {
331   switch (Op) {
332   case Print:
333   case Delete:
334   case Move:
335   case DisplayTable:
336   case Extract:
337     return false;
338
339   case QuickAppend:
340   case ReplaceOrInsert:
341     return true;
342   }
343
344   llvm_unreachable("Missing entry in covered switch.");
345 }
346
347 static void performReadOperation(ArchiveOperation Operation,
348                                  object::Archive *OldArchive) {
349   for (object::Archive::child_iterator I = OldArchive->begin_children(),
350                                        E = OldArchive->end_children();
351        I != E; ++I) {
352     StringRef Name;
353     failIfError(I->getName(Name));
354
355     if (!Members.empty() &&
356         std::find(Members.begin(), Members.end(), Name) == Members.end())
357       continue;
358
359     switch (Operation) {
360     default:
361       llvm_unreachable("Not a read operation");
362     case Print:
363       doPrint(Name, I);
364       break;
365     case DisplayTable:
366       doDisplayTable(Name, I);
367       break;
368     case Extract:
369       doExtract(Name, I);
370       break;
371     }
372   }
373 }
374
375 namespace {
376 class NewArchiveIterator {
377   bool IsNewMember;
378   SmallString<16> MemberName;
379   object::Archive::child_iterator OldI;
380   std::vector<std::string>::const_iterator NewI;
381
382 public:
383   NewArchiveIterator(object::Archive::child_iterator I, Twine Name);
384   NewArchiveIterator(std::vector<std::string>::const_iterator I, Twine Name);
385   bool isNewMember() const;
386   object::Archive::child_iterator getOld() const;
387   const char *getNew() const;
388   StringRef getMemberName() const { return MemberName; }
389 };
390 }
391
392 NewArchiveIterator::NewArchiveIterator(object::Archive::child_iterator I,
393                                        Twine Name)
394     : IsNewMember(false), OldI(I) {
395   Name.toVector(MemberName);
396 }
397
398 NewArchiveIterator::NewArchiveIterator(
399     std::vector<std::string>::const_iterator I, Twine Name)
400     : IsNewMember(true), NewI(I) {
401   Name.toVector(MemberName);
402 }
403
404 bool NewArchiveIterator::isNewMember() const { return IsNewMember; }
405
406 object::Archive::child_iterator NewArchiveIterator::getOld() const {
407   assert(!IsNewMember);
408   return OldI;
409 }
410
411 const char *NewArchiveIterator::getNew() const {
412   assert(IsNewMember);
413   return NewI->c_str();
414 }
415
416 template <typename T>
417 void addMember(std::vector<NewArchiveIterator> &Members,
418                std::string &StringTable, T I, StringRef Name) {
419   if (Name.size() < 16) {
420     NewArchiveIterator NI(I, Twine(Name) + "/");
421     Members.push_back(NI);
422   } else {
423     int MapIndex = StringTable.size();
424     NewArchiveIterator NI(I, Twine("/") + Twine(MapIndex));
425     Members.push_back(NI);
426     StringTable += Name;
427     StringTable += "/\n";
428   }
429 }
430
431 namespace {
432 class HasName {
433   StringRef Name;
434
435 public:
436   HasName(StringRef Name) : Name(Name) {}
437   bool operator()(StringRef Path) { return Name == sys::path::filename(Path); }
438 };
439 }
440
441 // We have to walk this twice and computing it is not trivial, so creating an
442 // explicit std::vector is actually fairly efficient.
443 static std::vector<NewArchiveIterator>
444 computeNewArchiveMembers(ArchiveOperation Operation,
445                          object::Archive *OldArchive,
446                          std::string &StringTable) {
447   std::vector<NewArchiveIterator> Ret;
448   std::vector<NewArchiveIterator> Moved;
449   int InsertPos = -1;
450   StringRef PosName = sys::path::filename(RelPos);
451   if (OldArchive) {
452     int Pos = 0;
453     for (object::Archive::child_iterator I = OldArchive->begin_children(),
454                                          E = OldArchive->end_children();
455          I != E; ++I, ++Pos) {
456       StringRef Name;
457       failIfError(I->getName(Name));
458       if (Name == PosName) {
459         assert(AddAfter || AddBefore);
460         if (AddBefore)
461           InsertPos = Pos;
462         else
463           InsertPos = Pos + 1;
464       }
465       if (Operation != QuickAppend && !Members.empty()) {
466         std::vector<std::string>::iterator MI =
467             std::find_if(Members.begin(), Members.end(), HasName(Name));
468         if (MI != Members.end()) {
469           if (Operation == Move) {
470             addMember(Moved, StringTable, I, Name);
471             continue;
472           }
473           if (Operation != ReplaceOrInsert || !OnlyUpdate)
474             continue;
475           // Ignore if the file if it is older than the member.
476           sys::fs::file_status Status;
477           failIfError(sys::fs::status(*MI, Status));
478           if (Status.getLastModificationTime() < I->getLastModified())
479             Members.erase(MI);
480           else
481             continue;
482         }
483       }
484       addMember(Ret, StringTable, I, Name);
485     }
486   }
487
488   if (Operation == Delete)
489     return Ret;
490
491   if (Operation == Move) {
492     if (RelPos.empty()) {
493       Ret.insert(Ret.end(), Moved.begin(), Moved.end());
494       return Ret;
495     }
496     if (InsertPos == -1)
497       fail("Insertion point not found");
498     assert(unsigned(InsertPos) <= Ret.size());
499     Ret.insert(Ret.begin() + InsertPos, Moved.begin(), Moved.end());
500     return Ret;
501   }
502
503   for (std::vector<std::string>::iterator I = Members.begin(),
504                                           E = Members.end();
505        I != E; ++I) {
506     StringRef Name = sys::path::filename(*I);
507     addMember(Ret, StringTable, I, Name);
508   }
509
510   return Ret;
511 }
512
513 template <typename T>
514 static void printWithSpacePadding(raw_ostream &OS, T Data, unsigned Size) {
515   uint64_t OldPos = OS.tell();
516   OS << Data;
517   unsigned SizeSoFar = OS.tell() - OldPos;
518   assert(Size >= SizeSoFar && "Data doesn't fit in Size");
519   unsigned Remaining = Size - SizeSoFar;
520   for (unsigned I = 0; I < Remaining; ++I)
521     OS << ' ';
522 }
523
524 static void performWriteOperation(ArchiveOperation Operation,
525                                   object::Archive *OldArchive) {
526   SmallString<128> TmpArchive;
527   failIfError(sys::fs::createUniqueFile(ArchiveName + ".temp-archive-%%%%%%%.a",
528                                         TmpArchiveFD, TmpArchive));
529
530   TemporaryOutput = TmpArchive.c_str();
531   tool_output_file Output(TemporaryOutput, TmpArchiveFD);
532   raw_fd_ostream &Out = Output.os();
533   Out << "!<arch>\n";
534
535   std::string StringTable;
536   std::vector<NewArchiveIterator> NewMembers =
537       computeNewArchiveMembers(Operation, OldArchive, StringTable);
538   if (!StringTable.empty()) {
539     if (StringTable.size() % 2)
540       StringTable += '\n';
541     printWithSpacePadding(Out, "//", 48);
542     printWithSpacePadding(Out, StringTable.size(), 10);
543     Out << "`\n";
544     Out << StringTable;
545   }
546
547   for (std::vector<NewArchiveIterator>::iterator I = NewMembers.begin(),
548                                                  E = NewMembers.end();
549        I != E; ++I) {
550     StringRef Name = I->getMemberName();
551     printWithSpacePadding(Out, Name, 16);
552
553     if (I->isNewMember()) {
554       const char *FileName = I->getNew();
555
556       int FD;
557       failIfError(sys::fs::openFileForRead(FileName, FD), FileName);
558
559       sys::fs::file_status Status;
560       failIfError(sys::fs::status(FD, Status), FileName);
561
562       OwningPtr<MemoryBuffer> File;
563       failIfError(
564           MemoryBuffer::getOpenFile(FD, FileName, File, Status.getSize()),
565           FileName);
566
567       uint64_t secondsSinceEpoch =
568           Status.getLastModificationTime().toEpochTime();
569       printWithSpacePadding(Out, secondsSinceEpoch, 12);
570
571       printWithSpacePadding(Out, Status.getUser(), 6);
572       printWithSpacePadding(Out, Status.getGroup(), 6);
573       printWithSpacePadding(Out, format("%o", Status.permissions()), 8);
574       printWithSpacePadding(Out, Status.getSize(), 10);
575       Out << "`\n";
576
577       Out << File->getBuffer();
578     } else {
579       object::Archive::child_iterator OldMember = I->getOld();
580
581       uint64_t secondsSinceEpoch = OldMember->getLastModified().toEpochTime();
582       printWithSpacePadding(Out, secondsSinceEpoch, 12);
583
584       printWithSpacePadding(Out, OldMember->getUID(), 6);
585       printWithSpacePadding(Out, OldMember->getGID(), 6);
586       printWithSpacePadding(Out, format("%o", OldMember->getAccessMode()), 8);
587       printWithSpacePadding(Out, OldMember->getSize(), 10);
588       Out << "`\n";
589
590       Out << OldMember->getBuffer();
591     }
592
593     if (Out.tell() % 2)
594       Out << '\n';
595   }
596   Output.keep();
597   Out.close();
598   sys::fs::rename(TemporaryOutput, ArchiveName);
599   TemporaryOutput = NULL;
600 }
601
602 static void performOperation(ArchiveOperation Operation,
603                              object::Archive *OldArchive) {
604   switch (Operation) {
605   case Print:
606   case DisplayTable:
607   case Extract:
608     performReadOperation(Operation, OldArchive);
609     return;
610
611   case Delete:
612   case Move:
613   case QuickAppend:
614   case ReplaceOrInsert:
615     performWriteOperation(Operation, OldArchive);
616     return;
617   }
618   llvm_unreachable("Unknown operation.");
619 }
620
621 // main - main program for llvm-ar .. see comments in the code
622 int main(int argc, char **argv) {
623   ToolName = argv[0];
624   // Print a stack trace if we signal out.
625   sys::PrintStackTraceOnErrorSignal();
626   PrettyStackTraceProgram X(argc, argv);
627   llvm_shutdown_obj Y;  // Call llvm_shutdown() on exit.
628
629   // Have the command line options parsed and handle things
630   // like --help and --version.
631   cl::ParseCommandLineOptions(argc, argv,
632     "LLVM Archiver (llvm-ar)\n\n"
633     "  This program archives bitcode files into single libraries\n"
634   );
635
636   // Do our own parsing of the command line because the CommandLine utility
637   // can't handle the grouped positional parameters without a dash.
638   ArchiveOperation Operation = parseCommandLine();
639
640   // Create or open the archive object.
641   OwningPtr<MemoryBuffer> Buf;
642   error_code EC = MemoryBuffer::getFile(ArchiveName, Buf, -1, false);
643   if (EC && EC != llvm::errc::no_such_file_or_directory) {
644     errs() << argv[0] << ": error opening '" << ArchiveName
645            << "': " << EC.message() << "!\n";
646     return 1;
647   }
648
649   if (!EC) {
650     object::Archive Archive(Buf.take(), EC);
651
652     if (EC) {
653       errs() << argv[0] << ": error loading '" << ArchiveName
654              << "': " << EC.message() << "!\n";
655       return 1;
656     }
657     performOperation(Operation, &Archive);
658     return 0;
659   }
660
661   assert(EC == llvm::errc::no_such_file_or_directory);
662
663   if (!shouldCreateArchive(Operation)) {
664     failIfError(EC, Twine("error loading '") + ArchiveName + "'");
665   } else {
666     if (!Create) {
667       // Produce a warning if we should and we're creating the archive
668       errs() << argv[0] << ": creating " << ArchiveName << "\n";
669     }
670   }
671
672   performOperation(Operation, NULL);
673   return 0;
674 }