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.Remove.empty()) {
257       auto Remove = std::make_shared<ArgStripper>();
258       for (auto &A : F.Remove)
259         Remove->strip(*A);
260       Out.Apply.push_back([Remove(std::shared_ptr<const ArgStripper>(
261                               std::move(Remove)))](const Params &, Config &C) {
262         C.CompileFlags.Edits.push_back(
263             [Remove](std::vector<std::string> &Args) {
264               Remove->process(Args);
265             });
266       });
267     }
268 
269     if (!F.Add.empty()) {
270       std::vector<std::string> Add;
271       for (auto &A : F.Add)
272         Add.push_back(std::move(*A));
273       Out.Apply.push_back([Add(std::move(Add))](const Params &, Config &C) {
274         C.CompileFlags.Edits.push_back([Add](std::vector<std::string> &Args) {
275           // The point to insert at. Just append when `--` isn't present.
276           auto It = llvm::find(Args, "--");
277           Args.insert(It, Add.begin(), Add.end());
278         });
279       });
280     }
281 
282     if (F.CompilationDatabase) {
283       llvm::Optional<Config::CDBSearchSpec> Spec;
284       if (**F.CompilationDatabase == "Ancestors") {
285         Spec.emplace();
286         Spec->Policy = Config::CDBSearchSpec::Ancestors;
287       } else if (**F.CompilationDatabase == "None") {
288         Spec.emplace();
289         Spec->Policy = Config::CDBSearchSpec::NoCDBSearch;
290       } else {
291         if (auto Path =
292                 makeAbsolute(*F.CompilationDatabase, "CompilationDatabase",
293                              llvm::sys::path::Style::native)) {
294           // Drop trailing slash to put the path in canonical form.
295           // Should makeAbsolute do this?
296           llvm::StringRef Rel = llvm::sys::path::relative_path(*Path);
297           if (!Rel.empty() && llvm::sys::path::is_separator(Rel.back()))
298             Path->pop_back();
299 
300           Spec.emplace();
301           Spec->Policy = Config::CDBSearchSpec::FixedDir;
302           Spec->FixedCDBPath = std::move(Path);
303         }
304       }
305       if (Spec)
306         Out.Apply.push_back(
307             [Spec(std::move(*Spec))](const Params &, Config &C) {
308               C.CompileFlags.CDBSearch = Spec;
309             });
310     }
311   }
312 
313   void compile(Fragment::IndexBlock &&F) {
314     if (F.Background) {
315       if (auto Val = compileEnum<Config::BackgroundPolicy>("Background",
316                                                            **F.Background)
317                          .map("Build", Config::BackgroundPolicy::Build)
318                          .map("Skip", Config::BackgroundPolicy::Skip)
319                          .value())
320         Out.Apply.push_back(
321             [Val](const Params &, Config &C) { C.Index.Background = *Val; });
322     }
323     if (F.External)
324       compile(std::move(**F.External), F.External->Range);
325   }
326 
327   void compile(Fragment::IndexBlock::ExternalBlock &&External,
328                llvm::SMRange BlockRange) {
329     if (External.Server && !Trusted) {
330       diag(Error,
331            "Remote index may not be specified by untrusted configuration. "
332            "Copy this into user config to use it.",
333            External.Server->Range);
334       return;
335     }
336 #ifndef CLANGD_ENABLE_REMOTE
337     if (External.Server) {
338       elog("Clangd isn't compiled with remote index support, ignoring Server: "
339            "{0}",
340            *External.Server);
341       External.Server.reset();
342     }
343 #endif
344     // Make sure exactly one of the Sources is set.
345     unsigned SourceCount = External.File.hasValue() +
346                            External.Server.hasValue() + *External.IsNone;
347     if (SourceCount != 1) {
348       diag(Error, "Exactly one of File, Server or None must be set.",
349            BlockRange);
350       return;
351     }
352     Config::ExternalIndexSpec Spec;
353     if (External.Server) {
354       Spec.Kind = Config::ExternalIndexSpec::Server;
355       Spec.Location = std::move(**External.Server);
356     } else if (External.File) {
357       Spec.Kind = Config::ExternalIndexSpec::File;
358       auto AbsPath = makeAbsolute(std::move(*External.File), "File",
359                                   llvm::sys::path::Style::native);
360       if (!AbsPath)
361         return;
362       Spec.Location = std::move(*AbsPath);
363     } else {
364       assert(*External.IsNone);
365       Spec.Kind = Config::ExternalIndexSpec::None;
366     }
367     if (Spec.Kind != Config::ExternalIndexSpec::None) {
368       // Make sure MountPoint is an absolute path with forward slashes.
369       if (!External.MountPoint)
370         External.MountPoint.emplace(FragmentDirectory);
371       if ((**External.MountPoint).empty()) {
372         diag(Error, "A mountpoint is required.", BlockRange);
373         return;
374       }
375       auto AbsPath = makeAbsolute(std::move(*External.MountPoint), "MountPoint",
376                                   llvm::sys::path::Style::posix);
377       if (!AbsPath)
378         return;
379       Spec.MountPoint = std::move(*AbsPath);
380     }
381     Out.Apply.push_back([Spec(std::move(Spec))](const Params &P, Config &C) {
382       if (Spec.Kind == Config::ExternalIndexSpec::None) {
383         C.Index.External = Spec;
384         return;
385       }
386       if (P.Path.empty() || !pathStartsWith(Spec.MountPoint, P.Path,
387                                             llvm::sys::path::Style::posix))
388         return;
389       C.Index.External = Spec;
390       // Disable background indexing for the files under the mountpoint.
391       // Note that this will overwrite statements in any previous fragments
392       // (including the current one).
393       C.Index.Background = Config::BackgroundPolicy::Skip;
394     });
395   }
396 
397   void compile(Fragment::DiagnosticsBlock &&F) {
398     std::vector<std::string> Normalized;
399     for (const auto &Suppressed : F.Suppress) {
400       if (*Suppressed == "*") {
401         Out.Apply.push_back([&](const Params &, Config &C) {
402           C.Diagnostics.SuppressAll = true;
403           C.Diagnostics.Suppress.clear();
404         });
405         return;
406       }
407       Normalized.push_back(normalizeSuppressedCode(*Suppressed).str());
408     }
409     if (!Normalized.empty())
410       Out.Apply.push_back(
411           [Normalized(std::move(Normalized))](const Params &, Config &C) {
412             if (C.Diagnostics.SuppressAll)
413               return;
414             for (llvm::StringRef N : Normalized)
415               C.Diagnostics.Suppress.insert(N);
416           });
417 
418     if (F.UnusedIncludes)
419       if (auto Val = compileEnum<Config::UnusedIncludesPolicy>(
420                          "UnusedIncludes", **F.UnusedIncludes)
421                          .map("Strict", Config::UnusedIncludesPolicy::Strict)
422                          .map("None", Config::UnusedIncludesPolicy::None)
423                          .value())
424         Out.Apply.push_back([Val](const Params &, Config &C) {
425           C.Diagnostics.UnusedIncludes = *Val;
426         });
427 
428     compile(std::move(F.ClangTidy));
429   }
430 
431   void compile(Fragment::StyleBlock &&F) {
432     if (!F.FullyQualifiedNamespaces.empty()) {
433       std::vector<std::string> FullyQualifiedNamespaces;
434       for (auto &N : F.FullyQualifiedNamespaces) {
435         // Normalize the data by dropping both leading and trailing ::
436         StringRef Namespace(*N);
437         Namespace.consume_front("::");
438         Namespace.consume_back("::");
439         FullyQualifiedNamespaces.push_back(Namespace.str());
440       }
441       Out.Apply.push_back([FullyQualifiedNamespaces(
442                               std::move(FullyQualifiedNamespaces))](
443                               const Params &, Config &C) {
444         C.Style.FullyQualifiedNamespaces.insert(
445             C.Style.FullyQualifiedNamespaces.begin(),
446             FullyQualifiedNamespaces.begin(), FullyQualifiedNamespaces.end());
447       });
448     }
449   }
450 
451   void appendTidyCheckSpec(std::string &CurSpec,
452                            const Located<std::string> &Arg, bool IsPositive) {
453     StringRef Str = StringRef(*Arg).trim();
454     // Don't support negating here, its handled if the item is in the Add or
455     // Remove list.
456     if (Str.startswith("-") || Str.contains(',')) {
457       diag(Error, "Invalid clang-tidy check name", Arg.Range);
458       return;
459     }
460     if (!Str.contains('*') && !isRegisteredTidyCheck(Str)) {
461       diag(Warning,
462            llvm::formatv("clang-tidy check '{0}' was not found", Str).str(),
463            Arg.Range);
464       return;
465     }
466     CurSpec += ',';
467     if (!IsPositive)
468       CurSpec += '-';
469     CurSpec += Str;
470   }
471 
472   void compile(Fragment::DiagnosticsBlock::ClangTidyBlock &&F) {
473     std::string Checks;
474     for (auto &CheckGlob : F.Add)
475       appendTidyCheckSpec(Checks, CheckGlob, true);
476 
477     for (auto &CheckGlob : F.Remove)
478       appendTidyCheckSpec(Checks, CheckGlob, false);
479 
480     if (!Checks.empty())
481       Out.Apply.push_back(
482           [Checks = std::move(Checks)](const Params &, Config &C) {
483             C.Diagnostics.ClangTidy.Checks.append(
484                 Checks,
485                 C.Diagnostics.ClangTidy.Checks.empty() ? /*skip comma*/ 1 : 0,
486                 std::string::npos);
487           });
488     if (!F.CheckOptions.empty()) {
489       std::vector<std::pair<std::string, std::string>> CheckOptions;
490       for (auto &Opt : F.CheckOptions)
491         CheckOptions.emplace_back(std::move(*Opt.first),
492                                   std::move(*Opt.second));
493       Out.Apply.push_back(
494           [CheckOptions = std::move(CheckOptions)](const Params &, Config &C) {
495             for (auto &StringPair : CheckOptions)
496               C.Diagnostics.ClangTidy.CheckOptions.insert_or_assign(
497                   StringPair.first, StringPair.second);
498           });
499     }
500   }
501 
502   void compile(Fragment::CompletionBlock &&F) {
503     if (F.AllScopes) {
504       Out.Apply.push_back(
505           [AllScopes(**F.AllScopes)](const Params &, Config &C) {
506             C.Completion.AllScopes = AllScopes;
507           });
508     }
509   }
510 
511   void compile(Fragment::HoverBlock &&F) {
512     if (F.ShowAKA) {
513       Out.Apply.push_back([ShowAKA(**F.ShowAKA)](const Params &, Config &C) {
514         C.Hover.ShowAKA = ShowAKA;
515       });
516     }
517   }
518 
519   constexpr static llvm::SourceMgr::DiagKind Error = llvm::SourceMgr::DK_Error;
520   constexpr static llvm::SourceMgr::DiagKind Warning =
521       llvm::SourceMgr::DK_Warning;
522   void diag(llvm::SourceMgr::DiagKind Kind, llvm::StringRef Message,
523             llvm::SMRange Range) {
524     if (Range.isValid() && SourceMgr != nullptr)
525       Diagnostic(SourceMgr->GetMessage(Range.Start, Kind, Message, Range));
526     else
527       Diagnostic(llvm::SMDiagnostic("", Kind, Message));
528   }
529 };
530 
531 } // namespace
532 
533 CompiledFragment Fragment::compile(DiagnosticCallback D) && {
534   llvm::StringRef ConfigFile = "<unknown>";
535   std::pair<unsigned, unsigned> LineCol = {0, 0};
536   if (auto *SM = Source.Manager.get()) {
537     unsigned BufID = SM->getMainFileID();
538     LineCol = SM->getLineAndColumn(Source.Location, BufID);
539     ConfigFile = SM->getBufferInfo(BufID).Buffer->getBufferIdentifier();
540   }
541   trace::Span Tracer("ConfigCompile");
542   SPAN_ATTACH(Tracer, "ConfigFile", ConfigFile);
543   auto Result = std::make_shared<CompiledFragmentImpl>();
544   vlog("Config fragment: compiling {0}:{1} -> {2} (trusted={3})", ConfigFile,
545        LineCol.first, Result.get(), Source.Trusted);
546 
547   FragmentCompiler{*Result, D, Source.Manager.get()}.compile(std::move(*this));
548   // Return as cheaply-copyable wrapper.
549   return [Result(std::move(Result))](const Params &P, Config &C) {
550     return (*Result)(P, C);
551   };
552 }
553 
554 } // namespace config
555 } // namespace clangd
556 } // namespace clang
557