1 //===--- ConfigCompile.cpp - Translating Fragments into Config ------------===//
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 // Fragments are applied to Configs in two steps:
10 //
11 // 1. (When the fragment is first loaded)
12 //    FragmentCompiler::compile() traverses the Fragment and creates
13 //    function objects that know how to apply the configuration.
14 // 2. (Every time a config is required)
15 //    CompiledFragment() executes these functions to populate the Config.
16 //
17 // Work could be split between these steps in different ways. We try to
18 // do as much work as possible in the first step. For example, regexes are
19 // compiled in stage 1 and captured by the apply function. This is because:
20 //
21 //  - it's more efficient, as the work done in stage 1 must only be done once
22 //  - problems can be reported in stage 1, in stage 2 we must silently recover
23 //
24 //===----------------------------------------------------------------------===//
25 
26 #include "CompileCommands.h"
27 #include "Config.h"
28 #include "ConfigFragment.h"
29 #include "ConfigProvider.h"
30 #include "Diagnostics.h"
31 #include "Feature.h"
32 #include "TidyProvider.h"
33 #include "support/Logger.h"
34 #include "support/Path.h"
35 #include "support/Trace.h"
36 #include "llvm/ADT/None.h"
37 #include "llvm/ADT/Optional.h"
38 #include "llvm/ADT/STLExtras.h"
39 #include "llvm/ADT/SmallString.h"
40 #include "llvm/ADT/StringRef.h"
41 #include "llvm/ADT/StringSwitch.h"
42 #include "llvm/Support/Error.h"
43 #include "llvm/Support/FileSystem.h"
44 #include "llvm/Support/Format.h"
45 #include "llvm/Support/FormatVariadic.h"
46 #include "llvm/Support/Path.h"
47 #include "llvm/Support/Regex.h"
48 #include "llvm/Support/SMLoc.h"
49 #include "llvm/Support/SourceMgr.h"
50 #include <algorithm>
51 #include <string>
52 
53 namespace clang {
54 namespace clangd {
55 namespace config {
56 namespace {
57 
58 // Returns an empty stringref if Path is not under FragmentDir. Returns Path
59 // as-is when FragmentDir is empty.
60 llvm::StringRef configRelative(llvm::StringRef Path,
61                                llvm::StringRef FragmentDir) {
62   if (FragmentDir.empty())
63     return Path;
64   if (!Path.consume_front(FragmentDir))
65     return llvm::StringRef();
66   return Path.empty() ? "." : Path;
67 }
68 
69 struct CompiledFragmentImpl {
70   // The independent conditions to check before using settings from this config.
71   // The following fragment has *two* conditions:
72   //   If: { Platform: [mac, linux], PathMatch: foo/.* }
73   // All of them must be satisfied: the platform and path conditions are ANDed.
74   // The OR logic for the platform condition is implemented inside the function.
75   std::vector<llvm::unique_function<bool(const Params &) const>> Conditions;
76   // Mutations that this fragment will apply to the configuration.
77   // These are invoked only if the conditions are satisfied.
78   std::vector<llvm::unique_function<void(const Params &, Config &) const>>
79       Apply;
80 
81   bool operator()(const Params &P, Config &C) const {
82     for (const auto &C : Conditions) {
83       if (!C(P)) {
84         dlog("Config fragment {0}: condition not met", this);
85         return false;
86       }
87     }
88     dlog("Config fragment {0}: applying {1} rules", this, Apply.size());
89     for (const auto &A : Apply)
90       A(P, C);
91     return true;
92   }
93 };
94 
95 // Wrapper around condition compile() functions to reduce arg-passing.
96 struct FragmentCompiler {
97   FragmentCompiler(CompiledFragmentImpl &Out, DiagnosticCallback D,
98                    llvm::SourceMgr *SM)
99       : Out(Out), Diagnostic(D), SourceMgr(SM) {}
100   CompiledFragmentImpl &Out;
101   DiagnosticCallback Diagnostic;
102   llvm::SourceMgr *SourceMgr;
103   // Normalized Fragment::SourceInfo::Directory.
104   std::string FragmentDirectory;
105   bool Trusted = false;
106 
107   llvm::Optional<llvm::Regex>
108   compileRegex(const Located<std::string> &Text,
109                llvm::Regex::RegexFlags Flags = llvm::Regex::NoFlags) {
110     std::string Anchored = "^(" + *Text + ")$";
111     llvm::Regex Result(Anchored, Flags);
112     std::string RegexError;
113     if (!Result.isValid(RegexError)) {
114       diag(Error, "Invalid regex " + Anchored + ": " + RegexError, Text.Range);
115       return llvm::None;
116     }
117     return Result;
118   }
119 
120   llvm::Optional<std::string> makeAbsolute(Located<std::string> Path,
121                                            llvm::StringLiteral Description,
122                                            llvm::sys::path::Style Style) {
123     if (llvm::sys::path::is_absolute(*Path))
124       return *Path;
125     if (FragmentDirectory.empty()) {
126       diag(Error,
127            llvm::formatv(
128                "{0} must be an absolute path, because this fragment is not "
129                "associated with any directory.",
130                Description)
131                .str(),
132            Path.Range);
133       return llvm::None;
134     }
135     llvm::SmallString<256> AbsPath = llvm::StringRef(*Path);
136     llvm::sys::fs::make_absolute(FragmentDirectory, AbsPath);
137     llvm::sys::path::native(AbsPath, Style);
138     return AbsPath.str().str();
139   }
140 
141   // Helper with similar API to StringSwitch, for parsing enum values.
142   template <typename T> class EnumSwitch {
143     FragmentCompiler &Outer;
144     llvm::StringRef EnumName;
145     const Located<std::string> &Input;
146     llvm::Optional<T> Result;
147     llvm::SmallVector<llvm::StringLiteral> ValidValues;
148 
149   public:
150     EnumSwitch(llvm::StringRef EnumName, const Located<std::string> &In,
151                FragmentCompiler &Outer)
152         : Outer(Outer), EnumName(EnumName), Input(In) {}
153 
154     EnumSwitch &map(llvm::StringLiteral Name, T Value) {
155       assert(!llvm::is_contained(ValidValues, Name) && "Duplicate value!");
156       ValidValues.push_back(Name);
157       if (!Result && *Input == Name)
158         Result = Value;
159       return *this;
160     }
161 
162     llvm::Optional<T> value() {
163       if (!Result)
164         Outer.diag(
165             Warning,
166             llvm::formatv("Invalid {0} value '{1}'. Valid values are {2}.",
167                           EnumName, *Input, llvm::join(ValidValues, ", "))
168                 .str(),
169             Input.Range);
170       return Result;
171     };
172   };
173 
174   // Attempt to parse a specified string into an enum.
175   // Yields llvm::None and produces a diagnostic on failure.
176   //
177   // Optional<T> Value = compileEnum<En>("Foo", Frag.Foo)
178   //    .map("Foo", Enum::Foo)
179   //    .map("Bar", Enum::Bar)
180   //    .value();
181   template <typename T>
182   EnumSwitch<T> compileEnum(llvm::StringRef EnumName,
183                             const Located<std::string> &In) {
184     return EnumSwitch<T>(EnumName, In, *this);
185   }
186 
187   void compile(Fragment &&F) {
188     Trusted = F.Source.Trusted;
189     if (!F.Source.Directory.empty()) {
190       FragmentDirectory = llvm::sys::path::convert_to_slash(F.Source.Directory);
191       if (FragmentDirectory.back() != '/')
192         FragmentDirectory += '/';
193     }
194     compile(std::move(F.If));
195     compile(std::move(F.CompileFlags));
196     compile(std::move(F.Index));
197     compile(std::move(F.Diagnostics));
198     compile(std::move(F.Completion));
199     compile(std::move(F.Hover));
200   }
201 
202   void compile(Fragment::IfBlock &&F) {
203     if (F.HasUnrecognizedCondition)
204       Out.Conditions.push_back([&](const Params &) { return false; });
205 
206 #ifdef CLANGD_PATH_CASE_INSENSITIVE
207     llvm::Regex::RegexFlags Flags = llvm::Regex::IgnoreCase;
208 #else
209     llvm::Regex::RegexFlags Flags = llvm::Regex::NoFlags;
210 #endif
211 
212     auto PathMatch = std::make_unique<std::vector<llvm::Regex>>();
213     for (auto &Entry : F.PathMatch) {
214       if (auto RE = compileRegex(Entry, Flags))
215         PathMatch->push_back(std::move(*RE));
216     }
217     if (!PathMatch->empty()) {
218       Out.Conditions.push_back(
219           [PathMatch(std::move(PathMatch)),
220            FragmentDir(FragmentDirectory)](const Params &P) {
221             if (P.Path.empty())
222               return false;
223             llvm::StringRef Path = configRelative(P.Path, FragmentDir);
224             // Ignore the file if it is not nested under Fragment.
225             if (Path.empty())
226               return false;
227             return llvm::any_of(*PathMatch, [&](const llvm::Regex &RE) {
228               return RE.match(Path);
229             });
230           });
231     }
232 
233     auto PathExclude = std::make_unique<std::vector<llvm::Regex>>();
234     for (auto &Entry : F.PathExclude) {
235       if (auto RE = compileRegex(Entry, Flags))
236         PathExclude->push_back(std::move(*RE));
237     }
238     if (!PathExclude->empty()) {
239       Out.Conditions.push_back(
240           [PathExclude(std::move(PathExclude)),
241            FragmentDir(FragmentDirectory)](const Params &P) {
242             if (P.Path.empty())
243               return false;
244             llvm::StringRef Path = configRelative(P.Path, FragmentDir);
245             // Ignore the file if it is not nested under Fragment.
246             if (Path.empty())
247               return true;
248             return llvm::none_of(*PathExclude, [&](const llvm::Regex &RE) {
249               return RE.match(Path);
250             });
251           });
252     }
253   }
254 
255   void compile(Fragment::CompileFlagsBlock &&F) {
256     if (F.Compiler)
257       Out.Apply.push_back(
258           [Compiler(std::move(**F.Compiler))](const Params &, Config &C) {
259             C.CompileFlags.Edits.push_back(
260                 [Compiler](std::vector<std::string> &Args) {
261                   if (!Args.empty())
262                     Args.front() = Compiler;
263                 });
264           });
265 
266     if (!F.Remove.empty()) {
267       auto Remove = std::make_shared<ArgStripper>();
268       for (auto &A : F.Remove)
269         Remove->strip(*A);
270       Out.Apply.push_back([Remove(std::shared_ptr<const ArgStripper>(
271                               std::move(Remove)))](const Params &, Config &C) {
272         C.CompileFlags.Edits.push_back(
273             [Remove](std::vector<std::string> &Args) {
274               Remove->process(Args);
275             });
276       });
277     }
278 
279     if (!F.Add.empty()) {
280       std::vector<std::string> Add;
281       for (auto &A : F.Add)
282         Add.push_back(std::move(*A));
283       Out.Apply.push_back([Add(std::move(Add))](const Params &, Config &C) {
284         C.CompileFlags.Edits.push_back([Add](std::vector<std::string> &Args) {
285           // The point to insert at. Just append when `--` isn't present.
286           auto It = llvm::find(Args, "--");
287           Args.insert(It, Add.begin(), Add.end());
288         });
289       });
290     }
291 
292     if (F.CompilationDatabase) {
293       llvm::Optional<Config::CDBSearchSpec> Spec;
294       if (**F.CompilationDatabase == "Ancestors") {
295         Spec.emplace();
296         Spec->Policy = Config::CDBSearchSpec::Ancestors;
297       } else if (**F.CompilationDatabase == "None") {
298         Spec.emplace();
299         Spec->Policy = Config::CDBSearchSpec::NoCDBSearch;
300       } else {
301         if (auto Path =
302                 makeAbsolute(*F.CompilationDatabase, "CompilationDatabase",
303                              llvm::sys::path::Style::native)) {
304           // Drop trailing slash to put the path in canonical form.
305           // Should makeAbsolute do this?
306           llvm::StringRef Rel = llvm::sys::path::relative_path(*Path);
307           if (!Rel.empty() && llvm::sys::path::is_separator(Rel.back()))
308             Path->pop_back();
309 
310           Spec.emplace();
311           Spec->Policy = Config::CDBSearchSpec::FixedDir;
312           Spec->FixedCDBPath = std::move(Path);
313         }
314       }
315       if (Spec)
316         Out.Apply.push_back(
317             [Spec(std::move(*Spec))](const Params &, Config &C) {
318               C.CompileFlags.CDBSearch = Spec;
319             });
320     }
321   }
322 
323   void compile(Fragment::IndexBlock &&F) {
324     if (F.Background) {
325       if (auto Val = compileEnum<Config::BackgroundPolicy>("Background",
326                                                            **F.Background)
327                          .map("Build", Config::BackgroundPolicy::Build)
328                          .map("Skip", Config::BackgroundPolicy::Skip)
329                          .value())
330         Out.Apply.push_back(
331             [Val](const Params &, Config &C) { C.Index.Background = *Val; });
332     }
333     if (F.External)
334       compile(std::move(**F.External), F.External->Range);
335   }
336 
337   void compile(Fragment::IndexBlock::ExternalBlock &&External,
338                llvm::SMRange BlockRange) {
339     if (External.Server && !Trusted) {
340       diag(Error,
341            "Remote index may not be specified by untrusted configuration. "
342            "Copy this into user config to use it.",
343            External.Server->Range);
344       return;
345     }
346 #ifndef CLANGD_ENABLE_REMOTE
347     if (External.Server) {
348       elog("Clangd isn't compiled with remote index support, ignoring Server: "
349            "{0}",
350            *External.Server);
351       External.Server.reset();
352     }
353 #endif
354     // Make sure exactly one of the Sources is set.
355     unsigned SourceCount = External.File.hasValue() +
356                            External.Server.hasValue() + *External.IsNone;
357     if (SourceCount != 1) {
358       diag(Error, "Exactly one of File, Server or None must be set.",
359            BlockRange);
360       return;
361     }
362     Config::ExternalIndexSpec Spec;
363     if (External.Server) {
364       Spec.Kind = Config::ExternalIndexSpec::Server;
365       Spec.Location = std::move(**External.Server);
366     } else if (External.File) {
367       Spec.Kind = Config::ExternalIndexSpec::File;
368       auto AbsPath = makeAbsolute(std::move(*External.File), "File",
369                                   llvm::sys::path::Style::native);
370       if (!AbsPath)
371         return;
372       Spec.Location = std::move(*AbsPath);
373     } else {
374       assert(*External.IsNone);
375       Spec.Kind = Config::ExternalIndexSpec::None;
376     }
377     if (Spec.Kind != Config::ExternalIndexSpec::None) {
378       // Make sure MountPoint is an absolute path with forward slashes.
379       if (!External.MountPoint)
380         External.MountPoint.emplace(FragmentDirectory);
381       if ((**External.MountPoint).empty()) {
382         diag(Error, "A mountpoint is required.", BlockRange);
383         return;
384       }
385       auto AbsPath = makeAbsolute(std::move(*External.MountPoint), "MountPoint",
386                                   llvm::sys::path::Style::posix);
387       if (!AbsPath)
388         return;
389       Spec.MountPoint = std::move(*AbsPath);
390     }
391     Out.Apply.push_back([Spec(std::move(Spec))](const Params &P, Config &C) {
392       if (Spec.Kind == Config::ExternalIndexSpec::None) {
393         C.Index.External = Spec;
394         return;
395       }
396       if (P.Path.empty() || !pathStartsWith(Spec.MountPoint, P.Path,
397                                             llvm::sys::path::Style::posix))
398         return;
399       C.Index.External = Spec;
400       // Disable background indexing for the files under the mountpoint.
401       // Note that this will overwrite statements in any previous fragments
402       // (including the current one).
403       C.Index.Background = Config::BackgroundPolicy::Skip;
404     });
405   }
406 
407   void compile(Fragment::DiagnosticsBlock &&F) {
408     std::vector<std::string> Normalized;
409     for (const auto &Suppressed : F.Suppress) {
410       if (*Suppressed == "*") {
411         Out.Apply.push_back([&](const Params &, Config &C) {
412           C.Diagnostics.SuppressAll = true;
413           C.Diagnostics.Suppress.clear();
414         });
415         return;
416       }
417       Normalized.push_back(normalizeSuppressedCode(*Suppressed).str());
418     }
419     if (!Normalized.empty())
420       Out.Apply.push_back(
421           [Normalized(std::move(Normalized))](const Params &, Config &C) {
422             if (C.Diagnostics.SuppressAll)
423               return;
424             for (llvm::StringRef N : Normalized)
425               C.Diagnostics.Suppress.insert(N);
426           });
427 
428     if (F.UnusedIncludes)
429       if (auto Val = compileEnum<Config::UnusedIncludesPolicy>(
430                          "UnusedIncludes", **F.UnusedIncludes)
431                          .map("Strict", Config::UnusedIncludesPolicy::Strict)
432                          .map("None", Config::UnusedIncludesPolicy::None)
433                          .value())
434         Out.Apply.push_back([Val](const Params &, Config &C) {
435           C.Diagnostics.UnusedIncludes = *Val;
436         });
437 
438     compile(std::move(F.ClangTidy));
439   }
440 
441   void compile(Fragment::StyleBlock &&F) {
442     if (!F.FullyQualifiedNamespaces.empty()) {
443       std::vector<std::string> FullyQualifiedNamespaces;
444       for (auto &N : F.FullyQualifiedNamespaces) {
445         // Normalize the data by dropping both leading and trailing ::
446         StringRef Namespace(*N);
447         Namespace.consume_front("::");
448         Namespace.consume_back("::");
449         FullyQualifiedNamespaces.push_back(Namespace.str());
450       }
451       Out.Apply.push_back([FullyQualifiedNamespaces(
452                               std::move(FullyQualifiedNamespaces))](
453                               const Params &, Config &C) {
454         C.Style.FullyQualifiedNamespaces.insert(
455             C.Style.FullyQualifiedNamespaces.begin(),
456             FullyQualifiedNamespaces.begin(), FullyQualifiedNamespaces.end());
457       });
458     }
459   }
460 
461   void appendTidyCheckSpec(std::string &CurSpec,
462                            const Located<std::string> &Arg, bool IsPositive) {
463     StringRef Str = StringRef(*Arg).trim();
464     // Don't support negating here, its handled if the item is in the Add or
465     // Remove list.
466     if (Str.startswith("-") || Str.contains(',')) {
467       diag(Error, "Invalid clang-tidy check name", Arg.Range);
468       return;
469     }
470     if (!Str.contains('*') && !isRegisteredTidyCheck(Str)) {
471       diag(Warning,
472            llvm::formatv("clang-tidy check '{0}' was not found", Str).str(),
473            Arg.Range);
474       return;
475     }
476     CurSpec += ',';
477     if (!IsPositive)
478       CurSpec += '-';
479     CurSpec += Str;
480   }
481 
482   void compile(Fragment::DiagnosticsBlock::ClangTidyBlock &&F) {
483     std::string Checks;
484     for (auto &CheckGlob : F.Add)
485       appendTidyCheckSpec(Checks, CheckGlob, true);
486 
487     for (auto &CheckGlob : F.Remove)
488       appendTidyCheckSpec(Checks, CheckGlob, false);
489 
490     if (!Checks.empty())
491       Out.Apply.push_back(
492           [Checks = std::move(Checks)](const Params &, Config &C) {
493             C.Diagnostics.ClangTidy.Checks.append(
494                 Checks,
495                 C.Diagnostics.ClangTidy.Checks.empty() ? /*skip comma*/ 1 : 0,
496                 std::string::npos);
497           });
498     if (!F.CheckOptions.empty()) {
499       std::vector<std::pair<std::string, std::string>> CheckOptions;
500       for (auto &Opt : F.CheckOptions)
501         CheckOptions.emplace_back(std::move(*Opt.first),
502                                   std::move(*Opt.second));
503       Out.Apply.push_back(
504           [CheckOptions = std::move(CheckOptions)](const Params &, Config &C) {
505             for (auto &StringPair : CheckOptions)
506               C.Diagnostics.ClangTidy.CheckOptions.insert_or_assign(
507                   StringPair.first, StringPair.second);
508           });
509     }
510   }
511 
512   void compile(Fragment::CompletionBlock &&F) {
513     if (F.AllScopes) {
514       Out.Apply.push_back(
515           [AllScopes(**F.AllScopes)](const Params &, Config &C) {
516             C.Completion.AllScopes = AllScopes;
517           });
518     }
519   }
520 
521   void compile(Fragment::HoverBlock &&F) {
522     if (F.ShowAKA) {
523       Out.Apply.push_back([ShowAKA(**F.ShowAKA)](const Params &, Config &C) {
524         C.Hover.ShowAKA = ShowAKA;
525       });
526     }
527   }
528 
529   constexpr static llvm::SourceMgr::DiagKind Error = llvm::SourceMgr::DK_Error;
530   constexpr static llvm::SourceMgr::DiagKind Warning =
531       llvm::SourceMgr::DK_Warning;
532   void diag(llvm::SourceMgr::DiagKind Kind, llvm::StringRef Message,
533             llvm::SMRange Range) {
534     if (Range.isValid() && SourceMgr != nullptr)
535       Diagnostic(SourceMgr->GetMessage(Range.Start, Kind, Message, Range));
536     else
537       Diagnostic(llvm::SMDiagnostic("", Kind, Message));
538   }
539 };
540 
541 } // namespace
542 
543 CompiledFragment Fragment::compile(DiagnosticCallback D) && {
544   llvm::StringRef ConfigFile = "<unknown>";
545   std::pair<unsigned, unsigned> LineCol = {0, 0};
546   if (auto *SM = Source.Manager.get()) {
547     unsigned BufID = SM->getMainFileID();
548     LineCol = SM->getLineAndColumn(Source.Location, BufID);
549     ConfigFile = SM->getBufferInfo(BufID).Buffer->getBufferIdentifier();
550   }
551   trace::Span Tracer("ConfigCompile");
552   SPAN_ATTACH(Tracer, "ConfigFile", ConfigFile);
553   auto Result = std::make_shared<CompiledFragmentImpl>();
554   vlog("Config fragment: compiling {0}:{1} -> {2} (trusted={3})", ConfigFile,
555        LineCol.first, Result.get(), Source.Trusted);
556 
557   FragmentCompiler{*Result, D, Source.Manager.get()}.compile(std::move(*this));
558   // Return as cheaply-copyable wrapper.
559   return [Result(std::move(Result))](const Params &P, Config &C) {
560     return (*Result)(P, C);
561   };
562 }
563 
564 } // namespace config
565 } // namespace clangd
566 } // namespace clang
567