• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //===-- Path.cpp - Implement OS Path Concept ------------------------------===//
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 //  This file implements the operating system Path API.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "llvm/Support/Path.h"
15 #include "llvm/ADT/ArrayRef.h"
16 #include "llvm/Config/llvm-config.h"
17 #include "llvm/Support/Endian.h"
18 #include "llvm/Support/Errc.h"
19 #include "llvm/Support/ErrorHandling.h"
20 #include "llvm/Support/FileSystem.h"
21 #include "llvm/Support/Process.h"
22 #include "llvm/Support/Signals.h"
23 #include <cctype>
24 #include <cstring>
25 
26 #if !defined(_MSC_VER) && !defined(__MINGW32__)
27 #include <unistd.h>
28 #else
29 #include <io.h>
30 #endif
31 
32 using namespace llvm;
33 using namespace llvm::support::endian;
34 
35 namespace {
36   using llvm::StringRef;
37   using llvm::sys::path::is_separator;
38   using llvm::sys::path::Style;
39 
real_style(Style style)40   inline Style real_style(Style style) {
41 #ifdef _WIN32
42     return (style == Style::posix) ? Style::posix : Style::windows;
43 #else
44     return (style == Style::windows) ? Style::windows : Style::posix;
45 #endif
46   }
47 
separators(Style style)48   inline const char *separators(Style style) {
49     if (real_style(style) == Style::windows)
50       return "\\/";
51     return "/";
52   }
53 
preferred_separator(Style style)54   inline char preferred_separator(Style style) {
55     if (real_style(style) == Style::windows)
56       return '\\';
57     return '/';
58   }
59 
find_first_component(StringRef path,Style style)60   StringRef find_first_component(StringRef path, Style style) {
61     // Look for this first component in the following order.
62     // * empty (in this case we return an empty string)
63     // * either C: or {//,\\}net.
64     // * {/,\}
65     // * {file,directory}name
66 
67     if (path.empty())
68       return path;
69 
70     if (real_style(style) == Style::windows) {
71       // C:
72       if (path.size() >= 2 &&
73           std::isalpha(static_cast<unsigned char>(path[0])) && path[1] == ':')
74         return path.substr(0, 2);
75     }
76 
77     // //net
78     if ((path.size() > 2) && is_separator(path[0], style) &&
79         path[0] == path[1] && !is_separator(path[2], style)) {
80       // Find the next directory separator.
81       size_t end = path.find_first_of(separators(style), 2);
82       return path.substr(0, end);
83     }
84 
85     // {/,\}
86     if (is_separator(path[0], style))
87       return path.substr(0, 1);
88 
89     // * {file,directory}name
90     size_t end = path.find_first_of(separators(style));
91     return path.substr(0, end);
92   }
93 
94   // Returns the first character of the filename in str. For paths ending in
95   // '/', it returns the position of the '/'.
filename_pos(StringRef str,Style style)96   size_t filename_pos(StringRef str, Style style) {
97     if (str.size() > 0 && is_separator(str[str.size() - 1], style))
98       return str.size() - 1;
99 
100     size_t pos = str.find_last_of(separators(style), str.size() - 1);
101 
102     if (real_style(style) == Style::windows) {
103       if (pos == StringRef::npos)
104         pos = str.find_last_of(':', str.size() - 2);
105     }
106 
107     if (pos == StringRef::npos || (pos == 1 && is_separator(str[0], style)))
108       return 0;
109 
110     return pos + 1;
111   }
112 
113   // Returns the position of the root directory in str. If there is no root
114   // directory in str, it returns StringRef::npos.
root_dir_start(StringRef str,Style style)115   size_t root_dir_start(StringRef str, Style style) {
116     // case "c:/"
117     if (real_style(style) == Style::windows) {
118       if (str.size() > 2 && str[1] == ':' && is_separator(str[2], style))
119         return 2;
120     }
121 
122     // case "//net"
123     if (str.size() > 3 && is_separator(str[0], style) && str[0] == str[1] &&
124         !is_separator(str[2], style)) {
125       return str.find_first_of(separators(style), 2);
126     }
127 
128     // case "/"
129     if (str.size() > 0 && is_separator(str[0], style))
130       return 0;
131 
132     return StringRef::npos;
133   }
134 
135   // Returns the position past the end of the "parent path" of path. The parent
136   // path will not end in '/', unless the parent is the root directory. If the
137   // path has no parent, 0 is returned.
parent_path_end(StringRef path,Style style)138   size_t parent_path_end(StringRef path, Style style) {
139     size_t end_pos = filename_pos(path, style);
140 
141     bool filename_was_sep =
142         path.size() > 0 && is_separator(path[end_pos], style);
143 
144     // Skip separators until we reach root dir (or the start of the string).
145     size_t root_dir_pos = root_dir_start(path, style);
146     while (end_pos > 0 &&
147            (root_dir_pos == StringRef::npos || end_pos > root_dir_pos) &&
148            is_separator(path[end_pos - 1], style))
149       --end_pos;
150 
151     if (end_pos == root_dir_pos && !filename_was_sep) {
152       // We've reached the root dir and the input path was *not* ending in a
153       // sequence of slashes. Include the root dir in the parent path.
154       return root_dir_pos + 1;
155     }
156 
157     // Otherwise, just include before the last slash.
158     return end_pos;
159   }
160 } // end unnamed namespace
161 
162 enum FSEntity {
163   FS_Dir,
164   FS_File,
165   FS_Name
166 };
167 
168 static std::error_code
createUniqueEntity(const Twine & Model,int & ResultFD,SmallVectorImpl<char> & ResultPath,bool MakeAbsolute,unsigned Mode,FSEntity Type,sys::fs::OpenFlags Flags=sys::fs::OF_None)169 createUniqueEntity(const Twine &Model, int &ResultFD,
170                    SmallVectorImpl<char> &ResultPath, bool MakeAbsolute,
171                    unsigned Mode, FSEntity Type,
172                    sys::fs::OpenFlags Flags = sys::fs::OF_None) {
173   SmallString<128> ModelStorage;
174   Model.toVector(ModelStorage);
175 
176   if (MakeAbsolute) {
177     // Make model absolute by prepending a temp directory if it's not already.
178     if (!sys::path::is_absolute(Twine(ModelStorage))) {
179       SmallString<128> TDir;
180       sys::path::system_temp_directory(true, TDir);
181       sys::path::append(TDir, Twine(ModelStorage));
182       ModelStorage.swap(TDir);
183     }
184   }
185 
186   // From here on, DO NOT modify model. It may be needed if the randomly chosen
187   // path already exists.
188   ResultPath = ModelStorage;
189   // Null terminate.
190   ResultPath.push_back(0);
191   ResultPath.pop_back();
192 
193 retry_random_path:
194   // Replace '%' with random chars.
195   for (unsigned i = 0, e = ModelStorage.size(); i != e; ++i) {
196     if (ModelStorage[i] == '%')
197       ResultPath[i] = "0123456789abcdef"[sys::Process::GetRandomNumber() & 15];
198   }
199 
200   // Try to open + create the file.
201   switch (Type) {
202   case FS_File: {
203     if (std::error_code EC =
204             sys::fs::openFileForReadWrite(Twine(ResultPath.begin()), ResultFD,
205                                           sys::fs::CD_CreateNew, Flags, Mode)) {
206       if (EC == errc::file_exists)
207         goto retry_random_path;
208       return EC;
209     }
210 
211     return std::error_code();
212   }
213 
214   case FS_Name: {
215     std::error_code EC =
216         sys::fs::access(ResultPath.begin(), sys::fs::AccessMode::Exist);
217     if (EC == errc::no_such_file_or_directory)
218       return std::error_code();
219     if (EC)
220       return EC;
221     goto retry_random_path;
222   }
223 
224   case FS_Dir: {
225     if (std::error_code EC =
226             sys::fs::create_directory(ResultPath.begin(), false)) {
227       if (EC == errc::file_exists)
228         goto retry_random_path;
229       return EC;
230     }
231     return std::error_code();
232   }
233   }
234   llvm_unreachable("Invalid Type");
235 }
236 
237 namespace llvm {
238 namespace sys  {
239 namespace path {
240 
begin(StringRef path,Style style)241 const_iterator begin(StringRef path, Style style) {
242   const_iterator i;
243   i.Path      = path;
244   i.Component = find_first_component(path, style);
245   i.Position  = 0;
246   i.S = style;
247   return i;
248 }
249 
end(StringRef path)250 const_iterator end(StringRef path) {
251   const_iterator i;
252   i.Path      = path;
253   i.Position  = path.size();
254   return i;
255 }
256 
operator ++()257 const_iterator &const_iterator::operator++() {
258   assert(Position < Path.size() && "Tried to increment past end!");
259 
260   // Increment Position to past the current component
261   Position += Component.size();
262 
263   // Check for end.
264   if (Position == Path.size()) {
265     Component = StringRef();
266     return *this;
267   }
268 
269   // Both POSIX and Windows treat paths that begin with exactly two separators
270   // specially.
271   bool was_net = Component.size() > 2 && is_separator(Component[0], S) &&
272                  Component[1] == Component[0] && !is_separator(Component[2], S);
273 
274   // Handle separators.
275   if (is_separator(Path[Position], S)) {
276     // Root dir.
277     if (was_net ||
278         // c:/
279         (real_style(S) == Style::windows && Component.endswith(":"))) {
280       Component = Path.substr(Position, 1);
281       return *this;
282     }
283 
284     // Skip extra separators.
285     while (Position != Path.size() && is_separator(Path[Position], S)) {
286       ++Position;
287     }
288 
289     // Treat trailing '/' as a '.', unless it is the root dir.
290     if (Position == Path.size() && Component != "/") {
291       --Position;
292       Component = ".";
293       return *this;
294     }
295   }
296 
297   // Find next component.
298   size_t end_pos = Path.find_first_of(separators(S), Position);
299   Component = Path.slice(Position, end_pos);
300 
301   return *this;
302 }
303 
operator ==(const const_iterator & RHS) const304 bool const_iterator::operator==(const const_iterator &RHS) const {
305   return Path.begin() == RHS.Path.begin() && Position == RHS.Position;
306 }
307 
operator -(const const_iterator & RHS) const308 ptrdiff_t const_iterator::operator-(const const_iterator &RHS) const {
309   return Position - RHS.Position;
310 }
311 
rbegin(StringRef Path,Style style)312 reverse_iterator rbegin(StringRef Path, Style style) {
313   reverse_iterator I;
314   I.Path = Path;
315   I.Position = Path.size();
316   I.S = style;
317   return ++I;
318 }
319 
rend(StringRef Path)320 reverse_iterator rend(StringRef Path) {
321   reverse_iterator I;
322   I.Path = Path;
323   I.Component = Path.substr(0, 0);
324   I.Position = 0;
325   return I;
326 }
327 
operator ++()328 reverse_iterator &reverse_iterator::operator++() {
329   size_t root_dir_pos = root_dir_start(Path, S);
330 
331   // Skip separators unless it's the root directory.
332   size_t end_pos = Position;
333   while (end_pos > 0 && (end_pos - 1) != root_dir_pos &&
334          is_separator(Path[end_pos - 1], S))
335     --end_pos;
336 
337   // Treat trailing '/' as a '.', unless it is the root dir.
338   if (Position == Path.size() && !Path.empty() &&
339       is_separator(Path.back(), S) &&
340       (root_dir_pos == StringRef::npos || end_pos - 1 > root_dir_pos)) {
341     --Position;
342     Component = ".";
343     return *this;
344   }
345 
346   // Find next separator.
347   size_t start_pos = filename_pos(Path.substr(0, end_pos), S);
348   Component = Path.slice(start_pos, end_pos);
349   Position = start_pos;
350   return *this;
351 }
352 
operator ==(const reverse_iterator & RHS) const353 bool reverse_iterator::operator==(const reverse_iterator &RHS) const {
354   return Path.begin() == RHS.Path.begin() && Component == RHS.Component &&
355          Position == RHS.Position;
356 }
357 
operator -(const reverse_iterator & RHS) const358 ptrdiff_t reverse_iterator::operator-(const reverse_iterator &RHS) const {
359   return Position - RHS.Position;
360 }
361 
root_path(StringRef path,Style style)362 StringRef root_path(StringRef path, Style style) {
363   const_iterator b = begin(path, style), pos = b, e = end(path);
364   if (b != e) {
365     bool has_net =
366         b->size() > 2 && is_separator((*b)[0], style) && (*b)[1] == (*b)[0];
367     bool has_drive = (real_style(style) == Style::windows) && b->endswith(":");
368 
369     if (has_net || has_drive) {
370       if ((++pos != e) && is_separator((*pos)[0], style)) {
371         // {C:/,//net/}, so get the first two components.
372         return path.substr(0, b->size() + pos->size());
373       } else {
374         // just {C:,//net}, return the first component.
375         return *b;
376       }
377     }
378 
379     // POSIX style root directory.
380     if (is_separator((*b)[0], style)) {
381       return *b;
382     }
383   }
384 
385   return StringRef();
386 }
387 
root_name(StringRef path,Style style)388 StringRef root_name(StringRef path, Style style) {
389   const_iterator b = begin(path, style), e = end(path);
390   if (b != e) {
391     bool has_net =
392         b->size() > 2 && is_separator((*b)[0], style) && (*b)[1] == (*b)[0];
393     bool has_drive = (real_style(style) == Style::windows) && b->endswith(":");
394 
395     if (has_net || has_drive) {
396       // just {C:,//net}, return the first component.
397       return *b;
398     }
399   }
400 
401   // No path or no name.
402   return StringRef();
403 }
404 
root_directory(StringRef path,Style style)405 StringRef root_directory(StringRef path, Style style) {
406   const_iterator b = begin(path, style), pos = b, e = end(path);
407   if (b != e) {
408     bool has_net =
409         b->size() > 2 && is_separator((*b)[0], style) && (*b)[1] == (*b)[0];
410     bool has_drive = (real_style(style) == Style::windows) && b->endswith(":");
411 
412     if ((has_net || has_drive) &&
413         // {C:,//net}, skip to the next component.
414         (++pos != e) && is_separator((*pos)[0], style)) {
415       return *pos;
416     }
417 
418     // POSIX style root directory.
419     if (!has_net && is_separator((*b)[0], style)) {
420       return *b;
421     }
422   }
423 
424   // No path or no root.
425   return StringRef();
426 }
427 
relative_path(StringRef path,Style style)428 StringRef relative_path(StringRef path, Style style) {
429   StringRef root = root_path(path, style);
430   return path.substr(root.size());
431 }
432 
append(SmallVectorImpl<char> & path,Style style,const Twine & a,const Twine & b,const Twine & c,const Twine & d)433 void append(SmallVectorImpl<char> &path, Style style, const Twine &a,
434             const Twine &b, const Twine &c, const Twine &d) {
435   SmallString<32> a_storage;
436   SmallString<32> b_storage;
437   SmallString<32> c_storage;
438   SmallString<32> d_storage;
439 
440   SmallVector<StringRef, 4> components;
441   if (!a.isTriviallyEmpty()) components.push_back(a.toStringRef(a_storage));
442   if (!b.isTriviallyEmpty()) components.push_back(b.toStringRef(b_storage));
443   if (!c.isTriviallyEmpty()) components.push_back(c.toStringRef(c_storage));
444   if (!d.isTriviallyEmpty()) components.push_back(d.toStringRef(d_storage));
445 
446   for (auto &component : components) {
447     bool path_has_sep =
448         !path.empty() && is_separator(path[path.size() - 1], style);
449     if (path_has_sep) {
450       // Strip separators from beginning of component.
451       size_t loc = component.find_first_not_of(separators(style));
452       StringRef c = component.substr(loc);
453 
454       // Append it.
455       path.append(c.begin(), c.end());
456       continue;
457     }
458 
459     bool component_has_sep =
460         !component.empty() && is_separator(component[0], style);
461     if (!component_has_sep &&
462         !(path.empty() || has_root_name(component, style))) {
463       // Add a separator.
464       path.push_back(preferred_separator(style));
465     }
466 
467     path.append(component.begin(), component.end());
468   }
469 }
470 
append(SmallVectorImpl<char> & path,const Twine & a,const Twine & b,const Twine & c,const Twine & d)471 void append(SmallVectorImpl<char> &path, const Twine &a, const Twine &b,
472             const Twine &c, const Twine &d) {
473   append(path, Style::native, a, b, c, d);
474 }
475 
append(SmallVectorImpl<char> & path,const_iterator begin,const_iterator end,Style style)476 void append(SmallVectorImpl<char> &path, const_iterator begin,
477             const_iterator end, Style style) {
478   for (; begin != end; ++begin)
479     path::append(path, style, *begin);
480 }
481 
parent_path(StringRef path,Style style)482 StringRef parent_path(StringRef path, Style style) {
483   size_t end_pos = parent_path_end(path, style);
484   if (end_pos == StringRef::npos)
485     return StringRef();
486   else
487     return path.substr(0, end_pos);
488 }
489 
remove_filename(SmallVectorImpl<char> & path,Style style)490 void remove_filename(SmallVectorImpl<char> &path, Style style) {
491   size_t end_pos = parent_path_end(StringRef(path.begin(), path.size()), style);
492   if (end_pos != StringRef::npos)
493     path.set_size(end_pos);
494 }
495 
replace_extension(SmallVectorImpl<char> & path,const Twine & extension,Style style)496 void replace_extension(SmallVectorImpl<char> &path, const Twine &extension,
497                        Style style) {
498   StringRef p(path.begin(), path.size());
499   SmallString<32> ext_storage;
500   StringRef ext = extension.toStringRef(ext_storage);
501 
502   // Erase existing extension.
503   size_t pos = p.find_last_of('.');
504   if (pos != StringRef::npos && pos >= filename_pos(p, style))
505     path.set_size(pos);
506 
507   // Append '.' if needed.
508   if (ext.size() > 0 && ext[0] != '.')
509     path.push_back('.');
510 
511   // Append extension.
512   path.append(ext.begin(), ext.end());
513 }
514 
replace_path_prefix(SmallVectorImpl<char> & Path,const StringRef & OldPrefix,const StringRef & NewPrefix,Style style)515 void replace_path_prefix(SmallVectorImpl<char> &Path,
516                          const StringRef &OldPrefix, const StringRef &NewPrefix,
517                          Style style) {
518   if (OldPrefix.empty() && NewPrefix.empty())
519     return;
520 
521   StringRef OrigPath(Path.begin(), Path.size());
522   if (!OrigPath.startswith(OldPrefix))
523     return;
524 
525   // If prefixes have the same size we can simply copy the new one over.
526   if (OldPrefix.size() == NewPrefix.size()) {
527     std::copy(NewPrefix.begin(), NewPrefix.end(), Path.begin());
528     return;
529   }
530 
531   StringRef RelPath = OrigPath.substr(OldPrefix.size());
532   SmallString<256> NewPath;
533   path::append(NewPath, style, NewPrefix);
534   path::append(NewPath, style, RelPath);
535   Path.swap(NewPath);
536 }
537 
native(const Twine & path,SmallVectorImpl<char> & result,Style style)538 void native(const Twine &path, SmallVectorImpl<char> &result, Style style) {
539   assert((!path.isSingleStringRef() ||
540           path.getSingleStringRef().data() != result.data()) &&
541          "path and result are not allowed to overlap!");
542   // Clear result.
543   result.clear();
544   path.toVector(result);
545   native(result, style);
546 }
547 
native(SmallVectorImpl<char> & Path,Style style)548 void native(SmallVectorImpl<char> &Path, Style style) {
549   if (Path.empty())
550     return;
551   if (real_style(style) == Style::windows) {
552     std::replace(Path.begin(), Path.end(), '/', '\\');
553     if (Path[0] == '~' && (Path.size() == 1 || is_separator(Path[1], style))) {
554       SmallString<128> PathHome;
555       home_directory(PathHome);
556       PathHome.append(Path.begin() + 1, Path.end());
557       Path = PathHome;
558     }
559   } else {
560     for (auto PI = Path.begin(), PE = Path.end(); PI < PE; ++PI) {
561       if (*PI == '\\') {
562         auto PN = PI + 1;
563         if (PN < PE && *PN == '\\')
564           ++PI; // increment once, the for loop will move over the escaped slash
565         else
566           *PI = '/';
567       }
568     }
569   }
570 }
571 
convert_to_slash(StringRef path,Style style)572 std::string convert_to_slash(StringRef path, Style style) {
573   if (real_style(style) != Style::windows)
574     return path;
575 
576   std::string s = path.str();
577   std::replace(s.begin(), s.end(), '\\', '/');
578   return s;
579 }
580 
filename(StringRef path,Style style)581 StringRef filename(StringRef path, Style style) { return *rbegin(path, style); }
582 
stem(StringRef path,Style style)583 StringRef stem(StringRef path, Style style) {
584   StringRef fname = filename(path, style);
585   size_t pos = fname.find_last_of('.');
586   if (pos == StringRef::npos)
587     return fname;
588   else
589     if ((fname.size() == 1 && fname == ".") ||
590         (fname.size() == 2 && fname == ".."))
591       return fname;
592     else
593       return fname.substr(0, pos);
594 }
595 
extension(StringRef path,Style style)596 StringRef extension(StringRef path, Style style) {
597   StringRef fname = filename(path, style);
598   size_t pos = fname.find_last_of('.');
599   if (pos == StringRef::npos)
600     return StringRef();
601   else
602     if ((fname.size() == 1 && fname == ".") ||
603         (fname.size() == 2 && fname == ".."))
604       return StringRef();
605     else
606       return fname.substr(pos);
607 }
608 
is_separator(char value,Style style)609 bool is_separator(char value, Style style) {
610   if (value == '/')
611     return true;
612   if (real_style(style) == Style::windows)
613     return value == '\\';
614   return false;
615 }
616 
get_separator(Style style)617 StringRef get_separator(Style style) {
618   if (real_style(style) == Style::windows)
619     return "\\";
620   return "/";
621 }
622 
has_root_name(const Twine & path,Style style)623 bool has_root_name(const Twine &path, Style style) {
624   SmallString<128> path_storage;
625   StringRef p = path.toStringRef(path_storage);
626 
627   return !root_name(p, style).empty();
628 }
629 
has_root_directory(const Twine & path,Style style)630 bool has_root_directory(const Twine &path, Style style) {
631   SmallString<128> path_storage;
632   StringRef p = path.toStringRef(path_storage);
633 
634   return !root_directory(p, style).empty();
635 }
636 
has_root_path(const Twine & path,Style style)637 bool has_root_path(const Twine &path, Style style) {
638   SmallString<128> path_storage;
639   StringRef p = path.toStringRef(path_storage);
640 
641   return !root_path(p, style).empty();
642 }
643 
has_relative_path(const Twine & path,Style style)644 bool has_relative_path(const Twine &path, Style style) {
645   SmallString<128> path_storage;
646   StringRef p = path.toStringRef(path_storage);
647 
648   return !relative_path(p, style).empty();
649 }
650 
has_filename(const Twine & path,Style style)651 bool has_filename(const Twine &path, Style style) {
652   SmallString<128> path_storage;
653   StringRef p = path.toStringRef(path_storage);
654 
655   return !filename(p, style).empty();
656 }
657 
has_parent_path(const Twine & path,Style style)658 bool has_parent_path(const Twine &path, Style style) {
659   SmallString<128> path_storage;
660   StringRef p = path.toStringRef(path_storage);
661 
662   return !parent_path(p, style).empty();
663 }
664 
has_stem(const Twine & path,Style style)665 bool has_stem(const Twine &path, Style style) {
666   SmallString<128> path_storage;
667   StringRef p = path.toStringRef(path_storage);
668 
669   return !stem(p, style).empty();
670 }
671 
has_extension(const Twine & path,Style style)672 bool has_extension(const Twine &path, Style style) {
673   SmallString<128> path_storage;
674   StringRef p = path.toStringRef(path_storage);
675 
676   return !extension(p, style).empty();
677 }
678 
is_absolute(const Twine & path,Style style)679 bool is_absolute(const Twine &path, Style style) {
680   SmallString<128> path_storage;
681   StringRef p = path.toStringRef(path_storage);
682 
683   bool rootDir = has_root_directory(p, style);
684   bool rootName =
685       (real_style(style) != Style::windows) || has_root_name(p, style);
686 
687   return rootDir && rootName;
688 }
689 
is_relative(const Twine & path,Style style)690 bool is_relative(const Twine &path, Style style) {
691   return !is_absolute(path, style);
692 }
693 
remove_leading_dotslash(StringRef Path,Style style)694 StringRef remove_leading_dotslash(StringRef Path, Style style) {
695   // Remove leading "./" (or ".//" or "././" etc.)
696   while (Path.size() > 2 && Path[0] == '.' && is_separator(Path[1], style)) {
697     Path = Path.substr(2);
698     while (Path.size() > 0 && is_separator(Path[0], style))
699       Path = Path.substr(1);
700   }
701   return Path;
702 }
703 
remove_dots(StringRef path,bool remove_dot_dot,Style style)704 static SmallString<256> remove_dots(StringRef path, bool remove_dot_dot,
705                                     Style style) {
706   SmallVector<StringRef, 16> components;
707 
708   // Skip the root path, then look for traversal in the components.
709   StringRef rel = path::relative_path(path, style);
710   for (StringRef C :
711        llvm::make_range(path::begin(rel, style), path::end(rel))) {
712     if (C == ".")
713       continue;
714     // Leading ".." will remain in the path unless it's at the root.
715     if (remove_dot_dot && C == "..") {
716       if (!components.empty() && components.back() != "..") {
717         components.pop_back();
718         continue;
719       }
720       if (path::is_absolute(path, style))
721         continue;
722     }
723     components.push_back(C);
724   }
725 
726   SmallString<256> buffer = path::root_path(path, style);
727   for (StringRef C : components)
728     path::append(buffer, style, C);
729   return buffer;
730 }
731 
remove_dots(SmallVectorImpl<char> & path,bool remove_dot_dot,Style style)732 bool remove_dots(SmallVectorImpl<char> &path, bool remove_dot_dot,
733                  Style style) {
734   StringRef p(path.data(), path.size());
735 
736   SmallString<256> result = remove_dots(p, remove_dot_dot, style);
737   if (result == path)
738     return false;
739 
740   path.swap(result);
741   return true;
742 }
743 
744 } // end namespace path
745 
746 namespace fs {
747 
getUniqueID(const Twine Path,UniqueID & Result)748 std::error_code getUniqueID(const Twine Path, UniqueID &Result) {
749   file_status Status;
750   std::error_code EC = status(Path, Status);
751   if (EC)
752     return EC;
753   Result = Status.getUniqueID();
754   return std::error_code();
755 }
756 
createUniqueFile(const Twine & Model,int & ResultFd,SmallVectorImpl<char> & ResultPath,unsigned Mode)757 std::error_code createUniqueFile(const Twine &Model, int &ResultFd,
758                                  SmallVectorImpl<char> &ResultPath,
759                                  unsigned Mode) {
760   return createUniqueEntity(Model, ResultFd, ResultPath, false, Mode, FS_File);
761 }
762 
createUniqueFile(const Twine & Model,int & ResultFd,SmallVectorImpl<char> & ResultPath,unsigned Mode,OpenFlags Flags)763 static std::error_code createUniqueFile(const Twine &Model, int &ResultFd,
764                                         SmallVectorImpl<char> &ResultPath,
765                                         unsigned Mode, OpenFlags Flags) {
766   return createUniqueEntity(Model, ResultFd, ResultPath, false, Mode, FS_File,
767                             Flags);
768 }
769 
createUniqueFile(const Twine & Model,SmallVectorImpl<char> & ResultPath,unsigned Mode)770 std::error_code createUniqueFile(const Twine &Model,
771                                  SmallVectorImpl<char> &ResultPath,
772                                  unsigned Mode) {
773   int FD;
774   auto EC = createUniqueFile(Model, FD, ResultPath, Mode);
775   if (EC)
776     return EC;
777   // FD is only needed to avoid race conditions. Close it right away.
778   close(FD);
779   return EC;
780 }
781 
782 static std::error_code
createTemporaryFile(const Twine & Model,int & ResultFD,llvm::SmallVectorImpl<char> & ResultPath,FSEntity Type)783 createTemporaryFile(const Twine &Model, int &ResultFD,
784                     llvm::SmallVectorImpl<char> &ResultPath, FSEntity Type) {
785   SmallString<128> Storage;
786   StringRef P = Model.toNullTerminatedStringRef(Storage);
787   assert(P.find_first_of(separators(Style::native)) == StringRef::npos &&
788          "Model must be a simple filename.");
789   // Use P.begin() so that createUniqueEntity doesn't need to recreate Storage.
790   return createUniqueEntity(P.begin(), ResultFD, ResultPath, true,
791                             owner_read | owner_write, Type);
792 }
793 
794 static std::error_code
createTemporaryFile(const Twine & Prefix,StringRef Suffix,int & ResultFD,llvm::SmallVectorImpl<char> & ResultPath,FSEntity Type)795 createTemporaryFile(const Twine &Prefix, StringRef Suffix, int &ResultFD,
796                     llvm::SmallVectorImpl<char> &ResultPath, FSEntity Type) {
797   const char *Middle = Suffix.empty() ? "-%%%%%%" : "-%%%%%%.";
798   return createTemporaryFile(Prefix + Middle + Suffix, ResultFD, ResultPath,
799                              Type);
800 }
801 
createTemporaryFile(const Twine & Prefix,StringRef Suffix,int & ResultFD,SmallVectorImpl<char> & ResultPath)802 std::error_code createTemporaryFile(const Twine &Prefix, StringRef Suffix,
803                                     int &ResultFD,
804                                     SmallVectorImpl<char> &ResultPath) {
805   return createTemporaryFile(Prefix, Suffix, ResultFD, ResultPath, FS_File);
806 }
807 
createTemporaryFile(const Twine & Prefix,StringRef Suffix,SmallVectorImpl<char> & ResultPath)808 std::error_code createTemporaryFile(const Twine &Prefix, StringRef Suffix,
809                                     SmallVectorImpl<char> &ResultPath) {
810   int FD;
811   auto EC = createTemporaryFile(Prefix, Suffix, FD, ResultPath);
812   if (EC)
813     return EC;
814   // FD is only needed to avoid race conditions. Close it right away.
815   close(FD);
816   return EC;
817 }
818 
819 
820 // This is a mkdtemp with a different pattern. We use createUniqueEntity mostly
821 // for consistency. We should try using mkdtemp.
createUniqueDirectory(const Twine & Prefix,SmallVectorImpl<char> & ResultPath)822 std::error_code createUniqueDirectory(const Twine &Prefix,
823                                       SmallVectorImpl<char> &ResultPath) {
824   int Dummy;
825   return createUniqueEntity(Prefix + "-%%%%%%", Dummy, ResultPath, true, 0,
826                             FS_Dir);
827 }
828 
829 std::error_code
getPotentiallyUniqueFileName(const Twine & Model,SmallVectorImpl<char> & ResultPath)830 getPotentiallyUniqueFileName(const Twine &Model,
831                              SmallVectorImpl<char> &ResultPath) {
832   int Dummy;
833   return createUniqueEntity(Model, Dummy, ResultPath, false, 0, FS_Name);
834 }
835 
836 std::error_code
getPotentiallyUniqueTempFileName(const Twine & Prefix,StringRef Suffix,SmallVectorImpl<char> & ResultPath)837 getPotentiallyUniqueTempFileName(const Twine &Prefix, StringRef Suffix,
838                                  SmallVectorImpl<char> &ResultPath) {
839   int Dummy;
840   return createTemporaryFile(Prefix, Suffix, Dummy, ResultPath, FS_Name);
841 }
842 
make_absolute(const Twine & current_directory,SmallVectorImpl<char> & path,bool use_current_directory)843 static std::error_code make_absolute(const Twine &current_directory,
844                                      SmallVectorImpl<char> &path,
845                                      bool use_current_directory) {
846   StringRef p(path.data(), path.size());
847 
848   bool rootDirectory = path::has_root_directory(p);
849   bool rootName =
850       (real_style(Style::native) != Style::windows) || path::has_root_name(p);
851 
852   // Already absolute.
853   if (rootName && rootDirectory)
854     return std::error_code();
855 
856   // All of the following conditions will need the current directory.
857   SmallString<128> current_dir;
858   if (use_current_directory)
859     current_directory.toVector(current_dir);
860   else if (std::error_code ec = current_path(current_dir))
861     return ec;
862 
863   // Relative path. Prepend the current directory.
864   if (!rootName && !rootDirectory) {
865     // Append path to the current directory.
866     path::append(current_dir, p);
867     // Set path to the result.
868     path.swap(current_dir);
869     return std::error_code();
870   }
871 
872   if (!rootName && rootDirectory) {
873     StringRef cdrn = path::root_name(current_dir);
874     SmallString<128> curDirRootName(cdrn.begin(), cdrn.end());
875     path::append(curDirRootName, p);
876     // Set path to the result.
877     path.swap(curDirRootName);
878     return std::error_code();
879   }
880 
881   if (rootName && !rootDirectory) {
882     StringRef pRootName      = path::root_name(p);
883     StringRef bRootDirectory = path::root_directory(current_dir);
884     StringRef bRelativePath  = path::relative_path(current_dir);
885     StringRef pRelativePath  = path::relative_path(p);
886 
887     SmallString<128> res;
888     path::append(res, pRootName, bRootDirectory, bRelativePath, pRelativePath);
889     path.swap(res);
890     return std::error_code();
891   }
892 
893   llvm_unreachable("All rootName and rootDirectory combinations should have "
894                    "occurred above!");
895 }
896 
make_absolute(const Twine & current_directory,SmallVectorImpl<char> & path)897 std::error_code make_absolute(const Twine &current_directory,
898                               SmallVectorImpl<char> &path) {
899   return make_absolute(current_directory, path, true);
900 }
901 
make_absolute(SmallVectorImpl<char> & path)902 std::error_code make_absolute(SmallVectorImpl<char> &path) {
903   return make_absolute(Twine(), path, false);
904 }
905 
create_directories(const Twine & Path,bool IgnoreExisting,perms Perms)906 std::error_code create_directories(const Twine &Path, bool IgnoreExisting,
907                                    perms Perms) {
908   SmallString<128> PathStorage;
909   StringRef P = Path.toStringRef(PathStorage);
910 
911   // Be optimistic and try to create the directory
912   std::error_code EC = create_directory(P, IgnoreExisting, Perms);
913   // If we succeeded, or had any error other than the parent not existing, just
914   // return it.
915   if (EC != errc::no_such_file_or_directory)
916     return EC;
917 
918   // We failed because of a no_such_file_or_directory, try to create the
919   // parent.
920   StringRef Parent = path::parent_path(P);
921   if (Parent.empty())
922     return EC;
923 
924   if ((EC = create_directories(Parent, IgnoreExisting, Perms)))
925       return EC;
926 
927   return create_directory(P, IgnoreExisting, Perms);
928 }
929 
copy_file_internal(int ReadFD,int WriteFD)930 static std::error_code copy_file_internal(int ReadFD, int WriteFD) {
931   const size_t BufSize = 4096;
932   char *Buf = new char[BufSize];
933   int BytesRead = 0, BytesWritten = 0;
934   for (;;) {
935     BytesRead = read(ReadFD, Buf, BufSize);
936     if (BytesRead <= 0)
937       break;
938     while (BytesRead) {
939       BytesWritten = write(WriteFD, Buf, BytesRead);
940       if (BytesWritten < 0)
941         break;
942       BytesRead -= BytesWritten;
943     }
944     if (BytesWritten < 0)
945       break;
946   }
947   delete[] Buf;
948 
949   if (BytesRead < 0 || BytesWritten < 0)
950     return std::error_code(errno, std::generic_category());
951   return std::error_code();
952 }
953 
copy_file(const Twine & From,const Twine & To)954 std::error_code copy_file(const Twine &From, const Twine &To) {
955   int ReadFD, WriteFD;
956   if (std::error_code EC = openFileForRead(From, ReadFD, OF_None))
957     return EC;
958   if (std::error_code EC =
959           openFileForWrite(To, WriteFD, CD_CreateAlways, OF_None)) {
960     close(ReadFD);
961     return EC;
962   }
963 
964   std::error_code EC = copy_file_internal(ReadFD, WriteFD);
965 
966   close(ReadFD);
967   close(WriteFD);
968 
969   return EC;
970 }
971 
copy_file(const Twine & From,int ToFD)972 std::error_code copy_file(const Twine &From, int ToFD) {
973   int ReadFD;
974   if (std::error_code EC = openFileForRead(From, ReadFD, OF_None))
975     return EC;
976 
977   std::error_code EC = copy_file_internal(ReadFD, ToFD);
978 
979   close(ReadFD);
980 
981   return EC;
982 }
983 
md5_contents(int FD)984 ErrorOr<MD5::MD5Result> md5_contents(int FD) {
985   MD5 Hash;
986 
987   constexpr size_t BufSize = 4096;
988   std::vector<uint8_t> Buf(BufSize);
989   int BytesRead = 0;
990   for (;;) {
991     BytesRead = read(FD, Buf.data(), BufSize);
992     if (BytesRead <= 0)
993       break;
994     Hash.update(makeArrayRef(Buf.data(), BytesRead));
995   }
996 
997   if (BytesRead < 0)
998     return std::error_code(errno, std::generic_category());
999   MD5::MD5Result Result;
1000   Hash.final(Result);
1001   return Result;
1002 }
1003 
md5_contents(const Twine & Path)1004 ErrorOr<MD5::MD5Result> md5_contents(const Twine &Path) {
1005   int FD;
1006   if (auto EC = openFileForRead(Path, FD, OF_None))
1007     return EC;
1008 
1009   auto Result = md5_contents(FD);
1010   close(FD);
1011   return Result;
1012 }
1013 
exists(const basic_file_status & status)1014 bool exists(const basic_file_status &status) {
1015   return status_known(status) && status.type() != file_type::file_not_found;
1016 }
1017 
status_known(const basic_file_status & s)1018 bool status_known(const basic_file_status &s) {
1019   return s.type() != file_type::status_error;
1020 }
1021 
get_file_type(const Twine & Path,bool Follow)1022 file_type get_file_type(const Twine &Path, bool Follow) {
1023   file_status st;
1024   if (status(Path, st, Follow))
1025     return file_type::status_error;
1026   return st.type();
1027 }
1028 
is_directory(const basic_file_status & status)1029 bool is_directory(const basic_file_status &status) {
1030   return status.type() == file_type::directory_file;
1031 }
1032 
is_directory(const Twine & path,bool & result)1033 std::error_code is_directory(const Twine &path, bool &result) {
1034   file_status st;
1035   if (std::error_code ec = status(path, st))
1036     return ec;
1037   result = is_directory(st);
1038   return std::error_code();
1039 }
1040 
is_regular_file(const basic_file_status & status)1041 bool is_regular_file(const basic_file_status &status) {
1042   return status.type() == file_type::regular_file;
1043 }
1044 
is_regular_file(const Twine & path,bool & result)1045 std::error_code is_regular_file(const Twine &path, bool &result) {
1046   file_status st;
1047   if (std::error_code ec = status(path, st))
1048     return ec;
1049   result = is_regular_file(st);
1050   return std::error_code();
1051 }
1052 
is_symlink_file(const basic_file_status & status)1053 bool is_symlink_file(const basic_file_status &status) {
1054   return status.type() == file_type::symlink_file;
1055 }
1056 
is_symlink_file(const Twine & path,bool & result)1057 std::error_code is_symlink_file(const Twine &path, bool &result) {
1058   file_status st;
1059   if (std::error_code ec = status(path, st, false))
1060     return ec;
1061   result = is_symlink_file(st);
1062   return std::error_code();
1063 }
1064 
is_other(const basic_file_status & status)1065 bool is_other(const basic_file_status &status) {
1066   return exists(status) &&
1067          !is_regular_file(status) &&
1068          !is_directory(status);
1069 }
1070 
is_other(const Twine & Path,bool & Result)1071 std::error_code is_other(const Twine &Path, bool &Result) {
1072   file_status FileStatus;
1073   if (std::error_code EC = status(Path, FileStatus))
1074     return EC;
1075   Result = is_other(FileStatus);
1076   return std::error_code();
1077 }
1078 
replace_filename(const Twine & filename,basic_file_status st)1079 void directory_entry::replace_filename(const Twine &filename,
1080                                        basic_file_status st) {
1081   SmallString<128> path = path::parent_path(Path);
1082   path::append(path, filename);
1083   Path = path.str();
1084   Status = st;
1085 }
1086 
getPermissions(const Twine & Path)1087 ErrorOr<perms> getPermissions(const Twine &Path) {
1088   file_status Status;
1089   if (std::error_code EC = status(Path, Status))
1090     return EC;
1091 
1092   return Status.permissions();
1093 }
1094 
1095 } // end namespace fs
1096 } // end namespace sys
1097 } // end namespace llvm
1098 
1099 // Include the truly platform-specific parts.
1100 #if defined(LLVM_ON_UNIX)
1101 #include "Unix/Path.inc"
1102 #endif
1103 #if defined(_WIN32)
1104 #include "Windows/Path.inc"
1105 #endif
1106 
1107 namespace llvm {
1108 namespace sys {
1109 namespace fs {
TempFile(StringRef Name,int FD)1110 TempFile::TempFile(StringRef Name, int FD) : TmpName(Name), FD(FD) {}
TempFile(TempFile && Other)1111 TempFile::TempFile(TempFile &&Other) { *this = std::move(Other); }
operator =(TempFile && Other)1112 TempFile &TempFile::operator=(TempFile &&Other) {
1113   TmpName = std::move(Other.TmpName);
1114   FD = Other.FD;
1115   Other.Done = true;
1116   return *this;
1117 }
1118 
~TempFile()1119 TempFile::~TempFile() { assert(Done); }
1120 
discard()1121 Error TempFile::discard() {
1122   Done = true;
1123   std::error_code RemoveEC;
1124 // On windows closing will remove the file.
1125 #ifndef _WIN32
1126   // Always try to close and remove.
1127   if (!TmpName.empty()) {
1128     RemoveEC = fs::remove(TmpName);
1129     sys::DontRemoveFileOnSignal(TmpName);
1130   }
1131 #endif
1132 
1133   if (!RemoveEC)
1134     TmpName = "";
1135 
1136   if (FD != -1 && close(FD) == -1) {
1137     std::error_code EC = std::error_code(errno, std::generic_category());
1138     return errorCodeToError(EC);
1139   }
1140   FD = -1;
1141 
1142   return errorCodeToError(RemoveEC);
1143 }
1144 
keep(const Twine & Name)1145 Error TempFile::keep(const Twine &Name) {
1146   assert(!Done);
1147   Done = true;
1148   // Always try to close and rename.
1149 #ifdef _WIN32
1150   // If we can't cancel the delete don't rename.
1151   auto H = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
1152   std::error_code RenameEC = setDeleteDisposition(H, false);
1153   if (!RenameEC) {
1154     RenameEC = rename_fd(FD, Name);
1155     // If rename failed because it's cross-device, copy instead
1156     if (RenameEC ==
1157       std::error_code(ERROR_NOT_SAME_DEVICE, std::system_category())) {
1158       RenameEC = copy_file(TmpName, Name);
1159       setDeleteDisposition(H, true);
1160     }
1161   }
1162 
1163   // If we can't rename, discard the temporary file.
1164   if (RenameEC)
1165     setDeleteDisposition(H, true);
1166 #else
1167   std::error_code RenameEC = fs::rename(TmpName, Name);
1168   if (RenameEC) {
1169     // If we can't rename, try to copy to work around cross-device link issues.
1170     RenameEC = sys::fs::copy_file(TmpName, Name);
1171     // If we can't rename or copy, discard the temporary file.
1172     if (RenameEC)
1173       remove(TmpName);
1174   }
1175   sys::DontRemoveFileOnSignal(TmpName);
1176 #endif
1177 
1178   if (!RenameEC)
1179     TmpName = "";
1180 
1181   if (close(FD) == -1) {
1182     std::error_code EC(errno, std::generic_category());
1183     return errorCodeToError(EC);
1184   }
1185   FD = -1;
1186 
1187   return errorCodeToError(RenameEC);
1188 }
1189 
keep()1190 Error TempFile::keep() {
1191   assert(!Done);
1192   Done = true;
1193 
1194 #ifdef _WIN32
1195   auto H = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
1196   if (std::error_code EC = setDeleteDisposition(H, false))
1197     return errorCodeToError(EC);
1198 #else
1199   sys::DontRemoveFileOnSignal(TmpName);
1200 #endif
1201 
1202   TmpName = "";
1203 
1204   if (close(FD) == -1) {
1205     std::error_code EC(errno, std::generic_category());
1206     return errorCodeToError(EC);
1207   }
1208   FD = -1;
1209 
1210   return Error::success();
1211 }
1212 
create(const Twine & Model,unsigned Mode)1213 Expected<TempFile> TempFile::create(const Twine &Model, unsigned Mode) {
1214   int FD;
1215   SmallString<128> ResultPath;
1216   if (std::error_code EC =
1217           createUniqueFile(Model, FD, ResultPath, Mode, OF_Delete))
1218     return errorCodeToError(EC);
1219 
1220   TempFile Ret(ResultPath, FD);
1221 #ifndef _WIN32
1222   if (sys::RemoveFileOnSignal(ResultPath)) {
1223     // Make sure we delete the file when RemoveFileOnSignal fails.
1224     consumeError(Ret.discard());
1225     std::error_code EC(errc::operation_not_permitted);
1226     return errorCodeToError(EC);
1227   }
1228 #endif
1229   return std::move(Ret);
1230 }
1231 }
1232 
1233 namespace path {
1234 
user_cache_directory(SmallVectorImpl<char> & Result,const Twine & Path1,const Twine & Path2,const Twine & Path3)1235 bool user_cache_directory(SmallVectorImpl<char> &Result, const Twine &Path1,
1236                           const Twine &Path2, const Twine &Path3) {
1237   if (getUserCacheDir(Result)) {
1238     append(Result, Path1, Path2, Path3);
1239     return true;
1240   }
1241   return false;
1242 }
1243 
1244 } // end namespace path
1245 } // end namsspace sys
1246 } // end namespace llvm
1247